xref: /openbmc/linux/fs/ext4/inode.c (revision 646caa9c8e196880b41cd3e3d33a2ebc752bdb85)
1ac27a0ecSDave Kleikamp /*
2617ba13bSMingming Cao  *  linux/fs/ext4/inode.c
3ac27a0ecSDave Kleikamp  *
4ac27a0ecSDave Kleikamp  * Copyright (C) 1992, 1993, 1994, 1995
5ac27a0ecSDave Kleikamp  * Remy Card (card@masi.ibp.fr)
6ac27a0ecSDave Kleikamp  * Laboratoire MASI - Institut Blaise Pascal
7ac27a0ecSDave Kleikamp  * Universite Pierre et Marie Curie (Paris VI)
8ac27a0ecSDave Kleikamp  *
9ac27a0ecSDave Kleikamp  *  from
10ac27a0ecSDave Kleikamp  *
11ac27a0ecSDave Kleikamp  *  linux/fs/minix/inode.c
12ac27a0ecSDave Kleikamp  *
13ac27a0ecSDave Kleikamp  *  Copyright (C) 1991, 1992  Linus Torvalds
14ac27a0ecSDave Kleikamp  *
15ac27a0ecSDave Kleikamp  *  64-bit file support on 64-bit platforms by Jakub Jelinek
16ac27a0ecSDave Kleikamp  *	(jj@sunsite.ms.mff.cuni.cz)
17ac27a0ecSDave Kleikamp  *
18617ba13bSMingming Cao  *  Assorted race fixes, rewrite of ext4_get_block() by Al Viro, 2000
19ac27a0ecSDave Kleikamp  */
20ac27a0ecSDave Kleikamp 
21ac27a0ecSDave Kleikamp #include <linux/fs.h>
22ac27a0ecSDave Kleikamp #include <linux/time.h>
23ac27a0ecSDave Kleikamp #include <linux/highuid.h>
24ac27a0ecSDave Kleikamp #include <linux/pagemap.h>
25c94c2acfSMatthew Wilcox #include <linux/dax.h>
26ac27a0ecSDave Kleikamp #include <linux/quotaops.h>
27ac27a0ecSDave Kleikamp #include <linux/string.h>
28ac27a0ecSDave Kleikamp #include <linux/buffer_head.h>
29ac27a0ecSDave Kleikamp #include <linux/writeback.h>
3064769240SAlex Tomas #include <linux/pagevec.h>
31ac27a0ecSDave Kleikamp #include <linux/mpage.h>
32e83c1397SDuane Griffin #include <linux/namei.h>
33ac27a0ecSDave Kleikamp #include <linux/uio.h>
34ac27a0ecSDave Kleikamp #include <linux/bio.h>
354c0425ffSMingming Cao #include <linux/workqueue.h>
36744692dcSJiaying Zhang #include <linux/kernel.h>
376db26ffcSAndrew Morton #include <linux/printk.h>
385a0e3ad6STejun Heo #include <linux/slab.h>
3900a1a053STheodore Ts'o #include <linux/bitops.h>
409bffad1eSTheodore Ts'o 
413dcf5451SChristoph Hellwig #include "ext4_jbd2.h"
42ac27a0ecSDave Kleikamp #include "xattr.h"
43ac27a0ecSDave Kleikamp #include "acl.h"
449f125d64STheodore Ts'o #include "truncate.h"
45ac27a0ecSDave Kleikamp 
469bffad1eSTheodore Ts'o #include <trace/events/ext4.h>
479bffad1eSTheodore Ts'o 
48a1d6cc56SAneesh Kumar K.V #define MPAGE_DA_EXTENT_TAIL 0x01
49a1d6cc56SAneesh Kumar K.V 
50814525f4SDarrick J. Wong static __u32 ext4_inode_csum(struct inode *inode, struct ext4_inode *raw,
51814525f4SDarrick J. Wong 			      struct ext4_inode_info *ei)
52814525f4SDarrick J. Wong {
53814525f4SDarrick J. Wong 	struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb);
54814525f4SDarrick J. Wong 	__u32 csum;
55b47820edSDaeho Jeong 	__u16 dummy_csum = 0;
56b47820edSDaeho Jeong 	int offset = offsetof(struct ext4_inode, i_checksum_lo);
57b47820edSDaeho Jeong 	unsigned int csum_size = sizeof(dummy_csum);
58814525f4SDarrick J. Wong 
59b47820edSDaeho Jeong 	csum = ext4_chksum(sbi, ei->i_csum_seed, (__u8 *)raw, offset);
60b47820edSDaeho Jeong 	csum = ext4_chksum(sbi, csum, (__u8 *)&dummy_csum, csum_size);
61b47820edSDaeho Jeong 	offset += csum_size;
62b47820edSDaeho Jeong 	csum = ext4_chksum(sbi, csum, (__u8 *)raw + offset,
63b47820edSDaeho Jeong 			   EXT4_GOOD_OLD_INODE_SIZE - offset);
64b47820edSDaeho Jeong 
65b47820edSDaeho Jeong 	if (EXT4_INODE_SIZE(inode->i_sb) > EXT4_GOOD_OLD_INODE_SIZE) {
66b47820edSDaeho Jeong 		offset = offsetof(struct ext4_inode, i_checksum_hi);
67b47820edSDaeho Jeong 		csum = ext4_chksum(sbi, csum, (__u8 *)raw +
68b47820edSDaeho Jeong 				   EXT4_GOOD_OLD_INODE_SIZE,
69b47820edSDaeho Jeong 				   offset - EXT4_GOOD_OLD_INODE_SIZE);
70b47820edSDaeho Jeong 		if (EXT4_FITS_IN_INODE(raw, ei, i_checksum_hi)) {
71b47820edSDaeho Jeong 			csum = ext4_chksum(sbi, csum, (__u8 *)&dummy_csum,
72b47820edSDaeho Jeong 					   csum_size);
73b47820edSDaeho Jeong 			offset += csum_size;
74b47820edSDaeho Jeong 			csum = ext4_chksum(sbi, csum, (__u8 *)raw + offset,
75b47820edSDaeho Jeong 					   EXT4_INODE_SIZE(inode->i_sb) -
76b47820edSDaeho Jeong 					   offset);
77814525f4SDarrick J. Wong 		}
78b47820edSDaeho Jeong 	}
79814525f4SDarrick J. Wong 
80814525f4SDarrick J. Wong 	return csum;
81814525f4SDarrick J. Wong }
82814525f4SDarrick J. Wong 
83814525f4SDarrick J. Wong static int ext4_inode_csum_verify(struct inode *inode, struct ext4_inode *raw,
84814525f4SDarrick J. Wong 				  struct ext4_inode_info *ei)
85814525f4SDarrick J. Wong {
86814525f4SDarrick J. Wong 	__u32 provided, calculated;
87814525f4SDarrick J. Wong 
88814525f4SDarrick J. Wong 	if (EXT4_SB(inode->i_sb)->s_es->s_creator_os !=
89814525f4SDarrick J. Wong 	    cpu_to_le32(EXT4_OS_LINUX) ||
909aa5d32bSDmitry Monakhov 	    !ext4_has_metadata_csum(inode->i_sb))
91814525f4SDarrick J. Wong 		return 1;
92814525f4SDarrick J. Wong 
93814525f4SDarrick J. Wong 	provided = le16_to_cpu(raw->i_checksum_lo);
94814525f4SDarrick J. Wong 	calculated = ext4_inode_csum(inode, raw, ei);
95814525f4SDarrick J. Wong 	if (EXT4_INODE_SIZE(inode->i_sb) > EXT4_GOOD_OLD_INODE_SIZE &&
96814525f4SDarrick J. Wong 	    EXT4_FITS_IN_INODE(raw, ei, i_checksum_hi))
97814525f4SDarrick J. Wong 		provided |= ((__u32)le16_to_cpu(raw->i_checksum_hi)) << 16;
98814525f4SDarrick J. Wong 	else
99814525f4SDarrick J. Wong 		calculated &= 0xFFFF;
100814525f4SDarrick J. Wong 
101814525f4SDarrick J. Wong 	return provided == calculated;
102814525f4SDarrick J. Wong }
103814525f4SDarrick J. Wong 
104814525f4SDarrick J. Wong static void ext4_inode_csum_set(struct inode *inode, struct ext4_inode *raw,
105814525f4SDarrick J. Wong 				struct ext4_inode_info *ei)
106814525f4SDarrick J. Wong {
107814525f4SDarrick J. Wong 	__u32 csum;
108814525f4SDarrick J. Wong 
109814525f4SDarrick J. Wong 	if (EXT4_SB(inode->i_sb)->s_es->s_creator_os !=
110814525f4SDarrick J. Wong 	    cpu_to_le32(EXT4_OS_LINUX) ||
1119aa5d32bSDmitry Monakhov 	    !ext4_has_metadata_csum(inode->i_sb))
112814525f4SDarrick J. Wong 		return;
113814525f4SDarrick J. Wong 
114814525f4SDarrick J. Wong 	csum = ext4_inode_csum(inode, raw, ei);
115814525f4SDarrick J. Wong 	raw->i_checksum_lo = cpu_to_le16(csum & 0xFFFF);
116814525f4SDarrick J. Wong 	if (EXT4_INODE_SIZE(inode->i_sb) > EXT4_GOOD_OLD_INODE_SIZE &&
117814525f4SDarrick J. Wong 	    EXT4_FITS_IN_INODE(raw, ei, i_checksum_hi))
118814525f4SDarrick J. Wong 		raw->i_checksum_hi = cpu_to_le16(csum >> 16);
119814525f4SDarrick J. Wong }
120814525f4SDarrick J. Wong 
121678aaf48SJan Kara static inline int ext4_begin_ordered_truncate(struct inode *inode,
122678aaf48SJan Kara 					      loff_t new_size)
123678aaf48SJan Kara {
1247ff9c073STheodore Ts'o 	trace_ext4_begin_ordered_truncate(inode, new_size);
1258aefcd55STheodore Ts'o 	/*
1268aefcd55STheodore Ts'o 	 * If jinode is zero, then we never opened the file for
1278aefcd55STheodore Ts'o 	 * writing, so there's no need to call
1288aefcd55STheodore Ts'o 	 * jbd2_journal_begin_ordered_truncate() since there's no
1298aefcd55STheodore Ts'o 	 * outstanding writes we need to flush.
1308aefcd55STheodore Ts'o 	 */
1318aefcd55STheodore Ts'o 	if (!EXT4_I(inode)->jinode)
1328aefcd55STheodore Ts'o 		return 0;
1338aefcd55STheodore Ts'o 	return jbd2_journal_begin_ordered_truncate(EXT4_JOURNAL(inode),
1348aefcd55STheodore Ts'o 						   EXT4_I(inode)->jinode,
135678aaf48SJan Kara 						   new_size);
136678aaf48SJan Kara }
137678aaf48SJan Kara 
138d47992f8SLukas Czerner static void ext4_invalidatepage(struct page *page, unsigned int offset,
139d47992f8SLukas Czerner 				unsigned int length);
140cb20d518STheodore Ts'o static int __ext4_journalled_writepage(struct page *page, unsigned int len);
141cb20d518STheodore Ts'o static int ext4_bh_delay_or_unwritten(handle_t *handle, struct buffer_head *bh);
142fffb2739SJan Kara static int ext4_meta_trans_blocks(struct inode *inode, int lblocks,
143fffb2739SJan Kara 				  int pextents);
14464769240SAlex Tomas 
145ac27a0ecSDave Kleikamp /*
146ac27a0ecSDave Kleikamp  * Test whether an inode is a fast symlink.
147ac27a0ecSDave Kleikamp  */
148f348c252STheodore Ts'o int ext4_inode_is_fast_symlink(struct inode *inode)
149ac27a0ecSDave Kleikamp {
150617ba13bSMingming Cao         int ea_blocks = EXT4_I(inode)->i_file_acl ?
15165eddb56SYongqiang Yang 		EXT4_CLUSTER_SIZE(inode->i_sb) >> 9 : 0;
152ac27a0ecSDave Kleikamp 
153bd9db175SZheng Liu 	if (ext4_has_inline_data(inode))
154bd9db175SZheng Liu 		return 0;
155bd9db175SZheng Liu 
156ac27a0ecSDave Kleikamp 	return (S_ISLNK(inode->i_mode) && inode->i_blocks - ea_blocks == 0);
157ac27a0ecSDave Kleikamp }
158ac27a0ecSDave Kleikamp 
159ac27a0ecSDave Kleikamp /*
160ac27a0ecSDave Kleikamp  * Restart the transaction associated with *handle.  This does a commit,
161ac27a0ecSDave Kleikamp  * so before we call here everything must be consistently dirtied against
162ac27a0ecSDave Kleikamp  * this transaction.
163ac27a0ecSDave Kleikamp  */
164487caeefSJan Kara int ext4_truncate_restart_trans(handle_t *handle, struct inode *inode,
165487caeefSJan Kara 				 int nblocks)
166ac27a0ecSDave Kleikamp {
167487caeefSJan Kara 	int ret;
168487caeefSJan Kara 
169487caeefSJan Kara 	/*
170e35fd660STheodore Ts'o 	 * Drop i_data_sem to avoid deadlock with ext4_map_blocks.  At this
171487caeefSJan Kara 	 * moment, get_block can be called only for blocks inside i_size since
172487caeefSJan Kara 	 * page cache has been already dropped and writes are blocked by
173487caeefSJan Kara 	 * i_mutex. So we can safely drop the i_data_sem here.
174487caeefSJan Kara 	 */
1750390131bSFrank Mayhar 	BUG_ON(EXT4_JOURNAL(inode) == NULL);
176ac27a0ecSDave Kleikamp 	jbd_debug(2, "restarting handle %p\n", handle);
177487caeefSJan Kara 	up_write(&EXT4_I(inode)->i_data_sem);
1788e8eaabeSAmir Goldstein 	ret = ext4_journal_restart(handle, nblocks);
179487caeefSJan Kara 	down_write(&EXT4_I(inode)->i_data_sem);
180fa5d1113SAneesh Kumar K.V 	ext4_discard_preallocations(inode);
181487caeefSJan Kara 
182487caeefSJan Kara 	return ret;
183ac27a0ecSDave Kleikamp }
184ac27a0ecSDave Kleikamp 
185ac27a0ecSDave Kleikamp /*
186ac27a0ecSDave Kleikamp  * Called at the last iput() if i_nlink is zero.
187ac27a0ecSDave Kleikamp  */
1880930fcc1SAl Viro void ext4_evict_inode(struct inode *inode)
189ac27a0ecSDave Kleikamp {
190ac27a0ecSDave Kleikamp 	handle_t *handle;
191bc965ab3STheodore Ts'o 	int err;
192ac27a0ecSDave Kleikamp 
1937ff9c073STheodore Ts'o 	trace_ext4_evict_inode(inode);
1942581fdc8SJiaying Zhang 
1950930fcc1SAl Viro 	if (inode->i_nlink) {
1962d859db3SJan Kara 		/*
1972d859db3SJan Kara 		 * When journalling data dirty buffers are tracked only in the
1982d859db3SJan Kara 		 * journal. So although mm thinks everything is clean and
1992d859db3SJan Kara 		 * ready for reaping the inode might still have some pages to
2002d859db3SJan Kara 		 * write in the running transaction or waiting to be
2012d859db3SJan Kara 		 * checkpointed. Thus calling jbd2_journal_invalidatepage()
2022d859db3SJan Kara 		 * (via truncate_inode_pages()) to discard these buffers can
2032d859db3SJan Kara 		 * cause data loss. Also even if we did not discard these
2042d859db3SJan Kara 		 * buffers, we would have no way to find them after the inode
2052d859db3SJan Kara 		 * is reaped and thus user could see stale data if he tries to
2062d859db3SJan Kara 		 * read them before the transaction is checkpointed. So be
2072d859db3SJan Kara 		 * careful and force everything to disk here... We use
2082d859db3SJan Kara 		 * ei->i_datasync_tid to store the newest transaction
2092d859db3SJan Kara 		 * containing inode's data.
2102d859db3SJan Kara 		 *
2112d859db3SJan Kara 		 * Note that directories do not have this problem because they
2122d859db3SJan Kara 		 * don't use page cache.
2132d859db3SJan Kara 		 */
2142d859db3SJan Kara 		if (ext4_should_journal_data(inode) &&
2152b405bfaSTheodore Ts'o 		    (S_ISLNK(inode->i_mode) || S_ISREG(inode->i_mode)) &&
2162b405bfaSTheodore Ts'o 		    inode->i_ino != EXT4_JOURNAL_INO) {
2172d859db3SJan Kara 			journal_t *journal = EXT4_SB(inode->i_sb)->s_journal;
2182d859db3SJan Kara 			tid_t commit_tid = EXT4_I(inode)->i_datasync_tid;
2192d859db3SJan Kara 
220d76a3a77STheodore Ts'o 			jbd2_complete_transaction(journal, commit_tid);
2212d859db3SJan Kara 			filemap_write_and_wait(&inode->i_data);
2222d859db3SJan Kara 		}
22391b0abe3SJohannes Weiner 		truncate_inode_pages_final(&inode->i_data);
2245dc23bddSJan Kara 
2250930fcc1SAl Viro 		goto no_delete;
2260930fcc1SAl Viro 	}
2270930fcc1SAl Viro 
228e2bfb088STheodore Ts'o 	if (is_bad_inode(inode))
229e2bfb088STheodore Ts'o 		goto no_delete;
230871a2931SChristoph Hellwig 	dquot_initialize(inode);
231907f4554SChristoph Hellwig 
232678aaf48SJan Kara 	if (ext4_should_order_data(inode))
233678aaf48SJan Kara 		ext4_begin_ordered_truncate(inode, 0);
23491b0abe3SJohannes Weiner 	truncate_inode_pages_final(&inode->i_data);
235ac27a0ecSDave Kleikamp 
2368e8ad8a5SJan Kara 	/*
2378e8ad8a5SJan Kara 	 * Protect us against freezing - iput() caller didn't have to have any
2388e8ad8a5SJan Kara 	 * protection against it
2398e8ad8a5SJan Kara 	 */
2408e8ad8a5SJan Kara 	sb_start_intwrite(inode->i_sb);
2419924a92aSTheodore Ts'o 	handle = ext4_journal_start(inode, EXT4_HT_TRUNCATE,
2429924a92aSTheodore Ts'o 				    ext4_blocks_for_truncate(inode)+3);
243ac27a0ecSDave Kleikamp 	if (IS_ERR(handle)) {
244bc965ab3STheodore Ts'o 		ext4_std_error(inode->i_sb, PTR_ERR(handle));
245ac27a0ecSDave Kleikamp 		/*
246ac27a0ecSDave Kleikamp 		 * If we're going to skip the normal cleanup, we still need to
247ac27a0ecSDave Kleikamp 		 * make sure that the in-core orphan linked list is properly
248ac27a0ecSDave Kleikamp 		 * cleaned up.
249ac27a0ecSDave Kleikamp 		 */
250617ba13bSMingming Cao 		ext4_orphan_del(NULL, inode);
2518e8ad8a5SJan Kara 		sb_end_intwrite(inode->i_sb);
252ac27a0ecSDave Kleikamp 		goto no_delete;
253ac27a0ecSDave Kleikamp 	}
254ac27a0ecSDave Kleikamp 
255ac27a0ecSDave Kleikamp 	if (IS_SYNC(inode))
2560390131bSFrank Mayhar 		ext4_handle_sync(handle);
257ac27a0ecSDave Kleikamp 	inode->i_size = 0;
258bc965ab3STheodore Ts'o 	err = ext4_mark_inode_dirty(handle, inode);
259bc965ab3STheodore Ts'o 	if (err) {
26012062dddSEric Sandeen 		ext4_warning(inode->i_sb,
261bc965ab3STheodore Ts'o 			     "couldn't mark inode dirty (err %d)", err);
262bc965ab3STheodore Ts'o 		goto stop_handle;
263bc965ab3STheodore Ts'o 	}
264ac27a0ecSDave Kleikamp 	if (inode->i_blocks)
265617ba13bSMingming Cao 		ext4_truncate(inode);
266bc965ab3STheodore Ts'o 
267bc965ab3STheodore Ts'o 	/*
268bc965ab3STheodore Ts'o 	 * ext4_ext_truncate() doesn't reserve any slop when it
269bc965ab3STheodore Ts'o 	 * restarts journal transactions; therefore there may not be
270bc965ab3STheodore Ts'o 	 * enough credits left in the handle to remove the inode from
271bc965ab3STheodore Ts'o 	 * the orphan list and set the dtime field.
272bc965ab3STheodore Ts'o 	 */
2730390131bSFrank Mayhar 	if (!ext4_handle_has_enough_credits(handle, 3)) {
274bc965ab3STheodore Ts'o 		err = ext4_journal_extend(handle, 3);
275bc965ab3STheodore Ts'o 		if (err > 0)
276bc965ab3STheodore Ts'o 			err = ext4_journal_restart(handle, 3);
277bc965ab3STheodore Ts'o 		if (err != 0) {
27812062dddSEric Sandeen 			ext4_warning(inode->i_sb,
279bc965ab3STheodore Ts'o 				     "couldn't extend journal (err %d)", err);
280bc965ab3STheodore Ts'o 		stop_handle:
281bc965ab3STheodore Ts'o 			ext4_journal_stop(handle);
28245388219STheodore Ts'o 			ext4_orphan_del(NULL, inode);
2838e8ad8a5SJan Kara 			sb_end_intwrite(inode->i_sb);
284bc965ab3STheodore Ts'o 			goto no_delete;
285bc965ab3STheodore Ts'o 		}
286bc965ab3STheodore Ts'o 	}
287bc965ab3STheodore Ts'o 
288ac27a0ecSDave Kleikamp 	/*
289617ba13bSMingming Cao 	 * Kill off the orphan record which ext4_truncate created.
290ac27a0ecSDave Kleikamp 	 * AKPM: I think this can be inside the above `if'.
291617ba13bSMingming Cao 	 * Note that ext4_orphan_del() has to be able to cope with the
292ac27a0ecSDave Kleikamp 	 * deletion of a non-existent orphan - this is because we don't
293617ba13bSMingming Cao 	 * know if ext4_truncate() actually created an orphan record.
294ac27a0ecSDave Kleikamp 	 * (Well, we could do this if we need to, but heck - it works)
295ac27a0ecSDave Kleikamp 	 */
296617ba13bSMingming Cao 	ext4_orphan_del(handle, inode);
297617ba13bSMingming Cao 	EXT4_I(inode)->i_dtime	= get_seconds();
298ac27a0ecSDave Kleikamp 
299ac27a0ecSDave Kleikamp 	/*
300ac27a0ecSDave Kleikamp 	 * One subtle ordering requirement: if anything has gone wrong
301ac27a0ecSDave Kleikamp 	 * (transaction abort, IO errors, whatever), then we can still
302ac27a0ecSDave Kleikamp 	 * do these next steps (the fs will already have been marked as
303ac27a0ecSDave Kleikamp 	 * having errors), but we can't free the inode if the mark_dirty
304ac27a0ecSDave Kleikamp 	 * fails.
305ac27a0ecSDave Kleikamp 	 */
306617ba13bSMingming Cao 	if (ext4_mark_inode_dirty(handle, inode))
307ac27a0ecSDave Kleikamp 		/* If that failed, just do the required in-core inode clear. */
3080930fcc1SAl Viro 		ext4_clear_inode(inode);
309ac27a0ecSDave Kleikamp 	else
310617ba13bSMingming Cao 		ext4_free_inode(handle, inode);
311617ba13bSMingming Cao 	ext4_journal_stop(handle);
3128e8ad8a5SJan Kara 	sb_end_intwrite(inode->i_sb);
313ac27a0ecSDave Kleikamp 	return;
314ac27a0ecSDave Kleikamp no_delete:
3150930fcc1SAl Viro 	ext4_clear_inode(inode);	/* We must guarantee clearing of inode... */
316ac27a0ecSDave Kleikamp }
317ac27a0ecSDave Kleikamp 
318a9e7f447SDmitry Monakhov #ifdef CONFIG_QUOTA
319a9e7f447SDmitry Monakhov qsize_t *ext4_get_reserved_space(struct inode *inode)
32060e58e0fSMingming Cao {
321a9e7f447SDmitry Monakhov 	return &EXT4_I(inode)->i_reserved_quota;
32260e58e0fSMingming Cao }
323a9e7f447SDmitry Monakhov #endif
3249d0be502STheodore Ts'o 
32512219aeaSAneesh Kumar K.V /*
3260637c6f4STheodore Ts'o  * Called with i_data_sem down, which is important since we can call
3270637c6f4STheodore Ts'o  * ext4_discard_preallocations() from here.
3280637c6f4STheodore Ts'o  */
3295f634d06SAneesh Kumar K.V void ext4_da_update_reserve_space(struct inode *inode,
3305f634d06SAneesh Kumar K.V 					int used, int quota_claim)
33112219aeaSAneesh Kumar K.V {
33212219aeaSAneesh Kumar K.V 	struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb);
3330637c6f4STheodore Ts'o 	struct ext4_inode_info *ei = EXT4_I(inode);
33412219aeaSAneesh Kumar K.V 
3350637c6f4STheodore Ts'o 	spin_lock(&ei->i_block_reservation_lock);
336d8990240SAditya Kali 	trace_ext4_da_update_reserve_space(inode, used, quota_claim);
3370637c6f4STheodore Ts'o 	if (unlikely(used > ei->i_reserved_data_blocks)) {
3388de5c325STheodore Ts'o 		ext4_warning(inode->i_sb, "%s: ino %lu, used %d "
3391084f252STheodore Ts'o 			 "with only %d reserved data blocks",
3400637c6f4STheodore Ts'o 			 __func__, inode->i_ino, used,
3410637c6f4STheodore Ts'o 			 ei->i_reserved_data_blocks);
3420637c6f4STheodore Ts'o 		WARN_ON(1);
3430637c6f4STheodore Ts'o 		used = ei->i_reserved_data_blocks;
3446bc6e63fSAneesh Kumar K.V 	}
34512219aeaSAneesh Kumar K.V 
3460637c6f4STheodore Ts'o 	/* Update per-inode reservations */
3470637c6f4STheodore Ts'o 	ei->i_reserved_data_blocks -= used;
34871d4f7d0STheodore Ts'o 	percpu_counter_sub(&sbi->s_dirtyclusters_counter, used);
3490637c6f4STheodore Ts'o 
35012219aeaSAneesh Kumar K.V 	spin_unlock(&EXT4_I(inode)->i_block_reservation_lock);
35160e58e0fSMingming Cao 
35272b8ab9dSEric Sandeen 	/* Update quota subsystem for data blocks */
35372b8ab9dSEric Sandeen 	if (quota_claim)
3547b415bf6SAditya Kali 		dquot_claim_block(inode, EXT4_C2B(sbi, used));
35572b8ab9dSEric Sandeen 	else {
3565f634d06SAneesh Kumar K.V 		/*
3575f634d06SAneesh Kumar K.V 		 * We did fallocate with an offset that is already delayed
3585f634d06SAneesh Kumar K.V 		 * allocated. So on delayed allocated writeback we should
35972b8ab9dSEric Sandeen 		 * not re-claim the quota for fallocated blocks.
3605f634d06SAneesh Kumar K.V 		 */
3617b415bf6SAditya Kali 		dquot_release_reservation_block(inode, EXT4_C2B(sbi, used));
3625f634d06SAneesh Kumar K.V 	}
363d6014301SAneesh Kumar K.V 
364d6014301SAneesh Kumar K.V 	/*
365d6014301SAneesh Kumar K.V 	 * If we have done all the pending block allocations and if
366d6014301SAneesh Kumar K.V 	 * there aren't any writers on the inode, we can discard the
367d6014301SAneesh Kumar K.V 	 * inode's preallocations.
368d6014301SAneesh Kumar K.V 	 */
3690637c6f4STheodore Ts'o 	if ((ei->i_reserved_data_blocks == 0) &&
3700637c6f4STheodore Ts'o 	    (atomic_read(&inode->i_writecount) == 0))
371d6014301SAneesh Kumar K.V 		ext4_discard_preallocations(inode);
37212219aeaSAneesh Kumar K.V }
37312219aeaSAneesh Kumar K.V 
374e29136f8STheodore Ts'o static int __check_block_validity(struct inode *inode, const char *func,
375c398eda0STheodore Ts'o 				unsigned int line,
37624676da4STheodore Ts'o 				struct ext4_map_blocks *map)
3776fd058f7STheodore Ts'o {
37824676da4STheodore Ts'o 	if (!ext4_data_block_valid(EXT4_SB(inode->i_sb), map->m_pblk,
37924676da4STheodore Ts'o 				   map->m_len)) {
380c398eda0STheodore Ts'o 		ext4_error_inode(inode, func, line, map->m_pblk,
381c398eda0STheodore Ts'o 				 "lblock %lu mapped to illegal pblock "
38224676da4STheodore Ts'o 				 "(length %d)", (unsigned long) map->m_lblk,
383c398eda0STheodore Ts'o 				 map->m_len);
3846a797d27SDarrick J. Wong 		return -EFSCORRUPTED;
3856fd058f7STheodore Ts'o 	}
3866fd058f7STheodore Ts'o 	return 0;
3876fd058f7STheodore Ts'o }
3886fd058f7STheodore Ts'o 
38953085facSJan Kara int ext4_issue_zeroout(struct inode *inode, ext4_lblk_t lblk, ext4_fsblk_t pblk,
39053085facSJan Kara 		       ext4_lblk_t len)
39153085facSJan Kara {
39253085facSJan Kara 	int ret;
39353085facSJan Kara 
39453085facSJan Kara 	if (ext4_encrypted_inode(inode))
39553085facSJan Kara 		return ext4_encrypted_zeroout(inode, lblk, pblk, len);
39653085facSJan Kara 
39753085facSJan Kara 	ret = sb_issue_zeroout(inode->i_sb, pblk, len, GFP_NOFS);
39853085facSJan Kara 	if (ret > 0)
39953085facSJan Kara 		ret = 0;
40053085facSJan Kara 
40153085facSJan Kara 	return ret;
40253085facSJan Kara }
40353085facSJan Kara 
404e29136f8STheodore Ts'o #define check_block_validity(inode, map)	\
405c398eda0STheodore Ts'o 	__check_block_validity((inode), __func__, __LINE__, (map))
406e29136f8STheodore Ts'o 
407921f266bSDmitry Monakhov #ifdef ES_AGGRESSIVE_TEST
408921f266bSDmitry Monakhov static void ext4_map_blocks_es_recheck(handle_t *handle,
409921f266bSDmitry Monakhov 				       struct inode *inode,
410921f266bSDmitry Monakhov 				       struct ext4_map_blocks *es_map,
411921f266bSDmitry Monakhov 				       struct ext4_map_blocks *map,
412921f266bSDmitry Monakhov 				       int flags)
413921f266bSDmitry Monakhov {
414921f266bSDmitry Monakhov 	int retval;
415921f266bSDmitry Monakhov 
416921f266bSDmitry Monakhov 	map->m_flags = 0;
417921f266bSDmitry Monakhov 	/*
418921f266bSDmitry Monakhov 	 * There is a race window that the result is not the same.
419921f266bSDmitry Monakhov 	 * e.g. xfstests #223 when dioread_nolock enables.  The reason
420921f266bSDmitry Monakhov 	 * is that we lookup a block mapping in extent status tree with
421921f266bSDmitry Monakhov 	 * out taking i_data_sem.  So at the time the unwritten extent
422921f266bSDmitry Monakhov 	 * could be converted.
423921f266bSDmitry Monakhov 	 */
424c8b459f4SLukas Czerner 	down_read(&EXT4_I(inode)->i_data_sem);
425921f266bSDmitry Monakhov 	if (ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS)) {
426921f266bSDmitry Monakhov 		retval = ext4_ext_map_blocks(handle, inode, map, flags &
427921f266bSDmitry Monakhov 					     EXT4_GET_BLOCKS_KEEP_SIZE);
428921f266bSDmitry Monakhov 	} else {
429921f266bSDmitry Monakhov 		retval = ext4_ind_map_blocks(handle, inode, map, flags &
430921f266bSDmitry Monakhov 					     EXT4_GET_BLOCKS_KEEP_SIZE);
431921f266bSDmitry Monakhov 	}
432921f266bSDmitry Monakhov 	up_read((&EXT4_I(inode)->i_data_sem));
433921f266bSDmitry Monakhov 
434921f266bSDmitry Monakhov 	/*
435921f266bSDmitry Monakhov 	 * We don't check m_len because extent will be collpased in status
436921f266bSDmitry Monakhov 	 * tree.  So the m_len might not equal.
437921f266bSDmitry Monakhov 	 */
438921f266bSDmitry Monakhov 	if (es_map->m_lblk != map->m_lblk ||
439921f266bSDmitry Monakhov 	    es_map->m_flags != map->m_flags ||
440921f266bSDmitry Monakhov 	    es_map->m_pblk != map->m_pblk) {
441bdafe42aSTheodore Ts'o 		printk("ES cache assertion failed for inode: %lu "
442921f266bSDmitry Monakhov 		       "es_cached ex [%d/%d/%llu/%x] != "
443921f266bSDmitry Monakhov 		       "found ex [%d/%d/%llu/%x] retval %d flags %x\n",
444921f266bSDmitry Monakhov 		       inode->i_ino, es_map->m_lblk, es_map->m_len,
445921f266bSDmitry Monakhov 		       es_map->m_pblk, es_map->m_flags, map->m_lblk,
446921f266bSDmitry Monakhov 		       map->m_len, map->m_pblk, map->m_flags,
447921f266bSDmitry Monakhov 		       retval, flags);
448921f266bSDmitry Monakhov 	}
449921f266bSDmitry Monakhov }
450921f266bSDmitry Monakhov #endif /* ES_AGGRESSIVE_TEST */
451921f266bSDmitry Monakhov 
45255138e0bSTheodore Ts'o /*
453e35fd660STheodore Ts'o  * The ext4_map_blocks() function tries to look up the requested blocks,
4542b2d6d01STheodore Ts'o  * and returns if the blocks are already mapped.
455f5ab0d1fSMingming Cao  *
456f5ab0d1fSMingming Cao  * Otherwise it takes the write lock of the i_data_sem and allocate blocks
457f5ab0d1fSMingming Cao  * and store the allocated blocks in the result buffer head and mark it
458f5ab0d1fSMingming Cao  * mapped.
459f5ab0d1fSMingming Cao  *
460e35fd660STheodore Ts'o  * If file type is extents based, it will call ext4_ext_map_blocks(),
461e35fd660STheodore Ts'o  * Otherwise, call with ext4_ind_map_blocks() to handle indirect mapping
462f5ab0d1fSMingming Cao  * based files
463f5ab0d1fSMingming Cao  *
464facab4d9SJan Kara  * On success, it returns the number of blocks being mapped or allocated.  if
465facab4d9SJan Kara  * create==0 and the blocks are pre-allocated and unwritten, the resulting @map
466facab4d9SJan Kara  * is marked as unwritten. If the create == 1, it will mark @map as mapped.
467f5ab0d1fSMingming Cao  *
468f5ab0d1fSMingming Cao  * It returns 0 if plain look up failed (blocks have not been allocated), in
469facab4d9SJan Kara  * that case, @map is returned as unmapped but we still do fill map->m_len to
470facab4d9SJan Kara  * indicate the length of a hole starting at map->m_lblk.
471f5ab0d1fSMingming Cao  *
472f5ab0d1fSMingming Cao  * It returns the error in case of allocation failure.
473f5ab0d1fSMingming Cao  */
474e35fd660STheodore Ts'o int ext4_map_blocks(handle_t *handle, struct inode *inode,
475e35fd660STheodore Ts'o 		    struct ext4_map_blocks *map, int flags)
4760e855ac8SAneesh Kumar K.V {
477d100eef2SZheng Liu 	struct extent_status es;
4780e855ac8SAneesh Kumar K.V 	int retval;
479b8a86845SLukas Czerner 	int ret = 0;
480921f266bSDmitry Monakhov #ifdef ES_AGGRESSIVE_TEST
481921f266bSDmitry Monakhov 	struct ext4_map_blocks orig_map;
482921f266bSDmitry Monakhov 
483921f266bSDmitry Monakhov 	memcpy(&orig_map, map, sizeof(*map));
484921f266bSDmitry Monakhov #endif
485f5ab0d1fSMingming Cao 
486e35fd660STheodore Ts'o 	map->m_flags = 0;
487e35fd660STheodore Ts'o 	ext_debug("ext4_map_blocks(): inode %lu, flag %d, max_blocks %u,"
488e35fd660STheodore Ts'o 		  "logical block %lu\n", inode->i_ino, flags, map->m_len,
489e35fd660STheodore Ts'o 		  (unsigned long) map->m_lblk);
490d100eef2SZheng Liu 
491e861b5e9STheodore Ts'o 	/*
492e861b5e9STheodore Ts'o 	 * ext4_map_blocks returns an int, and m_len is an unsigned int
493e861b5e9STheodore Ts'o 	 */
494e861b5e9STheodore Ts'o 	if (unlikely(map->m_len > INT_MAX))
495e861b5e9STheodore Ts'o 		map->m_len = INT_MAX;
496e861b5e9STheodore Ts'o 
4974adb6ab3SKazuya Mio 	/* We can handle the block number less than EXT_MAX_BLOCKS */
4984adb6ab3SKazuya Mio 	if (unlikely(map->m_lblk >= EXT_MAX_BLOCKS))
4996a797d27SDarrick J. Wong 		return -EFSCORRUPTED;
5004adb6ab3SKazuya Mio 
501d100eef2SZheng Liu 	/* Lookup extent status tree firstly */
502d100eef2SZheng Liu 	if (ext4_es_lookup_extent(inode, map->m_lblk, &es)) {
503d100eef2SZheng Liu 		if (ext4_es_is_written(&es) || ext4_es_is_unwritten(&es)) {
504d100eef2SZheng Liu 			map->m_pblk = ext4_es_pblock(&es) +
505d100eef2SZheng Liu 					map->m_lblk - es.es_lblk;
506d100eef2SZheng Liu 			map->m_flags |= ext4_es_is_written(&es) ?
507d100eef2SZheng Liu 					EXT4_MAP_MAPPED : EXT4_MAP_UNWRITTEN;
508d100eef2SZheng Liu 			retval = es.es_len - (map->m_lblk - es.es_lblk);
509d100eef2SZheng Liu 			if (retval > map->m_len)
510d100eef2SZheng Liu 				retval = map->m_len;
511d100eef2SZheng Liu 			map->m_len = retval;
512d100eef2SZheng Liu 		} else if (ext4_es_is_delayed(&es) || ext4_es_is_hole(&es)) {
513facab4d9SJan Kara 			map->m_pblk = 0;
514facab4d9SJan Kara 			retval = es.es_len - (map->m_lblk - es.es_lblk);
515facab4d9SJan Kara 			if (retval > map->m_len)
516facab4d9SJan Kara 				retval = map->m_len;
517facab4d9SJan Kara 			map->m_len = retval;
518d100eef2SZheng Liu 			retval = 0;
519d100eef2SZheng Liu 		} else {
520d100eef2SZheng Liu 			BUG_ON(1);
521d100eef2SZheng Liu 		}
522921f266bSDmitry Monakhov #ifdef ES_AGGRESSIVE_TEST
523921f266bSDmitry Monakhov 		ext4_map_blocks_es_recheck(handle, inode, map,
524921f266bSDmitry Monakhov 					   &orig_map, flags);
525921f266bSDmitry Monakhov #endif
526d100eef2SZheng Liu 		goto found;
527d100eef2SZheng Liu 	}
528d100eef2SZheng Liu 
5294df3d265SAneesh Kumar K.V 	/*
530b920c755STheodore Ts'o 	 * Try to see if we can get the block without requesting a new
531b920c755STheodore Ts'o 	 * file system block.
5324df3d265SAneesh Kumar K.V 	 */
533c8b459f4SLukas Czerner 	down_read(&EXT4_I(inode)->i_data_sem);
53412e9b892SDmitry Monakhov 	if (ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS)) {
535a4e5d88bSDmitry Monakhov 		retval = ext4_ext_map_blocks(handle, inode, map, flags &
536a4e5d88bSDmitry Monakhov 					     EXT4_GET_BLOCKS_KEEP_SIZE);
5374df3d265SAneesh Kumar K.V 	} else {
538a4e5d88bSDmitry Monakhov 		retval = ext4_ind_map_blocks(handle, inode, map, flags &
539a4e5d88bSDmitry Monakhov 					     EXT4_GET_BLOCKS_KEEP_SIZE);
5400e855ac8SAneesh Kumar K.V 	}
541f7fec032SZheng Liu 	if (retval > 0) {
5423be78c73STheodore Ts'o 		unsigned int status;
543f7fec032SZheng Liu 
54444fb851dSZheng Liu 		if (unlikely(retval != map->m_len)) {
54544fb851dSZheng Liu 			ext4_warning(inode->i_sb,
54644fb851dSZheng Liu 				     "ES len assertion failed for inode "
54744fb851dSZheng Liu 				     "%lu: retval %d != map->m_len %d",
54844fb851dSZheng Liu 				     inode->i_ino, retval, map->m_len);
54944fb851dSZheng Liu 			WARN_ON(1);
550921f266bSDmitry Monakhov 		}
551921f266bSDmitry Monakhov 
552f7fec032SZheng Liu 		status = map->m_flags & EXT4_MAP_UNWRITTEN ?
553f7fec032SZheng Liu 				EXTENT_STATUS_UNWRITTEN : EXTENT_STATUS_WRITTEN;
554f7fec032SZheng Liu 		if (!(flags & EXT4_GET_BLOCKS_DELALLOC_RESERVE) &&
555d2dc317dSLukas Czerner 		    !(status & EXTENT_STATUS_WRITTEN) &&
556f7fec032SZheng Liu 		    ext4_find_delalloc_range(inode, map->m_lblk,
557f7fec032SZheng Liu 					     map->m_lblk + map->m_len - 1))
558f7fec032SZheng Liu 			status |= EXTENT_STATUS_DELAYED;
559f7fec032SZheng Liu 		ret = ext4_es_insert_extent(inode, map->m_lblk,
560f7fec032SZheng Liu 					    map->m_len, map->m_pblk, status);
561f7fec032SZheng Liu 		if (ret < 0)
562f7fec032SZheng Liu 			retval = ret;
563f7fec032SZheng Liu 	}
5644df3d265SAneesh Kumar K.V 	up_read((&EXT4_I(inode)->i_data_sem));
565f5ab0d1fSMingming Cao 
566d100eef2SZheng Liu found:
567e35fd660STheodore Ts'o 	if (retval > 0 && map->m_flags & EXT4_MAP_MAPPED) {
568b8a86845SLukas Czerner 		ret = check_block_validity(inode, map);
5696fd058f7STheodore Ts'o 		if (ret != 0)
5706fd058f7STheodore Ts'o 			return ret;
5716fd058f7STheodore Ts'o 	}
5726fd058f7STheodore Ts'o 
573f5ab0d1fSMingming Cao 	/* If it is only a block(s) look up */
574c2177057STheodore Ts'o 	if ((flags & EXT4_GET_BLOCKS_CREATE) == 0)
5754df3d265SAneesh Kumar K.V 		return retval;
5764df3d265SAneesh Kumar K.V 
5774df3d265SAneesh Kumar K.V 	/*
578f5ab0d1fSMingming Cao 	 * Returns if the blocks have already allocated
579f5ab0d1fSMingming Cao 	 *
580f5ab0d1fSMingming Cao 	 * Note that if blocks have been preallocated
581df3ab170STao Ma 	 * ext4_ext_get_block() returns the create = 0
582f5ab0d1fSMingming Cao 	 * with buffer head unmapped.
583f5ab0d1fSMingming Cao 	 */
584e35fd660STheodore Ts'o 	if (retval > 0 && map->m_flags & EXT4_MAP_MAPPED)
585b8a86845SLukas Czerner 		/*
586b8a86845SLukas Czerner 		 * If we need to convert extent to unwritten
587b8a86845SLukas Czerner 		 * we continue and do the actual work in
588b8a86845SLukas Czerner 		 * ext4_ext_map_blocks()
589b8a86845SLukas Czerner 		 */
590b8a86845SLukas Czerner 		if (!(flags & EXT4_GET_BLOCKS_CONVERT_UNWRITTEN))
591f5ab0d1fSMingming Cao 			return retval;
592f5ab0d1fSMingming Cao 
593f5ab0d1fSMingming Cao 	/*
594a25a4e1aSZheng Liu 	 * Here we clear m_flags because after allocating an new extent,
595a25a4e1aSZheng Liu 	 * it will be set again.
5962a8964d6SAneesh Kumar K.V 	 */
597a25a4e1aSZheng Liu 	map->m_flags &= ~EXT4_MAP_FLAGS;
5982a8964d6SAneesh Kumar K.V 
5992a8964d6SAneesh Kumar K.V 	/*
600556615dcSLukas Czerner 	 * New blocks allocate and/or writing to unwritten extent
601f5ab0d1fSMingming Cao 	 * will possibly result in updating i_data, so we take
602d91bd2c1SSeunghun Lee 	 * the write lock of i_data_sem, and call get_block()
603f5ab0d1fSMingming Cao 	 * with create == 1 flag.
6044df3d265SAneesh Kumar K.V 	 */
605c8b459f4SLukas Czerner 	down_write(&EXT4_I(inode)->i_data_sem);
606d2a17637SMingming Cao 
607d2a17637SMingming Cao 	/*
6084df3d265SAneesh Kumar K.V 	 * We need to check for EXT4 here because migrate
6094df3d265SAneesh Kumar K.V 	 * could have changed the inode type in between
6104df3d265SAneesh Kumar K.V 	 */
61112e9b892SDmitry Monakhov 	if (ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS)) {
612e35fd660STheodore Ts'o 		retval = ext4_ext_map_blocks(handle, inode, map, flags);
6130e855ac8SAneesh Kumar K.V 	} else {
614e35fd660STheodore Ts'o 		retval = ext4_ind_map_blocks(handle, inode, map, flags);
615267e4db9SAneesh Kumar K.V 
616e35fd660STheodore Ts'o 		if (retval > 0 && map->m_flags & EXT4_MAP_NEW) {
617267e4db9SAneesh Kumar K.V 			/*
618267e4db9SAneesh Kumar K.V 			 * We allocated new blocks which will result in
619267e4db9SAneesh Kumar K.V 			 * i_data's format changing.  Force the migrate
620267e4db9SAneesh Kumar K.V 			 * to fail by clearing migrate flags
621267e4db9SAneesh Kumar K.V 			 */
62219f5fb7aSTheodore Ts'o 			ext4_clear_inode_state(inode, EXT4_STATE_EXT_MIGRATE);
623267e4db9SAneesh Kumar K.V 		}
6242ac3b6e0STheodore Ts'o 
625d2a17637SMingming Cao 		/*
6262ac3b6e0STheodore Ts'o 		 * Update reserved blocks/metadata blocks after successful
6275f634d06SAneesh Kumar K.V 		 * block allocation which had been deferred till now. We don't
6285f634d06SAneesh Kumar K.V 		 * support fallocate for non extent files. So we can update
6295f634d06SAneesh Kumar K.V 		 * reserve space here.
630d2a17637SMingming Cao 		 */
6315f634d06SAneesh Kumar K.V 		if ((retval > 0) &&
6321296cc85SAneesh Kumar K.V 			(flags & EXT4_GET_BLOCKS_DELALLOC_RESERVE))
6335f634d06SAneesh Kumar K.V 			ext4_da_update_reserve_space(inode, retval, 1);
6345f634d06SAneesh Kumar K.V 	}
635d2a17637SMingming Cao 
636f7fec032SZheng Liu 	if (retval > 0) {
6373be78c73STheodore Ts'o 		unsigned int status;
638f7fec032SZheng Liu 
63944fb851dSZheng Liu 		if (unlikely(retval != map->m_len)) {
64044fb851dSZheng Liu 			ext4_warning(inode->i_sb,
64144fb851dSZheng Liu 				     "ES len assertion failed for inode "
64244fb851dSZheng Liu 				     "%lu: retval %d != map->m_len %d",
64344fb851dSZheng Liu 				     inode->i_ino, retval, map->m_len);
64444fb851dSZheng Liu 			WARN_ON(1);
645921f266bSDmitry Monakhov 		}
646921f266bSDmitry Monakhov 
647adb23551SZheng Liu 		/*
648c86d8db3SJan Kara 		 * We have to zeroout blocks before inserting them into extent
649c86d8db3SJan Kara 		 * status tree. Otherwise someone could look them up there and
650c86d8db3SJan Kara 		 * use them before they are really zeroed.
651c86d8db3SJan Kara 		 */
652c86d8db3SJan Kara 		if (flags & EXT4_GET_BLOCKS_ZERO &&
653c86d8db3SJan Kara 		    map->m_flags & EXT4_MAP_MAPPED &&
654c86d8db3SJan Kara 		    map->m_flags & EXT4_MAP_NEW) {
655c86d8db3SJan Kara 			ret = ext4_issue_zeroout(inode, map->m_lblk,
656c86d8db3SJan Kara 						 map->m_pblk, map->m_len);
657c86d8db3SJan Kara 			if (ret) {
658c86d8db3SJan Kara 				retval = ret;
659c86d8db3SJan Kara 				goto out_sem;
660c86d8db3SJan Kara 			}
661c86d8db3SJan Kara 		}
662c86d8db3SJan Kara 
663c86d8db3SJan Kara 		/*
664adb23551SZheng Liu 		 * If the extent has been zeroed out, we don't need to update
665adb23551SZheng Liu 		 * extent status tree.
666adb23551SZheng Liu 		 */
667adb23551SZheng Liu 		if ((flags & EXT4_GET_BLOCKS_PRE_IO) &&
668adb23551SZheng Liu 		    ext4_es_lookup_extent(inode, map->m_lblk, &es)) {
669adb23551SZheng Liu 			if (ext4_es_is_written(&es))
670c86d8db3SJan Kara 				goto out_sem;
671adb23551SZheng Liu 		}
672f7fec032SZheng Liu 		status = map->m_flags & EXT4_MAP_UNWRITTEN ?
673f7fec032SZheng Liu 				EXTENT_STATUS_UNWRITTEN : EXTENT_STATUS_WRITTEN;
674f7fec032SZheng Liu 		if (!(flags & EXT4_GET_BLOCKS_DELALLOC_RESERVE) &&
675d2dc317dSLukas Czerner 		    !(status & EXTENT_STATUS_WRITTEN) &&
676f7fec032SZheng Liu 		    ext4_find_delalloc_range(inode, map->m_lblk,
677f7fec032SZheng Liu 					     map->m_lblk + map->m_len - 1))
678f7fec032SZheng Liu 			status |= EXTENT_STATUS_DELAYED;
679f7fec032SZheng Liu 		ret = ext4_es_insert_extent(inode, map->m_lblk, map->m_len,
680f7fec032SZheng Liu 					    map->m_pblk, status);
681c86d8db3SJan Kara 		if (ret < 0) {
68251865fdaSZheng Liu 			retval = ret;
683c86d8db3SJan Kara 			goto out_sem;
684c86d8db3SJan Kara 		}
68551865fdaSZheng Liu 	}
6865356f261SAditya Kali 
687c86d8db3SJan Kara out_sem:
6880e855ac8SAneesh Kumar K.V 	up_write((&EXT4_I(inode)->i_data_sem));
689e35fd660STheodore Ts'o 	if (retval > 0 && map->m_flags & EXT4_MAP_MAPPED) {
690b8a86845SLukas Czerner 		ret = check_block_validity(inode, map);
6916fd058f7STheodore Ts'o 		if (ret != 0)
6926fd058f7STheodore Ts'o 			return ret;
69306bd3c36SJan Kara 
69406bd3c36SJan Kara 		/*
69506bd3c36SJan Kara 		 * Inodes with freshly allocated blocks where contents will be
69606bd3c36SJan Kara 		 * visible after transaction commit must be on transaction's
69706bd3c36SJan Kara 		 * ordered data list.
69806bd3c36SJan Kara 		 */
69906bd3c36SJan Kara 		if (map->m_flags & EXT4_MAP_NEW &&
70006bd3c36SJan Kara 		    !(map->m_flags & EXT4_MAP_UNWRITTEN) &&
70106bd3c36SJan Kara 		    !(flags & EXT4_GET_BLOCKS_ZERO) &&
70206bd3c36SJan Kara 		    !IS_NOQUOTA(inode) &&
70306bd3c36SJan Kara 		    ext4_should_order_data(inode)) {
704ee0876bcSJan Kara 			if (flags & EXT4_GET_BLOCKS_IO_SUBMIT)
705ee0876bcSJan Kara 				ret = ext4_jbd2_inode_add_wait(handle, inode);
706ee0876bcSJan Kara 			else
707ee0876bcSJan Kara 				ret = ext4_jbd2_inode_add_write(handle, inode);
70806bd3c36SJan Kara 			if (ret)
70906bd3c36SJan Kara 				return ret;
71006bd3c36SJan Kara 		}
7116fd058f7STheodore Ts'o 	}
7120e855ac8SAneesh Kumar K.V 	return retval;
7130e855ac8SAneesh Kumar K.V }
7140e855ac8SAneesh Kumar K.V 
715ed8ad838SJan Kara /*
716ed8ad838SJan Kara  * Update EXT4_MAP_FLAGS in bh->b_state. For buffer heads attached to pages
717ed8ad838SJan Kara  * we have to be careful as someone else may be manipulating b_state as well.
718ed8ad838SJan Kara  */
719ed8ad838SJan Kara static void ext4_update_bh_state(struct buffer_head *bh, unsigned long flags)
720ed8ad838SJan Kara {
721ed8ad838SJan Kara 	unsigned long old_state;
722ed8ad838SJan Kara 	unsigned long new_state;
723ed8ad838SJan Kara 
724ed8ad838SJan Kara 	flags &= EXT4_MAP_FLAGS;
725ed8ad838SJan Kara 
726ed8ad838SJan Kara 	/* Dummy buffer_head? Set non-atomically. */
727ed8ad838SJan Kara 	if (!bh->b_page) {
728ed8ad838SJan Kara 		bh->b_state = (bh->b_state & ~EXT4_MAP_FLAGS) | flags;
729ed8ad838SJan Kara 		return;
730ed8ad838SJan Kara 	}
731ed8ad838SJan Kara 	/*
732ed8ad838SJan Kara 	 * Someone else may be modifying b_state. Be careful! This is ugly but
733ed8ad838SJan Kara 	 * once we get rid of using bh as a container for mapping information
734ed8ad838SJan Kara 	 * to pass to / from get_block functions, this can go away.
735ed8ad838SJan Kara 	 */
736ed8ad838SJan Kara 	do {
737ed8ad838SJan Kara 		old_state = READ_ONCE(bh->b_state);
738ed8ad838SJan Kara 		new_state = (old_state & ~EXT4_MAP_FLAGS) | flags;
739ed8ad838SJan Kara 	} while (unlikely(
740ed8ad838SJan Kara 		 cmpxchg(&bh->b_state, old_state, new_state) != old_state));
741ed8ad838SJan Kara }
742ed8ad838SJan Kara 
7432ed88685STheodore Ts'o static int _ext4_get_block(struct inode *inode, sector_t iblock,
7442ed88685STheodore Ts'o 			   struct buffer_head *bh, int flags)
745ac27a0ecSDave Kleikamp {
7462ed88685STheodore Ts'o 	struct ext4_map_blocks map;
747efe70c29SJan Kara 	int ret = 0;
748ac27a0ecSDave Kleikamp 
74946c7f254STao Ma 	if (ext4_has_inline_data(inode))
75046c7f254STao Ma 		return -ERANGE;
75146c7f254STao Ma 
7522ed88685STheodore Ts'o 	map.m_lblk = iblock;
7532ed88685STheodore Ts'o 	map.m_len = bh->b_size >> inode->i_blkbits;
7542ed88685STheodore Ts'o 
755efe70c29SJan Kara 	ret = ext4_map_blocks(ext4_journal_current_handle(), inode, &map,
756efe70c29SJan Kara 			      flags);
757ac27a0ecSDave Kleikamp 	if (ret > 0) {
7582ed88685STheodore Ts'o 		map_bh(bh, inode->i_sb, map.m_pblk);
759ed8ad838SJan Kara 		ext4_update_bh_state(bh, map.m_flags);
7602ed88685STheodore Ts'o 		bh->b_size = inode->i_sb->s_blocksize * map.m_len;
761ac27a0ecSDave Kleikamp 		ret = 0;
762ac27a0ecSDave Kleikamp 	}
763ac27a0ecSDave Kleikamp 	return ret;
764ac27a0ecSDave Kleikamp }
765ac27a0ecSDave Kleikamp 
7662ed88685STheodore Ts'o int ext4_get_block(struct inode *inode, sector_t iblock,
7672ed88685STheodore Ts'o 		   struct buffer_head *bh, int create)
7682ed88685STheodore Ts'o {
7692ed88685STheodore Ts'o 	return _ext4_get_block(inode, iblock, bh,
7702ed88685STheodore Ts'o 			       create ? EXT4_GET_BLOCKS_CREATE : 0);
7712ed88685STheodore Ts'o }
7722ed88685STheodore Ts'o 
773ac27a0ecSDave Kleikamp /*
774705965bdSJan Kara  * Get block function used when preparing for buffered write if we require
775705965bdSJan Kara  * creating an unwritten extent if blocks haven't been allocated.  The extent
776705965bdSJan Kara  * will be converted to written after the IO is complete.
777705965bdSJan Kara  */
778705965bdSJan Kara int ext4_get_block_unwritten(struct inode *inode, sector_t iblock,
779705965bdSJan Kara 			     struct buffer_head *bh_result, int create)
780705965bdSJan Kara {
781705965bdSJan Kara 	ext4_debug("ext4_get_block_unwritten: inode %lu, create flag %d\n",
782705965bdSJan Kara 		   inode->i_ino, create);
783705965bdSJan Kara 	return _ext4_get_block(inode, iblock, bh_result,
784705965bdSJan Kara 			       EXT4_GET_BLOCKS_IO_CREATE_EXT);
785705965bdSJan Kara }
786705965bdSJan Kara 
787efe70c29SJan Kara /* Maximum number of blocks we map for direct IO at once. */
788efe70c29SJan Kara #define DIO_MAX_BLOCKS 4096
789efe70c29SJan Kara 
790e84dfbe2SJan Kara /*
791e84dfbe2SJan Kara  * Get blocks function for the cases that need to start a transaction -
792e84dfbe2SJan Kara  * generally difference cases of direct IO and DAX IO. It also handles retries
793e84dfbe2SJan Kara  * in case of ENOSPC.
794e84dfbe2SJan Kara  */
795e84dfbe2SJan Kara static int ext4_get_block_trans(struct inode *inode, sector_t iblock,
796e84dfbe2SJan Kara 				struct buffer_head *bh_result, int flags)
797efe70c29SJan Kara {
798efe70c29SJan Kara 	int dio_credits;
799e84dfbe2SJan Kara 	handle_t *handle;
800e84dfbe2SJan Kara 	int retries = 0;
801e84dfbe2SJan Kara 	int ret;
802efe70c29SJan Kara 
803efe70c29SJan Kara 	/* Trim mapping request to maximum we can map at once for DIO */
804efe70c29SJan Kara 	if (bh_result->b_size >> inode->i_blkbits > DIO_MAX_BLOCKS)
805efe70c29SJan Kara 		bh_result->b_size = DIO_MAX_BLOCKS << inode->i_blkbits;
806efe70c29SJan Kara 	dio_credits = ext4_chunk_trans_blocks(inode,
807efe70c29SJan Kara 				      bh_result->b_size >> inode->i_blkbits);
808e84dfbe2SJan Kara retry:
809e84dfbe2SJan Kara 	handle = ext4_journal_start(inode, EXT4_HT_MAP_BLOCKS, dio_credits);
810e84dfbe2SJan Kara 	if (IS_ERR(handle))
811e84dfbe2SJan Kara 		return PTR_ERR(handle);
812e84dfbe2SJan Kara 
813e84dfbe2SJan Kara 	ret = _ext4_get_block(inode, iblock, bh_result, flags);
814e84dfbe2SJan Kara 	ext4_journal_stop(handle);
815e84dfbe2SJan Kara 
816e84dfbe2SJan Kara 	if (ret == -ENOSPC && ext4_should_retry_alloc(inode->i_sb, &retries))
817e84dfbe2SJan Kara 		goto retry;
818e84dfbe2SJan Kara 	return ret;
819efe70c29SJan Kara }
820efe70c29SJan Kara 
821705965bdSJan Kara /* Get block function for DIO reads and writes to inodes without extents */
822705965bdSJan Kara int ext4_dio_get_block(struct inode *inode, sector_t iblock,
823705965bdSJan Kara 		       struct buffer_head *bh, int create)
824705965bdSJan Kara {
825efe70c29SJan Kara 	/* We don't expect handle for direct IO */
826efe70c29SJan Kara 	WARN_ON_ONCE(ext4_journal_current_handle());
827efe70c29SJan Kara 
828e84dfbe2SJan Kara 	if (!create)
829e84dfbe2SJan Kara 		return _ext4_get_block(inode, iblock, bh, 0);
830e84dfbe2SJan Kara 	return ext4_get_block_trans(inode, iblock, bh, EXT4_GET_BLOCKS_CREATE);
831705965bdSJan Kara }
832705965bdSJan Kara 
833705965bdSJan Kara /*
834109811c2SJan Kara  * Get block function for AIO DIO writes when we create unwritten extent if
835705965bdSJan Kara  * blocks are not allocated yet. The extent will be converted to written
836705965bdSJan Kara  * after IO is complete.
837705965bdSJan Kara  */
838109811c2SJan Kara static int ext4_dio_get_block_unwritten_async(struct inode *inode,
839109811c2SJan Kara 		sector_t iblock, struct buffer_head *bh_result,	int create)
840705965bdSJan Kara {
841efe70c29SJan Kara 	int ret;
842efe70c29SJan Kara 
843efe70c29SJan Kara 	/* We don't expect handle for direct IO */
844efe70c29SJan Kara 	WARN_ON_ONCE(ext4_journal_current_handle());
845efe70c29SJan Kara 
846e84dfbe2SJan Kara 	ret = ext4_get_block_trans(inode, iblock, bh_result,
847705965bdSJan Kara 				   EXT4_GET_BLOCKS_IO_CREATE_EXT);
848efe70c29SJan Kara 
849109811c2SJan Kara 	/*
850109811c2SJan Kara 	 * When doing DIO using unwritten extents, we need io_end to convert
851109811c2SJan Kara 	 * unwritten extents to written on IO completion. We allocate io_end
852109811c2SJan Kara 	 * once we spot unwritten extent and store it in b_private. Generic
853109811c2SJan Kara 	 * DIO code keeps b_private set and furthermore passes the value to
854109811c2SJan Kara 	 * our completion callback in 'private' argument.
855109811c2SJan Kara 	 */
856109811c2SJan Kara 	if (!ret && buffer_unwritten(bh_result)) {
857109811c2SJan Kara 		if (!bh_result->b_private) {
858109811c2SJan Kara 			ext4_io_end_t *io_end;
859109811c2SJan Kara 
860109811c2SJan Kara 			io_end = ext4_init_io_end(inode, GFP_KERNEL);
861109811c2SJan Kara 			if (!io_end)
862109811c2SJan Kara 				return -ENOMEM;
863109811c2SJan Kara 			bh_result->b_private = io_end;
864109811c2SJan Kara 			ext4_set_io_unwritten_flag(inode, io_end);
865efe70c29SJan Kara 		}
866109811c2SJan Kara 		set_buffer_defer_completion(bh_result);
867109811c2SJan Kara 	}
868109811c2SJan Kara 
869109811c2SJan Kara 	return ret;
870109811c2SJan Kara }
871109811c2SJan Kara 
872109811c2SJan Kara /*
873109811c2SJan Kara  * Get block function for non-AIO DIO writes when we create unwritten extent if
874109811c2SJan Kara  * blocks are not allocated yet. The extent will be converted to written
875109811c2SJan Kara  * after IO is complete from ext4_ext_direct_IO() function.
876109811c2SJan Kara  */
877109811c2SJan Kara static int ext4_dio_get_block_unwritten_sync(struct inode *inode,
878109811c2SJan Kara 		sector_t iblock, struct buffer_head *bh_result,	int create)
879109811c2SJan Kara {
880109811c2SJan Kara 	int ret;
881109811c2SJan Kara 
882109811c2SJan Kara 	/* We don't expect handle for direct IO */
883109811c2SJan Kara 	WARN_ON_ONCE(ext4_journal_current_handle());
884109811c2SJan Kara 
885e84dfbe2SJan Kara 	ret = ext4_get_block_trans(inode, iblock, bh_result,
886109811c2SJan Kara 				   EXT4_GET_BLOCKS_IO_CREATE_EXT);
887109811c2SJan Kara 
888109811c2SJan Kara 	/*
889109811c2SJan Kara 	 * Mark inode as having pending DIO writes to unwritten extents.
890109811c2SJan Kara 	 * ext4_ext_direct_IO() checks this flag and converts extents to
891109811c2SJan Kara 	 * written.
892109811c2SJan Kara 	 */
893109811c2SJan Kara 	if (!ret && buffer_unwritten(bh_result))
894109811c2SJan Kara 		ext4_set_inode_state(inode, EXT4_STATE_DIO_UNWRITTEN);
895efe70c29SJan Kara 
896efe70c29SJan Kara 	return ret;
897705965bdSJan Kara }
898705965bdSJan Kara 
899705965bdSJan Kara static int ext4_dio_get_block_overwrite(struct inode *inode, sector_t iblock,
900705965bdSJan Kara 		   struct buffer_head *bh_result, int create)
901705965bdSJan Kara {
902705965bdSJan Kara 	int ret;
903705965bdSJan Kara 
904705965bdSJan Kara 	ext4_debug("ext4_dio_get_block_overwrite: inode %lu, create flag %d\n",
905705965bdSJan Kara 		   inode->i_ino, create);
906efe70c29SJan Kara 	/* We don't expect handle for direct IO */
907efe70c29SJan Kara 	WARN_ON_ONCE(ext4_journal_current_handle());
908efe70c29SJan Kara 
909705965bdSJan Kara 	ret = _ext4_get_block(inode, iblock, bh_result, 0);
910705965bdSJan Kara 	/*
911705965bdSJan Kara 	 * Blocks should have been preallocated! ext4_file_write_iter() checks
912705965bdSJan Kara 	 * that.
913705965bdSJan Kara 	 */
914efe70c29SJan Kara 	WARN_ON_ONCE(!buffer_mapped(bh_result) || buffer_unwritten(bh_result));
915705965bdSJan Kara 
916705965bdSJan Kara 	return ret;
917705965bdSJan Kara }
918705965bdSJan Kara 
919705965bdSJan Kara 
920705965bdSJan Kara /*
921ac27a0ecSDave Kleikamp  * `handle' can be NULL if create is zero
922ac27a0ecSDave Kleikamp  */
923617ba13bSMingming Cao struct buffer_head *ext4_getblk(handle_t *handle, struct inode *inode,
924c5e298aeSTheodore Ts'o 				ext4_lblk_t block, int map_flags)
925ac27a0ecSDave Kleikamp {
9262ed88685STheodore Ts'o 	struct ext4_map_blocks map;
9272ed88685STheodore Ts'o 	struct buffer_head *bh;
928c5e298aeSTheodore Ts'o 	int create = map_flags & EXT4_GET_BLOCKS_CREATE;
92910560082STheodore Ts'o 	int err;
930ac27a0ecSDave Kleikamp 
931ac27a0ecSDave Kleikamp 	J_ASSERT(handle != NULL || create == 0);
932ac27a0ecSDave Kleikamp 
9332ed88685STheodore Ts'o 	map.m_lblk = block;
9342ed88685STheodore Ts'o 	map.m_len = 1;
935c5e298aeSTheodore Ts'o 	err = ext4_map_blocks(handle, inode, &map, map_flags);
9362ed88685STheodore Ts'o 
93710560082STheodore Ts'o 	if (err == 0)
93810560082STheodore Ts'o 		return create ? ERR_PTR(-ENOSPC) : NULL;
9392ed88685STheodore Ts'o 	if (err < 0)
94010560082STheodore Ts'o 		return ERR_PTR(err);
9412ed88685STheodore Ts'o 
9422ed88685STheodore Ts'o 	bh = sb_getblk(inode->i_sb, map.m_pblk);
94310560082STheodore Ts'o 	if (unlikely(!bh))
94410560082STheodore Ts'o 		return ERR_PTR(-ENOMEM);
9452ed88685STheodore Ts'o 	if (map.m_flags & EXT4_MAP_NEW) {
946ac27a0ecSDave Kleikamp 		J_ASSERT(create != 0);
947ac39849dSAneesh Kumar K.V 		J_ASSERT(handle != NULL);
948ac27a0ecSDave Kleikamp 
949ac27a0ecSDave Kleikamp 		/*
950ac27a0ecSDave Kleikamp 		 * Now that we do not always journal data, we should
951ac27a0ecSDave Kleikamp 		 * keep in mind whether this should always journal the
952ac27a0ecSDave Kleikamp 		 * new buffer as metadata.  For now, regular file
953617ba13bSMingming Cao 		 * writes use ext4_get_block instead, so it's not a
954ac27a0ecSDave Kleikamp 		 * problem.
955ac27a0ecSDave Kleikamp 		 */
956ac27a0ecSDave Kleikamp 		lock_buffer(bh);
957ac27a0ecSDave Kleikamp 		BUFFER_TRACE(bh, "call get_create_access");
95810560082STheodore Ts'o 		err = ext4_journal_get_create_access(handle, bh);
95910560082STheodore Ts'o 		if (unlikely(err)) {
96010560082STheodore Ts'o 			unlock_buffer(bh);
96110560082STheodore Ts'o 			goto errout;
96210560082STheodore Ts'o 		}
96310560082STheodore Ts'o 		if (!buffer_uptodate(bh)) {
964ac27a0ecSDave Kleikamp 			memset(bh->b_data, 0, inode->i_sb->s_blocksize);
965ac27a0ecSDave Kleikamp 			set_buffer_uptodate(bh);
966ac27a0ecSDave Kleikamp 		}
967ac27a0ecSDave Kleikamp 		unlock_buffer(bh);
9680390131bSFrank Mayhar 		BUFFER_TRACE(bh, "call ext4_handle_dirty_metadata");
9690390131bSFrank Mayhar 		err = ext4_handle_dirty_metadata(handle, inode, bh);
97010560082STheodore Ts'o 		if (unlikely(err))
97110560082STheodore Ts'o 			goto errout;
97210560082STheodore Ts'o 	} else
973ac27a0ecSDave Kleikamp 		BUFFER_TRACE(bh, "not a new buffer");
974ac27a0ecSDave Kleikamp 	return bh;
97510560082STheodore Ts'o errout:
97610560082STheodore Ts'o 	brelse(bh);
97710560082STheodore Ts'o 	return ERR_PTR(err);
978ac27a0ecSDave Kleikamp }
979ac27a0ecSDave Kleikamp 
980617ba13bSMingming Cao struct buffer_head *ext4_bread(handle_t *handle, struct inode *inode,
981c5e298aeSTheodore Ts'o 			       ext4_lblk_t block, int map_flags)
982ac27a0ecSDave Kleikamp {
983ac27a0ecSDave Kleikamp 	struct buffer_head *bh;
984ac27a0ecSDave Kleikamp 
985c5e298aeSTheodore Ts'o 	bh = ext4_getblk(handle, inode, block, map_flags);
9861c215028STheodore Ts'o 	if (IS_ERR(bh))
987ac27a0ecSDave Kleikamp 		return bh;
9881c215028STheodore Ts'o 	if (!bh || buffer_uptodate(bh))
989ac27a0ecSDave Kleikamp 		return bh;
99065299a3bSChristoph Hellwig 	ll_rw_block(READ | REQ_META | REQ_PRIO, 1, &bh);
991ac27a0ecSDave Kleikamp 	wait_on_buffer(bh);
992ac27a0ecSDave Kleikamp 	if (buffer_uptodate(bh))
993ac27a0ecSDave Kleikamp 		return bh;
994ac27a0ecSDave Kleikamp 	put_bh(bh);
9951c215028STheodore Ts'o 	return ERR_PTR(-EIO);
996ac27a0ecSDave Kleikamp }
997ac27a0ecSDave Kleikamp 
998f19d5870STao Ma int ext4_walk_page_buffers(handle_t *handle,
999ac27a0ecSDave Kleikamp 			   struct buffer_head *head,
1000ac27a0ecSDave Kleikamp 			   unsigned from,
1001ac27a0ecSDave Kleikamp 			   unsigned to,
1002ac27a0ecSDave Kleikamp 			   int *partial,
1003ac27a0ecSDave Kleikamp 			   int (*fn)(handle_t *handle,
1004ac27a0ecSDave Kleikamp 				     struct buffer_head *bh))
1005ac27a0ecSDave Kleikamp {
1006ac27a0ecSDave Kleikamp 	struct buffer_head *bh;
1007ac27a0ecSDave Kleikamp 	unsigned block_start, block_end;
1008ac27a0ecSDave Kleikamp 	unsigned blocksize = head->b_size;
1009ac27a0ecSDave Kleikamp 	int err, ret = 0;
1010ac27a0ecSDave Kleikamp 	struct buffer_head *next;
1011ac27a0ecSDave Kleikamp 
1012ac27a0ecSDave Kleikamp 	for (bh = head, block_start = 0;
1013ac27a0ecSDave Kleikamp 	     ret == 0 && (bh != head || !block_start);
1014de9a55b8STheodore Ts'o 	     block_start = block_end, bh = next) {
1015ac27a0ecSDave Kleikamp 		next = bh->b_this_page;
1016ac27a0ecSDave Kleikamp 		block_end = block_start + blocksize;
1017ac27a0ecSDave Kleikamp 		if (block_end <= from || block_start >= to) {
1018ac27a0ecSDave Kleikamp 			if (partial && !buffer_uptodate(bh))
1019ac27a0ecSDave Kleikamp 				*partial = 1;
1020ac27a0ecSDave Kleikamp 			continue;
1021ac27a0ecSDave Kleikamp 		}
1022ac27a0ecSDave Kleikamp 		err = (*fn)(handle, bh);
1023ac27a0ecSDave Kleikamp 		if (!ret)
1024ac27a0ecSDave Kleikamp 			ret = err;
1025ac27a0ecSDave Kleikamp 	}
1026ac27a0ecSDave Kleikamp 	return ret;
1027ac27a0ecSDave Kleikamp }
1028ac27a0ecSDave Kleikamp 
1029ac27a0ecSDave Kleikamp /*
1030ac27a0ecSDave Kleikamp  * To preserve ordering, it is essential that the hole instantiation and
1031ac27a0ecSDave Kleikamp  * the data write be encapsulated in a single transaction.  We cannot
1032617ba13bSMingming Cao  * close off a transaction and start a new one between the ext4_get_block()
1033dab291afSMingming Cao  * and the commit_write().  So doing the jbd2_journal_start at the start of
1034ac27a0ecSDave Kleikamp  * prepare_write() is the right place.
1035ac27a0ecSDave Kleikamp  *
103636ade451SJan Kara  * Also, this function can nest inside ext4_writepage().  In that case, we
103736ade451SJan Kara  * *know* that ext4_writepage() has generated enough buffer credits to do the
103836ade451SJan Kara  * whole page.  So we won't block on the journal in that case, which is good,
103936ade451SJan Kara  * because the caller may be PF_MEMALLOC.
1040ac27a0ecSDave Kleikamp  *
1041617ba13bSMingming Cao  * By accident, ext4 can be reentered when a transaction is open via
1042ac27a0ecSDave Kleikamp  * quota file writes.  If we were to commit the transaction while thus
1043ac27a0ecSDave Kleikamp  * reentered, there can be a deadlock - we would be holding a quota
1044ac27a0ecSDave Kleikamp  * lock, and the commit would never complete if another thread had a
1045ac27a0ecSDave Kleikamp  * transaction open and was blocking on the quota lock - a ranking
1046ac27a0ecSDave Kleikamp  * violation.
1047ac27a0ecSDave Kleikamp  *
1048dab291afSMingming Cao  * So what we do is to rely on the fact that jbd2_journal_stop/journal_start
1049ac27a0ecSDave Kleikamp  * will _not_ run commit under these circumstances because handle->h_ref
1050ac27a0ecSDave Kleikamp  * is elevated.  We'll still have enough credits for the tiny quotafile
1051ac27a0ecSDave Kleikamp  * write.
1052ac27a0ecSDave Kleikamp  */
1053f19d5870STao Ma int do_journal_get_write_access(handle_t *handle,
1054ac27a0ecSDave Kleikamp 				struct buffer_head *bh)
1055ac27a0ecSDave Kleikamp {
105656d35a4cSJan Kara 	int dirty = buffer_dirty(bh);
105756d35a4cSJan Kara 	int ret;
105856d35a4cSJan Kara 
1059ac27a0ecSDave Kleikamp 	if (!buffer_mapped(bh) || buffer_freed(bh))
1060ac27a0ecSDave Kleikamp 		return 0;
106156d35a4cSJan Kara 	/*
1062ebdec241SChristoph Hellwig 	 * __block_write_begin() could have dirtied some buffers. Clean
106356d35a4cSJan Kara 	 * the dirty bit as jbd2_journal_get_write_access() could complain
106456d35a4cSJan Kara 	 * otherwise about fs integrity issues. Setting of the dirty bit
1065ebdec241SChristoph Hellwig 	 * by __block_write_begin() isn't a real problem here as we clear
106656d35a4cSJan Kara 	 * the bit before releasing a page lock and thus writeback cannot
106756d35a4cSJan Kara 	 * ever write the buffer.
106856d35a4cSJan Kara 	 */
106956d35a4cSJan Kara 	if (dirty)
107056d35a4cSJan Kara 		clear_buffer_dirty(bh);
10715d601255Sliang xie 	BUFFER_TRACE(bh, "get write access");
107256d35a4cSJan Kara 	ret = ext4_journal_get_write_access(handle, bh);
107356d35a4cSJan Kara 	if (!ret && dirty)
107456d35a4cSJan Kara 		ret = ext4_handle_dirty_metadata(handle, NULL, bh);
107556d35a4cSJan Kara 	return ret;
1076ac27a0ecSDave Kleikamp }
1077ac27a0ecSDave Kleikamp 
10782058f83aSMichael Halcrow #ifdef CONFIG_EXT4_FS_ENCRYPTION
10792058f83aSMichael Halcrow static int ext4_block_write_begin(struct page *page, loff_t pos, unsigned len,
10802058f83aSMichael Halcrow 				  get_block_t *get_block)
10812058f83aSMichael Halcrow {
108209cbfeafSKirill A. Shutemov 	unsigned from = pos & (PAGE_SIZE - 1);
10832058f83aSMichael Halcrow 	unsigned to = from + len;
10842058f83aSMichael Halcrow 	struct inode *inode = page->mapping->host;
10852058f83aSMichael Halcrow 	unsigned block_start, block_end;
10862058f83aSMichael Halcrow 	sector_t block;
10872058f83aSMichael Halcrow 	int err = 0;
10882058f83aSMichael Halcrow 	unsigned blocksize = inode->i_sb->s_blocksize;
10892058f83aSMichael Halcrow 	unsigned bbits;
10902058f83aSMichael Halcrow 	struct buffer_head *bh, *head, *wait[2], **wait_bh = wait;
10912058f83aSMichael Halcrow 	bool decrypt = false;
10922058f83aSMichael Halcrow 
10932058f83aSMichael Halcrow 	BUG_ON(!PageLocked(page));
109409cbfeafSKirill A. Shutemov 	BUG_ON(from > PAGE_SIZE);
109509cbfeafSKirill A. Shutemov 	BUG_ON(to > PAGE_SIZE);
10962058f83aSMichael Halcrow 	BUG_ON(from > to);
10972058f83aSMichael Halcrow 
10982058f83aSMichael Halcrow 	if (!page_has_buffers(page))
10992058f83aSMichael Halcrow 		create_empty_buffers(page, blocksize, 0);
11002058f83aSMichael Halcrow 	head = page_buffers(page);
11012058f83aSMichael Halcrow 	bbits = ilog2(blocksize);
110209cbfeafSKirill A. Shutemov 	block = (sector_t)page->index << (PAGE_SHIFT - bbits);
11032058f83aSMichael Halcrow 
11042058f83aSMichael Halcrow 	for (bh = head, block_start = 0; bh != head || !block_start;
11052058f83aSMichael Halcrow 	    block++, block_start = block_end, bh = bh->b_this_page) {
11062058f83aSMichael Halcrow 		block_end = block_start + blocksize;
11072058f83aSMichael Halcrow 		if (block_end <= from || block_start >= to) {
11082058f83aSMichael Halcrow 			if (PageUptodate(page)) {
11092058f83aSMichael Halcrow 				if (!buffer_uptodate(bh))
11102058f83aSMichael Halcrow 					set_buffer_uptodate(bh);
11112058f83aSMichael Halcrow 			}
11122058f83aSMichael Halcrow 			continue;
11132058f83aSMichael Halcrow 		}
11142058f83aSMichael Halcrow 		if (buffer_new(bh))
11152058f83aSMichael Halcrow 			clear_buffer_new(bh);
11162058f83aSMichael Halcrow 		if (!buffer_mapped(bh)) {
11172058f83aSMichael Halcrow 			WARN_ON(bh->b_size != blocksize);
11182058f83aSMichael Halcrow 			err = get_block(inode, block, bh, 1);
11192058f83aSMichael Halcrow 			if (err)
11202058f83aSMichael Halcrow 				break;
11212058f83aSMichael Halcrow 			if (buffer_new(bh)) {
11222058f83aSMichael Halcrow 				unmap_underlying_metadata(bh->b_bdev,
11232058f83aSMichael Halcrow 							  bh->b_blocknr);
11242058f83aSMichael Halcrow 				if (PageUptodate(page)) {
11252058f83aSMichael Halcrow 					clear_buffer_new(bh);
11262058f83aSMichael Halcrow 					set_buffer_uptodate(bh);
11272058f83aSMichael Halcrow 					mark_buffer_dirty(bh);
11282058f83aSMichael Halcrow 					continue;
11292058f83aSMichael Halcrow 				}
11302058f83aSMichael Halcrow 				if (block_end > to || block_start < from)
11312058f83aSMichael Halcrow 					zero_user_segments(page, to, block_end,
11322058f83aSMichael Halcrow 							   block_start, from);
11332058f83aSMichael Halcrow 				continue;
11342058f83aSMichael Halcrow 			}
11352058f83aSMichael Halcrow 		}
11362058f83aSMichael Halcrow 		if (PageUptodate(page)) {
11372058f83aSMichael Halcrow 			if (!buffer_uptodate(bh))
11382058f83aSMichael Halcrow 				set_buffer_uptodate(bh);
11392058f83aSMichael Halcrow 			continue;
11402058f83aSMichael Halcrow 		}
11412058f83aSMichael Halcrow 		if (!buffer_uptodate(bh) && !buffer_delay(bh) &&
11422058f83aSMichael Halcrow 		    !buffer_unwritten(bh) &&
11432058f83aSMichael Halcrow 		    (block_start < from || block_end > to)) {
11442058f83aSMichael Halcrow 			ll_rw_block(READ, 1, &bh);
11452058f83aSMichael Halcrow 			*wait_bh++ = bh;
11462058f83aSMichael Halcrow 			decrypt = ext4_encrypted_inode(inode) &&
11472058f83aSMichael Halcrow 				S_ISREG(inode->i_mode);
11482058f83aSMichael Halcrow 		}
11492058f83aSMichael Halcrow 	}
11502058f83aSMichael Halcrow 	/*
11512058f83aSMichael Halcrow 	 * If we issued read requests, let them complete.
11522058f83aSMichael Halcrow 	 */
11532058f83aSMichael Halcrow 	while (wait_bh > wait) {
11542058f83aSMichael Halcrow 		wait_on_buffer(*--wait_bh);
11552058f83aSMichael Halcrow 		if (!buffer_uptodate(*wait_bh))
11562058f83aSMichael Halcrow 			err = -EIO;
11572058f83aSMichael Halcrow 	}
11582058f83aSMichael Halcrow 	if (unlikely(err))
11592058f83aSMichael Halcrow 		page_zero_new_buffers(page, from, to);
11602058f83aSMichael Halcrow 	else if (decrypt)
11613684de8cSTheodore Ts'o 		err = ext4_decrypt(page);
11622058f83aSMichael Halcrow 	return err;
11632058f83aSMichael Halcrow }
11642058f83aSMichael Halcrow #endif
11652058f83aSMichael Halcrow 
1166bfc1af65SNick Piggin static int ext4_write_begin(struct file *file, struct address_space *mapping,
1167bfc1af65SNick Piggin 			    loff_t pos, unsigned len, unsigned flags,
1168bfc1af65SNick Piggin 			    struct page **pagep, void **fsdata)
1169ac27a0ecSDave Kleikamp {
1170bfc1af65SNick Piggin 	struct inode *inode = mapping->host;
11711938a150SAneesh Kumar K.V 	int ret, needed_blocks;
1172ac27a0ecSDave Kleikamp 	handle_t *handle;
1173ac27a0ecSDave Kleikamp 	int retries = 0;
1174bfc1af65SNick Piggin 	struct page *page;
1175bfc1af65SNick Piggin 	pgoff_t index;
1176bfc1af65SNick Piggin 	unsigned from, to;
1177bfc1af65SNick Piggin 
11789bffad1eSTheodore Ts'o 	trace_ext4_write_begin(inode, pos, len, flags);
11791938a150SAneesh Kumar K.V 	/*
11801938a150SAneesh Kumar K.V 	 * Reserve one block more for addition to orphan list in case
11811938a150SAneesh Kumar K.V 	 * we allocate blocks but write fails for some reason
11821938a150SAneesh Kumar K.V 	 */
11831938a150SAneesh Kumar K.V 	needed_blocks = ext4_writepage_trans_blocks(inode) + 1;
118409cbfeafSKirill A. Shutemov 	index = pos >> PAGE_SHIFT;
118509cbfeafSKirill A. Shutemov 	from = pos & (PAGE_SIZE - 1);
1186bfc1af65SNick Piggin 	to = from + len;
1187ac27a0ecSDave Kleikamp 
1188f19d5870STao Ma 	if (ext4_test_inode_state(inode, EXT4_STATE_MAY_INLINE_DATA)) {
1189f19d5870STao Ma 		ret = ext4_try_to_write_inline_data(mapping, inode, pos, len,
1190f19d5870STao Ma 						    flags, pagep);
1191f19d5870STao Ma 		if (ret < 0)
119247564bfbSTheodore Ts'o 			return ret;
119347564bfbSTheodore Ts'o 		if (ret == 1)
119447564bfbSTheodore Ts'o 			return 0;
1195f19d5870STao Ma 	}
1196f19d5870STao Ma 
119747564bfbSTheodore Ts'o 	/*
119847564bfbSTheodore Ts'o 	 * grab_cache_page_write_begin() can take a long time if the
119947564bfbSTheodore Ts'o 	 * system is thrashing due to memory pressure, or if the page
120047564bfbSTheodore Ts'o 	 * is being written back.  So grab it first before we start
120147564bfbSTheodore Ts'o 	 * the transaction handle.  This also allows us to allocate
120247564bfbSTheodore Ts'o 	 * the page (if needed) without using GFP_NOFS.
120347564bfbSTheodore Ts'o 	 */
120447564bfbSTheodore Ts'o retry_grab:
120554566b2cSNick Piggin 	page = grab_cache_page_write_begin(mapping, index, flags);
120647564bfbSTheodore Ts'o 	if (!page)
120747564bfbSTheodore Ts'o 		return -ENOMEM;
120847564bfbSTheodore Ts'o 	unlock_page(page);
120947564bfbSTheodore Ts'o 
121047564bfbSTheodore Ts'o retry_journal:
12119924a92aSTheodore Ts'o 	handle = ext4_journal_start(inode, EXT4_HT_WRITE_PAGE, needed_blocks);
1212ac27a0ecSDave Kleikamp 	if (IS_ERR(handle)) {
121309cbfeafSKirill A. Shutemov 		put_page(page);
121447564bfbSTheodore Ts'o 		return PTR_ERR(handle);
1215cf108bcaSJan Kara 	}
1216f19d5870STao Ma 
121747564bfbSTheodore Ts'o 	lock_page(page);
121847564bfbSTheodore Ts'o 	if (page->mapping != mapping) {
121947564bfbSTheodore Ts'o 		/* The page got truncated from under us */
122047564bfbSTheodore Ts'o 		unlock_page(page);
122109cbfeafSKirill A. Shutemov 		put_page(page);
1222cf108bcaSJan Kara 		ext4_journal_stop(handle);
122347564bfbSTheodore Ts'o 		goto retry_grab;
1224cf108bcaSJan Kara 	}
12257afe5aa5SDmitry Monakhov 	/* In case writeback began while the page was unlocked */
12267afe5aa5SDmitry Monakhov 	wait_for_stable_page(page);
1227cf108bcaSJan Kara 
12282058f83aSMichael Halcrow #ifdef CONFIG_EXT4_FS_ENCRYPTION
12292058f83aSMichael Halcrow 	if (ext4_should_dioread_nolock(inode))
12302058f83aSMichael Halcrow 		ret = ext4_block_write_begin(page, pos, len,
1231705965bdSJan Kara 					     ext4_get_block_unwritten);
12322058f83aSMichael Halcrow 	else
12332058f83aSMichael Halcrow 		ret = ext4_block_write_begin(page, pos, len,
12342058f83aSMichael Halcrow 					     ext4_get_block);
12352058f83aSMichael Halcrow #else
1236744692dcSJiaying Zhang 	if (ext4_should_dioread_nolock(inode))
1237705965bdSJan Kara 		ret = __block_write_begin(page, pos, len,
1238705965bdSJan Kara 					  ext4_get_block_unwritten);
1239744692dcSJiaying Zhang 	else
12406e1db88dSChristoph Hellwig 		ret = __block_write_begin(page, pos, len, ext4_get_block);
12412058f83aSMichael Halcrow #endif
1242bfc1af65SNick Piggin 	if (!ret && ext4_should_journal_data(inode)) {
1243f19d5870STao Ma 		ret = ext4_walk_page_buffers(handle, page_buffers(page),
1244f19d5870STao Ma 					     from, to, NULL,
1245f19d5870STao Ma 					     do_journal_get_write_access);
1246b46be050SAndrey Savochkin 	}
1247bfc1af65SNick Piggin 
1248bfc1af65SNick Piggin 	if (ret) {
1249bfc1af65SNick Piggin 		unlock_page(page);
1250ae4d5372SAneesh Kumar K.V 		/*
12516e1db88dSChristoph Hellwig 		 * __block_write_begin may have instantiated a few blocks
1252ae4d5372SAneesh Kumar K.V 		 * outside i_size.  Trim these off again. Don't need
1253ae4d5372SAneesh Kumar K.V 		 * i_size_read because we hold i_mutex.
12541938a150SAneesh Kumar K.V 		 *
12551938a150SAneesh Kumar K.V 		 * Add inode to orphan list in case we crash before
12561938a150SAneesh Kumar K.V 		 * truncate finishes
1257ae4d5372SAneesh Kumar K.V 		 */
1258ffacfa7aSJan Kara 		if (pos + len > inode->i_size && ext4_can_truncate(inode))
12591938a150SAneesh Kumar K.V 			ext4_orphan_add(handle, inode);
12601938a150SAneesh Kumar K.V 
12611938a150SAneesh Kumar K.V 		ext4_journal_stop(handle);
12621938a150SAneesh Kumar K.V 		if (pos + len > inode->i_size) {
1263b9a4207dSJan Kara 			ext4_truncate_failed_write(inode);
12641938a150SAneesh Kumar K.V 			/*
1265ffacfa7aSJan Kara 			 * If truncate failed early the inode might
12661938a150SAneesh Kumar K.V 			 * still be on the orphan list; we need to
12671938a150SAneesh Kumar K.V 			 * make sure the inode is removed from the
12681938a150SAneesh Kumar K.V 			 * orphan list in that case.
12691938a150SAneesh Kumar K.V 			 */
12701938a150SAneesh Kumar K.V 			if (inode->i_nlink)
12711938a150SAneesh Kumar K.V 				ext4_orphan_del(NULL, inode);
12721938a150SAneesh Kumar K.V 		}
1273bfc1af65SNick Piggin 
127447564bfbSTheodore Ts'o 		if (ret == -ENOSPC &&
127547564bfbSTheodore Ts'o 		    ext4_should_retry_alloc(inode->i_sb, &retries))
127647564bfbSTheodore Ts'o 			goto retry_journal;
127709cbfeafSKirill A. Shutemov 		put_page(page);
127847564bfbSTheodore Ts'o 		return ret;
127947564bfbSTheodore Ts'o 	}
128047564bfbSTheodore Ts'o 	*pagep = page;
1281ac27a0ecSDave Kleikamp 	return ret;
1282ac27a0ecSDave Kleikamp }
1283ac27a0ecSDave Kleikamp 
1284bfc1af65SNick Piggin /* For write_end() in data=journal mode */
1285bfc1af65SNick Piggin static int write_end_fn(handle_t *handle, struct buffer_head *bh)
1286ac27a0ecSDave Kleikamp {
128713fca323STheodore Ts'o 	int ret;
1288ac27a0ecSDave Kleikamp 	if (!buffer_mapped(bh) || buffer_freed(bh))
1289ac27a0ecSDave Kleikamp 		return 0;
1290ac27a0ecSDave Kleikamp 	set_buffer_uptodate(bh);
129113fca323STheodore Ts'o 	ret = ext4_handle_dirty_metadata(handle, NULL, bh);
129213fca323STheodore Ts'o 	clear_buffer_meta(bh);
129313fca323STheodore Ts'o 	clear_buffer_prio(bh);
129413fca323STheodore Ts'o 	return ret;
1295ac27a0ecSDave Kleikamp }
1296ac27a0ecSDave Kleikamp 
1297eed4333fSZheng Liu /*
1298eed4333fSZheng Liu  * We need to pick up the new inode size which generic_commit_write gave us
1299eed4333fSZheng Liu  * `file' can be NULL - eg, when called from page_symlink().
1300eed4333fSZheng Liu  *
1301eed4333fSZheng Liu  * ext4 never places buffers on inode->i_mapping->private_list.  metadata
1302eed4333fSZheng Liu  * buffers are managed internally.
1303eed4333fSZheng Liu  */
1304eed4333fSZheng Liu static int ext4_write_end(struct file *file,
1305f8514083SAneesh Kumar K.V 			  struct address_space *mapping,
1306f8514083SAneesh Kumar K.V 			  loff_t pos, unsigned len, unsigned copied,
1307f8514083SAneesh Kumar K.V 			  struct page *page, void *fsdata)
1308f8514083SAneesh Kumar K.V {
1309f8514083SAneesh Kumar K.V 	handle_t *handle = ext4_journal_current_handle();
1310eed4333fSZheng Liu 	struct inode *inode = mapping->host;
13110572639fSXiaoguang Wang 	loff_t old_size = inode->i_size;
1312eed4333fSZheng Liu 	int ret = 0, ret2;
1313eed4333fSZheng Liu 	int i_size_changed = 0;
1314eed4333fSZheng Liu 
1315eed4333fSZheng Liu 	trace_ext4_write_end(inode, pos, len, copied);
131642c832deSTheodore Ts'o 	if (ext4_has_inline_data(inode)) {
131742c832deSTheodore Ts'o 		ret = ext4_write_inline_data_end(inode, pos, len,
1318f19d5870STao Ma 						 copied, page);
131942c832deSTheodore Ts'o 		if (ret < 0)
132042c832deSTheodore Ts'o 			goto errout;
132142c832deSTheodore Ts'o 		copied = ret;
132242c832deSTheodore Ts'o 	} else
1323f19d5870STao Ma 		copied = block_write_end(file, mapping, pos,
1324f19d5870STao Ma 					 len, copied, page, fsdata);
1325f8514083SAneesh Kumar K.V 	/*
13264631dbf6SDmitry Monakhov 	 * it's important to update i_size while still holding page lock:
1327f8514083SAneesh Kumar K.V 	 * page writeout could otherwise come in and zero beyond i_size.
1328f8514083SAneesh Kumar K.V 	 */
13294631dbf6SDmitry Monakhov 	i_size_changed = ext4_update_inode_size(inode, pos + copied);
1330f8514083SAneesh Kumar K.V 	unlock_page(page);
133109cbfeafSKirill A. Shutemov 	put_page(page);
1332f8514083SAneesh Kumar K.V 
13330572639fSXiaoguang Wang 	if (old_size < pos)
13340572639fSXiaoguang Wang 		pagecache_isize_extended(inode, old_size, pos);
1335f8514083SAneesh Kumar K.V 	/*
1336f8514083SAneesh Kumar K.V 	 * Don't mark the inode dirty under page lock. First, it unnecessarily
1337f8514083SAneesh Kumar K.V 	 * makes the holding time of page lock longer. Second, it forces lock
1338f8514083SAneesh Kumar K.V 	 * ordering of page lock and transaction start for journaling
1339f8514083SAneesh Kumar K.V 	 * filesystems.
1340f8514083SAneesh Kumar K.V 	 */
1341f8514083SAneesh Kumar K.V 	if (i_size_changed)
1342f8514083SAneesh Kumar K.V 		ext4_mark_inode_dirty(handle, inode);
1343f8514083SAneesh Kumar K.V 
1344ffacfa7aSJan Kara 	if (pos + len > inode->i_size && ext4_can_truncate(inode))
1345f8514083SAneesh Kumar K.V 		/* if we have allocated more blocks and copied
1346f8514083SAneesh Kumar K.V 		 * less. We will have blocks allocated outside
1347f8514083SAneesh Kumar K.V 		 * inode->i_size. So truncate them
1348f8514083SAneesh Kumar K.V 		 */
1349f8514083SAneesh Kumar K.V 		ext4_orphan_add(handle, inode);
135074d553aaSTheodore Ts'o errout:
1351617ba13bSMingming Cao 	ret2 = ext4_journal_stop(handle);
1352ac27a0ecSDave Kleikamp 	if (!ret)
1353ac27a0ecSDave Kleikamp 		ret = ret2;
1354bfc1af65SNick Piggin 
1355f8514083SAneesh Kumar K.V 	if (pos + len > inode->i_size) {
1356b9a4207dSJan Kara 		ext4_truncate_failed_write(inode);
1357f8514083SAneesh Kumar K.V 		/*
1358ffacfa7aSJan Kara 		 * If truncate failed early the inode might still be
1359f8514083SAneesh Kumar K.V 		 * on the orphan list; we need to make sure the inode
1360f8514083SAneesh Kumar K.V 		 * is removed from the orphan list in that case.
1361f8514083SAneesh Kumar K.V 		 */
1362f8514083SAneesh Kumar K.V 		if (inode->i_nlink)
1363f8514083SAneesh Kumar K.V 			ext4_orphan_del(NULL, inode);
1364f8514083SAneesh Kumar K.V 	}
1365f8514083SAneesh Kumar K.V 
1366bfc1af65SNick Piggin 	return ret ? ret : copied;
1367ac27a0ecSDave Kleikamp }
1368ac27a0ecSDave Kleikamp 
1369b90197b6STheodore Ts'o /*
1370b90197b6STheodore Ts'o  * This is a private version of page_zero_new_buffers() which doesn't
1371b90197b6STheodore Ts'o  * set the buffer to be dirty, since in data=journalled mode we need
1372b90197b6STheodore Ts'o  * to call ext4_handle_dirty_metadata() instead.
1373b90197b6STheodore Ts'o  */
1374b90197b6STheodore Ts'o static void zero_new_buffers(struct page *page, unsigned from, unsigned to)
1375b90197b6STheodore Ts'o {
1376b90197b6STheodore Ts'o 	unsigned int block_start = 0, block_end;
1377b90197b6STheodore Ts'o 	struct buffer_head *head, *bh;
1378b90197b6STheodore Ts'o 
1379b90197b6STheodore Ts'o 	bh = head = page_buffers(page);
1380b90197b6STheodore Ts'o 	do {
1381b90197b6STheodore Ts'o 		block_end = block_start + bh->b_size;
1382b90197b6STheodore Ts'o 		if (buffer_new(bh)) {
1383b90197b6STheodore Ts'o 			if (block_end > from && block_start < to) {
1384b90197b6STheodore Ts'o 				if (!PageUptodate(page)) {
1385b90197b6STheodore Ts'o 					unsigned start, size;
1386b90197b6STheodore Ts'o 
1387b90197b6STheodore Ts'o 					start = max(from, block_start);
1388b90197b6STheodore Ts'o 					size = min(to, block_end) - start;
1389b90197b6STheodore Ts'o 
1390b90197b6STheodore Ts'o 					zero_user(page, start, size);
1391b90197b6STheodore Ts'o 					set_buffer_uptodate(bh);
1392b90197b6STheodore Ts'o 				}
1393b90197b6STheodore Ts'o 				clear_buffer_new(bh);
1394b90197b6STheodore Ts'o 			}
1395b90197b6STheodore Ts'o 		}
1396b90197b6STheodore Ts'o 		block_start = block_end;
1397b90197b6STheodore Ts'o 		bh = bh->b_this_page;
1398b90197b6STheodore Ts'o 	} while (bh != head);
1399b90197b6STheodore Ts'o }
1400b90197b6STheodore Ts'o 
1401bfc1af65SNick Piggin static int ext4_journalled_write_end(struct file *file,
1402bfc1af65SNick Piggin 				     struct address_space *mapping,
1403bfc1af65SNick Piggin 				     loff_t pos, unsigned len, unsigned copied,
1404bfc1af65SNick Piggin 				     struct page *page, void *fsdata)
1405ac27a0ecSDave Kleikamp {
1406617ba13bSMingming Cao 	handle_t *handle = ext4_journal_current_handle();
1407bfc1af65SNick Piggin 	struct inode *inode = mapping->host;
14080572639fSXiaoguang Wang 	loff_t old_size = inode->i_size;
1409ac27a0ecSDave Kleikamp 	int ret = 0, ret2;
1410ac27a0ecSDave Kleikamp 	int partial = 0;
1411bfc1af65SNick Piggin 	unsigned from, to;
14124631dbf6SDmitry Monakhov 	int size_changed = 0;
1413ac27a0ecSDave Kleikamp 
14149bffad1eSTheodore Ts'o 	trace_ext4_journalled_write_end(inode, pos, len, copied);
141509cbfeafSKirill A. Shutemov 	from = pos & (PAGE_SIZE - 1);
1416bfc1af65SNick Piggin 	to = from + len;
1417bfc1af65SNick Piggin 
1418441c8508SCurt Wohlgemuth 	BUG_ON(!ext4_handle_valid(handle));
1419441c8508SCurt Wohlgemuth 
14203fdcfb66STao Ma 	if (ext4_has_inline_data(inode))
14213fdcfb66STao Ma 		copied = ext4_write_inline_data_end(inode, pos, len,
14223fdcfb66STao Ma 						    copied, page);
14233fdcfb66STao Ma 	else {
1424bfc1af65SNick Piggin 		if (copied < len) {
1425bfc1af65SNick Piggin 			if (!PageUptodate(page))
1426bfc1af65SNick Piggin 				copied = 0;
1427b90197b6STheodore Ts'o 			zero_new_buffers(page, from+copied, to);
1428bfc1af65SNick Piggin 		}
1429ac27a0ecSDave Kleikamp 
1430f19d5870STao Ma 		ret = ext4_walk_page_buffers(handle, page_buffers(page), from,
1431bfc1af65SNick Piggin 					     to, &partial, write_end_fn);
1432ac27a0ecSDave Kleikamp 		if (!partial)
1433ac27a0ecSDave Kleikamp 			SetPageUptodate(page);
14343fdcfb66STao Ma 	}
14354631dbf6SDmitry Monakhov 	size_changed = ext4_update_inode_size(inode, pos + copied);
143619f5fb7aSTheodore Ts'o 	ext4_set_inode_state(inode, EXT4_STATE_JDATA);
14372d859db3SJan Kara 	EXT4_I(inode)->i_datasync_tid = handle->h_transaction->t_tid;
14384631dbf6SDmitry Monakhov 	unlock_page(page);
143909cbfeafSKirill A. Shutemov 	put_page(page);
14404631dbf6SDmitry Monakhov 
14410572639fSXiaoguang Wang 	if (old_size < pos)
14420572639fSXiaoguang Wang 		pagecache_isize_extended(inode, old_size, pos);
14430572639fSXiaoguang Wang 
14444631dbf6SDmitry Monakhov 	if (size_changed) {
1445617ba13bSMingming Cao 		ret2 = ext4_mark_inode_dirty(handle, inode);
1446ac27a0ecSDave Kleikamp 		if (!ret)
1447ac27a0ecSDave Kleikamp 			ret = ret2;
1448ac27a0ecSDave Kleikamp 	}
1449bfc1af65SNick Piggin 
1450ffacfa7aSJan Kara 	if (pos + len > inode->i_size && ext4_can_truncate(inode))
1451f8514083SAneesh Kumar K.V 		/* if we have allocated more blocks and copied
1452f8514083SAneesh Kumar K.V 		 * less. We will have blocks allocated outside
1453f8514083SAneesh Kumar K.V 		 * inode->i_size. So truncate them
1454f8514083SAneesh Kumar K.V 		 */
1455f8514083SAneesh Kumar K.V 		ext4_orphan_add(handle, inode);
1456f8514083SAneesh Kumar K.V 
1457617ba13bSMingming Cao 	ret2 = ext4_journal_stop(handle);
1458ac27a0ecSDave Kleikamp 	if (!ret)
1459ac27a0ecSDave Kleikamp 		ret = ret2;
1460f8514083SAneesh Kumar K.V 	if (pos + len > inode->i_size) {
1461b9a4207dSJan Kara 		ext4_truncate_failed_write(inode);
1462f8514083SAneesh Kumar K.V 		/*
1463ffacfa7aSJan Kara 		 * If truncate failed early the inode might still be
1464f8514083SAneesh Kumar K.V 		 * on the orphan list; we need to make sure the inode
1465f8514083SAneesh Kumar K.V 		 * is removed from the orphan list in that case.
1466f8514083SAneesh Kumar K.V 		 */
1467f8514083SAneesh Kumar K.V 		if (inode->i_nlink)
1468f8514083SAneesh Kumar K.V 			ext4_orphan_del(NULL, inode);
1469f8514083SAneesh Kumar K.V 	}
1470bfc1af65SNick Piggin 
1471bfc1af65SNick Piggin 	return ret ? ret : copied;
1472ac27a0ecSDave Kleikamp }
1473d2a17637SMingming Cao 
14749d0be502STheodore Ts'o /*
1475c27e43a1SEric Whitney  * Reserve space for a single cluster
14769d0be502STheodore Ts'o  */
1477c27e43a1SEric Whitney static int ext4_da_reserve_space(struct inode *inode)
1478d2a17637SMingming Cao {
1479d2a17637SMingming Cao 	struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb);
14800637c6f4STheodore Ts'o 	struct ext4_inode_info *ei = EXT4_I(inode);
14815dd4056dSChristoph Hellwig 	int ret;
1482d2a17637SMingming Cao 
148360e58e0fSMingming Cao 	/*
148472b8ab9dSEric Sandeen 	 * We will charge metadata quota at writeout time; this saves
148572b8ab9dSEric Sandeen 	 * us from metadata over-estimation, though we may go over by
148672b8ab9dSEric Sandeen 	 * a small amount in the end.  Here we just reserve for data.
148760e58e0fSMingming Cao 	 */
14887b415bf6SAditya Kali 	ret = dquot_reserve_block(inode, EXT4_C2B(sbi, 1));
14895dd4056dSChristoph Hellwig 	if (ret)
14905dd4056dSChristoph Hellwig 		return ret;
149103179fe9STheodore Ts'o 
149203179fe9STheodore Ts'o 	spin_lock(&ei->i_block_reservation_lock);
149371d4f7d0STheodore Ts'o 	if (ext4_claim_free_clusters(sbi, 1, 0)) {
149403179fe9STheodore Ts'o 		spin_unlock(&ei->i_block_reservation_lock);
149503179fe9STheodore Ts'o 		dquot_release_reservation_block(inode, EXT4_C2B(sbi, 1));
1496d2a17637SMingming Cao 		return -ENOSPC;
1497d2a17637SMingming Cao 	}
14989d0be502STheodore Ts'o 	ei->i_reserved_data_blocks++;
1499c27e43a1SEric Whitney 	trace_ext4_da_reserve_space(inode);
15000637c6f4STheodore Ts'o 	spin_unlock(&ei->i_block_reservation_lock);
150139bc680aSDmitry Monakhov 
1502d2a17637SMingming Cao 	return 0;       /* success */
1503d2a17637SMingming Cao }
1504d2a17637SMingming Cao 
150512219aeaSAneesh Kumar K.V static void ext4_da_release_space(struct inode *inode, int to_free)
1506d2a17637SMingming Cao {
1507d2a17637SMingming Cao 	struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb);
15080637c6f4STheodore Ts'o 	struct ext4_inode_info *ei = EXT4_I(inode);
1509d2a17637SMingming Cao 
1510cd213226SMingming Cao 	if (!to_free)
1511cd213226SMingming Cao 		return;		/* Nothing to release, exit */
1512cd213226SMingming Cao 
1513d2a17637SMingming Cao 	spin_lock(&EXT4_I(inode)->i_block_reservation_lock);
1514cd213226SMingming Cao 
15155a58ec87SLi Zefan 	trace_ext4_da_release_space(inode, to_free);
15160637c6f4STheodore Ts'o 	if (unlikely(to_free > ei->i_reserved_data_blocks)) {
1517cd213226SMingming Cao 		/*
15180637c6f4STheodore Ts'o 		 * if there aren't enough reserved blocks, then the
15190637c6f4STheodore Ts'o 		 * counter is messed up somewhere.  Since this
15200637c6f4STheodore Ts'o 		 * function is called from invalidate page, it's
15210637c6f4STheodore Ts'o 		 * harmless to return without any action.
1522cd213226SMingming Cao 		 */
15238de5c325STheodore Ts'o 		ext4_warning(inode->i_sb, "ext4_da_release_space: "
15240637c6f4STheodore Ts'o 			 "ino %lu, to_free %d with only %d reserved "
15251084f252STheodore Ts'o 			 "data blocks", inode->i_ino, to_free,
15260637c6f4STheodore Ts'o 			 ei->i_reserved_data_blocks);
15270637c6f4STheodore Ts'o 		WARN_ON(1);
15280637c6f4STheodore Ts'o 		to_free = ei->i_reserved_data_blocks;
15290637c6f4STheodore Ts'o 	}
15300637c6f4STheodore Ts'o 	ei->i_reserved_data_blocks -= to_free;
15310637c6f4STheodore Ts'o 
153272b8ab9dSEric Sandeen 	/* update fs dirty data blocks counter */
153357042651STheodore Ts'o 	percpu_counter_sub(&sbi->s_dirtyclusters_counter, to_free);
1534d2a17637SMingming Cao 
1535d2a17637SMingming Cao 	spin_unlock(&EXT4_I(inode)->i_block_reservation_lock);
153660e58e0fSMingming Cao 
15377b415bf6SAditya Kali 	dquot_release_reservation_block(inode, EXT4_C2B(sbi, to_free));
1538d2a17637SMingming Cao }
1539d2a17637SMingming Cao 
1540d2a17637SMingming Cao static void ext4_da_page_release_reservation(struct page *page,
1541ca99fdd2SLukas Czerner 					     unsigned int offset,
1542ca99fdd2SLukas Czerner 					     unsigned int length)
1543d2a17637SMingming Cao {
15449705acd6SLukas Czerner 	int to_release = 0, contiguous_blks = 0;
1545d2a17637SMingming Cao 	struct buffer_head *head, *bh;
1546d2a17637SMingming Cao 	unsigned int curr_off = 0;
15477b415bf6SAditya Kali 	struct inode *inode = page->mapping->host;
15487b415bf6SAditya Kali 	struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb);
1549ca99fdd2SLukas Czerner 	unsigned int stop = offset + length;
15507b415bf6SAditya Kali 	int num_clusters;
155151865fdaSZheng Liu 	ext4_fsblk_t lblk;
1552d2a17637SMingming Cao 
155309cbfeafSKirill A. Shutemov 	BUG_ON(stop > PAGE_SIZE || stop < length);
1554ca99fdd2SLukas Czerner 
1555d2a17637SMingming Cao 	head = page_buffers(page);
1556d2a17637SMingming Cao 	bh = head;
1557d2a17637SMingming Cao 	do {
1558d2a17637SMingming Cao 		unsigned int next_off = curr_off + bh->b_size;
1559d2a17637SMingming Cao 
1560ca99fdd2SLukas Czerner 		if (next_off > stop)
1561ca99fdd2SLukas Czerner 			break;
1562ca99fdd2SLukas Czerner 
1563d2a17637SMingming Cao 		if ((offset <= curr_off) && (buffer_delay(bh))) {
1564d2a17637SMingming Cao 			to_release++;
15659705acd6SLukas Czerner 			contiguous_blks++;
1566d2a17637SMingming Cao 			clear_buffer_delay(bh);
15679705acd6SLukas Czerner 		} else if (contiguous_blks) {
15689705acd6SLukas Czerner 			lblk = page->index <<
156909cbfeafSKirill A. Shutemov 			       (PAGE_SHIFT - inode->i_blkbits);
15709705acd6SLukas Czerner 			lblk += (curr_off >> inode->i_blkbits) -
15719705acd6SLukas Czerner 				contiguous_blks;
15729705acd6SLukas Czerner 			ext4_es_remove_extent(inode, lblk, contiguous_blks);
15739705acd6SLukas Czerner 			contiguous_blks = 0;
1574d2a17637SMingming Cao 		}
1575d2a17637SMingming Cao 		curr_off = next_off;
1576d2a17637SMingming Cao 	} while ((bh = bh->b_this_page) != head);
15777b415bf6SAditya Kali 
15789705acd6SLukas Czerner 	if (contiguous_blks) {
157909cbfeafSKirill A. Shutemov 		lblk = page->index << (PAGE_SHIFT - inode->i_blkbits);
15809705acd6SLukas Czerner 		lblk += (curr_off >> inode->i_blkbits) - contiguous_blks;
15819705acd6SLukas Czerner 		ext4_es_remove_extent(inode, lblk, contiguous_blks);
158251865fdaSZheng Liu 	}
158351865fdaSZheng Liu 
15847b415bf6SAditya Kali 	/* If we have released all the blocks belonging to a cluster, then we
15857b415bf6SAditya Kali 	 * need to release the reserved space for that cluster. */
15867b415bf6SAditya Kali 	num_clusters = EXT4_NUM_B2C(sbi, to_release);
15877b415bf6SAditya Kali 	while (num_clusters > 0) {
158809cbfeafSKirill A. Shutemov 		lblk = (page->index << (PAGE_SHIFT - inode->i_blkbits)) +
15897b415bf6SAditya Kali 			((num_clusters - 1) << sbi->s_cluster_bits);
15907b415bf6SAditya Kali 		if (sbi->s_cluster_ratio == 1 ||
15917d1b1fbcSZheng Liu 		    !ext4_find_delalloc_cluster(inode, lblk))
15927b415bf6SAditya Kali 			ext4_da_release_space(inode, 1);
15937b415bf6SAditya Kali 
15947b415bf6SAditya Kali 		num_clusters--;
15957b415bf6SAditya Kali 	}
1596d2a17637SMingming Cao }
1597ac27a0ecSDave Kleikamp 
1598ac27a0ecSDave Kleikamp /*
159964769240SAlex Tomas  * Delayed allocation stuff
160064769240SAlex Tomas  */
160164769240SAlex Tomas 
16024e7ea81dSJan Kara struct mpage_da_data {
16034e7ea81dSJan Kara 	struct inode *inode;
16044e7ea81dSJan Kara 	struct writeback_control *wbc;
16056b523df4SJan Kara 
16064e7ea81dSJan Kara 	pgoff_t first_page;	/* The first page to write */
16074e7ea81dSJan Kara 	pgoff_t next_page;	/* Current page to examine */
16084e7ea81dSJan Kara 	pgoff_t last_page;	/* Last page to examine */
160964769240SAlex Tomas 	/*
16104e7ea81dSJan Kara 	 * Extent to map - this can be after first_page because that can be
16114e7ea81dSJan Kara 	 * fully mapped. We somewhat abuse m_flags to store whether the extent
16124e7ea81dSJan Kara 	 * is delalloc or unwritten.
161364769240SAlex Tomas 	 */
16144e7ea81dSJan Kara 	struct ext4_map_blocks map;
16154e7ea81dSJan Kara 	struct ext4_io_submit io_submit;	/* IO submission data */
16164e7ea81dSJan Kara };
161764769240SAlex Tomas 
16184e7ea81dSJan Kara static void mpage_release_unused_pages(struct mpage_da_data *mpd,
16194e7ea81dSJan Kara 				       bool invalidate)
1620c4a0c46eSAneesh Kumar K.V {
1621c4a0c46eSAneesh Kumar K.V 	int nr_pages, i;
1622c4a0c46eSAneesh Kumar K.V 	pgoff_t index, end;
1623c4a0c46eSAneesh Kumar K.V 	struct pagevec pvec;
1624c4a0c46eSAneesh Kumar K.V 	struct inode *inode = mpd->inode;
1625c4a0c46eSAneesh Kumar K.V 	struct address_space *mapping = inode->i_mapping;
16264e7ea81dSJan Kara 
16274e7ea81dSJan Kara 	/* This is necessary when next_page == 0. */
16284e7ea81dSJan Kara 	if (mpd->first_page >= mpd->next_page)
16294e7ea81dSJan Kara 		return;
1630c4a0c46eSAneesh Kumar K.V 
1631c7f5938aSCurt Wohlgemuth 	index = mpd->first_page;
1632c7f5938aSCurt Wohlgemuth 	end   = mpd->next_page - 1;
16334e7ea81dSJan Kara 	if (invalidate) {
16344e7ea81dSJan Kara 		ext4_lblk_t start, last;
163509cbfeafSKirill A. Shutemov 		start = index << (PAGE_SHIFT - inode->i_blkbits);
163609cbfeafSKirill A. Shutemov 		last = end << (PAGE_SHIFT - inode->i_blkbits);
163751865fdaSZheng Liu 		ext4_es_remove_extent(inode, start, last - start + 1);
16384e7ea81dSJan Kara 	}
163951865fdaSZheng Liu 
164066bea92cSEric Sandeen 	pagevec_init(&pvec, 0);
1641c4a0c46eSAneesh Kumar K.V 	while (index <= end) {
1642c4a0c46eSAneesh Kumar K.V 		nr_pages = pagevec_lookup(&pvec, mapping, index, PAGEVEC_SIZE);
1643c4a0c46eSAneesh Kumar K.V 		if (nr_pages == 0)
1644c4a0c46eSAneesh Kumar K.V 			break;
1645c4a0c46eSAneesh Kumar K.V 		for (i = 0; i < nr_pages; i++) {
1646c4a0c46eSAneesh Kumar K.V 			struct page *page = pvec.pages[i];
16479b1d0998SJan Kara 			if (page->index > end)
1648c4a0c46eSAneesh Kumar K.V 				break;
1649c4a0c46eSAneesh Kumar K.V 			BUG_ON(!PageLocked(page));
1650c4a0c46eSAneesh Kumar K.V 			BUG_ON(PageWriteback(page));
16514e7ea81dSJan Kara 			if (invalidate) {
165209cbfeafSKirill A. Shutemov 				block_invalidatepage(page, 0, PAGE_SIZE);
1653c4a0c46eSAneesh Kumar K.V 				ClearPageUptodate(page);
16544e7ea81dSJan Kara 			}
1655c4a0c46eSAneesh Kumar K.V 			unlock_page(page);
1656c4a0c46eSAneesh Kumar K.V 		}
16579b1d0998SJan Kara 		index = pvec.pages[nr_pages - 1]->index + 1;
16589b1d0998SJan Kara 		pagevec_release(&pvec);
1659c4a0c46eSAneesh Kumar K.V 	}
1660c4a0c46eSAneesh Kumar K.V }
1661c4a0c46eSAneesh Kumar K.V 
1662df22291fSAneesh Kumar K.V static void ext4_print_free_blocks(struct inode *inode)
1663df22291fSAneesh Kumar K.V {
1664df22291fSAneesh Kumar K.V 	struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb);
166592b97816STheodore Ts'o 	struct super_block *sb = inode->i_sb;
1666f78ee70dSLukas Czerner 	struct ext4_inode_info *ei = EXT4_I(inode);
166792b97816STheodore Ts'o 
166892b97816STheodore Ts'o 	ext4_msg(sb, KERN_CRIT, "Total free blocks count %lld",
16695dee5437STheodore Ts'o 	       EXT4_C2B(EXT4_SB(inode->i_sb),
1670f78ee70dSLukas Czerner 			ext4_count_free_clusters(sb)));
167192b97816STheodore Ts'o 	ext4_msg(sb, KERN_CRIT, "Free/Dirty block details");
167292b97816STheodore Ts'o 	ext4_msg(sb, KERN_CRIT, "free_blocks=%lld",
1673f78ee70dSLukas Czerner 	       (long long) EXT4_C2B(EXT4_SB(sb),
167457042651STheodore Ts'o 		percpu_counter_sum(&sbi->s_freeclusters_counter)));
167592b97816STheodore Ts'o 	ext4_msg(sb, KERN_CRIT, "dirty_blocks=%lld",
1676f78ee70dSLukas Czerner 	       (long long) EXT4_C2B(EXT4_SB(sb),
16777b415bf6SAditya Kali 		percpu_counter_sum(&sbi->s_dirtyclusters_counter)));
167892b97816STheodore Ts'o 	ext4_msg(sb, KERN_CRIT, "Block reservation details");
167992b97816STheodore Ts'o 	ext4_msg(sb, KERN_CRIT, "i_reserved_data_blocks=%u",
1680f78ee70dSLukas Czerner 		 ei->i_reserved_data_blocks);
1681df22291fSAneesh Kumar K.V 	return;
1682df22291fSAneesh Kumar K.V }
1683df22291fSAneesh Kumar K.V 
1684c364b22cSAneesh Kumar K.V static int ext4_bh_delay_or_unwritten(handle_t *handle, struct buffer_head *bh)
168529fa89d0SAneesh Kumar K.V {
1686c364b22cSAneesh Kumar K.V 	return (buffer_delay(bh) || buffer_unwritten(bh)) && buffer_dirty(bh);
168729fa89d0SAneesh Kumar K.V }
168829fa89d0SAneesh Kumar K.V 
168964769240SAlex Tomas /*
16905356f261SAditya Kali  * This function is grabs code from the very beginning of
16915356f261SAditya Kali  * ext4_map_blocks, but assumes that the caller is from delayed write
16925356f261SAditya Kali  * time. This function looks up the requested blocks and sets the
16935356f261SAditya Kali  * buffer delay bit under the protection of i_data_sem.
16945356f261SAditya Kali  */
16955356f261SAditya Kali static int ext4_da_map_blocks(struct inode *inode, sector_t iblock,
16965356f261SAditya Kali 			      struct ext4_map_blocks *map,
16975356f261SAditya Kali 			      struct buffer_head *bh)
16985356f261SAditya Kali {
1699d100eef2SZheng Liu 	struct extent_status es;
17005356f261SAditya Kali 	int retval;
17015356f261SAditya Kali 	sector_t invalid_block = ~((sector_t) 0xffff);
1702921f266bSDmitry Monakhov #ifdef ES_AGGRESSIVE_TEST
1703921f266bSDmitry Monakhov 	struct ext4_map_blocks orig_map;
1704921f266bSDmitry Monakhov 
1705921f266bSDmitry Monakhov 	memcpy(&orig_map, map, sizeof(*map));
1706921f266bSDmitry Monakhov #endif
17075356f261SAditya Kali 
17085356f261SAditya Kali 	if (invalid_block < ext4_blocks_count(EXT4_SB(inode->i_sb)->s_es))
17095356f261SAditya Kali 		invalid_block = ~0;
17105356f261SAditya Kali 
17115356f261SAditya Kali 	map->m_flags = 0;
17125356f261SAditya Kali 	ext_debug("ext4_da_map_blocks(): inode %lu, max_blocks %u,"
17135356f261SAditya Kali 		  "logical block %lu\n", inode->i_ino, map->m_len,
17145356f261SAditya Kali 		  (unsigned long) map->m_lblk);
1715d100eef2SZheng Liu 
1716d100eef2SZheng Liu 	/* Lookup extent status tree firstly */
1717d100eef2SZheng Liu 	if (ext4_es_lookup_extent(inode, iblock, &es)) {
1718d100eef2SZheng Liu 		if (ext4_es_is_hole(&es)) {
1719d100eef2SZheng Liu 			retval = 0;
1720c8b459f4SLukas Czerner 			down_read(&EXT4_I(inode)->i_data_sem);
1721d100eef2SZheng Liu 			goto add_delayed;
1722d100eef2SZheng Liu 		}
1723d100eef2SZheng Liu 
1724d100eef2SZheng Liu 		/*
1725d100eef2SZheng Liu 		 * Delayed extent could be allocated by fallocate.
1726d100eef2SZheng Liu 		 * So we need to check it.
1727d100eef2SZheng Liu 		 */
1728d100eef2SZheng Liu 		if (ext4_es_is_delayed(&es) && !ext4_es_is_unwritten(&es)) {
1729d100eef2SZheng Liu 			map_bh(bh, inode->i_sb, invalid_block);
1730d100eef2SZheng Liu 			set_buffer_new(bh);
1731d100eef2SZheng Liu 			set_buffer_delay(bh);
1732d100eef2SZheng Liu 			return 0;
1733d100eef2SZheng Liu 		}
1734d100eef2SZheng Liu 
1735d100eef2SZheng Liu 		map->m_pblk = ext4_es_pblock(&es) + iblock - es.es_lblk;
1736d100eef2SZheng Liu 		retval = es.es_len - (iblock - es.es_lblk);
1737d100eef2SZheng Liu 		if (retval > map->m_len)
1738d100eef2SZheng Liu 			retval = map->m_len;
1739d100eef2SZheng Liu 		map->m_len = retval;
1740d100eef2SZheng Liu 		if (ext4_es_is_written(&es))
1741d100eef2SZheng Liu 			map->m_flags |= EXT4_MAP_MAPPED;
1742d100eef2SZheng Liu 		else if (ext4_es_is_unwritten(&es))
1743d100eef2SZheng Liu 			map->m_flags |= EXT4_MAP_UNWRITTEN;
1744d100eef2SZheng Liu 		else
1745d100eef2SZheng Liu 			BUG_ON(1);
1746d100eef2SZheng Liu 
1747921f266bSDmitry Monakhov #ifdef ES_AGGRESSIVE_TEST
1748921f266bSDmitry Monakhov 		ext4_map_blocks_es_recheck(NULL, inode, map, &orig_map, 0);
1749921f266bSDmitry Monakhov #endif
1750d100eef2SZheng Liu 		return retval;
1751d100eef2SZheng Liu 	}
1752d100eef2SZheng Liu 
17535356f261SAditya Kali 	/*
17545356f261SAditya Kali 	 * Try to see if we can get the block without requesting a new
17555356f261SAditya Kali 	 * file system block.
17565356f261SAditya Kali 	 */
1757c8b459f4SLukas Czerner 	down_read(&EXT4_I(inode)->i_data_sem);
1758cbd7584eSJan Kara 	if (ext4_has_inline_data(inode))
17599c3569b5STao Ma 		retval = 0;
1760cbd7584eSJan Kara 	else if (ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS))
17612f8e0a7cSZheng Liu 		retval = ext4_ext_map_blocks(NULL, inode, map, 0);
17625356f261SAditya Kali 	else
17632f8e0a7cSZheng Liu 		retval = ext4_ind_map_blocks(NULL, inode, map, 0);
17645356f261SAditya Kali 
1765d100eef2SZheng Liu add_delayed:
17665356f261SAditya Kali 	if (retval == 0) {
1767f7fec032SZheng Liu 		int ret;
17685356f261SAditya Kali 		/*
17695356f261SAditya Kali 		 * XXX: __block_prepare_write() unmaps passed block,
17705356f261SAditya Kali 		 * is it OK?
17715356f261SAditya Kali 		 */
1772386ad67cSLukas Czerner 		/*
1773386ad67cSLukas Czerner 		 * If the block was allocated from previously allocated cluster,
1774386ad67cSLukas Czerner 		 * then we don't need to reserve it again. However we still need
1775386ad67cSLukas Czerner 		 * to reserve metadata for every block we're going to write.
1776386ad67cSLukas Czerner 		 */
1777c27e43a1SEric Whitney 		if (EXT4_SB(inode->i_sb)->s_cluster_ratio == 1 ||
1778cbd7584eSJan Kara 		    !ext4_find_delalloc_cluster(inode, map->m_lblk)) {
1779c27e43a1SEric Whitney 			ret = ext4_da_reserve_space(inode);
1780f7fec032SZheng Liu 			if (ret) {
17815356f261SAditya Kali 				/* not enough space to reserve */
1782f7fec032SZheng Liu 				retval = ret;
17835356f261SAditya Kali 				goto out_unlock;
17845356f261SAditya Kali 			}
1785f7fec032SZheng Liu 		}
17865356f261SAditya Kali 
1787f7fec032SZheng Liu 		ret = ext4_es_insert_extent(inode, map->m_lblk, map->m_len,
1788fdc0212eSZheng Liu 					    ~0, EXTENT_STATUS_DELAYED);
1789f7fec032SZheng Liu 		if (ret) {
1790f7fec032SZheng Liu 			retval = ret;
179151865fdaSZheng Liu 			goto out_unlock;
1792f7fec032SZheng Liu 		}
179351865fdaSZheng Liu 
17945356f261SAditya Kali 		map_bh(bh, inode->i_sb, invalid_block);
17955356f261SAditya Kali 		set_buffer_new(bh);
17965356f261SAditya Kali 		set_buffer_delay(bh);
1797f7fec032SZheng Liu 	} else if (retval > 0) {
1798f7fec032SZheng Liu 		int ret;
17993be78c73STheodore Ts'o 		unsigned int status;
1800f7fec032SZheng Liu 
180144fb851dSZheng Liu 		if (unlikely(retval != map->m_len)) {
180244fb851dSZheng Liu 			ext4_warning(inode->i_sb,
180344fb851dSZheng Liu 				     "ES len assertion failed for inode "
180444fb851dSZheng Liu 				     "%lu: retval %d != map->m_len %d",
180544fb851dSZheng Liu 				     inode->i_ino, retval, map->m_len);
180644fb851dSZheng Liu 			WARN_ON(1);
1807921f266bSDmitry Monakhov 		}
1808921f266bSDmitry Monakhov 
1809f7fec032SZheng Liu 		status = map->m_flags & EXT4_MAP_UNWRITTEN ?
1810f7fec032SZheng Liu 				EXTENT_STATUS_UNWRITTEN : EXTENT_STATUS_WRITTEN;
1811f7fec032SZheng Liu 		ret = ext4_es_insert_extent(inode, map->m_lblk, map->m_len,
1812f7fec032SZheng Liu 					    map->m_pblk, status);
1813f7fec032SZheng Liu 		if (ret != 0)
1814f7fec032SZheng Liu 			retval = ret;
18155356f261SAditya Kali 	}
18165356f261SAditya Kali 
18175356f261SAditya Kali out_unlock:
18185356f261SAditya Kali 	up_read((&EXT4_I(inode)->i_data_sem));
18195356f261SAditya Kali 
18205356f261SAditya Kali 	return retval;
18215356f261SAditya Kali }
18225356f261SAditya Kali 
18235356f261SAditya Kali /*
1824d91bd2c1SSeunghun Lee  * This is a special get_block_t callback which is used by
1825b920c755STheodore Ts'o  * ext4_da_write_begin().  It will either return mapped block or
1826b920c755STheodore Ts'o  * reserve space for a single block.
182729fa89d0SAneesh Kumar K.V  *
182829fa89d0SAneesh Kumar K.V  * For delayed buffer_head we have BH_Mapped, BH_New, BH_Delay set.
182929fa89d0SAneesh Kumar K.V  * We also have b_blocknr = -1 and b_bdev initialized properly
183029fa89d0SAneesh Kumar K.V  *
183129fa89d0SAneesh Kumar K.V  * For unwritten buffer_head we have BH_Mapped, BH_New, BH_Unwritten set.
183229fa89d0SAneesh Kumar K.V  * We also have b_blocknr = physicalblock mapping unwritten extent and b_bdev
183329fa89d0SAneesh Kumar K.V  * initialized properly.
183464769240SAlex Tomas  */
18359c3569b5STao Ma int ext4_da_get_block_prep(struct inode *inode, sector_t iblock,
18362ed88685STheodore Ts'o 			   struct buffer_head *bh, int create)
183764769240SAlex Tomas {
18382ed88685STheodore Ts'o 	struct ext4_map_blocks map;
183964769240SAlex Tomas 	int ret = 0;
184064769240SAlex Tomas 
184164769240SAlex Tomas 	BUG_ON(create == 0);
18422ed88685STheodore Ts'o 	BUG_ON(bh->b_size != inode->i_sb->s_blocksize);
18432ed88685STheodore Ts'o 
18442ed88685STheodore Ts'o 	map.m_lblk = iblock;
18452ed88685STheodore Ts'o 	map.m_len = 1;
184664769240SAlex Tomas 
184764769240SAlex Tomas 	/*
184864769240SAlex Tomas 	 * first, we need to know whether the block is allocated already
184964769240SAlex Tomas 	 * preallocated blocks are unmapped but should treated
185064769240SAlex Tomas 	 * the same as allocated blocks.
185164769240SAlex Tomas 	 */
18525356f261SAditya Kali 	ret = ext4_da_map_blocks(inode, iblock, &map, bh);
18535356f261SAditya Kali 	if (ret <= 0)
18542ed88685STheodore Ts'o 		return ret;
185564769240SAlex Tomas 
18562ed88685STheodore Ts'o 	map_bh(bh, inode->i_sb, map.m_pblk);
1857ed8ad838SJan Kara 	ext4_update_bh_state(bh, map.m_flags);
18582ed88685STheodore Ts'o 
18592ed88685STheodore Ts'o 	if (buffer_unwritten(bh)) {
18602ed88685STheodore Ts'o 		/* A delayed write to unwritten bh should be marked
18612ed88685STheodore Ts'o 		 * new and mapped.  Mapped ensures that we don't do
18622ed88685STheodore Ts'o 		 * get_block multiple times when we write to the same
18632ed88685STheodore Ts'o 		 * offset and new ensures that we do proper zero out
18642ed88685STheodore Ts'o 		 * for partial write.
18652ed88685STheodore Ts'o 		 */
18662ed88685STheodore Ts'o 		set_buffer_new(bh);
1867c8205636STheodore Ts'o 		set_buffer_mapped(bh);
18682ed88685STheodore Ts'o 	}
18692ed88685STheodore Ts'o 	return 0;
187064769240SAlex Tomas }
187161628a3fSMingming Cao 
187262e086beSAneesh Kumar K.V static int bget_one(handle_t *handle, struct buffer_head *bh)
187362e086beSAneesh Kumar K.V {
187462e086beSAneesh Kumar K.V 	get_bh(bh);
187562e086beSAneesh Kumar K.V 	return 0;
187662e086beSAneesh Kumar K.V }
187762e086beSAneesh Kumar K.V 
187862e086beSAneesh Kumar K.V static int bput_one(handle_t *handle, struct buffer_head *bh)
187962e086beSAneesh Kumar K.V {
188062e086beSAneesh Kumar K.V 	put_bh(bh);
188162e086beSAneesh Kumar K.V 	return 0;
188262e086beSAneesh Kumar K.V }
188362e086beSAneesh Kumar K.V 
188462e086beSAneesh Kumar K.V static int __ext4_journalled_writepage(struct page *page,
188562e086beSAneesh Kumar K.V 				       unsigned int len)
188662e086beSAneesh Kumar K.V {
188762e086beSAneesh Kumar K.V 	struct address_space *mapping = page->mapping;
188862e086beSAneesh Kumar K.V 	struct inode *inode = mapping->host;
18893fdcfb66STao Ma 	struct buffer_head *page_bufs = NULL;
189062e086beSAneesh Kumar K.V 	handle_t *handle = NULL;
18913fdcfb66STao Ma 	int ret = 0, err = 0;
18923fdcfb66STao Ma 	int inline_data = ext4_has_inline_data(inode);
18933fdcfb66STao Ma 	struct buffer_head *inode_bh = NULL;
189462e086beSAneesh Kumar K.V 
1895cb20d518STheodore Ts'o 	ClearPageChecked(page);
18963fdcfb66STao Ma 
18973fdcfb66STao Ma 	if (inline_data) {
18983fdcfb66STao Ma 		BUG_ON(page->index != 0);
18993fdcfb66STao Ma 		BUG_ON(len > ext4_get_max_inline_size(inode));
19003fdcfb66STao Ma 		inode_bh = ext4_journalled_write_inline_data(inode, len, page);
19013fdcfb66STao Ma 		if (inode_bh == NULL)
19023fdcfb66STao Ma 			goto out;
19033fdcfb66STao Ma 	} else {
190462e086beSAneesh Kumar K.V 		page_bufs = page_buffers(page);
19053fdcfb66STao Ma 		if (!page_bufs) {
19063fdcfb66STao Ma 			BUG();
19073fdcfb66STao Ma 			goto out;
19083fdcfb66STao Ma 		}
19093fdcfb66STao Ma 		ext4_walk_page_buffers(handle, page_bufs, 0, len,
19103fdcfb66STao Ma 				       NULL, bget_one);
19113fdcfb66STao Ma 	}
1912bdf96838STheodore Ts'o 	/*
1913bdf96838STheodore Ts'o 	 * We need to release the page lock before we start the
1914bdf96838STheodore Ts'o 	 * journal, so grab a reference so the page won't disappear
1915bdf96838STheodore Ts'o 	 * out from under us.
1916bdf96838STheodore Ts'o 	 */
1917bdf96838STheodore Ts'o 	get_page(page);
191862e086beSAneesh Kumar K.V 	unlock_page(page);
191962e086beSAneesh Kumar K.V 
19209924a92aSTheodore Ts'o 	handle = ext4_journal_start(inode, EXT4_HT_WRITE_PAGE,
19219924a92aSTheodore Ts'o 				    ext4_writepage_trans_blocks(inode));
192262e086beSAneesh Kumar K.V 	if (IS_ERR(handle)) {
192362e086beSAneesh Kumar K.V 		ret = PTR_ERR(handle);
1924bdf96838STheodore Ts'o 		put_page(page);
1925bdf96838STheodore Ts'o 		goto out_no_pagelock;
1926bdf96838STheodore Ts'o 	}
1927bdf96838STheodore Ts'o 	BUG_ON(!ext4_handle_valid(handle));
1928bdf96838STheodore Ts'o 
1929bdf96838STheodore Ts'o 	lock_page(page);
1930bdf96838STheodore Ts'o 	put_page(page);
1931bdf96838STheodore Ts'o 	if (page->mapping != mapping) {
1932bdf96838STheodore Ts'o 		/* The page got truncated from under us */
1933bdf96838STheodore Ts'o 		ext4_journal_stop(handle);
1934bdf96838STheodore Ts'o 		ret = 0;
193562e086beSAneesh Kumar K.V 		goto out;
193662e086beSAneesh Kumar K.V 	}
193762e086beSAneesh Kumar K.V 
19383fdcfb66STao Ma 	if (inline_data) {
19395d601255Sliang xie 		BUFFER_TRACE(inode_bh, "get write access");
19403fdcfb66STao Ma 		ret = ext4_journal_get_write_access(handle, inode_bh);
19413fdcfb66STao Ma 
19423fdcfb66STao Ma 		err = ext4_handle_dirty_metadata(handle, inode, inode_bh);
19433fdcfb66STao Ma 
19443fdcfb66STao Ma 	} else {
1945f19d5870STao Ma 		ret = ext4_walk_page_buffers(handle, page_bufs, 0, len, NULL,
194662e086beSAneesh Kumar K.V 					     do_journal_get_write_access);
194762e086beSAneesh Kumar K.V 
1948f19d5870STao Ma 		err = ext4_walk_page_buffers(handle, page_bufs, 0, len, NULL,
194962e086beSAneesh Kumar K.V 					     write_end_fn);
19503fdcfb66STao Ma 	}
195162e086beSAneesh Kumar K.V 	if (ret == 0)
195262e086beSAneesh Kumar K.V 		ret = err;
19532d859db3SJan Kara 	EXT4_I(inode)->i_datasync_tid = handle->h_transaction->t_tid;
195462e086beSAneesh Kumar K.V 	err = ext4_journal_stop(handle);
195562e086beSAneesh Kumar K.V 	if (!ret)
195662e086beSAneesh Kumar K.V 		ret = err;
195762e086beSAneesh Kumar K.V 
19583fdcfb66STao Ma 	if (!ext4_has_inline_data(inode))
19598c9367fdSTheodore Ts'o 		ext4_walk_page_buffers(NULL, page_bufs, 0, len,
19603fdcfb66STao Ma 				       NULL, bput_one);
196119f5fb7aSTheodore Ts'o 	ext4_set_inode_state(inode, EXT4_STATE_JDATA);
196262e086beSAneesh Kumar K.V out:
1963bdf96838STheodore Ts'o 	unlock_page(page);
1964bdf96838STheodore Ts'o out_no_pagelock:
19653fdcfb66STao Ma 	brelse(inode_bh);
196662e086beSAneesh Kumar K.V 	return ret;
196762e086beSAneesh Kumar K.V }
196862e086beSAneesh Kumar K.V 
196961628a3fSMingming Cao /*
197043ce1d23SAneesh Kumar K.V  * Note that we don't need to start a transaction unless we're journaling data
197143ce1d23SAneesh Kumar K.V  * because we should have holes filled from ext4_page_mkwrite(). We even don't
197243ce1d23SAneesh Kumar K.V  * need to file the inode to the transaction's list in ordered mode because if
197343ce1d23SAneesh Kumar K.V  * we are writing back data added by write(), the inode is already there and if
197443ce1d23SAneesh Kumar K.V  * we are writing back data modified via mmap(), no one guarantees in which
197543ce1d23SAneesh Kumar K.V  * transaction the data will hit the disk. In case we are journaling data, we
197643ce1d23SAneesh Kumar K.V  * cannot start transaction directly because transaction start ranks above page
197743ce1d23SAneesh Kumar K.V  * lock so we have to do some magic.
197843ce1d23SAneesh Kumar K.V  *
1979b920c755STheodore Ts'o  * This function can get called via...
198020970ba6STheodore Ts'o  *   - ext4_writepages after taking page lock (have journal handle)
1981b920c755STheodore Ts'o  *   - journal_submit_inode_data_buffers (no journal handle)
1982f6463b0dSArtem Bityutskiy  *   - shrink_page_list via the kswapd/direct reclaim (no journal handle)
1983b920c755STheodore Ts'o  *   - grab_page_cache when doing write_begin (have journal handle)
198443ce1d23SAneesh Kumar K.V  *
198543ce1d23SAneesh Kumar K.V  * We don't do any block allocation in this function. If we have page with
198643ce1d23SAneesh Kumar K.V  * multiple blocks we need to write those buffer_heads that are mapped. This
198743ce1d23SAneesh Kumar K.V  * is important for mmaped based write. So if we do with blocksize 1K
198843ce1d23SAneesh Kumar K.V  * truncate(f, 1024);
198943ce1d23SAneesh Kumar K.V  * a = mmap(f, 0, 4096);
199043ce1d23SAneesh Kumar K.V  * a[0] = 'a';
199143ce1d23SAneesh Kumar K.V  * truncate(f, 4096);
199243ce1d23SAneesh Kumar K.V  * we have in the page first buffer_head mapped via page_mkwrite call back
199390802ed9SPaul Bolle  * but other buffer_heads would be unmapped but dirty (dirty done via the
199443ce1d23SAneesh Kumar K.V  * do_wp_page). So writepage should write the first block. If we modify
199543ce1d23SAneesh Kumar K.V  * the mmap area beyond 1024 we will again get a page_fault and the
199643ce1d23SAneesh Kumar K.V  * page_mkwrite callback will do the block allocation and mark the
199743ce1d23SAneesh Kumar K.V  * buffer_heads mapped.
199843ce1d23SAneesh Kumar K.V  *
199943ce1d23SAneesh Kumar K.V  * We redirty the page if we have any buffer_heads that is either delay or
200043ce1d23SAneesh Kumar K.V  * unwritten in the page.
200143ce1d23SAneesh Kumar K.V  *
200243ce1d23SAneesh Kumar K.V  * We can get recursively called as show below.
200343ce1d23SAneesh Kumar K.V  *
200443ce1d23SAneesh Kumar K.V  *	ext4_writepage() -> kmalloc() -> __alloc_pages() -> page_launder() ->
200543ce1d23SAneesh Kumar K.V  *		ext4_writepage()
200643ce1d23SAneesh Kumar K.V  *
200743ce1d23SAneesh Kumar K.V  * But since we don't do any block allocation we should not deadlock.
200843ce1d23SAneesh Kumar K.V  * Page also have the dirty flag cleared so we don't get recurive page_lock.
200961628a3fSMingming Cao  */
201043ce1d23SAneesh Kumar K.V static int ext4_writepage(struct page *page,
201164769240SAlex Tomas 			  struct writeback_control *wbc)
201264769240SAlex Tomas {
2013f8bec370SJan Kara 	int ret = 0;
201461628a3fSMingming Cao 	loff_t size;
2015498e5f24STheodore Ts'o 	unsigned int len;
2016744692dcSJiaying Zhang 	struct buffer_head *page_bufs = NULL;
201761628a3fSMingming Cao 	struct inode *inode = page->mapping->host;
201836ade451SJan Kara 	struct ext4_io_submit io_submit;
20191c8349a1SNamjae Jeon 	bool keep_towrite = false;
202064769240SAlex Tomas 
2021a9c667f8SLukas Czerner 	trace_ext4_writepage(page);
202261628a3fSMingming Cao 	size = i_size_read(inode);
202309cbfeafSKirill A. Shutemov 	if (page->index == size >> PAGE_SHIFT)
202409cbfeafSKirill A. Shutemov 		len = size & ~PAGE_MASK;
202561628a3fSMingming Cao 	else
202609cbfeafSKirill A. Shutemov 		len = PAGE_SIZE;
202761628a3fSMingming Cao 
2028f0e6c985SAneesh Kumar K.V 	page_bufs = page_buffers(page);
202964769240SAlex Tomas 	/*
2030fe386132SJan Kara 	 * We cannot do block allocation or other extent handling in this
2031fe386132SJan Kara 	 * function. If there are buffers needing that, we have to redirty
2032fe386132SJan Kara 	 * the page. But we may reach here when we do a journal commit via
2033fe386132SJan Kara 	 * journal_submit_inode_data_buffers() and in that case we must write
2034fe386132SJan Kara 	 * allocated buffers to achieve data=ordered mode guarantees.
2035cccd147aSTheodore Ts'o 	 *
2036cccd147aSTheodore Ts'o 	 * Also, if there is only one buffer per page (the fs block
2037cccd147aSTheodore Ts'o 	 * size == the page size), if one buffer needs block
2038cccd147aSTheodore Ts'o 	 * allocation or needs to modify the extent tree to clear the
2039cccd147aSTheodore Ts'o 	 * unwritten flag, we know that the page can't be written at
2040cccd147aSTheodore Ts'o 	 * all, so we might as well refuse the write immediately.
2041cccd147aSTheodore Ts'o 	 * Unfortunately if the block size != page size, we can't as
2042cccd147aSTheodore Ts'o 	 * easily detect this case using ext4_walk_page_buffers(), but
2043cccd147aSTheodore Ts'o 	 * for the extremely common case, this is an optimization that
2044cccd147aSTheodore Ts'o 	 * skips a useless round trip through ext4_bio_write_page().
204564769240SAlex Tomas 	 */
2046f19d5870STao Ma 	if (ext4_walk_page_buffers(NULL, page_bufs, 0, len, NULL,
2047c364b22cSAneesh Kumar K.V 				   ext4_bh_delay_or_unwritten)) {
204861628a3fSMingming Cao 		redirty_page_for_writepage(wbc, page);
2049cccd147aSTheodore Ts'o 		if ((current->flags & PF_MEMALLOC) ||
205009cbfeafSKirill A. Shutemov 		    (inode->i_sb->s_blocksize == PAGE_SIZE)) {
2051fe386132SJan Kara 			/*
2052fe386132SJan Kara 			 * For memory cleaning there's no point in writing only
2053fe386132SJan Kara 			 * some buffers. So just bail out. Warn if we came here
2054fe386132SJan Kara 			 * from direct reclaim.
2055fe386132SJan Kara 			 */
2056fe386132SJan Kara 			WARN_ON_ONCE((current->flags & (PF_MEMALLOC|PF_KSWAPD))
2057fe386132SJan Kara 							== PF_MEMALLOC);
205861628a3fSMingming Cao 			unlock_page(page);
205961628a3fSMingming Cao 			return 0;
206061628a3fSMingming Cao 		}
20611c8349a1SNamjae Jeon 		keep_towrite = true;
2062f0e6c985SAneesh Kumar K.V 	}
206364769240SAlex Tomas 
2064cb20d518STheodore Ts'o 	if (PageChecked(page) && ext4_should_journal_data(inode))
206543ce1d23SAneesh Kumar K.V 		/*
206643ce1d23SAneesh Kumar K.V 		 * It's mmapped pagecache.  Add buffers and journal it.  There
206743ce1d23SAneesh Kumar K.V 		 * doesn't seem much point in redirtying the page here.
206843ce1d23SAneesh Kumar K.V 		 */
20693f0ca309SWu Fengguang 		return __ext4_journalled_writepage(page, len);
207043ce1d23SAneesh Kumar K.V 
207197a851edSJan Kara 	ext4_io_submit_init(&io_submit, wbc);
207297a851edSJan Kara 	io_submit.io_end = ext4_init_io_end(inode, GFP_NOFS);
207397a851edSJan Kara 	if (!io_submit.io_end) {
207497a851edSJan Kara 		redirty_page_for_writepage(wbc, page);
207597a851edSJan Kara 		unlock_page(page);
207697a851edSJan Kara 		return -ENOMEM;
207797a851edSJan Kara 	}
20781c8349a1SNamjae Jeon 	ret = ext4_bio_write_page(&io_submit, page, len, wbc, keep_towrite);
207936ade451SJan Kara 	ext4_io_submit(&io_submit);
208097a851edSJan Kara 	/* Drop io_end reference we got from init */
208197a851edSJan Kara 	ext4_put_io_end_defer(io_submit.io_end);
208264769240SAlex Tomas 	return ret;
208364769240SAlex Tomas }
208464769240SAlex Tomas 
20855f1132b2SJan Kara static int mpage_submit_page(struct mpage_da_data *mpd, struct page *page)
20865f1132b2SJan Kara {
20875f1132b2SJan Kara 	int len;
20885f1132b2SJan Kara 	loff_t size = i_size_read(mpd->inode);
20895f1132b2SJan Kara 	int err;
20905f1132b2SJan Kara 
20915f1132b2SJan Kara 	BUG_ON(page->index != mpd->first_page);
209209cbfeafSKirill A. Shutemov 	if (page->index == size >> PAGE_SHIFT)
209309cbfeafSKirill A. Shutemov 		len = size & ~PAGE_MASK;
20945f1132b2SJan Kara 	else
209509cbfeafSKirill A. Shutemov 		len = PAGE_SIZE;
20965f1132b2SJan Kara 	clear_page_dirty_for_io(page);
20971c8349a1SNamjae Jeon 	err = ext4_bio_write_page(&mpd->io_submit, page, len, mpd->wbc, false);
20985f1132b2SJan Kara 	if (!err)
20995f1132b2SJan Kara 		mpd->wbc->nr_to_write--;
21005f1132b2SJan Kara 	mpd->first_page++;
21015f1132b2SJan Kara 
21025f1132b2SJan Kara 	return err;
21035f1132b2SJan Kara }
21045f1132b2SJan Kara 
21054e7ea81dSJan Kara #define BH_FLAGS ((1 << BH_Unwritten) | (1 << BH_Delay))
21064e7ea81dSJan Kara 
210761628a3fSMingming Cao /*
2108fffb2739SJan Kara  * mballoc gives us at most this number of blocks...
2109fffb2739SJan Kara  * XXX: That seems to be only a limitation of ext4_mb_normalize_request().
2110fffb2739SJan Kara  * The rest of mballoc seems to handle chunks up to full group size.
211161628a3fSMingming Cao  */
2112fffb2739SJan Kara #define MAX_WRITEPAGES_EXTENT_LEN 2048
2113525f4ed8SMingming Cao 
2114525f4ed8SMingming Cao /*
21154e7ea81dSJan Kara  * mpage_add_bh_to_extent - try to add bh to extent of blocks to map
21164e7ea81dSJan Kara  *
21174e7ea81dSJan Kara  * @mpd - extent of blocks
21184e7ea81dSJan Kara  * @lblk - logical number of the block in the file
211909930042SJan Kara  * @bh - buffer head we want to add to the extent
21204e7ea81dSJan Kara  *
212109930042SJan Kara  * The function is used to collect contig. blocks in the same state. If the
212209930042SJan Kara  * buffer doesn't require mapping for writeback and we haven't started the
212309930042SJan Kara  * extent of buffers to map yet, the function returns 'true' immediately - the
212409930042SJan Kara  * caller can write the buffer right away. Otherwise the function returns true
212509930042SJan Kara  * if the block has been added to the extent, false if the block couldn't be
212609930042SJan Kara  * added.
21274e7ea81dSJan Kara  */
212809930042SJan Kara static bool mpage_add_bh_to_extent(struct mpage_da_data *mpd, ext4_lblk_t lblk,
212909930042SJan Kara 				   struct buffer_head *bh)
21304e7ea81dSJan Kara {
21314e7ea81dSJan Kara 	struct ext4_map_blocks *map = &mpd->map;
21324e7ea81dSJan Kara 
213309930042SJan Kara 	/* Buffer that doesn't need mapping for writeback? */
213409930042SJan Kara 	if (!buffer_dirty(bh) || !buffer_mapped(bh) ||
213509930042SJan Kara 	    (!buffer_delay(bh) && !buffer_unwritten(bh))) {
213609930042SJan Kara 		/* So far no extent to map => we write the buffer right away */
213709930042SJan Kara 		if (map->m_len == 0)
213809930042SJan Kara 			return true;
213909930042SJan Kara 		return false;
214009930042SJan Kara 	}
21414e7ea81dSJan Kara 
21424e7ea81dSJan Kara 	/* First block in the extent? */
21434e7ea81dSJan Kara 	if (map->m_len == 0) {
21444e7ea81dSJan Kara 		map->m_lblk = lblk;
21454e7ea81dSJan Kara 		map->m_len = 1;
214609930042SJan Kara 		map->m_flags = bh->b_state & BH_FLAGS;
214709930042SJan Kara 		return true;
21484e7ea81dSJan Kara 	}
21494e7ea81dSJan Kara 
215009930042SJan Kara 	/* Don't go larger than mballoc is willing to allocate */
215109930042SJan Kara 	if (map->m_len >= MAX_WRITEPAGES_EXTENT_LEN)
215209930042SJan Kara 		return false;
215309930042SJan Kara 
21544e7ea81dSJan Kara 	/* Can we merge the block to our big extent? */
21554e7ea81dSJan Kara 	if (lblk == map->m_lblk + map->m_len &&
215609930042SJan Kara 	    (bh->b_state & BH_FLAGS) == map->m_flags) {
21574e7ea81dSJan Kara 		map->m_len++;
215809930042SJan Kara 		return true;
21594e7ea81dSJan Kara 	}
216009930042SJan Kara 	return false;
21614e7ea81dSJan Kara }
21624e7ea81dSJan Kara 
21635f1132b2SJan Kara /*
21645f1132b2SJan Kara  * mpage_process_page_bufs - submit page buffers for IO or add them to extent
21655f1132b2SJan Kara  *
21665f1132b2SJan Kara  * @mpd - extent of blocks for mapping
21675f1132b2SJan Kara  * @head - the first buffer in the page
21685f1132b2SJan Kara  * @bh - buffer we should start processing from
21695f1132b2SJan Kara  * @lblk - logical number of the block in the file corresponding to @bh
21705f1132b2SJan Kara  *
21715f1132b2SJan Kara  * Walk through page buffers from @bh upto @head (exclusive) and either submit
21725f1132b2SJan Kara  * the page for IO if all buffers in this page were mapped and there's no
21735f1132b2SJan Kara  * accumulated extent of buffers to map or add buffers in the page to the
21745f1132b2SJan Kara  * extent of buffers to map. The function returns 1 if the caller can continue
21755f1132b2SJan Kara  * by processing the next page, 0 if it should stop adding buffers to the
21765f1132b2SJan Kara  * extent to map because we cannot extend it anymore. It can also return value
21775f1132b2SJan Kara  * < 0 in case of error during IO submission.
21785f1132b2SJan Kara  */
21795f1132b2SJan Kara static int mpage_process_page_bufs(struct mpage_da_data *mpd,
21804e7ea81dSJan Kara 				   struct buffer_head *head,
21814e7ea81dSJan Kara 				   struct buffer_head *bh,
21824e7ea81dSJan Kara 				   ext4_lblk_t lblk)
21834e7ea81dSJan Kara {
21844e7ea81dSJan Kara 	struct inode *inode = mpd->inode;
21855f1132b2SJan Kara 	int err;
21864e7ea81dSJan Kara 	ext4_lblk_t blocks = (i_size_read(inode) + (1 << inode->i_blkbits) - 1)
21874e7ea81dSJan Kara 							>> inode->i_blkbits;
21884e7ea81dSJan Kara 
21894e7ea81dSJan Kara 	do {
21904e7ea81dSJan Kara 		BUG_ON(buffer_locked(bh));
21914e7ea81dSJan Kara 
219209930042SJan Kara 		if (lblk >= blocks || !mpage_add_bh_to_extent(mpd, lblk, bh)) {
21934e7ea81dSJan Kara 			/* Found extent to map? */
21944e7ea81dSJan Kara 			if (mpd->map.m_len)
21955f1132b2SJan Kara 				return 0;
219609930042SJan Kara 			/* Everything mapped so far and we hit EOF */
21975f1132b2SJan Kara 			break;
21984e7ea81dSJan Kara 		}
21994e7ea81dSJan Kara 	} while (lblk++, (bh = bh->b_this_page) != head);
22005f1132b2SJan Kara 	/* So far everything mapped? Submit the page for IO. */
22015f1132b2SJan Kara 	if (mpd->map.m_len == 0) {
22025f1132b2SJan Kara 		err = mpage_submit_page(mpd, head->b_page);
22035f1132b2SJan Kara 		if (err < 0)
22044e7ea81dSJan Kara 			return err;
22054e7ea81dSJan Kara 	}
22065f1132b2SJan Kara 	return lblk < blocks;
22075f1132b2SJan Kara }
22084e7ea81dSJan Kara 
22094e7ea81dSJan Kara /*
22104e7ea81dSJan Kara  * mpage_map_buffers - update buffers corresponding to changed extent and
22114e7ea81dSJan Kara  *		       submit fully mapped pages for IO
22124e7ea81dSJan Kara  *
22134e7ea81dSJan Kara  * @mpd - description of extent to map, on return next extent to map
22144e7ea81dSJan Kara  *
22154e7ea81dSJan Kara  * Scan buffers corresponding to changed extent (we expect corresponding pages
22164e7ea81dSJan Kara  * to be already locked) and update buffer state according to new extent state.
22174e7ea81dSJan Kara  * We map delalloc buffers to their physical location, clear unwritten bits,
2218556615dcSLukas Czerner  * and mark buffers as uninit when we perform writes to unwritten extents
22194e7ea81dSJan Kara  * and do extent conversion after IO is finished. If the last page is not fully
22204e7ea81dSJan Kara  * mapped, we update @map to the next extent in the last page that needs
22214e7ea81dSJan Kara  * mapping. Otherwise we submit the page for IO.
22224e7ea81dSJan Kara  */
22234e7ea81dSJan Kara static int mpage_map_and_submit_buffers(struct mpage_da_data *mpd)
22244e7ea81dSJan Kara {
22254e7ea81dSJan Kara 	struct pagevec pvec;
22264e7ea81dSJan Kara 	int nr_pages, i;
22274e7ea81dSJan Kara 	struct inode *inode = mpd->inode;
22284e7ea81dSJan Kara 	struct buffer_head *head, *bh;
222909cbfeafSKirill A. Shutemov 	int bpp_bits = PAGE_SHIFT - inode->i_blkbits;
22304e7ea81dSJan Kara 	pgoff_t start, end;
22314e7ea81dSJan Kara 	ext4_lblk_t lblk;
22324e7ea81dSJan Kara 	sector_t pblock;
22334e7ea81dSJan Kara 	int err;
22344e7ea81dSJan Kara 
22354e7ea81dSJan Kara 	start = mpd->map.m_lblk >> bpp_bits;
22364e7ea81dSJan Kara 	end = (mpd->map.m_lblk + mpd->map.m_len - 1) >> bpp_bits;
22374e7ea81dSJan Kara 	lblk = start << bpp_bits;
22384e7ea81dSJan Kara 	pblock = mpd->map.m_pblk;
22394e7ea81dSJan Kara 
22404e7ea81dSJan Kara 	pagevec_init(&pvec, 0);
22414e7ea81dSJan Kara 	while (start <= end) {
22424e7ea81dSJan Kara 		nr_pages = pagevec_lookup(&pvec, inode->i_mapping, start,
22434e7ea81dSJan Kara 					  PAGEVEC_SIZE);
22444e7ea81dSJan Kara 		if (nr_pages == 0)
22454e7ea81dSJan Kara 			break;
22464e7ea81dSJan Kara 		for (i = 0; i < nr_pages; i++) {
22474e7ea81dSJan Kara 			struct page *page = pvec.pages[i];
22484e7ea81dSJan Kara 
22494e7ea81dSJan Kara 			if (page->index > end)
22504e7ea81dSJan Kara 				break;
22514e7ea81dSJan Kara 			/* Up to 'end' pages must be contiguous */
22524e7ea81dSJan Kara 			BUG_ON(page->index != start);
22534e7ea81dSJan Kara 			bh = head = page_buffers(page);
22544e7ea81dSJan Kara 			do {
22554e7ea81dSJan Kara 				if (lblk < mpd->map.m_lblk)
22564e7ea81dSJan Kara 					continue;
22574e7ea81dSJan Kara 				if (lblk >= mpd->map.m_lblk + mpd->map.m_len) {
22584e7ea81dSJan Kara 					/*
22594e7ea81dSJan Kara 					 * Buffer after end of mapped extent.
22604e7ea81dSJan Kara 					 * Find next buffer in the page to map.
22614e7ea81dSJan Kara 					 */
22624e7ea81dSJan Kara 					mpd->map.m_len = 0;
22634e7ea81dSJan Kara 					mpd->map.m_flags = 0;
22645f1132b2SJan Kara 					/*
22655f1132b2SJan Kara 					 * FIXME: If dioread_nolock supports
22665f1132b2SJan Kara 					 * blocksize < pagesize, we need to make
22675f1132b2SJan Kara 					 * sure we add size mapped so far to
22685f1132b2SJan Kara 					 * io_end->size as the following call
22695f1132b2SJan Kara 					 * can submit the page for IO.
22705f1132b2SJan Kara 					 */
22715f1132b2SJan Kara 					err = mpage_process_page_bufs(mpd, head,
22725f1132b2SJan Kara 								      bh, lblk);
22734e7ea81dSJan Kara 					pagevec_release(&pvec);
22745f1132b2SJan Kara 					if (err > 0)
22755f1132b2SJan Kara 						err = 0;
22765f1132b2SJan Kara 					return err;
22774e7ea81dSJan Kara 				}
22784e7ea81dSJan Kara 				if (buffer_delay(bh)) {
22794e7ea81dSJan Kara 					clear_buffer_delay(bh);
22804e7ea81dSJan Kara 					bh->b_blocknr = pblock++;
22814e7ea81dSJan Kara 				}
22824e7ea81dSJan Kara 				clear_buffer_unwritten(bh);
22835f1132b2SJan Kara 			} while (lblk++, (bh = bh->b_this_page) != head);
22844e7ea81dSJan Kara 
22854e7ea81dSJan Kara 			/*
22864e7ea81dSJan Kara 			 * FIXME: This is going to break if dioread_nolock
22874e7ea81dSJan Kara 			 * supports blocksize < pagesize as we will try to
22884e7ea81dSJan Kara 			 * convert potentially unmapped parts of inode.
22894e7ea81dSJan Kara 			 */
229009cbfeafSKirill A. Shutemov 			mpd->io_submit.io_end->size += PAGE_SIZE;
22914e7ea81dSJan Kara 			/* Page fully mapped - let IO run! */
22924e7ea81dSJan Kara 			err = mpage_submit_page(mpd, page);
22934e7ea81dSJan Kara 			if (err < 0) {
22944e7ea81dSJan Kara 				pagevec_release(&pvec);
22954e7ea81dSJan Kara 				return err;
22964e7ea81dSJan Kara 			}
22974e7ea81dSJan Kara 			start++;
22984e7ea81dSJan Kara 		}
22994e7ea81dSJan Kara 		pagevec_release(&pvec);
23004e7ea81dSJan Kara 	}
23014e7ea81dSJan Kara 	/* Extent fully mapped and matches with page boundary. We are done. */
23024e7ea81dSJan Kara 	mpd->map.m_len = 0;
23034e7ea81dSJan Kara 	mpd->map.m_flags = 0;
23044e7ea81dSJan Kara 	return 0;
23054e7ea81dSJan Kara }
23064e7ea81dSJan Kara 
23074e7ea81dSJan Kara static int mpage_map_one_extent(handle_t *handle, struct mpage_da_data *mpd)
23084e7ea81dSJan Kara {
23094e7ea81dSJan Kara 	struct inode *inode = mpd->inode;
23104e7ea81dSJan Kara 	struct ext4_map_blocks *map = &mpd->map;
23114e7ea81dSJan Kara 	int get_blocks_flags;
2312090f32eeSLukas Czerner 	int err, dioread_nolock;
23134e7ea81dSJan Kara 
23144e7ea81dSJan Kara 	trace_ext4_da_write_pages_extent(inode, map);
23154e7ea81dSJan Kara 	/*
23164e7ea81dSJan Kara 	 * Call ext4_map_blocks() to allocate any delayed allocation blocks, or
2317556615dcSLukas Czerner 	 * to convert an unwritten extent to be initialized (in the case
23184e7ea81dSJan Kara 	 * where we have written into one or more preallocated blocks).  It is
23194e7ea81dSJan Kara 	 * possible that we're going to need more metadata blocks than
23204e7ea81dSJan Kara 	 * previously reserved. However we must not fail because we're in
23214e7ea81dSJan Kara 	 * writeback and there is nothing we can do about it so it might result
23224e7ea81dSJan Kara 	 * in data loss.  So use reserved blocks to allocate metadata if
23234e7ea81dSJan Kara 	 * possible.
23244e7ea81dSJan Kara 	 *
2325754cfed6STheodore Ts'o 	 * We pass in the magic EXT4_GET_BLOCKS_DELALLOC_RESERVE if
2326754cfed6STheodore Ts'o 	 * the blocks in question are delalloc blocks.  This indicates
2327754cfed6STheodore Ts'o 	 * that the blocks and quotas has already been checked when
2328754cfed6STheodore Ts'o 	 * the data was copied into the page cache.
23294e7ea81dSJan Kara 	 */
23304e7ea81dSJan Kara 	get_blocks_flags = EXT4_GET_BLOCKS_CREATE |
2331ee0876bcSJan Kara 			   EXT4_GET_BLOCKS_METADATA_NOFAIL |
2332ee0876bcSJan Kara 			   EXT4_GET_BLOCKS_IO_SUBMIT;
2333090f32eeSLukas Czerner 	dioread_nolock = ext4_should_dioread_nolock(inode);
2334090f32eeSLukas Czerner 	if (dioread_nolock)
23354e7ea81dSJan Kara 		get_blocks_flags |= EXT4_GET_BLOCKS_IO_CREATE_EXT;
23364e7ea81dSJan Kara 	if (map->m_flags & (1 << BH_Delay))
23374e7ea81dSJan Kara 		get_blocks_flags |= EXT4_GET_BLOCKS_DELALLOC_RESERVE;
23384e7ea81dSJan Kara 
23394e7ea81dSJan Kara 	err = ext4_map_blocks(handle, inode, map, get_blocks_flags);
23404e7ea81dSJan Kara 	if (err < 0)
23414e7ea81dSJan Kara 		return err;
2342090f32eeSLukas Czerner 	if (dioread_nolock && (map->m_flags & EXT4_MAP_UNWRITTEN)) {
23436b523df4SJan Kara 		if (!mpd->io_submit.io_end->handle &&
23446b523df4SJan Kara 		    ext4_handle_valid(handle)) {
23456b523df4SJan Kara 			mpd->io_submit.io_end->handle = handle->h_rsv_handle;
23466b523df4SJan Kara 			handle->h_rsv_handle = NULL;
23476b523df4SJan Kara 		}
23483613d228SJan Kara 		ext4_set_io_unwritten_flag(inode, mpd->io_submit.io_end);
23496b523df4SJan Kara 	}
23504e7ea81dSJan Kara 
23514e7ea81dSJan Kara 	BUG_ON(map->m_len == 0);
23524e7ea81dSJan Kara 	if (map->m_flags & EXT4_MAP_NEW) {
23534e7ea81dSJan Kara 		struct block_device *bdev = inode->i_sb->s_bdev;
23544e7ea81dSJan Kara 		int i;
23554e7ea81dSJan Kara 
23564e7ea81dSJan Kara 		for (i = 0; i < map->m_len; i++)
23574e7ea81dSJan Kara 			unmap_underlying_metadata(bdev, map->m_pblk + i);
23584e7ea81dSJan Kara 	}
23594e7ea81dSJan Kara 	return 0;
23604e7ea81dSJan Kara }
23614e7ea81dSJan Kara 
23624e7ea81dSJan Kara /*
23634e7ea81dSJan Kara  * mpage_map_and_submit_extent - map extent starting at mpd->lblk of length
23644e7ea81dSJan Kara  *				 mpd->len and submit pages underlying it for IO
23654e7ea81dSJan Kara  *
23664e7ea81dSJan Kara  * @handle - handle for journal operations
23674e7ea81dSJan Kara  * @mpd - extent to map
23687534e854SJan Kara  * @give_up_on_write - we set this to true iff there is a fatal error and there
23697534e854SJan Kara  *                     is no hope of writing the data. The caller should discard
23707534e854SJan Kara  *                     dirty pages to avoid infinite loops.
23714e7ea81dSJan Kara  *
23724e7ea81dSJan Kara  * The function maps extent starting at mpd->lblk of length mpd->len. If it is
23734e7ea81dSJan Kara  * delayed, blocks are allocated, if it is unwritten, we may need to convert
23744e7ea81dSJan Kara  * them to initialized or split the described range from larger unwritten
23754e7ea81dSJan Kara  * extent. Note that we need not map all the described range since allocation
23764e7ea81dSJan Kara  * can return less blocks or the range is covered by more unwritten extents. We
23774e7ea81dSJan Kara  * cannot map more because we are limited by reserved transaction credits. On
23784e7ea81dSJan Kara  * the other hand we always make sure that the last touched page is fully
23794e7ea81dSJan Kara  * mapped so that it can be written out (and thus forward progress is
23804e7ea81dSJan Kara  * guaranteed). After mapping we submit all mapped pages for IO.
23814e7ea81dSJan Kara  */
23824e7ea81dSJan Kara static int mpage_map_and_submit_extent(handle_t *handle,
2383cb530541STheodore Ts'o 				       struct mpage_da_data *mpd,
2384cb530541STheodore Ts'o 				       bool *give_up_on_write)
23854e7ea81dSJan Kara {
23864e7ea81dSJan Kara 	struct inode *inode = mpd->inode;
23874e7ea81dSJan Kara 	struct ext4_map_blocks *map = &mpd->map;
23884e7ea81dSJan Kara 	int err;
23894e7ea81dSJan Kara 	loff_t disksize;
23906603120eSDmitry Monakhov 	int progress = 0;
23914e7ea81dSJan Kara 
23924e7ea81dSJan Kara 	mpd->io_submit.io_end->offset =
23934e7ea81dSJan Kara 				((loff_t)map->m_lblk) << inode->i_blkbits;
239427d7c4edSJan Kara 	do {
23954e7ea81dSJan Kara 		err = mpage_map_one_extent(handle, mpd);
23964e7ea81dSJan Kara 		if (err < 0) {
23974e7ea81dSJan Kara 			struct super_block *sb = inode->i_sb;
23984e7ea81dSJan Kara 
2399cb530541STheodore Ts'o 			if (EXT4_SB(sb)->s_mount_flags & EXT4_MF_FS_ABORTED)
2400cb530541STheodore Ts'o 				goto invalidate_dirty_pages;
24014e7ea81dSJan Kara 			/*
2402cb530541STheodore Ts'o 			 * Let the uper layers retry transient errors.
2403cb530541STheodore Ts'o 			 * In the case of ENOSPC, if ext4_count_free_blocks()
2404cb530541STheodore Ts'o 			 * is non-zero, a commit should free up blocks.
24054e7ea81dSJan Kara 			 */
2406cb530541STheodore Ts'o 			if ((err == -ENOMEM) ||
24076603120eSDmitry Monakhov 			    (err == -ENOSPC && ext4_count_free_clusters(sb))) {
24086603120eSDmitry Monakhov 				if (progress)
24096603120eSDmitry Monakhov 					goto update_disksize;
2410cb530541STheodore Ts'o 				return err;
24116603120eSDmitry Monakhov 			}
24124e7ea81dSJan Kara 			ext4_msg(sb, KERN_CRIT,
24134e7ea81dSJan Kara 				 "Delayed block allocation failed for "
24144e7ea81dSJan Kara 				 "inode %lu at logical offset %llu with"
24154e7ea81dSJan Kara 				 " max blocks %u with error %d",
24164e7ea81dSJan Kara 				 inode->i_ino,
24174e7ea81dSJan Kara 				 (unsigned long long)map->m_lblk,
2418cb530541STheodore Ts'o 				 (unsigned)map->m_len, -err);
24194e7ea81dSJan Kara 			ext4_msg(sb, KERN_CRIT,
24204e7ea81dSJan Kara 				 "This should not happen!! Data will "
24214e7ea81dSJan Kara 				 "be lost\n");
24224e7ea81dSJan Kara 			if (err == -ENOSPC)
24234e7ea81dSJan Kara 				ext4_print_free_blocks(inode);
2424cb530541STheodore Ts'o 		invalidate_dirty_pages:
2425cb530541STheodore Ts'o 			*give_up_on_write = true;
24264e7ea81dSJan Kara 			return err;
24274e7ea81dSJan Kara 		}
24286603120eSDmitry Monakhov 		progress = 1;
24294e7ea81dSJan Kara 		/*
24304e7ea81dSJan Kara 		 * Update buffer state, submit mapped pages, and get us new
24314e7ea81dSJan Kara 		 * extent to map
24324e7ea81dSJan Kara 		 */
24334e7ea81dSJan Kara 		err = mpage_map_and_submit_buffers(mpd);
24344e7ea81dSJan Kara 		if (err < 0)
24356603120eSDmitry Monakhov 			goto update_disksize;
243627d7c4edSJan Kara 	} while (map->m_len);
24374e7ea81dSJan Kara 
24386603120eSDmitry Monakhov update_disksize:
2439622cad13STheodore Ts'o 	/*
2440622cad13STheodore Ts'o 	 * Update on-disk size after IO is submitted.  Races with
2441622cad13STheodore Ts'o 	 * truncate are avoided by checking i_size under i_data_sem.
2442622cad13STheodore Ts'o 	 */
244309cbfeafSKirill A. Shutemov 	disksize = ((loff_t)mpd->first_page) << PAGE_SHIFT;
24444e7ea81dSJan Kara 	if (disksize > EXT4_I(inode)->i_disksize) {
24454e7ea81dSJan Kara 		int err2;
2446622cad13STheodore Ts'o 		loff_t i_size;
24474e7ea81dSJan Kara 
2448622cad13STheodore Ts'o 		down_write(&EXT4_I(inode)->i_data_sem);
2449622cad13STheodore Ts'o 		i_size = i_size_read(inode);
2450622cad13STheodore Ts'o 		if (disksize > i_size)
2451622cad13STheodore Ts'o 			disksize = i_size;
2452622cad13STheodore Ts'o 		if (disksize > EXT4_I(inode)->i_disksize)
2453622cad13STheodore Ts'o 			EXT4_I(inode)->i_disksize = disksize;
24544e7ea81dSJan Kara 		err2 = ext4_mark_inode_dirty(handle, inode);
2455622cad13STheodore Ts'o 		up_write(&EXT4_I(inode)->i_data_sem);
24564e7ea81dSJan Kara 		if (err2)
24574e7ea81dSJan Kara 			ext4_error(inode->i_sb,
24584e7ea81dSJan Kara 				   "Failed to mark inode %lu dirty",
24594e7ea81dSJan Kara 				   inode->i_ino);
24604e7ea81dSJan Kara 		if (!err)
24614e7ea81dSJan Kara 			err = err2;
24624e7ea81dSJan Kara 	}
24634e7ea81dSJan Kara 	return err;
24644e7ea81dSJan Kara }
24654e7ea81dSJan Kara 
24664e7ea81dSJan Kara /*
2467fffb2739SJan Kara  * Calculate the total number of credits to reserve for one writepages
246820970ba6STheodore Ts'o  * iteration. This is called from ext4_writepages(). We map an extent of
2469fffb2739SJan Kara  * up to MAX_WRITEPAGES_EXTENT_LEN blocks and then we go on and finish mapping
2470fffb2739SJan Kara  * the last partial page. So in total we can map MAX_WRITEPAGES_EXTENT_LEN +
2471fffb2739SJan Kara  * bpp - 1 blocks in bpp different extents.
2472525f4ed8SMingming Cao  */
2473fffb2739SJan Kara static int ext4_da_writepages_trans_blocks(struct inode *inode)
2474fffb2739SJan Kara {
2475fffb2739SJan Kara 	int bpp = ext4_journal_blocks_per_page(inode);
2476525f4ed8SMingming Cao 
2477fffb2739SJan Kara 	return ext4_meta_trans_blocks(inode,
2478fffb2739SJan Kara 				MAX_WRITEPAGES_EXTENT_LEN + bpp - 1, bpp);
2479525f4ed8SMingming Cao }
248061628a3fSMingming Cao 
24818e48dcfbSTheodore Ts'o /*
24824e7ea81dSJan Kara  * mpage_prepare_extent_to_map - find & lock contiguous range of dirty pages
24834e7ea81dSJan Kara  * 				 and underlying extent to map
24844e7ea81dSJan Kara  *
24854e7ea81dSJan Kara  * @mpd - where to look for pages
24864e7ea81dSJan Kara  *
24874e7ea81dSJan Kara  * Walk dirty pages in the mapping. If they are fully mapped, submit them for
24884e7ea81dSJan Kara  * IO immediately. When we find a page which isn't mapped we start accumulating
24894e7ea81dSJan Kara  * extent of buffers underlying these pages that needs mapping (formed by
24904e7ea81dSJan Kara  * either delayed or unwritten buffers). We also lock the pages containing
24914e7ea81dSJan Kara  * these buffers. The extent found is returned in @mpd structure (starting at
24924e7ea81dSJan Kara  * mpd->lblk with length mpd->len blocks).
24934e7ea81dSJan Kara  *
24944e7ea81dSJan Kara  * Note that this function can attach bios to one io_end structure which are
24954e7ea81dSJan Kara  * neither logically nor physically contiguous. Although it may seem as an
24964e7ea81dSJan Kara  * unnecessary complication, it is actually inevitable in blocksize < pagesize
24974e7ea81dSJan Kara  * case as we need to track IO to all buffers underlying a page in one io_end.
24988e48dcfbSTheodore Ts'o  */
24994e7ea81dSJan Kara static int mpage_prepare_extent_to_map(struct mpage_da_data *mpd)
25008e48dcfbSTheodore Ts'o {
25014e7ea81dSJan Kara 	struct address_space *mapping = mpd->inode->i_mapping;
25028e48dcfbSTheodore Ts'o 	struct pagevec pvec;
25034f01b02cSTheodore Ts'o 	unsigned int nr_pages;
2504aeac589aSMing Lei 	long left = mpd->wbc->nr_to_write;
25054e7ea81dSJan Kara 	pgoff_t index = mpd->first_page;
25064e7ea81dSJan Kara 	pgoff_t end = mpd->last_page;
25074e7ea81dSJan Kara 	int tag;
25084e7ea81dSJan Kara 	int i, err = 0;
25094e7ea81dSJan Kara 	int blkbits = mpd->inode->i_blkbits;
25104e7ea81dSJan Kara 	ext4_lblk_t lblk;
25114e7ea81dSJan Kara 	struct buffer_head *head;
25128e48dcfbSTheodore Ts'o 
25134e7ea81dSJan Kara 	if (mpd->wbc->sync_mode == WB_SYNC_ALL || mpd->wbc->tagged_writepages)
25145b41d924SEric Sandeen 		tag = PAGECACHE_TAG_TOWRITE;
25155b41d924SEric Sandeen 	else
25165b41d924SEric Sandeen 		tag = PAGECACHE_TAG_DIRTY;
25175b41d924SEric Sandeen 
25184e7ea81dSJan Kara 	pagevec_init(&pvec, 0);
25194e7ea81dSJan Kara 	mpd->map.m_len = 0;
25204e7ea81dSJan Kara 	mpd->next_page = index;
25214f01b02cSTheodore Ts'o 	while (index <= end) {
25225b41d924SEric Sandeen 		nr_pages = pagevec_lookup_tag(&pvec, mapping, &index, tag,
25238e48dcfbSTheodore Ts'o 			      min(end - index, (pgoff_t)PAGEVEC_SIZE-1) + 1);
25248e48dcfbSTheodore Ts'o 		if (nr_pages == 0)
25254e7ea81dSJan Kara 			goto out;
25268e48dcfbSTheodore Ts'o 
25278e48dcfbSTheodore Ts'o 		for (i = 0; i < nr_pages; i++) {
25288e48dcfbSTheodore Ts'o 			struct page *page = pvec.pages[i];
25298e48dcfbSTheodore Ts'o 
25308e48dcfbSTheodore Ts'o 			/*
25318e48dcfbSTheodore Ts'o 			 * At this point, the page may be truncated or
25328e48dcfbSTheodore Ts'o 			 * invalidated (changing page->mapping to NULL), or
25338e48dcfbSTheodore Ts'o 			 * even swizzled back from swapper_space to tmpfs file
25348e48dcfbSTheodore Ts'o 			 * mapping. However, page->index will not change
25358e48dcfbSTheodore Ts'o 			 * because we have a reference on the page.
25368e48dcfbSTheodore Ts'o 			 */
25374f01b02cSTheodore Ts'o 			if (page->index > end)
25384f01b02cSTheodore Ts'o 				goto out;
25398e48dcfbSTheodore Ts'o 
2540aeac589aSMing Lei 			/*
2541aeac589aSMing Lei 			 * Accumulated enough dirty pages? This doesn't apply
2542aeac589aSMing Lei 			 * to WB_SYNC_ALL mode. For integrity sync we have to
2543aeac589aSMing Lei 			 * keep going because someone may be concurrently
2544aeac589aSMing Lei 			 * dirtying pages, and we might have synced a lot of
2545aeac589aSMing Lei 			 * newly appeared dirty pages, but have not synced all
2546aeac589aSMing Lei 			 * of the old dirty pages.
2547aeac589aSMing Lei 			 */
2548aeac589aSMing Lei 			if (mpd->wbc->sync_mode == WB_SYNC_NONE && left <= 0)
2549aeac589aSMing Lei 				goto out;
2550aeac589aSMing Lei 
25514e7ea81dSJan Kara 			/* If we can't merge this page, we are done. */
25524e7ea81dSJan Kara 			if (mpd->map.m_len > 0 && mpd->next_page != page->index)
25534e7ea81dSJan Kara 				goto out;
255478aaced3STheodore Ts'o 
25558e48dcfbSTheodore Ts'o 			lock_page(page);
25568e48dcfbSTheodore Ts'o 			/*
25574e7ea81dSJan Kara 			 * If the page is no longer dirty, or its mapping no
25584e7ea81dSJan Kara 			 * longer corresponds to inode we are writing (which
25594e7ea81dSJan Kara 			 * means it has been truncated or invalidated), or the
25604e7ea81dSJan Kara 			 * page is already under writeback and we are not doing
25614e7ea81dSJan Kara 			 * a data integrity writeback, skip the page
25628e48dcfbSTheodore Ts'o 			 */
25634f01b02cSTheodore Ts'o 			if (!PageDirty(page) ||
25644f01b02cSTheodore Ts'o 			    (PageWriteback(page) &&
25654e7ea81dSJan Kara 			     (mpd->wbc->sync_mode == WB_SYNC_NONE)) ||
25664f01b02cSTheodore Ts'o 			    unlikely(page->mapping != mapping)) {
25678e48dcfbSTheodore Ts'o 				unlock_page(page);
25688e48dcfbSTheodore Ts'o 				continue;
25698e48dcfbSTheodore Ts'o 			}
25708e48dcfbSTheodore Ts'o 
25718e48dcfbSTheodore Ts'o 			wait_on_page_writeback(page);
25728e48dcfbSTheodore Ts'o 			BUG_ON(PageWriteback(page));
25738e48dcfbSTheodore Ts'o 
25744e7ea81dSJan Kara 			if (mpd->map.m_len == 0)
25758eb9e5ceSTheodore Ts'o 				mpd->first_page = page->index;
25768eb9e5ceSTheodore Ts'o 			mpd->next_page = page->index + 1;
2577f8bec370SJan Kara 			/* Add all dirty buffers to mpd */
25784e7ea81dSJan Kara 			lblk = ((ext4_lblk_t)page->index) <<
257909cbfeafSKirill A. Shutemov 				(PAGE_SHIFT - blkbits);
25808eb9e5ceSTheodore Ts'o 			head = page_buffers(page);
25815f1132b2SJan Kara 			err = mpage_process_page_bufs(mpd, head, head, lblk);
25825f1132b2SJan Kara 			if (err <= 0)
25834e7ea81dSJan Kara 				goto out;
25845f1132b2SJan Kara 			err = 0;
2585aeac589aSMing Lei 			left--;
25868e48dcfbSTheodore Ts'o 		}
25878e48dcfbSTheodore Ts'o 		pagevec_release(&pvec);
25888e48dcfbSTheodore Ts'o 		cond_resched();
25898e48dcfbSTheodore Ts'o 	}
25904f01b02cSTheodore Ts'o 	return 0;
25918eb9e5ceSTheodore Ts'o out:
25928eb9e5ceSTheodore Ts'o 	pagevec_release(&pvec);
25934e7ea81dSJan Kara 	return err;
25948e48dcfbSTheodore Ts'o }
25958e48dcfbSTheodore Ts'o 
259620970ba6STheodore Ts'o static int __writepage(struct page *page, struct writeback_control *wbc,
259720970ba6STheodore Ts'o 		       void *data)
259820970ba6STheodore Ts'o {
259920970ba6STheodore Ts'o 	struct address_space *mapping = data;
260020970ba6STheodore Ts'o 	int ret = ext4_writepage(page, wbc);
260120970ba6STheodore Ts'o 	mapping_set_error(mapping, ret);
260220970ba6STheodore Ts'o 	return ret;
260320970ba6STheodore Ts'o }
260420970ba6STheodore Ts'o 
260520970ba6STheodore Ts'o static int ext4_writepages(struct address_space *mapping,
260664769240SAlex Tomas 			   struct writeback_control *wbc)
260764769240SAlex Tomas {
26084e7ea81dSJan Kara 	pgoff_t	writeback_index = 0;
26094e7ea81dSJan Kara 	long nr_to_write = wbc->nr_to_write;
261022208dedSAneesh Kumar K.V 	int range_whole = 0;
26114e7ea81dSJan Kara 	int cycled = 1;
261261628a3fSMingming Cao 	handle_t *handle = NULL;
2613df22291fSAneesh Kumar K.V 	struct mpage_da_data mpd;
26145e745b04SAneesh Kumar K.V 	struct inode *inode = mapping->host;
26156b523df4SJan Kara 	int needed_blocks, rsv_blocks = 0, ret = 0;
26165e745b04SAneesh Kumar K.V 	struct ext4_sb_info *sbi = EXT4_SB(mapping->host->i_sb);
26174e7ea81dSJan Kara 	bool done;
26181bce63d1SShaohua Li 	struct blk_plug plug;
2619cb530541STheodore Ts'o 	bool give_up_on_write = false;
262061628a3fSMingming Cao 
2621c8585c6fSDaeho Jeong 	percpu_down_read(&sbi->s_journal_flag_rwsem);
262220970ba6STheodore Ts'o 	trace_ext4_writepages(inode, wbc);
2623ba80b101STheodore Ts'o 
2624c8585c6fSDaeho Jeong 	if (dax_mapping(mapping)) {
2625c8585c6fSDaeho Jeong 		ret = dax_writeback_mapping_range(mapping, inode->i_sb->s_bdev,
26267f6d5b52SRoss Zwisler 						  wbc);
2627c8585c6fSDaeho Jeong 		goto out_writepages;
2628c8585c6fSDaeho Jeong 	}
26297f6d5b52SRoss Zwisler 
263061628a3fSMingming Cao 	/*
263161628a3fSMingming Cao 	 * No pages to write? This is mainly a kludge to avoid starting
263261628a3fSMingming Cao 	 * a transaction for special inodes like journal inode on last iput()
263361628a3fSMingming Cao 	 * because that could violate lock ordering on umount
263461628a3fSMingming Cao 	 */
2635a1d6cc56SAneesh Kumar K.V 	if (!mapping->nrpages || !mapping_tagged(mapping, PAGECACHE_TAG_DIRTY))
2636bbf023c7SMing Lei 		goto out_writepages;
26372a21e37eSTheodore Ts'o 
263820970ba6STheodore Ts'o 	if (ext4_should_journal_data(inode)) {
263920970ba6STheodore Ts'o 		struct blk_plug plug;
264020970ba6STheodore Ts'o 
264120970ba6STheodore Ts'o 		blk_start_plug(&plug);
264220970ba6STheodore Ts'o 		ret = write_cache_pages(mapping, wbc, __writepage, mapping);
264320970ba6STheodore Ts'o 		blk_finish_plug(&plug);
2644bbf023c7SMing Lei 		goto out_writepages;
264520970ba6STheodore Ts'o 	}
264620970ba6STheodore Ts'o 
26472a21e37eSTheodore Ts'o 	/*
26482a21e37eSTheodore Ts'o 	 * If the filesystem has aborted, it is read-only, so return
26492a21e37eSTheodore Ts'o 	 * right away instead of dumping stack traces later on that
26502a21e37eSTheodore Ts'o 	 * will obscure the real source of the problem.  We test
26514ab2f15bSTheodore Ts'o 	 * EXT4_MF_FS_ABORTED instead of sb->s_flag's MS_RDONLY because
26522a21e37eSTheodore Ts'o 	 * the latter could be true if the filesystem is mounted
265320970ba6STheodore Ts'o 	 * read-only, and in that case, ext4_writepages should
26542a21e37eSTheodore Ts'o 	 * *never* be called, so if that ever happens, we would want
26552a21e37eSTheodore Ts'o 	 * the stack trace.
26562a21e37eSTheodore Ts'o 	 */
2657bbf023c7SMing Lei 	if (unlikely(sbi->s_mount_flags & EXT4_MF_FS_ABORTED)) {
2658bbf023c7SMing Lei 		ret = -EROFS;
2659bbf023c7SMing Lei 		goto out_writepages;
2660bbf023c7SMing Lei 	}
26612a21e37eSTheodore Ts'o 
26626b523df4SJan Kara 	if (ext4_should_dioread_nolock(inode)) {
26636b523df4SJan Kara 		/*
26646b523df4SJan Kara 		 * We may need to convert up to one extent per block in
26656b523df4SJan Kara 		 * the page and we may dirty the inode.
26666b523df4SJan Kara 		 */
266709cbfeafSKirill A. Shutemov 		rsv_blocks = 1 + (PAGE_SIZE >> inode->i_blkbits);
26686b523df4SJan Kara 	}
26696b523df4SJan Kara 
26704e7ea81dSJan Kara 	/*
26714e7ea81dSJan Kara 	 * If we have inline data and arrive here, it means that
26724e7ea81dSJan Kara 	 * we will soon create the block for the 1st page, so
26734e7ea81dSJan Kara 	 * we'd better clear the inline data here.
26744e7ea81dSJan Kara 	 */
26754e7ea81dSJan Kara 	if (ext4_has_inline_data(inode)) {
26764e7ea81dSJan Kara 		/* Just inode will be modified... */
26774e7ea81dSJan Kara 		handle = ext4_journal_start(inode, EXT4_HT_INODE, 1);
26784e7ea81dSJan Kara 		if (IS_ERR(handle)) {
26794e7ea81dSJan Kara 			ret = PTR_ERR(handle);
26804e7ea81dSJan Kara 			goto out_writepages;
26814e7ea81dSJan Kara 		}
26824e7ea81dSJan Kara 		BUG_ON(ext4_test_inode_state(inode,
26834e7ea81dSJan Kara 				EXT4_STATE_MAY_INLINE_DATA));
26844e7ea81dSJan Kara 		ext4_destroy_inline_data(handle, inode);
26854e7ea81dSJan Kara 		ext4_journal_stop(handle);
26864e7ea81dSJan Kara 	}
26874e7ea81dSJan Kara 
268822208dedSAneesh Kumar K.V 	if (wbc->range_start == 0 && wbc->range_end == LLONG_MAX)
268922208dedSAneesh Kumar K.V 		range_whole = 1;
269061628a3fSMingming Cao 
26912acf2c26SAneesh Kumar K.V 	if (wbc->range_cyclic) {
26924e7ea81dSJan Kara 		writeback_index = mapping->writeback_index;
26934e7ea81dSJan Kara 		if (writeback_index)
26942acf2c26SAneesh Kumar K.V 			cycled = 0;
26954e7ea81dSJan Kara 		mpd.first_page = writeback_index;
26964e7ea81dSJan Kara 		mpd.last_page = -1;
26975b41d924SEric Sandeen 	} else {
269809cbfeafSKirill A. Shutemov 		mpd.first_page = wbc->range_start >> PAGE_SHIFT;
269909cbfeafSKirill A. Shutemov 		mpd.last_page = wbc->range_end >> PAGE_SHIFT;
27005b41d924SEric Sandeen 	}
2701a1d6cc56SAneesh Kumar K.V 
27024e7ea81dSJan Kara 	mpd.inode = inode;
27034e7ea81dSJan Kara 	mpd.wbc = wbc;
27044e7ea81dSJan Kara 	ext4_io_submit_init(&mpd.io_submit, wbc);
27052acf2c26SAneesh Kumar K.V retry:
27066e6938b6SWu Fengguang 	if (wbc->sync_mode == WB_SYNC_ALL || wbc->tagged_writepages)
27074e7ea81dSJan Kara 		tag_pages_for_writeback(mapping, mpd.first_page, mpd.last_page);
27084e7ea81dSJan Kara 	done = false;
27091bce63d1SShaohua Li 	blk_start_plug(&plug);
27104e7ea81dSJan Kara 	while (!done && mpd.first_page <= mpd.last_page) {
27114e7ea81dSJan Kara 		/* For each extent of pages we use new io_end */
27124e7ea81dSJan Kara 		mpd.io_submit.io_end = ext4_init_io_end(inode, GFP_KERNEL);
27134e7ea81dSJan Kara 		if (!mpd.io_submit.io_end) {
27144e7ea81dSJan Kara 			ret = -ENOMEM;
27154e7ea81dSJan Kara 			break;
27164e7ea81dSJan Kara 		}
2717a1d6cc56SAneesh Kumar K.V 
2718a1d6cc56SAneesh Kumar K.V 		/*
27194e7ea81dSJan Kara 		 * We have two constraints: We find one extent to map and we
27204e7ea81dSJan Kara 		 * must always write out whole page (makes a difference when
27214e7ea81dSJan Kara 		 * blocksize < pagesize) so that we don't block on IO when we
27224e7ea81dSJan Kara 		 * try to write out the rest of the page. Journalled mode is
27234e7ea81dSJan Kara 		 * not supported by delalloc.
2724a1d6cc56SAneesh Kumar K.V 		 */
2725a1d6cc56SAneesh Kumar K.V 		BUG_ON(ext4_should_journal_data(inode));
2726525f4ed8SMingming Cao 		needed_blocks = ext4_da_writepages_trans_blocks(inode);
2727a1d6cc56SAneesh Kumar K.V 
272861628a3fSMingming Cao 		/* start a new transaction */
27296b523df4SJan Kara 		handle = ext4_journal_start_with_reserve(inode,
27306b523df4SJan Kara 				EXT4_HT_WRITE_PAGE, needed_blocks, rsv_blocks);
273161628a3fSMingming Cao 		if (IS_ERR(handle)) {
273261628a3fSMingming Cao 			ret = PTR_ERR(handle);
27331693918eSTheodore Ts'o 			ext4_msg(inode->i_sb, KERN_CRIT, "%s: jbd2_start: "
2734fbe845ddSCurt Wohlgemuth 			       "%ld pages, ino %lu; err %d", __func__,
2735a1d6cc56SAneesh Kumar K.V 				wbc->nr_to_write, inode->i_ino, ret);
27364e7ea81dSJan Kara 			/* Release allocated io_end */
27374e7ea81dSJan Kara 			ext4_put_io_end(mpd.io_submit.io_end);
27384e7ea81dSJan Kara 			break;
273961628a3fSMingming Cao 		}
2740f63e6005STheodore Ts'o 
27414e7ea81dSJan Kara 		trace_ext4_da_write_pages(inode, mpd.first_page, mpd.wbc);
27424e7ea81dSJan Kara 		ret = mpage_prepare_extent_to_map(&mpd);
27434e7ea81dSJan Kara 		if (!ret) {
27444e7ea81dSJan Kara 			if (mpd.map.m_len)
2745cb530541STheodore Ts'o 				ret = mpage_map_and_submit_extent(handle, &mpd,
2746cb530541STheodore Ts'o 					&give_up_on_write);
27474e7ea81dSJan Kara 			else {
2748f63e6005STheodore Ts'o 				/*
27494e7ea81dSJan Kara 				 * We scanned the whole range (or exhausted
27504e7ea81dSJan Kara 				 * nr_to_write), submitted what was mapped and
27514e7ea81dSJan Kara 				 * didn't find anything needing mapping. We are
27524e7ea81dSJan Kara 				 * done.
2753f63e6005STheodore Ts'o 				 */
27544e7ea81dSJan Kara 				done = true;
2755f63e6005STheodore Ts'o 			}
27564e7ea81dSJan Kara 		}
2757*646caa9cSJan Kara 		/*
2758*646caa9cSJan Kara 		 * Caution: If the handle is synchronous,
2759*646caa9cSJan Kara 		 * ext4_journal_stop() can wait for transaction commit
2760*646caa9cSJan Kara 		 * to finish which may depend on writeback of pages to
2761*646caa9cSJan Kara 		 * complete or on page lock to be released.  In that
2762*646caa9cSJan Kara 		 * case, we have to wait until after after we have
2763*646caa9cSJan Kara 		 * submitted all the IO, released page locks we hold,
2764*646caa9cSJan Kara 		 * and dropped io_end reference (for extent conversion
2765*646caa9cSJan Kara 		 * to be able to complete) before stopping the handle.
2766*646caa9cSJan Kara 		 */
2767*646caa9cSJan Kara 		if (!ext4_handle_valid(handle) || handle->h_sync == 0) {
276861628a3fSMingming Cao 			ext4_journal_stop(handle);
2769*646caa9cSJan Kara 			handle = NULL;
2770*646caa9cSJan Kara 		}
27714e7ea81dSJan Kara 		/* Submit prepared bio */
27724e7ea81dSJan Kara 		ext4_io_submit(&mpd.io_submit);
27734e7ea81dSJan Kara 		/* Unlock pages we didn't use */
2774cb530541STheodore Ts'o 		mpage_release_unused_pages(&mpd, give_up_on_write);
2775*646caa9cSJan Kara 		/*
2776*646caa9cSJan Kara 		 * Drop our io_end reference we got from init. We have
2777*646caa9cSJan Kara 		 * to be careful and use deferred io_end finishing if
2778*646caa9cSJan Kara 		 * we are still holding the transaction as we can
2779*646caa9cSJan Kara 		 * release the last reference to io_end which may end
2780*646caa9cSJan Kara 		 * up doing unwritten extent conversion.
2781*646caa9cSJan Kara 		 */
2782*646caa9cSJan Kara 		if (handle) {
2783*646caa9cSJan Kara 			ext4_put_io_end_defer(mpd.io_submit.io_end);
2784*646caa9cSJan Kara 			ext4_journal_stop(handle);
2785*646caa9cSJan Kara 		} else
27864e7ea81dSJan Kara 			ext4_put_io_end(mpd.io_submit.io_end);
2787df22291fSAneesh Kumar K.V 
27884e7ea81dSJan Kara 		if (ret == -ENOSPC && sbi->s_journal) {
27894e7ea81dSJan Kara 			/*
27904e7ea81dSJan Kara 			 * Commit the transaction which would
279122208dedSAneesh Kumar K.V 			 * free blocks released in the transaction
279222208dedSAneesh Kumar K.V 			 * and try again
279322208dedSAneesh Kumar K.V 			 */
2794df22291fSAneesh Kumar K.V 			jbd2_journal_force_commit_nested(sbi->s_journal);
279522208dedSAneesh Kumar K.V 			ret = 0;
27964e7ea81dSJan Kara 			continue;
27974e7ea81dSJan Kara 		}
27984e7ea81dSJan Kara 		/* Fatal error - ENOMEM, EIO... */
27994e7ea81dSJan Kara 		if (ret)
280061628a3fSMingming Cao 			break;
280161628a3fSMingming Cao 	}
28021bce63d1SShaohua Li 	blk_finish_plug(&plug);
28039c12a831SJan Kara 	if (!ret && !cycled && wbc->nr_to_write > 0) {
28042acf2c26SAneesh Kumar K.V 		cycled = 1;
28054e7ea81dSJan Kara 		mpd.last_page = writeback_index - 1;
28064e7ea81dSJan Kara 		mpd.first_page = 0;
28072acf2c26SAneesh Kumar K.V 		goto retry;
28082acf2c26SAneesh Kumar K.V 	}
280961628a3fSMingming Cao 
281022208dedSAneesh Kumar K.V 	/* Update index */
281122208dedSAneesh Kumar K.V 	if (wbc->range_cyclic || (range_whole && wbc->nr_to_write > 0))
281222208dedSAneesh Kumar K.V 		/*
28134e7ea81dSJan Kara 		 * Set the writeback_index so that range_cyclic
281422208dedSAneesh Kumar K.V 		 * mode will write it back later
281522208dedSAneesh Kumar K.V 		 */
28164e7ea81dSJan Kara 		mapping->writeback_index = mpd.first_page;
2817a1d6cc56SAneesh Kumar K.V 
281861628a3fSMingming Cao out_writepages:
281920970ba6STheodore Ts'o 	trace_ext4_writepages_result(inode, wbc, ret,
28204e7ea81dSJan Kara 				     nr_to_write - wbc->nr_to_write);
2821c8585c6fSDaeho Jeong 	percpu_up_read(&sbi->s_journal_flag_rwsem);
282261628a3fSMingming Cao 	return ret;
282364769240SAlex Tomas }
282464769240SAlex Tomas 
282579f0be8dSAneesh Kumar K.V static int ext4_nonda_switch(struct super_block *sb)
282679f0be8dSAneesh Kumar K.V {
28275c1ff336SEric Whitney 	s64 free_clusters, dirty_clusters;
282879f0be8dSAneesh Kumar K.V 	struct ext4_sb_info *sbi = EXT4_SB(sb);
282979f0be8dSAneesh Kumar K.V 
283079f0be8dSAneesh Kumar K.V 	/*
283179f0be8dSAneesh Kumar K.V 	 * switch to non delalloc mode if we are running low
283279f0be8dSAneesh Kumar K.V 	 * on free block. The free block accounting via percpu
2833179f7ebfSEric Dumazet 	 * counters can get slightly wrong with percpu_counter_batch getting
283479f0be8dSAneesh Kumar K.V 	 * accumulated on each CPU without updating global counters
283579f0be8dSAneesh Kumar K.V 	 * Delalloc need an accurate free block accounting. So switch
283679f0be8dSAneesh Kumar K.V 	 * to non delalloc when we are near to error range.
283779f0be8dSAneesh Kumar K.V 	 */
28385c1ff336SEric Whitney 	free_clusters =
28395c1ff336SEric Whitney 		percpu_counter_read_positive(&sbi->s_freeclusters_counter);
28405c1ff336SEric Whitney 	dirty_clusters =
28415c1ff336SEric Whitney 		percpu_counter_read_positive(&sbi->s_dirtyclusters_counter);
284200d4e736STheodore Ts'o 	/*
284300d4e736STheodore Ts'o 	 * Start pushing delalloc when 1/2 of free blocks are dirty.
284400d4e736STheodore Ts'o 	 */
28455c1ff336SEric Whitney 	if (dirty_clusters && (free_clusters < 2 * dirty_clusters))
284610ee27a0SMiao Xie 		try_to_writeback_inodes_sb(sb, WB_REASON_FS_FREE_SPACE);
284700d4e736STheodore Ts'o 
28485c1ff336SEric Whitney 	if (2 * free_clusters < 3 * dirty_clusters ||
28495c1ff336SEric Whitney 	    free_clusters < (dirty_clusters + EXT4_FREECLUSTERS_WATERMARK)) {
285079f0be8dSAneesh Kumar K.V 		/*
2851c8afb446SEric Sandeen 		 * free block count is less than 150% of dirty blocks
2852c8afb446SEric Sandeen 		 * or free blocks is less than watermark
285379f0be8dSAneesh Kumar K.V 		 */
285479f0be8dSAneesh Kumar K.V 		return 1;
285579f0be8dSAneesh Kumar K.V 	}
285679f0be8dSAneesh Kumar K.V 	return 0;
285779f0be8dSAneesh Kumar K.V }
285879f0be8dSAneesh Kumar K.V 
28590ff8947fSEric Sandeen /* We always reserve for an inode update; the superblock could be there too */
28600ff8947fSEric Sandeen static int ext4_da_write_credits(struct inode *inode, loff_t pos, unsigned len)
28610ff8947fSEric Sandeen {
2862e2b911c5SDarrick J. Wong 	if (likely(ext4_has_feature_large_file(inode->i_sb)))
28630ff8947fSEric Sandeen 		return 1;
28640ff8947fSEric Sandeen 
28650ff8947fSEric Sandeen 	if (pos + len <= 0x7fffffffULL)
28660ff8947fSEric Sandeen 		return 1;
28670ff8947fSEric Sandeen 
28680ff8947fSEric Sandeen 	/* We might need to update the superblock to set LARGE_FILE */
28690ff8947fSEric Sandeen 	return 2;
28700ff8947fSEric Sandeen }
28710ff8947fSEric Sandeen 
287264769240SAlex Tomas static int ext4_da_write_begin(struct file *file, struct address_space *mapping,
287364769240SAlex Tomas 			       loff_t pos, unsigned len, unsigned flags,
287464769240SAlex Tomas 			       struct page **pagep, void **fsdata)
287564769240SAlex Tomas {
287672b8ab9dSEric Sandeen 	int ret, retries = 0;
287764769240SAlex Tomas 	struct page *page;
287864769240SAlex Tomas 	pgoff_t index;
287964769240SAlex Tomas 	struct inode *inode = mapping->host;
288064769240SAlex Tomas 	handle_t *handle;
288164769240SAlex Tomas 
288209cbfeafSKirill A. Shutemov 	index = pos >> PAGE_SHIFT;
288379f0be8dSAneesh Kumar K.V 
288479f0be8dSAneesh Kumar K.V 	if (ext4_nonda_switch(inode->i_sb)) {
288579f0be8dSAneesh Kumar K.V 		*fsdata = (void *)FALL_BACK_TO_NONDELALLOC;
288679f0be8dSAneesh Kumar K.V 		return ext4_write_begin(file, mapping, pos,
288779f0be8dSAneesh Kumar K.V 					len, flags, pagep, fsdata);
288879f0be8dSAneesh Kumar K.V 	}
288979f0be8dSAneesh Kumar K.V 	*fsdata = (void *)0;
28909bffad1eSTheodore Ts'o 	trace_ext4_da_write_begin(inode, pos, len, flags);
28919c3569b5STao Ma 
28929c3569b5STao Ma 	if (ext4_test_inode_state(inode, EXT4_STATE_MAY_INLINE_DATA)) {
28939c3569b5STao Ma 		ret = ext4_da_write_inline_data_begin(mapping, inode,
28949c3569b5STao Ma 						      pos, len, flags,
28959c3569b5STao Ma 						      pagep, fsdata);
28969c3569b5STao Ma 		if (ret < 0)
289747564bfbSTheodore Ts'o 			return ret;
289847564bfbSTheodore Ts'o 		if (ret == 1)
289947564bfbSTheodore Ts'o 			return 0;
29009c3569b5STao Ma 	}
29019c3569b5STao Ma 
290247564bfbSTheodore Ts'o 	/*
290347564bfbSTheodore Ts'o 	 * grab_cache_page_write_begin() can take a long time if the
290447564bfbSTheodore Ts'o 	 * system is thrashing due to memory pressure, or if the page
290547564bfbSTheodore Ts'o 	 * is being written back.  So grab it first before we start
290647564bfbSTheodore Ts'o 	 * the transaction handle.  This also allows us to allocate
290747564bfbSTheodore Ts'o 	 * the page (if needed) without using GFP_NOFS.
290847564bfbSTheodore Ts'o 	 */
290947564bfbSTheodore Ts'o retry_grab:
291047564bfbSTheodore Ts'o 	page = grab_cache_page_write_begin(mapping, index, flags);
291147564bfbSTheodore Ts'o 	if (!page)
291247564bfbSTheodore Ts'o 		return -ENOMEM;
291347564bfbSTheodore Ts'o 	unlock_page(page);
291447564bfbSTheodore Ts'o 
291564769240SAlex Tomas 	/*
291664769240SAlex Tomas 	 * With delayed allocation, we don't log the i_disksize update
291764769240SAlex Tomas 	 * if there is delayed block allocation. But we still need
291864769240SAlex Tomas 	 * to journalling the i_disksize update if writes to the end
291964769240SAlex Tomas 	 * of file which has an already mapped buffer.
292064769240SAlex Tomas 	 */
292147564bfbSTheodore Ts'o retry_journal:
29220ff8947fSEric Sandeen 	handle = ext4_journal_start(inode, EXT4_HT_WRITE_PAGE,
29230ff8947fSEric Sandeen 				ext4_da_write_credits(inode, pos, len));
292464769240SAlex Tomas 	if (IS_ERR(handle)) {
292509cbfeafSKirill A. Shutemov 		put_page(page);
292647564bfbSTheodore Ts'o 		return PTR_ERR(handle);
292764769240SAlex Tomas 	}
292864769240SAlex Tomas 
292947564bfbSTheodore Ts'o 	lock_page(page);
293047564bfbSTheodore Ts'o 	if (page->mapping != mapping) {
293147564bfbSTheodore Ts'o 		/* The page got truncated from under us */
293247564bfbSTheodore Ts'o 		unlock_page(page);
293309cbfeafSKirill A. Shutemov 		put_page(page);
2934d5a0d4f7SEric Sandeen 		ext4_journal_stop(handle);
293547564bfbSTheodore Ts'o 		goto retry_grab;
2936d5a0d4f7SEric Sandeen 	}
293747564bfbSTheodore Ts'o 	/* In case writeback began while the page was unlocked */
29387afe5aa5SDmitry Monakhov 	wait_for_stable_page(page);
293964769240SAlex Tomas 
29402058f83aSMichael Halcrow #ifdef CONFIG_EXT4_FS_ENCRYPTION
29412058f83aSMichael Halcrow 	ret = ext4_block_write_begin(page, pos, len,
29422058f83aSMichael Halcrow 				     ext4_da_get_block_prep);
29432058f83aSMichael Halcrow #else
29446e1db88dSChristoph Hellwig 	ret = __block_write_begin(page, pos, len, ext4_da_get_block_prep);
29452058f83aSMichael Halcrow #endif
294664769240SAlex Tomas 	if (ret < 0) {
294764769240SAlex Tomas 		unlock_page(page);
294864769240SAlex Tomas 		ext4_journal_stop(handle);
2949ae4d5372SAneesh Kumar K.V 		/*
2950ae4d5372SAneesh Kumar K.V 		 * block_write_begin may have instantiated a few blocks
2951ae4d5372SAneesh Kumar K.V 		 * outside i_size.  Trim these off again. Don't need
2952ae4d5372SAneesh Kumar K.V 		 * i_size_read because we hold i_mutex.
2953ae4d5372SAneesh Kumar K.V 		 */
2954ae4d5372SAneesh Kumar K.V 		if (pos + len > inode->i_size)
2955b9a4207dSJan Kara 			ext4_truncate_failed_write(inode);
295647564bfbSTheodore Ts'o 
295747564bfbSTheodore Ts'o 		if (ret == -ENOSPC &&
295847564bfbSTheodore Ts'o 		    ext4_should_retry_alloc(inode->i_sb, &retries))
295947564bfbSTheodore Ts'o 			goto retry_journal;
296047564bfbSTheodore Ts'o 
296109cbfeafSKirill A. Shutemov 		put_page(page);
296247564bfbSTheodore Ts'o 		return ret;
296364769240SAlex Tomas 	}
296464769240SAlex Tomas 
296547564bfbSTheodore Ts'o 	*pagep = page;
296664769240SAlex Tomas 	return ret;
296764769240SAlex Tomas }
296864769240SAlex Tomas 
2969632eaeabSMingming Cao /*
2970632eaeabSMingming Cao  * Check if we should update i_disksize
2971632eaeabSMingming Cao  * when write to the end of file but not require block allocation
2972632eaeabSMingming Cao  */
2973632eaeabSMingming Cao static int ext4_da_should_update_i_disksize(struct page *page,
2974632eaeabSMingming Cao 					    unsigned long offset)
2975632eaeabSMingming Cao {
2976632eaeabSMingming Cao 	struct buffer_head *bh;
2977632eaeabSMingming Cao 	struct inode *inode = page->mapping->host;
2978632eaeabSMingming Cao 	unsigned int idx;
2979632eaeabSMingming Cao 	int i;
2980632eaeabSMingming Cao 
2981632eaeabSMingming Cao 	bh = page_buffers(page);
2982632eaeabSMingming Cao 	idx = offset >> inode->i_blkbits;
2983632eaeabSMingming Cao 
2984632eaeabSMingming Cao 	for (i = 0; i < idx; i++)
2985632eaeabSMingming Cao 		bh = bh->b_this_page;
2986632eaeabSMingming Cao 
298729fa89d0SAneesh Kumar K.V 	if (!buffer_mapped(bh) || (buffer_delay(bh)) || buffer_unwritten(bh))
2988632eaeabSMingming Cao 		return 0;
2989632eaeabSMingming Cao 	return 1;
2990632eaeabSMingming Cao }
2991632eaeabSMingming Cao 
299264769240SAlex Tomas static int ext4_da_write_end(struct file *file,
299364769240SAlex Tomas 			     struct address_space *mapping,
299464769240SAlex Tomas 			     loff_t pos, unsigned len, unsigned copied,
299564769240SAlex Tomas 			     struct page *page, void *fsdata)
299664769240SAlex Tomas {
299764769240SAlex Tomas 	struct inode *inode = mapping->host;
299864769240SAlex Tomas 	int ret = 0, ret2;
299964769240SAlex Tomas 	handle_t *handle = ext4_journal_current_handle();
300064769240SAlex Tomas 	loff_t new_i_size;
3001632eaeabSMingming Cao 	unsigned long start, end;
300279f0be8dSAneesh Kumar K.V 	int write_mode = (int)(unsigned long)fsdata;
300379f0be8dSAneesh Kumar K.V 
300474d553aaSTheodore Ts'o 	if (write_mode == FALL_BACK_TO_NONDELALLOC)
300574d553aaSTheodore Ts'o 		return ext4_write_end(file, mapping, pos,
300679f0be8dSAneesh Kumar K.V 				      len, copied, page, fsdata);
3007632eaeabSMingming Cao 
30089bffad1eSTheodore Ts'o 	trace_ext4_da_write_end(inode, pos, len, copied);
300909cbfeafSKirill A. Shutemov 	start = pos & (PAGE_SIZE - 1);
3010632eaeabSMingming Cao 	end = start + copied - 1;
301164769240SAlex Tomas 
301264769240SAlex Tomas 	/*
301364769240SAlex Tomas 	 * generic_write_end() will run mark_inode_dirty() if i_size
301464769240SAlex Tomas 	 * changes.  So let's piggyback the i_disksize mark_inode_dirty
301564769240SAlex Tomas 	 * into that.
301664769240SAlex Tomas 	 */
301764769240SAlex Tomas 	new_i_size = pos + copied;
3018ea51d132SAndrea Arcangeli 	if (copied && new_i_size > EXT4_I(inode)->i_disksize) {
30199c3569b5STao Ma 		if (ext4_has_inline_data(inode) ||
30209c3569b5STao Ma 		    ext4_da_should_update_i_disksize(page, end)) {
3021ee124d27SDmitry Monakhov 			ext4_update_i_disksize(inode, new_i_size);
3022cf17fea6SAneesh Kumar K.V 			/* We need to mark inode dirty even if
3023cf17fea6SAneesh Kumar K.V 			 * new_i_size is less that inode->i_size
3024cf17fea6SAneesh Kumar K.V 			 * bu greater than i_disksize.(hint delalloc)
3025cf17fea6SAneesh Kumar K.V 			 */
3026cf17fea6SAneesh Kumar K.V 			ext4_mark_inode_dirty(handle, inode);
3027632eaeabSMingming Cao 		}
3028632eaeabSMingming Cao 	}
30299c3569b5STao Ma 
30309c3569b5STao Ma 	if (write_mode != CONVERT_INLINE_DATA &&
30319c3569b5STao Ma 	    ext4_test_inode_state(inode, EXT4_STATE_MAY_INLINE_DATA) &&
30329c3569b5STao Ma 	    ext4_has_inline_data(inode))
30339c3569b5STao Ma 		ret2 = ext4_da_write_inline_data_end(inode, pos, len, copied,
30349c3569b5STao Ma 						     page);
30359c3569b5STao Ma 	else
303664769240SAlex Tomas 		ret2 = generic_write_end(file, mapping, pos, len, copied,
303764769240SAlex Tomas 							page, fsdata);
30389c3569b5STao Ma 
303964769240SAlex Tomas 	copied = ret2;
304064769240SAlex Tomas 	if (ret2 < 0)
304164769240SAlex Tomas 		ret = ret2;
304264769240SAlex Tomas 	ret2 = ext4_journal_stop(handle);
304364769240SAlex Tomas 	if (!ret)
304464769240SAlex Tomas 		ret = ret2;
304564769240SAlex Tomas 
304664769240SAlex Tomas 	return ret ? ret : copied;
304764769240SAlex Tomas }
304864769240SAlex Tomas 
3049d47992f8SLukas Czerner static void ext4_da_invalidatepage(struct page *page, unsigned int offset,
3050d47992f8SLukas Czerner 				   unsigned int length)
305164769240SAlex Tomas {
305264769240SAlex Tomas 	/*
305364769240SAlex Tomas 	 * Drop reserved blocks
305464769240SAlex Tomas 	 */
305564769240SAlex Tomas 	BUG_ON(!PageLocked(page));
305664769240SAlex Tomas 	if (!page_has_buffers(page))
305764769240SAlex Tomas 		goto out;
305864769240SAlex Tomas 
3059ca99fdd2SLukas Czerner 	ext4_da_page_release_reservation(page, offset, length);
306064769240SAlex Tomas 
306164769240SAlex Tomas out:
3062d47992f8SLukas Czerner 	ext4_invalidatepage(page, offset, length);
306364769240SAlex Tomas 
306464769240SAlex Tomas 	return;
306564769240SAlex Tomas }
306664769240SAlex Tomas 
3067ccd2506bSTheodore Ts'o /*
3068ccd2506bSTheodore Ts'o  * Force all delayed allocation blocks to be allocated for a given inode.
3069ccd2506bSTheodore Ts'o  */
3070ccd2506bSTheodore Ts'o int ext4_alloc_da_blocks(struct inode *inode)
3071ccd2506bSTheodore Ts'o {
3072fb40ba0dSTheodore Ts'o 	trace_ext4_alloc_da_blocks(inode);
3073fb40ba0dSTheodore Ts'o 
307471d4f7d0STheodore Ts'o 	if (!EXT4_I(inode)->i_reserved_data_blocks)
3075ccd2506bSTheodore Ts'o 		return 0;
3076ccd2506bSTheodore Ts'o 
3077ccd2506bSTheodore Ts'o 	/*
3078ccd2506bSTheodore Ts'o 	 * We do something simple for now.  The filemap_flush() will
3079ccd2506bSTheodore Ts'o 	 * also start triggering a write of the data blocks, which is
3080ccd2506bSTheodore Ts'o 	 * not strictly speaking necessary (and for users of
3081ccd2506bSTheodore Ts'o 	 * laptop_mode, not even desirable).  However, to do otherwise
3082ccd2506bSTheodore Ts'o 	 * would require replicating code paths in:
3083ccd2506bSTheodore Ts'o 	 *
308420970ba6STheodore Ts'o 	 * ext4_writepages() ->
3085ccd2506bSTheodore Ts'o 	 *    write_cache_pages() ---> (via passed in callback function)
3086ccd2506bSTheodore Ts'o 	 *        __mpage_da_writepage() -->
3087ccd2506bSTheodore Ts'o 	 *           mpage_add_bh_to_extent()
3088ccd2506bSTheodore Ts'o 	 *           mpage_da_map_blocks()
3089ccd2506bSTheodore Ts'o 	 *
3090ccd2506bSTheodore Ts'o 	 * The problem is that write_cache_pages(), located in
3091ccd2506bSTheodore Ts'o 	 * mm/page-writeback.c, marks pages clean in preparation for
3092ccd2506bSTheodore Ts'o 	 * doing I/O, which is not desirable if we're not planning on
3093ccd2506bSTheodore Ts'o 	 * doing I/O at all.
3094ccd2506bSTheodore Ts'o 	 *
3095ccd2506bSTheodore Ts'o 	 * We could call write_cache_pages(), and then redirty all of
3096380cf090SWu Fengguang 	 * the pages by calling redirty_page_for_writepage() but that
3097ccd2506bSTheodore Ts'o 	 * would be ugly in the extreme.  So instead we would need to
3098ccd2506bSTheodore Ts'o 	 * replicate parts of the code in the above functions,
309925985edcSLucas De Marchi 	 * simplifying them because we wouldn't actually intend to
3100ccd2506bSTheodore Ts'o 	 * write out the pages, but rather only collect contiguous
3101ccd2506bSTheodore Ts'o 	 * logical block extents, call the multi-block allocator, and
3102ccd2506bSTheodore Ts'o 	 * then update the buffer heads with the block allocations.
3103ccd2506bSTheodore Ts'o 	 *
3104ccd2506bSTheodore Ts'o 	 * For now, though, we'll cheat by calling filemap_flush(),
3105ccd2506bSTheodore Ts'o 	 * which will map the blocks, and start the I/O, but not
3106ccd2506bSTheodore Ts'o 	 * actually wait for the I/O to complete.
3107ccd2506bSTheodore Ts'o 	 */
3108ccd2506bSTheodore Ts'o 	return filemap_flush(inode->i_mapping);
3109ccd2506bSTheodore Ts'o }
311064769240SAlex Tomas 
311164769240SAlex Tomas /*
3112ac27a0ecSDave Kleikamp  * bmap() is special.  It gets used by applications such as lilo and by
3113ac27a0ecSDave Kleikamp  * the swapper to find the on-disk block of a specific piece of data.
3114ac27a0ecSDave Kleikamp  *
3115ac27a0ecSDave Kleikamp  * Naturally, this is dangerous if the block concerned is still in the
3116617ba13bSMingming Cao  * journal.  If somebody makes a swapfile on an ext4 data-journaling
3117ac27a0ecSDave Kleikamp  * filesystem and enables swap, then they may get a nasty shock when the
3118ac27a0ecSDave Kleikamp  * data getting swapped to that swapfile suddenly gets overwritten by
3119ac27a0ecSDave Kleikamp  * the original zero's written out previously to the journal and
3120ac27a0ecSDave Kleikamp  * awaiting writeback in the kernel's buffer cache.
3121ac27a0ecSDave Kleikamp  *
3122ac27a0ecSDave Kleikamp  * So, if we see any bmap calls here on a modified, data-journaled file,
3123ac27a0ecSDave Kleikamp  * take extra steps to flush any blocks which might be in the cache.
3124ac27a0ecSDave Kleikamp  */
3125617ba13bSMingming Cao static sector_t ext4_bmap(struct address_space *mapping, sector_t block)
3126ac27a0ecSDave Kleikamp {
3127ac27a0ecSDave Kleikamp 	struct inode *inode = mapping->host;
3128ac27a0ecSDave Kleikamp 	journal_t *journal;
3129ac27a0ecSDave Kleikamp 	int err;
3130ac27a0ecSDave Kleikamp 
313146c7f254STao Ma 	/*
313246c7f254STao Ma 	 * We can get here for an inline file via the FIBMAP ioctl
313346c7f254STao Ma 	 */
313446c7f254STao Ma 	if (ext4_has_inline_data(inode))
313546c7f254STao Ma 		return 0;
313646c7f254STao Ma 
313764769240SAlex Tomas 	if (mapping_tagged(mapping, PAGECACHE_TAG_DIRTY) &&
313864769240SAlex Tomas 			test_opt(inode->i_sb, DELALLOC)) {
313964769240SAlex Tomas 		/*
314064769240SAlex Tomas 		 * With delalloc we want to sync the file
314164769240SAlex Tomas 		 * so that we can make sure we allocate
314264769240SAlex Tomas 		 * blocks for file
314364769240SAlex Tomas 		 */
314464769240SAlex Tomas 		filemap_write_and_wait(mapping);
314564769240SAlex Tomas 	}
314664769240SAlex Tomas 
314719f5fb7aSTheodore Ts'o 	if (EXT4_JOURNAL(inode) &&
314819f5fb7aSTheodore Ts'o 	    ext4_test_inode_state(inode, EXT4_STATE_JDATA)) {
3149ac27a0ecSDave Kleikamp 		/*
3150ac27a0ecSDave Kleikamp 		 * This is a REALLY heavyweight approach, but the use of
3151ac27a0ecSDave Kleikamp 		 * bmap on dirty files is expected to be extremely rare:
3152ac27a0ecSDave Kleikamp 		 * only if we run lilo or swapon on a freshly made file
3153ac27a0ecSDave Kleikamp 		 * do we expect this to happen.
3154ac27a0ecSDave Kleikamp 		 *
3155ac27a0ecSDave Kleikamp 		 * (bmap requires CAP_SYS_RAWIO so this does not
3156ac27a0ecSDave Kleikamp 		 * represent an unprivileged user DOS attack --- we'd be
3157ac27a0ecSDave Kleikamp 		 * in trouble if mortal users could trigger this path at
3158ac27a0ecSDave Kleikamp 		 * will.)
3159ac27a0ecSDave Kleikamp 		 *
3160617ba13bSMingming Cao 		 * NB. EXT4_STATE_JDATA is not set on files other than
3161ac27a0ecSDave Kleikamp 		 * regular files.  If somebody wants to bmap a directory
3162ac27a0ecSDave Kleikamp 		 * or symlink and gets confused because the buffer
3163ac27a0ecSDave Kleikamp 		 * hasn't yet been flushed to disk, they deserve
3164ac27a0ecSDave Kleikamp 		 * everything they get.
3165ac27a0ecSDave Kleikamp 		 */
3166ac27a0ecSDave Kleikamp 
316719f5fb7aSTheodore Ts'o 		ext4_clear_inode_state(inode, EXT4_STATE_JDATA);
3168617ba13bSMingming Cao 		journal = EXT4_JOURNAL(inode);
3169dab291afSMingming Cao 		jbd2_journal_lock_updates(journal);
3170dab291afSMingming Cao 		err = jbd2_journal_flush(journal);
3171dab291afSMingming Cao 		jbd2_journal_unlock_updates(journal);
3172ac27a0ecSDave Kleikamp 
3173ac27a0ecSDave Kleikamp 		if (err)
3174ac27a0ecSDave Kleikamp 			return 0;
3175ac27a0ecSDave Kleikamp 	}
3176ac27a0ecSDave Kleikamp 
3177617ba13bSMingming Cao 	return generic_block_bmap(mapping, block, ext4_get_block);
3178ac27a0ecSDave Kleikamp }
3179ac27a0ecSDave Kleikamp 
3180617ba13bSMingming Cao static int ext4_readpage(struct file *file, struct page *page)
3181ac27a0ecSDave Kleikamp {
318246c7f254STao Ma 	int ret = -EAGAIN;
318346c7f254STao Ma 	struct inode *inode = page->mapping->host;
318446c7f254STao Ma 
31850562e0baSJiaying Zhang 	trace_ext4_readpage(page);
318646c7f254STao Ma 
318746c7f254STao Ma 	if (ext4_has_inline_data(inode))
318846c7f254STao Ma 		ret = ext4_readpage_inline(inode, page);
318946c7f254STao Ma 
319046c7f254STao Ma 	if (ret == -EAGAIN)
3191f64e02feSTheodore Ts'o 		return ext4_mpage_readpages(page->mapping, NULL, page, 1);
319246c7f254STao Ma 
319346c7f254STao Ma 	return ret;
3194ac27a0ecSDave Kleikamp }
3195ac27a0ecSDave Kleikamp 
3196ac27a0ecSDave Kleikamp static int
3197617ba13bSMingming Cao ext4_readpages(struct file *file, struct address_space *mapping,
3198ac27a0ecSDave Kleikamp 		struct list_head *pages, unsigned nr_pages)
3199ac27a0ecSDave Kleikamp {
320046c7f254STao Ma 	struct inode *inode = mapping->host;
320146c7f254STao Ma 
320246c7f254STao Ma 	/* If the file has inline data, no need to do readpages. */
320346c7f254STao Ma 	if (ext4_has_inline_data(inode))
320446c7f254STao Ma 		return 0;
320546c7f254STao Ma 
3206f64e02feSTheodore Ts'o 	return ext4_mpage_readpages(mapping, pages, NULL, nr_pages);
3207ac27a0ecSDave Kleikamp }
3208ac27a0ecSDave Kleikamp 
3209d47992f8SLukas Czerner static void ext4_invalidatepage(struct page *page, unsigned int offset,
3210d47992f8SLukas Czerner 				unsigned int length)
3211ac27a0ecSDave Kleikamp {
3212ca99fdd2SLukas Czerner 	trace_ext4_invalidatepage(page, offset, length);
32130562e0baSJiaying Zhang 
32144520fb3cSJan Kara 	/* No journalling happens on data buffers when this function is used */
32154520fb3cSJan Kara 	WARN_ON(page_has_buffers(page) && buffer_jbd(page_buffers(page)));
32164520fb3cSJan Kara 
3217ca99fdd2SLukas Czerner 	block_invalidatepage(page, offset, length);
32184520fb3cSJan Kara }
32194520fb3cSJan Kara 
322053e87268SJan Kara static int __ext4_journalled_invalidatepage(struct page *page,
3221ca99fdd2SLukas Czerner 					    unsigned int offset,
3222ca99fdd2SLukas Czerner 					    unsigned int length)
32234520fb3cSJan Kara {
32244520fb3cSJan Kara 	journal_t *journal = EXT4_JOURNAL(page->mapping->host);
32254520fb3cSJan Kara 
3226ca99fdd2SLukas Czerner 	trace_ext4_journalled_invalidatepage(page, offset, length);
32274520fb3cSJan Kara 
3228744692dcSJiaying Zhang 	/*
3229ac27a0ecSDave Kleikamp 	 * If it's a full truncate we just forget about the pending dirtying
3230ac27a0ecSDave Kleikamp 	 */
323109cbfeafSKirill A. Shutemov 	if (offset == 0 && length == PAGE_SIZE)
3232ac27a0ecSDave Kleikamp 		ClearPageChecked(page);
3233ac27a0ecSDave Kleikamp 
3234ca99fdd2SLukas Czerner 	return jbd2_journal_invalidatepage(journal, page, offset, length);
323553e87268SJan Kara }
323653e87268SJan Kara 
323753e87268SJan Kara /* Wrapper for aops... */
323853e87268SJan Kara static void ext4_journalled_invalidatepage(struct page *page,
3239d47992f8SLukas Czerner 					   unsigned int offset,
3240d47992f8SLukas Czerner 					   unsigned int length)
324153e87268SJan Kara {
3242ca99fdd2SLukas Czerner 	WARN_ON(__ext4_journalled_invalidatepage(page, offset, length) < 0);
3243ac27a0ecSDave Kleikamp }
3244ac27a0ecSDave Kleikamp 
3245617ba13bSMingming Cao static int ext4_releasepage(struct page *page, gfp_t wait)
3246ac27a0ecSDave Kleikamp {
3247617ba13bSMingming Cao 	journal_t *journal = EXT4_JOURNAL(page->mapping->host);
3248ac27a0ecSDave Kleikamp 
32490562e0baSJiaying Zhang 	trace_ext4_releasepage(page);
32500562e0baSJiaying Zhang 
3251e1c36595SJan Kara 	/* Page has dirty journalled data -> cannot release */
3252e1c36595SJan Kara 	if (PageChecked(page))
3253ac27a0ecSDave Kleikamp 		return 0;
32540390131bSFrank Mayhar 	if (journal)
3255dab291afSMingming Cao 		return jbd2_journal_try_to_free_buffers(journal, page, wait);
32560390131bSFrank Mayhar 	else
32570390131bSFrank Mayhar 		return try_to_free_buffers(page);
3258ac27a0ecSDave Kleikamp }
3259ac27a0ecSDave Kleikamp 
3260ba5843f5SJan Kara #ifdef CONFIG_FS_DAX
326112735f88SJan Kara /*
326212735f88SJan Kara  * Get block function for DAX IO and mmap faults. It takes care of converting
326312735f88SJan Kara  * unwritten extents to written ones and initializes new / converted blocks
326412735f88SJan Kara  * to zeros.
326512735f88SJan Kara  */
326612735f88SJan Kara int ext4_dax_get_block(struct inode *inode, sector_t iblock,
3267ed923b57SMatthew Wilcox 		       struct buffer_head *bh_result, int create)
3268ed923b57SMatthew Wilcox {
32697cb476f8SJan Kara 	int ret;
3270c86d8db3SJan Kara 
327112735f88SJan Kara 	ext4_debug("inode %lu, create flag %d\n", inode->i_ino, create);
32727cb476f8SJan Kara 	if (!create)
32737cb476f8SJan Kara 		return _ext4_get_block(inode, iblock, bh_result, 0);
32747cb476f8SJan Kara 
32757cb476f8SJan Kara 	ret = ext4_get_block_trans(inode, iblock, bh_result,
32767cb476f8SJan Kara 				   EXT4_GET_BLOCKS_PRE_IO |
32777cb476f8SJan Kara 				   EXT4_GET_BLOCKS_CREATE_ZERO);
32787cb476f8SJan Kara 	if (ret < 0)
3279ba5843f5SJan Kara 		return ret;
3280ba5843f5SJan Kara 
32817cb476f8SJan Kara 	if (buffer_unwritten(bh_result)) {
3282ba5843f5SJan Kara 		/*
328312735f88SJan Kara 		 * We are protected by i_mmap_sem or i_mutex so we know block
328412735f88SJan Kara 		 * cannot go away from under us even though we dropped
328512735f88SJan Kara 		 * i_data_sem. Convert extent to written and write zeros there.
3286ba5843f5SJan Kara 		 */
32877cb476f8SJan Kara 		ret = ext4_get_block_trans(inode, iblock, bh_result,
32887cb476f8SJan Kara 					   EXT4_GET_BLOCKS_CONVERT |
32897cb476f8SJan Kara 					   EXT4_GET_BLOCKS_CREATE_ZERO);
32907cb476f8SJan Kara 		if (ret < 0)
3291ed923b57SMatthew Wilcox 			return ret;
3292ed923b57SMatthew Wilcox 	}
3293ba5843f5SJan Kara 	/*
3294ba5843f5SJan Kara 	 * At least for now we have to clear BH_New so that DAX code
3295ba5843f5SJan Kara 	 * doesn't attempt to zero blocks again in a racy way.
3296ba5843f5SJan Kara 	 */
32977cb476f8SJan Kara 	clear_buffer_new(bh_result);
32987cb476f8SJan Kara 	return 0;
3299ba5843f5SJan Kara }
330012735f88SJan Kara #else
330112735f88SJan Kara /* Just define empty function, it will never get called. */
330212735f88SJan Kara int ext4_dax_get_block(struct inode *inode, sector_t iblock,
330312735f88SJan Kara 		       struct buffer_head *bh_result, int create)
330412735f88SJan Kara {
330512735f88SJan Kara 	BUG();
330612735f88SJan Kara 	return 0;
3307ba5843f5SJan Kara }
3308ba5843f5SJan Kara #endif
3309ed923b57SMatthew Wilcox 
3310187372a3SChristoph Hellwig static int ext4_end_io_dio(struct kiocb *iocb, loff_t offset,
33117b7a8665SChristoph Hellwig 			    ssize_t size, void *private)
33124c0425ffSMingming Cao {
3313109811c2SJan Kara         ext4_io_end_t *io_end = private;
33144c0425ffSMingming Cao 
331597a851edSJan Kara 	/* if not async direct IO just return */
33167b7a8665SChristoph Hellwig 	if (!io_end)
3317187372a3SChristoph Hellwig 		return 0;
33184b70df18SMingming 
33198d5d02e6SMingming Cao 	ext_debug("ext4_end_io_dio(): io_end 0x%p "
3320ace36ad4SJoe Perches 		  "for inode %lu, iocb 0x%p, offset %llu, size %zd\n",
3321109811c2SJan Kara 		  io_end, io_end->inode->i_ino, iocb, offset, size);
33228d5d02e6SMingming Cao 
332374c66bcbSJan Kara 	/*
332474c66bcbSJan Kara 	 * Error during AIO DIO. We cannot convert unwritten extents as the
332574c66bcbSJan Kara 	 * data was not written. Just clear the unwritten flag and drop io_end.
332674c66bcbSJan Kara 	 */
332774c66bcbSJan Kara 	if (size <= 0) {
332874c66bcbSJan Kara 		ext4_clear_io_unwritten_flag(io_end);
332974c66bcbSJan Kara 		size = 0;
333074c66bcbSJan Kara 	}
33314c0425ffSMingming Cao 	io_end->offset = offset;
33324c0425ffSMingming Cao 	io_end->size = size;
33337b7a8665SChristoph Hellwig 	ext4_put_io_end(io_end);
3334187372a3SChristoph Hellwig 
3335187372a3SChristoph Hellwig 	return 0;
33364c0425ffSMingming Cao }
3337c7064ef1SJiaying Zhang 
33384c0425ffSMingming Cao /*
3339914f82a3SJan Kara  * Handling of direct IO writes.
3340914f82a3SJan Kara  *
3341914f82a3SJan Kara  * For ext4 extent files, ext4 will do direct-io write even to holes,
33424c0425ffSMingming Cao  * preallocated extents, and those write extend the file, no need to
33434c0425ffSMingming Cao  * fall back to buffered IO.
33444c0425ffSMingming Cao  *
3345556615dcSLukas Czerner  * For holes, we fallocate those blocks, mark them as unwritten
334669c499d1STheodore Ts'o  * If those blocks were preallocated, we mark sure they are split, but
3347556615dcSLukas Czerner  * still keep the range to write as unwritten.
33484c0425ffSMingming Cao  *
334969c499d1STheodore Ts'o  * The unwritten extents will be converted to written when DIO is completed.
33508d5d02e6SMingming Cao  * For async direct IO, since the IO may still pending when return, we
335125985edcSLucas De Marchi  * set up an end_io call back function, which will do the conversion
33528d5d02e6SMingming Cao  * when async direct IO completed.
33534c0425ffSMingming Cao  *
33544c0425ffSMingming Cao  * If the O_DIRECT write will extend the file then add this inode to the
33554c0425ffSMingming Cao  * orphan list.  So recovery will truncate it back to the original size
33564c0425ffSMingming Cao  * if the machine crashes during the write.
33574c0425ffSMingming Cao  *
33584c0425ffSMingming Cao  */
33590e01df10SLinus Torvalds static ssize_t ext4_direct_IO_write(struct kiocb *iocb, struct iov_iter *iter)
33604c0425ffSMingming Cao {
33614c0425ffSMingming Cao 	struct file *file = iocb->ki_filp;
33624c0425ffSMingming Cao 	struct inode *inode = file->f_mapping->host;
3363914f82a3SJan Kara 	struct ext4_inode_info *ei = EXT4_I(inode);
33644c0425ffSMingming Cao 	ssize_t ret;
3365c8b8e32dSChristoph Hellwig 	loff_t offset = iocb->ki_pos;
3366a6cbcd4aSAl Viro 	size_t count = iov_iter_count(iter);
3367729f52c6SZheng Liu 	int overwrite = 0;
33688b0f165fSAnatol Pomozov 	get_block_t *get_block_func = NULL;
33698b0f165fSAnatol Pomozov 	int dio_flags = 0;
337069c499d1STheodore Ts'o 	loff_t final_size = offset + count;
3371914f82a3SJan Kara 	int orphan = 0;
3372914f82a3SJan Kara 	handle_t *handle;
337369c499d1STheodore Ts'o 
3374914f82a3SJan Kara 	if (final_size > inode->i_size) {
3375914f82a3SJan Kara 		/* Credits for sb + inode write */
3376914f82a3SJan Kara 		handle = ext4_journal_start(inode, EXT4_HT_INODE, 2);
3377914f82a3SJan Kara 		if (IS_ERR(handle)) {
3378914f82a3SJan Kara 			ret = PTR_ERR(handle);
3379914f82a3SJan Kara 			goto out;
3380914f82a3SJan Kara 		}
3381914f82a3SJan Kara 		ret = ext4_orphan_add(handle, inode);
3382914f82a3SJan Kara 		if (ret) {
3383914f82a3SJan Kara 			ext4_journal_stop(handle);
3384914f82a3SJan Kara 			goto out;
3385914f82a3SJan Kara 		}
3386914f82a3SJan Kara 		orphan = 1;
3387914f82a3SJan Kara 		ei->i_disksize = inode->i_size;
3388914f82a3SJan Kara 		ext4_journal_stop(handle);
3389914f82a3SJan Kara 	}
3390729f52c6SZheng Liu 
33914bd809dbSZheng Liu 	BUG_ON(iocb->private == NULL);
33924bd809dbSZheng Liu 
3393e8340395SJan Kara 	/*
3394e8340395SJan Kara 	 * Make all waiters for direct IO properly wait also for extent
3395e8340395SJan Kara 	 * conversion. This also disallows race between truncate() and
3396e8340395SJan Kara 	 * overwrite DIO as i_dio_count needs to be incremented under i_mutex.
3397e8340395SJan Kara 	 */
3398fe0f07d0SJens Axboe 	inode_dio_begin(inode);
3399e8340395SJan Kara 
34004bd809dbSZheng Liu 	/* If we do a overwrite dio, i_mutex locking can be released */
34014bd809dbSZheng Liu 	overwrite = *((int *)iocb->private);
34024bd809dbSZheng Liu 
34032dcba478SJan Kara 	if (overwrite)
34045955102cSAl Viro 		inode_unlock(inode);
34054bd809dbSZheng Liu 
34064c0425ffSMingming Cao 	/*
3407914f82a3SJan Kara 	 * For extent mapped files we could direct write to holes and fallocate.
34088d5d02e6SMingming Cao 	 *
3409109811c2SJan Kara 	 * Allocated blocks to fill the hole are marked as unwritten to prevent
3410109811c2SJan Kara 	 * parallel buffered read to expose the stale data before DIO complete
3411109811c2SJan Kara 	 * the data IO.
34128d5d02e6SMingming Cao 	 *
3413109811c2SJan Kara 	 * As to previously fallocated extents, ext4 get_block will just simply
3414109811c2SJan Kara 	 * mark the buffer mapped but still keep the extents unwritten.
34154c0425ffSMingming Cao 	 *
3416109811c2SJan Kara 	 * For non AIO case, we will convert those unwritten extents to written
3417109811c2SJan Kara 	 * after return back from blockdev_direct_IO. That way we save us from
3418109811c2SJan Kara 	 * allocating io_end structure and also the overhead of offloading
3419109811c2SJan Kara 	 * the extent convertion to a workqueue.
34204c0425ffSMingming Cao 	 *
342169c499d1STheodore Ts'o 	 * For async DIO, the conversion needs to be deferred when the
342269c499d1STheodore Ts'o 	 * IO is completed. The ext4 end_io callback function will be
342369c499d1STheodore Ts'o 	 * called to take care of the conversion work.  Here for async
342469c499d1STheodore Ts'o 	 * case, we allocate an io_end structure to hook to the iocb.
34254c0425ffSMingming Cao 	 */
34268d5d02e6SMingming Cao 	iocb->private = NULL;
3427109811c2SJan Kara 	if (overwrite)
3428705965bdSJan Kara 		get_block_func = ext4_dio_get_block_overwrite;
342912735f88SJan Kara 	else if (IS_DAX(inode)) {
343012735f88SJan Kara 		/*
343112735f88SJan Kara 		 * We can avoid zeroing for aligned DAX writes beyond EOF. Other
343212735f88SJan Kara 		 * writes need zeroing either because they can race with page
343312735f88SJan Kara 		 * faults or because they use partial blocks.
343412735f88SJan Kara 		 */
343512735f88SJan Kara 		if (round_down(offset, 1<<inode->i_blkbits) >= inode->i_size &&
343612735f88SJan Kara 		    ext4_aligned_io(inode, offset, count))
343712735f88SJan Kara 			get_block_func = ext4_dio_get_block;
343812735f88SJan Kara 		else
343912735f88SJan Kara 			get_block_func = ext4_dax_get_block;
344012735f88SJan Kara 		dio_flags = DIO_LOCKING;
344112735f88SJan Kara 	} else if (!ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS) ||
3442914f82a3SJan Kara 		   round_down(offset, 1 << inode->i_blkbits) >= inode->i_size) {
3443914f82a3SJan Kara 		get_block_func = ext4_dio_get_block;
3444914f82a3SJan Kara 		dio_flags = DIO_LOCKING | DIO_SKIP_HOLES;
3445914f82a3SJan Kara 	} else if (is_sync_kiocb(iocb)) {
3446109811c2SJan Kara 		get_block_func = ext4_dio_get_block_unwritten_sync;
3447109811c2SJan Kara 		dio_flags = DIO_LOCKING;
344874dae427SJan Kara 	} else {
3449109811c2SJan Kara 		get_block_func = ext4_dio_get_block_unwritten_async;
34508b0f165fSAnatol Pomozov 		dio_flags = DIO_LOCKING;
34518b0f165fSAnatol Pomozov 	}
34522058f83aSMichael Halcrow #ifdef CONFIG_EXT4_FS_ENCRYPTION
34532058f83aSMichael Halcrow 	BUG_ON(ext4_encrypted_inode(inode) && S_ISREG(inode->i_mode));
34542058f83aSMichael Halcrow #endif
3455914f82a3SJan Kara 	if (IS_DAX(inode)) {
3456c8b8e32dSChristoph Hellwig 		ret = dax_do_io(iocb, inode, iter, get_block_func,
3457923ae0ffSRoss Zwisler 				ext4_end_io_dio, dio_flags);
3458914f82a3SJan Kara 	} else
345917f8c842SOmar Sandoval 		ret = __blockdev_direct_IO(iocb, inode,
3460c8b8e32dSChristoph Hellwig 					   inode->i_sb->s_bdev, iter,
34618b0f165fSAnatol Pomozov 					   get_block_func,
3462923ae0ffSRoss Zwisler 					   ext4_end_io_dio, NULL, dio_flags);
34638b0f165fSAnatol Pomozov 
346497a851edSJan Kara 	if (ret > 0 && !overwrite && ext4_test_inode_state(inode,
34655f524950SMingming 						EXT4_STATE_DIO_UNWRITTEN)) {
3466109f5565SMingming 		int err;
34678d5d02e6SMingming Cao 		/*
34688d5d02e6SMingming Cao 		 * for non AIO case, since the IO is already
346925985edcSLucas De Marchi 		 * completed, we could do the conversion right here
34708d5d02e6SMingming Cao 		 */
34716b523df4SJan Kara 		err = ext4_convert_unwritten_extents(NULL, inode,
34728d5d02e6SMingming Cao 						     offset, ret);
3473109f5565SMingming 		if (err < 0)
3474109f5565SMingming 			ret = err;
347519f5fb7aSTheodore Ts'o 		ext4_clear_inode_state(inode, EXT4_STATE_DIO_UNWRITTEN);
3476109f5565SMingming 	}
34774bd809dbSZheng Liu 
3478fe0f07d0SJens Axboe 	inode_dio_end(inode);
34794bd809dbSZheng Liu 	/* take i_mutex locking again if we do a ovewrite dio */
34802dcba478SJan Kara 	if (overwrite)
34815955102cSAl Viro 		inode_lock(inode);
34824bd809dbSZheng Liu 
3483914f82a3SJan Kara 	if (ret < 0 && final_size > inode->i_size)
3484914f82a3SJan Kara 		ext4_truncate_failed_write(inode);
3485914f82a3SJan Kara 
3486914f82a3SJan Kara 	/* Handle extending of i_size after direct IO write */
3487914f82a3SJan Kara 	if (orphan) {
3488914f82a3SJan Kara 		int err;
3489914f82a3SJan Kara 
3490914f82a3SJan Kara 		/* Credits for sb + inode write */
3491914f82a3SJan Kara 		handle = ext4_journal_start(inode, EXT4_HT_INODE, 2);
3492914f82a3SJan Kara 		if (IS_ERR(handle)) {
3493914f82a3SJan Kara 			/* This is really bad luck. We've written the data
3494914f82a3SJan Kara 			 * but cannot extend i_size. Bail out and pretend
3495914f82a3SJan Kara 			 * the write failed... */
3496914f82a3SJan Kara 			ret = PTR_ERR(handle);
3497914f82a3SJan Kara 			if (inode->i_nlink)
3498914f82a3SJan Kara 				ext4_orphan_del(NULL, inode);
3499914f82a3SJan Kara 
3500914f82a3SJan Kara 			goto out;
3501914f82a3SJan Kara 		}
3502914f82a3SJan Kara 		if (inode->i_nlink)
3503914f82a3SJan Kara 			ext4_orphan_del(handle, inode);
3504914f82a3SJan Kara 		if (ret > 0) {
3505914f82a3SJan Kara 			loff_t end = offset + ret;
3506914f82a3SJan Kara 			if (end > inode->i_size) {
3507914f82a3SJan Kara 				ei->i_disksize = end;
3508914f82a3SJan Kara 				i_size_write(inode, end);
3509914f82a3SJan Kara 				/*
3510914f82a3SJan Kara 				 * We're going to return a positive `ret'
3511914f82a3SJan Kara 				 * here due to non-zero-length I/O, so there's
3512914f82a3SJan Kara 				 * no way of reporting error returns from
3513914f82a3SJan Kara 				 * ext4_mark_inode_dirty() to userspace.  So
3514914f82a3SJan Kara 				 * ignore it.
3515914f82a3SJan Kara 				 */
3516914f82a3SJan Kara 				ext4_mark_inode_dirty(handle, inode);
3517914f82a3SJan Kara 			}
3518914f82a3SJan Kara 		}
3519914f82a3SJan Kara 		err = ext4_journal_stop(handle);
3520914f82a3SJan Kara 		if (ret == 0)
3521914f82a3SJan Kara 			ret = err;
3522914f82a3SJan Kara 	}
3523914f82a3SJan Kara out:
3524914f82a3SJan Kara 	return ret;
3525914f82a3SJan Kara }
3526914f82a3SJan Kara 
35270e01df10SLinus Torvalds static ssize_t ext4_direct_IO_read(struct kiocb *iocb, struct iov_iter *iter)
3528914f82a3SJan Kara {
3529914f82a3SJan Kara 	int unlocked = 0;
3530914f82a3SJan Kara 	struct inode *inode = iocb->ki_filp->f_mapping->host;
3531914f82a3SJan Kara 	ssize_t ret;
3532914f82a3SJan Kara 
3533914f82a3SJan Kara 	if (ext4_should_dioread_nolock(inode)) {
3534914f82a3SJan Kara 		/*
3535914f82a3SJan Kara 		 * Nolock dioread optimization may be dynamically disabled
3536914f82a3SJan Kara 		 * via ext4_inode_block_unlocked_dio(). Check inode's state
3537914f82a3SJan Kara 		 * while holding extra i_dio_count ref.
3538914f82a3SJan Kara 		 */
3539914f82a3SJan Kara 		inode_dio_begin(inode);
3540914f82a3SJan Kara 		smp_mb();
3541914f82a3SJan Kara 		if (unlikely(ext4_test_inode_state(inode,
3542914f82a3SJan Kara 						    EXT4_STATE_DIOREAD_LOCK)))
3543914f82a3SJan Kara 			inode_dio_end(inode);
3544914f82a3SJan Kara 		else
3545914f82a3SJan Kara 			unlocked = 1;
3546914f82a3SJan Kara 	}
3547914f82a3SJan Kara 	if (IS_DAX(inode)) {
35480e01df10SLinus Torvalds 		ret = dax_do_io(iocb, inode, iter, ext4_dio_get_block,
3549914f82a3SJan Kara 				NULL, unlocked ? 0 : DIO_LOCKING);
3550914f82a3SJan Kara 	} else {
3551914f82a3SJan Kara 		ret = __blockdev_direct_IO(iocb, inode, inode->i_sb->s_bdev,
35520e01df10SLinus Torvalds 					   iter, ext4_dio_get_block,
3553914f82a3SJan Kara 					   NULL, NULL,
3554914f82a3SJan Kara 					   unlocked ? 0 : DIO_LOCKING);
3555914f82a3SJan Kara 	}
3556914f82a3SJan Kara 	if (unlocked)
3557914f82a3SJan Kara 		inode_dio_end(inode);
35584c0425ffSMingming Cao 	return ret;
35594c0425ffSMingming Cao }
35608d5d02e6SMingming Cao 
3561c8b8e32dSChristoph Hellwig static ssize_t ext4_direct_IO(struct kiocb *iocb, struct iov_iter *iter)
35624c0425ffSMingming Cao {
35634c0425ffSMingming Cao 	struct file *file = iocb->ki_filp;
35644c0425ffSMingming Cao 	struct inode *inode = file->f_mapping->host;
3565a6cbcd4aSAl Viro 	size_t count = iov_iter_count(iter);
3566c8b8e32dSChristoph Hellwig 	loff_t offset = iocb->ki_pos;
35670562e0baSJiaying Zhang 	ssize_t ret;
35684c0425ffSMingming Cao 
35692058f83aSMichael Halcrow #ifdef CONFIG_EXT4_FS_ENCRYPTION
35702058f83aSMichael Halcrow 	if (ext4_encrypted_inode(inode) && S_ISREG(inode->i_mode))
35712058f83aSMichael Halcrow 		return 0;
35722058f83aSMichael Halcrow #endif
35732058f83aSMichael Halcrow 
357484ebd795STheodore Ts'o 	/*
357584ebd795STheodore Ts'o 	 * If we are doing data journalling we don't support O_DIRECT
357684ebd795STheodore Ts'o 	 */
357784ebd795STheodore Ts'o 	if (ext4_should_journal_data(inode))
357884ebd795STheodore Ts'o 		return 0;
357984ebd795STheodore Ts'o 
358046c7f254STao Ma 	/* Let buffer I/O handle the inline data case. */
358146c7f254STao Ma 	if (ext4_has_inline_data(inode))
358246c7f254STao Ma 		return 0;
358346c7f254STao Ma 
35846f673763SOmar Sandoval 	trace_ext4_direct_IO_enter(inode, offset, count, iov_iter_rw(iter));
3585914f82a3SJan Kara 	if (iov_iter_rw(iter) == READ)
35860e01df10SLinus Torvalds 		ret = ext4_direct_IO_read(iocb, iter);
35870562e0baSJiaying Zhang 	else
35880e01df10SLinus Torvalds 		ret = ext4_direct_IO_write(iocb, iter);
35896f673763SOmar Sandoval 	trace_ext4_direct_IO_exit(inode, offset, count, iov_iter_rw(iter), ret);
35900562e0baSJiaying Zhang 	return ret;
35914c0425ffSMingming Cao }
35924c0425ffSMingming Cao 
3593ac27a0ecSDave Kleikamp /*
3594617ba13bSMingming Cao  * Pages can be marked dirty completely asynchronously from ext4's journalling
3595ac27a0ecSDave Kleikamp  * activity.  By filemap_sync_pte(), try_to_unmap_one(), etc.  We cannot do
3596ac27a0ecSDave Kleikamp  * much here because ->set_page_dirty is called under VFS locks.  The page is
3597ac27a0ecSDave Kleikamp  * not necessarily locked.
3598ac27a0ecSDave Kleikamp  *
3599ac27a0ecSDave Kleikamp  * We cannot just dirty the page and leave attached buffers clean, because the
3600ac27a0ecSDave Kleikamp  * buffers' dirty state is "definitive".  We cannot just set the buffers dirty
3601ac27a0ecSDave Kleikamp  * or jbddirty because all the journalling code will explode.
3602ac27a0ecSDave Kleikamp  *
3603ac27a0ecSDave Kleikamp  * So what we do is to mark the page "pending dirty" and next time writepage
3604ac27a0ecSDave Kleikamp  * is called, propagate that into the buffers appropriately.
3605ac27a0ecSDave Kleikamp  */
3606617ba13bSMingming Cao static int ext4_journalled_set_page_dirty(struct page *page)
3607ac27a0ecSDave Kleikamp {
3608ac27a0ecSDave Kleikamp 	SetPageChecked(page);
3609ac27a0ecSDave Kleikamp 	return __set_page_dirty_nobuffers(page);
3610ac27a0ecSDave Kleikamp }
3611ac27a0ecSDave Kleikamp 
361274d553aaSTheodore Ts'o static const struct address_space_operations ext4_aops = {
3613617ba13bSMingming Cao 	.readpage		= ext4_readpage,
3614617ba13bSMingming Cao 	.readpages		= ext4_readpages,
361543ce1d23SAneesh Kumar K.V 	.writepage		= ext4_writepage,
361620970ba6STheodore Ts'o 	.writepages		= ext4_writepages,
3617bfc1af65SNick Piggin 	.write_begin		= ext4_write_begin,
361874d553aaSTheodore Ts'o 	.write_end		= ext4_write_end,
3619617ba13bSMingming Cao 	.bmap			= ext4_bmap,
3620617ba13bSMingming Cao 	.invalidatepage		= ext4_invalidatepage,
3621617ba13bSMingming Cao 	.releasepage		= ext4_releasepage,
3622617ba13bSMingming Cao 	.direct_IO		= ext4_direct_IO,
3623ac27a0ecSDave Kleikamp 	.migratepage		= buffer_migrate_page,
36248ab22b9aSHisashi Hifumi 	.is_partially_uptodate  = block_is_partially_uptodate,
3625aa261f54SAndi Kleen 	.error_remove_page	= generic_error_remove_page,
3626ac27a0ecSDave Kleikamp };
3627ac27a0ecSDave Kleikamp 
3628617ba13bSMingming Cao static const struct address_space_operations ext4_journalled_aops = {
3629617ba13bSMingming Cao 	.readpage		= ext4_readpage,
3630617ba13bSMingming Cao 	.readpages		= ext4_readpages,
363143ce1d23SAneesh Kumar K.V 	.writepage		= ext4_writepage,
363220970ba6STheodore Ts'o 	.writepages		= ext4_writepages,
3633bfc1af65SNick Piggin 	.write_begin		= ext4_write_begin,
3634bfc1af65SNick Piggin 	.write_end		= ext4_journalled_write_end,
3635617ba13bSMingming Cao 	.set_page_dirty		= ext4_journalled_set_page_dirty,
3636617ba13bSMingming Cao 	.bmap			= ext4_bmap,
36374520fb3cSJan Kara 	.invalidatepage		= ext4_journalled_invalidatepage,
3638617ba13bSMingming Cao 	.releasepage		= ext4_releasepage,
363984ebd795STheodore Ts'o 	.direct_IO		= ext4_direct_IO,
36408ab22b9aSHisashi Hifumi 	.is_partially_uptodate  = block_is_partially_uptodate,
3641aa261f54SAndi Kleen 	.error_remove_page	= generic_error_remove_page,
3642ac27a0ecSDave Kleikamp };
3643ac27a0ecSDave Kleikamp 
364464769240SAlex Tomas static const struct address_space_operations ext4_da_aops = {
364564769240SAlex Tomas 	.readpage		= ext4_readpage,
364664769240SAlex Tomas 	.readpages		= ext4_readpages,
364743ce1d23SAneesh Kumar K.V 	.writepage		= ext4_writepage,
364820970ba6STheodore Ts'o 	.writepages		= ext4_writepages,
364964769240SAlex Tomas 	.write_begin		= ext4_da_write_begin,
365064769240SAlex Tomas 	.write_end		= ext4_da_write_end,
365164769240SAlex Tomas 	.bmap			= ext4_bmap,
365264769240SAlex Tomas 	.invalidatepage		= ext4_da_invalidatepage,
365364769240SAlex Tomas 	.releasepage		= ext4_releasepage,
365464769240SAlex Tomas 	.direct_IO		= ext4_direct_IO,
365564769240SAlex Tomas 	.migratepage		= buffer_migrate_page,
36568ab22b9aSHisashi Hifumi 	.is_partially_uptodate  = block_is_partially_uptodate,
3657aa261f54SAndi Kleen 	.error_remove_page	= generic_error_remove_page,
365864769240SAlex Tomas };
365964769240SAlex Tomas 
3660617ba13bSMingming Cao void ext4_set_aops(struct inode *inode)
3661ac27a0ecSDave Kleikamp {
36623d2b1582SLukas Czerner 	switch (ext4_inode_journal_mode(inode)) {
36633d2b1582SLukas Czerner 	case EXT4_INODE_ORDERED_DATA_MODE:
36643d2b1582SLukas Czerner 	case EXT4_INODE_WRITEBACK_DATA_MODE:
36653d2b1582SLukas Czerner 		break;
36663d2b1582SLukas Czerner 	case EXT4_INODE_JOURNAL_DATA_MODE:
3667617ba13bSMingming Cao 		inode->i_mapping->a_ops = &ext4_journalled_aops;
366874d553aaSTheodore Ts'o 		return;
36693d2b1582SLukas Czerner 	default:
36703d2b1582SLukas Czerner 		BUG();
36713d2b1582SLukas Czerner 	}
367274d553aaSTheodore Ts'o 	if (test_opt(inode->i_sb, DELALLOC))
367374d553aaSTheodore Ts'o 		inode->i_mapping->a_ops = &ext4_da_aops;
367474d553aaSTheodore Ts'o 	else
367574d553aaSTheodore Ts'o 		inode->i_mapping->a_ops = &ext4_aops;
3676ac27a0ecSDave Kleikamp }
3677ac27a0ecSDave Kleikamp 
3678923ae0ffSRoss Zwisler static int __ext4_block_zero_page_range(handle_t *handle,
3679d863dc36SLukas Czerner 		struct address_space *mapping, loff_t from, loff_t length)
3680d863dc36SLukas Czerner {
368109cbfeafSKirill A. Shutemov 	ext4_fsblk_t index = from >> PAGE_SHIFT;
368209cbfeafSKirill A. Shutemov 	unsigned offset = from & (PAGE_SIZE-1);
3683923ae0ffSRoss Zwisler 	unsigned blocksize, pos;
3684d863dc36SLukas Czerner 	ext4_lblk_t iblock;
3685d863dc36SLukas Czerner 	struct inode *inode = mapping->host;
3686d863dc36SLukas Czerner 	struct buffer_head *bh;
3687d863dc36SLukas Czerner 	struct page *page;
3688d863dc36SLukas Czerner 	int err = 0;
3689d863dc36SLukas Czerner 
369009cbfeafSKirill A. Shutemov 	page = find_or_create_page(mapping, from >> PAGE_SHIFT,
3691c62d2555SMichal Hocko 				   mapping_gfp_constraint(mapping, ~__GFP_FS));
3692d863dc36SLukas Czerner 	if (!page)
3693d863dc36SLukas Czerner 		return -ENOMEM;
3694d863dc36SLukas Czerner 
3695d863dc36SLukas Czerner 	blocksize = inode->i_sb->s_blocksize;
3696d863dc36SLukas Czerner 
369709cbfeafSKirill A. Shutemov 	iblock = index << (PAGE_SHIFT - inode->i_sb->s_blocksize_bits);
3698d863dc36SLukas Czerner 
3699d863dc36SLukas Czerner 	if (!page_has_buffers(page))
3700d863dc36SLukas Czerner 		create_empty_buffers(page, blocksize, 0);
3701d863dc36SLukas Czerner 
3702d863dc36SLukas Czerner 	/* Find the buffer that contains "offset" */
3703d863dc36SLukas Czerner 	bh = page_buffers(page);
3704d863dc36SLukas Czerner 	pos = blocksize;
3705d863dc36SLukas Czerner 	while (offset >= pos) {
3706d863dc36SLukas Czerner 		bh = bh->b_this_page;
3707d863dc36SLukas Czerner 		iblock++;
3708d863dc36SLukas Czerner 		pos += blocksize;
3709d863dc36SLukas Czerner 	}
3710d863dc36SLukas Czerner 	if (buffer_freed(bh)) {
3711d863dc36SLukas Czerner 		BUFFER_TRACE(bh, "freed: skip");
3712d863dc36SLukas Czerner 		goto unlock;
3713d863dc36SLukas Czerner 	}
3714d863dc36SLukas Czerner 	if (!buffer_mapped(bh)) {
3715d863dc36SLukas Czerner 		BUFFER_TRACE(bh, "unmapped");
3716d863dc36SLukas Czerner 		ext4_get_block(inode, iblock, bh, 0);
3717d863dc36SLukas Czerner 		/* unmapped? It's a hole - nothing to do */
3718d863dc36SLukas Czerner 		if (!buffer_mapped(bh)) {
3719d863dc36SLukas Czerner 			BUFFER_TRACE(bh, "still unmapped");
3720d863dc36SLukas Czerner 			goto unlock;
3721d863dc36SLukas Czerner 		}
3722d863dc36SLukas Czerner 	}
3723d863dc36SLukas Czerner 
3724d863dc36SLukas Czerner 	/* Ok, it's mapped. Make sure it's up-to-date */
3725d863dc36SLukas Czerner 	if (PageUptodate(page))
3726d863dc36SLukas Czerner 		set_buffer_uptodate(bh);
3727d863dc36SLukas Czerner 
3728d863dc36SLukas Czerner 	if (!buffer_uptodate(bh)) {
3729d863dc36SLukas Czerner 		err = -EIO;
3730d863dc36SLukas Czerner 		ll_rw_block(READ, 1, &bh);
3731d863dc36SLukas Czerner 		wait_on_buffer(bh);
3732d863dc36SLukas Czerner 		/* Uhhuh. Read error. Complain and punt. */
3733d863dc36SLukas Czerner 		if (!buffer_uptodate(bh))
3734d863dc36SLukas Czerner 			goto unlock;
3735c9c7429cSMichael Halcrow 		if (S_ISREG(inode->i_mode) &&
3736c9c7429cSMichael Halcrow 		    ext4_encrypted_inode(inode)) {
3737c9c7429cSMichael Halcrow 			/* We expect the key to be set. */
3738c9c7429cSMichael Halcrow 			BUG_ON(!ext4_has_encryption_key(inode));
373909cbfeafSKirill A. Shutemov 			BUG_ON(blocksize != PAGE_SIZE);
37403684de8cSTheodore Ts'o 			WARN_ON_ONCE(ext4_decrypt(page));
3741c9c7429cSMichael Halcrow 		}
3742d863dc36SLukas Czerner 	}
3743d863dc36SLukas Czerner 	if (ext4_should_journal_data(inode)) {
3744d863dc36SLukas Czerner 		BUFFER_TRACE(bh, "get write access");
3745d863dc36SLukas Czerner 		err = ext4_journal_get_write_access(handle, bh);
3746d863dc36SLukas Czerner 		if (err)
3747d863dc36SLukas Czerner 			goto unlock;
3748d863dc36SLukas Czerner 	}
3749d863dc36SLukas Czerner 	zero_user(page, offset, length);
3750d863dc36SLukas Czerner 	BUFFER_TRACE(bh, "zeroed end of block");
3751d863dc36SLukas Czerner 
3752d863dc36SLukas Czerner 	if (ext4_should_journal_data(inode)) {
3753d863dc36SLukas Czerner 		err = ext4_handle_dirty_metadata(handle, inode, bh);
37540713ed0cSLukas Czerner 	} else {
3755353eefd3Sjon ernst 		err = 0;
3756d863dc36SLukas Czerner 		mark_buffer_dirty(bh);
37573957ef53SJan Kara 		if (ext4_should_order_data(inode))
3758ee0876bcSJan Kara 			err = ext4_jbd2_inode_add_write(handle, inode);
37590713ed0cSLukas Czerner 	}
3760d863dc36SLukas Czerner 
3761d863dc36SLukas Czerner unlock:
3762d863dc36SLukas Czerner 	unlock_page(page);
376309cbfeafSKirill A. Shutemov 	put_page(page);
3764d863dc36SLukas Czerner 	return err;
3765d863dc36SLukas Czerner }
3766d863dc36SLukas Czerner 
376794350ab5SMatthew Wilcox /*
3768923ae0ffSRoss Zwisler  * ext4_block_zero_page_range() zeros out a mapping of length 'length'
3769923ae0ffSRoss Zwisler  * starting from file offset 'from'.  The range to be zero'd must
3770923ae0ffSRoss Zwisler  * be contained with in one block.  If the specified range exceeds
3771923ae0ffSRoss Zwisler  * the end of the block it will be shortened to end of the block
3772923ae0ffSRoss Zwisler  * that cooresponds to 'from'
3773923ae0ffSRoss Zwisler  */
3774923ae0ffSRoss Zwisler static int ext4_block_zero_page_range(handle_t *handle,
3775923ae0ffSRoss Zwisler 		struct address_space *mapping, loff_t from, loff_t length)
3776923ae0ffSRoss Zwisler {
3777923ae0ffSRoss Zwisler 	struct inode *inode = mapping->host;
377809cbfeafSKirill A. Shutemov 	unsigned offset = from & (PAGE_SIZE-1);
3779923ae0ffSRoss Zwisler 	unsigned blocksize = inode->i_sb->s_blocksize;
3780923ae0ffSRoss Zwisler 	unsigned max = blocksize - (offset & (blocksize - 1));
3781923ae0ffSRoss Zwisler 
3782923ae0ffSRoss Zwisler 	/*
3783923ae0ffSRoss Zwisler 	 * correct length if it does not fall between
3784923ae0ffSRoss Zwisler 	 * 'from' and the end of the block
3785923ae0ffSRoss Zwisler 	 */
3786923ae0ffSRoss Zwisler 	if (length > max || length < 0)
3787923ae0ffSRoss Zwisler 		length = max;
3788923ae0ffSRoss Zwisler 
3789923ae0ffSRoss Zwisler 	if (IS_DAX(inode))
3790923ae0ffSRoss Zwisler 		return dax_zero_page_range(inode, from, length, ext4_get_block);
3791923ae0ffSRoss Zwisler 	return __ext4_block_zero_page_range(handle, mapping, from, length);
3792923ae0ffSRoss Zwisler }
3793923ae0ffSRoss Zwisler 
3794923ae0ffSRoss Zwisler /*
379594350ab5SMatthew Wilcox  * ext4_block_truncate_page() zeroes out a mapping from file offset `from'
379694350ab5SMatthew Wilcox  * up to the end of the block which corresponds to `from'.
379794350ab5SMatthew Wilcox  * This required during truncate. We need to physically zero the tail end
379894350ab5SMatthew Wilcox  * of that block so it doesn't yield old data if the file is later grown.
379994350ab5SMatthew Wilcox  */
3800c197855eSStephen Hemminger static int ext4_block_truncate_page(handle_t *handle,
380194350ab5SMatthew Wilcox 		struct address_space *mapping, loff_t from)
380294350ab5SMatthew Wilcox {
380309cbfeafSKirill A. Shutemov 	unsigned offset = from & (PAGE_SIZE-1);
380494350ab5SMatthew Wilcox 	unsigned length;
380594350ab5SMatthew Wilcox 	unsigned blocksize;
380694350ab5SMatthew Wilcox 	struct inode *inode = mapping->host;
380794350ab5SMatthew Wilcox 
380894350ab5SMatthew Wilcox 	blocksize = inode->i_sb->s_blocksize;
380994350ab5SMatthew Wilcox 	length = blocksize - (offset & (blocksize - 1));
381094350ab5SMatthew Wilcox 
381194350ab5SMatthew Wilcox 	return ext4_block_zero_page_range(handle, mapping, from, length);
381294350ab5SMatthew Wilcox }
381394350ab5SMatthew Wilcox 
3814a87dd18cSLukas Czerner int ext4_zero_partial_blocks(handle_t *handle, struct inode *inode,
3815a87dd18cSLukas Czerner 			     loff_t lstart, loff_t length)
3816a87dd18cSLukas Czerner {
3817a87dd18cSLukas Czerner 	struct super_block *sb = inode->i_sb;
3818a87dd18cSLukas Czerner 	struct address_space *mapping = inode->i_mapping;
3819e1be3a92SLukas Czerner 	unsigned partial_start, partial_end;
3820a87dd18cSLukas Czerner 	ext4_fsblk_t start, end;
3821a87dd18cSLukas Czerner 	loff_t byte_end = (lstart + length - 1);
3822a87dd18cSLukas Czerner 	int err = 0;
3823a87dd18cSLukas Czerner 
3824e1be3a92SLukas Czerner 	partial_start = lstart & (sb->s_blocksize - 1);
3825e1be3a92SLukas Czerner 	partial_end = byte_end & (sb->s_blocksize - 1);
3826e1be3a92SLukas Czerner 
3827a87dd18cSLukas Czerner 	start = lstart >> sb->s_blocksize_bits;
3828a87dd18cSLukas Czerner 	end = byte_end >> sb->s_blocksize_bits;
3829a87dd18cSLukas Czerner 
3830a87dd18cSLukas Czerner 	/* Handle partial zero within the single block */
3831e1be3a92SLukas Czerner 	if (start == end &&
3832e1be3a92SLukas Czerner 	    (partial_start || (partial_end != sb->s_blocksize - 1))) {
3833a87dd18cSLukas Czerner 		err = ext4_block_zero_page_range(handle, mapping,
3834a87dd18cSLukas Czerner 						 lstart, length);
3835a87dd18cSLukas Czerner 		return err;
3836a87dd18cSLukas Czerner 	}
3837a87dd18cSLukas Czerner 	/* Handle partial zero out on the start of the range */
3838e1be3a92SLukas Czerner 	if (partial_start) {
3839a87dd18cSLukas Czerner 		err = ext4_block_zero_page_range(handle, mapping,
3840a87dd18cSLukas Czerner 						 lstart, sb->s_blocksize);
3841a87dd18cSLukas Czerner 		if (err)
3842a87dd18cSLukas Czerner 			return err;
3843a87dd18cSLukas Czerner 	}
3844a87dd18cSLukas Czerner 	/* Handle partial zero out on the end of the range */
3845e1be3a92SLukas Czerner 	if (partial_end != sb->s_blocksize - 1)
3846a87dd18cSLukas Czerner 		err = ext4_block_zero_page_range(handle, mapping,
3847e1be3a92SLukas Czerner 						 byte_end - partial_end,
3848e1be3a92SLukas Czerner 						 partial_end + 1);
3849a87dd18cSLukas Czerner 	return err;
3850a87dd18cSLukas Czerner }
3851a87dd18cSLukas Czerner 
385291ef4cafSDuane Griffin int ext4_can_truncate(struct inode *inode)
385391ef4cafSDuane Griffin {
385491ef4cafSDuane Griffin 	if (S_ISREG(inode->i_mode))
385591ef4cafSDuane Griffin 		return 1;
385691ef4cafSDuane Griffin 	if (S_ISDIR(inode->i_mode))
385791ef4cafSDuane Griffin 		return 1;
385891ef4cafSDuane Griffin 	if (S_ISLNK(inode->i_mode))
385991ef4cafSDuane Griffin 		return !ext4_inode_is_fast_symlink(inode);
386091ef4cafSDuane Griffin 	return 0;
386191ef4cafSDuane Griffin }
386291ef4cafSDuane Griffin 
3863ac27a0ecSDave Kleikamp /*
386401127848SJan Kara  * We have to make sure i_disksize gets properly updated before we truncate
386501127848SJan Kara  * page cache due to hole punching or zero range. Otherwise i_disksize update
386601127848SJan Kara  * can get lost as it may have been postponed to submission of writeback but
386701127848SJan Kara  * that will never happen after we truncate page cache.
386801127848SJan Kara  */
386901127848SJan Kara int ext4_update_disksize_before_punch(struct inode *inode, loff_t offset,
387001127848SJan Kara 				      loff_t len)
387101127848SJan Kara {
387201127848SJan Kara 	handle_t *handle;
387301127848SJan Kara 	loff_t size = i_size_read(inode);
387401127848SJan Kara 
38755955102cSAl Viro 	WARN_ON(!inode_is_locked(inode));
387601127848SJan Kara 	if (offset > size || offset + len < size)
387701127848SJan Kara 		return 0;
387801127848SJan Kara 
387901127848SJan Kara 	if (EXT4_I(inode)->i_disksize >= size)
388001127848SJan Kara 		return 0;
388101127848SJan Kara 
388201127848SJan Kara 	handle = ext4_journal_start(inode, EXT4_HT_MISC, 1);
388301127848SJan Kara 	if (IS_ERR(handle))
388401127848SJan Kara 		return PTR_ERR(handle);
388501127848SJan Kara 	ext4_update_i_disksize(inode, size);
388601127848SJan Kara 	ext4_mark_inode_dirty(handle, inode);
388701127848SJan Kara 	ext4_journal_stop(handle);
388801127848SJan Kara 
388901127848SJan Kara 	return 0;
389001127848SJan Kara }
389101127848SJan Kara 
389201127848SJan Kara /*
3893a4bb6b64SAllison Henderson  * ext4_punch_hole: punches a hole in a file by releaseing the blocks
3894a4bb6b64SAllison Henderson  * associated with the given offset and length
3895a4bb6b64SAllison Henderson  *
3896a4bb6b64SAllison Henderson  * @inode:  File inode
3897a4bb6b64SAllison Henderson  * @offset: The offset where the hole will begin
3898a4bb6b64SAllison Henderson  * @len:    The length of the hole
3899a4bb6b64SAllison Henderson  *
39004907cb7bSAnatol Pomozov  * Returns: 0 on success or negative on failure
3901a4bb6b64SAllison Henderson  */
3902a4bb6b64SAllison Henderson 
3903aeb2817aSAshish Sangwan int ext4_punch_hole(struct inode *inode, loff_t offset, loff_t length)
3904a4bb6b64SAllison Henderson {
390526a4c0c6STheodore Ts'o 	struct super_block *sb = inode->i_sb;
390626a4c0c6STheodore Ts'o 	ext4_lblk_t first_block, stop_block;
390726a4c0c6STheodore Ts'o 	struct address_space *mapping = inode->i_mapping;
3908a87dd18cSLukas Czerner 	loff_t first_block_offset, last_block_offset;
390926a4c0c6STheodore Ts'o 	handle_t *handle;
391026a4c0c6STheodore Ts'o 	unsigned int credits;
391126a4c0c6STheodore Ts'o 	int ret = 0;
391226a4c0c6STheodore Ts'o 
3913a4bb6b64SAllison Henderson 	if (!S_ISREG(inode->i_mode))
391473355192SAllison Henderson 		return -EOPNOTSUPP;
3915a4bb6b64SAllison Henderson 
3916b8a86845SLukas Czerner 	trace_ext4_punch_hole(inode, offset, length, 0);
3917aaddea81SZheng Liu 
391826a4c0c6STheodore Ts'o 	/*
391926a4c0c6STheodore Ts'o 	 * Write out all dirty pages to avoid race conditions
392026a4c0c6STheodore Ts'o 	 * Then release them.
392126a4c0c6STheodore Ts'o 	 */
392226a4c0c6STheodore Ts'o 	if (mapping->nrpages && mapping_tagged(mapping, PAGECACHE_TAG_DIRTY)) {
392326a4c0c6STheodore Ts'o 		ret = filemap_write_and_wait_range(mapping, offset,
392426a4c0c6STheodore Ts'o 						   offset + length - 1);
392526a4c0c6STheodore Ts'o 		if (ret)
392626a4c0c6STheodore Ts'o 			return ret;
392726a4c0c6STheodore Ts'o 	}
392826a4c0c6STheodore Ts'o 
39295955102cSAl Viro 	inode_lock(inode);
39309ef06cecSLukas Czerner 
393126a4c0c6STheodore Ts'o 	/* No need to punch hole beyond i_size */
393226a4c0c6STheodore Ts'o 	if (offset >= inode->i_size)
393326a4c0c6STheodore Ts'o 		goto out_mutex;
393426a4c0c6STheodore Ts'o 
393526a4c0c6STheodore Ts'o 	/*
393626a4c0c6STheodore Ts'o 	 * If the hole extends beyond i_size, set the hole
393726a4c0c6STheodore Ts'o 	 * to end after the page that contains i_size
393826a4c0c6STheodore Ts'o 	 */
393926a4c0c6STheodore Ts'o 	if (offset + length > inode->i_size) {
394026a4c0c6STheodore Ts'o 		length = inode->i_size +
394109cbfeafSKirill A. Shutemov 		   PAGE_SIZE - (inode->i_size & (PAGE_SIZE - 1)) -
394226a4c0c6STheodore Ts'o 		   offset;
394326a4c0c6STheodore Ts'o 	}
394426a4c0c6STheodore Ts'o 
3945a361293fSJan Kara 	if (offset & (sb->s_blocksize - 1) ||
3946a361293fSJan Kara 	    (offset + length) & (sb->s_blocksize - 1)) {
3947a361293fSJan Kara 		/*
3948a361293fSJan Kara 		 * Attach jinode to inode for jbd2 if we do any zeroing of
3949a361293fSJan Kara 		 * partial block
3950a361293fSJan Kara 		 */
3951a361293fSJan Kara 		ret = ext4_inode_attach_jinode(inode);
3952a361293fSJan Kara 		if (ret < 0)
3953a361293fSJan Kara 			goto out_mutex;
3954a361293fSJan Kara 
3955a361293fSJan Kara 	}
3956a361293fSJan Kara 
3957ea3d7209SJan Kara 	/* Wait all existing dio workers, newcomers will block on i_mutex */
3958ea3d7209SJan Kara 	ext4_inode_block_unlocked_dio(inode);
3959ea3d7209SJan Kara 	inode_dio_wait(inode);
3960ea3d7209SJan Kara 
3961ea3d7209SJan Kara 	/*
3962ea3d7209SJan Kara 	 * Prevent page faults from reinstantiating pages we have released from
3963ea3d7209SJan Kara 	 * page cache.
3964ea3d7209SJan Kara 	 */
3965ea3d7209SJan Kara 	down_write(&EXT4_I(inode)->i_mmap_sem);
3966a87dd18cSLukas Czerner 	first_block_offset = round_up(offset, sb->s_blocksize);
3967a87dd18cSLukas Czerner 	last_block_offset = round_down((offset + length), sb->s_blocksize) - 1;
396826a4c0c6STheodore Ts'o 
3969a87dd18cSLukas Czerner 	/* Now release the pages and zero block aligned part of pages*/
397001127848SJan Kara 	if (last_block_offset > first_block_offset) {
397101127848SJan Kara 		ret = ext4_update_disksize_before_punch(inode, offset, length);
397201127848SJan Kara 		if (ret)
397301127848SJan Kara 			goto out_dio;
3974a87dd18cSLukas Czerner 		truncate_pagecache_range(inode, first_block_offset,
3975a87dd18cSLukas Czerner 					 last_block_offset);
397601127848SJan Kara 	}
397726a4c0c6STheodore Ts'o 
397826a4c0c6STheodore Ts'o 	if (ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS))
397926a4c0c6STheodore Ts'o 		credits = ext4_writepage_trans_blocks(inode);
398026a4c0c6STheodore Ts'o 	else
398126a4c0c6STheodore Ts'o 		credits = ext4_blocks_for_truncate(inode);
398226a4c0c6STheodore Ts'o 	handle = ext4_journal_start(inode, EXT4_HT_TRUNCATE, credits);
398326a4c0c6STheodore Ts'o 	if (IS_ERR(handle)) {
398426a4c0c6STheodore Ts'o 		ret = PTR_ERR(handle);
398526a4c0c6STheodore Ts'o 		ext4_std_error(sb, ret);
398626a4c0c6STheodore Ts'o 		goto out_dio;
398726a4c0c6STheodore Ts'o 	}
398826a4c0c6STheodore Ts'o 
3989a87dd18cSLukas Czerner 	ret = ext4_zero_partial_blocks(handle, inode, offset,
3990a87dd18cSLukas Czerner 				       length);
399126a4c0c6STheodore Ts'o 	if (ret)
399226a4c0c6STheodore Ts'o 		goto out_stop;
399326a4c0c6STheodore Ts'o 
399426a4c0c6STheodore Ts'o 	first_block = (offset + sb->s_blocksize - 1) >>
399526a4c0c6STheodore Ts'o 		EXT4_BLOCK_SIZE_BITS(sb);
399626a4c0c6STheodore Ts'o 	stop_block = (offset + length) >> EXT4_BLOCK_SIZE_BITS(sb);
399726a4c0c6STheodore Ts'o 
399826a4c0c6STheodore Ts'o 	/* If there are no blocks to remove, return now */
399926a4c0c6STheodore Ts'o 	if (first_block >= stop_block)
400026a4c0c6STheodore Ts'o 		goto out_stop;
400126a4c0c6STheodore Ts'o 
400226a4c0c6STheodore Ts'o 	down_write(&EXT4_I(inode)->i_data_sem);
400326a4c0c6STheodore Ts'o 	ext4_discard_preallocations(inode);
400426a4c0c6STheodore Ts'o 
400526a4c0c6STheodore Ts'o 	ret = ext4_es_remove_extent(inode, first_block,
400626a4c0c6STheodore Ts'o 				    stop_block - first_block);
400726a4c0c6STheodore Ts'o 	if (ret) {
400826a4c0c6STheodore Ts'o 		up_write(&EXT4_I(inode)->i_data_sem);
400926a4c0c6STheodore Ts'o 		goto out_stop;
401026a4c0c6STheodore Ts'o 	}
401126a4c0c6STheodore Ts'o 
401226a4c0c6STheodore Ts'o 	if (ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS))
401326a4c0c6STheodore Ts'o 		ret = ext4_ext_remove_space(inode, first_block,
401426a4c0c6STheodore Ts'o 					    stop_block - 1);
401526a4c0c6STheodore Ts'o 	else
40164f579ae7SLukas Czerner 		ret = ext4_ind_remove_space(handle, inode, first_block,
401726a4c0c6STheodore Ts'o 					    stop_block);
401826a4c0c6STheodore Ts'o 
4019819c4920STheodore Ts'o 	up_write(&EXT4_I(inode)->i_data_sem);
402026a4c0c6STheodore Ts'o 	if (IS_SYNC(inode))
402126a4c0c6STheodore Ts'o 		ext4_handle_sync(handle);
4022e251f9bcSMaxim Patlasov 
402326a4c0c6STheodore Ts'o 	inode->i_mtime = inode->i_ctime = ext4_current_time(inode);
402426a4c0c6STheodore Ts'o 	ext4_mark_inode_dirty(handle, inode);
402526a4c0c6STheodore Ts'o out_stop:
402626a4c0c6STheodore Ts'o 	ext4_journal_stop(handle);
402726a4c0c6STheodore Ts'o out_dio:
4028ea3d7209SJan Kara 	up_write(&EXT4_I(inode)->i_mmap_sem);
402926a4c0c6STheodore Ts'o 	ext4_inode_resume_unlocked_dio(inode);
403026a4c0c6STheodore Ts'o out_mutex:
40315955102cSAl Viro 	inode_unlock(inode);
403226a4c0c6STheodore Ts'o 	return ret;
4033a4bb6b64SAllison Henderson }
4034a4bb6b64SAllison Henderson 
4035a361293fSJan Kara int ext4_inode_attach_jinode(struct inode *inode)
4036a361293fSJan Kara {
4037a361293fSJan Kara 	struct ext4_inode_info *ei = EXT4_I(inode);
4038a361293fSJan Kara 	struct jbd2_inode *jinode;
4039a361293fSJan Kara 
4040a361293fSJan Kara 	if (ei->jinode || !EXT4_SB(inode->i_sb)->s_journal)
4041a361293fSJan Kara 		return 0;
4042a361293fSJan Kara 
4043a361293fSJan Kara 	jinode = jbd2_alloc_inode(GFP_KERNEL);
4044a361293fSJan Kara 	spin_lock(&inode->i_lock);
4045a361293fSJan Kara 	if (!ei->jinode) {
4046a361293fSJan Kara 		if (!jinode) {
4047a361293fSJan Kara 			spin_unlock(&inode->i_lock);
4048a361293fSJan Kara 			return -ENOMEM;
4049a361293fSJan Kara 		}
4050a361293fSJan Kara 		ei->jinode = jinode;
4051a361293fSJan Kara 		jbd2_journal_init_jbd_inode(ei->jinode, inode);
4052a361293fSJan Kara 		jinode = NULL;
4053a361293fSJan Kara 	}
4054a361293fSJan Kara 	spin_unlock(&inode->i_lock);
4055a361293fSJan Kara 	if (unlikely(jinode != NULL))
4056a361293fSJan Kara 		jbd2_free_inode(jinode);
4057a361293fSJan Kara 	return 0;
4058a361293fSJan Kara }
4059a361293fSJan Kara 
4060a4bb6b64SAllison Henderson /*
4061617ba13bSMingming Cao  * ext4_truncate()
4062ac27a0ecSDave Kleikamp  *
4063617ba13bSMingming Cao  * We block out ext4_get_block() block instantiations across the entire
4064617ba13bSMingming Cao  * transaction, and VFS/VM ensures that ext4_truncate() cannot run
4065ac27a0ecSDave Kleikamp  * simultaneously on behalf of the same inode.
4066ac27a0ecSDave Kleikamp  *
406742b2aa86SJustin P. Mattock  * As we work through the truncate and commit bits of it to the journal there
4068ac27a0ecSDave Kleikamp  * is one core, guiding principle: the file's tree must always be consistent on
4069ac27a0ecSDave Kleikamp  * disk.  We must be able to restart the truncate after a crash.
4070ac27a0ecSDave Kleikamp  *
4071ac27a0ecSDave Kleikamp  * The file's tree may be transiently inconsistent in memory (although it
4072ac27a0ecSDave Kleikamp  * probably isn't), but whenever we close off and commit a journal transaction,
4073ac27a0ecSDave Kleikamp  * the contents of (the filesystem + the journal) must be consistent and
4074ac27a0ecSDave Kleikamp  * restartable.  It's pretty simple, really: bottom up, right to left (although
4075ac27a0ecSDave Kleikamp  * left-to-right works OK too).
4076ac27a0ecSDave Kleikamp  *
4077ac27a0ecSDave Kleikamp  * Note that at recovery time, journal replay occurs *before* the restart of
4078ac27a0ecSDave Kleikamp  * truncate against the orphan inode list.
4079ac27a0ecSDave Kleikamp  *
4080ac27a0ecSDave Kleikamp  * The committed inode has the new, desired i_size (which is the same as
4081617ba13bSMingming Cao  * i_disksize in this case).  After a crash, ext4_orphan_cleanup() will see
4082ac27a0ecSDave Kleikamp  * that this inode's truncate did not complete and it will again call
4083617ba13bSMingming Cao  * ext4_truncate() to have another go.  So there will be instantiated blocks
4084617ba13bSMingming Cao  * to the right of the truncation point in a crashed ext4 filesystem.  But
4085ac27a0ecSDave Kleikamp  * that's fine - as long as they are linked from the inode, the post-crash
4086617ba13bSMingming Cao  * ext4_truncate() run will find them and release them.
4087ac27a0ecSDave Kleikamp  */
4088617ba13bSMingming Cao void ext4_truncate(struct inode *inode)
4089ac27a0ecSDave Kleikamp {
4090819c4920STheodore Ts'o 	struct ext4_inode_info *ei = EXT4_I(inode);
4091819c4920STheodore Ts'o 	unsigned int credits;
4092819c4920STheodore Ts'o 	handle_t *handle;
4093819c4920STheodore Ts'o 	struct address_space *mapping = inode->i_mapping;
4094819c4920STheodore Ts'o 
409519b5ef61STheodore Ts'o 	/*
409619b5ef61STheodore Ts'o 	 * There is a possibility that we're either freeing the inode
4097e04027e8SMatthew Wilcox 	 * or it's a completely new inode. In those cases we might not
409819b5ef61STheodore Ts'o 	 * have i_mutex locked because it's not necessary.
409919b5ef61STheodore Ts'o 	 */
410019b5ef61STheodore Ts'o 	if (!(inode->i_state & (I_NEW|I_FREEING)))
41015955102cSAl Viro 		WARN_ON(!inode_is_locked(inode));
41020562e0baSJiaying Zhang 	trace_ext4_truncate_enter(inode);
41030562e0baSJiaying Zhang 
410491ef4cafSDuane Griffin 	if (!ext4_can_truncate(inode))
4105ac27a0ecSDave Kleikamp 		return;
4106ac27a0ecSDave Kleikamp 
410712e9b892SDmitry Monakhov 	ext4_clear_inode_flag(inode, EXT4_INODE_EOFBLOCKS);
4108c8d46e41SJiaying Zhang 
41095534fb5bSTheodore Ts'o 	if (inode->i_size == 0 && !test_opt(inode->i_sb, NO_AUTO_DA_ALLOC))
411019f5fb7aSTheodore Ts'o 		ext4_set_inode_state(inode, EXT4_STATE_DA_ALLOC_CLOSE);
41117d8f9f7dSTheodore Ts'o 
4112aef1c851STao Ma 	if (ext4_has_inline_data(inode)) {
4113aef1c851STao Ma 		int has_inline = 1;
4114aef1c851STao Ma 
4115aef1c851STao Ma 		ext4_inline_data_truncate(inode, &has_inline);
4116aef1c851STao Ma 		if (has_inline)
4117aef1c851STao Ma 			return;
4118aef1c851STao Ma 	}
4119aef1c851STao Ma 
4120a361293fSJan Kara 	/* If we zero-out tail of the page, we have to create jinode for jbd2 */
4121a361293fSJan Kara 	if (inode->i_size & (inode->i_sb->s_blocksize - 1)) {
4122a361293fSJan Kara 		if (ext4_inode_attach_jinode(inode) < 0)
4123a361293fSJan Kara 			return;
4124a361293fSJan Kara 	}
4125a361293fSJan Kara 
4126ff9893dcSAmir Goldstein 	if (ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS))
4127819c4920STheodore Ts'o 		credits = ext4_writepage_trans_blocks(inode);
4128ff9893dcSAmir Goldstein 	else
4129819c4920STheodore Ts'o 		credits = ext4_blocks_for_truncate(inode);
4130819c4920STheodore Ts'o 
4131819c4920STheodore Ts'o 	handle = ext4_journal_start(inode, EXT4_HT_TRUNCATE, credits);
4132819c4920STheodore Ts'o 	if (IS_ERR(handle)) {
4133819c4920STheodore Ts'o 		ext4_std_error(inode->i_sb, PTR_ERR(handle));
4134819c4920STheodore Ts'o 		return;
4135819c4920STheodore Ts'o 	}
4136819c4920STheodore Ts'o 
4137eb3544c6SLukas Czerner 	if (inode->i_size & (inode->i_sb->s_blocksize - 1))
4138eb3544c6SLukas Czerner 		ext4_block_truncate_page(handle, mapping, inode->i_size);
4139819c4920STheodore Ts'o 
4140819c4920STheodore Ts'o 	/*
4141819c4920STheodore Ts'o 	 * We add the inode to the orphan list, so that if this
4142819c4920STheodore Ts'o 	 * truncate spans multiple transactions, and we crash, we will
4143819c4920STheodore Ts'o 	 * resume the truncate when the filesystem recovers.  It also
4144819c4920STheodore Ts'o 	 * marks the inode dirty, to catch the new size.
4145819c4920STheodore Ts'o 	 *
4146819c4920STheodore Ts'o 	 * Implication: the file must always be in a sane, consistent
4147819c4920STheodore Ts'o 	 * truncatable state while each transaction commits.
4148819c4920STheodore Ts'o 	 */
4149819c4920STheodore Ts'o 	if (ext4_orphan_add(handle, inode))
4150819c4920STheodore Ts'o 		goto out_stop;
4151819c4920STheodore Ts'o 
4152819c4920STheodore Ts'o 	down_write(&EXT4_I(inode)->i_data_sem);
4153819c4920STheodore Ts'o 
4154819c4920STheodore Ts'o 	ext4_discard_preallocations(inode);
4155819c4920STheodore Ts'o 
4156819c4920STheodore Ts'o 	if (ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS))
4157819c4920STheodore Ts'o 		ext4_ext_truncate(handle, inode);
4158819c4920STheodore Ts'o 	else
4159819c4920STheodore Ts'o 		ext4_ind_truncate(handle, inode);
4160819c4920STheodore Ts'o 
4161819c4920STheodore Ts'o 	up_write(&ei->i_data_sem);
4162819c4920STheodore Ts'o 
4163819c4920STheodore Ts'o 	if (IS_SYNC(inode))
4164819c4920STheodore Ts'o 		ext4_handle_sync(handle);
4165819c4920STheodore Ts'o 
4166819c4920STheodore Ts'o out_stop:
4167819c4920STheodore Ts'o 	/*
4168819c4920STheodore Ts'o 	 * If this was a simple ftruncate() and the file will remain alive,
4169819c4920STheodore Ts'o 	 * then we need to clear up the orphan record which we created above.
4170819c4920STheodore Ts'o 	 * However, if this was a real unlink then we were called by
417158d86a50SWang Shilong 	 * ext4_evict_inode(), and we allow that function to clean up the
4172819c4920STheodore Ts'o 	 * orphan info for us.
4173819c4920STheodore Ts'o 	 */
4174819c4920STheodore Ts'o 	if (inode->i_nlink)
4175819c4920STheodore Ts'o 		ext4_orphan_del(handle, inode);
4176819c4920STheodore Ts'o 
4177819c4920STheodore Ts'o 	inode->i_mtime = inode->i_ctime = ext4_current_time(inode);
4178819c4920STheodore Ts'o 	ext4_mark_inode_dirty(handle, inode);
4179819c4920STheodore Ts'o 	ext4_journal_stop(handle);
4180a86c6181SAlex Tomas 
41810562e0baSJiaying Zhang 	trace_ext4_truncate_exit(inode);
4182ac27a0ecSDave Kleikamp }
4183ac27a0ecSDave Kleikamp 
4184ac27a0ecSDave Kleikamp /*
4185617ba13bSMingming Cao  * ext4_get_inode_loc returns with an extra refcount against the inode's
4186ac27a0ecSDave Kleikamp  * underlying buffer_head on success. If 'in_mem' is true, we have all
4187ac27a0ecSDave Kleikamp  * data in memory that is needed to recreate the on-disk version of this
4188ac27a0ecSDave Kleikamp  * inode.
4189ac27a0ecSDave Kleikamp  */
4190617ba13bSMingming Cao static int __ext4_get_inode_loc(struct inode *inode,
4191617ba13bSMingming Cao 				struct ext4_iloc *iloc, int in_mem)
4192ac27a0ecSDave Kleikamp {
4193240799cdSTheodore Ts'o 	struct ext4_group_desc	*gdp;
4194ac27a0ecSDave Kleikamp 	struct buffer_head	*bh;
4195240799cdSTheodore Ts'o 	struct super_block	*sb = inode->i_sb;
4196240799cdSTheodore Ts'o 	ext4_fsblk_t		block;
4197240799cdSTheodore Ts'o 	int			inodes_per_block, inode_offset;
4198ac27a0ecSDave Kleikamp 
41993a06d778SAneesh Kumar K.V 	iloc->bh = NULL;
4200240799cdSTheodore Ts'o 	if (!ext4_valid_inum(sb, inode->i_ino))
42016a797d27SDarrick J. Wong 		return -EFSCORRUPTED;
4202ac27a0ecSDave Kleikamp 
4203240799cdSTheodore Ts'o 	iloc->block_group = (inode->i_ino - 1) / EXT4_INODES_PER_GROUP(sb);
4204240799cdSTheodore Ts'o 	gdp = ext4_get_group_desc(sb, iloc->block_group, NULL);
4205240799cdSTheodore Ts'o 	if (!gdp)
4206240799cdSTheodore Ts'o 		return -EIO;
4207240799cdSTheodore Ts'o 
4208240799cdSTheodore Ts'o 	/*
4209240799cdSTheodore Ts'o 	 * Figure out the offset within the block group inode table
4210240799cdSTheodore Ts'o 	 */
421100d09882STao Ma 	inodes_per_block = EXT4_SB(sb)->s_inodes_per_block;
4212240799cdSTheodore Ts'o 	inode_offset = ((inode->i_ino - 1) %
4213240799cdSTheodore Ts'o 			EXT4_INODES_PER_GROUP(sb));
4214240799cdSTheodore Ts'o 	block = ext4_inode_table(sb, gdp) + (inode_offset / inodes_per_block);
4215240799cdSTheodore Ts'o 	iloc->offset = (inode_offset % inodes_per_block) * EXT4_INODE_SIZE(sb);
4216240799cdSTheodore Ts'o 
4217240799cdSTheodore Ts'o 	bh = sb_getblk(sb, block);
4218aebf0243SWang Shilong 	if (unlikely(!bh))
4219860d21e2STheodore Ts'o 		return -ENOMEM;
4220ac27a0ecSDave Kleikamp 	if (!buffer_uptodate(bh)) {
4221ac27a0ecSDave Kleikamp 		lock_buffer(bh);
42229c83a923SHidehiro Kawai 
42239c83a923SHidehiro Kawai 		/*
42249c83a923SHidehiro Kawai 		 * If the buffer has the write error flag, we have failed
42259c83a923SHidehiro Kawai 		 * to write out another inode in the same block.  In this
42269c83a923SHidehiro Kawai 		 * case, we don't have to read the block because we may
42279c83a923SHidehiro Kawai 		 * read the old inode data successfully.
42289c83a923SHidehiro Kawai 		 */
42299c83a923SHidehiro Kawai 		if (buffer_write_io_error(bh) && !buffer_uptodate(bh))
42309c83a923SHidehiro Kawai 			set_buffer_uptodate(bh);
42319c83a923SHidehiro Kawai 
4232ac27a0ecSDave Kleikamp 		if (buffer_uptodate(bh)) {
4233ac27a0ecSDave Kleikamp 			/* someone brought it uptodate while we waited */
4234ac27a0ecSDave Kleikamp 			unlock_buffer(bh);
4235ac27a0ecSDave Kleikamp 			goto has_buffer;
4236ac27a0ecSDave Kleikamp 		}
4237ac27a0ecSDave Kleikamp 
4238ac27a0ecSDave Kleikamp 		/*
4239ac27a0ecSDave Kleikamp 		 * If we have all information of the inode in memory and this
4240ac27a0ecSDave Kleikamp 		 * is the only valid inode in the block, we need not read the
4241ac27a0ecSDave Kleikamp 		 * block.
4242ac27a0ecSDave Kleikamp 		 */
4243ac27a0ecSDave Kleikamp 		if (in_mem) {
4244ac27a0ecSDave Kleikamp 			struct buffer_head *bitmap_bh;
4245240799cdSTheodore Ts'o 			int i, start;
4246ac27a0ecSDave Kleikamp 
4247240799cdSTheodore Ts'o 			start = inode_offset & ~(inodes_per_block - 1);
4248ac27a0ecSDave Kleikamp 
4249ac27a0ecSDave Kleikamp 			/* Is the inode bitmap in cache? */
4250240799cdSTheodore Ts'o 			bitmap_bh = sb_getblk(sb, ext4_inode_bitmap(sb, gdp));
4251aebf0243SWang Shilong 			if (unlikely(!bitmap_bh))
4252ac27a0ecSDave Kleikamp 				goto make_io;
4253ac27a0ecSDave Kleikamp 
4254ac27a0ecSDave Kleikamp 			/*
4255ac27a0ecSDave Kleikamp 			 * If the inode bitmap isn't in cache then the
4256ac27a0ecSDave Kleikamp 			 * optimisation may end up performing two reads instead
4257ac27a0ecSDave Kleikamp 			 * of one, so skip it.
4258ac27a0ecSDave Kleikamp 			 */
4259ac27a0ecSDave Kleikamp 			if (!buffer_uptodate(bitmap_bh)) {
4260ac27a0ecSDave Kleikamp 				brelse(bitmap_bh);
4261ac27a0ecSDave Kleikamp 				goto make_io;
4262ac27a0ecSDave Kleikamp 			}
4263240799cdSTheodore Ts'o 			for (i = start; i < start + inodes_per_block; i++) {
4264ac27a0ecSDave Kleikamp 				if (i == inode_offset)
4265ac27a0ecSDave Kleikamp 					continue;
4266617ba13bSMingming Cao 				if (ext4_test_bit(i, bitmap_bh->b_data))
4267ac27a0ecSDave Kleikamp 					break;
4268ac27a0ecSDave Kleikamp 			}
4269ac27a0ecSDave Kleikamp 			brelse(bitmap_bh);
4270240799cdSTheodore Ts'o 			if (i == start + inodes_per_block) {
4271ac27a0ecSDave Kleikamp 				/* all other inodes are free, so skip I/O */
4272ac27a0ecSDave Kleikamp 				memset(bh->b_data, 0, bh->b_size);
4273ac27a0ecSDave Kleikamp 				set_buffer_uptodate(bh);
4274ac27a0ecSDave Kleikamp 				unlock_buffer(bh);
4275ac27a0ecSDave Kleikamp 				goto has_buffer;
4276ac27a0ecSDave Kleikamp 			}
4277ac27a0ecSDave Kleikamp 		}
4278ac27a0ecSDave Kleikamp 
4279ac27a0ecSDave Kleikamp make_io:
4280ac27a0ecSDave Kleikamp 		/*
4281240799cdSTheodore Ts'o 		 * If we need to do any I/O, try to pre-readahead extra
4282240799cdSTheodore Ts'o 		 * blocks from the inode table.
4283240799cdSTheodore Ts'o 		 */
4284240799cdSTheodore Ts'o 		if (EXT4_SB(sb)->s_inode_readahead_blks) {
4285240799cdSTheodore Ts'o 			ext4_fsblk_t b, end, table;
4286240799cdSTheodore Ts'o 			unsigned num;
42870d606e2cSTheodore Ts'o 			__u32 ra_blks = EXT4_SB(sb)->s_inode_readahead_blks;
4288240799cdSTheodore Ts'o 
4289240799cdSTheodore Ts'o 			table = ext4_inode_table(sb, gdp);
4290b713a5ecSTheodore Ts'o 			/* s_inode_readahead_blks is always a power of 2 */
42910d606e2cSTheodore Ts'o 			b = block & ~((ext4_fsblk_t) ra_blks - 1);
4292240799cdSTheodore Ts'o 			if (table > b)
4293240799cdSTheodore Ts'o 				b = table;
42940d606e2cSTheodore Ts'o 			end = b + ra_blks;
4295240799cdSTheodore Ts'o 			num = EXT4_INODES_PER_GROUP(sb);
4296feb0ab32SDarrick J. Wong 			if (ext4_has_group_desc_csum(sb))
4297560671a0SAneesh Kumar K.V 				num -= ext4_itable_unused_count(sb, gdp);
4298240799cdSTheodore Ts'o 			table += num / inodes_per_block;
4299240799cdSTheodore Ts'o 			if (end > table)
4300240799cdSTheodore Ts'o 				end = table;
4301240799cdSTheodore Ts'o 			while (b <= end)
4302240799cdSTheodore Ts'o 				sb_breadahead(sb, b++);
4303240799cdSTheodore Ts'o 		}
4304240799cdSTheodore Ts'o 
4305240799cdSTheodore Ts'o 		/*
4306ac27a0ecSDave Kleikamp 		 * There are other valid inodes in the buffer, this inode
4307ac27a0ecSDave Kleikamp 		 * has in-inode xattrs, or we don't have this inode in memory.
4308ac27a0ecSDave Kleikamp 		 * Read the block from disk.
4309ac27a0ecSDave Kleikamp 		 */
43100562e0baSJiaying Zhang 		trace_ext4_load_inode(inode);
4311ac27a0ecSDave Kleikamp 		get_bh(bh);
4312ac27a0ecSDave Kleikamp 		bh->b_end_io = end_buffer_read_sync;
431365299a3bSChristoph Hellwig 		submit_bh(READ | REQ_META | REQ_PRIO, bh);
4314ac27a0ecSDave Kleikamp 		wait_on_buffer(bh);
4315ac27a0ecSDave Kleikamp 		if (!buffer_uptodate(bh)) {
4316c398eda0STheodore Ts'o 			EXT4_ERROR_INODE_BLOCK(inode, block,
4317c398eda0STheodore Ts'o 					       "unable to read itable block");
4318ac27a0ecSDave Kleikamp 			brelse(bh);
4319ac27a0ecSDave Kleikamp 			return -EIO;
4320ac27a0ecSDave Kleikamp 		}
4321ac27a0ecSDave Kleikamp 	}
4322ac27a0ecSDave Kleikamp has_buffer:
4323ac27a0ecSDave Kleikamp 	iloc->bh = bh;
4324ac27a0ecSDave Kleikamp 	return 0;
4325ac27a0ecSDave Kleikamp }
4326ac27a0ecSDave Kleikamp 
4327617ba13bSMingming Cao int ext4_get_inode_loc(struct inode *inode, struct ext4_iloc *iloc)
4328ac27a0ecSDave Kleikamp {
4329ac27a0ecSDave Kleikamp 	/* We have all inode data except xattrs in memory here. */
4330617ba13bSMingming Cao 	return __ext4_get_inode_loc(inode, iloc,
433119f5fb7aSTheodore Ts'o 		!ext4_test_inode_state(inode, EXT4_STATE_XATTR));
4332ac27a0ecSDave Kleikamp }
4333ac27a0ecSDave Kleikamp 
4334617ba13bSMingming Cao void ext4_set_inode_flags(struct inode *inode)
4335ac27a0ecSDave Kleikamp {
4336617ba13bSMingming Cao 	unsigned int flags = EXT4_I(inode)->i_flags;
433700a1a053STheodore Ts'o 	unsigned int new_fl = 0;
4338ac27a0ecSDave Kleikamp 
4339617ba13bSMingming Cao 	if (flags & EXT4_SYNC_FL)
434000a1a053STheodore Ts'o 		new_fl |= S_SYNC;
4341617ba13bSMingming Cao 	if (flags & EXT4_APPEND_FL)
434200a1a053STheodore Ts'o 		new_fl |= S_APPEND;
4343617ba13bSMingming Cao 	if (flags & EXT4_IMMUTABLE_FL)
434400a1a053STheodore Ts'o 		new_fl |= S_IMMUTABLE;
4345617ba13bSMingming Cao 	if (flags & EXT4_NOATIME_FL)
434600a1a053STheodore Ts'o 		new_fl |= S_NOATIME;
4347617ba13bSMingming Cao 	if (flags & EXT4_DIRSYNC_FL)
434800a1a053STheodore Ts'o 		new_fl |= S_DIRSYNC;
43490a6cf913SRoss Zwisler 	if (test_opt(inode->i_sb, DAX) && S_ISREG(inode->i_mode))
4350923ae0ffSRoss Zwisler 		new_fl |= S_DAX;
43515f16f322STheodore Ts'o 	inode_set_flags(inode, new_fl,
4352923ae0ffSRoss Zwisler 			S_SYNC|S_APPEND|S_IMMUTABLE|S_NOATIME|S_DIRSYNC|S_DAX);
4353ac27a0ecSDave Kleikamp }
4354ac27a0ecSDave Kleikamp 
4355ff9ddf7eSJan Kara /* Propagate flags from i_flags to EXT4_I(inode)->i_flags */
4356ff9ddf7eSJan Kara void ext4_get_inode_flags(struct ext4_inode_info *ei)
4357ff9ddf7eSJan Kara {
435884a8dce2SDmitry Monakhov 	unsigned int vfs_fl;
435984a8dce2SDmitry Monakhov 	unsigned long old_fl, new_fl;
4360ff9ddf7eSJan Kara 
436184a8dce2SDmitry Monakhov 	do {
436284a8dce2SDmitry Monakhov 		vfs_fl = ei->vfs_inode.i_flags;
436384a8dce2SDmitry Monakhov 		old_fl = ei->i_flags;
436484a8dce2SDmitry Monakhov 		new_fl = old_fl & ~(EXT4_SYNC_FL|EXT4_APPEND_FL|
436584a8dce2SDmitry Monakhov 				EXT4_IMMUTABLE_FL|EXT4_NOATIME_FL|
436684a8dce2SDmitry Monakhov 				EXT4_DIRSYNC_FL);
436784a8dce2SDmitry Monakhov 		if (vfs_fl & S_SYNC)
436884a8dce2SDmitry Monakhov 			new_fl |= EXT4_SYNC_FL;
436984a8dce2SDmitry Monakhov 		if (vfs_fl & S_APPEND)
437084a8dce2SDmitry Monakhov 			new_fl |= EXT4_APPEND_FL;
437184a8dce2SDmitry Monakhov 		if (vfs_fl & S_IMMUTABLE)
437284a8dce2SDmitry Monakhov 			new_fl |= EXT4_IMMUTABLE_FL;
437384a8dce2SDmitry Monakhov 		if (vfs_fl & S_NOATIME)
437484a8dce2SDmitry Monakhov 			new_fl |= EXT4_NOATIME_FL;
437584a8dce2SDmitry Monakhov 		if (vfs_fl & S_DIRSYNC)
437684a8dce2SDmitry Monakhov 			new_fl |= EXT4_DIRSYNC_FL;
437784a8dce2SDmitry Monakhov 	} while (cmpxchg(&ei->i_flags, old_fl, new_fl) != old_fl);
4378ff9ddf7eSJan Kara }
4379de9a55b8STheodore Ts'o 
43800fc1b451SAneesh Kumar K.V static blkcnt_t ext4_inode_blocks(struct ext4_inode *raw_inode,
43810fc1b451SAneesh Kumar K.V 				  struct ext4_inode_info *ei)
43820fc1b451SAneesh Kumar K.V {
43830fc1b451SAneesh Kumar K.V 	blkcnt_t i_blocks ;
43848180a562SAneesh Kumar K.V 	struct inode *inode = &(ei->vfs_inode);
43858180a562SAneesh Kumar K.V 	struct super_block *sb = inode->i_sb;
43860fc1b451SAneesh Kumar K.V 
4387e2b911c5SDarrick J. Wong 	if (ext4_has_feature_huge_file(sb)) {
43880fc1b451SAneesh Kumar K.V 		/* we are using combined 48 bit field */
43890fc1b451SAneesh Kumar K.V 		i_blocks = ((u64)le16_to_cpu(raw_inode->i_blocks_high)) << 32 |
43900fc1b451SAneesh Kumar K.V 					le32_to_cpu(raw_inode->i_blocks_lo);
439107a03824STheodore Ts'o 		if (ext4_test_inode_flag(inode, EXT4_INODE_HUGE_FILE)) {
43928180a562SAneesh Kumar K.V 			/* i_blocks represent file system block size */
43938180a562SAneesh Kumar K.V 			return i_blocks  << (inode->i_blkbits - 9);
43948180a562SAneesh Kumar K.V 		} else {
43950fc1b451SAneesh Kumar K.V 			return i_blocks;
43968180a562SAneesh Kumar K.V 		}
43970fc1b451SAneesh Kumar K.V 	} else {
43980fc1b451SAneesh Kumar K.V 		return le32_to_cpu(raw_inode->i_blocks_lo);
43990fc1b451SAneesh Kumar K.V 	}
44000fc1b451SAneesh Kumar K.V }
4401ff9ddf7eSJan Kara 
4402152a7b0aSTao Ma static inline void ext4_iget_extra_inode(struct inode *inode,
4403152a7b0aSTao Ma 					 struct ext4_inode *raw_inode,
4404152a7b0aSTao Ma 					 struct ext4_inode_info *ei)
4405152a7b0aSTao Ma {
4406152a7b0aSTao Ma 	__le32 *magic = (void *)raw_inode +
4407152a7b0aSTao Ma 			EXT4_GOOD_OLD_INODE_SIZE + ei->i_extra_isize;
440867cf5b09STao Ma 	if (*magic == cpu_to_le32(EXT4_XATTR_MAGIC)) {
4409152a7b0aSTao Ma 		ext4_set_inode_state(inode, EXT4_STATE_XATTR);
441067cf5b09STao Ma 		ext4_find_inline_data_nolock(inode);
4411f19d5870STao Ma 	} else
4412f19d5870STao Ma 		EXT4_I(inode)->i_inline_off = 0;
4413152a7b0aSTao Ma }
4414152a7b0aSTao Ma 
4415040cb378SLi Xi int ext4_get_projid(struct inode *inode, kprojid_t *projid)
4416040cb378SLi Xi {
4417040cb378SLi Xi 	if (!EXT4_HAS_RO_COMPAT_FEATURE(inode->i_sb, EXT4_FEATURE_RO_COMPAT_PROJECT))
4418040cb378SLi Xi 		return -EOPNOTSUPP;
4419040cb378SLi Xi 	*projid = EXT4_I(inode)->i_projid;
4420040cb378SLi Xi 	return 0;
4421040cb378SLi Xi }
4422040cb378SLi Xi 
44231d1fe1eeSDavid Howells struct inode *ext4_iget(struct super_block *sb, unsigned long ino)
4424ac27a0ecSDave Kleikamp {
4425617ba13bSMingming Cao 	struct ext4_iloc iloc;
4426617ba13bSMingming Cao 	struct ext4_inode *raw_inode;
44271d1fe1eeSDavid Howells 	struct ext4_inode_info *ei;
44281d1fe1eeSDavid Howells 	struct inode *inode;
4429b436b9beSJan Kara 	journal_t *journal = EXT4_SB(sb)->s_journal;
44301d1fe1eeSDavid Howells 	long ret;
4431ac27a0ecSDave Kleikamp 	int block;
443208cefc7aSEric W. Biederman 	uid_t i_uid;
443308cefc7aSEric W. Biederman 	gid_t i_gid;
4434040cb378SLi Xi 	projid_t i_projid;
4435ac27a0ecSDave Kleikamp 
44361d1fe1eeSDavid Howells 	inode = iget_locked(sb, ino);
44371d1fe1eeSDavid Howells 	if (!inode)
44381d1fe1eeSDavid Howells 		return ERR_PTR(-ENOMEM);
44391d1fe1eeSDavid Howells 	if (!(inode->i_state & I_NEW))
44401d1fe1eeSDavid Howells 		return inode;
44411d1fe1eeSDavid Howells 
44421d1fe1eeSDavid Howells 	ei = EXT4_I(inode);
44437dc57615SPeter Huewe 	iloc.bh = NULL;
4444ac27a0ecSDave Kleikamp 
44451d1fe1eeSDavid Howells 	ret = __ext4_get_inode_loc(inode, &iloc, 0);
44461d1fe1eeSDavid Howells 	if (ret < 0)
4447ac27a0ecSDave Kleikamp 		goto bad_inode;
4448617ba13bSMingming Cao 	raw_inode = ext4_raw_inode(&iloc);
4449814525f4SDarrick J. Wong 
4450814525f4SDarrick J. Wong 	if (EXT4_INODE_SIZE(inode->i_sb) > EXT4_GOOD_OLD_INODE_SIZE) {
4451814525f4SDarrick J. Wong 		ei->i_extra_isize = le16_to_cpu(raw_inode->i_extra_isize);
4452814525f4SDarrick J. Wong 		if (EXT4_GOOD_OLD_INODE_SIZE + ei->i_extra_isize >
4453814525f4SDarrick J. Wong 		    EXT4_INODE_SIZE(inode->i_sb)) {
4454814525f4SDarrick J. Wong 			EXT4_ERROR_INODE(inode, "bad extra_isize (%u != %u)",
4455814525f4SDarrick J. Wong 				EXT4_GOOD_OLD_INODE_SIZE + ei->i_extra_isize,
4456814525f4SDarrick J. Wong 				EXT4_INODE_SIZE(inode->i_sb));
44576a797d27SDarrick J. Wong 			ret = -EFSCORRUPTED;
4458814525f4SDarrick J. Wong 			goto bad_inode;
4459814525f4SDarrick J. Wong 		}
4460814525f4SDarrick J. Wong 	} else
4461814525f4SDarrick J. Wong 		ei->i_extra_isize = 0;
4462814525f4SDarrick J. Wong 
4463814525f4SDarrick J. Wong 	/* Precompute checksum seed for inode metadata */
44649aa5d32bSDmitry Monakhov 	if (ext4_has_metadata_csum(sb)) {
4465814525f4SDarrick J. Wong 		struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb);
4466814525f4SDarrick J. Wong 		__u32 csum;
4467814525f4SDarrick J. Wong 		__le32 inum = cpu_to_le32(inode->i_ino);
4468814525f4SDarrick J. Wong 		__le32 gen = raw_inode->i_generation;
4469814525f4SDarrick J. Wong 		csum = ext4_chksum(sbi, sbi->s_csum_seed, (__u8 *)&inum,
4470814525f4SDarrick J. Wong 				   sizeof(inum));
4471814525f4SDarrick J. Wong 		ei->i_csum_seed = ext4_chksum(sbi, csum, (__u8 *)&gen,
4472814525f4SDarrick J. Wong 					      sizeof(gen));
4473814525f4SDarrick J. Wong 	}
4474814525f4SDarrick J. Wong 
4475814525f4SDarrick J. Wong 	if (!ext4_inode_csum_verify(inode, raw_inode, ei)) {
4476814525f4SDarrick J. Wong 		EXT4_ERROR_INODE(inode, "checksum invalid");
44776a797d27SDarrick J. Wong 		ret = -EFSBADCRC;
4478814525f4SDarrick J. Wong 		goto bad_inode;
4479814525f4SDarrick J. Wong 	}
4480814525f4SDarrick J. Wong 
4481ac27a0ecSDave Kleikamp 	inode->i_mode = le16_to_cpu(raw_inode->i_mode);
448208cefc7aSEric W. Biederman 	i_uid = (uid_t)le16_to_cpu(raw_inode->i_uid_low);
448308cefc7aSEric W. Biederman 	i_gid = (gid_t)le16_to_cpu(raw_inode->i_gid_low);
4484040cb378SLi Xi 	if (EXT4_HAS_RO_COMPAT_FEATURE(sb, EXT4_FEATURE_RO_COMPAT_PROJECT) &&
4485040cb378SLi Xi 	    EXT4_INODE_SIZE(sb) > EXT4_GOOD_OLD_INODE_SIZE &&
4486040cb378SLi Xi 	    EXT4_FITS_IN_INODE(raw_inode, ei, i_projid))
4487040cb378SLi Xi 		i_projid = (projid_t)le32_to_cpu(raw_inode->i_projid);
4488040cb378SLi Xi 	else
4489040cb378SLi Xi 		i_projid = EXT4_DEF_PROJID;
4490040cb378SLi Xi 
4491ac27a0ecSDave Kleikamp 	if (!(test_opt(inode->i_sb, NO_UID32))) {
449208cefc7aSEric W. Biederman 		i_uid |= le16_to_cpu(raw_inode->i_uid_high) << 16;
449308cefc7aSEric W. Biederman 		i_gid |= le16_to_cpu(raw_inode->i_gid_high) << 16;
4494ac27a0ecSDave Kleikamp 	}
449508cefc7aSEric W. Biederman 	i_uid_write(inode, i_uid);
449608cefc7aSEric W. Biederman 	i_gid_write(inode, i_gid);
4497040cb378SLi Xi 	ei->i_projid = make_kprojid(&init_user_ns, i_projid);
4498bfe86848SMiklos Szeredi 	set_nlink(inode, le16_to_cpu(raw_inode->i_links_count));
4499ac27a0ecSDave Kleikamp 
4500353eb83cSTheodore Ts'o 	ext4_clear_state_flags(ei);	/* Only relevant on 32-bit archs */
450167cf5b09STao Ma 	ei->i_inline_off = 0;
4502ac27a0ecSDave Kleikamp 	ei->i_dir_start_lookup = 0;
4503ac27a0ecSDave Kleikamp 	ei->i_dtime = le32_to_cpu(raw_inode->i_dtime);
4504ac27a0ecSDave Kleikamp 	/* We now have enough fields to check if the inode was active or not.
4505ac27a0ecSDave Kleikamp 	 * This is needed because nfsd might try to access dead inodes
4506ac27a0ecSDave Kleikamp 	 * the test is that same one that e2fsck uses
4507ac27a0ecSDave Kleikamp 	 * NeilBrown 1999oct15
4508ac27a0ecSDave Kleikamp 	 */
4509ac27a0ecSDave Kleikamp 	if (inode->i_nlink == 0) {
4510393d1d1dSDr. Tilmann Bubeck 		if ((inode->i_mode == 0 ||
4511393d1d1dSDr. Tilmann Bubeck 		     !(EXT4_SB(inode->i_sb)->s_mount_state & EXT4_ORPHAN_FS)) &&
4512393d1d1dSDr. Tilmann Bubeck 		    ino != EXT4_BOOT_LOADER_INO) {
4513ac27a0ecSDave Kleikamp 			/* this inode is deleted */
45141d1fe1eeSDavid Howells 			ret = -ESTALE;
4515ac27a0ecSDave Kleikamp 			goto bad_inode;
4516ac27a0ecSDave Kleikamp 		}
4517ac27a0ecSDave Kleikamp 		/* The only unlinked inodes we let through here have
4518ac27a0ecSDave Kleikamp 		 * valid i_mode and are being read by the orphan
4519ac27a0ecSDave Kleikamp 		 * recovery code: that's fine, we're about to complete
4520393d1d1dSDr. Tilmann Bubeck 		 * the process of deleting those.
4521393d1d1dSDr. Tilmann Bubeck 		 * OR it is the EXT4_BOOT_LOADER_INO which is
4522393d1d1dSDr. Tilmann Bubeck 		 * not initialized on a new filesystem. */
4523ac27a0ecSDave Kleikamp 	}
4524ac27a0ecSDave Kleikamp 	ei->i_flags = le32_to_cpu(raw_inode->i_flags);
45250fc1b451SAneesh Kumar K.V 	inode->i_blocks = ext4_inode_blocks(raw_inode, ei);
45267973c0c1SAneesh Kumar K.V 	ei->i_file_acl = le32_to_cpu(raw_inode->i_file_acl_lo);
4527e2b911c5SDarrick J. Wong 	if (ext4_has_feature_64bit(sb))
4528a1ddeb7eSBadari Pulavarty 		ei->i_file_acl |=
4529a1ddeb7eSBadari Pulavarty 			((__u64)le16_to_cpu(raw_inode->i_file_acl_high)) << 32;
4530a48380f7SAneesh Kumar K.V 	inode->i_size = ext4_isize(raw_inode);
4531ac27a0ecSDave Kleikamp 	ei->i_disksize = inode->i_size;
4532a9e7f447SDmitry Monakhov #ifdef CONFIG_QUOTA
4533a9e7f447SDmitry Monakhov 	ei->i_reserved_quota = 0;
4534a9e7f447SDmitry Monakhov #endif
4535ac27a0ecSDave Kleikamp 	inode->i_generation = le32_to_cpu(raw_inode->i_generation);
4536ac27a0ecSDave Kleikamp 	ei->i_block_group = iloc.block_group;
4537a4912123STheodore Ts'o 	ei->i_last_alloc_group = ~0;
4538ac27a0ecSDave Kleikamp 	/*
4539ac27a0ecSDave Kleikamp 	 * NOTE! The in-memory inode i_data array is in little-endian order
4540ac27a0ecSDave Kleikamp 	 * even on big-endian machines: we do NOT byteswap the block numbers!
4541ac27a0ecSDave Kleikamp 	 */
4542617ba13bSMingming Cao 	for (block = 0; block < EXT4_N_BLOCKS; block++)
4543ac27a0ecSDave Kleikamp 		ei->i_data[block] = raw_inode->i_block[block];
4544ac27a0ecSDave Kleikamp 	INIT_LIST_HEAD(&ei->i_orphan);
4545ac27a0ecSDave Kleikamp 
4546b436b9beSJan Kara 	/*
4547b436b9beSJan Kara 	 * Set transaction id's of transactions that have to be committed
4548b436b9beSJan Kara 	 * to finish f[data]sync. We set them to currently running transaction
4549b436b9beSJan Kara 	 * as we cannot be sure that the inode or some of its metadata isn't
4550b436b9beSJan Kara 	 * part of the transaction - the inode could have been reclaimed and
4551b436b9beSJan Kara 	 * now it is reread from disk.
4552b436b9beSJan Kara 	 */
4553b436b9beSJan Kara 	if (journal) {
4554b436b9beSJan Kara 		transaction_t *transaction;
4555b436b9beSJan Kara 		tid_t tid;
4556b436b9beSJan Kara 
4557a931da6aSTheodore Ts'o 		read_lock(&journal->j_state_lock);
4558b436b9beSJan Kara 		if (journal->j_running_transaction)
4559b436b9beSJan Kara 			transaction = journal->j_running_transaction;
4560b436b9beSJan Kara 		else
4561b436b9beSJan Kara 			transaction = journal->j_committing_transaction;
4562b436b9beSJan Kara 		if (transaction)
4563b436b9beSJan Kara 			tid = transaction->t_tid;
4564b436b9beSJan Kara 		else
4565b436b9beSJan Kara 			tid = journal->j_commit_sequence;
4566a931da6aSTheodore Ts'o 		read_unlock(&journal->j_state_lock);
4567b436b9beSJan Kara 		ei->i_sync_tid = tid;
4568b436b9beSJan Kara 		ei->i_datasync_tid = tid;
4569b436b9beSJan Kara 	}
4570b436b9beSJan Kara 
45710040d987SEric Sandeen 	if (EXT4_INODE_SIZE(inode->i_sb) > EXT4_GOOD_OLD_INODE_SIZE) {
4572ac27a0ecSDave Kleikamp 		if (ei->i_extra_isize == 0) {
4573ac27a0ecSDave Kleikamp 			/* The extra space is currently unused. Use it. */
4574617ba13bSMingming Cao 			ei->i_extra_isize = sizeof(struct ext4_inode) -
4575617ba13bSMingming Cao 					    EXT4_GOOD_OLD_INODE_SIZE;
4576ac27a0ecSDave Kleikamp 		} else {
4577152a7b0aSTao Ma 			ext4_iget_extra_inode(inode, raw_inode, ei);
4578ac27a0ecSDave Kleikamp 		}
4579814525f4SDarrick J. Wong 	}
4580ac27a0ecSDave Kleikamp 
4581ef7f3835SKalpak Shah 	EXT4_INODE_GET_XTIME(i_ctime, inode, raw_inode);
4582ef7f3835SKalpak Shah 	EXT4_INODE_GET_XTIME(i_mtime, inode, raw_inode);
4583ef7f3835SKalpak Shah 	EXT4_INODE_GET_XTIME(i_atime, inode, raw_inode);
4584ef7f3835SKalpak Shah 	EXT4_EINODE_GET_XTIME(i_crtime, ei, raw_inode);
4585ef7f3835SKalpak Shah 
4586ed3654ebSTheodore Ts'o 	if (likely(!test_opt2(inode->i_sb, HURD_COMPAT))) {
458725ec56b5SJean Noel Cordenner 		inode->i_version = le32_to_cpu(raw_inode->i_disk_version);
458825ec56b5SJean Noel Cordenner 		if (EXT4_INODE_SIZE(inode->i_sb) > EXT4_GOOD_OLD_INODE_SIZE) {
458925ec56b5SJean Noel Cordenner 			if (EXT4_FITS_IN_INODE(raw_inode, ei, i_version_hi))
459025ec56b5SJean Noel Cordenner 				inode->i_version |=
459125ec56b5SJean Noel Cordenner 		    (__u64)(le32_to_cpu(raw_inode->i_version_hi)) << 32;
459225ec56b5SJean Noel Cordenner 		}
4593c4f65706STheodore Ts'o 	}
459425ec56b5SJean Noel Cordenner 
4595c4b5a614STheodore Ts'o 	ret = 0;
4596485c26ecSTheodore Ts'o 	if (ei->i_file_acl &&
45971032988cSTheodore Ts'o 	    !ext4_data_block_valid(EXT4_SB(sb), ei->i_file_acl, 1)) {
459824676da4STheodore Ts'o 		EXT4_ERROR_INODE(inode, "bad extended attribute block %llu",
459924676da4STheodore Ts'o 				 ei->i_file_acl);
46006a797d27SDarrick J. Wong 		ret = -EFSCORRUPTED;
4601485c26ecSTheodore Ts'o 		goto bad_inode;
4602f19d5870STao Ma 	} else if (!ext4_has_inline_data(inode)) {
4603f19d5870STao Ma 		if (ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS)) {
4604f19d5870STao Ma 			if ((S_ISREG(inode->i_mode) || S_ISDIR(inode->i_mode) ||
4605c4b5a614STheodore Ts'o 			    (S_ISLNK(inode->i_mode) &&
4606f19d5870STao Ma 			     !ext4_inode_is_fast_symlink(inode))))
46077a262f7cSAneesh Kumar K.V 				/* Validate extent which is part of inode */
46087a262f7cSAneesh Kumar K.V 				ret = ext4_ext_check_inode(inode);
4609fe2c8191SThiemo Nagel 		} else if (S_ISREG(inode->i_mode) || S_ISDIR(inode->i_mode) ||
4610fe2c8191SThiemo Nagel 			   (S_ISLNK(inode->i_mode) &&
4611fe2c8191SThiemo Nagel 			    !ext4_inode_is_fast_symlink(inode))) {
4612fe2c8191SThiemo Nagel 			/* Validate block references which are part of inode */
46131f7d1e77STheodore Ts'o 			ret = ext4_ind_check_inode(inode);
4614fe2c8191SThiemo Nagel 		}
4615f19d5870STao Ma 	}
4616567f3e9aSTheodore Ts'o 	if (ret)
46177a262f7cSAneesh Kumar K.V 		goto bad_inode;
46187a262f7cSAneesh Kumar K.V 
4619ac27a0ecSDave Kleikamp 	if (S_ISREG(inode->i_mode)) {
4620617ba13bSMingming Cao 		inode->i_op = &ext4_file_inode_operations;
4621617ba13bSMingming Cao 		inode->i_fop = &ext4_file_operations;
4622617ba13bSMingming Cao 		ext4_set_aops(inode);
4623ac27a0ecSDave Kleikamp 	} else if (S_ISDIR(inode->i_mode)) {
4624617ba13bSMingming Cao 		inode->i_op = &ext4_dir_inode_operations;
4625617ba13bSMingming Cao 		inode->i_fop = &ext4_dir_operations;
4626ac27a0ecSDave Kleikamp 	} else if (S_ISLNK(inode->i_mode)) {
4627a7a67e8aSAl Viro 		if (ext4_encrypted_inode(inode)) {
4628a7a67e8aSAl Viro 			inode->i_op = &ext4_encrypted_symlink_inode_operations;
4629a7a67e8aSAl Viro 			ext4_set_aops(inode);
4630a7a67e8aSAl Viro 		} else if (ext4_inode_is_fast_symlink(inode)) {
463175e7566bSAl Viro 			inode->i_link = (char *)ei->i_data;
4632617ba13bSMingming Cao 			inode->i_op = &ext4_fast_symlink_inode_operations;
4633e83c1397SDuane Griffin 			nd_terminate_link(ei->i_data, inode->i_size,
4634e83c1397SDuane Griffin 				sizeof(ei->i_data) - 1);
4635e83c1397SDuane Griffin 		} else {
4636617ba13bSMingming Cao 			inode->i_op = &ext4_symlink_inode_operations;
4637617ba13bSMingming Cao 			ext4_set_aops(inode);
4638ac27a0ecSDave Kleikamp 		}
463921fc61c7SAl Viro 		inode_nohighmem(inode);
4640563bdd61STheodore Ts'o 	} else if (S_ISCHR(inode->i_mode) || S_ISBLK(inode->i_mode) ||
4641563bdd61STheodore Ts'o 	      S_ISFIFO(inode->i_mode) || S_ISSOCK(inode->i_mode)) {
4642617ba13bSMingming Cao 		inode->i_op = &ext4_special_inode_operations;
4643ac27a0ecSDave Kleikamp 		if (raw_inode->i_block[0])
4644ac27a0ecSDave Kleikamp 			init_special_inode(inode, inode->i_mode,
4645ac27a0ecSDave Kleikamp 			   old_decode_dev(le32_to_cpu(raw_inode->i_block[0])));
4646ac27a0ecSDave Kleikamp 		else
4647ac27a0ecSDave Kleikamp 			init_special_inode(inode, inode->i_mode,
4648ac27a0ecSDave Kleikamp 			   new_decode_dev(le32_to_cpu(raw_inode->i_block[1])));
4649393d1d1dSDr. Tilmann Bubeck 	} else if (ino == EXT4_BOOT_LOADER_INO) {
4650393d1d1dSDr. Tilmann Bubeck 		make_bad_inode(inode);
4651563bdd61STheodore Ts'o 	} else {
46526a797d27SDarrick J. Wong 		ret = -EFSCORRUPTED;
465324676da4STheodore Ts'o 		EXT4_ERROR_INODE(inode, "bogus i_mode (%o)", inode->i_mode);
4654563bdd61STheodore Ts'o 		goto bad_inode;
4655ac27a0ecSDave Kleikamp 	}
4656ac27a0ecSDave Kleikamp 	brelse(iloc.bh);
4657617ba13bSMingming Cao 	ext4_set_inode_flags(inode);
46581d1fe1eeSDavid Howells 	unlock_new_inode(inode);
46591d1fe1eeSDavid Howells 	return inode;
4660ac27a0ecSDave Kleikamp 
4661ac27a0ecSDave Kleikamp bad_inode:
4662567f3e9aSTheodore Ts'o 	brelse(iloc.bh);
46631d1fe1eeSDavid Howells 	iget_failed(inode);
46641d1fe1eeSDavid Howells 	return ERR_PTR(ret);
4665ac27a0ecSDave Kleikamp }
4666ac27a0ecSDave Kleikamp 
4667f4bb2981STheodore Ts'o struct inode *ext4_iget_normal(struct super_block *sb, unsigned long ino)
4668f4bb2981STheodore Ts'o {
4669f4bb2981STheodore Ts'o 	if (ino < EXT4_FIRST_INO(sb) && ino != EXT4_ROOT_INO)
46706a797d27SDarrick J. Wong 		return ERR_PTR(-EFSCORRUPTED);
4671f4bb2981STheodore Ts'o 	return ext4_iget(sb, ino);
4672f4bb2981STheodore Ts'o }
4673f4bb2981STheodore Ts'o 
46740fc1b451SAneesh Kumar K.V static int ext4_inode_blocks_set(handle_t *handle,
46750fc1b451SAneesh Kumar K.V 				struct ext4_inode *raw_inode,
46760fc1b451SAneesh Kumar K.V 				struct ext4_inode_info *ei)
46770fc1b451SAneesh Kumar K.V {
46780fc1b451SAneesh Kumar K.V 	struct inode *inode = &(ei->vfs_inode);
46790fc1b451SAneesh Kumar K.V 	u64 i_blocks = inode->i_blocks;
46800fc1b451SAneesh Kumar K.V 	struct super_block *sb = inode->i_sb;
46810fc1b451SAneesh Kumar K.V 
46820fc1b451SAneesh Kumar K.V 	if (i_blocks <= ~0U) {
46830fc1b451SAneesh Kumar K.V 		/*
46844907cb7bSAnatol Pomozov 		 * i_blocks can be represented in a 32 bit variable
46850fc1b451SAneesh Kumar K.V 		 * as multiple of 512 bytes
46860fc1b451SAneesh Kumar K.V 		 */
46878180a562SAneesh Kumar K.V 		raw_inode->i_blocks_lo   = cpu_to_le32(i_blocks);
46880fc1b451SAneesh Kumar K.V 		raw_inode->i_blocks_high = 0;
468984a8dce2SDmitry Monakhov 		ext4_clear_inode_flag(inode, EXT4_INODE_HUGE_FILE);
4690f287a1a5STheodore Ts'o 		return 0;
4691f287a1a5STheodore Ts'o 	}
4692e2b911c5SDarrick J. Wong 	if (!ext4_has_feature_huge_file(sb))
4693f287a1a5STheodore Ts'o 		return -EFBIG;
4694f287a1a5STheodore Ts'o 
4695f287a1a5STheodore Ts'o 	if (i_blocks <= 0xffffffffffffULL) {
46960fc1b451SAneesh Kumar K.V 		/*
46970fc1b451SAneesh Kumar K.V 		 * i_blocks can be represented in a 48 bit variable
46980fc1b451SAneesh Kumar K.V 		 * as multiple of 512 bytes
46990fc1b451SAneesh Kumar K.V 		 */
47008180a562SAneesh Kumar K.V 		raw_inode->i_blocks_lo   = cpu_to_le32(i_blocks);
47010fc1b451SAneesh Kumar K.V 		raw_inode->i_blocks_high = cpu_to_le16(i_blocks >> 32);
470284a8dce2SDmitry Monakhov 		ext4_clear_inode_flag(inode, EXT4_INODE_HUGE_FILE);
47030fc1b451SAneesh Kumar K.V 	} else {
470484a8dce2SDmitry Monakhov 		ext4_set_inode_flag(inode, EXT4_INODE_HUGE_FILE);
47058180a562SAneesh Kumar K.V 		/* i_block is stored in file system block size */
47068180a562SAneesh Kumar K.V 		i_blocks = i_blocks >> (inode->i_blkbits - 9);
47078180a562SAneesh Kumar K.V 		raw_inode->i_blocks_lo   = cpu_to_le32(i_blocks);
47088180a562SAneesh Kumar K.V 		raw_inode->i_blocks_high = cpu_to_le16(i_blocks >> 32);
47090fc1b451SAneesh Kumar K.V 	}
4710f287a1a5STheodore Ts'o 	return 0;
47110fc1b451SAneesh Kumar K.V }
47120fc1b451SAneesh Kumar K.V 
4713a26f4992STheodore Ts'o struct other_inode {
4714a26f4992STheodore Ts'o 	unsigned long		orig_ino;
4715a26f4992STheodore Ts'o 	struct ext4_inode	*raw_inode;
4716a26f4992STheodore Ts'o };
4717a26f4992STheodore Ts'o 
4718a26f4992STheodore Ts'o static int other_inode_match(struct inode * inode, unsigned long ino,
4719a26f4992STheodore Ts'o 			     void *data)
4720a26f4992STheodore Ts'o {
4721a26f4992STheodore Ts'o 	struct other_inode *oi = (struct other_inode *) data;
4722a26f4992STheodore Ts'o 
4723a26f4992STheodore Ts'o 	if ((inode->i_ino != ino) ||
4724a26f4992STheodore Ts'o 	    (inode->i_state & (I_FREEING | I_WILL_FREE | I_NEW |
4725a26f4992STheodore Ts'o 			       I_DIRTY_SYNC | I_DIRTY_DATASYNC)) ||
4726a26f4992STheodore Ts'o 	    ((inode->i_state & I_DIRTY_TIME) == 0))
4727a26f4992STheodore Ts'o 		return 0;
4728a26f4992STheodore Ts'o 	spin_lock(&inode->i_lock);
4729a26f4992STheodore Ts'o 	if (((inode->i_state & (I_FREEING | I_WILL_FREE | I_NEW |
4730a26f4992STheodore Ts'o 				I_DIRTY_SYNC | I_DIRTY_DATASYNC)) == 0) &&
4731a26f4992STheodore Ts'o 	    (inode->i_state & I_DIRTY_TIME)) {
4732a26f4992STheodore Ts'o 		struct ext4_inode_info	*ei = EXT4_I(inode);
4733a26f4992STheodore Ts'o 
4734a26f4992STheodore Ts'o 		inode->i_state &= ~(I_DIRTY_TIME | I_DIRTY_TIME_EXPIRED);
4735a26f4992STheodore Ts'o 		spin_unlock(&inode->i_lock);
4736a26f4992STheodore Ts'o 
4737a26f4992STheodore Ts'o 		spin_lock(&ei->i_raw_lock);
4738a26f4992STheodore Ts'o 		EXT4_INODE_SET_XTIME(i_ctime, inode, oi->raw_inode);
4739a26f4992STheodore Ts'o 		EXT4_INODE_SET_XTIME(i_mtime, inode, oi->raw_inode);
4740a26f4992STheodore Ts'o 		EXT4_INODE_SET_XTIME(i_atime, inode, oi->raw_inode);
4741a26f4992STheodore Ts'o 		ext4_inode_csum_set(inode, oi->raw_inode, ei);
4742a26f4992STheodore Ts'o 		spin_unlock(&ei->i_raw_lock);
4743a26f4992STheodore Ts'o 		trace_ext4_other_inode_update_time(inode, oi->orig_ino);
4744a26f4992STheodore Ts'o 		return -1;
4745a26f4992STheodore Ts'o 	}
4746a26f4992STheodore Ts'o 	spin_unlock(&inode->i_lock);
4747a26f4992STheodore Ts'o 	return -1;
4748a26f4992STheodore Ts'o }
4749a26f4992STheodore Ts'o 
4750a26f4992STheodore Ts'o /*
4751a26f4992STheodore Ts'o  * Opportunistically update the other time fields for other inodes in
4752a26f4992STheodore Ts'o  * the same inode table block.
4753a26f4992STheodore Ts'o  */
4754a26f4992STheodore Ts'o static void ext4_update_other_inodes_time(struct super_block *sb,
4755a26f4992STheodore Ts'o 					  unsigned long orig_ino, char *buf)
4756a26f4992STheodore Ts'o {
4757a26f4992STheodore Ts'o 	struct other_inode oi;
4758a26f4992STheodore Ts'o 	unsigned long ino;
4759a26f4992STheodore Ts'o 	int i, inodes_per_block = EXT4_SB(sb)->s_inodes_per_block;
4760a26f4992STheodore Ts'o 	int inode_size = EXT4_INODE_SIZE(sb);
4761a26f4992STheodore Ts'o 
4762a26f4992STheodore Ts'o 	oi.orig_ino = orig_ino;
47630f0ff9a9STheodore Ts'o 	/*
47640f0ff9a9STheodore Ts'o 	 * Calculate the first inode in the inode table block.  Inode
47650f0ff9a9STheodore Ts'o 	 * numbers are one-based.  That is, the first inode in a block
47660f0ff9a9STheodore Ts'o 	 * (assuming 4k blocks and 256 byte inodes) is (n*16 + 1).
47670f0ff9a9STheodore Ts'o 	 */
47680f0ff9a9STheodore Ts'o 	ino = ((orig_ino - 1) & ~(inodes_per_block - 1)) + 1;
4769a26f4992STheodore Ts'o 	for (i = 0; i < inodes_per_block; i++, ino++, buf += inode_size) {
4770a26f4992STheodore Ts'o 		if (ino == orig_ino)
4771a26f4992STheodore Ts'o 			continue;
4772a26f4992STheodore Ts'o 		oi.raw_inode = (struct ext4_inode *) buf;
4773a26f4992STheodore Ts'o 		(void) find_inode_nowait(sb, ino, other_inode_match, &oi);
4774a26f4992STheodore Ts'o 	}
4775a26f4992STheodore Ts'o }
4776a26f4992STheodore Ts'o 
4777ac27a0ecSDave Kleikamp /*
4778ac27a0ecSDave Kleikamp  * Post the struct inode info into an on-disk inode location in the
4779ac27a0ecSDave Kleikamp  * buffer-cache.  This gobbles the caller's reference to the
4780ac27a0ecSDave Kleikamp  * buffer_head in the inode location struct.
4781ac27a0ecSDave Kleikamp  *
4782ac27a0ecSDave Kleikamp  * The caller must have write access to iloc->bh.
4783ac27a0ecSDave Kleikamp  */
4784617ba13bSMingming Cao static int ext4_do_update_inode(handle_t *handle,
4785ac27a0ecSDave Kleikamp 				struct inode *inode,
4786830156c7SFrank Mayhar 				struct ext4_iloc *iloc)
4787ac27a0ecSDave Kleikamp {
4788617ba13bSMingming Cao 	struct ext4_inode *raw_inode = ext4_raw_inode(iloc);
4789617ba13bSMingming Cao 	struct ext4_inode_info *ei = EXT4_I(inode);
4790ac27a0ecSDave Kleikamp 	struct buffer_head *bh = iloc->bh;
4791202ee5dfSTheodore Ts'o 	struct super_block *sb = inode->i_sb;
4792ac27a0ecSDave Kleikamp 	int err = 0, rc, block;
4793202ee5dfSTheodore Ts'o 	int need_datasync = 0, set_large_file = 0;
479408cefc7aSEric W. Biederman 	uid_t i_uid;
479508cefc7aSEric W. Biederman 	gid_t i_gid;
4796040cb378SLi Xi 	projid_t i_projid;
4797ac27a0ecSDave Kleikamp 
4798202ee5dfSTheodore Ts'o 	spin_lock(&ei->i_raw_lock);
4799202ee5dfSTheodore Ts'o 
4800202ee5dfSTheodore Ts'o 	/* For fields not tracked in the in-memory inode,
4801ac27a0ecSDave Kleikamp 	 * initialise them to zero for new inodes. */
480219f5fb7aSTheodore Ts'o 	if (ext4_test_inode_state(inode, EXT4_STATE_NEW))
4803617ba13bSMingming Cao 		memset(raw_inode, 0, EXT4_SB(inode->i_sb)->s_inode_size);
4804ac27a0ecSDave Kleikamp 
4805ff9ddf7eSJan Kara 	ext4_get_inode_flags(ei);
4806ac27a0ecSDave Kleikamp 	raw_inode->i_mode = cpu_to_le16(inode->i_mode);
480708cefc7aSEric W. Biederman 	i_uid = i_uid_read(inode);
480808cefc7aSEric W. Biederman 	i_gid = i_gid_read(inode);
4809040cb378SLi Xi 	i_projid = from_kprojid(&init_user_ns, ei->i_projid);
4810ac27a0ecSDave Kleikamp 	if (!(test_opt(inode->i_sb, NO_UID32))) {
481108cefc7aSEric W. Biederman 		raw_inode->i_uid_low = cpu_to_le16(low_16_bits(i_uid));
481208cefc7aSEric W. Biederman 		raw_inode->i_gid_low = cpu_to_le16(low_16_bits(i_gid));
4813ac27a0ecSDave Kleikamp /*
4814ac27a0ecSDave Kleikamp  * Fix up interoperability with old kernels. Otherwise, old inodes get
4815ac27a0ecSDave Kleikamp  * re-used with the upper 16 bits of the uid/gid intact
4816ac27a0ecSDave Kleikamp  */
4817ac27a0ecSDave Kleikamp 		if (!ei->i_dtime) {
4818ac27a0ecSDave Kleikamp 			raw_inode->i_uid_high =
481908cefc7aSEric W. Biederman 				cpu_to_le16(high_16_bits(i_uid));
4820ac27a0ecSDave Kleikamp 			raw_inode->i_gid_high =
482108cefc7aSEric W. Biederman 				cpu_to_le16(high_16_bits(i_gid));
4822ac27a0ecSDave Kleikamp 		} else {
4823ac27a0ecSDave Kleikamp 			raw_inode->i_uid_high = 0;
4824ac27a0ecSDave Kleikamp 			raw_inode->i_gid_high = 0;
4825ac27a0ecSDave Kleikamp 		}
4826ac27a0ecSDave Kleikamp 	} else {
482708cefc7aSEric W. Biederman 		raw_inode->i_uid_low = cpu_to_le16(fs_high2lowuid(i_uid));
482808cefc7aSEric W. Biederman 		raw_inode->i_gid_low = cpu_to_le16(fs_high2lowgid(i_gid));
4829ac27a0ecSDave Kleikamp 		raw_inode->i_uid_high = 0;
4830ac27a0ecSDave Kleikamp 		raw_inode->i_gid_high = 0;
4831ac27a0ecSDave Kleikamp 	}
4832ac27a0ecSDave Kleikamp 	raw_inode->i_links_count = cpu_to_le16(inode->i_nlink);
4833ef7f3835SKalpak Shah 
4834ef7f3835SKalpak Shah 	EXT4_INODE_SET_XTIME(i_ctime, inode, raw_inode);
4835ef7f3835SKalpak Shah 	EXT4_INODE_SET_XTIME(i_mtime, inode, raw_inode);
4836ef7f3835SKalpak Shah 	EXT4_INODE_SET_XTIME(i_atime, inode, raw_inode);
4837ef7f3835SKalpak Shah 	EXT4_EINODE_SET_XTIME(i_crtime, ei, raw_inode);
4838ef7f3835SKalpak Shah 
4839bce92d56SLi Xi 	err = ext4_inode_blocks_set(handle, raw_inode, ei);
4840bce92d56SLi Xi 	if (err) {
4841202ee5dfSTheodore Ts'o 		spin_unlock(&ei->i_raw_lock);
48420fc1b451SAneesh Kumar K.V 		goto out_brelse;
4843202ee5dfSTheodore Ts'o 	}
4844ac27a0ecSDave Kleikamp 	raw_inode->i_dtime = cpu_to_le32(ei->i_dtime);
4845353eb83cSTheodore Ts'o 	raw_inode->i_flags = cpu_to_le32(ei->i_flags & 0xFFFFFFFF);
4846ed3654ebSTheodore Ts'o 	if (likely(!test_opt2(inode->i_sb, HURD_COMPAT)))
4847a1ddeb7eSBadari Pulavarty 		raw_inode->i_file_acl_high =
4848a1ddeb7eSBadari Pulavarty 			cpu_to_le16(ei->i_file_acl >> 32);
48497973c0c1SAneesh Kumar K.V 	raw_inode->i_file_acl_lo = cpu_to_le32(ei->i_file_acl);
4850b71fc079SJan Kara 	if (ei->i_disksize != ext4_isize(raw_inode)) {
4851a48380f7SAneesh Kumar K.V 		ext4_isize_set(raw_inode, ei->i_disksize);
4852b71fc079SJan Kara 		need_datasync = 1;
4853b71fc079SJan Kara 	}
4854ac27a0ecSDave Kleikamp 	if (ei->i_disksize > 0x7fffffffULL) {
4855e2b911c5SDarrick J. Wong 		if (!ext4_has_feature_large_file(sb) ||
4856617ba13bSMingming Cao 				EXT4_SB(sb)->s_es->s_rev_level ==
4857202ee5dfSTheodore Ts'o 		    cpu_to_le32(EXT4_GOOD_OLD_REV))
4858202ee5dfSTheodore Ts'o 			set_large_file = 1;
4859ac27a0ecSDave Kleikamp 	}
4860ac27a0ecSDave Kleikamp 	raw_inode->i_generation = cpu_to_le32(inode->i_generation);
4861ac27a0ecSDave Kleikamp 	if (S_ISCHR(inode->i_mode) || S_ISBLK(inode->i_mode)) {
4862ac27a0ecSDave Kleikamp 		if (old_valid_dev(inode->i_rdev)) {
4863ac27a0ecSDave Kleikamp 			raw_inode->i_block[0] =
4864ac27a0ecSDave Kleikamp 				cpu_to_le32(old_encode_dev(inode->i_rdev));
4865ac27a0ecSDave Kleikamp 			raw_inode->i_block[1] = 0;
4866ac27a0ecSDave Kleikamp 		} else {
4867ac27a0ecSDave Kleikamp 			raw_inode->i_block[0] = 0;
4868ac27a0ecSDave Kleikamp 			raw_inode->i_block[1] =
4869ac27a0ecSDave Kleikamp 				cpu_to_le32(new_encode_dev(inode->i_rdev));
4870ac27a0ecSDave Kleikamp 			raw_inode->i_block[2] = 0;
4871ac27a0ecSDave Kleikamp 		}
4872f19d5870STao Ma 	} else if (!ext4_has_inline_data(inode)) {
4873de9a55b8STheodore Ts'o 		for (block = 0; block < EXT4_N_BLOCKS; block++)
4874ac27a0ecSDave Kleikamp 			raw_inode->i_block[block] = ei->i_data[block];
4875f19d5870STao Ma 	}
4876ac27a0ecSDave Kleikamp 
4877ed3654ebSTheodore Ts'o 	if (likely(!test_opt2(inode->i_sb, HURD_COMPAT))) {
487825ec56b5SJean Noel Cordenner 		raw_inode->i_disk_version = cpu_to_le32(inode->i_version);
487925ec56b5SJean Noel Cordenner 		if (ei->i_extra_isize) {
488025ec56b5SJean Noel Cordenner 			if (EXT4_FITS_IN_INODE(raw_inode, ei, i_version_hi))
488125ec56b5SJean Noel Cordenner 				raw_inode->i_version_hi =
488225ec56b5SJean Noel Cordenner 					cpu_to_le32(inode->i_version >> 32);
4883c4f65706STheodore Ts'o 			raw_inode->i_extra_isize =
4884c4f65706STheodore Ts'o 				cpu_to_le16(ei->i_extra_isize);
4885c4f65706STheodore Ts'o 		}
488625ec56b5SJean Noel Cordenner 	}
4887040cb378SLi Xi 
4888040cb378SLi Xi 	BUG_ON(!EXT4_HAS_RO_COMPAT_FEATURE(inode->i_sb,
4889040cb378SLi Xi 			EXT4_FEATURE_RO_COMPAT_PROJECT) &&
4890040cb378SLi Xi 	       i_projid != EXT4_DEF_PROJID);
4891040cb378SLi Xi 
4892040cb378SLi Xi 	if (EXT4_INODE_SIZE(inode->i_sb) > EXT4_GOOD_OLD_INODE_SIZE &&
4893040cb378SLi Xi 	    EXT4_FITS_IN_INODE(raw_inode, ei, i_projid))
4894040cb378SLi Xi 		raw_inode->i_projid = cpu_to_le32(i_projid);
4895040cb378SLi Xi 
4896814525f4SDarrick J. Wong 	ext4_inode_csum_set(inode, raw_inode, ei);
4897202ee5dfSTheodore Ts'o 	spin_unlock(&ei->i_raw_lock);
4898a26f4992STheodore Ts'o 	if (inode->i_sb->s_flags & MS_LAZYTIME)
4899a26f4992STheodore Ts'o 		ext4_update_other_inodes_time(inode->i_sb, inode->i_ino,
4900a26f4992STheodore Ts'o 					      bh->b_data);
4901202ee5dfSTheodore Ts'o 
49020390131bSFrank Mayhar 	BUFFER_TRACE(bh, "call ext4_handle_dirty_metadata");
490373b50c1cSCurt Wohlgemuth 	rc = ext4_handle_dirty_metadata(handle, NULL, bh);
4904ac27a0ecSDave Kleikamp 	if (!err)
4905ac27a0ecSDave Kleikamp 		err = rc;
490619f5fb7aSTheodore Ts'o 	ext4_clear_inode_state(inode, EXT4_STATE_NEW);
4907202ee5dfSTheodore Ts'o 	if (set_large_file) {
49085d601255Sliang xie 		BUFFER_TRACE(EXT4_SB(sb)->s_sbh, "get write access");
4909202ee5dfSTheodore Ts'o 		err = ext4_journal_get_write_access(handle, EXT4_SB(sb)->s_sbh);
4910202ee5dfSTheodore Ts'o 		if (err)
4911202ee5dfSTheodore Ts'o 			goto out_brelse;
4912202ee5dfSTheodore Ts'o 		ext4_update_dynamic_rev(sb);
4913e2b911c5SDarrick J. Wong 		ext4_set_feature_large_file(sb);
4914202ee5dfSTheodore Ts'o 		ext4_handle_sync(handle);
4915202ee5dfSTheodore Ts'o 		err = ext4_handle_dirty_super(handle, sb);
4916202ee5dfSTheodore Ts'o 	}
4917b71fc079SJan Kara 	ext4_update_inode_fsync_trans(handle, inode, need_datasync);
4918ac27a0ecSDave Kleikamp out_brelse:
4919ac27a0ecSDave Kleikamp 	brelse(bh);
4920617ba13bSMingming Cao 	ext4_std_error(inode->i_sb, err);
4921ac27a0ecSDave Kleikamp 	return err;
4922ac27a0ecSDave Kleikamp }
4923ac27a0ecSDave Kleikamp 
4924ac27a0ecSDave Kleikamp /*
4925617ba13bSMingming Cao  * ext4_write_inode()
4926ac27a0ecSDave Kleikamp  *
4927ac27a0ecSDave Kleikamp  * We are called from a few places:
4928ac27a0ecSDave Kleikamp  *
492987f7e416STheodore Ts'o  * - Within generic_file_aio_write() -> generic_write_sync() for O_SYNC files.
4930ac27a0ecSDave Kleikamp  *   Here, there will be no transaction running. We wait for any running
49314907cb7bSAnatol Pomozov  *   transaction to commit.
4932ac27a0ecSDave Kleikamp  *
493387f7e416STheodore Ts'o  * - Within flush work (sys_sync(), kupdate and such).
493487f7e416STheodore Ts'o  *   We wait on commit, if told to.
4935ac27a0ecSDave Kleikamp  *
493687f7e416STheodore Ts'o  * - Within iput_final() -> write_inode_now()
493787f7e416STheodore Ts'o  *   We wait on commit, if told to.
4938ac27a0ecSDave Kleikamp  *
4939ac27a0ecSDave Kleikamp  * In all cases it is actually safe for us to return without doing anything,
4940ac27a0ecSDave Kleikamp  * because the inode has been copied into a raw inode buffer in
494187f7e416STheodore Ts'o  * ext4_mark_inode_dirty().  This is a correctness thing for WB_SYNC_ALL
494287f7e416STheodore Ts'o  * writeback.
4943ac27a0ecSDave Kleikamp  *
4944ac27a0ecSDave Kleikamp  * Note that we are absolutely dependent upon all inode dirtiers doing the
4945ac27a0ecSDave Kleikamp  * right thing: they *must* call mark_inode_dirty() after dirtying info in
4946ac27a0ecSDave Kleikamp  * which we are interested.
4947ac27a0ecSDave Kleikamp  *
4948ac27a0ecSDave Kleikamp  * It would be a bug for them to not do this.  The code:
4949ac27a0ecSDave Kleikamp  *
4950ac27a0ecSDave Kleikamp  *	mark_inode_dirty(inode)
4951ac27a0ecSDave Kleikamp  *	stuff();
4952ac27a0ecSDave Kleikamp  *	inode->i_size = expr;
4953ac27a0ecSDave Kleikamp  *
495487f7e416STheodore Ts'o  * is in error because write_inode() could occur while `stuff()' is running,
495587f7e416STheodore Ts'o  * and the new i_size will be lost.  Plus the inode will no longer be on the
495687f7e416STheodore Ts'o  * superblock's dirty inode list.
4957ac27a0ecSDave Kleikamp  */
4958a9185b41SChristoph Hellwig int ext4_write_inode(struct inode *inode, struct writeback_control *wbc)
4959ac27a0ecSDave Kleikamp {
496091ac6f43SFrank Mayhar 	int err;
496191ac6f43SFrank Mayhar 
496287f7e416STheodore Ts'o 	if (WARN_ON_ONCE(current->flags & PF_MEMALLOC))
4963ac27a0ecSDave Kleikamp 		return 0;
4964ac27a0ecSDave Kleikamp 
496591ac6f43SFrank Mayhar 	if (EXT4_SB(inode->i_sb)->s_journal) {
4966617ba13bSMingming Cao 		if (ext4_journal_current_handle()) {
4967b38bd33aSMingming Cao 			jbd_debug(1, "called recursively, non-PF_MEMALLOC!\n");
4968ac27a0ecSDave Kleikamp 			dump_stack();
4969ac27a0ecSDave Kleikamp 			return -EIO;
4970ac27a0ecSDave Kleikamp 		}
4971ac27a0ecSDave Kleikamp 
497210542c22SJan Kara 		/*
497310542c22SJan Kara 		 * No need to force transaction in WB_SYNC_NONE mode. Also
497410542c22SJan Kara 		 * ext4_sync_fs() will force the commit after everything is
497510542c22SJan Kara 		 * written.
497610542c22SJan Kara 		 */
497710542c22SJan Kara 		if (wbc->sync_mode != WB_SYNC_ALL || wbc->for_sync)
4978ac27a0ecSDave Kleikamp 			return 0;
4979ac27a0ecSDave Kleikamp 
498091ac6f43SFrank Mayhar 		err = ext4_force_commit(inode->i_sb);
498191ac6f43SFrank Mayhar 	} else {
498291ac6f43SFrank Mayhar 		struct ext4_iloc iloc;
498391ac6f43SFrank Mayhar 
49848b472d73SCurt Wohlgemuth 		err = __ext4_get_inode_loc(inode, &iloc, 0);
498591ac6f43SFrank Mayhar 		if (err)
498691ac6f43SFrank Mayhar 			return err;
498710542c22SJan Kara 		/*
498810542c22SJan Kara 		 * sync(2) will flush the whole buffer cache. No need to do
498910542c22SJan Kara 		 * it here separately for each inode.
499010542c22SJan Kara 		 */
499110542c22SJan Kara 		if (wbc->sync_mode == WB_SYNC_ALL && !wbc->for_sync)
4992830156c7SFrank Mayhar 			sync_dirty_buffer(iloc.bh);
4993830156c7SFrank Mayhar 		if (buffer_req(iloc.bh) && !buffer_uptodate(iloc.bh)) {
4994c398eda0STheodore Ts'o 			EXT4_ERROR_INODE_BLOCK(inode, iloc.bh->b_blocknr,
4995c398eda0STheodore Ts'o 					 "IO error syncing inode");
4996830156c7SFrank Mayhar 			err = -EIO;
4997830156c7SFrank Mayhar 		}
4998fd2dd9fbSCurt Wohlgemuth 		brelse(iloc.bh);
499991ac6f43SFrank Mayhar 	}
500091ac6f43SFrank Mayhar 	return err;
5001ac27a0ecSDave Kleikamp }
5002ac27a0ecSDave Kleikamp 
5003ac27a0ecSDave Kleikamp /*
500453e87268SJan Kara  * In data=journal mode ext4_journalled_invalidatepage() may fail to invalidate
500553e87268SJan Kara  * buffers that are attached to a page stradding i_size and are undergoing
500653e87268SJan Kara  * commit. In that case we have to wait for commit to finish and try again.
500753e87268SJan Kara  */
500853e87268SJan Kara static void ext4_wait_for_tail_page_commit(struct inode *inode)
500953e87268SJan Kara {
501053e87268SJan Kara 	struct page *page;
501153e87268SJan Kara 	unsigned offset;
501253e87268SJan Kara 	journal_t *journal = EXT4_SB(inode->i_sb)->s_journal;
501353e87268SJan Kara 	tid_t commit_tid = 0;
501453e87268SJan Kara 	int ret;
501553e87268SJan Kara 
501609cbfeafSKirill A. Shutemov 	offset = inode->i_size & (PAGE_SIZE - 1);
501753e87268SJan Kara 	/*
501853e87268SJan Kara 	 * All buffers in the last page remain valid? Then there's nothing to
5019ea1754a0SKirill A. Shutemov 	 * do. We do the check mainly to optimize the common PAGE_SIZE ==
502053e87268SJan Kara 	 * blocksize case
502153e87268SJan Kara 	 */
502209cbfeafSKirill A. Shutemov 	if (offset > PAGE_SIZE - (1 << inode->i_blkbits))
502353e87268SJan Kara 		return;
502453e87268SJan Kara 	while (1) {
502553e87268SJan Kara 		page = find_lock_page(inode->i_mapping,
502609cbfeafSKirill A. Shutemov 				      inode->i_size >> PAGE_SHIFT);
502753e87268SJan Kara 		if (!page)
502853e87268SJan Kara 			return;
5029ca99fdd2SLukas Czerner 		ret = __ext4_journalled_invalidatepage(page, offset,
503009cbfeafSKirill A. Shutemov 						PAGE_SIZE - offset);
503153e87268SJan Kara 		unlock_page(page);
503209cbfeafSKirill A. Shutemov 		put_page(page);
503353e87268SJan Kara 		if (ret != -EBUSY)
503453e87268SJan Kara 			return;
503553e87268SJan Kara 		commit_tid = 0;
503653e87268SJan Kara 		read_lock(&journal->j_state_lock);
503753e87268SJan Kara 		if (journal->j_committing_transaction)
503853e87268SJan Kara 			commit_tid = journal->j_committing_transaction->t_tid;
503953e87268SJan Kara 		read_unlock(&journal->j_state_lock);
504053e87268SJan Kara 		if (commit_tid)
504153e87268SJan Kara 			jbd2_log_wait_commit(journal, commit_tid);
504253e87268SJan Kara 	}
504353e87268SJan Kara }
504453e87268SJan Kara 
504553e87268SJan Kara /*
5046617ba13bSMingming Cao  * ext4_setattr()
5047ac27a0ecSDave Kleikamp  *
5048ac27a0ecSDave Kleikamp  * Called from notify_change.
5049ac27a0ecSDave Kleikamp  *
5050ac27a0ecSDave Kleikamp  * We want to trap VFS attempts to truncate the file as soon as
5051ac27a0ecSDave Kleikamp  * possible.  In particular, we want to make sure that when the VFS
5052ac27a0ecSDave Kleikamp  * shrinks i_size, we put the inode on the orphan list and modify
5053ac27a0ecSDave Kleikamp  * i_disksize immediately, so that during the subsequent flushing of
5054ac27a0ecSDave Kleikamp  * dirty pages and freeing of disk blocks, we can guarantee that any
5055ac27a0ecSDave Kleikamp  * commit will leave the blocks being flushed in an unused state on
5056ac27a0ecSDave Kleikamp  * disk.  (On recovery, the inode will get truncated and the blocks will
5057ac27a0ecSDave Kleikamp  * be freed, so we have a strong guarantee that no future commit will
5058ac27a0ecSDave Kleikamp  * leave these blocks visible to the user.)
5059ac27a0ecSDave Kleikamp  *
5060678aaf48SJan Kara  * Another thing we have to assure is that if we are in ordered mode
5061678aaf48SJan Kara  * and inode is still attached to the committing transaction, we must
5062678aaf48SJan Kara  * we start writeout of all the dirty pages which are being truncated.
5063678aaf48SJan Kara  * This way we are sure that all the data written in the previous
5064678aaf48SJan Kara  * transaction are already on disk (truncate waits for pages under
5065678aaf48SJan Kara  * writeback).
5066678aaf48SJan Kara  *
5067678aaf48SJan Kara  * Called with inode->i_mutex down.
5068ac27a0ecSDave Kleikamp  */
5069617ba13bSMingming Cao int ext4_setattr(struct dentry *dentry, struct iattr *attr)
5070ac27a0ecSDave Kleikamp {
50712b0143b5SDavid Howells 	struct inode *inode = d_inode(dentry);
5072ac27a0ecSDave Kleikamp 	int error, rc = 0;
50733d287de3SDmitry Monakhov 	int orphan = 0;
5074ac27a0ecSDave Kleikamp 	const unsigned int ia_valid = attr->ia_valid;
5075ac27a0ecSDave Kleikamp 
5076ac27a0ecSDave Kleikamp 	error = inode_change_ok(inode, attr);
5077ac27a0ecSDave Kleikamp 	if (error)
5078ac27a0ecSDave Kleikamp 		return error;
5079ac27a0ecSDave Kleikamp 
5080a7cdadeeSJan Kara 	if (is_quota_modification(inode, attr)) {
5081a7cdadeeSJan Kara 		error = dquot_initialize(inode);
5082a7cdadeeSJan Kara 		if (error)
5083a7cdadeeSJan Kara 			return error;
5084a7cdadeeSJan Kara 	}
508508cefc7aSEric W. Biederman 	if ((ia_valid & ATTR_UID && !uid_eq(attr->ia_uid, inode->i_uid)) ||
508608cefc7aSEric W. Biederman 	    (ia_valid & ATTR_GID && !gid_eq(attr->ia_gid, inode->i_gid))) {
5087ac27a0ecSDave Kleikamp 		handle_t *handle;
5088ac27a0ecSDave Kleikamp 
5089ac27a0ecSDave Kleikamp 		/* (user+group)*(old+new) structure, inode write (sb,
5090ac27a0ecSDave Kleikamp 		 * inode block, ? - but truncate inode update has it) */
50919924a92aSTheodore Ts'o 		handle = ext4_journal_start(inode, EXT4_HT_QUOTA,
50929924a92aSTheodore Ts'o 			(EXT4_MAXQUOTAS_INIT_BLOCKS(inode->i_sb) +
5093194074acSDmitry Monakhov 			 EXT4_MAXQUOTAS_DEL_BLOCKS(inode->i_sb)) + 3);
5094ac27a0ecSDave Kleikamp 		if (IS_ERR(handle)) {
5095ac27a0ecSDave Kleikamp 			error = PTR_ERR(handle);
5096ac27a0ecSDave Kleikamp 			goto err_out;
5097ac27a0ecSDave Kleikamp 		}
5098b43fa828SChristoph Hellwig 		error = dquot_transfer(inode, attr);
5099ac27a0ecSDave Kleikamp 		if (error) {
5100617ba13bSMingming Cao 			ext4_journal_stop(handle);
5101ac27a0ecSDave Kleikamp 			return error;
5102ac27a0ecSDave Kleikamp 		}
5103ac27a0ecSDave Kleikamp 		/* Update corresponding info in inode so that everything is in
5104ac27a0ecSDave Kleikamp 		 * one transaction */
5105ac27a0ecSDave Kleikamp 		if (attr->ia_valid & ATTR_UID)
5106ac27a0ecSDave Kleikamp 			inode->i_uid = attr->ia_uid;
5107ac27a0ecSDave Kleikamp 		if (attr->ia_valid & ATTR_GID)
5108ac27a0ecSDave Kleikamp 			inode->i_gid = attr->ia_gid;
5109617ba13bSMingming Cao 		error = ext4_mark_inode_dirty(handle, inode);
5110617ba13bSMingming Cao 		ext4_journal_stop(handle);
5111ac27a0ecSDave Kleikamp 	}
5112ac27a0ecSDave Kleikamp 
51133da40c7bSJosef Bacik 	if (attr->ia_valid & ATTR_SIZE) {
51145208386cSJan Kara 		handle_t *handle;
51153da40c7bSJosef Bacik 		loff_t oldsize = inode->i_size;
51163da40c7bSJosef Bacik 		int shrink = (attr->ia_size <= inode->i_size);
5117562c72aaSChristoph Hellwig 
511812e9b892SDmitry Monakhov 		if (!(ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS))) {
5119e2b46574SEric Sandeen 			struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb);
5120e2b46574SEric Sandeen 
51210c095c7fSTheodore Ts'o 			if (attr->ia_size > sbi->s_bitmap_maxbytes)
51220c095c7fSTheodore Ts'o 				return -EFBIG;
5123e2b46574SEric Sandeen 		}
51243da40c7bSJosef Bacik 		if (!S_ISREG(inode->i_mode))
51253da40c7bSJosef Bacik 			return -EINVAL;
5126dff6efc3SChristoph Hellwig 
5127dff6efc3SChristoph Hellwig 		if (IS_I_VERSION(inode) && attr->ia_size != inode->i_size)
5128dff6efc3SChristoph Hellwig 			inode_inc_iversion(inode);
5129dff6efc3SChristoph Hellwig 
51303da40c7bSJosef Bacik 		if (ext4_should_order_data(inode) &&
5131072bd7eaSTheodore Ts'o 		    (attr->ia_size < inode->i_size)) {
51325208386cSJan Kara 			error = ext4_begin_ordered_truncate(inode,
51335208386cSJan Kara 							    attr->ia_size);
51345208386cSJan Kara 			if (error)
51355208386cSJan Kara 				goto err_out;
51365208386cSJan Kara 		}
51373da40c7bSJosef Bacik 		if (attr->ia_size != inode->i_size) {
51389924a92aSTheodore Ts'o 			handle = ext4_journal_start(inode, EXT4_HT_INODE, 3);
5139ac27a0ecSDave Kleikamp 			if (IS_ERR(handle)) {
5140ac27a0ecSDave Kleikamp 				error = PTR_ERR(handle);
5141ac27a0ecSDave Kleikamp 				goto err_out;
5142ac27a0ecSDave Kleikamp 			}
51433da40c7bSJosef Bacik 			if (ext4_handle_valid(handle) && shrink) {
5144617ba13bSMingming Cao 				error = ext4_orphan_add(handle, inode);
51453d287de3SDmitry Monakhov 				orphan = 1;
51463d287de3SDmitry Monakhov 			}
5147911af577SEryu Guan 			/*
5148911af577SEryu Guan 			 * Update c/mtime on truncate up, ext4_truncate() will
5149911af577SEryu Guan 			 * update c/mtime in shrink case below
5150911af577SEryu Guan 			 */
5151911af577SEryu Guan 			if (!shrink) {
5152911af577SEryu Guan 				inode->i_mtime = ext4_current_time(inode);
5153911af577SEryu Guan 				inode->i_ctime = inode->i_mtime;
5154911af577SEryu Guan 			}
515590e775b7SJan Kara 			down_write(&EXT4_I(inode)->i_data_sem);
5156617ba13bSMingming Cao 			EXT4_I(inode)->i_disksize = attr->ia_size;
5157617ba13bSMingming Cao 			rc = ext4_mark_inode_dirty(handle, inode);
5158ac27a0ecSDave Kleikamp 			if (!error)
5159ac27a0ecSDave Kleikamp 				error = rc;
516090e775b7SJan Kara 			/*
516190e775b7SJan Kara 			 * We have to update i_size under i_data_sem together
516290e775b7SJan Kara 			 * with i_disksize to avoid races with writeback code
516390e775b7SJan Kara 			 * running ext4_wb_update_i_disksize().
516490e775b7SJan Kara 			 */
516590e775b7SJan Kara 			if (!error)
516690e775b7SJan Kara 				i_size_write(inode, attr->ia_size);
516790e775b7SJan Kara 			up_write(&EXT4_I(inode)->i_data_sem);
5168617ba13bSMingming Cao 			ext4_journal_stop(handle);
5169678aaf48SJan Kara 			if (error) {
51703da40c7bSJosef Bacik 				if (orphan)
5171678aaf48SJan Kara 					ext4_orphan_del(NULL, inode);
5172678aaf48SJan Kara 				goto err_out;
5173678aaf48SJan Kara 			}
5174d6320cbfSJan Kara 		}
51753da40c7bSJosef Bacik 		if (!shrink)
51763da40c7bSJosef Bacik 			pagecache_isize_extended(inode, oldsize, inode->i_size);
517790e775b7SJan Kara 
517853e87268SJan Kara 		/*
517953e87268SJan Kara 		 * Blocks are going to be removed from the inode. Wait
518053e87268SJan Kara 		 * for dio in flight.  Temporarily disable
518153e87268SJan Kara 		 * dioread_nolock to prevent livelock.
518253e87268SJan Kara 		 */
51831b65007eSDmitry Monakhov 		if (orphan) {
518453e87268SJan Kara 			if (!ext4_should_journal_data(inode)) {
51851b65007eSDmitry Monakhov 				ext4_inode_block_unlocked_dio(inode);
51861c9114f9SDmitry Monakhov 				inode_dio_wait(inode);
51871b65007eSDmitry Monakhov 				ext4_inode_resume_unlocked_dio(inode);
518853e87268SJan Kara 			} else
518953e87268SJan Kara 				ext4_wait_for_tail_page_commit(inode);
51901b65007eSDmitry Monakhov 		}
5191ea3d7209SJan Kara 		down_write(&EXT4_I(inode)->i_mmap_sem);
519253e87268SJan Kara 		/*
519353e87268SJan Kara 		 * Truncate pagecache after we've waited for commit
519453e87268SJan Kara 		 * in data=journal mode to make pages freeable.
519553e87268SJan Kara 		 */
51967caef267SKirill A. Shutemov 		truncate_pagecache(inode, inode->i_size);
51973da40c7bSJosef Bacik 		if (shrink)
5198072bd7eaSTheodore Ts'o 			ext4_truncate(inode);
5199ea3d7209SJan Kara 		up_write(&EXT4_I(inode)->i_mmap_sem);
52003da40c7bSJosef Bacik 	}
5201ac27a0ecSDave Kleikamp 
52021025774cSChristoph Hellwig 	if (!rc) {
52031025774cSChristoph Hellwig 		setattr_copy(inode, attr);
52041025774cSChristoph Hellwig 		mark_inode_dirty(inode);
52051025774cSChristoph Hellwig 	}
52061025774cSChristoph Hellwig 
52071025774cSChristoph Hellwig 	/*
52081025774cSChristoph Hellwig 	 * If the call to ext4_truncate failed to get a transaction handle at
52091025774cSChristoph Hellwig 	 * all, we need to clean up the in-core orphan list manually.
52101025774cSChristoph Hellwig 	 */
52113d287de3SDmitry Monakhov 	if (orphan && inode->i_nlink)
5212617ba13bSMingming Cao 		ext4_orphan_del(NULL, inode);
5213ac27a0ecSDave Kleikamp 
5214ac27a0ecSDave Kleikamp 	if (!rc && (ia_valid & ATTR_MODE))
521564e178a7SChristoph Hellwig 		rc = posix_acl_chmod(inode, inode->i_mode);
5216ac27a0ecSDave Kleikamp 
5217ac27a0ecSDave Kleikamp err_out:
5218617ba13bSMingming Cao 	ext4_std_error(inode->i_sb, error);
5219ac27a0ecSDave Kleikamp 	if (!error)
5220ac27a0ecSDave Kleikamp 		error = rc;
5221ac27a0ecSDave Kleikamp 	return error;
5222ac27a0ecSDave Kleikamp }
5223ac27a0ecSDave Kleikamp 
52243e3398a0SMingming Cao int ext4_getattr(struct vfsmount *mnt, struct dentry *dentry,
52253e3398a0SMingming Cao 		 struct kstat *stat)
52263e3398a0SMingming Cao {
52273e3398a0SMingming Cao 	struct inode *inode;
52288af8eeccSJan Kara 	unsigned long long delalloc_blocks;
52293e3398a0SMingming Cao 
52302b0143b5SDavid Howells 	inode = d_inode(dentry);
52313e3398a0SMingming Cao 	generic_fillattr(inode, stat);
52323e3398a0SMingming Cao 
52333e3398a0SMingming Cao 	/*
52349206c561SAndreas Dilger 	 * If there is inline data in the inode, the inode will normally not
52359206c561SAndreas Dilger 	 * have data blocks allocated (it may have an external xattr block).
52369206c561SAndreas Dilger 	 * Report at least one sector for such files, so tools like tar, rsync,
52379206c561SAndreas Dilger 	 * others doen't incorrectly think the file is completely sparse.
52389206c561SAndreas Dilger 	 */
52399206c561SAndreas Dilger 	if (unlikely(ext4_has_inline_data(inode)))
52409206c561SAndreas Dilger 		stat->blocks += (stat->size + 511) >> 9;
52419206c561SAndreas Dilger 
52429206c561SAndreas Dilger 	/*
52433e3398a0SMingming Cao 	 * We can't update i_blocks if the block allocation is delayed
52443e3398a0SMingming Cao 	 * otherwise in the case of system crash before the real block
52453e3398a0SMingming Cao 	 * allocation is done, we will have i_blocks inconsistent with
52463e3398a0SMingming Cao 	 * on-disk file blocks.
52473e3398a0SMingming Cao 	 * We always keep i_blocks updated together with real
52483e3398a0SMingming Cao 	 * allocation. But to not confuse with user, stat
52493e3398a0SMingming Cao 	 * will return the blocks that include the delayed allocation
52503e3398a0SMingming Cao 	 * blocks for this file.
52513e3398a0SMingming Cao 	 */
525296607551STao Ma 	delalloc_blocks = EXT4_C2B(EXT4_SB(inode->i_sb),
525396607551STao Ma 				   EXT4_I(inode)->i_reserved_data_blocks);
52548af8eeccSJan Kara 	stat->blocks += delalloc_blocks << (inode->i_sb->s_blocksize_bits - 9);
52553e3398a0SMingming Cao 	return 0;
52563e3398a0SMingming Cao }
5257ac27a0ecSDave Kleikamp 
5258fffb2739SJan Kara static int ext4_index_trans_blocks(struct inode *inode, int lblocks,
5259fffb2739SJan Kara 				   int pextents)
5260a02908f1SMingming Cao {
526112e9b892SDmitry Monakhov 	if (!(ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS)))
5262fffb2739SJan Kara 		return ext4_ind_trans_blocks(inode, lblocks);
5263fffb2739SJan Kara 	return ext4_ext_index_trans_blocks(inode, pextents);
5264a02908f1SMingming Cao }
5265ac51d837STheodore Ts'o 
5266a02908f1SMingming Cao /*
5267a02908f1SMingming Cao  * Account for index blocks, block groups bitmaps and block group
5268a02908f1SMingming Cao  * descriptor blocks if modify datablocks and index blocks
5269a02908f1SMingming Cao  * worse case, the indexs blocks spread over different block groups
5270a02908f1SMingming Cao  *
5271a02908f1SMingming Cao  * If datablocks are discontiguous, they are possible to spread over
52724907cb7bSAnatol Pomozov  * different block groups too. If they are contiguous, with flexbg,
5273a02908f1SMingming Cao  * they could still across block group boundary.
5274a02908f1SMingming Cao  *
5275a02908f1SMingming Cao  * Also account for superblock, inode, quota and xattr blocks
5276a02908f1SMingming Cao  */
5277fffb2739SJan Kara static int ext4_meta_trans_blocks(struct inode *inode, int lblocks,
5278fffb2739SJan Kara 				  int pextents)
5279a02908f1SMingming Cao {
52808df9675fSTheodore Ts'o 	ext4_group_t groups, ngroups = ext4_get_groups_count(inode->i_sb);
52818df9675fSTheodore Ts'o 	int gdpblocks;
5282a02908f1SMingming Cao 	int idxblocks;
5283a02908f1SMingming Cao 	int ret = 0;
5284a02908f1SMingming Cao 
5285a02908f1SMingming Cao 	/*
5286fffb2739SJan Kara 	 * How many index blocks need to touch to map @lblocks logical blocks
5287fffb2739SJan Kara 	 * to @pextents physical extents?
5288a02908f1SMingming Cao 	 */
5289fffb2739SJan Kara 	idxblocks = ext4_index_trans_blocks(inode, lblocks, pextents);
5290a02908f1SMingming Cao 
5291a02908f1SMingming Cao 	ret = idxblocks;
5292a02908f1SMingming Cao 
5293a02908f1SMingming Cao 	/*
5294a02908f1SMingming Cao 	 * Now let's see how many group bitmaps and group descriptors need
5295a02908f1SMingming Cao 	 * to account
5296a02908f1SMingming Cao 	 */
5297fffb2739SJan Kara 	groups = idxblocks + pextents;
5298a02908f1SMingming Cao 	gdpblocks = groups;
52998df9675fSTheodore Ts'o 	if (groups > ngroups)
53008df9675fSTheodore Ts'o 		groups = ngroups;
5301a02908f1SMingming Cao 	if (groups > EXT4_SB(inode->i_sb)->s_gdb_count)
5302a02908f1SMingming Cao 		gdpblocks = EXT4_SB(inode->i_sb)->s_gdb_count;
5303a02908f1SMingming Cao 
5304a02908f1SMingming Cao 	/* bitmaps and block group descriptor blocks */
5305a02908f1SMingming Cao 	ret += groups + gdpblocks;
5306a02908f1SMingming Cao 
5307a02908f1SMingming Cao 	/* Blocks for super block, inode, quota and xattr blocks */
5308a02908f1SMingming Cao 	ret += EXT4_META_TRANS_BLOCKS(inode->i_sb);
5309ac27a0ecSDave Kleikamp 
5310ac27a0ecSDave Kleikamp 	return ret;
5311ac27a0ecSDave Kleikamp }
5312ac27a0ecSDave Kleikamp 
5313ac27a0ecSDave Kleikamp /*
531425985edcSLucas De Marchi  * Calculate the total number of credits to reserve to fit
5315f3bd1f3fSMingming Cao  * the modification of a single pages into a single transaction,
5316f3bd1f3fSMingming Cao  * which may include multiple chunks of block allocations.
5317a02908f1SMingming Cao  *
5318525f4ed8SMingming Cao  * This could be called via ext4_write_begin()
5319a02908f1SMingming Cao  *
5320525f4ed8SMingming Cao  * We need to consider the worse case, when
5321a02908f1SMingming Cao  * one new block per extent.
5322a02908f1SMingming Cao  */
5323a02908f1SMingming Cao int ext4_writepage_trans_blocks(struct inode *inode)
5324a02908f1SMingming Cao {
5325a02908f1SMingming Cao 	int bpp = ext4_journal_blocks_per_page(inode);
5326a02908f1SMingming Cao 	int ret;
5327a02908f1SMingming Cao 
5328fffb2739SJan Kara 	ret = ext4_meta_trans_blocks(inode, bpp, bpp);
5329a02908f1SMingming Cao 
5330a02908f1SMingming Cao 	/* Account for data blocks for journalled mode */
5331a02908f1SMingming Cao 	if (ext4_should_journal_data(inode))
5332a02908f1SMingming Cao 		ret += bpp;
5333a02908f1SMingming Cao 	return ret;
5334a02908f1SMingming Cao }
5335f3bd1f3fSMingming Cao 
5336f3bd1f3fSMingming Cao /*
5337f3bd1f3fSMingming Cao  * Calculate the journal credits for a chunk of data modification.
5338f3bd1f3fSMingming Cao  *
5339f3bd1f3fSMingming Cao  * This is called from DIO, fallocate or whoever calling
534079e83036SEric Sandeen  * ext4_map_blocks() to map/allocate a chunk of contiguous disk blocks.
5341f3bd1f3fSMingming Cao  *
5342f3bd1f3fSMingming Cao  * journal buffers for data blocks are not included here, as DIO
5343f3bd1f3fSMingming Cao  * and fallocate do no need to journal data buffers.
5344f3bd1f3fSMingming Cao  */
5345f3bd1f3fSMingming Cao int ext4_chunk_trans_blocks(struct inode *inode, int nrblocks)
5346f3bd1f3fSMingming Cao {
5347f3bd1f3fSMingming Cao 	return ext4_meta_trans_blocks(inode, nrblocks, 1);
5348f3bd1f3fSMingming Cao }
5349f3bd1f3fSMingming Cao 
5350a02908f1SMingming Cao /*
5351617ba13bSMingming Cao  * The caller must have previously called ext4_reserve_inode_write().
5352ac27a0ecSDave Kleikamp  * Give this, we know that the caller already has write access to iloc->bh.
5353ac27a0ecSDave Kleikamp  */
5354617ba13bSMingming Cao int ext4_mark_iloc_dirty(handle_t *handle,
5355617ba13bSMingming Cao 			 struct inode *inode, struct ext4_iloc *iloc)
5356ac27a0ecSDave Kleikamp {
5357ac27a0ecSDave Kleikamp 	int err = 0;
5358ac27a0ecSDave Kleikamp 
5359c64db50eSTheodore Ts'o 	if (IS_I_VERSION(inode))
536025ec56b5SJean Noel Cordenner 		inode_inc_iversion(inode);
536125ec56b5SJean Noel Cordenner 
5362ac27a0ecSDave Kleikamp 	/* the do_update_inode consumes one bh->b_count */
5363ac27a0ecSDave Kleikamp 	get_bh(iloc->bh);
5364ac27a0ecSDave Kleikamp 
5365dab291afSMingming Cao 	/* ext4_do_update_inode() does jbd2_journal_dirty_metadata */
5366830156c7SFrank Mayhar 	err = ext4_do_update_inode(handle, inode, iloc);
5367ac27a0ecSDave Kleikamp 	put_bh(iloc->bh);
5368ac27a0ecSDave Kleikamp 	return err;
5369ac27a0ecSDave Kleikamp }
5370ac27a0ecSDave Kleikamp 
5371ac27a0ecSDave Kleikamp /*
5372ac27a0ecSDave Kleikamp  * On success, We end up with an outstanding reference count against
5373ac27a0ecSDave Kleikamp  * iloc->bh.  This _must_ be cleaned up later.
5374ac27a0ecSDave Kleikamp  */
5375ac27a0ecSDave Kleikamp 
5376ac27a0ecSDave Kleikamp int
5377617ba13bSMingming Cao ext4_reserve_inode_write(handle_t *handle, struct inode *inode,
5378617ba13bSMingming Cao 			 struct ext4_iloc *iloc)
5379ac27a0ecSDave Kleikamp {
53800390131bSFrank Mayhar 	int err;
53810390131bSFrank Mayhar 
5382617ba13bSMingming Cao 	err = ext4_get_inode_loc(inode, iloc);
5383ac27a0ecSDave Kleikamp 	if (!err) {
5384ac27a0ecSDave Kleikamp 		BUFFER_TRACE(iloc->bh, "get_write_access");
5385617ba13bSMingming Cao 		err = ext4_journal_get_write_access(handle, iloc->bh);
5386ac27a0ecSDave Kleikamp 		if (err) {
5387ac27a0ecSDave Kleikamp 			brelse(iloc->bh);
5388ac27a0ecSDave Kleikamp 			iloc->bh = NULL;
5389ac27a0ecSDave Kleikamp 		}
5390ac27a0ecSDave Kleikamp 	}
5391617ba13bSMingming Cao 	ext4_std_error(inode->i_sb, err);
5392ac27a0ecSDave Kleikamp 	return err;
5393ac27a0ecSDave Kleikamp }
5394ac27a0ecSDave Kleikamp 
5395ac27a0ecSDave Kleikamp /*
53966dd4ee7cSKalpak Shah  * Expand an inode by new_extra_isize bytes.
53976dd4ee7cSKalpak Shah  * Returns 0 on success or negative error number on failure.
53986dd4ee7cSKalpak Shah  */
53991d03ec98SAneesh Kumar K.V static int ext4_expand_extra_isize(struct inode *inode,
54001d03ec98SAneesh Kumar K.V 				   unsigned int new_extra_isize,
54011d03ec98SAneesh Kumar K.V 				   struct ext4_iloc iloc,
54021d03ec98SAneesh Kumar K.V 				   handle_t *handle)
54036dd4ee7cSKalpak Shah {
54046dd4ee7cSKalpak Shah 	struct ext4_inode *raw_inode;
54056dd4ee7cSKalpak Shah 	struct ext4_xattr_ibody_header *header;
54066dd4ee7cSKalpak Shah 
54076dd4ee7cSKalpak Shah 	if (EXT4_I(inode)->i_extra_isize >= new_extra_isize)
54086dd4ee7cSKalpak Shah 		return 0;
54096dd4ee7cSKalpak Shah 
54106dd4ee7cSKalpak Shah 	raw_inode = ext4_raw_inode(&iloc);
54116dd4ee7cSKalpak Shah 
54126dd4ee7cSKalpak Shah 	header = IHDR(inode, raw_inode);
54136dd4ee7cSKalpak Shah 
54146dd4ee7cSKalpak Shah 	/* No extended attributes present */
541519f5fb7aSTheodore Ts'o 	if (!ext4_test_inode_state(inode, EXT4_STATE_XATTR) ||
54166dd4ee7cSKalpak Shah 	    header->h_magic != cpu_to_le32(EXT4_XATTR_MAGIC)) {
54176dd4ee7cSKalpak Shah 		memset((void *)raw_inode + EXT4_GOOD_OLD_INODE_SIZE, 0,
54186dd4ee7cSKalpak Shah 			new_extra_isize);
54196dd4ee7cSKalpak Shah 		EXT4_I(inode)->i_extra_isize = new_extra_isize;
54206dd4ee7cSKalpak Shah 		return 0;
54216dd4ee7cSKalpak Shah 	}
54226dd4ee7cSKalpak Shah 
54236dd4ee7cSKalpak Shah 	/* try to expand with EAs present */
54246dd4ee7cSKalpak Shah 	return ext4_expand_extra_isize_ea(inode, new_extra_isize,
54256dd4ee7cSKalpak Shah 					  raw_inode, handle);
54266dd4ee7cSKalpak Shah }
54276dd4ee7cSKalpak Shah 
54286dd4ee7cSKalpak Shah /*
5429ac27a0ecSDave Kleikamp  * What we do here is to mark the in-core inode as clean with respect to inode
5430ac27a0ecSDave Kleikamp  * dirtiness (it may still be data-dirty).
5431ac27a0ecSDave Kleikamp  * This means that the in-core inode may be reaped by prune_icache
5432ac27a0ecSDave Kleikamp  * without having to perform any I/O.  This is a very good thing,
5433ac27a0ecSDave Kleikamp  * because *any* task may call prune_icache - even ones which
5434ac27a0ecSDave Kleikamp  * have a transaction open against a different journal.
5435ac27a0ecSDave Kleikamp  *
5436ac27a0ecSDave Kleikamp  * Is this cheating?  Not really.  Sure, we haven't written the
5437ac27a0ecSDave Kleikamp  * inode out, but prune_icache isn't a user-visible syncing function.
5438ac27a0ecSDave Kleikamp  * Whenever the user wants stuff synced (sys_sync, sys_msync, sys_fsync)
5439ac27a0ecSDave Kleikamp  * we start and wait on commits.
5440ac27a0ecSDave Kleikamp  */
5441617ba13bSMingming Cao int ext4_mark_inode_dirty(handle_t *handle, struct inode *inode)
5442ac27a0ecSDave Kleikamp {
5443617ba13bSMingming Cao 	struct ext4_iloc iloc;
54446dd4ee7cSKalpak Shah 	struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb);
54456dd4ee7cSKalpak Shah 	static unsigned int mnt_count;
54466dd4ee7cSKalpak Shah 	int err, ret;
5447ac27a0ecSDave Kleikamp 
5448ac27a0ecSDave Kleikamp 	might_sleep();
54497ff9c073STheodore Ts'o 	trace_ext4_mark_inode_dirty(inode, _RET_IP_);
5450617ba13bSMingming Cao 	err = ext4_reserve_inode_write(handle, inode, &iloc);
54515e1021f2SEryu Guan 	if (err)
54525e1021f2SEryu Guan 		return err;
54530390131bSFrank Mayhar 	if (ext4_handle_valid(handle) &&
54540390131bSFrank Mayhar 	    EXT4_I(inode)->i_extra_isize < sbi->s_want_extra_isize &&
545519f5fb7aSTheodore Ts'o 	    !ext4_test_inode_state(inode, EXT4_STATE_NO_EXPAND)) {
54566dd4ee7cSKalpak Shah 		/*
54576dd4ee7cSKalpak Shah 		 * We need extra buffer credits since we may write into EA block
54586dd4ee7cSKalpak Shah 		 * with this same handle. If journal_extend fails, then it will
54596dd4ee7cSKalpak Shah 		 * only result in a minor loss of functionality for that inode.
54606dd4ee7cSKalpak Shah 		 * If this is felt to be critical, then e2fsck should be run to
54616dd4ee7cSKalpak Shah 		 * force a large enough s_min_extra_isize.
54626dd4ee7cSKalpak Shah 		 */
54636dd4ee7cSKalpak Shah 		if ((jbd2_journal_extend(handle,
54646dd4ee7cSKalpak Shah 			     EXT4_DATA_TRANS_BLOCKS(inode->i_sb))) == 0) {
54656dd4ee7cSKalpak Shah 			ret = ext4_expand_extra_isize(inode,
54666dd4ee7cSKalpak Shah 						      sbi->s_want_extra_isize,
54676dd4ee7cSKalpak Shah 						      iloc, handle);
54686dd4ee7cSKalpak Shah 			if (ret) {
546919f5fb7aSTheodore Ts'o 				ext4_set_inode_state(inode,
547019f5fb7aSTheodore Ts'o 						     EXT4_STATE_NO_EXPAND);
5471c1bddad9SAneesh Kumar K.V 				if (mnt_count !=
5472c1bddad9SAneesh Kumar K.V 					le16_to_cpu(sbi->s_es->s_mnt_count)) {
547312062dddSEric Sandeen 					ext4_warning(inode->i_sb,
54746dd4ee7cSKalpak Shah 					"Unable to expand inode %lu. Delete"
54756dd4ee7cSKalpak Shah 					" some EAs or run e2fsck.",
54766dd4ee7cSKalpak Shah 					inode->i_ino);
5477c1bddad9SAneesh Kumar K.V 					mnt_count =
5478c1bddad9SAneesh Kumar K.V 					  le16_to_cpu(sbi->s_es->s_mnt_count);
54796dd4ee7cSKalpak Shah 				}
54806dd4ee7cSKalpak Shah 			}
54816dd4ee7cSKalpak Shah 		}
54826dd4ee7cSKalpak Shah 	}
54835e1021f2SEryu Guan 	return ext4_mark_iloc_dirty(handle, inode, &iloc);
5484ac27a0ecSDave Kleikamp }
5485ac27a0ecSDave Kleikamp 
5486ac27a0ecSDave Kleikamp /*
5487617ba13bSMingming Cao  * ext4_dirty_inode() is called from __mark_inode_dirty()
5488ac27a0ecSDave Kleikamp  *
5489ac27a0ecSDave Kleikamp  * We're really interested in the case where a file is being extended.
5490ac27a0ecSDave Kleikamp  * i_size has been changed by generic_commit_write() and we thus need
5491ac27a0ecSDave Kleikamp  * to include the updated inode in the current transaction.
5492ac27a0ecSDave Kleikamp  *
54935dd4056dSChristoph Hellwig  * Also, dquot_alloc_block() will always dirty the inode when blocks
5494ac27a0ecSDave Kleikamp  * are allocated to the file.
5495ac27a0ecSDave Kleikamp  *
5496ac27a0ecSDave Kleikamp  * If the inode is marked synchronous, we don't honour that here - doing
5497ac27a0ecSDave Kleikamp  * so would cause a commit on atime updates, which we don't bother doing.
5498ac27a0ecSDave Kleikamp  * We handle synchronous inodes at the highest possible level.
54990ae45f63STheodore Ts'o  *
55000ae45f63STheodore Ts'o  * If only the I_DIRTY_TIME flag is set, we can skip everything.  If
55010ae45f63STheodore Ts'o  * I_DIRTY_TIME and I_DIRTY_SYNC is set, the only inode fields we need
55020ae45f63STheodore Ts'o  * to copy into the on-disk inode structure are the timestamp files.
5503ac27a0ecSDave Kleikamp  */
5504aa385729SChristoph Hellwig void ext4_dirty_inode(struct inode *inode, int flags)
5505ac27a0ecSDave Kleikamp {
5506ac27a0ecSDave Kleikamp 	handle_t *handle;
5507ac27a0ecSDave Kleikamp 
55080ae45f63STheodore Ts'o 	if (flags == I_DIRTY_TIME)
55090ae45f63STheodore Ts'o 		return;
55109924a92aSTheodore Ts'o 	handle = ext4_journal_start(inode, EXT4_HT_INODE, 2);
5511ac27a0ecSDave Kleikamp 	if (IS_ERR(handle))
5512ac27a0ecSDave Kleikamp 		goto out;
5513f3dc272fSCurt Wohlgemuth 
5514617ba13bSMingming Cao 	ext4_mark_inode_dirty(handle, inode);
5515f3dc272fSCurt Wohlgemuth 
5516617ba13bSMingming Cao 	ext4_journal_stop(handle);
5517ac27a0ecSDave Kleikamp out:
5518ac27a0ecSDave Kleikamp 	return;
5519ac27a0ecSDave Kleikamp }
5520ac27a0ecSDave Kleikamp 
5521ac27a0ecSDave Kleikamp #if 0
5522ac27a0ecSDave Kleikamp /*
5523ac27a0ecSDave Kleikamp  * Bind an inode's backing buffer_head into this transaction, to prevent
5524ac27a0ecSDave Kleikamp  * it from being flushed to disk early.  Unlike
5525617ba13bSMingming Cao  * ext4_reserve_inode_write, this leaves behind no bh reference and
5526ac27a0ecSDave Kleikamp  * returns no iloc structure, so the caller needs to repeat the iloc
5527ac27a0ecSDave Kleikamp  * lookup to mark the inode dirty later.
5528ac27a0ecSDave Kleikamp  */
5529617ba13bSMingming Cao static int ext4_pin_inode(handle_t *handle, struct inode *inode)
5530ac27a0ecSDave Kleikamp {
5531617ba13bSMingming Cao 	struct ext4_iloc iloc;
5532ac27a0ecSDave Kleikamp 
5533ac27a0ecSDave Kleikamp 	int err = 0;
5534ac27a0ecSDave Kleikamp 	if (handle) {
5535617ba13bSMingming Cao 		err = ext4_get_inode_loc(inode, &iloc);
5536ac27a0ecSDave Kleikamp 		if (!err) {
5537ac27a0ecSDave Kleikamp 			BUFFER_TRACE(iloc.bh, "get_write_access");
5538dab291afSMingming Cao 			err = jbd2_journal_get_write_access(handle, iloc.bh);
5539ac27a0ecSDave Kleikamp 			if (!err)
55400390131bSFrank Mayhar 				err = ext4_handle_dirty_metadata(handle,
554173b50c1cSCurt Wohlgemuth 								 NULL,
5542ac27a0ecSDave Kleikamp 								 iloc.bh);
5543ac27a0ecSDave Kleikamp 			brelse(iloc.bh);
5544ac27a0ecSDave Kleikamp 		}
5545ac27a0ecSDave Kleikamp 	}
5546617ba13bSMingming Cao 	ext4_std_error(inode->i_sb, err);
5547ac27a0ecSDave Kleikamp 	return err;
5548ac27a0ecSDave Kleikamp }
5549ac27a0ecSDave Kleikamp #endif
5550ac27a0ecSDave Kleikamp 
5551617ba13bSMingming Cao int ext4_change_inode_journal_flag(struct inode *inode, int val)
5552ac27a0ecSDave Kleikamp {
5553ac27a0ecSDave Kleikamp 	journal_t *journal;
5554ac27a0ecSDave Kleikamp 	handle_t *handle;
5555ac27a0ecSDave Kleikamp 	int err;
5556c8585c6fSDaeho Jeong 	struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb);
5557ac27a0ecSDave Kleikamp 
5558ac27a0ecSDave Kleikamp 	/*
5559ac27a0ecSDave Kleikamp 	 * We have to be very careful here: changing a data block's
5560ac27a0ecSDave Kleikamp 	 * journaling status dynamically is dangerous.  If we write a
5561ac27a0ecSDave Kleikamp 	 * data block to the journal, change the status and then delete
5562ac27a0ecSDave Kleikamp 	 * that block, we risk forgetting to revoke the old log record
5563ac27a0ecSDave Kleikamp 	 * from the journal and so a subsequent replay can corrupt data.
5564ac27a0ecSDave Kleikamp 	 * So, first we make sure that the journal is empty and that
5565ac27a0ecSDave Kleikamp 	 * nobody is changing anything.
5566ac27a0ecSDave Kleikamp 	 */
5567ac27a0ecSDave Kleikamp 
5568617ba13bSMingming Cao 	journal = EXT4_JOURNAL(inode);
55690390131bSFrank Mayhar 	if (!journal)
55700390131bSFrank Mayhar 		return 0;
5571d699594dSDave Hansen 	if (is_journal_aborted(journal))
5572ac27a0ecSDave Kleikamp 		return -EROFS;
5573ac27a0ecSDave Kleikamp 
557417335dccSDmitry Monakhov 	/* Wait for all existing dio workers */
557517335dccSDmitry Monakhov 	ext4_inode_block_unlocked_dio(inode);
557617335dccSDmitry Monakhov 	inode_dio_wait(inode);
557717335dccSDmitry Monakhov 
55784c546592SDaeho Jeong 	/*
55794c546592SDaeho Jeong 	 * Before flushing the journal and switching inode's aops, we have
55804c546592SDaeho Jeong 	 * to flush all dirty data the inode has. There can be outstanding
55814c546592SDaeho Jeong 	 * delayed allocations, there can be unwritten extents created by
55824c546592SDaeho Jeong 	 * fallocate or buffered writes in dioread_nolock mode covered by
55834c546592SDaeho Jeong 	 * dirty data which can be converted only after flushing the dirty
55844c546592SDaeho Jeong 	 * data (and journalled aops don't know how to handle these cases).
55854c546592SDaeho Jeong 	 */
55864c546592SDaeho Jeong 	if (val) {
55874c546592SDaeho Jeong 		down_write(&EXT4_I(inode)->i_mmap_sem);
55884c546592SDaeho Jeong 		err = filemap_write_and_wait(inode->i_mapping);
55894c546592SDaeho Jeong 		if (err < 0) {
55904c546592SDaeho Jeong 			up_write(&EXT4_I(inode)->i_mmap_sem);
55914c546592SDaeho Jeong 			ext4_inode_resume_unlocked_dio(inode);
55924c546592SDaeho Jeong 			return err;
55934c546592SDaeho Jeong 		}
55944c546592SDaeho Jeong 	}
55954c546592SDaeho Jeong 
5596c8585c6fSDaeho Jeong 	percpu_down_write(&sbi->s_journal_flag_rwsem);
5597dab291afSMingming Cao 	jbd2_journal_lock_updates(journal);
5598ac27a0ecSDave Kleikamp 
5599ac27a0ecSDave Kleikamp 	/*
5600ac27a0ecSDave Kleikamp 	 * OK, there are no updates running now, and all cached data is
5601ac27a0ecSDave Kleikamp 	 * synced to disk.  We are now in a completely consistent state
5602ac27a0ecSDave Kleikamp 	 * which doesn't have anything in the journal, and we know that
5603ac27a0ecSDave Kleikamp 	 * no filesystem updates are running, so it is safe to modify
5604ac27a0ecSDave Kleikamp 	 * the inode's in-core data-journaling state flag now.
5605ac27a0ecSDave Kleikamp 	 */
5606ac27a0ecSDave Kleikamp 
5607ac27a0ecSDave Kleikamp 	if (val)
560812e9b892SDmitry Monakhov 		ext4_set_inode_flag(inode, EXT4_INODE_JOURNAL_DATA);
56095872ddaaSYongqiang Yang 	else {
56104f879ca6SJan Kara 		err = jbd2_journal_flush(journal);
56114f879ca6SJan Kara 		if (err < 0) {
56124f879ca6SJan Kara 			jbd2_journal_unlock_updates(journal);
5613c8585c6fSDaeho Jeong 			percpu_up_write(&sbi->s_journal_flag_rwsem);
56144f879ca6SJan Kara 			ext4_inode_resume_unlocked_dio(inode);
56154f879ca6SJan Kara 			return err;
56164f879ca6SJan Kara 		}
561712e9b892SDmitry Monakhov 		ext4_clear_inode_flag(inode, EXT4_INODE_JOURNAL_DATA);
56185872ddaaSYongqiang Yang 	}
5619617ba13bSMingming Cao 	ext4_set_aops(inode);
5620ac27a0ecSDave Kleikamp 
5621dab291afSMingming Cao 	jbd2_journal_unlock_updates(journal);
5622c8585c6fSDaeho Jeong 	percpu_up_write(&sbi->s_journal_flag_rwsem);
5623c8585c6fSDaeho Jeong 
56244c546592SDaeho Jeong 	if (val)
56254c546592SDaeho Jeong 		up_write(&EXT4_I(inode)->i_mmap_sem);
562617335dccSDmitry Monakhov 	ext4_inode_resume_unlocked_dio(inode);
5627ac27a0ecSDave Kleikamp 
5628ac27a0ecSDave Kleikamp 	/* Finally we can mark the inode as dirty. */
5629ac27a0ecSDave Kleikamp 
56309924a92aSTheodore Ts'o 	handle = ext4_journal_start(inode, EXT4_HT_INODE, 1);
5631ac27a0ecSDave Kleikamp 	if (IS_ERR(handle))
5632ac27a0ecSDave Kleikamp 		return PTR_ERR(handle);
5633ac27a0ecSDave Kleikamp 
5634617ba13bSMingming Cao 	err = ext4_mark_inode_dirty(handle, inode);
56350390131bSFrank Mayhar 	ext4_handle_sync(handle);
5636617ba13bSMingming Cao 	ext4_journal_stop(handle);
5637617ba13bSMingming Cao 	ext4_std_error(inode->i_sb, err);
5638ac27a0ecSDave Kleikamp 
5639ac27a0ecSDave Kleikamp 	return err;
5640ac27a0ecSDave Kleikamp }
56412e9ee850SAneesh Kumar K.V 
56422e9ee850SAneesh Kumar K.V static int ext4_bh_unmapped(handle_t *handle, struct buffer_head *bh)
56432e9ee850SAneesh Kumar K.V {
56442e9ee850SAneesh Kumar K.V 	return !buffer_mapped(bh);
56452e9ee850SAneesh Kumar K.V }
56462e9ee850SAneesh Kumar K.V 
5647c2ec175cSNick Piggin int ext4_page_mkwrite(struct vm_area_struct *vma, struct vm_fault *vmf)
56482e9ee850SAneesh Kumar K.V {
5649c2ec175cSNick Piggin 	struct page *page = vmf->page;
56502e9ee850SAneesh Kumar K.V 	loff_t size;
56512e9ee850SAneesh Kumar K.V 	unsigned long len;
56529ea7df53SJan Kara 	int ret;
56532e9ee850SAneesh Kumar K.V 	struct file *file = vma->vm_file;
5654496ad9aaSAl Viro 	struct inode *inode = file_inode(file);
56552e9ee850SAneesh Kumar K.V 	struct address_space *mapping = inode->i_mapping;
56569ea7df53SJan Kara 	handle_t *handle;
56579ea7df53SJan Kara 	get_block_t *get_block;
56589ea7df53SJan Kara 	int retries = 0;
56592e9ee850SAneesh Kumar K.V 
56608e8ad8a5SJan Kara 	sb_start_pagefault(inode->i_sb);
5661041bbb6dSTheodore Ts'o 	file_update_time(vma->vm_file);
5662ea3d7209SJan Kara 
5663ea3d7209SJan Kara 	down_read(&EXT4_I(inode)->i_mmap_sem);
56649ea7df53SJan Kara 	/* Delalloc case is easy... */
56659ea7df53SJan Kara 	if (test_opt(inode->i_sb, DELALLOC) &&
56669ea7df53SJan Kara 	    !ext4_should_journal_data(inode) &&
56679ea7df53SJan Kara 	    !ext4_nonda_switch(inode->i_sb)) {
56689ea7df53SJan Kara 		do {
56695c500029SRoss Zwisler 			ret = block_page_mkwrite(vma, vmf,
56709ea7df53SJan Kara 						   ext4_da_get_block_prep);
56719ea7df53SJan Kara 		} while (ret == -ENOSPC &&
56729ea7df53SJan Kara 		       ext4_should_retry_alloc(inode->i_sb, &retries));
56739ea7df53SJan Kara 		goto out_ret;
56742e9ee850SAneesh Kumar K.V 	}
56750e499890SDarrick J. Wong 
56760e499890SDarrick J. Wong 	lock_page(page);
56779ea7df53SJan Kara 	size = i_size_read(inode);
56789ea7df53SJan Kara 	/* Page got truncated from under us? */
56799ea7df53SJan Kara 	if (page->mapping != mapping || page_offset(page) > size) {
56809ea7df53SJan Kara 		unlock_page(page);
56819ea7df53SJan Kara 		ret = VM_FAULT_NOPAGE;
56829ea7df53SJan Kara 		goto out;
56830e499890SDarrick J. Wong 	}
56842e9ee850SAneesh Kumar K.V 
568509cbfeafSKirill A. Shutemov 	if (page->index == size >> PAGE_SHIFT)
568609cbfeafSKirill A. Shutemov 		len = size & ~PAGE_MASK;
56872e9ee850SAneesh Kumar K.V 	else
568809cbfeafSKirill A. Shutemov 		len = PAGE_SIZE;
5689a827eaffSAneesh Kumar K.V 	/*
56909ea7df53SJan Kara 	 * Return if we have all the buffers mapped. This avoids the need to do
56919ea7df53SJan Kara 	 * journal_start/journal_stop which can block and take a long time
5692a827eaffSAneesh Kumar K.V 	 */
56932e9ee850SAneesh Kumar K.V 	if (page_has_buffers(page)) {
5694f19d5870STao Ma 		if (!ext4_walk_page_buffers(NULL, page_buffers(page),
5695f19d5870STao Ma 					    0, len, NULL,
5696a827eaffSAneesh Kumar K.V 					    ext4_bh_unmapped)) {
56979ea7df53SJan Kara 			/* Wait so that we don't change page under IO */
56981d1d1a76SDarrick J. Wong 			wait_for_stable_page(page);
56999ea7df53SJan Kara 			ret = VM_FAULT_LOCKED;
57009ea7df53SJan Kara 			goto out;
57012e9ee850SAneesh Kumar K.V 		}
5702a827eaffSAneesh Kumar K.V 	}
5703a827eaffSAneesh Kumar K.V 	unlock_page(page);
57049ea7df53SJan Kara 	/* OK, we need to fill the hole... */
57059ea7df53SJan Kara 	if (ext4_should_dioread_nolock(inode))
5706705965bdSJan Kara 		get_block = ext4_get_block_unwritten;
57079ea7df53SJan Kara 	else
57089ea7df53SJan Kara 		get_block = ext4_get_block;
57099ea7df53SJan Kara retry_alloc:
57109924a92aSTheodore Ts'o 	handle = ext4_journal_start(inode, EXT4_HT_WRITE_PAGE,
57119924a92aSTheodore Ts'o 				    ext4_writepage_trans_blocks(inode));
57129ea7df53SJan Kara 	if (IS_ERR(handle)) {
5713c2ec175cSNick Piggin 		ret = VM_FAULT_SIGBUS;
57149ea7df53SJan Kara 		goto out;
57159ea7df53SJan Kara 	}
57165c500029SRoss Zwisler 	ret = block_page_mkwrite(vma, vmf, get_block);
57179ea7df53SJan Kara 	if (!ret && ext4_should_journal_data(inode)) {
5718f19d5870STao Ma 		if (ext4_walk_page_buffers(handle, page_buffers(page), 0,
571909cbfeafSKirill A. Shutemov 			  PAGE_SIZE, NULL, do_journal_get_write_access)) {
57209ea7df53SJan Kara 			unlock_page(page);
57219ea7df53SJan Kara 			ret = VM_FAULT_SIGBUS;
5722fcbb5515SYongqiang Yang 			ext4_journal_stop(handle);
57239ea7df53SJan Kara 			goto out;
57249ea7df53SJan Kara 		}
57259ea7df53SJan Kara 		ext4_set_inode_state(inode, EXT4_STATE_JDATA);
57269ea7df53SJan Kara 	}
57279ea7df53SJan Kara 	ext4_journal_stop(handle);
57289ea7df53SJan Kara 	if (ret == -ENOSPC && ext4_should_retry_alloc(inode->i_sb, &retries))
57299ea7df53SJan Kara 		goto retry_alloc;
57309ea7df53SJan Kara out_ret:
57319ea7df53SJan Kara 	ret = block_page_mkwrite_return(ret);
57329ea7df53SJan Kara out:
5733ea3d7209SJan Kara 	up_read(&EXT4_I(inode)->i_mmap_sem);
57348e8ad8a5SJan Kara 	sb_end_pagefault(inode->i_sb);
57352e9ee850SAneesh Kumar K.V 	return ret;
57362e9ee850SAneesh Kumar K.V }
5737ea3d7209SJan Kara 
5738ea3d7209SJan Kara int ext4_filemap_fault(struct vm_area_struct *vma, struct vm_fault *vmf)
5739ea3d7209SJan Kara {
5740ea3d7209SJan Kara 	struct inode *inode = file_inode(vma->vm_file);
5741ea3d7209SJan Kara 	int err;
5742ea3d7209SJan Kara 
5743ea3d7209SJan Kara 	down_read(&EXT4_I(inode)->i_mmap_sem);
5744ea3d7209SJan Kara 	err = filemap_fault(vma, vmf);
5745ea3d7209SJan Kara 	up_read(&EXT4_I(inode)->i_mmap_sem);
5746ea3d7209SJan Kara 
5747ea3d7209SJan Kara 	return err;
5748ea3d7209SJan Kara }
57492d90c160SJan Kara 
57502d90c160SJan Kara /*
57512d90c160SJan Kara  * Find the first extent at or after @lblk in an inode that is not a hole.
57522d90c160SJan Kara  * Search for @map_len blocks at most. The extent is returned in @result.
57532d90c160SJan Kara  *
57542d90c160SJan Kara  * The function returns 1 if we found an extent. The function returns 0 in
57552d90c160SJan Kara  * case there is no extent at or after @lblk and in that case also sets
57562d90c160SJan Kara  * @result->es_len to 0. In case of error, the error code is returned.
57572d90c160SJan Kara  */
57582d90c160SJan Kara int ext4_get_next_extent(struct inode *inode, ext4_lblk_t lblk,
57592d90c160SJan Kara 			 unsigned int map_len, struct extent_status *result)
57602d90c160SJan Kara {
57612d90c160SJan Kara 	struct ext4_map_blocks map;
57622d90c160SJan Kara 	struct extent_status es = {};
57632d90c160SJan Kara 	int ret;
57642d90c160SJan Kara 
57652d90c160SJan Kara 	map.m_lblk = lblk;
57662d90c160SJan Kara 	map.m_len = map_len;
57672d90c160SJan Kara 
57682d90c160SJan Kara 	/*
57692d90c160SJan Kara 	 * For non-extent based files this loop may iterate several times since
57702d90c160SJan Kara 	 * we do not determine full hole size.
57712d90c160SJan Kara 	 */
57722d90c160SJan Kara 	while (map.m_len > 0) {
57732d90c160SJan Kara 		ret = ext4_map_blocks(NULL, inode, &map, 0);
57742d90c160SJan Kara 		if (ret < 0)
57752d90c160SJan Kara 			return ret;
57762d90c160SJan Kara 		/* There's extent covering m_lblk? Just return it. */
57772d90c160SJan Kara 		if (ret > 0) {
57782d90c160SJan Kara 			int status;
57792d90c160SJan Kara 
57802d90c160SJan Kara 			ext4_es_store_pblock(result, map.m_pblk);
57812d90c160SJan Kara 			result->es_lblk = map.m_lblk;
57822d90c160SJan Kara 			result->es_len = map.m_len;
57832d90c160SJan Kara 			if (map.m_flags & EXT4_MAP_UNWRITTEN)
57842d90c160SJan Kara 				status = EXTENT_STATUS_UNWRITTEN;
57852d90c160SJan Kara 			else
57862d90c160SJan Kara 				status = EXTENT_STATUS_WRITTEN;
57872d90c160SJan Kara 			ext4_es_store_status(result, status);
57882d90c160SJan Kara 			return 1;
57892d90c160SJan Kara 		}
57902d90c160SJan Kara 		ext4_es_find_delayed_extent_range(inode, map.m_lblk,
57912d90c160SJan Kara 						  map.m_lblk + map.m_len - 1,
57922d90c160SJan Kara 						  &es);
57932d90c160SJan Kara 		/* Is delalloc data before next block in extent tree? */
57942d90c160SJan Kara 		if (es.es_len && es.es_lblk < map.m_lblk + map.m_len) {
57952d90c160SJan Kara 			ext4_lblk_t offset = 0;
57962d90c160SJan Kara 
57972d90c160SJan Kara 			if (es.es_lblk < lblk)
57982d90c160SJan Kara 				offset = lblk - es.es_lblk;
57992d90c160SJan Kara 			result->es_lblk = es.es_lblk + offset;
58002d90c160SJan Kara 			ext4_es_store_pblock(result,
58012d90c160SJan Kara 					     ext4_es_pblock(&es) + offset);
58022d90c160SJan Kara 			result->es_len = es.es_len - offset;
58032d90c160SJan Kara 			ext4_es_store_status(result, ext4_es_status(&es));
58042d90c160SJan Kara 
58052d90c160SJan Kara 			return 1;
58062d90c160SJan Kara 		}
58072d90c160SJan Kara 		/* There's a hole at m_lblk, advance us after it */
58082d90c160SJan Kara 		map.m_lblk += map.m_len;
58092d90c160SJan Kara 		map_len -= map.m_len;
58102d90c160SJan Kara 		map.m_len = map_len;
58112d90c160SJan Kara 		cond_resched();
58122d90c160SJan Kara 	}
58132d90c160SJan Kara 	result->es_len = 0;
58142d90c160SJan Kara 	return 0;
58152d90c160SJan Kara }
5816