2 * Copyright (c) 2000-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
25 #include "xfs_trans.h"
26 #include "xfs_mount.h"
27 #include "xfs_bmap_btree.h"
28 #include "xfs_alloc.h"
29 #include "xfs_dinode.h"
30 #include "xfs_inode.h"
31 #include "xfs_inode_item.h"
33 #include "xfs_error.h"
34 #include "xfs_vnodeops.h"
35 #include "xfs_da_btree.h"
36 #include "xfs_ioctl.h"
37 #include "xfs_trace.h"
39 #include <linux/dcache.h>
40 #include <linux/falloc.h>
42 static const struct vm_operations_struct xfs_file_vm_ops
;
45 * Locking primitives for read and write IO paths to ensure we consistently use
46 * and order the inode->i_mutex, ip->i_lock and ip->i_iolock.
53 if (type
& XFS_IOLOCK_EXCL
)
54 mutex_lock(&VFS_I(ip
)->i_mutex
);
63 xfs_iunlock(ip
, type
);
64 if (type
& XFS_IOLOCK_EXCL
)
65 mutex_unlock(&VFS_I(ip
)->i_mutex
);
73 xfs_ilock_demote(ip
, type
);
74 if (type
& XFS_IOLOCK_EXCL
)
75 mutex_unlock(&VFS_I(ip
)->i_mutex
);
81 * xfs_iozero clears the specified range of buffer supplied,
82 * and marks all the affected blocks as valid and modified. If
83 * an affected block is not allocated, it will be allocated. If
84 * an affected block is not completely overwritten, and is not
85 * valid before the operation, it will be read from disk before
86 * being partially zeroed.
90 struct xfs_inode
*ip
, /* inode */
91 loff_t pos
, /* offset in file */
92 size_t count
) /* size of data to zero */
95 struct address_space
*mapping
;
98 mapping
= VFS_I(ip
)->i_mapping
;
100 unsigned offset
, bytes
;
103 offset
= (pos
& (PAGE_CACHE_SIZE
-1)); /* Within page */
104 bytes
= PAGE_CACHE_SIZE
- offset
;
108 status
= pagecache_write_begin(NULL
, mapping
, pos
, bytes
,
109 AOP_FLAG_UNINTERRUPTIBLE
,
114 zero_user(page
, offset
, bytes
);
116 status
= pagecache_write_end(NULL
, mapping
, pos
, bytes
, bytes
,
118 WARN_ON(status
<= 0); /* can't return less than zero! */
128 * Fsync operations on directories are much simpler than on regular files,
129 * as there is no file data to flush, and thus also no need for explicit
130 * cache flush operations, and there are no non-transaction metadata updates
131 * on directories either.
140 struct xfs_inode
*ip
= XFS_I(file
->f_mapping
->host
);
141 struct xfs_mount
*mp
= ip
->i_mount
;
144 trace_xfs_dir_fsync(ip
);
146 xfs_ilock(ip
, XFS_ILOCK_SHARED
);
147 if (xfs_ipincount(ip
))
148 lsn
= ip
->i_itemp
->ili_last_lsn
;
149 xfs_iunlock(ip
, XFS_ILOCK_SHARED
);
153 return _xfs_log_force_lsn(mp
, lsn
, XFS_LOG_SYNC
, NULL
);
163 struct inode
*inode
= file
->f_mapping
->host
;
164 struct xfs_inode
*ip
= XFS_I(inode
);
165 struct xfs_mount
*mp
= ip
->i_mount
;
166 struct xfs_trans
*tp
;
171 trace_xfs_file_fsync(ip
);
173 error
= filemap_write_and_wait_range(inode
->i_mapping
, start
, end
);
177 if (XFS_FORCED_SHUTDOWN(mp
))
178 return -XFS_ERROR(EIO
);
180 xfs_iflags_clear(ip
, XFS_ITRUNCATED
);
182 if (mp
->m_flags
& XFS_MOUNT_BARRIER
) {
184 * If we have an RT and/or log subvolume we need to make sure
185 * to flush the write cache the device used for file data
186 * first. This is to ensure newly written file data make
187 * it to disk before logging the new inode size in case of
188 * an extending write.
190 if (XFS_IS_REALTIME_INODE(ip
))
191 xfs_blkdev_issue_flush(mp
->m_rtdev_targp
);
192 else if (mp
->m_logdev_targp
!= mp
->m_ddev_targp
)
193 xfs_blkdev_issue_flush(mp
->m_ddev_targp
);
197 * We always need to make sure that the required inode state is safe on
198 * disk. The inode might be clean but we still might need to force the
199 * log because of committed transactions that haven't hit the disk yet.
200 * Likewise, there could be unflushed non-transactional changes to the
201 * inode core that have to go to disk and this requires us to issue
202 * a synchronous transaction to capture these changes correctly.
204 * This code relies on the assumption that if the i_update_core field
205 * of the inode is clear and the inode is unpinned then it is clean
206 * and no action is required.
208 xfs_ilock(ip
, XFS_ILOCK_SHARED
);
211 * First check if the VFS inode is marked dirty. All the dirtying
212 * of non-transactional updates do not go through mark_inode_dirty*,
213 * which allows us to distinguish between pure timestamp updates
214 * and i_size updates which need to be caught for fdatasync.
215 * After that also check for the dirty state in the XFS inode, which
216 * might gets cleared when the inode gets written out via the AIL
217 * or xfs_iflush_cluster.
219 if (((inode
->i_state
& I_DIRTY_DATASYNC
) ||
220 ((inode
->i_state
& I_DIRTY_SYNC
) && !datasync
)) &&
223 * Kick off a transaction to log the inode core to get the
224 * updates. The sync transaction will also force the log.
226 xfs_iunlock(ip
, XFS_ILOCK_SHARED
);
227 tp
= xfs_trans_alloc(mp
, XFS_TRANS_FSYNC_TS
);
228 error
= xfs_trans_reserve(tp
, 0,
229 XFS_FSYNC_TS_LOG_RES(mp
), 0, 0, 0);
231 xfs_trans_cancel(tp
, 0);
234 xfs_ilock(ip
, XFS_ILOCK_EXCL
);
237 * Note - it's possible that we might have pushed ourselves out
238 * of the way during trans_reserve which would flush the inode.
239 * But there's no guarantee that the inode buffer has actually
240 * gone out yet (it's delwri). Plus the buffer could be pinned
241 * anyway if it's part of an inode in another recent
242 * transaction. So we play it safe and fire off the
243 * transaction anyway.
245 xfs_trans_ijoin(tp
, ip
, 0);
246 xfs_trans_log_inode(tp
, ip
, XFS_ILOG_CORE
);
247 error
= xfs_trans_commit(tp
, 0);
249 lsn
= ip
->i_itemp
->ili_last_lsn
;
250 xfs_iunlock(ip
, XFS_ILOCK_EXCL
);
253 * Timestamps/size haven't changed since last inode flush or
254 * inode transaction commit. That means either nothing got
255 * written or a transaction committed which caught the updates.
256 * If the latter happened and the transaction hasn't hit the
257 * disk yet, the inode will be still be pinned. If it is,
260 if (xfs_ipincount(ip
))
261 lsn
= ip
->i_itemp
->ili_last_lsn
;
262 xfs_iunlock(ip
, XFS_ILOCK_SHARED
);
266 error
= _xfs_log_force_lsn(mp
, lsn
, XFS_LOG_SYNC
, &log_flushed
);
269 * If we only have a single device, and the log force about was
270 * a no-op we might have to flush the data device cache here.
271 * This can only happen for fdatasync/O_DSYNC if we were overwriting
272 * an already allocated file and thus do not have any metadata to
275 if ((mp
->m_flags
& XFS_MOUNT_BARRIER
) &&
276 mp
->m_logdev_targp
== mp
->m_ddev_targp
&&
277 !XFS_IS_REALTIME_INODE(ip
) &&
279 xfs_blkdev_issue_flush(mp
->m_ddev_targp
);
287 const struct iovec
*iovp
,
288 unsigned long nr_segs
,
291 struct file
*file
= iocb
->ki_filp
;
292 struct inode
*inode
= file
->f_mapping
->host
;
293 struct xfs_inode
*ip
= XFS_I(inode
);
294 struct xfs_mount
*mp
= ip
->i_mount
;
301 XFS_STATS_INC(xs_read_calls
);
303 BUG_ON(iocb
->ki_pos
!= pos
);
305 if (unlikely(file
->f_flags
& O_DIRECT
))
306 ioflags
|= IO_ISDIRECT
;
307 if (file
->f_mode
& FMODE_NOCMTIME
)
310 /* START copy & waste from filemap.c */
311 for (seg
= 0; seg
< nr_segs
; seg
++) {
312 const struct iovec
*iv
= &iovp
[seg
];
315 * If any segment has a negative length, or the cumulative
316 * length ever wraps negative then return -EINVAL.
319 if (unlikely((ssize_t
)(size
|iv
->iov_len
) < 0))
320 return XFS_ERROR(-EINVAL
);
322 /* END copy & waste from filemap.c */
324 if (unlikely(ioflags
& IO_ISDIRECT
)) {
325 xfs_buftarg_t
*target
=
326 XFS_IS_REALTIME_INODE(ip
) ?
327 mp
->m_rtdev_targp
: mp
->m_ddev_targp
;
328 if ((iocb
->ki_pos
& target
->bt_smask
) ||
329 (size
& target
->bt_smask
)) {
330 if (iocb
->ki_pos
== i_size_read(inode
))
332 return -XFS_ERROR(EINVAL
);
336 n
= XFS_MAXIOFFSET(mp
) - iocb
->ki_pos
;
337 if (n
<= 0 || size
== 0)
343 if (XFS_FORCED_SHUTDOWN(mp
))
347 * Locking is a bit tricky here. If we take an exclusive lock
348 * for direct IO, we effectively serialise all new concurrent
349 * read IO to this file and block it behind IO that is currently in
350 * progress because IO in progress holds the IO lock shared. We only
351 * need to hold the lock exclusive to blow away the page cache, so
352 * only take lock exclusively if the page cache needs invalidation.
353 * This allows the normal direct IO case of no page cache pages to
354 * proceeed concurrently without serialisation.
356 xfs_rw_ilock(ip
, XFS_IOLOCK_SHARED
);
357 if ((ioflags
& IO_ISDIRECT
) && inode
->i_mapping
->nrpages
) {
358 xfs_rw_iunlock(ip
, XFS_IOLOCK_SHARED
);
359 xfs_rw_ilock(ip
, XFS_IOLOCK_EXCL
);
361 if (inode
->i_mapping
->nrpages
) {
362 ret
= -xfs_flushinval_pages(ip
,
363 (iocb
->ki_pos
& PAGE_CACHE_MASK
),
364 -1, FI_REMAPF_LOCKED
);
366 xfs_rw_iunlock(ip
, XFS_IOLOCK_EXCL
);
370 xfs_rw_ilock_demote(ip
, XFS_IOLOCK_EXCL
);
373 trace_xfs_file_read(ip
, size
, iocb
->ki_pos
, ioflags
);
375 ret
= generic_file_aio_read(iocb
, iovp
, nr_segs
, iocb
->ki_pos
);
377 XFS_STATS_ADD(xs_read_bytes
, ret
);
379 xfs_rw_iunlock(ip
, XFS_IOLOCK_SHARED
);
384 xfs_file_splice_read(
387 struct pipe_inode_info
*pipe
,
391 struct xfs_inode
*ip
= XFS_I(infilp
->f_mapping
->host
);
395 XFS_STATS_INC(xs_read_calls
);
397 if (infilp
->f_mode
& FMODE_NOCMTIME
)
400 if (XFS_FORCED_SHUTDOWN(ip
->i_mount
))
403 xfs_rw_ilock(ip
, XFS_IOLOCK_SHARED
);
405 trace_xfs_file_splice_read(ip
, count
, *ppos
, ioflags
);
407 ret
= generic_file_splice_read(infilp
, ppos
, pipe
, count
, flags
);
409 XFS_STATS_ADD(xs_read_bytes
, ret
);
411 xfs_rw_iunlock(ip
, XFS_IOLOCK_SHARED
);
416 * xfs_file_splice_write() does not use xfs_rw_ilock() because
417 * generic_file_splice_write() takes the i_mutex itself. This, in theory,
418 * couuld cause lock inversions between the aio_write path and the splice path
419 * if someone is doing concurrent splice(2) based writes and write(2) based
420 * writes to the same inode. The only real way to fix this is to re-implement
421 * the generic code here with correct locking orders.
424 xfs_file_splice_write(
425 struct pipe_inode_info
*pipe
,
426 struct file
*outfilp
,
431 struct inode
*inode
= outfilp
->f_mapping
->host
;
432 struct xfs_inode
*ip
= XFS_I(inode
);
436 XFS_STATS_INC(xs_write_calls
);
438 if (outfilp
->f_mode
& FMODE_NOCMTIME
)
441 if (XFS_FORCED_SHUTDOWN(ip
->i_mount
))
444 xfs_ilock(ip
, XFS_IOLOCK_EXCL
);
446 trace_xfs_file_splice_write(ip
, count
, *ppos
, ioflags
);
448 ret
= generic_file_splice_write(pipe
, outfilp
, ppos
, count
, flags
);
450 XFS_STATS_ADD(xs_write_bytes
, ret
);
452 xfs_iunlock(ip
, XFS_IOLOCK_EXCL
);
457 * This routine is called to handle zeroing any space in the last
458 * block of the file that is beyond the EOF. We do this since the
459 * size is being increased without writing anything to that block
460 * and we don't want anyone to read the garbage on the disk.
462 STATIC
int /* error (positive) */
468 xfs_fileoff_t last_fsb
;
469 xfs_mount_t
*mp
= ip
->i_mount
;
474 xfs_bmbt_irec_t imap
;
476 ASSERT(xfs_isilocked(ip
, XFS_ILOCK_EXCL
));
478 zero_offset
= XFS_B_FSB_OFFSET(mp
, isize
);
479 if (zero_offset
== 0) {
481 * There are no extra bytes in the last block on disk to
487 last_fsb
= XFS_B_TO_FSBT(mp
, isize
);
489 error
= xfs_bmapi_read(ip
, last_fsb
, 1, &imap
, &nimaps
, 0);
494 * If the block underlying isize is just a hole, then there
495 * is nothing to zero.
497 if (imap
.br_startblock
== HOLESTARTBLOCK
) {
501 * Zero the part of the last block beyond the EOF, and write it
502 * out sync. We need to drop the ilock while we do this so we
503 * don't deadlock when the buffer cache calls back to us.
505 xfs_iunlock(ip
, XFS_ILOCK_EXCL
);
507 zero_len
= mp
->m_sb
.sb_blocksize
- zero_offset
;
508 if (isize
+ zero_len
> offset
)
509 zero_len
= offset
- isize
;
510 error
= xfs_iozero(ip
, isize
, zero_len
);
512 xfs_ilock(ip
, XFS_ILOCK_EXCL
);
518 * Zero any on disk space between the current EOF and the new,
519 * larger EOF. This handles the normal case of zeroing the remainder
520 * of the last block in the file and the unusual case of zeroing blocks
521 * out beyond the size of the file. This second case only happens
522 * with fixed size extents and when the system crashes before the inode
523 * size was updated but after blocks were allocated. If fill is set,
524 * then any holes in the range are filled and zeroed. If not, the holes
525 * are left alone as holes.
528 int /* error (positive) */
531 xfs_off_t offset
, /* starting I/O offset */
532 xfs_fsize_t isize
) /* current inode size */
534 xfs_mount_t
*mp
= ip
->i_mount
;
535 xfs_fileoff_t start_zero_fsb
;
536 xfs_fileoff_t end_zero_fsb
;
537 xfs_fileoff_t zero_count_fsb
;
538 xfs_fileoff_t last_fsb
;
539 xfs_fileoff_t zero_off
;
540 xfs_fsize_t zero_len
;
543 xfs_bmbt_irec_t imap
;
545 ASSERT(xfs_isilocked(ip
, XFS_ILOCK_EXCL
|XFS_IOLOCK_EXCL
));
546 ASSERT(offset
> isize
);
549 * First handle zeroing the block on which isize resides.
550 * We only zero a part of that block so it is handled specially.
552 error
= xfs_zero_last_block(ip
, offset
, isize
);
554 ASSERT(xfs_isilocked(ip
, XFS_ILOCK_EXCL
|XFS_IOLOCK_EXCL
));
559 * Calculate the range between the new size and the old
560 * where blocks needing to be zeroed may exist. To get the
561 * block where the last byte in the file currently resides,
562 * we need to subtract one from the size and truncate back
563 * to a block boundary. We subtract 1 in case the size is
564 * exactly on a block boundary.
566 last_fsb
= isize
? XFS_B_TO_FSBT(mp
, isize
- 1) : (xfs_fileoff_t
)-1;
567 start_zero_fsb
= XFS_B_TO_FSB(mp
, (xfs_ufsize_t
)isize
);
568 end_zero_fsb
= XFS_B_TO_FSBT(mp
, offset
- 1);
569 ASSERT((xfs_sfiloff_t
)last_fsb
< (xfs_sfiloff_t
)start_zero_fsb
);
570 if (last_fsb
== end_zero_fsb
) {
572 * The size was only incremented on its last block.
573 * We took care of that above, so just return.
578 ASSERT(start_zero_fsb
<= end_zero_fsb
);
579 while (start_zero_fsb
<= end_zero_fsb
) {
581 zero_count_fsb
= end_zero_fsb
- start_zero_fsb
+ 1;
582 error
= xfs_bmapi_read(ip
, start_zero_fsb
, zero_count_fsb
,
585 ASSERT(xfs_isilocked(ip
, XFS_ILOCK_EXCL
|XFS_IOLOCK_EXCL
));
590 if (imap
.br_state
== XFS_EXT_UNWRITTEN
||
591 imap
.br_startblock
== HOLESTARTBLOCK
) {
593 * This loop handles initializing pages that were
594 * partially initialized by the code below this
595 * loop. It basically zeroes the part of the page
596 * that sits on a hole and sets the page as P_HOLE
597 * and calls remapf if it is a mapped file.
599 start_zero_fsb
= imap
.br_startoff
+ imap
.br_blockcount
;
600 ASSERT(start_zero_fsb
<= (end_zero_fsb
+ 1));
605 * There are blocks we need to zero.
606 * Drop the inode lock while we're doing the I/O.
607 * We'll still have the iolock to protect us.
609 xfs_iunlock(ip
, XFS_ILOCK_EXCL
);
611 zero_off
= XFS_FSB_TO_B(mp
, start_zero_fsb
);
612 zero_len
= XFS_FSB_TO_B(mp
, imap
.br_blockcount
);
614 if ((zero_off
+ zero_len
) > offset
)
615 zero_len
= offset
- zero_off
;
617 error
= xfs_iozero(ip
, zero_off
, zero_len
);
622 start_zero_fsb
= imap
.br_startoff
+ imap
.br_blockcount
;
623 ASSERT(start_zero_fsb
<= (end_zero_fsb
+ 1));
625 xfs_ilock(ip
, XFS_ILOCK_EXCL
);
631 xfs_ilock(ip
, XFS_ILOCK_EXCL
);
637 * Common pre-write limit and setup checks.
639 * Called with the iolocked held either shared and exclusive according to
640 * @iolock, and returns with it held. Might upgrade the iolock to exclusive
641 * if called for a direct write beyond i_size.
644 xfs_file_aio_write_checks(
650 struct inode
*inode
= file
->f_mapping
->host
;
651 struct xfs_inode
*ip
= XFS_I(inode
);
654 xfs_rw_ilock(ip
, XFS_ILOCK_EXCL
);
656 error
= generic_write_checks(file
, pos
, count
, S_ISBLK(inode
->i_mode
));
658 xfs_rw_iunlock(ip
, XFS_ILOCK_EXCL
);
662 if (likely(!(file
->f_mode
& FMODE_NOCMTIME
)))
663 file_update_time(file
);
666 * If the offset is beyond the size of the file, we need to zero any
667 * blocks that fall between the existing EOF and the start of this
668 * write. If zeroing is needed and we are currently holding the
669 * iolock shared, we need to update it to exclusive which involves
670 * dropping all locks and relocking to maintain correct locking order.
671 * If we do this, restart the function to ensure all checks and values
674 if (*pos
> i_size_read(inode
)) {
675 if (*iolock
== XFS_IOLOCK_SHARED
) {
676 xfs_rw_iunlock(ip
, XFS_ILOCK_EXCL
| *iolock
);
677 *iolock
= XFS_IOLOCK_EXCL
;
678 xfs_rw_ilock(ip
, XFS_ILOCK_EXCL
| *iolock
);
681 error
= -xfs_zero_eof(ip
, *pos
, i_size_read(inode
));
683 xfs_rw_iunlock(ip
, XFS_ILOCK_EXCL
);
688 * If we're writing the file then make sure to clear the setuid and
689 * setgid bits if the process is not being run by root. This keeps
690 * people from modifying setuid and setgid binaries.
692 return file_remove_suid(file
);
697 * xfs_file_dio_aio_write - handle direct IO writes
699 * Lock the inode appropriately to prepare for and issue a direct IO write.
700 * By separating it from the buffered write path we remove all the tricky to
701 * follow locking changes and looping.
703 * If there are cached pages or we're extending the file, we need IOLOCK_EXCL
704 * until we're sure the bytes at the new EOF have been zeroed and/or the cached
705 * pages are flushed out.
707 * In most cases the direct IO writes will be done holding IOLOCK_SHARED
708 * allowing them to be done in parallel with reads and other direct IO writes.
709 * However, if the IO is not aligned to filesystem blocks, the direct IO layer
710 * needs to do sub-block zeroing and that requires serialisation against other
711 * direct IOs to the same block. In this case we need to serialise the
712 * submission of the unaligned IOs so that we don't get racing block zeroing in
713 * the dio layer. To avoid the problem with aio, we also need to wait for
714 * outstanding IOs to complete so that unwritten extent conversion is completed
715 * before we try to map the overlapping block. This is currently implemented by
716 * hitting it with a big hammer (i.e. inode_dio_wait()).
718 * Returns with locks held indicated by @iolock and errors indicated by
719 * negative return values.
722 xfs_file_dio_aio_write(
724 const struct iovec
*iovp
,
725 unsigned long nr_segs
,
729 struct file
*file
= iocb
->ki_filp
;
730 struct address_space
*mapping
= file
->f_mapping
;
731 struct inode
*inode
= mapping
->host
;
732 struct xfs_inode
*ip
= XFS_I(inode
);
733 struct xfs_mount
*mp
= ip
->i_mount
;
735 size_t count
= ocount
;
736 int unaligned_io
= 0;
738 struct xfs_buftarg
*target
= XFS_IS_REALTIME_INODE(ip
) ?
739 mp
->m_rtdev_targp
: mp
->m_ddev_targp
;
741 if ((pos
& target
->bt_smask
) || (count
& target
->bt_smask
))
742 return -XFS_ERROR(EINVAL
);
744 if ((pos
& mp
->m_blockmask
) || ((pos
+ count
) & mp
->m_blockmask
))
748 * We don't need to take an exclusive lock unless there page cache needs
749 * to be invalidated or unaligned IO is being executed. We don't need to
750 * consider the EOF extension case here because
751 * xfs_file_aio_write_checks() will relock the inode as necessary for
752 * EOF zeroing cases and fill out the new inode size as appropriate.
754 if (unaligned_io
|| mapping
->nrpages
)
755 iolock
= XFS_IOLOCK_EXCL
;
757 iolock
= XFS_IOLOCK_SHARED
;
758 xfs_rw_ilock(ip
, iolock
);
761 * Recheck if there are cached pages that need invalidate after we got
762 * the iolock to protect against other threads adding new pages while
763 * we were waiting for the iolock.
765 if (mapping
->nrpages
&& iolock
== XFS_IOLOCK_SHARED
) {
766 xfs_rw_iunlock(ip
, iolock
);
767 iolock
= XFS_IOLOCK_EXCL
;
768 xfs_rw_ilock(ip
, iolock
);
771 ret
= xfs_file_aio_write_checks(file
, &pos
, &count
, &iolock
);
775 if (mapping
->nrpages
) {
776 ret
= -xfs_flushinval_pages(ip
, (pos
& PAGE_CACHE_MASK
), -1,
783 * If we are doing unaligned IO, wait for all other IO to drain,
784 * otherwise demote the lock if we had to flush cached pages
787 inode_dio_wait(inode
);
788 else if (iolock
== XFS_IOLOCK_EXCL
) {
789 xfs_rw_ilock_demote(ip
, XFS_IOLOCK_EXCL
);
790 iolock
= XFS_IOLOCK_SHARED
;
793 trace_xfs_file_direct_write(ip
, count
, iocb
->ki_pos
, 0);
794 ret
= generic_file_direct_write(iocb
, iovp
,
795 &nr_segs
, pos
, &iocb
->ki_pos
, count
, ocount
);
798 xfs_rw_iunlock(ip
, iolock
);
800 /* No fallback to buffered IO on errors for XFS. */
801 ASSERT(ret
< 0 || ret
== count
);
806 xfs_file_buffered_aio_write(
808 const struct iovec
*iovp
,
809 unsigned long nr_segs
,
813 struct file
*file
= iocb
->ki_filp
;
814 struct address_space
*mapping
= file
->f_mapping
;
815 struct inode
*inode
= mapping
->host
;
816 struct xfs_inode
*ip
= XFS_I(inode
);
819 int iolock
= XFS_IOLOCK_EXCL
;
820 size_t count
= ocount
;
822 xfs_rw_ilock(ip
, iolock
);
824 ret
= xfs_file_aio_write_checks(file
, &pos
, &count
, &iolock
);
828 /* We can write back this queue in page reclaim */
829 current
->backing_dev_info
= mapping
->backing_dev_info
;
832 trace_xfs_file_buffered_write(ip
, count
, iocb
->ki_pos
, 0);
833 ret
= generic_file_buffered_write(iocb
, iovp
, nr_segs
,
834 pos
, &iocb
->ki_pos
, count
, ret
);
836 * if we just got an ENOSPC, flush the inode now we aren't holding any
837 * page locks and retry *once*
839 if (ret
== -ENOSPC
&& !enospc
) {
841 ret
= -xfs_flush_pages(ip
, 0, -1, 0, FI_NONE
);
846 current
->backing_dev_info
= NULL
;
848 xfs_rw_iunlock(ip
, iolock
);
855 const struct iovec
*iovp
,
856 unsigned long nr_segs
,
859 struct file
*file
= iocb
->ki_filp
;
860 struct address_space
*mapping
= file
->f_mapping
;
861 struct inode
*inode
= mapping
->host
;
862 struct xfs_inode
*ip
= XFS_I(inode
);
866 XFS_STATS_INC(xs_write_calls
);
868 BUG_ON(iocb
->ki_pos
!= pos
);
870 ret
= generic_segment_checks(iovp
, &nr_segs
, &ocount
, VERIFY_READ
);
877 xfs_wait_for_freeze(ip
->i_mount
, SB_FREEZE_WRITE
);
879 if (XFS_FORCED_SHUTDOWN(ip
->i_mount
))
882 if (unlikely(file
->f_flags
& O_DIRECT
))
883 ret
= xfs_file_dio_aio_write(iocb
, iovp
, nr_segs
, pos
, ocount
);
885 ret
= xfs_file_buffered_aio_write(iocb
, iovp
, nr_segs
, pos
,
891 XFS_STATS_ADD(xs_write_bytes
, ret
);
893 /* Handle various SYNC-type writes */
894 err
= generic_write_sync(file
, pos
, ret
);
909 struct inode
*inode
= file
->f_path
.dentry
->d_inode
;
913 xfs_inode_t
*ip
= XFS_I(inode
);
914 int cmd
= XFS_IOC_RESVSP
;
915 int attr_flags
= XFS_ATTR_NOLOCK
;
917 if (mode
& ~(FALLOC_FL_KEEP_SIZE
| FALLOC_FL_PUNCH_HOLE
))
924 xfs_ilock(ip
, XFS_IOLOCK_EXCL
);
926 if (mode
& FALLOC_FL_PUNCH_HOLE
)
927 cmd
= XFS_IOC_UNRESVSP
;
929 /* check the new inode size is valid before allocating */
930 if (!(mode
& FALLOC_FL_KEEP_SIZE
) &&
931 offset
+ len
> i_size_read(inode
)) {
932 new_size
= offset
+ len
;
933 error
= inode_newsize_ok(inode
, new_size
);
938 if (file
->f_flags
& O_DSYNC
)
939 attr_flags
|= XFS_ATTR_SYNC
;
941 error
= -xfs_change_file_space(ip
, cmd
, &bf
, 0, attr_flags
);
945 /* Change file size if needed */
949 iattr
.ia_valid
= ATTR_SIZE
;
950 iattr
.ia_size
= new_size
;
951 error
= -xfs_setattr_size(ip
, &iattr
, XFS_ATTR_NOLOCK
);
955 xfs_iunlock(ip
, XFS_IOLOCK_EXCL
);
965 if (!(file
->f_flags
& O_LARGEFILE
) && i_size_read(inode
) > MAX_NON_LFS
)
967 if (XFS_FORCED_SHUTDOWN(XFS_M(inode
->i_sb
)))
977 struct xfs_inode
*ip
= XFS_I(inode
);
981 error
= xfs_file_open(inode
, file
);
986 * If there are any blocks, read-ahead block 0 as we're almost
987 * certain to have the next operation be a read there.
989 mode
= xfs_ilock_map_shared(ip
);
990 if (ip
->i_d
.di_nextents
> 0)
991 xfs_da_reada_buf(NULL
, ip
, 0, XFS_DATA_FORK
);
992 xfs_iunlock(ip
, mode
);
1001 return -xfs_release(XFS_I(inode
));
1010 struct inode
*inode
= filp
->f_path
.dentry
->d_inode
;
1011 xfs_inode_t
*ip
= XFS_I(inode
);
1016 * The Linux API doesn't pass down the total size of the buffer
1017 * we read into down to the filesystem. With the filldir concept
1018 * it's not needed for correct information, but the XFS dir2 leaf
1019 * code wants an estimate of the buffer size to calculate it's
1020 * readahead window and size the buffers used for mapping to
1023 * Try to give it an estimate that's good enough, maybe at some
1024 * point we can change the ->readdir prototype to include the
1025 * buffer size. For now we use the current glibc buffer size.
1027 bufsize
= (size_t)min_t(loff_t
, 32768, ip
->i_d
.di_size
);
1029 error
= xfs_readdir(ip
, dirent
, bufsize
,
1030 (xfs_off_t
*)&filp
->f_pos
, filldir
);
1039 struct vm_area_struct
*vma
)
1041 vma
->vm_ops
= &xfs_file_vm_ops
;
1042 vma
->vm_flags
|= VM_CAN_NONLINEAR
;
1044 file_accessed(filp
);
1049 * mmap()d file has taken write protection fault and is being made
1050 * writable. We can set the page state up correctly for a writable
1051 * page, which means we can do correct delalloc accounting (ENOSPC
1052 * checking!) and unwritten extent mapping.
1055 xfs_vm_page_mkwrite(
1056 struct vm_area_struct
*vma
,
1057 struct vm_fault
*vmf
)
1059 return block_page_mkwrite(vma
, vmf
, xfs_get_blocks
);
1062 const struct file_operations xfs_file_operations
= {
1063 .llseek
= generic_file_llseek
,
1064 .read
= do_sync_read
,
1065 .write
= do_sync_write
,
1066 .aio_read
= xfs_file_aio_read
,
1067 .aio_write
= xfs_file_aio_write
,
1068 .splice_read
= xfs_file_splice_read
,
1069 .splice_write
= xfs_file_splice_write
,
1070 .unlocked_ioctl
= xfs_file_ioctl
,
1071 #ifdef CONFIG_COMPAT
1072 .compat_ioctl
= xfs_file_compat_ioctl
,
1074 .mmap
= xfs_file_mmap
,
1075 .open
= xfs_file_open
,
1076 .release
= xfs_file_release
,
1077 .fsync
= xfs_file_fsync
,
1078 .fallocate
= xfs_file_fallocate
,
1081 const struct file_operations xfs_dir_file_operations
= {
1082 .open
= xfs_dir_open
,
1083 .read
= generic_read_dir
,
1084 .readdir
= xfs_file_readdir
,
1085 .llseek
= generic_file_llseek
,
1086 .unlocked_ioctl
= xfs_file_ioctl
,
1087 #ifdef CONFIG_COMPAT
1088 .compat_ioctl
= xfs_file_compat_ioctl
,
1090 .fsync
= xfs_dir_fsync
,
1093 static const struct vm_operations_struct xfs_file_vm_ops
= {
1094 .fault
= filemap_fault
,
1095 .page_mkwrite
= xfs_vm_page_mkwrite
,