blob: fcc6c13491863c864628f5d4ed7cee69889f3fc0 [file] [log] [blame]
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001/*
Mingming Cao617ba132006-10-11 01:20:53 -07002 * linux/fs/ext4/file.c
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003 *
4 * Copyright (C) 1992, 1993, 1994, 1995
5 * Remy Card (card@masi.ibp.fr)
6 * Laboratoire MASI - Institut Blaise Pascal
7 * Universite Pierre et Marie Curie (Paris VI)
8 *
9 * from
10 *
11 * linux/fs/minix/file.c
12 *
13 * Copyright (C) 1991, 1992 Linus Torvalds
14 *
Mingming Cao617ba132006-10-11 01:20:53 -070015 * ext4 fs regular file handling primitives
Dave Kleikampac27a0e2006-10-11 01:20:50 -070016 *
17 * 64-bit file support on 64-bit platforms by Jakub Jelinek
18 * (jj@sunsite.ms.mff.cuni.cz)
19 */
20
21#include <linux/time.h>
22#include <linux/fs.h>
Theodore Ts'obc0b0d62009-06-13 10:09:48 -040023#include <linux/mount.h>
24#include <linux/path.h>
Kent Overstreeta27bb332013-05-07 16:19:08 -070025#include <linux/aio.h>
Christoph Hellwig871a2932010-03-03 09:05:07 -050026#include <linux/quotaops.h>
Zheng Liuc8c0df22012-11-08 21:57:40 -050027#include <linux/pagevec.h>
Christoph Hellwig3dcf5452008-04-29 18:13:32 -040028#include "ext4.h"
29#include "ext4_jbd2.h"
Dave Kleikampac27a0e2006-10-11 01:20:50 -070030#include "xattr.h"
31#include "acl.h"
32
33/*
34 * Called when an inode is released. Note that this is different
Mingming Cao617ba132006-10-11 01:20:53 -070035 * from ext4_file_open: open gets called at every open, but release
Dave Kleikampac27a0e2006-10-11 01:20:50 -070036 * gets called only when /all/ the files are closed.
37 */
Theodore Ts'oaf5bc922008-09-08 22:25:24 -040038static int ext4_release_file(struct inode *inode, struct file *filp)
Dave Kleikampac27a0e2006-10-11 01:20:50 -070039{
Theodore Ts'o19f5fb72010-01-24 14:34:07 -050040 if (ext4_test_inode_state(inode, EXT4_STATE_DA_ALLOC_CLOSE)) {
Theodore Ts'o7d8f9f72009-02-24 08:21:14 -050041 ext4_alloc_da_blocks(inode);
Theodore Ts'o19f5fb72010-01-24 14:34:07 -050042 ext4_clear_inode_state(inode, EXT4_STATE_DA_ALLOC_CLOSE);
Theodore Ts'o7d8f9f72009-02-24 08:21:14 -050043 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -070044 /* if we are the last writer on the inode, drop the block reservation */
45 if ((filp->f_mode & FMODE_WRITE) &&
Aneesh Kumar K.Vd6014302009-03-27 22:36:43 -040046 (atomic_read(&inode->i_writecount) == 1) &&
47 !EXT4_I(inode)->i_reserved_data_blocks)
Dave Kleikampac27a0e2006-10-11 01:20:50 -070048 {
Aneesh Kumar K.V0e855ac2008-01-28 23:58:26 -050049 down_write(&EXT4_I(inode)->i_data_sem);
Theodore Ts'oc2ea3fd2008-10-10 09:40:52 -040050 ext4_discard_preallocations(inode);
Aneesh Kumar K.V0e855ac2008-01-28 23:58:26 -050051 up_write(&EXT4_I(inode)->i_data_sem);
Dave Kleikampac27a0e2006-10-11 01:20:50 -070052 }
53 if (is_dx(inode) && filp->private_data)
Mingming Cao617ba132006-10-11 01:20:53 -070054 ext4_htree_free_dir_info(filp->private_data);
Dave Kleikampac27a0e2006-10-11 01:20:50 -070055
56 return 0;
57}
58
Stephen Hemmingerc1978552014-05-12 10:50:23 -040059static void ext4_unwritten_wait(struct inode *inode)
Eric Sandeene9e3bce2011-02-12 08:17:34 -050060{
61 wait_queue_head_t *wq = ext4_ioend_wq(inode);
62
Dmitry Monakhove27f41e2012-09-28 23:24:52 -040063 wait_event(*wq, (atomic_read(&EXT4_I(inode)->i_unwritten) == 0));
Eric Sandeene9e3bce2011-02-12 08:17:34 -050064}
65
66/*
67 * This tests whether the IO in question is block-aligned or not.
68 * Ext4 utilizes unwritten extents when hole-filling during direct IO, and they
69 * are converted to written only after the IO is complete. Until they are
70 * mapped, these blocks appear as holes, so dio_zero_block() will assume that
71 * it needs to zero out portions of the start and/or end block. If 2 AIO
72 * threads are at work on the same unwritten block, they must be synchronized
73 * or one thread will zero the other's data, causing corruption.
74 */
75static int
Al Viro9b884162014-04-17 16:09:22 -040076ext4_unaligned_aio(struct inode *inode, struct iov_iter *from, loff_t pos)
Eric Sandeene9e3bce2011-02-12 08:17:34 -050077{
78 struct super_block *sb = inode->i_sb;
79 int blockmask = sb->s_blocksize - 1;
Eric Sandeene9e3bce2011-02-12 08:17:34 -050080
Theodore Ts'o6e6358f2014-04-12 12:45:25 -040081 if (pos >= i_size_read(inode))
Eric Sandeene9e3bce2011-02-12 08:17:34 -050082 return 0;
83
Al Viro9b884162014-04-17 16:09:22 -040084 if ((pos | iov_iter_alignment(from)) & blockmask)
Eric Sandeene9e3bce2011-02-12 08:17:34 -050085 return 1;
86
87 return 0;
88}
89
Dave Kleikampac27a0e2006-10-11 01:20:50 -070090static ssize_t
Al Viro9b884162014-04-17 16:09:22 -040091ext4_file_write_iter(struct kiocb *iocb, struct iov_iter *from)
Dave Kleikampac27a0e2006-10-11 01:20:50 -070092{
Theodore Ts'o7608e612014-04-21 14:26:28 -040093 struct file *file = iocb->ki_filp;
Al Viro496ad9a2013-01-23 17:07:38 -050094 struct inode *inode = file_inode(iocb->ki_filp);
Theodore Ts'o7ed07ba2014-04-21 14:36:30 -040095 struct mutex *aio_mutex = NULL;
Theodore Ts'o8ad28502014-04-21 14:26:57 -040096 struct blk_plug plug;
Ross Zwisler923ae0f2015-02-16 15:59:38 -080097 int o_direct = io_is_direct(file);
Theodore Ts'o8ad28502014-04-21 14:26:57 -040098 int overwrite = 0;
Al Viro9b884162014-04-17 16:09:22 -040099 size_t length = iov_iter_count(from);
Zheng Liu85630002012-05-28 18:06:51 -0400100 ssize_t ret;
Al Viro9b884162014-04-17 16:09:22 -0400101 loff_t pos = iocb->ki_pos;
Theodore Ts'o7608e612014-04-21 14:26:28 -0400102
Eric Sandeene2b46572008-01-28 23:58:27 -0500103 /*
Theodore Ts'of5ccfe12014-04-21 14:37:52 -0400104 * Unaligned direct AIO must be serialized; see comment above
105 * In the case of O_APPEND, assume that we must always serialize
106 */
107 if (o_direct &&
108 ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS) &&
109 !is_sync_kiocb(iocb) &&
110 (file->f_flags & O_APPEND ||
Al Viro9b884162014-04-17 16:09:22 -0400111 ext4_unaligned_aio(inode, from, pos))) {
Theodore Ts'of5ccfe12014-04-21 14:37:52 -0400112 aio_mutex = ext4_aio_mutex(inode);
113 mutex_lock(aio_mutex);
114 ext4_unwritten_wait(inode);
115 }
116
117 mutex_lock(&inode->i_mutex);
118 if (file->f_flags & O_APPEND)
119 iocb->ki_pos = pos = i_size_read(inode);
120
121 /*
Eric Sandeene2b46572008-01-28 23:58:27 -0500122 * If we have encountered a bitmap-format file, the size limit
123 * is smaller than s_maxbytes, which is for extent-mapped files.
124 */
Dmitry Monakhov12e9b892010-05-16 22:00:00 -0400125 if (!(ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS))) {
Eric Sandeene2b46572008-01-28 23:58:27 -0500126 struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb);
Eric Sandeene2b46572008-01-28 23:58:27 -0500127
Theodore Ts'of5ccfe12014-04-21 14:37:52 -0400128 if ((pos > sbi->s_bitmap_maxbytes) ||
129 (pos == sbi->s_bitmap_maxbytes && length > 0)) {
130 mutex_unlock(&inode->i_mutex);
131 ret = -EFBIG;
132 goto errout;
133 }
Eric Sandeene2b46572008-01-28 23:58:27 -0500134
Al Viro9b884162014-04-17 16:09:22 -0400135 if (pos + length > sbi->s_bitmap_maxbytes)
136 iov_iter_truncate(from, sbi->s_bitmap_maxbytes - pos);
Eric Sandeene2b46572008-01-28 23:58:27 -0500137 }
138
Dmitry Monakhova41537e2014-10-30 10:53:16 -0400139 iocb->private = &overwrite;
Theodore Ts'o7ed07ba2014-04-21 14:36:30 -0400140 if (o_direct) {
Theodore Ts'o8ad28502014-04-21 14:26:57 -0400141 blk_start_plug(&plug);
142
Theodore Ts'o8ad28502014-04-21 14:26:57 -0400143
144 /* check whether we do a DIO overwrite or not */
Theodore Ts'o7ed07ba2014-04-21 14:36:30 -0400145 if (ext4_should_dioread_nolock(inode) && !aio_mutex &&
Theodore Ts'o8ad28502014-04-21 14:26:57 -0400146 !file->f_mapping->nrpages && pos + length <= i_size_read(inode)) {
147 struct ext4_map_blocks map;
148 unsigned int blkbits = inode->i_blkbits;
149 int err, len;
150
151 map.m_lblk = pos >> blkbits;
152 map.m_len = (EXT4_BLOCK_ALIGN(pos + length, blkbits) >> blkbits)
153 - map.m_lblk;
154 len = map.m_len;
155
156 err = ext4_map_blocks(NULL, inode, &map, 0);
157 /*
158 * 'err==len' means that all of blocks has
159 * been preallocated no matter they are
160 * initialized or not. For excluding
161 * unwritten extents, we need to check
162 * m_flags. There are two conditions that
163 * indicate for initialized extents. 1) If we
164 * hit extent cache, EXT4_MAP_MAPPED flag is
165 * returned; 2) If we do a real lookup,
166 * non-flags are returned. So we should check
167 * these two conditions.
168 */
169 if (err == len && (map.m_flags & EXT4_MAP_MAPPED))
170 overwrite = 1;
171 }
Theodore Ts'of5ccfe12014-04-21 14:37:52 -0400172 }
Theodore Ts'o8ad28502014-04-21 14:26:57 -0400173
Al Viro9b884162014-04-17 16:09:22 -0400174 ret = __generic_file_write_iter(iocb, from);
Theodore Ts'o7ed07ba2014-04-21 14:36:30 -0400175 mutex_unlock(&inode->i_mutex);
Theodore Ts'o8ad28502014-04-21 14:26:57 -0400176
Theodore Ts'o7ed07ba2014-04-21 14:36:30 -0400177 if (ret > 0) {
178 ssize_t err;
Theodore Ts'o8ad28502014-04-21 14:26:57 -0400179
Theodore Ts'o7ed07ba2014-04-21 14:36:30 -0400180 err = generic_write_sync(file, iocb->ki_pos - ret, ret);
181 if (err < 0)
182 ret = err;
183 }
184 if (o_direct)
Theodore Ts'o8ad28502014-04-21 14:26:57 -0400185 blk_finish_plug(&plug);
186
Theodore Ts'of5ccfe12014-04-21 14:37:52 -0400187errout:
Theodore Ts'o7ed07ba2014-04-21 14:36:30 -0400188 if (aio_mutex)
189 mutex_unlock(aio_mutex);
Eric Sandeene9e3bce2011-02-12 08:17:34 -0500190 return ret;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700191}
192
Ross Zwisler923ae0f2015-02-16 15:59:38 -0800193#ifdef CONFIG_FS_DAX
194static int ext4_dax_fault(struct vm_area_struct *vma, struct vm_fault *vmf)
195{
196 return dax_fault(vma, vmf, ext4_get_block);
197 /* Is this the right get_block? */
198}
199
200static int ext4_dax_mkwrite(struct vm_area_struct *vma, struct vm_fault *vmf)
201{
202 return dax_mkwrite(vma, vmf, ext4_get_block);
203}
204
205static const struct vm_operations_struct ext4_dax_vm_ops = {
206 .fault = ext4_dax_fault,
207 .page_mkwrite = ext4_dax_mkwrite,
208};
209#else
210#define ext4_dax_vm_ops ext4_file_vm_ops
211#endif
212
Alexey Dobriyanf0f37e22009-09-27 22:29:37 +0400213static const struct vm_operations_struct ext4_file_vm_ops = {
Aneesh Kumar K.V2e9ee852008-07-11 19:27:31 -0400214 .fault = filemap_fault,
Kirill A. Shutemovf1820362014-04-07 15:37:19 -0700215 .map_pages = filemap_map_pages,
Aneesh Kumar K.V2e9ee852008-07-11 19:27:31 -0400216 .page_mkwrite = ext4_page_mkwrite,
217};
218
219static int ext4_file_mmap(struct file *file, struct vm_area_struct *vma)
220{
Aneesh Kumar K.V2e9ee852008-07-11 19:27:31 -0400221 file_accessed(file);
Ross Zwisler923ae0f2015-02-16 15:59:38 -0800222 if (IS_DAX(file_inode(file))) {
223 vma->vm_ops = &ext4_dax_vm_ops;
224 vma->vm_flags |= VM_MIXEDMAP;
225 } else {
226 vma->vm_ops = &ext4_file_vm_ops;
227 }
Aneesh Kumar K.V2e9ee852008-07-11 19:27:31 -0400228 return 0;
229}
230
Theodore Ts'obc0b0d62009-06-13 10:09:48 -0400231static int ext4_file_open(struct inode * inode, struct file * filp)
232{
233 struct super_block *sb = inode->i_sb;
234 struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb);
235 struct vfsmount *mnt = filp->f_path.mnt;
236 struct path path;
237 char buf[64], *cp;
238
239 if (unlikely(!(sbi->s_mount_flags & EXT4_MF_MNTDIR_SAMPLED) &&
240 !(sb->s_flags & MS_RDONLY))) {
241 sbi->s_mount_flags |= EXT4_MF_MNTDIR_SAMPLED;
242 /*
243 * Sample where the filesystem has been mounted and
244 * store it in the superblock for sysadmin convenience
245 * when trying to sort through large numbers of block
246 * devices or filesystem images.
247 */
248 memset(buf, 0, sizeof(buf));
Al Viro38991672010-01-23 20:10:29 -0500249 path.mnt = mnt;
250 path.dentry = mnt->mnt_root;
Theodore Ts'obc0b0d62009-06-13 10:09:48 -0400251 cp = d_path(&path, buf, sizeof(buf));
Theodore Ts'obc0b0d62009-06-13 10:09:48 -0400252 if (!IS_ERR(cp)) {
Jan Kara044ce472012-07-22 20:31:31 -0400253 handle_t *handle;
254 int err;
255
Theodore Ts'o9924a922013-02-08 21:59:22 -0500256 handle = ext4_journal_start_sb(sb, EXT4_HT_MISC, 1);
Jan Kara044ce472012-07-22 20:31:31 -0400257 if (IS_ERR(handle))
258 return PTR_ERR(handle);
liang xie5d601252014-05-12 22:06:43 -0400259 BUFFER_TRACE(sbi->s_sbh, "get_write_access");
Jan Kara044ce472012-07-22 20:31:31 -0400260 err = ext4_journal_get_write_access(handle, sbi->s_sbh);
261 if (err) {
262 ext4_journal_stop(handle);
263 return err;
264 }
Darrick J. Wongcf803902011-10-25 09:18:41 -0400265 strlcpy(sbi->s_es->s_last_mounted, cp,
266 sizeof(sbi->s_es->s_last_mounted));
Jan Kara044ce472012-07-22 20:31:31 -0400267 ext4_handle_dirty_super(handle, sb);
268 ext4_journal_stop(handle);
Theodore Ts'obc0b0d62009-06-13 10:09:48 -0400269 }
270 }
Theodore Ts'o8aefcd52011-01-10 12:29:43 -0500271 /*
272 * Set up the jbd2_inode if we are opening the inode for
273 * writing and the journal is present
274 */
Jan Karaa3612932013-08-16 21:19:41 -0400275 if (filp->f_mode & FMODE_WRITE) {
276 int ret = ext4_inode_attach_jinode(inode);
277 if (ret < 0)
278 return ret;
Theodore Ts'o8aefcd52011-01-10 12:29:43 -0500279 }
Christoph Hellwig907f4552010-03-03 09:05:06 -0500280 return dquot_file_open(inode, filp);
Theodore Ts'obc0b0d62009-06-13 10:09:48 -0400281}
282
Toshiyuki Okajimae0d10bf2010-10-27 21:30:06 -0400283/*
Zheng Liuc8c0df22012-11-08 21:57:40 -0500284 * Here we use ext4_map_blocks() to get a block mapping for a extent-based
285 * file rather than ext4_ext_walk_space() because we can introduce
286 * SEEK_DATA/SEEK_HOLE for block-mapped and extent-mapped file at the same
287 * function. When extent status tree has been fully implemented, it will
288 * track all extent status for a file and we can directly use it to
289 * retrieve the offset for SEEK_DATA/SEEK_HOLE.
290 */
291
292/*
293 * When we retrieve the offset for SEEK_DATA/SEEK_HOLE, we would need to
294 * lookup page cache to check whether or not there has some data between
295 * [startoff, endoff] because, if this range contains an unwritten extent,
296 * we determine this extent as a data or a hole according to whether the
297 * page cache has data or not.
298 */
Theodore Ts'oad7fefb2015-01-02 15:16:00 -0500299static int ext4_find_unwritten_pgoff(struct inode *inode,
300 int whence,
301 struct ext4_map_blocks *map,
302 loff_t *offset)
Zheng Liuc8c0df22012-11-08 21:57:40 -0500303{
304 struct pagevec pvec;
Theodore Ts'oad7fefb2015-01-02 15:16:00 -0500305 unsigned int blkbits;
Zheng Liuc8c0df22012-11-08 21:57:40 -0500306 pgoff_t index;
307 pgoff_t end;
Theodore Ts'oad7fefb2015-01-02 15:16:00 -0500308 loff_t endoff;
Zheng Liuc8c0df22012-11-08 21:57:40 -0500309 loff_t startoff;
310 loff_t lastoff;
311 int found = 0;
312
Theodore Ts'oad7fefb2015-01-02 15:16:00 -0500313 blkbits = inode->i_sb->s_blocksize_bits;
Zheng Liuc8c0df22012-11-08 21:57:40 -0500314 startoff = *offset;
315 lastoff = startoff;
Theodore Ts'oad7fefb2015-01-02 15:16:00 -0500316 endoff = (loff_t)(map->m_lblk + map->m_len) << blkbits;
Zheng Liuc8c0df22012-11-08 21:57:40 -0500317
318 index = startoff >> PAGE_CACHE_SHIFT;
319 end = endoff >> PAGE_CACHE_SHIFT;
320
321 pagevec_init(&pvec, 0);
322 do {
323 int i, num;
324 unsigned long nr_pages;
325
326 num = min_t(pgoff_t, end - index, PAGEVEC_SIZE);
327 nr_pages = pagevec_lookup(&pvec, inode->i_mapping, index,
328 (pgoff_t)num);
329 if (nr_pages == 0) {
Andrew Morton965c8e52012-12-17 15:59:39 -0800330 if (whence == SEEK_DATA)
Zheng Liuc8c0df22012-11-08 21:57:40 -0500331 break;
332
Andrew Morton965c8e52012-12-17 15:59:39 -0800333 BUG_ON(whence != SEEK_HOLE);
Zheng Liuc8c0df22012-11-08 21:57:40 -0500334 /*
335 * If this is the first time to go into the loop and
336 * offset is not beyond the end offset, it will be a
337 * hole at this offset
338 */
339 if (lastoff == startoff || lastoff < endoff)
340 found = 1;
341 break;
342 }
343
344 /*
345 * If this is the first time to go into the loop and
346 * offset is smaller than the first page offset, it will be a
347 * hole at this offset.
348 */
Andrew Morton965c8e52012-12-17 15:59:39 -0800349 if (lastoff == startoff && whence == SEEK_HOLE &&
Zheng Liuc8c0df22012-11-08 21:57:40 -0500350 lastoff < page_offset(pvec.pages[0])) {
351 found = 1;
352 break;
353 }
354
355 for (i = 0; i < nr_pages; i++) {
356 struct page *page = pvec.pages[i];
357 struct buffer_head *bh, *head;
358
359 /*
360 * If the current offset is not beyond the end of given
361 * range, it will be a hole.
362 */
Andrew Morton965c8e52012-12-17 15:59:39 -0800363 if (lastoff < endoff && whence == SEEK_HOLE &&
Zheng Liuc8c0df22012-11-08 21:57:40 -0500364 page->index > end) {
365 found = 1;
366 *offset = lastoff;
367 goto out;
368 }
369
370 lock_page(page);
371
372 if (unlikely(page->mapping != inode->i_mapping)) {
373 unlock_page(page);
374 continue;
375 }
376
377 if (!page_has_buffers(page)) {
378 unlock_page(page);
379 continue;
380 }
381
382 if (page_has_buffers(page)) {
383 lastoff = page_offset(page);
384 bh = head = page_buffers(page);
385 do {
386 if (buffer_uptodate(bh) ||
387 buffer_unwritten(bh)) {
Andrew Morton965c8e52012-12-17 15:59:39 -0800388 if (whence == SEEK_DATA)
Zheng Liuc8c0df22012-11-08 21:57:40 -0500389 found = 1;
390 } else {
Andrew Morton965c8e52012-12-17 15:59:39 -0800391 if (whence == SEEK_HOLE)
Zheng Liuc8c0df22012-11-08 21:57:40 -0500392 found = 1;
393 }
394 if (found) {
395 *offset = max_t(loff_t,
396 startoff, lastoff);
397 unlock_page(page);
398 goto out;
399 }
400 lastoff += bh->b_size;
401 bh = bh->b_this_page;
402 } while (bh != head);
403 }
404
405 lastoff = page_offset(page) + PAGE_SIZE;
406 unlock_page(page);
407 }
408
409 /*
410 * The no. of pages is less than our desired, that would be a
411 * hole in there.
412 */
Andrew Morton965c8e52012-12-17 15:59:39 -0800413 if (nr_pages < num && whence == SEEK_HOLE) {
Zheng Liuc8c0df22012-11-08 21:57:40 -0500414 found = 1;
415 *offset = lastoff;
416 break;
417 }
418
419 index = pvec.pages[i - 1]->index + 1;
420 pagevec_release(&pvec);
421 } while (index <= end);
422
423out:
424 pagevec_release(&pvec);
425 return found;
426}
427
428/*
429 * ext4_seek_data() retrieves the offset for SEEK_DATA.
430 */
431static loff_t ext4_seek_data(struct file *file, loff_t offset, loff_t maxsize)
432{
433 struct inode *inode = file->f_mapping->host;
Theodore Ts'oad7fefb2015-01-02 15:16:00 -0500434 struct ext4_map_blocks map;
435 struct extent_status es;
436 ext4_lblk_t start, last, end;
437 loff_t dataoff, isize;
438 int blkbits;
439 int ret = 0;
Zheng Liuc8c0df22012-11-08 21:57:40 -0500440
441 mutex_lock(&inode->i_mutex);
Theodore Ts'oad7fefb2015-01-02 15:16:00 -0500442
443 isize = i_size_read(inode);
444 if (offset >= isize) {
Zheng Liuc8c0df22012-11-08 21:57:40 -0500445 mutex_unlock(&inode->i_mutex);
446 return -ENXIO;
447 }
448
Theodore Ts'oad7fefb2015-01-02 15:16:00 -0500449 blkbits = inode->i_sb->s_blocksize_bits;
450 start = offset >> blkbits;
451 last = start;
452 end = isize >> blkbits;
453 dataoff = offset;
Zheng Liuc8c0df22012-11-08 21:57:40 -0500454
Theodore Ts'oad7fefb2015-01-02 15:16:00 -0500455 do {
456 map.m_lblk = last;
457 map.m_len = end - last + 1;
458 ret = ext4_map_blocks(NULL, inode, &map, 0);
459 if (ret > 0 && !(map.m_flags & EXT4_MAP_UNWRITTEN)) {
460 if (last != start)
461 dataoff = (loff_t)last << blkbits;
Zheng Liuc8c0df22012-11-08 21:57:40 -0500462 break;
463 }
464
Theodore Ts'oad7fefb2015-01-02 15:16:00 -0500465 /*
466 * If there is a delay extent at this offset,
467 * it will be as a data.
468 */
469 ext4_es_find_delayed_extent_range(inode, last, last, &es);
470 if (es.es_len != 0 && in_range(last, es.es_lblk, es.es_len)) {
471 if (last != start)
472 dataoff = (loff_t)last << blkbits;
473 break;
Zheng Liuc8c0df22012-11-08 21:57:40 -0500474 }
Theodore Ts'oad7fefb2015-01-02 15:16:00 -0500475
476 /*
477 * If there is a unwritten extent at this offset,
478 * it will be as a data or a hole according to page
479 * cache that has data or not.
480 */
481 if (map.m_flags & EXT4_MAP_UNWRITTEN) {
482 int unwritten;
483 unwritten = ext4_find_unwritten_pgoff(inode, SEEK_DATA,
484 &map, &dataoff);
485 if (unwritten)
486 break;
487 }
488
489 last++;
490 dataoff = (loff_t)last << blkbits;
491 } while (last <= end);
492
Zheng Liuc8c0df22012-11-08 21:57:40 -0500493 mutex_unlock(&inode->i_mutex);
494
Theodore Ts'oad7fefb2015-01-02 15:16:00 -0500495 if (dataoff > isize)
496 return -ENXIO;
497
498 return vfs_setpos(file, dataoff, maxsize);
Zheng Liuc8c0df22012-11-08 21:57:40 -0500499}
500
501/*
Theodore Ts'oad7fefb2015-01-02 15:16:00 -0500502 * ext4_seek_hole() retrieves the offset for SEEK_HOLE.
Zheng Liuc8c0df22012-11-08 21:57:40 -0500503 */
504static loff_t ext4_seek_hole(struct file *file, loff_t offset, loff_t maxsize)
505{
506 struct inode *inode = file->f_mapping->host;
Theodore Ts'oad7fefb2015-01-02 15:16:00 -0500507 struct ext4_map_blocks map;
508 struct extent_status es;
509 ext4_lblk_t start, last, end;
510 loff_t holeoff, isize;
511 int blkbits;
512 int ret = 0;
Zheng Liuc8c0df22012-11-08 21:57:40 -0500513
514 mutex_lock(&inode->i_mutex);
Theodore Ts'oad7fefb2015-01-02 15:16:00 -0500515
516 isize = i_size_read(inode);
517 if (offset >= isize) {
Zheng Liuc8c0df22012-11-08 21:57:40 -0500518 mutex_unlock(&inode->i_mutex);
519 return -ENXIO;
520 }
521
Theodore Ts'oad7fefb2015-01-02 15:16:00 -0500522 blkbits = inode->i_sb->s_blocksize_bits;
523 start = offset >> blkbits;
524 last = start;
525 end = isize >> blkbits;
526 holeoff = offset;
Zheng Liuc8c0df22012-11-08 21:57:40 -0500527
Theodore Ts'oad7fefb2015-01-02 15:16:00 -0500528 do {
529 map.m_lblk = last;
530 map.m_len = end - last + 1;
531 ret = ext4_map_blocks(NULL, inode, &map, 0);
532 if (ret > 0 && !(map.m_flags & EXT4_MAP_UNWRITTEN)) {
533 last += ret;
534 holeoff = (loff_t)last << blkbits;
535 continue;
536 }
Zheng Liuc8c0df22012-11-08 21:57:40 -0500537
Theodore Ts'oad7fefb2015-01-02 15:16:00 -0500538 /*
539 * If there is a delay extent at this offset,
540 * we will skip this extent.
541 */
542 ext4_es_find_delayed_extent_range(inode, last, last, &es);
543 if (es.es_len != 0 && in_range(last, es.es_lblk, es.es_len)) {
544 last = es.es_lblk + es.es_len;
545 holeoff = (loff_t)last << blkbits;
546 continue;
547 }
Zheng Liuc8c0df22012-11-08 21:57:40 -0500548
Theodore Ts'oad7fefb2015-01-02 15:16:00 -0500549 /*
550 * If there is a unwritten extent at this offset,
551 * it will be as a data or a hole according to page
552 * cache that has data or not.
553 */
554 if (map.m_flags & EXT4_MAP_UNWRITTEN) {
555 int unwritten;
556 unwritten = ext4_find_unwritten_pgoff(inode, SEEK_HOLE,
557 &map, &holeoff);
558 if (!unwritten) {
559 last += ret;
560 holeoff = (loff_t)last << blkbits;
Zheng Liuc8c0df22012-11-08 21:57:40 -0500561 continue;
562 }
563 }
Zheng Liuc8c0df22012-11-08 21:57:40 -0500564
Theodore Ts'oad7fefb2015-01-02 15:16:00 -0500565 /* find a hole */
566 break;
567 } while (last <= end);
568
569 mutex_unlock(&inode->i_mutex);
570
571 if (holeoff > isize)
572 holeoff = isize;
573
574 return vfs_setpos(file, holeoff, maxsize);
Zheng Liuc8c0df22012-11-08 21:57:40 -0500575}
576
577/*
Eric Sandeenec7268c2012-04-30 13:14:03 -0500578 * ext4_llseek() handles both block-mapped and extent-mapped maxbytes values
579 * by calling generic_file_llseek_size() with the appropriate maxbytes
580 * value for each.
Toshiyuki Okajimae0d10bf2010-10-27 21:30:06 -0400581 */
Andrew Morton965c8e52012-12-17 15:59:39 -0800582loff_t ext4_llseek(struct file *file, loff_t offset, int whence)
Toshiyuki Okajimae0d10bf2010-10-27 21:30:06 -0400583{
584 struct inode *inode = file->f_mapping->host;
585 loff_t maxbytes;
586
587 if (!(ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS)))
588 maxbytes = EXT4_SB(inode->i_sb)->s_bitmap_maxbytes;
589 else
590 maxbytes = inode->i_sb->s_maxbytes;
Toshiyuki Okajimae0d10bf2010-10-27 21:30:06 -0400591
Andrew Morton965c8e52012-12-17 15:59:39 -0800592 switch (whence) {
Zheng Liuc8c0df22012-11-08 21:57:40 -0500593 case SEEK_SET:
594 case SEEK_CUR:
595 case SEEK_END:
Andrew Morton965c8e52012-12-17 15:59:39 -0800596 return generic_file_llseek_size(file, offset, whence,
Zheng Liuc8c0df22012-11-08 21:57:40 -0500597 maxbytes, i_size_read(inode));
598 case SEEK_DATA:
599 return ext4_seek_data(file, offset, maxbytes);
600 case SEEK_HOLE:
601 return ext4_seek_hole(file, offset, maxbytes);
602 }
603
604 return -EINVAL;
Toshiyuki Okajimae0d10bf2010-10-27 21:30:06 -0400605}
606
Mingming Cao617ba132006-10-11 01:20:53 -0700607const struct file_operations ext4_file_operations = {
Toshiyuki Okajimae0d10bf2010-10-27 21:30:06 -0400608 .llseek = ext4_llseek,
Al Viroaad4f8b2014-04-02 14:33:16 -0400609 .read = new_sync_read,
Al Viro9b884162014-04-17 16:09:22 -0400610 .write = new_sync_write,
Al Viroaad4f8b2014-04-02 14:33:16 -0400611 .read_iter = generic_file_read_iter,
Al Viro9b884162014-04-17 16:09:22 -0400612 .write_iter = ext4_file_write_iter,
Andi Kleen5cdd7b22008-04-29 22:03:54 -0400613 .unlocked_ioctl = ext4_ioctl,
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700614#ifdef CONFIG_COMPAT
Mingming Cao617ba132006-10-11 01:20:53 -0700615 .compat_ioctl = ext4_compat_ioctl,
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700616#endif
Aneesh Kumar K.V2e9ee852008-07-11 19:27:31 -0400617 .mmap = ext4_file_mmap,
Theodore Ts'obc0b0d62009-06-13 10:09:48 -0400618 .open = ext4_file_open,
Mingming Cao617ba132006-10-11 01:20:53 -0700619 .release = ext4_release_file,
620 .fsync = ext4_sync_file,
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700621 .splice_read = generic_file_splice_read,
Al Viro8d020762014-04-05 04:27:08 -0400622 .splice_write = iter_file_splice_write,
Christoph Hellwig2fe17c12011-01-14 13:07:43 +0100623 .fallocate = ext4_fallocate,
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700624};
625
Ross Zwisler923ae0f2015-02-16 15:59:38 -0800626#ifdef CONFIG_FS_DAX
627const struct file_operations ext4_dax_file_operations = {
628 .llseek = ext4_llseek,
629 .read = new_sync_read,
630 .write = new_sync_write,
631 .read_iter = generic_file_read_iter,
632 .write_iter = ext4_file_write_iter,
633 .unlocked_ioctl = ext4_ioctl,
634#ifdef CONFIG_COMPAT
635 .compat_ioctl = ext4_compat_ioctl,
636#endif
637 .mmap = ext4_file_mmap,
638 .open = ext4_file_open,
639 .release = ext4_release_file,
640 .fsync = ext4_sync_file,
641 /* Splice not yet supported with DAX */
642 .fallocate = ext4_fallocate,
643};
644#endif
645
Arjan van de Ven754661f2007-02-12 00:55:38 -0800646const struct inode_operations ext4_file_inode_operations = {
Mingming Cao617ba132006-10-11 01:20:53 -0700647 .setattr = ext4_setattr,
Mingming Cao3e3398a2008-07-11 19:27:31 -0400648 .getattr = ext4_getattr,
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700649 .setxattr = generic_setxattr,
650 .getxattr = generic_getxattr,
Mingming Cao617ba132006-10-11 01:20:53 -0700651 .listxattr = ext4_listxattr,
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700652 .removexattr = generic_removexattr,
Christoph Hellwig4e34e712011-07-23 17:37:31 +0200653 .get_acl = ext4_get_acl,
Christoph Hellwig64e178a2013-12-20 05:16:44 -0800654 .set_acl = ext4_set_acl,
Eric Sandeen6873fa02008-10-07 00:46:36 -0400655 .fiemap = ext4_fiemap,
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700656};
657