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