]> git.karo-electronics.de Git - karo-tx-linux.git/blob - fs/xfs/xfs_file.c
Merge remote-tracking branch 'xfs/for-next'
[karo-tx-linux.git] / fs / xfs / xfs_file.c
1 /*
2  * Copyright (c) 2000-2005 Silicon Graphics, Inc.
3  * All Rights Reserved.
4  *
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.
8  *
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.
13  *
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
17  */
18 #include "xfs.h"
19 #include "xfs_fs.h"
20 #include "xfs_shared.h"
21 #include "xfs_format.h"
22 #include "xfs_log_format.h"
23 #include "xfs_trans_resv.h"
24 #include "xfs_sb.h"
25 #include "xfs_ag.h"
26 #include "xfs_mount.h"
27 #include "xfs_da_format.h"
28 #include "xfs_da_btree.h"
29 #include "xfs_inode.h"
30 #include "xfs_trans.h"
31 #include "xfs_inode_item.h"
32 #include "xfs_bmap.h"
33 #include "xfs_bmap_util.h"
34 #include "xfs_error.h"
35 #include "xfs_dir2.h"
36 #include "xfs_dir2_priv.h"
37 #include "xfs_ioctl.h"
38 #include "xfs_trace.h"
39 #include "xfs_log.h"
40 #include "xfs_dinode.h"
41
42 #include <linux/aio.h>
43 #include <linux/dcache.h>
44 #include <linux/falloc.h>
45 #include <linux/pagevec.h>
46
47 static const struct vm_operations_struct xfs_file_vm_ops;
48
49 /*
50  * Locking primitives for read and write IO paths to ensure we consistently use
51  * and order the inode->i_mutex, ip->i_lock and ip->i_iolock.
52  */
53 static inline void
54 xfs_rw_ilock(
55         struct xfs_inode        *ip,
56         int                     type)
57 {
58         if (type & XFS_IOLOCK_EXCL)
59                 mutex_lock(&VFS_I(ip)->i_mutex);
60         xfs_ilock(ip, type);
61 }
62
63 static inline void
64 xfs_rw_iunlock(
65         struct xfs_inode        *ip,
66         int                     type)
67 {
68         xfs_iunlock(ip, type);
69         if (type & XFS_IOLOCK_EXCL)
70                 mutex_unlock(&VFS_I(ip)->i_mutex);
71 }
72
73 static inline void
74 xfs_rw_ilock_demote(
75         struct xfs_inode        *ip,
76         int                     type)
77 {
78         xfs_ilock_demote(ip, type);
79         if (type & XFS_IOLOCK_EXCL)
80                 mutex_unlock(&VFS_I(ip)->i_mutex);
81 }
82
83 /*
84  *      xfs_iozero
85  *
86  *      xfs_iozero clears the specified range of buffer supplied,
87  *      and marks all the affected blocks as valid and modified.  If
88  *      an affected block is not allocated, it will be allocated.  If
89  *      an affected block is not completely overwritten, and is not
90  *      valid before the operation, it will be read from disk before
91  *      being partially zeroed.
92  */
93 int
94 xfs_iozero(
95         struct xfs_inode        *ip,    /* inode                        */
96         loff_t                  pos,    /* offset in file               */
97         size_t                  count)  /* size of data to zero         */
98 {
99         struct page             *page;
100         struct address_space    *mapping;
101         int                     status;
102
103         mapping = VFS_I(ip)->i_mapping;
104         do {
105                 unsigned offset, bytes;
106                 void *fsdata;
107
108                 offset = (pos & (PAGE_CACHE_SIZE -1)); /* Within page */
109                 bytes = PAGE_CACHE_SIZE - offset;
110                 if (bytes > count)
111                         bytes = count;
112
113                 status = pagecache_write_begin(NULL, mapping, pos, bytes,
114                                         AOP_FLAG_UNINTERRUPTIBLE,
115                                         &page, &fsdata);
116                 if (status)
117                         break;
118
119                 zero_user(page, offset, bytes);
120
121                 status = pagecache_write_end(NULL, mapping, pos, bytes, bytes,
122                                         page, fsdata);
123                 WARN_ON(status <= 0); /* can't return less than zero! */
124                 pos += bytes;
125                 count -= bytes;
126                 status = 0;
127         } while (count);
128
129         return (-status);
130 }
131
132 /*
133  * Fsync operations on directories are much simpler than on regular files,
134  * as there is no file data to flush, and thus also no need for explicit
135  * cache flush operations, and there are no non-transaction metadata updates
136  * on directories either.
137  */
138 STATIC int
139 xfs_dir_fsync(
140         struct file             *file,
141         loff_t                  start,
142         loff_t                  end,
143         int                     datasync)
144 {
145         struct xfs_inode        *ip = XFS_I(file->f_mapping->host);
146         struct xfs_mount        *mp = ip->i_mount;
147         xfs_lsn_t               lsn = 0;
148
149         trace_xfs_dir_fsync(ip);
150
151         xfs_ilock(ip, XFS_ILOCK_SHARED);
152         if (xfs_ipincount(ip))
153                 lsn = ip->i_itemp->ili_last_lsn;
154         xfs_iunlock(ip, XFS_ILOCK_SHARED);
155
156         if (!lsn)
157                 return 0;
158         return _xfs_log_force_lsn(mp, lsn, XFS_LOG_SYNC, NULL);
159 }
160
161 STATIC int
162 xfs_file_fsync(
163         struct file             *file,
164         loff_t                  start,
165         loff_t                  end,
166         int                     datasync)
167 {
168         struct inode            *inode = file->f_mapping->host;
169         struct xfs_inode        *ip = XFS_I(inode);
170         struct xfs_mount        *mp = ip->i_mount;
171         int                     error = 0;
172         int                     log_flushed = 0;
173         xfs_lsn_t               lsn = 0;
174
175         trace_xfs_file_fsync(ip);
176
177         error = filemap_write_and_wait_range(inode->i_mapping, start, end);
178         if (error)
179                 return error;
180
181         if (XFS_FORCED_SHUTDOWN(mp))
182                 return -XFS_ERROR(EIO);
183
184         xfs_iflags_clear(ip, XFS_ITRUNCATED);
185
186         if (mp->m_flags & XFS_MOUNT_BARRIER) {
187                 /*
188                  * If we have an RT and/or log subvolume we need to make sure
189                  * to flush the write cache the device used for file data
190                  * first.  This is to ensure newly written file data make
191                  * it to disk before logging the new inode size in case of
192                  * an extending write.
193                  */
194                 if (XFS_IS_REALTIME_INODE(ip))
195                         xfs_blkdev_issue_flush(mp->m_rtdev_targp);
196                 else if (mp->m_logdev_targp != mp->m_ddev_targp)
197                         xfs_blkdev_issue_flush(mp->m_ddev_targp);
198         }
199
200         /*
201          * All metadata updates are logged, which means that we just have
202          * to flush the log up to the latest LSN that touched the inode.
203          */
204         xfs_ilock(ip, XFS_ILOCK_SHARED);
205         if (xfs_ipincount(ip)) {
206                 if (!datasync ||
207                     (ip->i_itemp->ili_fields & ~XFS_ILOG_TIMESTAMP))
208                         lsn = ip->i_itemp->ili_last_lsn;
209         }
210         xfs_iunlock(ip, XFS_ILOCK_SHARED);
211
212         if (lsn)
213                 error = _xfs_log_force_lsn(mp, lsn, XFS_LOG_SYNC, &log_flushed);
214
215         /*
216          * If we only have a single device, and the log force about was
217          * a no-op we might have to flush the data device cache here.
218          * This can only happen for fdatasync/O_DSYNC if we were overwriting
219          * an already allocated file and thus do not have any metadata to
220          * commit.
221          */
222         if ((mp->m_flags & XFS_MOUNT_BARRIER) &&
223             mp->m_logdev_targp == mp->m_ddev_targp &&
224             !XFS_IS_REALTIME_INODE(ip) &&
225             !log_flushed)
226                 xfs_blkdev_issue_flush(mp->m_ddev_targp);
227
228         return -error;
229 }
230
231 STATIC ssize_t
232 xfs_file_read_iter(
233         struct kiocb            *iocb,
234         struct iov_iter         *iter,
235         loff_t                  pos)
236 {
237         struct file             *file = iocb->ki_filp;
238         struct inode            *inode = file->f_mapping->host;
239         struct xfs_inode        *ip = XFS_I(inode);
240         struct xfs_mount        *mp = ip->i_mount;
241         size_t                  size = 0;
242         ssize_t                 ret = 0;
243         int                     ioflags = 0;
244         xfs_fsize_t             n;
245
246         XFS_STATS_INC(xs_read_calls);
247
248         BUG_ON(iocb->ki_pos != pos);
249
250         if (unlikely(file->f_flags & O_DIRECT))
251                 ioflags |= IO_ISDIRECT;
252         if (file->f_mode & FMODE_NOCMTIME)
253                 ioflags |= IO_INVIS;
254
255         size = iov_iter_count(iter);
256
257         if (unlikely(ioflags & IO_ISDIRECT)) {
258                 xfs_buftarg_t   *target =
259                         XFS_IS_REALTIME_INODE(ip) ?
260                                 mp->m_rtdev_targp : mp->m_ddev_targp;
261                 if ((pos & target->bt_smask) || (size & target->bt_smask)) {
262                         if (pos == i_size_read(inode))
263                                 return 0;
264                         return -XFS_ERROR(EINVAL);
265                 }
266         }
267
268         n = mp->m_super->s_maxbytes - pos;
269         if (n <= 0 || size == 0)
270                 return 0;
271
272         if (n < size)
273                 size = n;
274
275         if (XFS_FORCED_SHUTDOWN(mp))
276                 return -EIO;
277
278         /*
279          * Locking is a bit tricky here. If we take an exclusive lock
280          * for direct IO, we effectively serialise all new concurrent
281          * read IO to this file and block it behind IO that is currently in
282          * progress because IO in progress holds the IO lock shared. We only
283          * need to hold the lock exclusive to blow away the page cache, so
284          * only take lock exclusively if the page cache needs invalidation.
285          * This allows the normal direct IO case of no page cache pages to
286          * proceeed concurrently without serialisation.
287          */
288         xfs_rw_ilock(ip, XFS_IOLOCK_SHARED);
289         if ((ioflags & IO_ISDIRECT) && inode->i_mapping->nrpages) {
290                 xfs_rw_iunlock(ip, XFS_IOLOCK_SHARED);
291                 xfs_rw_ilock(ip, XFS_IOLOCK_EXCL);
292
293                 if (inode->i_mapping->nrpages) {
294                         ret = -filemap_write_and_wait_range(
295                                                         VFS_I(ip)->i_mapping,
296                                                         pos, -1);
297                         if (ret) {
298                                 xfs_rw_iunlock(ip, XFS_IOLOCK_EXCL);
299                                 return ret;
300                         }
301                         truncate_pagecache_range(VFS_I(ip), pos, -1);
302                 }
303                 xfs_rw_ilock_demote(ip, XFS_IOLOCK_EXCL);
304         }
305
306         trace_xfs_file_read(ip, size, pos, ioflags);
307
308         ret = generic_file_read_iter(iocb, iter, pos);
309         if (ret > 0)
310                 XFS_STATS_ADD(xs_read_bytes, ret);
311
312         xfs_rw_iunlock(ip, XFS_IOLOCK_SHARED);
313         return ret;
314 }
315
316 STATIC ssize_t
317 xfs_file_splice_read(
318         struct file             *infilp,
319         loff_t                  *ppos,
320         struct pipe_inode_info  *pipe,
321         size_t                  count,
322         unsigned int            flags)
323 {
324         struct xfs_inode        *ip = XFS_I(infilp->f_mapping->host);
325         int                     ioflags = 0;
326         ssize_t                 ret;
327
328         XFS_STATS_INC(xs_read_calls);
329
330         if (infilp->f_mode & FMODE_NOCMTIME)
331                 ioflags |= IO_INVIS;
332
333         if (XFS_FORCED_SHUTDOWN(ip->i_mount))
334                 return -EIO;
335
336         xfs_rw_ilock(ip, XFS_IOLOCK_SHARED);
337
338         trace_xfs_file_splice_read(ip, count, *ppos, ioflags);
339
340         ret = generic_file_splice_read(infilp, ppos, pipe, count, flags);
341         if (ret > 0)
342                 XFS_STATS_ADD(xs_read_bytes, ret);
343
344         xfs_rw_iunlock(ip, XFS_IOLOCK_SHARED);
345         return ret;
346 }
347
348 /*
349  * xfs_file_splice_write() does not use xfs_rw_ilock() because
350  * generic_file_splice_write() takes the i_mutex itself. This, in theory,
351  * couuld cause lock inversions between the aio_write path and the splice path
352  * if someone is doing concurrent splice(2) based writes and write(2) based
353  * writes to the same inode. The only real way to fix this is to re-implement
354  * the generic code here with correct locking orders.
355  */
356 STATIC ssize_t
357 xfs_file_splice_write(
358         struct pipe_inode_info  *pipe,
359         struct file             *outfilp,
360         loff_t                  *ppos,
361         size_t                  count,
362         unsigned int            flags)
363 {
364         struct inode            *inode = outfilp->f_mapping->host;
365         struct xfs_inode        *ip = XFS_I(inode);
366         int                     ioflags = 0;
367         ssize_t                 ret;
368
369         XFS_STATS_INC(xs_write_calls);
370
371         if (outfilp->f_mode & FMODE_NOCMTIME)
372                 ioflags |= IO_INVIS;
373
374         if (XFS_FORCED_SHUTDOWN(ip->i_mount))
375                 return -EIO;
376
377         xfs_ilock(ip, XFS_IOLOCK_EXCL);
378
379         trace_xfs_file_splice_write(ip, count, *ppos, ioflags);
380
381         ret = generic_file_splice_write(pipe, outfilp, ppos, count, flags);
382         if (ret > 0)
383                 XFS_STATS_ADD(xs_write_bytes, ret);
384
385         xfs_iunlock(ip, XFS_IOLOCK_EXCL);
386         return ret;
387 }
388
389 /*
390  * This routine is called to handle zeroing any space in the last block of the
391  * file that is beyond the EOF.  We do this since the size is being increased
392  * without writing anything to that block and we don't want to read the
393  * garbage on the disk.
394  */
395 STATIC int                              /* error (positive) */
396 xfs_zero_last_block(
397         struct xfs_inode        *ip,
398         xfs_fsize_t             offset,
399         xfs_fsize_t             isize)
400 {
401         struct xfs_mount        *mp = ip->i_mount;
402         xfs_fileoff_t           last_fsb = XFS_B_TO_FSBT(mp, isize);
403         int                     zero_offset = XFS_B_FSB_OFFSET(mp, isize);
404         int                     zero_len;
405         int                     nimaps = 1;
406         int                     error = 0;
407         struct xfs_bmbt_irec    imap;
408
409         xfs_ilock(ip, XFS_ILOCK_EXCL);
410         error = xfs_bmapi_read(ip, last_fsb, 1, &imap, &nimaps, 0);
411         xfs_iunlock(ip, XFS_ILOCK_EXCL);
412         if (error)
413                 return error;
414
415         ASSERT(nimaps > 0);
416
417         /*
418          * If the block underlying isize is just a hole, then there
419          * is nothing to zero.
420          */
421         if (imap.br_startblock == HOLESTARTBLOCK)
422                 return 0;
423
424         zero_len = mp->m_sb.sb_blocksize - zero_offset;
425         if (isize + zero_len > offset)
426                 zero_len = offset - isize;
427         return xfs_iozero(ip, isize, zero_len);
428 }
429
430 /*
431  * Zero any on disk space between the current EOF and the new, larger EOF.
432  *
433  * This handles the normal case of zeroing the remainder of the last block in
434  * the file and the unusual case of zeroing blocks out beyond the size of the
435  * file.  This second case only happens with fixed size extents and when the
436  * system crashes before the inode size was updated but after blocks were
437  * allocated.
438  *
439  * Expects the iolock to be held exclusive, and will take the ilock internally.
440  */
441 int                                     /* error (positive) */
442 xfs_zero_eof(
443         struct xfs_inode        *ip,
444         xfs_off_t               offset,         /* starting I/O offset */
445         xfs_fsize_t             isize)          /* current inode size */
446 {
447         struct xfs_mount        *mp = ip->i_mount;
448         xfs_fileoff_t           start_zero_fsb;
449         xfs_fileoff_t           end_zero_fsb;
450         xfs_fileoff_t           zero_count_fsb;
451         xfs_fileoff_t           last_fsb;
452         xfs_fileoff_t           zero_off;
453         xfs_fsize_t             zero_len;
454         int                     nimaps;
455         int                     error = 0;
456         struct xfs_bmbt_irec    imap;
457
458         ASSERT(xfs_isilocked(ip, XFS_IOLOCK_EXCL));
459         ASSERT(offset > isize);
460
461         /*
462          * First handle zeroing the block on which isize resides.
463          *
464          * We only zero a part of that block so it is handled specially.
465          */
466         if (XFS_B_FSB_OFFSET(mp, isize) != 0) {
467                 error = xfs_zero_last_block(ip, offset, isize);
468                 if (error)
469                         return error;
470         }
471
472         /*
473          * Calculate the range between the new size and the old where blocks
474          * needing to be zeroed may exist.
475          *
476          * To get the block where the last byte in the file currently resides,
477          * we need to subtract one from the size and truncate back to a block
478          * boundary.  We subtract 1 in case the size is exactly on a block
479          * boundary.
480          */
481         last_fsb = isize ? XFS_B_TO_FSBT(mp, isize - 1) : (xfs_fileoff_t)-1;
482         start_zero_fsb = XFS_B_TO_FSB(mp, (xfs_ufsize_t)isize);
483         end_zero_fsb = XFS_B_TO_FSBT(mp, offset - 1);
484         ASSERT((xfs_sfiloff_t)last_fsb < (xfs_sfiloff_t)start_zero_fsb);
485         if (last_fsb == end_zero_fsb) {
486                 /*
487                  * The size was only incremented on its last block.
488                  * We took care of that above, so just return.
489                  */
490                 return 0;
491         }
492
493         ASSERT(start_zero_fsb <= end_zero_fsb);
494         while (start_zero_fsb <= end_zero_fsb) {
495                 nimaps = 1;
496                 zero_count_fsb = end_zero_fsb - start_zero_fsb + 1;
497
498                 xfs_ilock(ip, XFS_ILOCK_EXCL);
499                 error = xfs_bmapi_read(ip, start_zero_fsb, zero_count_fsb,
500                                           &imap, &nimaps, 0);
501                 xfs_iunlock(ip, XFS_ILOCK_EXCL);
502                 if (error)
503                         return error;
504
505                 ASSERT(nimaps > 0);
506
507                 if (imap.br_state == XFS_EXT_UNWRITTEN ||
508                     imap.br_startblock == HOLESTARTBLOCK) {
509                         start_zero_fsb = imap.br_startoff + imap.br_blockcount;
510                         ASSERT(start_zero_fsb <= (end_zero_fsb + 1));
511                         continue;
512                 }
513
514                 /*
515                  * There are blocks we need to zero.
516                  */
517                 zero_off = XFS_FSB_TO_B(mp, start_zero_fsb);
518                 zero_len = XFS_FSB_TO_B(mp, imap.br_blockcount);
519
520                 if ((zero_off + zero_len) > offset)
521                         zero_len = offset - zero_off;
522
523                 error = xfs_iozero(ip, zero_off, zero_len);
524                 if (error)
525                         return error;
526
527                 start_zero_fsb = imap.br_startoff + imap.br_blockcount;
528                 ASSERT(start_zero_fsb <= (end_zero_fsb + 1));
529         }
530
531         return 0;
532 }
533
534 /*
535  * Common pre-write limit and setup checks.
536  *
537  * Called with the iolocked held either shared and exclusive according to
538  * @iolock, and returns with it held.  Might upgrade the iolock to exclusive
539  * if called for a direct write beyond i_size.
540  */
541 STATIC ssize_t
542 xfs_file_aio_write_checks(
543         struct file             *file,
544         loff_t                  *pos,
545         size_t                  *count,
546         int                     *iolock)
547 {
548         struct inode            *inode = file->f_mapping->host;
549         struct xfs_inode        *ip = XFS_I(inode);
550         int                     error = 0;
551
552 restart:
553         error = generic_write_checks(file, pos, count, S_ISBLK(inode->i_mode));
554         if (error)
555                 return error;
556
557         /*
558          * If the offset is beyond the size of the file, we need to zero any
559          * blocks that fall between the existing EOF and the start of this
560          * write.  If zeroing is needed and we are currently holding the
561          * iolock shared, we need to update it to exclusive which implies
562          * having to redo all checks before.
563          */
564         if (*pos > i_size_read(inode)) {
565                 if (*iolock == XFS_IOLOCK_SHARED) {
566                         xfs_rw_iunlock(ip, *iolock);
567                         *iolock = XFS_IOLOCK_EXCL;
568                         xfs_rw_ilock(ip, *iolock);
569                         goto restart;
570                 }
571                 error = -xfs_zero_eof(ip, *pos, i_size_read(inode));
572                 if (error)
573                         return error;
574         }
575
576         /*
577          * Updating the timestamps will grab the ilock again from
578          * xfs_fs_dirty_inode, so we have to call it after dropping the
579          * lock above.  Eventually we should look into a way to avoid
580          * the pointless lock roundtrip.
581          */
582         if (likely(!(file->f_mode & FMODE_NOCMTIME))) {
583                 error = file_update_time(file);
584                 if (error)
585                         return error;
586         }
587
588         /*
589          * If we're writing the file then make sure to clear the setuid and
590          * setgid bits if the process is not being run by root.  This keeps
591          * people from modifying setuid and setgid binaries.
592          */
593         return file_remove_suid(file);
594 }
595
596 /*
597  * xfs_file_dio_aio_write - handle direct IO writes
598  *
599  * Lock the inode appropriately to prepare for and issue a direct IO write.
600  * By separating it from the buffered write path we remove all the tricky to
601  * follow locking changes and looping.
602  *
603  * If there are cached pages or we're extending the file, we need IOLOCK_EXCL
604  * until we're sure the bytes at the new EOF have been zeroed and/or the cached
605  * pages are flushed out.
606  *
607  * In most cases the direct IO writes will be done holding IOLOCK_SHARED
608  * allowing them to be done in parallel with reads and other direct IO writes.
609  * However, if the IO is not aligned to filesystem blocks, the direct IO layer
610  * needs to do sub-block zeroing and that requires serialisation against other
611  * direct IOs to the same block. In this case we need to serialise the
612  * submission of the unaligned IOs so that we don't get racing block zeroing in
613  * the dio layer.  To avoid the problem with aio, we also need to wait for
614  * outstanding IOs to complete so that unwritten extent conversion is completed
615  * before we try to map the overlapping block. This is currently implemented by
616  * hitting it with a big hammer (i.e. inode_dio_wait()).
617  *
618  * Returns with locks held indicated by @iolock and errors indicated by
619  * negative return values.
620  */
621 STATIC ssize_t
622 xfs_file_dio_aio_write(
623         struct kiocb            *iocb,
624         struct iov_iter         *iter,
625         loff_t                  pos,
626         size_t                  count)
627 {
628         struct file             *file = iocb->ki_filp;
629         struct address_space    *mapping = file->f_mapping;
630         struct inode            *inode = mapping->host;
631         struct xfs_inode        *ip = XFS_I(inode);
632         struct xfs_mount        *mp = ip->i_mount;
633         ssize_t                 ret = 0;
634         int                     unaligned_io = 0;
635         int                     iolock;
636         struct xfs_buftarg      *target = XFS_IS_REALTIME_INODE(ip) ?
637                                         mp->m_rtdev_targp : mp->m_ddev_targp;
638
639         if ((pos & target->bt_smask) || (count & target->bt_smask))
640                 return -XFS_ERROR(EINVAL);
641
642         if ((pos & mp->m_blockmask) || ((pos + count) & mp->m_blockmask))
643                 unaligned_io = 1;
644
645         /*
646          * We don't need to take an exclusive lock unless there page cache needs
647          * to be invalidated or unaligned IO is being executed. We don't need to
648          * consider the EOF extension case here because
649          * xfs_file_aio_write_checks() will relock the inode as necessary for
650          * EOF zeroing cases and fill out the new inode size as appropriate.
651          */
652         if (unaligned_io || mapping->nrpages)
653                 iolock = XFS_IOLOCK_EXCL;
654         else
655                 iolock = XFS_IOLOCK_SHARED;
656         xfs_rw_ilock(ip, iolock);
657
658         /*
659          * Recheck if there are cached pages that need invalidate after we got
660          * the iolock to protect against other threads adding new pages while
661          * we were waiting for the iolock.
662          */
663         if (mapping->nrpages && iolock == XFS_IOLOCK_SHARED) {
664                 xfs_rw_iunlock(ip, iolock);
665                 iolock = XFS_IOLOCK_EXCL;
666                 xfs_rw_ilock(ip, iolock);
667         }
668
669         ret = xfs_file_aio_write_checks(file, &pos, &count, &iolock);
670         if (ret)
671                 goto out;
672
673         if (mapping->nrpages) {
674                 ret = -filemap_write_and_wait_range(VFS_I(ip)->i_mapping,
675                                                     pos, -1);
676                 if (ret)
677                         goto out;
678                 truncate_pagecache_range(VFS_I(ip), pos, -1);
679         }
680
681         /*
682          * If we are doing unaligned IO, wait for all other IO to drain,
683          * otherwise demote the lock if we had to flush cached pages
684          */
685         if (unaligned_io)
686                 inode_dio_wait(inode);
687         else if (iolock == XFS_IOLOCK_EXCL) {
688                 xfs_rw_ilock_demote(ip, XFS_IOLOCK_EXCL);
689                 iolock = XFS_IOLOCK_SHARED;
690         }
691
692         trace_xfs_file_direct_write(ip, count, iocb->ki_pos, 0);
693         ret = generic_file_direct_write_iter(iocb, iter,
694                         pos, &iocb->ki_pos, count);
695
696 out:
697         xfs_rw_iunlock(ip, iolock);
698
699         /* No fallback to buffered IO on errors for XFS. */
700         ASSERT(ret < 0 || ret == count);
701         return ret;
702 }
703
704 STATIC ssize_t
705 xfs_file_buffered_aio_write(
706         struct kiocb            *iocb,
707         struct iov_iter         *iter,
708         loff_t                  pos,
709         size_t                  count)
710 {
711         struct file             *file = iocb->ki_filp;
712         struct address_space    *mapping = file->f_mapping;
713         struct inode            *inode = mapping->host;
714         struct xfs_inode        *ip = XFS_I(inode);
715         ssize_t                 ret;
716         int                     enospc = 0;
717         int                     iolock = XFS_IOLOCK_EXCL;
718
719         xfs_rw_ilock(ip, iolock);
720
721         ret = xfs_file_aio_write_checks(file, &pos, &count, &iolock);
722         if (ret)
723                 goto out;
724
725         /* We can write back this queue in page reclaim */
726         current->backing_dev_info = mapping->backing_dev_info;
727
728 write_retry:
729         trace_xfs_file_buffered_write(ip, count, iocb->ki_pos, 0);
730         ret = generic_file_buffered_write_iter(iocb, iter,
731                         pos, &iocb->ki_pos, count, 0);
732
733         /*
734          * If we just got an ENOSPC, try to write back all dirty inodes to
735          * convert delalloc space to free up some of the excess reserved
736          * metadata space.
737          */
738         if (ret == -ENOSPC && !enospc) {
739                 enospc = 1;
740                 xfs_flush_inodes(ip->i_mount);
741                 goto write_retry;
742         }
743
744         current->backing_dev_info = NULL;
745 out:
746         xfs_rw_iunlock(ip, iolock);
747         return ret;
748 }
749
750 STATIC ssize_t
751 xfs_file_write_iter(
752         struct kiocb            *iocb,
753         struct iov_iter         *iter,
754         loff_t                  pos)
755 {
756         struct file             *file = iocb->ki_filp;
757         struct address_space    *mapping = file->f_mapping;
758         struct inode            *inode = mapping->host;
759         struct xfs_inode        *ip = XFS_I(inode);
760         ssize_t                 ret;
761         size_t                  count = 0;
762
763         XFS_STATS_INC(xs_write_calls);
764
765         BUG_ON(iocb->ki_pos != pos);
766
767         count = iov_iter_count(iter);
768
769         if (count == 0)
770                 return 0;
771
772         if (XFS_FORCED_SHUTDOWN(ip->i_mount)) {
773                 ret = -EIO;
774                 goto out;
775         }
776
777         if (unlikely(file->f_flags & O_DIRECT))
778                 ret = xfs_file_dio_aio_write(iocb, iter, pos, count);
779         else
780                 ret = xfs_file_buffered_aio_write(iocb, iter, pos, count);
781
782         if (ret > 0) {
783                 ssize_t err;
784
785                 XFS_STATS_ADD(xs_write_bytes, ret);
786
787                 /* Handle various SYNC-type writes */
788                 err = generic_write_sync(file, pos, ret);
789                 if (err < 0)
790                         ret = err;
791         }
792
793 out:
794         return ret;
795 }
796
797 STATIC long
798 xfs_file_fallocate(
799         struct file             *file,
800         int                     mode,
801         loff_t                  offset,
802         loff_t                  len)
803 {
804         struct inode            *inode = file_inode(file);
805         struct xfs_inode        *ip = XFS_I(inode);
806         struct xfs_trans        *tp;
807         long                    error;
808         loff_t                  new_size = 0;
809
810         if (!S_ISREG(inode->i_mode))
811                 return -EINVAL;
812         if (mode & ~(FALLOC_FL_KEEP_SIZE | FALLOC_FL_PUNCH_HOLE))
813                 return -EOPNOTSUPP;
814
815         xfs_ilock(ip, XFS_IOLOCK_EXCL);
816         if (mode & FALLOC_FL_PUNCH_HOLE) {
817                 error = xfs_free_file_space(ip, offset, len);
818                 if (error)
819                         goto out_unlock;
820         } else {
821                 if (!(mode & FALLOC_FL_KEEP_SIZE) &&
822                     offset + len > i_size_read(inode)) {
823                         new_size = offset + len;
824                         error = -inode_newsize_ok(inode, new_size);
825                         if (error)
826                                 goto out_unlock;
827                 }
828
829                 error = xfs_alloc_file_space(ip, offset, len,
830                                              XFS_BMAPI_PREALLOC);
831                 if (error)
832                         goto out_unlock;
833         }
834
835         tp = xfs_trans_alloc(ip->i_mount, XFS_TRANS_WRITEID);
836         error = xfs_trans_reserve(tp, &M_RES(ip->i_mount)->tr_writeid, 0, 0);
837         if (error) {
838                 xfs_trans_cancel(tp, 0);
839                 goto out_unlock;
840         }
841
842         xfs_ilock(ip, XFS_ILOCK_EXCL);
843         xfs_trans_ijoin(tp, ip, XFS_ILOCK_EXCL);
844         ip->i_d.di_mode &= ~S_ISUID;
845         if (ip->i_d.di_mode & S_IXGRP)
846                 ip->i_d.di_mode &= ~S_ISGID;
847
848         if (!(mode & FALLOC_FL_PUNCH_HOLE))
849                 ip->i_d.di_flags |= XFS_DIFLAG_PREALLOC;
850
851         xfs_trans_ichgtime(tp, ip, XFS_ICHGTIME_MOD | XFS_ICHGTIME_CHG);
852         xfs_trans_log_inode(tp, ip, XFS_ILOG_CORE);
853
854         if (file->f_flags & O_DSYNC)
855                 xfs_trans_set_sync(tp);
856         error = xfs_trans_commit(tp, 0);
857         if (error)
858                 goto out_unlock;
859
860         /* Change file size if needed */
861         if (new_size) {
862                 struct iattr iattr;
863
864                 iattr.ia_valid = ATTR_SIZE;
865                 iattr.ia_size = new_size;
866                 error = xfs_setattr_size(ip, &iattr);
867         }
868
869 out_unlock:
870         xfs_iunlock(ip, XFS_IOLOCK_EXCL);
871         return -error;
872 }
873
874
875 STATIC int
876 xfs_file_open(
877         struct inode    *inode,
878         struct file     *file)
879 {
880         if (!(file->f_flags & O_LARGEFILE) && i_size_read(inode) > MAX_NON_LFS)
881                 return -EFBIG;
882         if (XFS_FORCED_SHUTDOWN(XFS_M(inode->i_sb)))
883                 return -EIO;
884         return 0;
885 }
886
887 STATIC int
888 xfs_dir_open(
889         struct inode    *inode,
890         struct file     *file)
891 {
892         struct xfs_inode *ip = XFS_I(inode);
893         int             mode;
894         int             error;
895
896         error = xfs_file_open(inode, file);
897         if (error)
898                 return error;
899
900         /*
901          * If there are any blocks, read-ahead block 0 as we're almost
902          * certain to have the next operation be a read there.
903          */
904         mode = xfs_ilock_map_shared(ip);
905         if (ip->i_d.di_nextents > 0)
906                 xfs_dir3_data_readahead(NULL, ip, 0, -1);
907         xfs_iunlock(ip, mode);
908         return 0;
909 }
910
911 STATIC int
912 xfs_file_release(
913         struct inode    *inode,
914         struct file     *filp)
915 {
916         return -xfs_release(XFS_I(inode));
917 }
918
919 STATIC int
920 xfs_file_readdir(
921         struct file     *file,
922         struct dir_context *ctx)
923 {
924         struct inode    *inode = file_inode(file);
925         xfs_inode_t     *ip = XFS_I(inode);
926         int             error;
927         size_t          bufsize;
928
929         /*
930          * The Linux API doesn't pass down the total size of the buffer
931          * we read into down to the filesystem.  With the filldir concept
932          * it's not needed for correct information, but the XFS dir2 leaf
933          * code wants an estimate of the buffer size to calculate it's
934          * readahead window and size the buffers used for mapping to
935          * physical blocks.
936          *
937          * Try to give it an estimate that's good enough, maybe at some
938          * point we can change the ->readdir prototype to include the
939          * buffer size.  For now we use the current glibc buffer size.
940          */
941         bufsize = (size_t)min_t(loff_t, 32768, ip->i_d.di_size);
942
943         error = xfs_readdir(ip, ctx, bufsize);
944         if (error)
945                 return -error;
946         return 0;
947 }
948
949 STATIC int
950 xfs_file_mmap(
951         struct file     *filp,
952         struct vm_area_struct *vma)
953 {
954         vma->vm_ops = &xfs_file_vm_ops;
955
956         file_accessed(filp);
957         return 0;
958 }
959
960 /*
961  * mmap()d file has taken write protection fault and is being made
962  * writable. We can set the page state up correctly for a writable
963  * page, which means we can do correct delalloc accounting (ENOSPC
964  * checking!) and unwritten extent mapping.
965  */
966 STATIC int
967 xfs_vm_page_mkwrite(
968         struct vm_area_struct   *vma,
969         struct vm_fault         *vmf)
970 {
971         return block_page_mkwrite(vma, vmf, xfs_get_blocks);
972 }
973
974 /*
975  * This type is designed to indicate the type of offset we would like
976  * to search from page cache for either xfs_seek_data() or xfs_seek_hole().
977  */
978 enum {
979         HOLE_OFF = 0,
980         DATA_OFF,
981 };
982
983 /*
984  * Lookup the desired type of offset from the given page.
985  *
986  * On success, return true and the offset argument will point to the
987  * start of the region that was found.  Otherwise this function will
988  * return false and keep the offset argument unchanged.
989  */
990 STATIC bool
991 xfs_lookup_buffer_offset(
992         struct page             *page,
993         loff_t                  *offset,
994         unsigned int            type)
995 {
996         loff_t                  lastoff = page_offset(page);
997         bool                    found = false;
998         struct buffer_head      *bh, *head;
999
1000         bh = head = page_buffers(page);
1001         do {
1002                 /*
1003                  * Unwritten extents that have data in the page
1004                  * cache covering them can be identified by the
1005                  * BH_Unwritten state flag.  Pages with multiple
1006                  * buffers might have a mix of holes, data and
1007                  * unwritten extents - any buffer with valid
1008                  * data in it should have BH_Uptodate flag set
1009                  * on it.
1010                  */
1011                 if (buffer_unwritten(bh) ||
1012                     buffer_uptodate(bh)) {
1013                         if (type == DATA_OFF)
1014                                 found = true;
1015                 } else {
1016                         if (type == HOLE_OFF)
1017                                 found = true;
1018                 }
1019
1020                 if (found) {
1021                         *offset = lastoff;
1022                         break;
1023                 }
1024                 lastoff += bh->b_size;
1025         } while ((bh = bh->b_this_page) != head);
1026
1027         return found;
1028 }
1029
1030 /*
1031  * This routine is called to find out and return a data or hole offset
1032  * from the page cache for unwritten extents according to the desired
1033  * type for xfs_seek_data() or xfs_seek_hole().
1034  *
1035  * The argument offset is used to tell where we start to search from the
1036  * page cache.  Map is used to figure out the end points of the range to
1037  * lookup pages.
1038  *
1039  * Return true if the desired type of offset was found, and the argument
1040  * offset is filled with that address.  Otherwise, return false and keep
1041  * offset unchanged.
1042  */
1043 STATIC bool
1044 xfs_find_get_desired_pgoff(
1045         struct inode            *inode,
1046         struct xfs_bmbt_irec    *map,
1047         unsigned int            type,
1048         loff_t                  *offset)
1049 {
1050         struct xfs_inode        *ip = XFS_I(inode);
1051         struct xfs_mount        *mp = ip->i_mount;
1052         struct pagevec          pvec;
1053         pgoff_t                 index;
1054         pgoff_t                 end;
1055         loff_t                  endoff;
1056         loff_t                  startoff = *offset;
1057         loff_t                  lastoff = startoff;
1058         bool                    found = false;
1059
1060         pagevec_init(&pvec, 0);
1061
1062         index = startoff >> PAGE_CACHE_SHIFT;
1063         endoff = XFS_FSB_TO_B(mp, map->br_startoff + map->br_blockcount);
1064         end = endoff >> PAGE_CACHE_SHIFT;
1065         do {
1066                 int             want;
1067                 unsigned        nr_pages;
1068                 unsigned int    i;
1069
1070                 want = min_t(pgoff_t, end - index, PAGEVEC_SIZE);
1071                 nr_pages = pagevec_lookup(&pvec, inode->i_mapping, index,
1072                                           want);
1073                 /*
1074                  * No page mapped into given range.  If we are searching holes
1075                  * and if this is the first time we got into the loop, it means
1076                  * that the given offset is landed in a hole, return it.
1077                  *
1078                  * If we have already stepped through some block buffers to find
1079                  * holes but they all contains data.  In this case, the last
1080                  * offset is already updated and pointed to the end of the last
1081                  * mapped page, if it does not reach the endpoint to search,
1082                  * that means there should be a hole between them.
1083                  */
1084                 if (nr_pages == 0) {
1085                         /* Data search found nothing */
1086                         if (type == DATA_OFF)
1087                                 break;
1088
1089                         ASSERT(type == HOLE_OFF);
1090                         if (lastoff == startoff || lastoff < endoff) {
1091                                 found = true;
1092                                 *offset = lastoff;
1093                         }
1094                         break;
1095                 }
1096
1097                 /*
1098                  * At lease we found one page.  If this is the first time we
1099                  * step into the loop, and if the first page index offset is
1100                  * greater than the given search offset, a hole was found.
1101                  */
1102                 if (type == HOLE_OFF && lastoff == startoff &&
1103                     lastoff < page_offset(pvec.pages[0])) {
1104                         found = true;
1105                         break;
1106                 }
1107
1108                 for (i = 0; i < nr_pages; i++) {
1109                         struct page     *page = pvec.pages[i];
1110                         loff_t          b_offset;
1111
1112                         /*
1113                          * At this point, the page may be truncated or
1114                          * invalidated (changing page->mapping to NULL),
1115                          * or even swizzled back from swapper_space to tmpfs
1116                          * file mapping. However, page->index will not change
1117                          * because we have a reference on the page.
1118                          *
1119                          * Searching done if the page index is out of range.
1120                          * If the current offset is not reaches the end of
1121                          * the specified search range, there should be a hole
1122                          * between them.
1123                          */
1124                         if (page->index > end) {
1125                                 if (type == HOLE_OFF && lastoff < endoff) {
1126                                         *offset = lastoff;
1127                                         found = true;
1128                                 }
1129                                 goto out;
1130                         }
1131
1132                         lock_page(page);
1133                         /*
1134                          * Page truncated or invalidated(page->mapping == NULL).
1135                          * We can freely skip it and proceed to check the next
1136                          * page.
1137                          */
1138                         if (unlikely(page->mapping != inode->i_mapping)) {
1139                                 unlock_page(page);
1140                                 continue;
1141                         }
1142
1143                         if (!page_has_buffers(page)) {
1144                                 unlock_page(page);
1145                                 continue;
1146                         }
1147
1148                         found = xfs_lookup_buffer_offset(page, &b_offset, type);
1149                         if (found) {
1150                                 /*
1151                                  * The found offset may be less than the start
1152                                  * point to search if this is the first time to
1153                                  * come here.
1154                                  */
1155                                 *offset = max_t(loff_t, startoff, b_offset);
1156                                 unlock_page(page);
1157                                 goto out;
1158                         }
1159
1160                         /*
1161                          * We either searching data but nothing was found, or
1162                          * searching hole but found a data buffer.  In either
1163                          * case, probably the next page contains the desired
1164                          * things, update the last offset to it so.
1165                          */
1166                         lastoff = page_offset(page) + PAGE_SIZE;
1167                         unlock_page(page);
1168                 }
1169
1170                 /*
1171                  * The number of returned pages less than our desired, search
1172                  * done.  In this case, nothing was found for searching data,
1173                  * but we found a hole behind the last offset.
1174                  */
1175                 if (nr_pages < want) {
1176                         if (type == HOLE_OFF) {
1177                                 *offset = lastoff;
1178                                 found = true;
1179                         }
1180                         break;
1181                 }
1182
1183                 index = pvec.pages[i - 1]->index + 1;
1184                 pagevec_release(&pvec);
1185         } while (index <= end);
1186
1187 out:
1188         pagevec_release(&pvec);
1189         return found;
1190 }
1191
1192 STATIC loff_t
1193 xfs_seek_data(
1194         struct file             *file,
1195         loff_t                  start)
1196 {
1197         struct inode            *inode = file->f_mapping->host;
1198         struct xfs_inode        *ip = XFS_I(inode);
1199         struct xfs_mount        *mp = ip->i_mount;
1200         loff_t                  uninitialized_var(offset);
1201         xfs_fsize_t             isize;
1202         xfs_fileoff_t           fsbno;
1203         xfs_filblks_t           end;
1204         uint                    lock;
1205         int                     error;
1206
1207         lock = xfs_ilock_map_shared(ip);
1208
1209         isize = i_size_read(inode);
1210         if (start >= isize) {
1211                 error = ENXIO;
1212                 goto out_unlock;
1213         }
1214
1215         /*
1216          * Try to read extents from the first block indicated
1217          * by fsbno to the end block of the file.
1218          */
1219         fsbno = XFS_B_TO_FSBT(mp, start);
1220         end = XFS_B_TO_FSB(mp, isize);
1221         for (;;) {
1222                 struct xfs_bmbt_irec    map[2];
1223                 int                     nmap = 2;
1224                 unsigned int            i;
1225
1226                 error = xfs_bmapi_read(ip, fsbno, end - fsbno, map, &nmap,
1227                                        XFS_BMAPI_ENTIRE);
1228                 if (error)
1229                         goto out_unlock;
1230
1231                 /* No extents at given offset, must be beyond EOF */
1232                 if (nmap == 0) {
1233                         error = ENXIO;
1234                         goto out_unlock;
1235                 }
1236
1237                 for (i = 0; i < nmap; i++) {
1238                         offset = max_t(loff_t, start,
1239                                        XFS_FSB_TO_B(mp, map[i].br_startoff));
1240
1241                         /* Landed in a data extent */
1242                         if (map[i].br_startblock == DELAYSTARTBLOCK ||
1243                             (map[i].br_state == XFS_EXT_NORM &&
1244                              !isnullstartblock(map[i].br_startblock)))
1245                                 goto out;
1246
1247                         /*
1248                          * Landed in an unwritten extent, try to search data
1249                          * from page cache.
1250                          */
1251                         if (map[i].br_state == XFS_EXT_UNWRITTEN) {
1252                                 if (xfs_find_get_desired_pgoff(inode, &map[i],
1253                                                         DATA_OFF, &offset))
1254                                         goto out;
1255                         }
1256                 }
1257
1258                 /*
1259                  * map[0] is hole or its an unwritten extent but
1260                  * without data in page cache.  Probably means that
1261                  * we are reading after EOF if nothing in map[1].
1262                  */
1263                 if (nmap == 1) {
1264                         error = ENXIO;
1265                         goto out_unlock;
1266                 }
1267
1268                 ASSERT(i > 1);
1269
1270                 /*
1271                  * Nothing was found, proceed to the next round of search
1272                  * if reading offset not beyond or hit EOF.
1273                  */
1274                 fsbno = map[i - 1].br_startoff + map[i - 1].br_blockcount;
1275                 start = XFS_FSB_TO_B(mp, fsbno);
1276                 if (start >= isize) {
1277                         error = ENXIO;
1278                         goto out_unlock;
1279                 }
1280         }
1281
1282 out:
1283         offset = vfs_setpos(file, offset, inode->i_sb->s_maxbytes);
1284
1285 out_unlock:
1286         xfs_iunlock_map_shared(ip, lock);
1287
1288         if (error)
1289                 return -error;
1290         return offset;
1291 }
1292
1293 STATIC loff_t
1294 xfs_seek_hole(
1295         struct file             *file,
1296         loff_t                  start)
1297 {
1298         struct inode            *inode = file->f_mapping->host;
1299         struct xfs_inode        *ip = XFS_I(inode);
1300         struct xfs_mount        *mp = ip->i_mount;
1301         loff_t                  uninitialized_var(offset);
1302         xfs_fsize_t             isize;
1303         xfs_fileoff_t           fsbno;
1304         xfs_filblks_t           end;
1305         uint                    lock;
1306         int                     error;
1307
1308         if (XFS_FORCED_SHUTDOWN(mp))
1309                 return -XFS_ERROR(EIO);
1310
1311         lock = xfs_ilock_map_shared(ip);
1312
1313         isize = i_size_read(inode);
1314         if (start >= isize) {
1315                 error = ENXIO;
1316                 goto out_unlock;
1317         }
1318
1319         fsbno = XFS_B_TO_FSBT(mp, start);
1320         end = XFS_B_TO_FSB(mp, isize);
1321
1322         for (;;) {
1323                 struct xfs_bmbt_irec    map[2];
1324                 int                     nmap = 2;
1325                 unsigned int            i;
1326
1327                 error = xfs_bmapi_read(ip, fsbno, end - fsbno, map, &nmap,
1328                                        XFS_BMAPI_ENTIRE);
1329                 if (error)
1330                         goto out_unlock;
1331
1332                 /* No extents at given offset, must be beyond EOF */
1333                 if (nmap == 0) {
1334                         error = ENXIO;
1335                         goto out_unlock;
1336                 }
1337
1338                 for (i = 0; i < nmap; i++) {
1339                         offset = max_t(loff_t, start,
1340                                        XFS_FSB_TO_B(mp, map[i].br_startoff));
1341
1342                         /* Landed in a hole */
1343                         if (map[i].br_startblock == HOLESTARTBLOCK)
1344                                 goto out;
1345
1346                         /*
1347                          * Landed in an unwritten extent, try to search hole
1348                          * from page cache.
1349                          */
1350                         if (map[i].br_state == XFS_EXT_UNWRITTEN) {
1351                                 if (xfs_find_get_desired_pgoff(inode, &map[i],
1352                                                         HOLE_OFF, &offset))
1353                                         goto out;
1354                         }
1355                 }
1356
1357                 /*
1358                  * map[0] contains data or its unwritten but contains
1359                  * data in page cache, probably means that we are
1360                  * reading after EOF.  We should fix offset to point
1361                  * to the end of the file(i.e., there is an implicit
1362                  * hole at the end of any file).
1363                  */
1364                 if (nmap == 1) {
1365                         offset = isize;
1366                         break;
1367                 }
1368
1369                 ASSERT(i > 1);
1370
1371                 /*
1372                  * Both mappings contains data, proceed to the next round of
1373                  * search if the current reading offset not beyond or hit EOF.
1374                  */
1375                 fsbno = map[i - 1].br_startoff + map[i - 1].br_blockcount;
1376                 start = XFS_FSB_TO_B(mp, fsbno);
1377                 if (start >= isize) {
1378                         offset = isize;
1379                         break;
1380                 }
1381         }
1382
1383 out:
1384         /*
1385          * At this point, we must have found a hole.  However, the returned
1386          * offset may be bigger than the file size as it may be aligned to
1387          * page boundary for unwritten extents, we need to deal with this
1388          * situation in particular.
1389          */
1390         offset = min_t(loff_t, offset, isize);
1391         offset = vfs_setpos(file, offset, inode->i_sb->s_maxbytes);
1392
1393 out_unlock:
1394         xfs_iunlock_map_shared(ip, lock);
1395
1396         if (error)
1397                 return -error;
1398         return offset;
1399 }
1400
1401 STATIC loff_t
1402 xfs_file_llseek(
1403         struct file     *file,
1404         loff_t          offset,
1405         int             origin)
1406 {
1407         switch (origin) {
1408         case SEEK_END:
1409         case SEEK_CUR:
1410         case SEEK_SET:
1411                 return generic_file_llseek(file, offset, origin);
1412         case SEEK_DATA:
1413                 return xfs_seek_data(file, offset);
1414         case SEEK_HOLE:
1415                 return xfs_seek_hole(file, offset);
1416         default:
1417                 return -EINVAL;
1418         }
1419 }
1420
1421 const struct file_operations xfs_file_operations = {
1422         .llseek         = xfs_file_llseek,
1423         .read           = do_sync_read,
1424         .write          = do_sync_write,
1425         .read_iter      = xfs_file_read_iter,
1426         .write_iter     = xfs_file_write_iter,
1427         .splice_read    = xfs_file_splice_read,
1428         .splice_write   = xfs_file_splice_write,
1429         .unlocked_ioctl = xfs_file_ioctl,
1430 #ifdef CONFIG_COMPAT
1431         .compat_ioctl   = xfs_file_compat_ioctl,
1432 #endif
1433         .mmap           = xfs_file_mmap,
1434         .open           = xfs_file_open,
1435         .release        = xfs_file_release,
1436         .fsync          = xfs_file_fsync,
1437         .fallocate      = xfs_file_fallocate,
1438 };
1439
1440 const struct file_operations xfs_dir_file_operations = {
1441         .open           = xfs_dir_open,
1442         .read           = generic_read_dir,
1443         .iterate        = xfs_file_readdir,
1444         .llseek         = generic_file_llseek,
1445         .unlocked_ioctl = xfs_file_ioctl,
1446 #ifdef CONFIG_COMPAT
1447         .compat_ioctl   = xfs_file_compat_ioctl,
1448 #endif
1449         .fsync          = xfs_dir_fsync,
1450 };
1451
1452 static const struct vm_operations_struct xfs_file_vm_ops = {
1453         .fault          = filemap_fault,
1454         .page_mkwrite   = xfs_vm_page_mkwrite,
1455         .remap_pages    = generic_file_remap_pages,
1456 };