xref: /openbmc/linux/fs/ext4/inode.c (revision 7f6d5b529b7dfe2fca30cbf4bc81e16575090025)
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 	__u16 csum_lo;
55814525f4SDarrick J. Wong 	__u16 csum_hi = 0;
56814525f4SDarrick J. Wong 	__u32 csum;
57814525f4SDarrick J. Wong 
58171a7f21SDmitry Monakhov 	csum_lo = le16_to_cpu(raw->i_checksum_lo);
59814525f4SDarrick J. Wong 	raw->i_checksum_lo = 0;
60814525f4SDarrick J. Wong 	if (EXT4_INODE_SIZE(inode->i_sb) > EXT4_GOOD_OLD_INODE_SIZE &&
61814525f4SDarrick J. Wong 	    EXT4_FITS_IN_INODE(raw, ei, i_checksum_hi)) {
62171a7f21SDmitry Monakhov 		csum_hi = le16_to_cpu(raw->i_checksum_hi);
63814525f4SDarrick J. Wong 		raw->i_checksum_hi = 0;
64814525f4SDarrick J. Wong 	}
65814525f4SDarrick J. Wong 
66814525f4SDarrick J. Wong 	csum = ext4_chksum(sbi, ei->i_csum_seed, (__u8 *)raw,
67814525f4SDarrick J. Wong 			   EXT4_INODE_SIZE(inode->i_sb));
68814525f4SDarrick J. Wong 
69171a7f21SDmitry Monakhov 	raw->i_checksum_lo = cpu_to_le16(csum_lo);
70814525f4SDarrick J. Wong 	if (EXT4_INODE_SIZE(inode->i_sb) > EXT4_GOOD_OLD_INODE_SIZE &&
71814525f4SDarrick J. Wong 	    EXT4_FITS_IN_INODE(raw, ei, i_checksum_hi))
72171a7f21SDmitry Monakhov 		raw->i_checksum_hi = cpu_to_le16(csum_hi);
73814525f4SDarrick J. Wong 
74814525f4SDarrick J. Wong 	return csum;
75814525f4SDarrick J. Wong }
76814525f4SDarrick J. Wong 
77814525f4SDarrick J. Wong static int ext4_inode_csum_verify(struct inode *inode, struct ext4_inode *raw,
78814525f4SDarrick J. Wong 				  struct ext4_inode_info *ei)
79814525f4SDarrick J. Wong {
80814525f4SDarrick J. Wong 	__u32 provided, calculated;
81814525f4SDarrick J. Wong 
82814525f4SDarrick J. Wong 	if (EXT4_SB(inode->i_sb)->s_es->s_creator_os !=
83814525f4SDarrick J. Wong 	    cpu_to_le32(EXT4_OS_LINUX) ||
849aa5d32bSDmitry Monakhov 	    !ext4_has_metadata_csum(inode->i_sb))
85814525f4SDarrick J. Wong 		return 1;
86814525f4SDarrick J. Wong 
87814525f4SDarrick J. Wong 	provided = le16_to_cpu(raw->i_checksum_lo);
88814525f4SDarrick J. Wong 	calculated = ext4_inode_csum(inode, raw, ei);
89814525f4SDarrick J. Wong 	if (EXT4_INODE_SIZE(inode->i_sb) > EXT4_GOOD_OLD_INODE_SIZE &&
90814525f4SDarrick J. Wong 	    EXT4_FITS_IN_INODE(raw, ei, i_checksum_hi))
91814525f4SDarrick J. Wong 		provided |= ((__u32)le16_to_cpu(raw->i_checksum_hi)) << 16;
92814525f4SDarrick J. Wong 	else
93814525f4SDarrick J. Wong 		calculated &= 0xFFFF;
94814525f4SDarrick J. Wong 
95814525f4SDarrick J. Wong 	return provided == calculated;
96814525f4SDarrick J. Wong }
97814525f4SDarrick J. Wong 
98814525f4SDarrick J. Wong static void ext4_inode_csum_set(struct inode *inode, struct ext4_inode *raw,
99814525f4SDarrick J. Wong 				struct ext4_inode_info *ei)
100814525f4SDarrick J. Wong {
101814525f4SDarrick J. Wong 	__u32 csum;
102814525f4SDarrick J. Wong 
103814525f4SDarrick J. Wong 	if (EXT4_SB(inode->i_sb)->s_es->s_creator_os !=
104814525f4SDarrick J. Wong 	    cpu_to_le32(EXT4_OS_LINUX) ||
1059aa5d32bSDmitry Monakhov 	    !ext4_has_metadata_csum(inode->i_sb))
106814525f4SDarrick J. Wong 		return;
107814525f4SDarrick J. Wong 
108814525f4SDarrick J. Wong 	csum = ext4_inode_csum(inode, raw, ei);
109814525f4SDarrick J. Wong 	raw->i_checksum_lo = cpu_to_le16(csum & 0xFFFF);
110814525f4SDarrick J. Wong 	if (EXT4_INODE_SIZE(inode->i_sb) > EXT4_GOOD_OLD_INODE_SIZE &&
111814525f4SDarrick J. Wong 	    EXT4_FITS_IN_INODE(raw, ei, i_checksum_hi))
112814525f4SDarrick J. Wong 		raw->i_checksum_hi = cpu_to_le16(csum >> 16);
113814525f4SDarrick J. Wong }
114814525f4SDarrick J. Wong 
115678aaf48SJan Kara static inline int ext4_begin_ordered_truncate(struct inode *inode,
116678aaf48SJan Kara 					      loff_t new_size)
117678aaf48SJan Kara {
1187ff9c073STheodore Ts'o 	trace_ext4_begin_ordered_truncate(inode, new_size);
1198aefcd55STheodore Ts'o 	/*
1208aefcd55STheodore Ts'o 	 * If jinode is zero, then we never opened the file for
1218aefcd55STheodore Ts'o 	 * writing, so there's no need to call
1228aefcd55STheodore Ts'o 	 * jbd2_journal_begin_ordered_truncate() since there's no
1238aefcd55STheodore Ts'o 	 * outstanding writes we need to flush.
1248aefcd55STheodore Ts'o 	 */
1258aefcd55STheodore Ts'o 	if (!EXT4_I(inode)->jinode)
1268aefcd55STheodore Ts'o 		return 0;
1278aefcd55STheodore Ts'o 	return jbd2_journal_begin_ordered_truncate(EXT4_JOURNAL(inode),
1288aefcd55STheodore Ts'o 						   EXT4_I(inode)->jinode,
129678aaf48SJan Kara 						   new_size);
130678aaf48SJan Kara }
131678aaf48SJan Kara 
132d47992f8SLukas Czerner static void ext4_invalidatepage(struct page *page, unsigned int offset,
133d47992f8SLukas Czerner 				unsigned int length);
134cb20d518STheodore Ts'o static int __ext4_journalled_writepage(struct page *page, unsigned int len);
135cb20d518STheodore Ts'o static int ext4_bh_delay_or_unwritten(handle_t *handle, struct buffer_head *bh);
136fffb2739SJan Kara static int ext4_meta_trans_blocks(struct inode *inode, int lblocks,
137fffb2739SJan Kara 				  int pextents);
13864769240SAlex Tomas 
139ac27a0ecSDave Kleikamp /*
140ac27a0ecSDave Kleikamp  * Test whether an inode is a fast symlink.
141ac27a0ecSDave Kleikamp  */
142f348c252STheodore Ts'o int ext4_inode_is_fast_symlink(struct inode *inode)
143ac27a0ecSDave Kleikamp {
144617ba13bSMingming Cao         int ea_blocks = EXT4_I(inode)->i_file_acl ?
14565eddb56SYongqiang Yang 		EXT4_CLUSTER_SIZE(inode->i_sb) >> 9 : 0;
146ac27a0ecSDave Kleikamp 
147bd9db175SZheng Liu 	if (ext4_has_inline_data(inode))
148bd9db175SZheng Liu 		return 0;
149bd9db175SZheng Liu 
150ac27a0ecSDave Kleikamp 	return (S_ISLNK(inode->i_mode) && inode->i_blocks - ea_blocks == 0);
151ac27a0ecSDave Kleikamp }
152ac27a0ecSDave Kleikamp 
153ac27a0ecSDave Kleikamp /*
154ac27a0ecSDave Kleikamp  * Restart the transaction associated with *handle.  This does a commit,
155ac27a0ecSDave Kleikamp  * so before we call here everything must be consistently dirtied against
156ac27a0ecSDave Kleikamp  * this transaction.
157ac27a0ecSDave Kleikamp  */
158487caeefSJan Kara int ext4_truncate_restart_trans(handle_t *handle, struct inode *inode,
159487caeefSJan Kara 				 int nblocks)
160ac27a0ecSDave Kleikamp {
161487caeefSJan Kara 	int ret;
162487caeefSJan Kara 
163487caeefSJan Kara 	/*
164e35fd660STheodore Ts'o 	 * Drop i_data_sem to avoid deadlock with ext4_map_blocks.  At this
165487caeefSJan Kara 	 * moment, get_block can be called only for blocks inside i_size since
166487caeefSJan Kara 	 * page cache has been already dropped and writes are blocked by
167487caeefSJan Kara 	 * i_mutex. So we can safely drop the i_data_sem here.
168487caeefSJan Kara 	 */
1690390131bSFrank Mayhar 	BUG_ON(EXT4_JOURNAL(inode) == NULL);
170ac27a0ecSDave Kleikamp 	jbd_debug(2, "restarting handle %p\n", handle);
171487caeefSJan Kara 	up_write(&EXT4_I(inode)->i_data_sem);
1728e8eaabeSAmir Goldstein 	ret = ext4_journal_restart(handle, nblocks);
173487caeefSJan Kara 	down_write(&EXT4_I(inode)->i_data_sem);
174fa5d1113SAneesh Kumar K.V 	ext4_discard_preallocations(inode);
175487caeefSJan Kara 
176487caeefSJan Kara 	return ret;
177ac27a0ecSDave Kleikamp }
178ac27a0ecSDave Kleikamp 
179ac27a0ecSDave Kleikamp /*
180ac27a0ecSDave Kleikamp  * Called at the last iput() if i_nlink is zero.
181ac27a0ecSDave Kleikamp  */
1820930fcc1SAl Viro void ext4_evict_inode(struct inode *inode)
183ac27a0ecSDave Kleikamp {
184ac27a0ecSDave Kleikamp 	handle_t *handle;
185bc965ab3STheodore Ts'o 	int err;
186ac27a0ecSDave Kleikamp 
1877ff9c073STheodore Ts'o 	trace_ext4_evict_inode(inode);
1882581fdc8SJiaying Zhang 
1890930fcc1SAl Viro 	if (inode->i_nlink) {
1902d859db3SJan Kara 		/*
1912d859db3SJan Kara 		 * When journalling data dirty buffers are tracked only in the
1922d859db3SJan Kara 		 * journal. So although mm thinks everything is clean and
1932d859db3SJan Kara 		 * ready for reaping the inode might still have some pages to
1942d859db3SJan Kara 		 * write in the running transaction or waiting to be
1952d859db3SJan Kara 		 * checkpointed. Thus calling jbd2_journal_invalidatepage()
1962d859db3SJan Kara 		 * (via truncate_inode_pages()) to discard these buffers can
1972d859db3SJan Kara 		 * cause data loss. Also even if we did not discard these
1982d859db3SJan Kara 		 * buffers, we would have no way to find them after the inode
1992d859db3SJan Kara 		 * is reaped and thus user could see stale data if he tries to
2002d859db3SJan Kara 		 * read them before the transaction is checkpointed. So be
2012d859db3SJan Kara 		 * careful and force everything to disk here... We use
2022d859db3SJan Kara 		 * ei->i_datasync_tid to store the newest transaction
2032d859db3SJan Kara 		 * containing inode's data.
2042d859db3SJan Kara 		 *
2052d859db3SJan Kara 		 * Note that directories do not have this problem because they
2062d859db3SJan Kara 		 * don't use page cache.
2072d859db3SJan Kara 		 */
2082d859db3SJan Kara 		if (ext4_should_journal_data(inode) &&
2092b405bfaSTheodore Ts'o 		    (S_ISLNK(inode->i_mode) || S_ISREG(inode->i_mode)) &&
2102b405bfaSTheodore Ts'o 		    inode->i_ino != EXT4_JOURNAL_INO) {
2112d859db3SJan Kara 			journal_t *journal = EXT4_SB(inode->i_sb)->s_journal;
2122d859db3SJan Kara 			tid_t commit_tid = EXT4_I(inode)->i_datasync_tid;
2132d859db3SJan Kara 
214d76a3a77STheodore Ts'o 			jbd2_complete_transaction(journal, commit_tid);
2152d859db3SJan Kara 			filemap_write_and_wait(&inode->i_data);
2162d859db3SJan Kara 		}
21791b0abe3SJohannes Weiner 		truncate_inode_pages_final(&inode->i_data);
2185dc23bddSJan Kara 
2195dc23bddSJan Kara 		WARN_ON(atomic_read(&EXT4_I(inode)->i_ioend_count));
2200930fcc1SAl Viro 		goto no_delete;
2210930fcc1SAl Viro 	}
2220930fcc1SAl Viro 
223e2bfb088STheodore Ts'o 	if (is_bad_inode(inode))
224e2bfb088STheodore Ts'o 		goto no_delete;
225871a2931SChristoph Hellwig 	dquot_initialize(inode);
226907f4554SChristoph Hellwig 
227678aaf48SJan Kara 	if (ext4_should_order_data(inode))
228678aaf48SJan Kara 		ext4_begin_ordered_truncate(inode, 0);
22991b0abe3SJohannes Weiner 	truncate_inode_pages_final(&inode->i_data);
230ac27a0ecSDave Kleikamp 
2315dc23bddSJan Kara 	WARN_ON(atomic_read(&EXT4_I(inode)->i_ioend_count));
232ac27a0ecSDave Kleikamp 
2338e8ad8a5SJan Kara 	/*
2348e8ad8a5SJan Kara 	 * Protect us against freezing - iput() caller didn't have to have any
2358e8ad8a5SJan Kara 	 * protection against it
2368e8ad8a5SJan Kara 	 */
2378e8ad8a5SJan Kara 	sb_start_intwrite(inode->i_sb);
2389924a92aSTheodore Ts'o 	handle = ext4_journal_start(inode, EXT4_HT_TRUNCATE,
2399924a92aSTheodore Ts'o 				    ext4_blocks_for_truncate(inode)+3);
240ac27a0ecSDave Kleikamp 	if (IS_ERR(handle)) {
241bc965ab3STheodore Ts'o 		ext4_std_error(inode->i_sb, PTR_ERR(handle));
242ac27a0ecSDave Kleikamp 		/*
243ac27a0ecSDave Kleikamp 		 * If we're going to skip the normal cleanup, we still need to
244ac27a0ecSDave Kleikamp 		 * make sure that the in-core orphan linked list is properly
245ac27a0ecSDave Kleikamp 		 * cleaned up.
246ac27a0ecSDave Kleikamp 		 */
247617ba13bSMingming Cao 		ext4_orphan_del(NULL, inode);
2488e8ad8a5SJan Kara 		sb_end_intwrite(inode->i_sb);
249ac27a0ecSDave Kleikamp 		goto no_delete;
250ac27a0ecSDave Kleikamp 	}
251ac27a0ecSDave Kleikamp 
252ac27a0ecSDave Kleikamp 	if (IS_SYNC(inode))
2530390131bSFrank Mayhar 		ext4_handle_sync(handle);
254ac27a0ecSDave Kleikamp 	inode->i_size = 0;
255bc965ab3STheodore Ts'o 	err = ext4_mark_inode_dirty(handle, inode);
256bc965ab3STheodore Ts'o 	if (err) {
25712062dddSEric Sandeen 		ext4_warning(inode->i_sb,
258bc965ab3STheodore Ts'o 			     "couldn't mark inode dirty (err %d)", err);
259bc965ab3STheodore Ts'o 		goto stop_handle;
260bc965ab3STheodore Ts'o 	}
261ac27a0ecSDave Kleikamp 	if (inode->i_blocks)
262617ba13bSMingming Cao 		ext4_truncate(inode);
263bc965ab3STheodore Ts'o 
264bc965ab3STheodore Ts'o 	/*
265bc965ab3STheodore Ts'o 	 * ext4_ext_truncate() doesn't reserve any slop when it
266bc965ab3STheodore Ts'o 	 * restarts journal transactions; therefore there may not be
267bc965ab3STheodore Ts'o 	 * enough credits left in the handle to remove the inode from
268bc965ab3STheodore Ts'o 	 * the orphan list and set the dtime field.
269bc965ab3STheodore Ts'o 	 */
2700390131bSFrank Mayhar 	if (!ext4_handle_has_enough_credits(handle, 3)) {
271bc965ab3STheodore Ts'o 		err = ext4_journal_extend(handle, 3);
272bc965ab3STheodore Ts'o 		if (err > 0)
273bc965ab3STheodore Ts'o 			err = ext4_journal_restart(handle, 3);
274bc965ab3STheodore Ts'o 		if (err != 0) {
27512062dddSEric Sandeen 			ext4_warning(inode->i_sb,
276bc965ab3STheodore Ts'o 				     "couldn't extend journal (err %d)", err);
277bc965ab3STheodore Ts'o 		stop_handle:
278bc965ab3STheodore Ts'o 			ext4_journal_stop(handle);
27945388219STheodore Ts'o 			ext4_orphan_del(NULL, inode);
2808e8ad8a5SJan Kara 			sb_end_intwrite(inode->i_sb);
281bc965ab3STheodore Ts'o 			goto no_delete;
282bc965ab3STheodore Ts'o 		}
283bc965ab3STheodore Ts'o 	}
284bc965ab3STheodore Ts'o 
285ac27a0ecSDave Kleikamp 	/*
286617ba13bSMingming Cao 	 * Kill off the orphan record which ext4_truncate created.
287ac27a0ecSDave Kleikamp 	 * AKPM: I think this can be inside the above `if'.
288617ba13bSMingming Cao 	 * Note that ext4_orphan_del() has to be able to cope with the
289ac27a0ecSDave Kleikamp 	 * deletion of a non-existent orphan - this is because we don't
290617ba13bSMingming Cao 	 * know if ext4_truncate() actually created an orphan record.
291ac27a0ecSDave Kleikamp 	 * (Well, we could do this if we need to, but heck - it works)
292ac27a0ecSDave Kleikamp 	 */
293617ba13bSMingming Cao 	ext4_orphan_del(handle, inode);
294617ba13bSMingming Cao 	EXT4_I(inode)->i_dtime	= get_seconds();
295ac27a0ecSDave Kleikamp 
296ac27a0ecSDave Kleikamp 	/*
297ac27a0ecSDave Kleikamp 	 * One subtle ordering requirement: if anything has gone wrong
298ac27a0ecSDave Kleikamp 	 * (transaction abort, IO errors, whatever), then we can still
299ac27a0ecSDave Kleikamp 	 * do these next steps (the fs will already have been marked as
300ac27a0ecSDave Kleikamp 	 * having errors), but we can't free the inode if the mark_dirty
301ac27a0ecSDave Kleikamp 	 * fails.
302ac27a0ecSDave Kleikamp 	 */
303617ba13bSMingming Cao 	if (ext4_mark_inode_dirty(handle, inode))
304ac27a0ecSDave Kleikamp 		/* If that failed, just do the required in-core inode clear. */
3050930fcc1SAl Viro 		ext4_clear_inode(inode);
306ac27a0ecSDave Kleikamp 	else
307617ba13bSMingming Cao 		ext4_free_inode(handle, inode);
308617ba13bSMingming Cao 	ext4_journal_stop(handle);
3098e8ad8a5SJan Kara 	sb_end_intwrite(inode->i_sb);
310ac27a0ecSDave Kleikamp 	return;
311ac27a0ecSDave Kleikamp no_delete:
3120930fcc1SAl Viro 	ext4_clear_inode(inode);	/* We must guarantee clearing of inode... */
313ac27a0ecSDave Kleikamp }
314ac27a0ecSDave Kleikamp 
315a9e7f447SDmitry Monakhov #ifdef CONFIG_QUOTA
316a9e7f447SDmitry Monakhov qsize_t *ext4_get_reserved_space(struct inode *inode)
31760e58e0fSMingming Cao {
318a9e7f447SDmitry Monakhov 	return &EXT4_I(inode)->i_reserved_quota;
31960e58e0fSMingming Cao }
320a9e7f447SDmitry Monakhov #endif
3219d0be502STheodore Ts'o 
32212219aeaSAneesh Kumar K.V /*
3230637c6f4STheodore Ts'o  * Called with i_data_sem down, which is important since we can call
3240637c6f4STheodore Ts'o  * ext4_discard_preallocations() from here.
3250637c6f4STheodore Ts'o  */
3265f634d06SAneesh Kumar K.V void ext4_da_update_reserve_space(struct inode *inode,
3275f634d06SAneesh Kumar K.V 					int used, int quota_claim)
32812219aeaSAneesh Kumar K.V {
32912219aeaSAneesh Kumar K.V 	struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb);
3300637c6f4STheodore Ts'o 	struct ext4_inode_info *ei = EXT4_I(inode);
33112219aeaSAneesh Kumar K.V 
3320637c6f4STheodore Ts'o 	spin_lock(&ei->i_block_reservation_lock);
333d8990240SAditya Kali 	trace_ext4_da_update_reserve_space(inode, used, quota_claim);
3340637c6f4STheodore Ts'o 	if (unlikely(used > ei->i_reserved_data_blocks)) {
3358de5c325STheodore Ts'o 		ext4_warning(inode->i_sb, "%s: ino %lu, used %d "
3361084f252STheodore Ts'o 			 "with only %d reserved data blocks",
3370637c6f4STheodore Ts'o 			 __func__, inode->i_ino, used,
3380637c6f4STheodore Ts'o 			 ei->i_reserved_data_blocks);
3390637c6f4STheodore Ts'o 		WARN_ON(1);
3400637c6f4STheodore Ts'o 		used = ei->i_reserved_data_blocks;
3416bc6e63fSAneesh Kumar K.V 	}
34212219aeaSAneesh Kumar K.V 
3430637c6f4STheodore Ts'o 	/* Update per-inode reservations */
3440637c6f4STheodore Ts'o 	ei->i_reserved_data_blocks -= used;
34571d4f7d0STheodore Ts'o 	percpu_counter_sub(&sbi->s_dirtyclusters_counter, used);
3460637c6f4STheodore Ts'o 
34712219aeaSAneesh Kumar K.V 	spin_unlock(&EXT4_I(inode)->i_block_reservation_lock);
34860e58e0fSMingming Cao 
34972b8ab9dSEric Sandeen 	/* Update quota subsystem for data blocks */
35072b8ab9dSEric Sandeen 	if (quota_claim)
3517b415bf6SAditya Kali 		dquot_claim_block(inode, EXT4_C2B(sbi, used));
35272b8ab9dSEric Sandeen 	else {
3535f634d06SAneesh Kumar K.V 		/*
3545f634d06SAneesh Kumar K.V 		 * We did fallocate with an offset that is already delayed
3555f634d06SAneesh Kumar K.V 		 * allocated. So on delayed allocated writeback we should
35672b8ab9dSEric Sandeen 		 * not re-claim the quota for fallocated blocks.
3575f634d06SAneesh Kumar K.V 		 */
3587b415bf6SAditya Kali 		dquot_release_reservation_block(inode, EXT4_C2B(sbi, used));
3595f634d06SAneesh Kumar K.V 	}
360d6014301SAneesh Kumar K.V 
361d6014301SAneesh Kumar K.V 	/*
362d6014301SAneesh Kumar K.V 	 * If we have done all the pending block allocations and if
363d6014301SAneesh Kumar K.V 	 * there aren't any writers on the inode, we can discard the
364d6014301SAneesh Kumar K.V 	 * inode's preallocations.
365d6014301SAneesh Kumar K.V 	 */
3660637c6f4STheodore Ts'o 	if ((ei->i_reserved_data_blocks == 0) &&
3670637c6f4STheodore Ts'o 	    (atomic_read(&inode->i_writecount) == 0))
368d6014301SAneesh Kumar K.V 		ext4_discard_preallocations(inode);
36912219aeaSAneesh Kumar K.V }
37012219aeaSAneesh Kumar K.V 
371e29136f8STheodore Ts'o static int __check_block_validity(struct inode *inode, const char *func,
372c398eda0STheodore Ts'o 				unsigned int line,
37324676da4STheodore Ts'o 				struct ext4_map_blocks *map)
3746fd058f7STheodore Ts'o {
37524676da4STheodore Ts'o 	if (!ext4_data_block_valid(EXT4_SB(inode->i_sb), map->m_pblk,
37624676da4STheodore Ts'o 				   map->m_len)) {
377c398eda0STheodore Ts'o 		ext4_error_inode(inode, func, line, map->m_pblk,
378c398eda0STheodore Ts'o 				 "lblock %lu mapped to illegal pblock "
37924676da4STheodore Ts'o 				 "(length %d)", (unsigned long) map->m_lblk,
380c398eda0STheodore Ts'o 				 map->m_len);
3816a797d27SDarrick J. Wong 		return -EFSCORRUPTED;
3826fd058f7STheodore Ts'o 	}
3836fd058f7STheodore Ts'o 	return 0;
3846fd058f7STheodore Ts'o }
3856fd058f7STheodore Ts'o 
38653085facSJan Kara int ext4_issue_zeroout(struct inode *inode, ext4_lblk_t lblk, ext4_fsblk_t pblk,
38753085facSJan Kara 		       ext4_lblk_t len)
38853085facSJan Kara {
38953085facSJan Kara 	int ret;
39053085facSJan Kara 
39153085facSJan Kara 	if (ext4_encrypted_inode(inode))
39253085facSJan Kara 		return ext4_encrypted_zeroout(inode, lblk, pblk, len);
39353085facSJan Kara 
39453085facSJan Kara 	ret = sb_issue_zeroout(inode->i_sb, pblk, len, GFP_NOFS);
39553085facSJan Kara 	if (ret > 0)
39653085facSJan Kara 		ret = 0;
39753085facSJan Kara 
39853085facSJan Kara 	return ret;
39953085facSJan Kara }
40053085facSJan Kara 
401e29136f8STheodore Ts'o #define check_block_validity(inode, map)	\
402c398eda0STheodore Ts'o 	__check_block_validity((inode), __func__, __LINE__, (map))
403e29136f8STheodore Ts'o 
404921f266bSDmitry Monakhov #ifdef ES_AGGRESSIVE_TEST
405921f266bSDmitry Monakhov static void ext4_map_blocks_es_recheck(handle_t *handle,
406921f266bSDmitry Monakhov 				       struct inode *inode,
407921f266bSDmitry Monakhov 				       struct ext4_map_blocks *es_map,
408921f266bSDmitry Monakhov 				       struct ext4_map_blocks *map,
409921f266bSDmitry Monakhov 				       int flags)
410921f266bSDmitry Monakhov {
411921f266bSDmitry Monakhov 	int retval;
412921f266bSDmitry Monakhov 
413921f266bSDmitry Monakhov 	map->m_flags = 0;
414921f266bSDmitry Monakhov 	/*
415921f266bSDmitry Monakhov 	 * There is a race window that the result is not the same.
416921f266bSDmitry Monakhov 	 * e.g. xfstests #223 when dioread_nolock enables.  The reason
417921f266bSDmitry Monakhov 	 * is that we lookup a block mapping in extent status tree with
418921f266bSDmitry Monakhov 	 * out taking i_data_sem.  So at the time the unwritten extent
419921f266bSDmitry Monakhov 	 * could be converted.
420921f266bSDmitry Monakhov 	 */
421c8b459f4SLukas Czerner 	down_read(&EXT4_I(inode)->i_data_sem);
422921f266bSDmitry Monakhov 	if (ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS)) {
423921f266bSDmitry Monakhov 		retval = ext4_ext_map_blocks(handle, inode, map, flags &
424921f266bSDmitry Monakhov 					     EXT4_GET_BLOCKS_KEEP_SIZE);
425921f266bSDmitry Monakhov 	} else {
426921f266bSDmitry Monakhov 		retval = ext4_ind_map_blocks(handle, inode, map, flags &
427921f266bSDmitry Monakhov 					     EXT4_GET_BLOCKS_KEEP_SIZE);
428921f266bSDmitry Monakhov 	}
429921f266bSDmitry Monakhov 	up_read((&EXT4_I(inode)->i_data_sem));
430921f266bSDmitry Monakhov 
431921f266bSDmitry Monakhov 	/*
432921f266bSDmitry Monakhov 	 * We don't check m_len because extent will be collpased in status
433921f266bSDmitry Monakhov 	 * tree.  So the m_len might not equal.
434921f266bSDmitry Monakhov 	 */
435921f266bSDmitry Monakhov 	if (es_map->m_lblk != map->m_lblk ||
436921f266bSDmitry Monakhov 	    es_map->m_flags != map->m_flags ||
437921f266bSDmitry Monakhov 	    es_map->m_pblk != map->m_pblk) {
438bdafe42aSTheodore Ts'o 		printk("ES cache assertion failed for inode: %lu "
439921f266bSDmitry Monakhov 		       "es_cached ex [%d/%d/%llu/%x] != "
440921f266bSDmitry Monakhov 		       "found ex [%d/%d/%llu/%x] retval %d flags %x\n",
441921f266bSDmitry Monakhov 		       inode->i_ino, es_map->m_lblk, es_map->m_len,
442921f266bSDmitry Monakhov 		       es_map->m_pblk, es_map->m_flags, map->m_lblk,
443921f266bSDmitry Monakhov 		       map->m_len, map->m_pblk, map->m_flags,
444921f266bSDmitry Monakhov 		       retval, flags);
445921f266bSDmitry Monakhov 	}
446921f266bSDmitry Monakhov }
447921f266bSDmitry Monakhov #endif /* ES_AGGRESSIVE_TEST */
448921f266bSDmitry Monakhov 
44955138e0bSTheodore Ts'o /*
450e35fd660STheodore Ts'o  * The ext4_map_blocks() function tries to look up the requested blocks,
4512b2d6d01STheodore Ts'o  * and returns if the blocks are already mapped.
452f5ab0d1fSMingming Cao  *
453f5ab0d1fSMingming Cao  * Otherwise it takes the write lock of the i_data_sem and allocate blocks
454f5ab0d1fSMingming Cao  * and store the allocated blocks in the result buffer head and mark it
455f5ab0d1fSMingming Cao  * mapped.
456f5ab0d1fSMingming Cao  *
457e35fd660STheodore Ts'o  * If file type is extents based, it will call ext4_ext_map_blocks(),
458e35fd660STheodore Ts'o  * Otherwise, call with ext4_ind_map_blocks() to handle indirect mapping
459f5ab0d1fSMingming Cao  * based files
460f5ab0d1fSMingming Cao  *
461556615dcSLukas Czerner  * On success, it returns the number of blocks being mapped or allocated.
462556615dcSLukas Czerner  * if create==0 and the blocks are pre-allocated and unwritten block,
463f5ab0d1fSMingming Cao  * the result buffer head is unmapped. If the create ==1, it will make sure
464f5ab0d1fSMingming Cao  * the buffer head is mapped.
465f5ab0d1fSMingming Cao  *
466f5ab0d1fSMingming Cao  * It returns 0 if plain look up failed (blocks have not been allocated), in
467df3ab170STao Ma  * that case, buffer head is unmapped
468f5ab0d1fSMingming Cao  *
469f5ab0d1fSMingming Cao  * It returns the error in case of allocation failure.
470f5ab0d1fSMingming Cao  */
471e35fd660STheodore Ts'o int ext4_map_blocks(handle_t *handle, struct inode *inode,
472e35fd660STheodore Ts'o 		    struct ext4_map_blocks *map, int flags)
4730e855ac8SAneesh Kumar K.V {
474d100eef2SZheng Liu 	struct extent_status es;
4750e855ac8SAneesh Kumar K.V 	int retval;
476b8a86845SLukas Czerner 	int ret = 0;
477921f266bSDmitry Monakhov #ifdef ES_AGGRESSIVE_TEST
478921f266bSDmitry Monakhov 	struct ext4_map_blocks orig_map;
479921f266bSDmitry Monakhov 
480921f266bSDmitry Monakhov 	memcpy(&orig_map, map, sizeof(*map));
481921f266bSDmitry Monakhov #endif
482f5ab0d1fSMingming Cao 
483e35fd660STheodore Ts'o 	map->m_flags = 0;
484e35fd660STheodore Ts'o 	ext_debug("ext4_map_blocks(): inode %lu, flag %d, max_blocks %u,"
485e35fd660STheodore Ts'o 		  "logical block %lu\n", inode->i_ino, flags, map->m_len,
486e35fd660STheodore Ts'o 		  (unsigned long) map->m_lblk);
487d100eef2SZheng Liu 
488e861b5e9STheodore Ts'o 	/*
489e861b5e9STheodore Ts'o 	 * ext4_map_blocks returns an int, and m_len is an unsigned int
490e861b5e9STheodore Ts'o 	 */
491e861b5e9STheodore Ts'o 	if (unlikely(map->m_len > INT_MAX))
492e861b5e9STheodore Ts'o 		map->m_len = INT_MAX;
493e861b5e9STheodore Ts'o 
4944adb6ab3SKazuya Mio 	/* We can handle the block number less than EXT_MAX_BLOCKS */
4954adb6ab3SKazuya Mio 	if (unlikely(map->m_lblk >= EXT_MAX_BLOCKS))
4966a797d27SDarrick J. Wong 		return -EFSCORRUPTED;
4974adb6ab3SKazuya Mio 
498d100eef2SZheng Liu 	/* Lookup extent status tree firstly */
499d100eef2SZheng Liu 	if (ext4_es_lookup_extent(inode, map->m_lblk, &es)) {
500d100eef2SZheng Liu 		if (ext4_es_is_written(&es) || ext4_es_is_unwritten(&es)) {
501d100eef2SZheng Liu 			map->m_pblk = ext4_es_pblock(&es) +
502d100eef2SZheng Liu 					map->m_lblk - es.es_lblk;
503d100eef2SZheng Liu 			map->m_flags |= ext4_es_is_written(&es) ?
504d100eef2SZheng Liu 					EXT4_MAP_MAPPED : EXT4_MAP_UNWRITTEN;
505d100eef2SZheng Liu 			retval = es.es_len - (map->m_lblk - es.es_lblk);
506d100eef2SZheng Liu 			if (retval > map->m_len)
507d100eef2SZheng Liu 				retval = map->m_len;
508d100eef2SZheng Liu 			map->m_len = retval;
509d100eef2SZheng Liu 		} else if (ext4_es_is_delayed(&es) || ext4_es_is_hole(&es)) {
510d100eef2SZheng Liu 			retval = 0;
511d100eef2SZheng Liu 		} else {
512d100eef2SZheng Liu 			BUG_ON(1);
513d100eef2SZheng Liu 		}
514921f266bSDmitry Monakhov #ifdef ES_AGGRESSIVE_TEST
515921f266bSDmitry Monakhov 		ext4_map_blocks_es_recheck(handle, inode, map,
516921f266bSDmitry Monakhov 					   &orig_map, flags);
517921f266bSDmitry Monakhov #endif
518d100eef2SZheng Liu 		goto found;
519d100eef2SZheng Liu 	}
520d100eef2SZheng Liu 
5214df3d265SAneesh Kumar K.V 	/*
522b920c755STheodore Ts'o 	 * Try to see if we can get the block without requesting a new
523b920c755STheodore Ts'o 	 * file system block.
5244df3d265SAneesh Kumar K.V 	 */
525c8b459f4SLukas Czerner 	down_read(&EXT4_I(inode)->i_data_sem);
52612e9b892SDmitry Monakhov 	if (ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS)) {
527a4e5d88bSDmitry Monakhov 		retval = ext4_ext_map_blocks(handle, inode, map, flags &
528a4e5d88bSDmitry Monakhov 					     EXT4_GET_BLOCKS_KEEP_SIZE);
5294df3d265SAneesh Kumar K.V 	} else {
530a4e5d88bSDmitry Monakhov 		retval = ext4_ind_map_blocks(handle, inode, map, flags &
531a4e5d88bSDmitry Monakhov 					     EXT4_GET_BLOCKS_KEEP_SIZE);
5320e855ac8SAneesh Kumar K.V 	}
533f7fec032SZheng Liu 	if (retval > 0) {
5343be78c73STheodore Ts'o 		unsigned int status;
535f7fec032SZheng Liu 
53644fb851dSZheng Liu 		if (unlikely(retval != map->m_len)) {
53744fb851dSZheng Liu 			ext4_warning(inode->i_sb,
53844fb851dSZheng Liu 				     "ES len assertion failed for inode "
53944fb851dSZheng Liu 				     "%lu: retval %d != map->m_len %d",
54044fb851dSZheng Liu 				     inode->i_ino, retval, map->m_len);
54144fb851dSZheng Liu 			WARN_ON(1);
542921f266bSDmitry Monakhov 		}
543921f266bSDmitry Monakhov 
544f7fec032SZheng Liu 		status = map->m_flags & EXT4_MAP_UNWRITTEN ?
545f7fec032SZheng Liu 				EXTENT_STATUS_UNWRITTEN : EXTENT_STATUS_WRITTEN;
546f7fec032SZheng Liu 		if (!(flags & EXT4_GET_BLOCKS_DELALLOC_RESERVE) &&
547d2dc317dSLukas Czerner 		    !(status & EXTENT_STATUS_WRITTEN) &&
548f7fec032SZheng Liu 		    ext4_find_delalloc_range(inode, map->m_lblk,
549f7fec032SZheng Liu 					     map->m_lblk + map->m_len - 1))
550f7fec032SZheng Liu 			status |= EXTENT_STATUS_DELAYED;
551f7fec032SZheng Liu 		ret = ext4_es_insert_extent(inode, map->m_lblk,
552f7fec032SZheng Liu 					    map->m_len, map->m_pblk, status);
553f7fec032SZheng Liu 		if (ret < 0)
554f7fec032SZheng Liu 			retval = ret;
555f7fec032SZheng Liu 	}
5564df3d265SAneesh Kumar K.V 	up_read((&EXT4_I(inode)->i_data_sem));
557f5ab0d1fSMingming Cao 
558d100eef2SZheng Liu found:
559e35fd660STheodore Ts'o 	if (retval > 0 && map->m_flags & EXT4_MAP_MAPPED) {
560b8a86845SLukas Czerner 		ret = check_block_validity(inode, map);
5616fd058f7STheodore Ts'o 		if (ret != 0)
5626fd058f7STheodore Ts'o 			return ret;
5636fd058f7STheodore Ts'o 	}
5646fd058f7STheodore Ts'o 
565f5ab0d1fSMingming Cao 	/* If it is only a block(s) look up */
566c2177057STheodore Ts'o 	if ((flags & EXT4_GET_BLOCKS_CREATE) == 0)
5674df3d265SAneesh Kumar K.V 		return retval;
5684df3d265SAneesh Kumar K.V 
5694df3d265SAneesh Kumar K.V 	/*
570f5ab0d1fSMingming Cao 	 * Returns if the blocks have already allocated
571f5ab0d1fSMingming Cao 	 *
572f5ab0d1fSMingming Cao 	 * Note that if blocks have been preallocated
573df3ab170STao Ma 	 * ext4_ext_get_block() returns the create = 0
574f5ab0d1fSMingming Cao 	 * with buffer head unmapped.
575f5ab0d1fSMingming Cao 	 */
576e35fd660STheodore Ts'o 	if (retval > 0 && map->m_flags & EXT4_MAP_MAPPED)
577b8a86845SLukas Czerner 		/*
578b8a86845SLukas Czerner 		 * If we need to convert extent to unwritten
579b8a86845SLukas Czerner 		 * we continue and do the actual work in
580b8a86845SLukas Czerner 		 * ext4_ext_map_blocks()
581b8a86845SLukas Czerner 		 */
582b8a86845SLukas Czerner 		if (!(flags & EXT4_GET_BLOCKS_CONVERT_UNWRITTEN))
583f5ab0d1fSMingming Cao 			return retval;
584f5ab0d1fSMingming Cao 
585f5ab0d1fSMingming Cao 	/*
586a25a4e1aSZheng Liu 	 * Here we clear m_flags because after allocating an new extent,
587a25a4e1aSZheng Liu 	 * it will be set again.
5882a8964d6SAneesh Kumar K.V 	 */
589a25a4e1aSZheng Liu 	map->m_flags &= ~EXT4_MAP_FLAGS;
5902a8964d6SAneesh Kumar K.V 
5912a8964d6SAneesh Kumar K.V 	/*
592556615dcSLukas Czerner 	 * New blocks allocate and/or writing to unwritten extent
593f5ab0d1fSMingming Cao 	 * will possibly result in updating i_data, so we take
594d91bd2c1SSeunghun Lee 	 * the write lock of i_data_sem, and call get_block()
595f5ab0d1fSMingming Cao 	 * with create == 1 flag.
5964df3d265SAneesh Kumar K.V 	 */
597c8b459f4SLukas Czerner 	down_write(&EXT4_I(inode)->i_data_sem);
598d2a17637SMingming Cao 
599d2a17637SMingming Cao 	/*
6004df3d265SAneesh Kumar K.V 	 * We need to check for EXT4 here because migrate
6014df3d265SAneesh Kumar K.V 	 * could have changed the inode type in between
6024df3d265SAneesh Kumar K.V 	 */
60312e9b892SDmitry Monakhov 	if (ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS)) {
604e35fd660STheodore Ts'o 		retval = ext4_ext_map_blocks(handle, inode, map, flags);
6050e855ac8SAneesh Kumar K.V 	} else {
606e35fd660STheodore Ts'o 		retval = ext4_ind_map_blocks(handle, inode, map, flags);
607267e4db9SAneesh Kumar K.V 
608e35fd660STheodore Ts'o 		if (retval > 0 && map->m_flags & EXT4_MAP_NEW) {
609267e4db9SAneesh Kumar K.V 			/*
610267e4db9SAneesh Kumar K.V 			 * We allocated new blocks which will result in
611267e4db9SAneesh Kumar K.V 			 * i_data's format changing.  Force the migrate
612267e4db9SAneesh Kumar K.V 			 * to fail by clearing migrate flags
613267e4db9SAneesh Kumar K.V 			 */
61419f5fb7aSTheodore Ts'o 			ext4_clear_inode_state(inode, EXT4_STATE_EXT_MIGRATE);
615267e4db9SAneesh Kumar K.V 		}
6162ac3b6e0STheodore Ts'o 
617d2a17637SMingming Cao 		/*
6182ac3b6e0STheodore Ts'o 		 * Update reserved blocks/metadata blocks after successful
6195f634d06SAneesh Kumar K.V 		 * block allocation which had been deferred till now. We don't
6205f634d06SAneesh Kumar K.V 		 * support fallocate for non extent files. So we can update
6215f634d06SAneesh Kumar K.V 		 * reserve space here.
622d2a17637SMingming Cao 		 */
6235f634d06SAneesh Kumar K.V 		if ((retval > 0) &&
6241296cc85SAneesh Kumar K.V 			(flags & EXT4_GET_BLOCKS_DELALLOC_RESERVE))
6255f634d06SAneesh Kumar K.V 			ext4_da_update_reserve_space(inode, retval, 1);
6265f634d06SAneesh Kumar K.V 	}
627d2a17637SMingming Cao 
628f7fec032SZheng Liu 	if (retval > 0) {
6293be78c73STheodore Ts'o 		unsigned int status;
630f7fec032SZheng Liu 
63144fb851dSZheng Liu 		if (unlikely(retval != map->m_len)) {
63244fb851dSZheng Liu 			ext4_warning(inode->i_sb,
63344fb851dSZheng Liu 				     "ES len assertion failed for inode "
63444fb851dSZheng Liu 				     "%lu: retval %d != map->m_len %d",
63544fb851dSZheng Liu 				     inode->i_ino, retval, map->m_len);
63644fb851dSZheng Liu 			WARN_ON(1);
637921f266bSDmitry Monakhov 		}
638921f266bSDmitry Monakhov 
639adb23551SZheng Liu 		/*
640c86d8db3SJan Kara 		 * We have to zeroout blocks before inserting them into extent
641c86d8db3SJan Kara 		 * status tree. Otherwise someone could look them up there and
642c86d8db3SJan Kara 		 * use them before they are really zeroed.
643c86d8db3SJan Kara 		 */
644c86d8db3SJan Kara 		if (flags & EXT4_GET_BLOCKS_ZERO &&
645c86d8db3SJan Kara 		    map->m_flags & EXT4_MAP_MAPPED &&
646c86d8db3SJan Kara 		    map->m_flags & EXT4_MAP_NEW) {
647c86d8db3SJan Kara 			ret = ext4_issue_zeroout(inode, map->m_lblk,
648c86d8db3SJan Kara 						 map->m_pblk, map->m_len);
649c86d8db3SJan Kara 			if (ret) {
650c86d8db3SJan Kara 				retval = ret;
651c86d8db3SJan Kara 				goto out_sem;
652c86d8db3SJan Kara 			}
653c86d8db3SJan Kara 		}
654c86d8db3SJan Kara 
655c86d8db3SJan Kara 		/*
656adb23551SZheng Liu 		 * If the extent has been zeroed out, we don't need to update
657adb23551SZheng Liu 		 * extent status tree.
658adb23551SZheng Liu 		 */
659adb23551SZheng Liu 		if ((flags & EXT4_GET_BLOCKS_PRE_IO) &&
660adb23551SZheng Liu 		    ext4_es_lookup_extent(inode, map->m_lblk, &es)) {
661adb23551SZheng Liu 			if (ext4_es_is_written(&es))
662c86d8db3SJan Kara 				goto out_sem;
663adb23551SZheng Liu 		}
664f7fec032SZheng Liu 		status = map->m_flags & EXT4_MAP_UNWRITTEN ?
665f7fec032SZheng Liu 				EXTENT_STATUS_UNWRITTEN : EXTENT_STATUS_WRITTEN;
666f7fec032SZheng Liu 		if (!(flags & EXT4_GET_BLOCKS_DELALLOC_RESERVE) &&
667d2dc317dSLukas Czerner 		    !(status & EXTENT_STATUS_WRITTEN) &&
668f7fec032SZheng Liu 		    ext4_find_delalloc_range(inode, map->m_lblk,
669f7fec032SZheng Liu 					     map->m_lblk + map->m_len - 1))
670f7fec032SZheng Liu 			status |= EXTENT_STATUS_DELAYED;
671f7fec032SZheng Liu 		ret = ext4_es_insert_extent(inode, map->m_lblk, map->m_len,
672f7fec032SZheng Liu 					    map->m_pblk, status);
673c86d8db3SJan Kara 		if (ret < 0) {
67451865fdaSZheng Liu 			retval = ret;
675c86d8db3SJan Kara 			goto out_sem;
676c86d8db3SJan Kara 		}
67751865fdaSZheng Liu 	}
6785356f261SAditya Kali 
679c86d8db3SJan Kara out_sem:
6800e855ac8SAneesh Kumar K.V 	up_write((&EXT4_I(inode)->i_data_sem));
681e35fd660STheodore Ts'o 	if (retval > 0 && map->m_flags & EXT4_MAP_MAPPED) {
682b8a86845SLukas Czerner 		ret = check_block_validity(inode, map);
6836fd058f7STheodore Ts'o 		if (ret != 0)
6846fd058f7STheodore Ts'o 			return ret;
6856fd058f7STheodore Ts'o 	}
6860e855ac8SAneesh Kumar K.V 	return retval;
6870e855ac8SAneesh Kumar K.V }
6880e855ac8SAneesh Kumar K.V 
689ed8ad838SJan Kara /*
690ed8ad838SJan Kara  * Update EXT4_MAP_FLAGS in bh->b_state. For buffer heads attached to pages
691ed8ad838SJan Kara  * we have to be careful as someone else may be manipulating b_state as well.
692ed8ad838SJan Kara  */
693ed8ad838SJan Kara static void ext4_update_bh_state(struct buffer_head *bh, unsigned long flags)
694ed8ad838SJan Kara {
695ed8ad838SJan Kara 	unsigned long old_state;
696ed8ad838SJan Kara 	unsigned long new_state;
697ed8ad838SJan Kara 
698ed8ad838SJan Kara 	flags &= EXT4_MAP_FLAGS;
699ed8ad838SJan Kara 
700ed8ad838SJan Kara 	/* Dummy buffer_head? Set non-atomically. */
701ed8ad838SJan Kara 	if (!bh->b_page) {
702ed8ad838SJan Kara 		bh->b_state = (bh->b_state & ~EXT4_MAP_FLAGS) | flags;
703ed8ad838SJan Kara 		return;
704ed8ad838SJan Kara 	}
705ed8ad838SJan Kara 	/*
706ed8ad838SJan Kara 	 * Someone else may be modifying b_state. Be careful! This is ugly but
707ed8ad838SJan Kara 	 * once we get rid of using bh as a container for mapping information
708ed8ad838SJan Kara 	 * to pass to / from get_block functions, this can go away.
709ed8ad838SJan Kara 	 */
710ed8ad838SJan Kara 	do {
711ed8ad838SJan Kara 		old_state = READ_ONCE(bh->b_state);
712ed8ad838SJan Kara 		new_state = (old_state & ~EXT4_MAP_FLAGS) | flags;
713ed8ad838SJan Kara 	} while (unlikely(
714ed8ad838SJan Kara 		 cmpxchg(&bh->b_state, old_state, new_state) != old_state));
715ed8ad838SJan Kara }
716ed8ad838SJan Kara 
717f3bd1f3fSMingming Cao /* Maximum number of blocks we map for direct IO at once. */
718f3bd1f3fSMingming Cao #define DIO_MAX_BLOCKS 4096
719f3bd1f3fSMingming Cao 
7202ed88685STheodore Ts'o static int _ext4_get_block(struct inode *inode, sector_t iblock,
7212ed88685STheodore Ts'o 			   struct buffer_head *bh, int flags)
722ac27a0ecSDave Kleikamp {
7233e4fdaf8SDmitriy Monakhov 	handle_t *handle = ext4_journal_current_handle();
7242ed88685STheodore Ts'o 	struct ext4_map_blocks map;
7257fb5409dSJan Kara 	int ret = 0, started = 0;
726f3bd1f3fSMingming Cao 	int dio_credits;
727ac27a0ecSDave Kleikamp 
72846c7f254STao Ma 	if (ext4_has_inline_data(inode))
72946c7f254STao Ma 		return -ERANGE;
73046c7f254STao Ma 
7312ed88685STheodore Ts'o 	map.m_lblk = iblock;
7322ed88685STheodore Ts'o 	map.m_len = bh->b_size >> inode->i_blkbits;
7332ed88685STheodore Ts'o 
7342dcba478SJan Kara 	if (flags && !handle) {
7357fb5409dSJan Kara 		/* Direct IO write... */
7362ed88685STheodore Ts'o 		if (map.m_len > DIO_MAX_BLOCKS)
7372ed88685STheodore Ts'o 			map.m_len = DIO_MAX_BLOCKS;
7382ed88685STheodore Ts'o 		dio_credits = ext4_chunk_trans_blocks(inode, map.m_len);
7399924a92aSTheodore Ts'o 		handle = ext4_journal_start(inode, EXT4_HT_MAP_BLOCKS,
7409924a92aSTheodore Ts'o 					    dio_credits);
7417fb5409dSJan Kara 		if (IS_ERR(handle)) {
742ac27a0ecSDave Kleikamp 			ret = PTR_ERR(handle);
7432ed88685STheodore Ts'o 			return ret;
7447fb5409dSJan Kara 		}
7457fb5409dSJan Kara 		started = 1;
746ac27a0ecSDave Kleikamp 	}
747ac27a0ecSDave Kleikamp 
7482ed88685STheodore Ts'o 	ret = ext4_map_blocks(handle, inode, &map, flags);
749ac27a0ecSDave Kleikamp 	if (ret > 0) {
7507b7a8665SChristoph Hellwig 		ext4_io_end_t *io_end = ext4_inode_aio(inode);
7517b7a8665SChristoph Hellwig 
7522ed88685STheodore Ts'o 		map_bh(bh, inode->i_sb, map.m_pblk);
753ed8ad838SJan Kara 		ext4_update_bh_state(bh, map.m_flags);
7547b7a8665SChristoph Hellwig 		if (io_end && io_end->flag & EXT4_IO_END_UNWRITTEN)
7557b7a8665SChristoph Hellwig 			set_buffer_defer_completion(bh);
7562ed88685STheodore Ts'o 		bh->b_size = inode->i_sb->s_blocksize * map.m_len;
757ac27a0ecSDave Kleikamp 		ret = 0;
758ac27a0ecSDave Kleikamp 	}
7597fb5409dSJan Kara 	if (started)
7607fb5409dSJan Kara 		ext4_journal_stop(handle);
761ac27a0ecSDave Kleikamp 	return ret;
762ac27a0ecSDave Kleikamp }
763ac27a0ecSDave Kleikamp 
7642ed88685STheodore Ts'o int ext4_get_block(struct inode *inode, sector_t iblock,
7652ed88685STheodore Ts'o 		   struct buffer_head *bh, int create)
7662ed88685STheodore Ts'o {
7672ed88685STheodore Ts'o 	return _ext4_get_block(inode, iblock, bh,
7682ed88685STheodore Ts'o 			       create ? EXT4_GET_BLOCKS_CREATE : 0);
7692ed88685STheodore Ts'o }
7702ed88685STheodore Ts'o 
771ac27a0ecSDave Kleikamp /*
772ac27a0ecSDave Kleikamp  * `handle' can be NULL if create is zero
773ac27a0ecSDave Kleikamp  */
774617ba13bSMingming Cao struct buffer_head *ext4_getblk(handle_t *handle, struct inode *inode,
775c5e298aeSTheodore Ts'o 				ext4_lblk_t block, int map_flags)
776ac27a0ecSDave Kleikamp {
7772ed88685STheodore Ts'o 	struct ext4_map_blocks map;
7782ed88685STheodore Ts'o 	struct buffer_head *bh;
779c5e298aeSTheodore Ts'o 	int create = map_flags & EXT4_GET_BLOCKS_CREATE;
78010560082STheodore Ts'o 	int err;
781ac27a0ecSDave Kleikamp 
782ac27a0ecSDave Kleikamp 	J_ASSERT(handle != NULL || create == 0);
783ac27a0ecSDave Kleikamp 
7842ed88685STheodore Ts'o 	map.m_lblk = block;
7852ed88685STheodore Ts'o 	map.m_len = 1;
786c5e298aeSTheodore Ts'o 	err = ext4_map_blocks(handle, inode, &map, map_flags);
7872ed88685STheodore Ts'o 
78810560082STheodore Ts'o 	if (err == 0)
78910560082STheodore Ts'o 		return create ? ERR_PTR(-ENOSPC) : NULL;
7902ed88685STheodore Ts'o 	if (err < 0)
79110560082STheodore Ts'o 		return ERR_PTR(err);
7922ed88685STheodore Ts'o 
7932ed88685STheodore Ts'o 	bh = sb_getblk(inode->i_sb, map.m_pblk);
79410560082STheodore Ts'o 	if (unlikely(!bh))
79510560082STheodore Ts'o 		return ERR_PTR(-ENOMEM);
7962ed88685STheodore Ts'o 	if (map.m_flags & EXT4_MAP_NEW) {
797ac27a0ecSDave Kleikamp 		J_ASSERT(create != 0);
798ac39849dSAneesh Kumar K.V 		J_ASSERT(handle != NULL);
799ac27a0ecSDave Kleikamp 
800ac27a0ecSDave Kleikamp 		/*
801ac27a0ecSDave Kleikamp 		 * Now that we do not always journal data, we should
802ac27a0ecSDave Kleikamp 		 * keep in mind whether this should always journal the
803ac27a0ecSDave Kleikamp 		 * new buffer as metadata.  For now, regular file
804617ba13bSMingming Cao 		 * writes use ext4_get_block instead, so it's not a
805ac27a0ecSDave Kleikamp 		 * problem.
806ac27a0ecSDave Kleikamp 		 */
807ac27a0ecSDave Kleikamp 		lock_buffer(bh);
808ac27a0ecSDave Kleikamp 		BUFFER_TRACE(bh, "call get_create_access");
80910560082STheodore Ts'o 		err = ext4_journal_get_create_access(handle, bh);
81010560082STheodore Ts'o 		if (unlikely(err)) {
81110560082STheodore Ts'o 			unlock_buffer(bh);
81210560082STheodore Ts'o 			goto errout;
81310560082STheodore Ts'o 		}
81410560082STheodore Ts'o 		if (!buffer_uptodate(bh)) {
815ac27a0ecSDave Kleikamp 			memset(bh->b_data, 0, inode->i_sb->s_blocksize);
816ac27a0ecSDave Kleikamp 			set_buffer_uptodate(bh);
817ac27a0ecSDave Kleikamp 		}
818ac27a0ecSDave Kleikamp 		unlock_buffer(bh);
8190390131bSFrank Mayhar 		BUFFER_TRACE(bh, "call ext4_handle_dirty_metadata");
8200390131bSFrank Mayhar 		err = ext4_handle_dirty_metadata(handle, inode, bh);
82110560082STheodore Ts'o 		if (unlikely(err))
82210560082STheodore Ts'o 			goto errout;
82310560082STheodore Ts'o 	} else
824ac27a0ecSDave Kleikamp 		BUFFER_TRACE(bh, "not a new buffer");
825ac27a0ecSDave Kleikamp 	return bh;
82610560082STheodore Ts'o errout:
82710560082STheodore Ts'o 	brelse(bh);
82810560082STheodore Ts'o 	return ERR_PTR(err);
829ac27a0ecSDave Kleikamp }
830ac27a0ecSDave Kleikamp 
831617ba13bSMingming Cao struct buffer_head *ext4_bread(handle_t *handle, struct inode *inode,
832c5e298aeSTheodore Ts'o 			       ext4_lblk_t block, int map_flags)
833ac27a0ecSDave Kleikamp {
834ac27a0ecSDave Kleikamp 	struct buffer_head *bh;
835ac27a0ecSDave Kleikamp 
836c5e298aeSTheodore Ts'o 	bh = ext4_getblk(handle, inode, block, map_flags);
8371c215028STheodore Ts'o 	if (IS_ERR(bh))
838ac27a0ecSDave Kleikamp 		return bh;
8391c215028STheodore Ts'o 	if (!bh || buffer_uptodate(bh))
840ac27a0ecSDave Kleikamp 		return bh;
84165299a3bSChristoph Hellwig 	ll_rw_block(READ | REQ_META | REQ_PRIO, 1, &bh);
842ac27a0ecSDave Kleikamp 	wait_on_buffer(bh);
843ac27a0ecSDave Kleikamp 	if (buffer_uptodate(bh))
844ac27a0ecSDave Kleikamp 		return bh;
845ac27a0ecSDave Kleikamp 	put_bh(bh);
8461c215028STheodore Ts'o 	return ERR_PTR(-EIO);
847ac27a0ecSDave Kleikamp }
848ac27a0ecSDave Kleikamp 
849f19d5870STao Ma int ext4_walk_page_buffers(handle_t *handle,
850ac27a0ecSDave Kleikamp 			   struct buffer_head *head,
851ac27a0ecSDave Kleikamp 			   unsigned from,
852ac27a0ecSDave Kleikamp 			   unsigned to,
853ac27a0ecSDave Kleikamp 			   int *partial,
854ac27a0ecSDave Kleikamp 			   int (*fn)(handle_t *handle,
855ac27a0ecSDave Kleikamp 				     struct buffer_head *bh))
856ac27a0ecSDave Kleikamp {
857ac27a0ecSDave Kleikamp 	struct buffer_head *bh;
858ac27a0ecSDave Kleikamp 	unsigned block_start, block_end;
859ac27a0ecSDave Kleikamp 	unsigned blocksize = head->b_size;
860ac27a0ecSDave Kleikamp 	int err, ret = 0;
861ac27a0ecSDave Kleikamp 	struct buffer_head *next;
862ac27a0ecSDave Kleikamp 
863ac27a0ecSDave Kleikamp 	for (bh = head, block_start = 0;
864ac27a0ecSDave Kleikamp 	     ret == 0 && (bh != head || !block_start);
865de9a55b8STheodore Ts'o 	     block_start = block_end, bh = next) {
866ac27a0ecSDave Kleikamp 		next = bh->b_this_page;
867ac27a0ecSDave Kleikamp 		block_end = block_start + blocksize;
868ac27a0ecSDave Kleikamp 		if (block_end <= from || block_start >= to) {
869ac27a0ecSDave Kleikamp 			if (partial && !buffer_uptodate(bh))
870ac27a0ecSDave Kleikamp 				*partial = 1;
871ac27a0ecSDave Kleikamp 			continue;
872ac27a0ecSDave Kleikamp 		}
873ac27a0ecSDave Kleikamp 		err = (*fn)(handle, bh);
874ac27a0ecSDave Kleikamp 		if (!ret)
875ac27a0ecSDave Kleikamp 			ret = err;
876ac27a0ecSDave Kleikamp 	}
877ac27a0ecSDave Kleikamp 	return ret;
878ac27a0ecSDave Kleikamp }
879ac27a0ecSDave Kleikamp 
880ac27a0ecSDave Kleikamp /*
881ac27a0ecSDave Kleikamp  * To preserve ordering, it is essential that the hole instantiation and
882ac27a0ecSDave Kleikamp  * the data write be encapsulated in a single transaction.  We cannot
883617ba13bSMingming Cao  * close off a transaction and start a new one between the ext4_get_block()
884dab291afSMingming Cao  * and the commit_write().  So doing the jbd2_journal_start at the start of
885ac27a0ecSDave Kleikamp  * prepare_write() is the right place.
886ac27a0ecSDave Kleikamp  *
88736ade451SJan Kara  * Also, this function can nest inside ext4_writepage().  In that case, we
88836ade451SJan Kara  * *know* that ext4_writepage() has generated enough buffer credits to do the
88936ade451SJan Kara  * whole page.  So we won't block on the journal in that case, which is good,
89036ade451SJan Kara  * because the caller may be PF_MEMALLOC.
891ac27a0ecSDave Kleikamp  *
892617ba13bSMingming Cao  * By accident, ext4 can be reentered when a transaction is open via
893ac27a0ecSDave Kleikamp  * quota file writes.  If we were to commit the transaction while thus
894ac27a0ecSDave Kleikamp  * reentered, there can be a deadlock - we would be holding a quota
895ac27a0ecSDave Kleikamp  * lock, and the commit would never complete if another thread had a
896ac27a0ecSDave Kleikamp  * transaction open and was blocking on the quota lock - a ranking
897ac27a0ecSDave Kleikamp  * violation.
898ac27a0ecSDave Kleikamp  *
899dab291afSMingming Cao  * So what we do is to rely on the fact that jbd2_journal_stop/journal_start
900ac27a0ecSDave Kleikamp  * will _not_ run commit under these circumstances because handle->h_ref
901ac27a0ecSDave Kleikamp  * is elevated.  We'll still have enough credits for the tiny quotafile
902ac27a0ecSDave Kleikamp  * write.
903ac27a0ecSDave Kleikamp  */
904f19d5870STao Ma int do_journal_get_write_access(handle_t *handle,
905ac27a0ecSDave Kleikamp 				struct buffer_head *bh)
906ac27a0ecSDave Kleikamp {
90756d35a4cSJan Kara 	int dirty = buffer_dirty(bh);
90856d35a4cSJan Kara 	int ret;
90956d35a4cSJan Kara 
910ac27a0ecSDave Kleikamp 	if (!buffer_mapped(bh) || buffer_freed(bh))
911ac27a0ecSDave Kleikamp 		return 0;
91256d35a4cSJan Kara 	/*
913ebdec241SChristoph Hellwig 	 * __block_write_begin() could have dirtied some buffers. Clean
91456d35a4cSJan Kara 	 * the dirty bit as jbd2_journal_get_write_access() could complain
91556d35a4cSJan Kara 	 * otherwise about fs integrity issues. Setting of the dirty bit
916ebdec241SChristoph Hellwig 	 * by __block_write_begin() isn't a real problem here as we clear
91756d35a4cSJan Kara 	 * the bit before releasing a page lock and thus writeback cannot
91856d35a4cSJan Kara 	 * ever write the buffer.
91956d35a4cSJan Kara 	 */
92056d35a4cSJan Kara 	if (dirty)
92156d35a4cSJan Kara 		clear_buffer_dirty(bh);
9225d601255Sliang xie 	BUFFER_TRACE(bh, "get write access");
92356d35a4cSJan Kara 	ret = ext4_journal_get_write_access(handle, bh);
92456d35a4cSJan Kara 	if (!ret && dirty)
92556d35a4cSJan Kara 		ret = ext4_handle_dirty_metadata(handle, NULL, bh);
92656d35a4cSJan Kara 	return ret;
927ac27a0ecSDave Kleikamp }
928ac27a0ecSDave Kleikamp 
9292058f83aSMichael Halcrow #ifdef CONFIG_EXT4_FS_ENCRYPTION
9302058f83aSMichael Halcrow static int ext4_block_write_begin(struct page *page, loff_t pos, unsigned len,
9312058f83aSMichael Halcrow 				  get_block_t *get_block)
9322058f83aSMichael Halcrow {
9332058f83aSMichael Halcrow 	unsigned from = pos & (PAGE_CACHE_SIZE - 1);
9342058f83aSMichael Halcrow 	unsigned to = from + len;
9352058f83aSMichael Halcrow 	struct inode *inode = page->mapping->host;
9362058f83aSMichael Halcrow 	unsigned block_start, block_end;
9372058f83aSMichael Halcrow 	sector_t block;
9382058f83aSMichael Halcrow 	int err = 0;
9392058f83aSMichael Halcrow 	unsigned blocksize = inode->i_sb->s_blocksize;
9402058f83aSMichael Halcrow 	unsigned bbits;
9412058f83aSMichael Halcrow 	struct buffer_head *bh, *head, *wait[2], **wait_bh = wait;
9422058f83aSMichael Halcrow 	bool decrypt = false;
9432058f83aSMichael Halcrow 
9442058f83aSMichael Halcrow 	BUG_ON(!PageLocked(page));
9452058f83aSMichael Halcrow 	BUG_ON(from > PAGE_CACHE_SIZE);
9462058f83aSMichael Halcrow 	BUG_ON(to > PAGE_CACHE_SIZE);
9472058f83aSMichael Halcrow 	BUG_ON(from > to);
9482058f83aSMichael Halcrow 
9492058f83aSMichael Halcrow 	if (!page_has_buffers(page))
9502058f83aSMichael Halcrow 		create_empty_buffers(page, blocksize, 0);
9512058f83aSMichael Halcrow 	head = page_buffers(page);
9522058f83aSMichael Halcrow 	bbits = ilog2(blocksize);
9532058f83aSMichael Halcrow 	block = (sector_t)page->index << (PAGE_CACHE_SHIFT - bbits);
9542058f83aSMichael Halcrow 
9552058f83aSMichael Halcrow 	for (bh = head, block_start = 0; bh != head || !block_start;
9562058f83aSMichael Halcrow 	    block++, block_start = block_end, bh = bh->b_this_page) {
9572058f83aSMichael Halcrow 		block_end = block_start + blocksize;
9582058f83aSMichael Halcrow 		if (block_end <= from || block_start >= to) {
9592058f83aSMichael Halcrow 			if (PageUptodate(page)) {
9602058f83aSMichael Halcrow 				if (!buffer_uptodate(bh))
9612058f83aSMichael Halcrow 					set_buffer_uptodate(bh);
9622058f83aSMichael Halcrow 			}
9632058f83aSMichael Halcrow 			continue;
9642058f83aSMichael Halcrow 		}
9652058f83aSMichael Halcrow 		if (buffer_new(bh))
9662058f83aSMichael Halcrow 			clear_buffer_new(bh);
9672058f83aSMichael Halcrow 		if (!buffer_mapped(bh)) {
9682058f83aSMichael Halcrow 			WARN_ON(bh->b_size != blocksize);
9692058f83aSMichael Halcrow 			err = get_block(inode, block, bh, 1);
9702058f83aSMichael Halcrow 			if (err)
9712058f83aSMichael Halcrow 				break;
9722058f83aSMichael Halcrow 			if (buffer_new(bh)) {
9732058f83aSMichael Halcrow 				unmap_underlying_metadata(bh->b_bdev,
9742058f83aSMichael Halcrow 							  bh->b_blocknr);
9752058f83aSMichael Halcrow 				if (PageUptodate(page)) {
9762058f83aSMichael Halcrow 					clear_buffer_new(bh);
9772058f83aSMichael Halcrow 					set_buffer_uptodate(bh);
9782058f83aSMichael Halcrow 					mark_buffer_dirty(bh);
9792058f83aSMichael Halcrow 					continue;
9802058f83aSMichael Halcrow 				}
9812058f83aSMichael Halcrow 				if (block_end > to || block_start < from)
9822058f83aSMichael Halcrow 					zero_user_segments(page, to, block_end,
9832058f83aSMichael Halcrow 							   block_start, from);
9842058f83aSMichael Halcrow 				continue;
9852058f83aSMichael Halcrow 			}
9862058f83aSMichael Halcrow 		}
9872058f83aSMichael Halcrow 		if (PageUptodate(page)) {
9882058f83aSMichael Halcrow 			if (!buffer_uptodate(bh))
9892058f83aSMichael Halcrow 				set_buffer_uptodate(bh);
9902058f83aSMichael Halcrow 			continue;
9912058f83aSMichael Halcrow 		}
9922058f83aSMichael Halcrow 		if (!buffer_uptodate(bh) && !buffer_delay(bh) &&
9932058f83aSMichael Halcrow 		    !buffer_unwritten(bh) &&
9942058f83aSMichael Halcrow 		    (block_start < from || block_end > to)) {
9952058f83aSMichael Halcrow 			ll_rw_block(READ, 1, &bh);
9962058f83aSMichael Halcrow 			*wait_bh++ = bh;
9972058f83aSMichael Halcrow 			decrypt = ext4_encrypted_inode(inode) &&
9982058f83aSMichael Halcrow 				S_ISREG(inode->i_mode);
9992058f83aSMichael Halcrow 		}
10002058f83aSMichael Halcrow 	}
10012058f83aSMichael Halcrow 	/*
10022058f83aSMichael Halcrow 	 * If we issued read requests, let them complete.
10032058f83aSMichael Halcrow 	 */
10042058f83aSMichael Halcrow 	while (wait_bh > wait) {
10052058f83aSMichael Halcrow 		wait_on_buffer(*--wait_bh);
10062058f83aSMichael Halcrow 		if (!buffer_uptodate(*wait_bh))
10072058f83aSMichael Halcrow 			err = -EIO;
10082058f83aSMichael Halcrow 	}
10092058f83aSMichael Halcrow 	if (unlikely(err))
10102058f83aSMichael Halcrow 		page_zero_new_buffers(page, from, to);
10112058f83aSMichael Halcrow 	else if (decrypt)
10123684de8cSTheodore Ts'o 		err = ext4_decrypt(page);
10132058f83aSMichael Halcrow 	return err;
10142058f83aSMichael Halcrow }
10152058f83aSMichael Halcrow #endif
10162058f83aSMichael Halcrow 
1017bfc1af65SNick Piggin static int ext4_write_begin(struct file *file, struct address_space *mapping,
1018bfc1af65SNick Piggin 			    loff_t pos, unsigned len, unsigned flags,
1019bfc1af65SNick Piggin 			    struct page **pagep, void **fsdata)
1020ac27a0ecSDave Kleikamp {
1021bfc1af65SNick Piggin 	struct inode *inode = mapping->host;
10221938a150SAneesh Kumar K.V 	int ret, needed_blocks;
1023ac27a0ecSDave Kleikamp 	handle_t *handle;
1024ac27a0ecSDave Kleikamp 	int retries = 0;
1025bfc1af65SNick Piggin 	struct page *page;
1026bfc1af65SNick Piggin 	pgoff_t index;
1027bfc1af65SNick Piggin 	unsigned from, to;
1028bfc1af65SNick Piggin 
10299bffad1eSTheodore Ts'o 	trace_ext4_write_begin(inode, pos, len, flags);
10301938a150SAneesh Kumar K.V 	/*
10311938a150SAneesh Kumar K.V 	 * Reserve one block more for addition to orphan list in case
10321938a150SAneesh Kumar K.V 	 * we allocate blocks but write fails for some reason
10331938a150SAneesh Kumar K.V 	 */
10341938a150SAneesh Kumar K.V 	needed_blocks = ext4_writepage_trans_blocks(inode) + 1;
1035bfc1af65SNick Piggin 	index = pos >> PAGE_CACHE_SHIFT;
1036bfc1af65SNick Piggin 	from = pos & (PAGE_CACHE_SIZE - 1);
1037bfc1af65SNick Piggin 	to = from + len;
1038ac27a0ecSDave Kleikamp 
1039f19d5870STao Ma 	if (ext4_test_inode_state(inode, EXT4_STATE_MAY_INLINE_DATA)) {
1040f19d5870STao Ma 		ret = ext4_try_to_write_inline_data(mapping, inode, pos, len,
1041f19d5870STao Ma 						    flags, pagep);
1042f19d5870STao Ma 		if (ret < 0)
104347564bfbSTheodore Ts'o 			return ret;
104447564bfbSTheodore Ts'o 		if (ret == 1)
104547564bfbSTheodore Ts'o 			return 0;
1046f19d5870STao Ma 	}
1047f19d5870STao Ma 
104847564bfbSTheodore Ts'o 	/*
104947564bfbSTheodore Ts'o 	 * grab_cache_page_write_begin() can take a long time if the
105047564bfbSTheodore Ts'o 	 * system is thrashing due to memory pressure, or if the page
105147564bfbSTheodore Ts'o 	 * is being written back.  So grab it first before we start
105247564bfbSTheodore Ts'o 	 * the transaction handle.  This also allows us to allocate
105347564bfbSTheodore Ts'o 	 * the page (if needed) without using GFP_NOFS.
105447564bfbSTheodore Ts'o 	 */
105547564bfbSTheodore Ts'o retry_grab:
105654566b2cSNick Piggin 	page = grab_cache_page_write_begin(mapping, index, flags);
105747564bfbSTheodore Ts'o 	if (!page)
105847564bfbSTheodore Ts'o 		return -ENOMEM;
105947564bfbSTheodore Ts'o 	unlock_page(page);
106047564bfbSTheodore Ts'o 
106147564bfbSTheodore Ts'o retry_journal:
10629924a92aSTheodore Ts'o 	handle = ext4_journal_start(inode, EXT4_HT_WRITE_PAGE, needed_blocks);
1063ac27a0ecSDave Kleikamp 	if (IS_ERR(handle)) {
106447564bfbSTheodore Ts'o 		page_cache_release(page);
106547564bfbSTheodore Ts'o 		return PTR_ERR(handle);
1066cf108bcaSJan Kara 	}
1067f19d5870STao Ma 
106847564bfbSTheodore Ts'o 	lock_page(page);
106947564bfbSTheodore Ts'o 	if (page->mapping != mapping) {
107047564bfbSTheodore Ts'o 		/* The page got truncated from under us */
107147564bfbSTheodore Ts'o 		unlock_page(page);
107247564bfbSTheodore Ts'o 		page_cache_release(page);
1073cf108bcaSJan Kara 		ext4_journal_stop(handle);
107447564bfbSTheodore Ts'o 		goto retry_grab;
1075cf108bcaSJan Kara 	}
10767afe5aa5SDmitry Monakhov 	/* In case writeback began while the page was unlocked */
10777afe5aa5SDmitry Monakhov 	wait_for_stable_page(page);
1078cf108bcaSJan Kara 
10792058f83aSMichael Halcrow #ifdef CONFIG_EXT4_FS_ENCRYPTION
10802058f83aSMichael Halcrow 	if (ext4_should_dioread_nolock(inode))
10812058f83aSMichael Halcrow 		ret = ext4_block_write_begin(page, pos, len,
10822058f83aSMichael Halcrow 					     ext4_get_block_write);
10832058f83aSMichael Halcrow 	else
10842058f83aSMichael Halcrow 		ret = ext4_block_write_begin(page, pos, len,
10852058f83aSMichael Halcrow 					     ext4_get_block);
10862058f83aSMichael Halcrow #else
1087744692dcSJiaying Zhang 	if (ext4_should_dioread_nolock(inode))
10886e1db88dSChristoph Hellwig 		ret = __block_write_begin(page, pos, len, ext4_get_block_write);
1089744692dcSJiaying Zhang 	else
10906e1db88dSChristoph Hellwig 		ret = __block_write_begin(page, pos, len, ext4_get_block);
10912058f83aSMichael Halcrow #endif
1092bfc1af65SNick Piggin 	if (!ret && ext4_should_journal_data(inode)) {
1093f19d5870STao Ma 		ret = ext4_walk_page_buffers(handle, page_buffers(page),
1094f19d5870STao Ma 					     from, to, NULL,
1095f19d5870STao Ma 					     do_journal_get_write_access);
1096b46be050SAndrey Savochkin 	}
1097bfc1af65SNick Piggin 
1098bfc1af65SNick Piggin 	if (ret) {
1099bfc1af65SNick Piggin 		unlock_page(page);
1100ae4d5372SAneesh Kumar K.V 		/*
11016e1db88dSChristoph Hellwig 		 * __block_write_begin may have instantiated a few blocks
1102ae4d5372SAneesh Kumar K.V 		 * outside i_size.  Trim these off again. Don't need
1103ae4d5372SAneesh Kumar K.V 		 * i_size_read because we hold i_mutex.
11041938a150SAneesh Kumar K.V 		 *
11051938a150SAneesh Kumar K.V 		 * Add inode to orphan list in case we crash before
11061938a150SAneesh Kumar K.V 		 * truncate finishes
1107ae4d5372SAneesh Kumar K.V 		 */
1108ffacfa7aSJan Kara 		if (pos + len > inode->i_size && ext4_can_truncate(inode))
11091938a150SAneesh Kumar K.V 			ext4_orphan_add(handle, inode);
11101938a150SAneesh Kumar K.V 
11111938a150SAneesh Kumar K.V 		ext4_journal_stop(handle);
11121938a150SAneesh Kumar K.V 		if (pos + len > inode->i_size) {
1113b9a4207dSJan Kara 			ext4_truncate_failed_write(inode);
11141938a150SAneesh Kumar K.V 			/*
1115ffacfa7aSJan Kara 			 * If truncate failed early the inode might
11161938a150SAneesh Kumar K.V 			 * still be on the orphan list; we need to
11171938a150SAneesh Kumar K.V 			 * make sure the inode is removed from the
11181938a150SAneesh Kumar K.V 			 * orphan list in that case.
11191938a150SAneesh Kumar K.V 			 */
11201938a150SAneesh Kumar K.V 			if (inode->i_nlink)
11211938a150SAneesh Kumar K.V 				ext4_orphan_del(NULL, inode);
11221938a150SAneesh Kumar K.V 		}
1123bfc1af65SNick Piggin 
112447564bfbSTheodore Ts'o 		if (ret == -ENOSPC &&
112547564bfbSTheodore Ts'o 		    ext4_should_retry_alloc(inode->i_sb, &retries))
112647564bfbSTheodore Ts'o 			goto retry_journal;
112747564bfbSTheodore Ts'o 		page_cache_release(page);
112847564bfbSTheodore Ts'o 		return ret;
112947564bfbSTheodore Ts'o 	}
113047564bfbSTheodore Ts'o 	*pagep = page;
1131ac27a0ecSDave Kleikamp 	return ret;
1132ac27a0ecSDave Kleikamp }
1133ac27a0ecSDave Kleikamp 
1134bfc1af65SNick Piggin /* For write_end() in data=journal mode */
1135bfc1af65SNick Piggin static int write_end_fn(handle_t *handle, struct buffer_head *bh)
1136ac27a0ecSDave Kleikamp {
113713fca323STheodore Ts'o 	int ret;
1138ac27a0ecSDave Kleikamp 	if (!buffer_mapped(bh) || buffer_freed(bh))
1139ac27a0ecSDave Kleikamp 		return 0;
1140ac27a0ecSDave Kleikamp 	set_buffer_uptodate(bh);
114113fca323STheodore Ts'o 	ret = ext4_handle_dirty_metadata(handle, NULL, bh);
114213fca323STheodore Ts'o 	clear_buffer_meta(bh);
114313fca323STheodore Ts'o 	clear_buffer_prio(bh);
114413fca323STheodore Ts'o 	return ret;
1145ac27a0ecSDave Kleikamp }
1146ac27a0ecSDave Kleikamp 
1147eed4333fSZheng Liu /*
1148eed4333fSZheng Liu  * We need to pick up the new inode size which generic_commit_write gave us
1149eed4333fSZheng Liu  * `file' can be NULL - eg, when called from page_symlink().
1150eed4333fSZheng Liu  *
1151eed4333fSZheng Liu  * ext4 never places buffers on inode->i_mapping->private_list.  metadata
1152eed4333fSZheng Liu  * buffers are managed internally.
1153eed4333fSZheng Liu  */
1154eed4333fSZheng Liu static int ext4_write_end(struct file *file,
1155f8514083SAneesh Kumar K.V 			  struct address_space *mapping,
1156f8514083SAneesh Kumar K.V 			  loff_t pos, unsigned len, unsigned copied,
1157f8514083SAneesh Kumar K.V 			  struct page *page, void *fsdata)
1158f8514083SAneesh Kumar K.V {
1159f8514083SAneesh Kumar K.V 	handle_t *handle = ext4_journal_current_handle();
1160eed4333fSZheng Liu 	struct inode *inode = mapping->host;
11610572639fSXiaoguang Wang 	loff_t old_size = inode->i_size;
1162eed4333fSZheng Liu 	int ret = 0, ret2;
1163eed4333fSZheng Liu 	int i_size_changed = 0;
1164eed4333fSZheng Liu 
1165eed4333fSZheng Liu 	trace_ext4_write_end(inode, pos, len, copied);
1166eed4333fSZheng Liu 	if (ext4_test_inode_state(inode, EXT4_STATE_ORDERED_MODE)) {
1167eed4333fSZheng Liu 		ret = ext4_jbd2_file_inode(handle, inode);
1168eed4333fSZheng Liu 		if (ret) {
1169eed4333fSZheng Liu 			unlock_page(page);
1170eed4333fSZheng Liu 			page_cache_release(page);
1171eed4333fSZheng Liu 			goto errout;
1172eed4333fSZheng Liu 		}
1173eed4333fSZheng Liu 	}
1174f8514083SAneesh Kumar K.V 
117542c832deSTheodore Ts'o 	if (ext4_has_inline_data(inode)) {
117642c832deSTheodore Ts'o 		ret = ext4_write_inline_data_end(inode, pos, len,
1177f19d5870STao Ma 						 copied, page);
117842c832deSTheodore Ts'o 		if (ret < 0)
117942c832deSTheodore Ts'o 			goto errout;
118042c832deSTheodore Ts'o 		copied = ret;
118142c832deSTheodore Ts'o 	} else
1182f19d5870STao Ma 		copied = block_write_end(file, mapping, pos,
1183f19d5870STao Ma 					 len, copied, page, fsdata);
1184f8514083SAneesh Kumar K.V 	/*
11854631dbf6SDmitry Monakhov 	 * it's important to update i_size while still holding page lock:
1186f8514083SAneesh Kumar K.V 	 * page writeout could otherwise come in and zero beyond i_size.
1187f8514083SAneesh Kumar K.V 	 */
11884631dbf6SDmitry Monakhov 	i_size_changed = ext4_update_inode_size(inode, pos + copied);
1189f8514083SAneesh Kumar K.V 	unlock_page(page);
1190f8514083SAneesh Kumar K.V 	page_cache_release(page);
1191f8514083SAneesh Kumar K.V 
11920572639fSXiaoguang Wang 	if (old_size < pos)
11930572639fSXiaoguang Wang 		pagecache_isize_extended(inode, old_size, pos);
1194f8514083SAneesh Kumar K.V 	/*
1195f8514083SAneesh Kumar K.V 	 * Don't mark the inode dirty under page lock. First, it unnecessarily
1196f8514083SAneesh Kumar K.V 	 * makes the holding time of page lock longer. Second, it forces lock
1197f8514083SAneesh Kumar K.V 	 * ordering of page lock and transaction start for journaling
1198f8514083SAneesh Kumar K.V 	 * filesystems.
1199f8514083SAneesh Kumar K.V 	 */
1200f8514083SAneesh Kumar K.V 	if (i_size_changed)
1201f8514083SAneesh Kumar K.V 		ext4_mark_inode_dirty(handle, inode);
1202f8514083SAneesh Kumar K.V 
1203ffacfa7aSJan Kara 	if (pos + len > inode->i_size && ext4_can_truncate(inode))
1204f8514083SAneesh Kumar K.V 		/* if we have allocated more blocks and copied
1205f8514083SAneesh Kumar K.V 		 * less. We will have blocks allocated outside
1206f8514083SAneesh Kumar K.V 		 * inode->i_size. So truncate them
1207f8514083SAneesh Kumar K.V 		 */
1208f8514083SAneesh Kumar K.V 		ext4_orphan_add(handle, inode);
120974d553aaSTheodore Ts'o errout:
1210617ba13bSMingming Cao 	ret2 = ext4_journal_stop(handle);
1211ac27a0ecSDave Kleikamp 	if (!ret)
1212ac27a0ecSDave Kleikamp 		ret = ret2;
1213bfc1af65SNick Piggin 
1214f8514083SAneesh Kumar K.V 	if (pos + len > inode->i_size) {
1215b9a4207dSJan Kara 		ext4_truncate_failed_write(inode);
1216f8514083SAneesh Kumar K.V 		/*
1217ffacfa7aSJan Kara 		 * If truncate failed early the inode might still be
1218f8514083SAneesh Kumar K.V 		 * on the orphan list; we need to make sure the inode
1219f8514083SAneesh Kumar K.V 		 * is removed from the orphan list in that case.
1220f8514083SAneesh Kumar K.V 		 */
1221f8514083SAneesh Kumar K.V 		if (inode->i_nlink)
1222f8514083SAneesh Kumar K.V 			ext4_orphan_del(NULL, inode);
1223f8514083SAneesh Kumar K.V 	}
1224f8514083SAneesh Kumar K.V 
1225bfc1af65SNick Piggin 	return ret ? ret : copied;
1226ac27a0ecSDave Kleikamp }
1227ac27a0ecSDave Kleikamp 
1228b90197b6STheodore Ts'o /*
1229b90197b6STheodore Ts'o  * This is a private version of page_zero_new_buffers() which doesn't
1230b90197b6STheodore Ts'o  * set the buffer to be dirty, since in data=journalled mode we need
1231b90197b6STheodore Ts'o  * to call ext4_handle_dirty_metadata() instead.
1232b90197b6STheodore Ts'o  */
1233b90197b6STheodore Ts'o static void zero_new_buffers(struct page *page, unsigned from, unsigned to)
1234b90197b6STheodore Ts'o {
1235b90197b6STheodore Ts'o 	unsigned int block_start = 0, block_end;
1236b90197b6STheodore Ts'o 	struct buffer_head *head, *bh;
1237b90197b6STheodore Ts'o 
1238b90197b6STheodore Ts'o 	bh = head = page_buffers(page);
1239b90197b6STheodore Ts'o 	do {
1240b90197b6STheodore Ts'o 		block_end = block_start + bh->b_size;
1241b90197b6STheodore Ts'o 		if (buffer_new(bh)) {
1242b90197b6STheodore Ts'o 			if (block_end > from && block_start < to) {
1243b90197b6STheodore Ts'o 				if (!PageUptodate(page)) {
1244b90197b6STheodore Ts'o 					unsigned start, size;
1245b90197b6STheodore Ts'o 
1246b90197b6STheodore Ts'o 					start = max(from, block_start);
1247b90197b6STheodore Ts'o 					size = min(to, block_end) - start;
1248b90197b6STheodore Ts'o 
1249b90197b6STheodore Ts'o 					zero_user(page, start, size);
1250b90197b6STheodore Ts'o 					set_buffer_uptodate(bh);
1251b90197b6STheodore Ts'o 				}
1252b90197b6STheodore Ts'o 				clear_buffer_new(bh);
1253b90197b6STheodore Ts'o 			}
1254b90197b6STheodore Ts'o 		}
1255b90197b6STheodore Ts'o 		block_start = block_end;
1256b90197b6STheodore Ts'o 		bh = bh->b_this_page;
1257b90197b6STheodore Ts'o 	} while (bh != head);
1258b90197b6STheodore Ts'o }
1259b90197b6STheodore Ts'o 
1260bfc1af65SNick Piggin static int ext4_journalled_write_end(struct file *file,
1261bfc1af65SNick Piggin 				     struct address_space *mapping,
1262bfc1af65SNick Piggin 				     loff_t pos, unsigned len, unsigned copied,
1263bfc1af65SNick Piggin 				     struct page *page, void *fsdata)
1264ac27a0ecSDave Kleikamp {
1265617ba13bSMingming Cao 	handle_t *handle = ext4_journal_current_handle();
1266bfc1af65SNick Piggin 	struct inode *inode = mapping->host;
12670572639fSXiaoguang Wang 	loff_t old_size = inode->i_size;
1268ac27a0ecSDave Kleikamp 	int ret = 0, ret2;
1269ac27a0ecSDave Kleikamp 	int partial = 0;
1270bfc1af65SNick Piggin 	unsigned from, to;
12714631dbf6SDmitry Monakhov 	int size_changed = 0;
1272ac27a0ecSDave Kleikamp 
12739bffad1eSTheodore Ts'o 	trace_ext4_journalled_write_end(inode, pos, len, copied);
1274bfc1af65SNick Piggin 	from = pos & (PAGE_CACHE_SIZE - 1);
1275bfc1af65SNick Piggin 	to = from + len;
1276bfc1af65SNick Piggin 
1277441c8508SCurt Wohlgemuth 	BUG_ON(!ext4_handle_valid(handle));
1278441c8508SCurt Wohlgemuth 
12793fdcfb66STao Ma 	if (ext4_has_inline_data(inode))
12803fdcfb66STao Ma 		copied = ext4_write_inline_data_end(inode, pos, len,
12813fdcfb66STao Ma 						    copied, page);
12823fdcfb66STao Ma 	else {
1283bfc1af65SNick Piggin 		if (copied < len) {
1284bfc1af65SNick Piggin 			if (!PageUptodate(page))
1285bfc1af65SNick Piggin 				copied = 0;
1286b90197b6STheodore Ts'o 			zero_new_buffers(page, from+copied, to);
1287bfc1af65SNick Piggin 		}
1288ac27a0ecSDave Kleikamp 
1289f19d5870STao Ma 		ret = ext4_walk_page_buffers(handle, page_buffers(page), from,
1290bfc1af65SNick Piggin 					     to, &partial, write_end_fn);
1291ac27a0ecSDave Kleikamp 		if (!partial)
1292ac27a0ecSDave Kleikamp 			SetPageUptodate(page);
12933fdcfb66STao Ma 	}
12944631dbf6SDmitry Monakhov 	size_changed = ext4_update_inode_size(inode, pos + copied);
129519f5fb7aSTheodore Ts'o 	ext4_set_inode_state(inode, EXT4_STATE_JDATA);
12962d859db3SJan Kara 	EXT4_I(inode)->i_datasync_tid = handle->h_transaction->t_tid;
12974631dbf6SDmitry Monakhov 	unlock_page(page);
12984631dbf6SDmitry Monakhov 	page_cache_release(page);
12994631dbf6SDmitry Monakhov 
13000572639fSXiaoguang Wang 	if (old_size < pos)
13010572639fSXiaoguang Wang 		pagecache_isize_extended(inode, old_size, pos);
13020572639fSXiaoguang Wang 
13034631dbf6SDmitry Monakhov 	if (size_changed) {
1304617ba13bSMingming Cao 		ret2 = ext4_mark_inode_dirty(handle, inode);
1305ac27a0ecSDave Kleikamp 		if (!ret)
1306ac27a0ecSDave Kleikamp 			ret = ret2;
1307ac27a0ecSDave Kleikamp 	}
1308bfc1af65SNick Piggin 
1309ffacfa7aSJan Kara 	if (pos + len > inode->i_size && ext4_can_truncate(inode))
1310f8514083SAneesh Kumar K.V 		/* if we have allocated more blocks and copied
1311f8514083SAneesh Kumar K.V 		 * less. We will have blocks allocated outside
1312f8514083SAneesh Kumar K.V 		 * inode->i_size. So truncate them
1313f8514083SAneesh Kumar K.V 		 */
1314f8514083SAneesh Kumar K.V 		ext4_orphan_add(handle, inode);
1315f8514083SAneesh Kumar K.V 
1316617ba13bSMingming Cao 	ret2 = ext4_journal_stop(handle);
1317ac27a0ecSDave Kleikamp 	if (!ret)
1318ac27a0ecSDave Kleikamp 		ret = ret2;
1319f8514083SAneesh Kumar K.V 	if (pos + len > inode->i_size) {
1320b9a4207dSJan Kara 		ext4_truncate_failed_write(inode);
1321f8514083SAneesh Kumar K.V 		/*
1322ffacfa7aSJan Kara 		 * If truncate failed early the inode might still be
1323f8514083SAneesh Kumar K.V 		 * on the orphan list; we need to make sure the inode
1324f8514083SAneesh Kumar K.V 		 * is removed from the orphan list in that case.
1325f8514083SAneesh Kumar K.V 		 */
1326f8514083SAneesh Kumar K.V 		if (inode->i_nlink)
1327f8514083SAneesh Kumar K.V 			ext4_orphan_del(NULL, inode);
1328f8514083SAneesh Kumar K.V 	}
1329bfc1af65SNick Piggin 
1330bfc1af65SNick Piggin 	return ret ? ret : copied;
1331ac27a0ecSDave Kleikamp }
1332d2a17637SMingming Cao 
13339d0be502STheodore Ts'o /*
1334c27e43a1SEric Whitney  * Reserve space for a single cluster
13359d0be502STheodore Ts'o  */
1336c27e43a1SEric Whitney static int ext4_da_reserve_space(struct inode *inode)
1337d2a17637SMingming Cao {
1338d2a17637SMingming Cao 	struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb);
13390637c6f4STheodore Ts'o 	struct ext4_inode_info *ei = EXT4_I(inode);
13405dd4056dSChristoph Hellwig 	int ret;
1341d2a17637SMingming Cao 
134260e58e0fSMingming Cao 	/*
134372b8ab9dSEric Sandeen 	 * We will charge metadata quota at writeout time; this saves
134472b8ab9dSEric Sandeen 	 * us from metadata over-estimation, though we may go over by
134572b8ab9dSEric Sandeen 	 * a small amount in the end.  Here we just reserve for data.
134660e58e0fSMingming Cao 	 */
13477b415bf6SAditya Kali 	ret = dquot_reserve_block(inode, EXT4_C2B(sbi, 1));
13485dd4056dSChristoph Hellwig 	if (ret)
13495dd4056dSChristoph Hellwig 		return ret;
135003179fe9STheodore Ts'o 
135103179fe9STheodore Ts'o 	spin_lock(&ei->i_block_reservation_lock);
135271d4f7d0STheodore Ts'o 	if (ext4_claim_free_clusters(sbi, 1, 0)) {
135303179fe9STheodore Ts'o 		spin_unlock(&ei->i_block_reservation_lock);
135403179fe9STheodore Ts'o 		dquot_release_reservation_block(inode, EXT4_C2B(sbi, 1));
1355d2a17637SMingming Cao 		return -ENOSPC;
1356d2a17637SMingming Cao 	}
13579d0be502STheodore Ts'o 	ei->i_reserved_data_blocks++;
1358c27e43a1SEric Whitney 	trace_ext4_da_reserve_space(inode);
13590637c6f4STheodore Ts'o 	spin_unlock(&ei->i_block_reservation_lock);
136039bc680aSDmitry Monakhov 
1361d2a17637SMingming Cao 	return 0;       /* success */
1362d2a17637SMingming Cao }
1363d2a17637SMingming Cao 
136412219aeaSAneesh Kumar K.V static void ext4_da_release_space(struct inode *inode, int to_free)
1365d2a17637SMingming Cao {
1366d2a17637SMingming Cao 	struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb);
13670637c6f4STheodore Ts'o 	struct ext4_inode_info *ei = EXT4_I(inode);
1368d2a17637SMingming Cao 
1369cd213226SMingming Cao 	if (!to_free)
1370cd213226SMingming Cao 		return;		/* Nothing to release, exit */
1371cd213226SMingming Cao 
1372d2a17637SMingming Cao 	spin_lock(&EXT4_I(inode)->i_block_reservation_lock);
1373cd213226SMingming Cao 
13745a58ec87SLi Zefan 	trace_ext4_da_release_space(inode, to_free);
13750637c6f4STheodore Ts'o 	if (unlikely(to_free > ei->i_reserved_data_blocks)) {
1376cd213226SMingming Cao 		/*
13770637c6f4STheodore Ts'o 		 * if there aren't enough reserved blocks, then the
13780637c6f4STheodore Ts'o 		 * counter is messed up somewhere.  Since this
13790637c6f4STheodore Ts'o 		 * function is called from invalidate page, it's
13800637c6f4STheodore Ts'o 		 * harmless to return without any action.
1381cd213226SMingming Cao 		 */
13828de5c325STheodore Ts'o 		ext4_warning(inode->i_sb, "ext4_da_release_space: "
13830637c6f4STheodore Ts'o 			 "ino %lu, to_free %d with only %d reserved "
13841084f252STheodore Ts'o 			 "data blocks", inode->i_ino, to_free,
13850637c6f4STheodore Ts'o 			 ei->i_reserved_data_blocks);
13860637c6f4STheodore Ts'o 		WARN_ON(1);
13870637c6f4STheodore Ts'o 		to_free = ei->i_reserved_data_blocks;
13880637c6f4STheodore Ts'o 	}
13890637c6f4STheodore Ts'o 	ei->i_reserved_data_blocks -= to_free;
13900637c6f4STheodore Ts'o 
139172b8ab9dSEric Sandeen 	/* update fs dirty data blocks counter */
139257042651STheodore Ts'o 	percpu_counter_sub(&sbi->s_dirtyclusters_counter, to_free);
1393d2a17637SMingming Cao 
1394d2a17637SMingming Cao 	spin_unlock(&EXT4_I(inode)->i_block_reservation_lock);
139560e58e0fSMingming Cao 
13967b415bf6SAditya Kali 	dquot_release_reservation_block(inode, EXT4_C2B(sbi, to_free));
1397d2a17637SMingming Cao }
1398d2a17637SMingming Cao 
1399d2a17637SMingming Cao static void ext4_da_page_release_reservation(struct page *page,
1400ca99fdd2SLukas Czerner 					     unsigned int offset,
1401ca99fdd2SLukas Czerner 					     unsigned int length)
1402d2a17637SMingming Cao {
14039705acd6SLukas Czerner 	int to_release = 0, contiguous_blks = 0;
1404d2a17637SMingming Cao 	struct buffer_head *head, *bh;
1405d2a17637SMingming Cao 	unsigned int curr_off = 0;
14067b415bf6SAditya Kali 	struct inode *inode = page->mapping->host;
14077b415bf6SAditya Kali 	struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb);
1408ca99fdd2SLukas Czerner 	unsigned int stop = offset + length;
14097b415bf6SAditya Kali 	int num_clusters;
141051865fdaSZheng Liu 	ext4_fsblk_t lblk;
1411d2a17637SMingming Cao 
1412ca99fdd2SLukas Czerner 	BUG_ON(stop > PAGE_CACHE_SIZE || stop < length);
1413ca99fdd2SLukas Czerner 
1414d2a17637SMingming Cao 	head = page_buffers(page);
1415d2a17637SMingming Cao 	bh = head;
1416d2a17637SMingming Cao 	do {
1417d2a17637SMingming Cao 		unsigned int next_off = curr_off + bh->b_size;
1418d2a17637SMingming Cao 
1419ca99fdd2SLukas Czerner 		if (next_off > stop)
1420ca99fdd2SLukas Czerner 			break;
1421ca99fdd2SLukas Czerner 
1422d2a17637SMingming Cao 		if ((offset <= curr_off) && (buffer_delay(bh))) {
1423d2a17637SMingming Cao 			to_release++;
14249705acd6SLukas Czerner 			contiguous_blks++;
1425d2a17637SMingming Cao 			clear_buffer_delay(bh);
14269705acd6SLukas Czerner 		} else if (contiguous_blks) {
14279705acd6SLukas Czerner 			lblk = page->index <<
14289705acd6SLukas Czerner 			       (PAGE_CACHE_SHIFT - inode->i_blkbits);
14299705acd6SLukas Czerner 			lblk += (curr_off >> inode->i_blkbits) -
14309705acd6SLukas Czerner 				contiguous_blks;
14319705acd6SLukas Czerner 			ext4_es_remove_extent(inode, lblk, contiguous_blks);
14329705acd6SLukas Czerner 			contiguous_blks = 0;
1433d2a17637SMingming Cao 		}
1434d2a17637SMingming Cao 		curr_off = next_off;
1435d2a17637SMingming Cao 	} while ((bh = bh->b_this_page) != head);
14367b415bf6SAditya Kali 
14379705acd6SLukas Czerner 	if (contiguous_blks) {
143851865fdaSZheng Liu 		lblk = page->index << (PAGE_CACHE_SHIFT - inode->i_blkbits);
14399705acd6SLukas Czerner 		lblk += (curr_off >> inode->i_blkbits) - contiguous_blks;
14409705acd6SLukas Czerner 		ext4_es_remove_extent(inode, lblk, contiguous_blks);
144151865fdaSZheng Liu 	}
144251865fdaSZheng Liu 
14437b415bf6SAditya Kali 	/* If we have released all the blocks belonging to a cluster, then we
14447b415bf6SAditya Kali 	 * need to release the reserved space for that cluster. */
14457b415bf6SAditya Kali 	num_clusters = EXT4_NUM_B2C(sbi, to_release);
14467b415bf6SAditya Kali 	while (num_clusters > 0) {
14477b415bf6SAditya Kali 		lblk = (page->index << (PAGE_CACHE_SHIFT - inode->i_blkbits)) +
14487b415bf6SAditya Kali 			((num_clusters - 1) << sbi->s_cluster_bits);
14497b415bf6SAditya Kali 		if (sbi->s_cluster_ratio == 1 ||
14507d1b1fbcSZheng Liu 		    !ext4_find_delalloc_cluster(inode, lblk))
14517b415bf6SAditya Kali 			ext4_da_release_space(inode, 1);
14527b415bf6SAditya Kali 
14537b415bf6SAditya Kali 		num_clusters--;
14547b415bf6SAditya Kali 	}
1455d2a17637SMingming Cao }
1456ac27a0ecSDave Kleikamp 
1457ac27a0ecSDave Kleikamp /*
145864769240SAlex Tomas  * Delayed allocation stuff
145964769240SAlex Tomas  */
146064769240SAlex Tomas 
14614e7ea81dSJan Kara struct mpage_da_data {
14624e7ea81dSJan Kara 	struct inode *inode;
14634e7ea81dSJan Kara 	struct writeback_control *wbc;
14646b523df4SJan Kara 
14654e7ea81dSJan Kara 	pgoff_t first_page;	/* The first page to write */
14664e7ea81dSJan Kara 	pgoff_t next_page;	/* Current page to examine */
14674e7ea81dSJan Kara 	pgoff_t last_page;	/* Last page to examine */
146864769240SAlex Tomas 	/*
14694e7ea81dSJan Kara 	 * Extent to map - this can be after first_page because that can be
14704e7ea81dSJan Kara 	 * fully mapped. We somewhat abuse m_flags to store whether the extent
14714e7ea81dSJan Kara 	 * is delalloc or unwritten.
147264769240SAlex Tomas 	 */
14734e7ea81dSJan Kara 	struct ext4_map_blocks map;
14744e7ea81dSJan Kara 	struct ext4_io_submit io_submit;	/* IO submission data */
14754e7ea81dSJan Kara };
147664769240SAlex Tomas 
14774e7ea81dSJan Kara static void mpage_release_unused_pages(struct mpage_da_data *mpd,
14784e7ea81dSJan Kara 				       bool invalidate)
1479c4a0c46eSAneesh Kumar K.V {
1480c4a0c46eSAneesh Kumar K.V 	int nr_pages, i;
1481c4a0c46eSAneesh Kumar K.V 	pgoff_t index, end;
1482c4a0c46eSAneesh Kumar K.V 	struct pagevec pvec;
1483c4a0c46eSAneesh Kumar K.V 	struct inode *inode = mpd->inode;
1484c4a0c46eSAneesh Kumar K.V 	struct address_space *mapping = inode->i_mapping;
14854e7ea81dSJan Kara 
14864e7ea81dSJan Kara 	/* This is necessary when next_page == 0. */
14874e7ea81dSJan Kara 	if (mpd->first_page >= mpd->next_page)
14884e7ea81dSJan Kara 		return;
1489c4a0c46eSAneesh Kumar K.V 
1490c7f5938aSCurt Wohlgemuth 	index = mpd->first_page;
1491c7f5938aSCurt Wohlgemuth 	end   = mpd->next_page - 1;
14924e7ea81dSJan Kara 	if (invalidate) {
14934e7ea81dSJan Kara 		ext4_lblk_t start, last;
149451865fdaSZheng Liu 		start = index << (PAGE_CACHE_SHIFT - inode->i_blkbits);
149551865fdaSZheng Liu 		last = end << (PAGE_CACHE_SHIFT - inode->i_blkbits);
149651865fdaSZheng Liu 		ext4_es_remove_extent(inode, start, last - start + 1);
14974e7ea81dSJan Kara 	}
149851865fdaSZheng Liu 
149966bea92cSEric Sandeen 	pagevec_init(&pvec, 0);
1500c4a0c46eSAneesh Kumar K.V 	while (index <= end) {
1501c4a0c46eSAneesh Kumar K.V 		nr_pages = pagevec_lookup(&pvec, mapping, index, PAGEVEC_SIZE);
1502c4a0c46eSAneesh Kumar K.V 		if (nr_pages == 0)
1503c4a0c46eSAneesh Kumar K.V 			break;
1504c4a0c46eSAneesh Kumar K.V 		for (i = 0; i < nr_pages; i++) {
1505c4a0c46eSAneesh Kumar K.V 			struct page *page = pvec.pages[i];
15069b1d0998SJan Kara 			if (page->index > end)
1507c4a0c46eSAneesh Kumar K.V 				break;
1508c4a0c46eSAneesh Kumar K.V 			BUG_ON(!PageLocked(page));
1509c4a0c46eSAneesh Kumar K.V 			BUG_ON(PageWriteback(page));
15104e7ea81dSJan Kara 			if (invalidate) {
1511d47992f8SLukas Czerner 				block_invalidatepage(page, 0, PAGE_CACHE_SIZE);
1512c4a0c46eSAneesh Kumar K.V 				ClearPageUptodate(page);
15134e7ea81dSJan Kara 			}
1514c4a0c46eSAneesh Kumar K.V 			unlock_page(page);
1515c4a0c46eSAneesh Kumar K.V 		}
15169b1d0998SJan Kara 		index = pvec.pages[nr_pages - 1]->index + 1;
15179b1d0998SJan Kara 		pagevec_release(&pvec);
1518c4a0c46eSAneesh Kumar K.V 	}
1519c4a0c46eSAneesh Kumar K.V }
1520c4a0c46eSAneesh Kumar K.V 
1521df22291fSAneesh Kumar K.V static void ext4_print_free_blocks(struct inode *inode)
1522df22291fSAneesh Kumar K.V {
1523df22291fSAneesh Kumar K.V 	struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb);
152492b97816STheodore Ts'o 	struct super_block *sb = inode->i_sb;
1525f78ee70dSLukas Czerner 	struct ext4_inode_info *ei = EXT4_I(inode);
152692b97816STheodore Ts'o 
152792b97816STheodore Ts'o 	ext4_msg(sb, KERN_CRIT, "Total free blocks count %lld",
15285dee5437STheodore Ts'o 	       EXT4_C2B(EXT4_SB(inode->i_sb),
1529f78ee70dSLukas Czerner 			ext4_count_free_clusters(sb)));
153092b97816STheodore Ts'o 	ext4_msg(sb, KERN_CRIT, "Free/Dirty block details");
153192b97816STheodore Ts'o 	ext4_msg(sb, KERN_CRIT, "free_blocks=%lld",
1532f78ee70dSLukas Czerner 	       (long long) EXT4_C2B(EXT4_SB(sb),
153357042651STheodore Ts'o 		percpu_counter_sum(&sbi->s_freeclusters_counter)));
153492b97816STheodore Ts'o 	ext4_msg(sb, KERN_CRIT, "dirty_blocks=%lld",
1535f78ee70dSLukas Czerner 	       (long long) EXT4_C2B(EXT4_SB(sb),
15367b415bf6SAditya Kali 		percpu_counter_sum(&sbi->s_dirtyclusters_counter)));
153792b97816STheodore Ts'o 	ext4_msg(sb, KERN_CRIT, "Block reservation details");
153892b97816STheodore Ts'o 	ext4_msg(sb, KERN_CRIT, "i_reserved_data_blocks=%u",
1539f78ee70dSLukas Czerner 		 ei->i_reserved_data_blocks);
1540df22291fSAneesh Kumar K.V 	return;
1541df22291fSAneesh Kumar K.V }
1542df22291fSAneesh Kumar K.V 
1543c364b22cSAneesh Kumar K.V static int ext4_bh_delay_or_unwritten(handle_t *handle, struct buffer_head *bh)
154429fa89d0SAneesh Kumar K.V {
1545c364b22cSAneesh Kumar K.V 	return (buffer_delay(bh) || buffer_unwritten(bh)) && buffer_dirty(bh);
154629fa89d0SAneesh Kumar K.V }
154729fa89d0SAneesh Kumar K.V 
154864769240SAlex Tomas /*
15495356f261SAditya Kali  * This function is grabs code from the very beginning of
15505356f261SAditya Kali  * ext4_map_blocks, but assumes that the caller is from delayed write
15515356f261SAditya Kali  * time. This function looks up the requested blocks and sets the
15525356f261SAditya Kali  * buffer delay bit under the protection of i_data_sem.
15535356f261SAditya Kali  */
15545356f261SAditya Kali static int ext4_da_map_blocks(struct inode *inode, sector_t iblock,
15555356f261SAditya Kali 			      struct ext4_map_blocks *map,
15565356f261SAditya Kali 			      struct buffer_head *bh)
15575356f261SAditya Kali {
1558d100eef2SZheng Liu 	struct extent_status es;
15595356f261SAditya Kali 	int retval;
15605356f261SAditya Kali 	sector_t invalid_block = ~((sector_t) 0xffff);
1561921f266bSDmitry Monakhov #ifdef ES_AGGRESSIVE_TEST
1562921f266bSDmitry Monakhov 	struct ext4_map_blocks orig_map;
1563921f266bSDmitry Monakhov 
1564921f266bSDmitry Monakhov 	memcpy(&orig_map, map, sizeof(*map));
1565921f266bSDmitry Monakhov #endif
15665356f261SAditya Kali 
15675356f261SAditya Kali 	if (invalid_block < ext4_blocks_count(EXT4_SB(inode->i_sb)->s_es))
15685356f261SAditya Kali 		invalid_block = ~0;
15695356f261SAditya Kali 
15705356f261SAditya Kali 	map->m_flags = 0;
15715356f261SAditya Kali 	ext_debug("ext4_da_map_blocks(): inode %lu, max_blocks %u,"
15725356f261SAditya Kali 		  "logical block %lu\n", inode->i_ino, map->m_len,
15735356f261SAditya Kali 		  (unsigned long) map->m_lblk);
1574d100eef2SZheng Liu 
1575d100eef2SZheng Liu 	/* Lookup extent status tree firstly */
1576d100eef2SZheng Liu 	if (ext4_es_lookup_extent(inode, iblock, &es)) {
1577d100eef2SZheng Liu 		if (ext4_es_is_hole(&es)) {
1578d100eef2SZheng Liu 			retval = 0;
1579c8b459f4SLukas Czerner 			down_read(&EXT4_I(inode)->i_data_sem);
1580d100eef2SZheng Liu 			goto add_delayed;
1581d100eef2SZheng Liu 		}
1582d100eef2SZheng Liu 
1583d100eef2SZheng Liu 		/*
1584d100eef2SZheng Liu 		 * Delayed extent could be allocated by fallocate.
1585d100eef2SZheng Liu 		 * So we need to check it.
1586d100eef2SZheng Liu 		 */
1587d100eef2SZheng Liu 		if (ext4_es_is_delayed(&es) && !ext4_es_is_unwritten(&es)) {
1588d100eef2SZheng Liu 			map_bh(bh, inode->i_sb, invalid_block);
1589d100eef2SZheng Liu 			set_buffer_new(bh);
1590d100eef2SZheng Liu 			set_buffer_delay(bh);
1591d100eef2SZheng Liu 			return 0;
1592d100eef2SZheng Liu 		}
1593d100eef2SZheng Liu 
1594d100eef2SZheng Liu 		map->m_pblk = ext4_es_pblock(&es) + iblock - es.es_lblk;
1595d100eef2SZheng Liu 		retval = es.es_len - (iblock - es.es_lblk);
1596d100eef2SZheng Liu 		if (retval > map->m_len)
1597d100eef2SZheng Liu 			retval = map->m_len;
1598d100eef2SZheng Liu 		map->m_len = retval;
1599d100eef2SZheng Liu 		if (ext4_es_is_written(&es))
1600d100eef2SZheng Liu 			map->m_flags |= EXT4_MAP_MAPPED;
1601d100eef2SZheng Liu 		else if (ext4_es_is_unwritten(&es))
1602d100eef2SZheng Liu 			map->m_flags |= EXT4_MAP_UNWRITTEN;
1603d100eef2SZheng Liu 		else
1604d100eef2SZheng Liu 			BUG_ON(1);
1605d100eef2SZheng Liu 
1606921f266bSDmitry Monakhov #ifdef ES_AGGRESSIVE_TEST
1607921f266bSDmitry Monakhov 		ext4_map_blocks_es_recheck(NULL, inode, map, &orig_map, 0);
1608921f266bSDmitry Monakhov #endif
1609d100eef2SZheng Liu 		return retval;
1610d100eef2SZheng Liu 	}
1611d100eef2SZheng Liu 
16125356f261SAditya Kali 	/*
16135356f261SAditya Kali 	 * Try to see if we can get the block without requesting a new
16145356f261SAditya Kali 	 * file system block.
16155356f261SAditya Kali 	 */
1616c8b459f4SLukas Czerner 	down_read(&EXT4_I(inode)->i_data_sem);
1617cbd7584eSJan Kara 	if (ext4_has_inline_data(inode))
16189c3569b5STao Ma 		retval = 0;
1619cbd7584eSJan Kara 	else if (ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS))
16202f8e0a7cSZheng Liu 		retval = ext4_ext_map_blocks(NULL, inode, map, 0);
16215356f261SAditya Kali 	else
16222f8e0a7cSZheng Liu 		retval = ext4_ind_map_blocks(NULL, inode, map, 0);
16235356f261SAditya Kali 
1624d100eef2SZheng Liu add_delayed:
16255356f261SAditya Kali 	if (retval == 0) {
1626f7fec032SZheng Liu 		int ret;
16275356f261SAditya Kali 		/*
16285356f261SAditya Kali 		 * XXX: __block_prepare_write() unmaps passed block,
16295356f261SAditya Kali 		 * is it OK?
16305356f261SAditya Kali 		 */
1631386ad67cSLukas Czerner 		/*
1632386ad67cSLukas Czerner 		 * If the block was allocated from previously allocated cluster,
1633386ad67cSLukas Czerner 		 * then we don't need to reserve it again. However we still need
1634386ad67cSLukas Czerner 		 * to reserve metadata for every block we're going to write.
1635386ad67cSLukas Czerner 		 */
1636c27e43a1SEric Whitney 		if (EXT4_SB(inode->i_sb)->s_cluster_ratio == 1 ||
1637cbd7584eSJan Kara 		    !ext4_find_delalloc_cluster(inode, map->m_lblk)) {
1638c27e43a1SEric Whitney 			ret = ext4_da_reserve_space(inode);
1639f7fec032SZheng Liu 			if (ret) {
16405356f261SAditya Kali 				/* not enough space to reserve */
1641f7fec032SZheng Liu 				retval = ret;
16425356f261SAditya Kali 				goto out_unlock;
16435356f261SAditya Kali 			}
1644f7fec032SZheng Liu 		}
16455356f261SAditya Kali 
1646f7fec032SZheng Liu 		ret = ext4_es_insert_extent(inode, map->m_lblk, map->m_len,
1647fdc0212eSZheng Liu 					    ~0, EXTENT_STATUS_DELAYED);
1648f7fec032SZheng Liu 		if (ret) {
1649f7fec032SZheng Liu 			retval = ret;
165051865fdaSZheng Liu 			goto out_unlock;
1651f7fec032SZheng Liu 		}
165251865fdaSZheng Liu 
16535356f261SAditya Kali 		map_bh(bh, inode->i_sb, invalid_block);
16545356f261SAditya Kali 		set_buffer_new(bh);
16555356f261SAditya Kali 		set_buffer_delay(bh);
1656f7fec032SZheng Liu 	} else if (retval > 0) {
1657f7fec032SZheng Liu 		int ret;
16583be78c73STheodore Ts'o 		unsigned int status;
1659f7fec032SZheng Liu 
166044fb851dSZheng Liu 		if (unlikely(retval != map->m_len)) {
166144fb851dSZheng Liu 			ext4_warning(inode->i_sb,
166244fb851dSZheng Liu 				     "ES len assertion failed for inode "
166344fb851dSZheng Liu 				     "%lu: retval %d != map->m_len %d",
166444fb851dSZheng Liu 				     inode->i_ino, retval, map->m_len);
166544fb851dSZheng Liu 			WARN_ON(1);
1666921f266bSDmitry Monakhov 		}
1667921f266bSDmitry Monakhov 
1668f7fec032SZheng Liu 		status = map->m_flags & EXT4_MAP_UNWRITTEN ?
1669f7fec032SZheng Liu 				EXTENT_STATUS_UNWRITTEN : EXTENT_STATUS_WRITTEN;
1670f7fec032SZheng Liu 		ret = ext4_es_insert_extent(inode, map->m_lblk, map->m_len,
1671f7fec032SZheng Liu 					    map->m_pblk, status);
1672f7fec032SZheng Liu 		if (ret != 0)
1673f7fec032SZheng Liu 			retval = ret;
16745356f261SAditya Kali 	}
16755356f261SAditya Kali 
16765356f261SAditya Kali out_unlock:
16775356f261SAditya Kali 	up_read((&EXT4_I(inode)->i_data_sem));
16785356f261SAditya Kali 
16795356f261SAditya Kali 	return retval;
16805356f261SAditya Kali }
16815356f261SAditya Kali 
16825356f261SAditya Kali /*
1683d91bd2c1SSeunghun Lee  * This is a special get_block_t callback which is used by
1684b920c755STheodore Ts'o  * ext4_da_write_begin().  It will either return mapped block or
1685b920c755STheodore Ts'o  * reserve space for a single block.
168629fa89d0SAneesh Kumar K.V  *
168729fa89d0SAneesh Kumar K.V  * For delayed buffer_head we have BH_Mapped, BH_New, BH_Delay set.
168829fa89d0SAneesh Kumar K.V  * We also have b_blocknr = -1 and b_bdev initialized properly
168929fa89d0SAneesh Kumar K.V  *
169029fa89d0SAneesh Kumar K.V  * For unwritten buffer_head we have BH_Mapped, BH_New, BH_Unwritten set.
169129fa89d0SAneesh Kumar K.V  * We also have b_blocknr = physicalblock mapping unwritten extent and b_bdev
169229fa89d0SAneesh Kumar K.V  * initialized properly.
169364769240SAlex Tomas  */
16949c3569b5STao Ma int ext4_da_get_block_prep(struct inode *inode, sector_t iblock,
16952ed88685STheodore Ts'o 			   struct buffer_head *bh, int create)
169664769240SAlex Tomas {
16972ed88685STheodore Ts'o 	struct ext4_map_blocks map;
169864769240SAlex Tomas 	int ret = 0;
169964769240SAlex Tomas 
170064769240SAlex Tomas 	BUG_ON(create == 0);
17012ed88685STheodore Ts'o 	BUG_ON(bh->b_size != inode->i_sb->s_blocksize);
17022ed88685STheodore Ts'o 
17032ed88685STheodore Ts'o 	map.m_lblk = iblock;
17042ed88685STheodore Ts'o 	map.m_len = 1;
170564769240SAlex Tomas 
170664769240SAlex Tomas 	/*
170764769240SAlex Tomas 	 * first, we need to know whether the block is allocated already
170864769240SAlex Tomas 	 * preallocated blocks are unmapped but should treated
170964769240SAlex Tomas 	 * the same as allocated blocks.
171064769240SAlex Tomas 	 */
17115356f261SAditya Kali 	ret = ext4_da_map_blocks(inode, iblock, &map, bh);
17125356f261SAditya Kali 	if (ret <= 0)
17132ed88685STheodore Ts'o 		return ret;
171464769240SAlex Tomas 
17152ed88685STheodore Ts'o 	map_bh(bh, inode->i_sb, map.m_pblk);
1716ed8ad838SJan Kara 	ext4_update_bh_state(bh, map.m_flags);
17172ed88685STheodore Ts'o 
17182ed88685STheodore Ts'o 	if (buffer_unwritten(bh)) {
17192ed88685STheodore Ts'o 		/* A delayed write to unwritten bh should be marked
17202ed88685STheodore Ts'o 		 * new and mapped.  Mapped ensures that we don't do
17212ed88685STheodore Ts'o 		 * get_block multiple times when we write to the same
17222ed88685STheodore Ts'o 		 * offset and new ensures that we do proper zero out
17232ed88685STheodore Ts'o 		 * for partial write.
17242ed88685STheodore Ts'o 		 */
17252ed88685STheodore Ts'o 		set_buffer_new(bh);
1726c8205636STheodore Ts'o 		set_buffer_mapped(bh);
17272ed88685STheodore Ts'o 	}
17282ed88685STheodore Ts'o 	return 0;
172964769240SAlex Tomas }
173061628a3fSMingming Cao 
173162e086beSAneesh Kumar K.V static int bget_one(handle_t *handle, struct buffer_head *bh)
173262e086beSAneesh Kumar K.V {
173362e086beSAneesh Kumar K.V 	get_bh(bh);
173462e086beSAneesh Kumar K.V 	return 0;
173562e086beSAneesh Kumar K.V }
173662e086beSAneesh Kumar K.V 
173762e086beSAneesh Kumar K.V static int bput_one(handle_t *handle, struct buffer_head *bh)
173862e086beSAneesh Kumar K.V {
173962e086beSAneesh Kumar K.V 	put_bh(bh);
174062e086beSAneesh Kumar K.V 	return 0;
174162e086beSAneesh Kumar K.V }
174262e086beSAneesh Kumar K.V 
174362e086beSAneesh Kumar K.V static int __ext4_journalled_writepage(struct page *page,
174462e086beSAneesh Kumar K.V 				       unsigned int len)
174562e086beSAneesh Kumar K.V {
174662e086beSAneesh Kumar K.V 	struct address_space *mapping = page->mapping;
174762e086beSAneesh Kumar K.V 	struct inode *inode = mapping->host;
17483fdcfb66STao Ma 	struct buffer_head *page_bufs = NULL;
174962e086beSAneesh Kumar K.V 	handle_t *handle = NULL;
17503fdcfb66STao Ma 	int ret = 0, err = 0;
17513fdcfb66STao Ma 	int inline_data = ext4_has_inline_data(inode);
17523fdcfb66STao Ma 	struct buffer_head *inode_bh = NULL;
175362e086beSAneesh Kumar K.V 
1754cb20d518STheodore Ts'o 	ClearPageChecked(page);
17553fdcfb66STao Ma 
17563fdcfb66STao Ma 	if (inline_data) {
17573fdcfb66STao Ma 		BUG_ON(page->index != 0);
17583fdcfb66STao Ma 		BUG_ON(len > ext4_get_max_inline_size(inode));
17593fdcfb66STao Ma 		inode_bh = ext4_journalled_write_inline_data(inode, len, page);
17603fdcfb66STao Ma 		if (inode_bh == NULL)
17613fdcfb66STao Ma 			goto out;
17623fdcfb66STao Ma 	} else {
176362e086beSAneesh Kumar K.V 		page_bufs = page_buffers(page);
17643fdcfb66STao Ma 		if (!page_bufs) {
17653fdcfb66STao Ma 			BUG();
17663fdcfb66STao Ma 			goto out;
17673fdcfb66STao Ma 		}
17683fdcfb66STao Ma 		ext4_walk_page_buffers(handle, page_bufs, 0, len,
17693fdcfb66STao Ma 				       NULL, bget_one);
17703fdcfb66STao Ma 	}
1771bdf96838STheodore Ts'o 	/*
1772bdf96838STheodore Ts'o 	 * We need to release the page lock before we start the
1773bdf96838STheodore Ts'o 	 * journal, so grab a reference so the page won't disappear
1774bdf96838STheodore Ts'o 	 * out from under us.
1775bdf96838STheodore Ts'o 	 */
1776bdf96838STheodore Ts'o 	get_page(page);
177762e086beSAneesh Kumar K.V 	unlock_page(page);
177862e086beSAneesh Kumar K.V 
17799924a92aSTheodore Ts'o 	handle = ext4_journal_start(inode, EXT4_HT_WRITE_PAGE,
17809924a92aSTheodore Ts'o 				    ext4_writepage_trans_blocks(inode));
178162e086beSAneesh Kumar K.V 	if (IS_ERR(handle)) {
178262e086beSAneesh Kumar K.V 		ret = PTR_ERR(handle);
1783bdf96838STheodore Ts'o 		put_page(page);
1784bdf96838STheodore Ts'o 		goto out_no_pagelock;
1785bdf96838STheodore Ts'o 	}
1786bdf96838STheodore Ts'o 	BUG_ON(!ext4_handle_valid(handle));
1787bdf96838STheodore Ts'o 
1788bdf96838STheodore Ts'o 	lock_page(page);
1789bdf96838STheodore Ts'o 	put_page(page);
1790bdf96838STheodore Ts'o 	if (page->mapping != mapping) {
1791bdf96838STheodore Ts'o 		/* The page got truncated from under us */
1792bdf96838STheodore Ts'o 		ext4_journal_stop(handle);
1793bdf96838STheodore Ts'o 		ret = 0;
179462e086beSAneesh Kumar K.V 		goto out;
179562e086beSAneesh Kumar K.V 	}
179662e086beSAneesh Kumar K.V 
17973fdcfb66STao Ma 	if (inline_data) {
17985d601255Sliang xie 		BUFFER_TRACE(inode_bh, "get write access");
17993fdcfb66STao Ma 		ret = ext4_journal_get_write_access(handle, inode_bh);
18003fdcfb66STao Ma 
18013fdcfb66STao Ma 		err = ext4_handle_dirty_metadata(handle, inode, inode_bh);
18023fdcfb66STao Ma 
18033fdcfb66STao Ma 	} else {
1804f19d5870STao Ma 		ret = ext4_walk_page_buffers(handle, page_bufs, 0, len, NULL,
180562e086beSAneesh Kumar K.V 					     do_journal_get_write_access);
180662e086beSAneesh Kumar K.V 
1807f19d5870STao Ma 		err = ext4_walk_page_buffers(handle, page_bufs, 0, len, NULL,
180862e086beSAneesh Kumar K.V 					     write_end_fn);
18093fdcfb66STao Ma 	}
181062e086beSAneesh Kumar K.V 	if (ret == 0)
181162e086beSAneesh Kumar K.V 		ret = err;
18122d859db3SJan Kara 	EXT4_I(inode)->i_datasync_tid = handle->h_transaction->t_tid;
181362e086beSAneesh Kumar K.V 	err = ext4_journal_stop(handle);
181462e086beSAneesh Kumar K.V 	if (!ret)
181562e086beSAneesh Kumar K.V 		ret = err;
181662e086beSAneesh Kumar K.V 
18173fdcfb66STao Ma 	if (!ext4_has_inline_data(inode))
18188c9367fdSTheodore Ts'o 		ext4_walk_page_buffers(NULL, page_bufs, 0, len,
18193fdcfb66STao Ma 				       NULL, bput_one);
182019f5fb7aSTheodore Ts'o 	ext4_set_inode_state(inode, EXT4_STATE_JDATA);
182162e086beSAneesh Kumar K.V out:
1822bdf96838STheodore Ts'o 	unlock_page(page);
1823bdf96838STheodore Ts'o out_no_pagelock:
18243fdcfb66STao Ma 	brelse(inode_bh);
182562e086beSAneesh Kumar K.V 	return ret;
182662e086beSAneesh Kumar K.V }
182762e086beSAneesh Kumar K.V 
182861628a3fSMingming Cao /*
182943ce1d23SAneesh Kumar K.V  * Note that we don't need to start a transaction unless we're journaling data
183043ce1d23SAneesh Kumar K.V  * because we should have holes filled from ext4_page_mkwrite(). We even don't
183143ce1d23SAneesh Kumar K.V  * need to file the inode to the transaction's list in ordered mode because if
183243ce1d23SAneesh Kumar K.V  * we are writing back data added by write(), the inode is already there and if
183343ce1d23SAneesh Kumar K.V  * we are writing back data modified via mmap(), no one guarantees in which
183443ce1d23SAneesh Kumar K.V  * transaction the data will hit the disk. In case we are journaling data, we
183543ce1d23SAneesh Kumar K.V  * cannot start transaction directly because transaction start ranks above page
183643ce1d23SAneesh Kumar K.V  * lock so we have to do some magic.
183743ce1d23SAneesh Kumar K.V  *
1838b920c755STheodore Ts'o  * This function can get called via...
183920970ba6STheodore Ts'o  *   - ext4_writepages after taking page lock (have journal handle)
1840b920c755STheodore Ts'o  *   - journal_submit_inode_data_buffers (no journal handle)
1841f6463b0dSArtem Bityutskiy  *   - shrink_page_list via the kswapd/direct reclaim (no journal handle)
1842b920c755STheodore Ts'o  *   - grab_page_cache when doing write_begin (have journal handle)
184343ce1d23SAneesh Kumar K.V  *
184443ce1d23SAneesh Kumar K.V  * We don't do any block allocation in this function. If we have page with
184543ce1d23SAneesh Kumar K.V  * multiple blocks we need to write those buffer_heads that are mapped. This
184643ce1d23SAneesh Kumar K.V  * is important for mmaped based write. So if we do with blocksize 1K
184743ce1d23SAneesh Kumar K.V  * truncate(f, 1024);
184843ce1d23SAneesh Kumar K.V  * a = mmap(f, 0, 4096);
184943ce1d23SAneesh Kumar K.V  * a[0] = 'a';
185043ce1d23SAneesh Kumar K.V  * truncate(f, 4096);
185143ce1d23SAneesh Kumar K.V  * we have in the page first buffer_head mapped via page_mkwrite call back
185290802ed9SPaul Bolle  * but other buffer_heads would be unmapped but dirty (dirty done via the
185343ce1d23SAneesh Kumar K.V  * do_wp_page). So writepage should write the first block. If we modify
185443ce1d23SAneesh Kumar K.V  * the mmap area beyond 1024 we will again get a page_fault and the
185543ce1d23SAneesh Kumar K.V  * page_mkwrite callback will do the block allocation and mark the
185643ce1d23SAneesh Kumar K.V  * buffer_heads mapped.
185743ce1d23SAneesh Kumar K.V  *
185843ce1d23SAneesh Kumar K.V  * We redirty the page if we have any buffer_heads that is either delay or
185943ce1d23SAneesh Kumar K.V  * unwritten in the page.
186043ce1d23SAneesh Kumar K.V  *
186143ce1d23SAneesh Kumar K.V  * We can get recursively called as show below.
186243ce1d23SAneesh Kumar K.V  *
186343ce1d23SAneesh Kumar K.V  *	ext4_writepage() -> kmalloc() -> __alloc_pages() -> page_launder() ->
186443ce1d23SAneesh Kumar K.V  *		ext4_writepage()
186543ce1d23SAneesh Kumar K.V  *
186643ce1d23SAneesh Kumar K.V  * But since we don't do any block allocation we should not deadlock.
186743ce1d23SAneesh Kumar K.V  * Page also have the dirty flag cleared so we don't get recurive page_lock.
186861628a3fSMingming Cao  */
186943ce1d23SAneesh Kumar K.V static int ext4_writepage(struct page *page,
187064769240SAlex Tomas 			  struct writeback_control *wbc)
187164769240SAlex Tomas {
1872f8bec370SJan Kara 	int ret = 0;
187361628a3fSMingming Cao 	loff_t size;
1874498e5f24STheodore Ts'o 	unsigned int len;
1875744692dcSJiaying Zhang 	struct buffer_head *page_bufs = NULL;
187661628a3fSMingming Cao 	struct inode *inode = page->mapping->host;
187736ade451SJan Kara 	struct ext4_io_submit io_submit;
18781c8349a1SNamjae Jeon 	bool keep_towrite = false;
187964769240SAlex Tomas 
1880a9c667f8SLukas Czerner 	trace_ext4_writepage(page);
188161628a3fSMingming Cao 	size = i_size_read(inode);
188261628a3fSMingming Cao 	if (page->index == size >> PAGE_CACHE_SHIFT)
188361628a3fSMingming Cao 		len = size & ~PAGE_CACHE_MASK;
188461628a3fSMingming Cao 	else
188561628a3fSMingming Cao 		len = PAGE_CACHE_SIZE;
188661628a3fSMingming Cao 
1887f0e6c985SAneesh Kumar K.V 	page_bufs = page_buffers(page);
188864769240SAlex Tomas 	/*
1889fe386132SJan Kara 	 * We cannot do block allocation or other extent handling in this
1890fe386132SJan Kara 	 * function. If there are buffers needing that, we have to redirty
1891fe386132SJan Kara 	 * the page. But we may reach here when we do a journal commit via
1892fe386132SJan Kara 	 * journal_submit_inode_data_buffers() and in that case we must write
1893fe386132SJan Kara 	 * allocated buffers to achieve data=ordered mode guarantees.
1894cccd147aSTheodore Ts'o 	 *
1895cccd147aSTheodore Ts'o 	 * Also, if there is only one buffer per page (the fs block
1896cccd147aSTheodore Ts'o 	 * size == the page size), if one buffer needs block
1897cccd147aSTheodore Ts'o 	 * allocation or needs to modify the extent tree to clear the
1898cccd147aSTheodore Ts'o 	 * unwritten flag, we know that the page can't be written at
1899cccd147aSTheodore Ts'o 	 * all, so we might as well refuse the write immediately.
1900cccd147aSTheodore Ts'o 	 * Unfortunately if the block size != page size, we can't as
1901cccd147aSTheodore Ts'o 	 * easily detect this case using ext4_walk_page_buffers(), but
1902cccd147aSTheodore Ts'o 	 * for the extremely common case, this is an optimization that
1903cccd147aSTheodore Ts'o 	 * skips a useless round trip through ext4_bio_write_page().
190464769240SAlex Tomas 	 */
1905f19d5870STao Ma 	if (ext4_walk_page_buffers(NULL, page_bufs, 0, len, NULL,
1906c364b22cSAneesh Kumar K.V 				   ext4_bh_delay_or_unwritten)) {
190761628a3fSMingming Cao 		redirty_page_for_writepage(wbc, page);
1908cccd147aSTheodore Ts'o 		if ((current->flags & PF_MEMALLOC) ||
1909cccd147aSTheodore Ts'o 		    (inode->i_sb->s_blocksize == PAGE_CACHE_SIZE)) {
1910fe386132SJan Kara 			/*
1911fe386132SJan Kara 			 * For memory cleaning there's no point in writing only
1912fe386132SJan Kara 			 * some buffers. So just bail out. Warn if we came here
1913fe386132SJan Kara 			 * from direct reclaim.
1914fe386132SJan Kara 			 */
1915fe386132SJan Kara 			WARN_ON_ONCE((current->flags & (PF_MEMALLOC|PF_KSWAPD))
1916fe386132SJan Kara 							== PF_MEMALLOC);
191761628a3fSMingming Cao 			unlock_page(page);
191861628a3fSMingming Cao 			return 0;
191961628a3fSMingming Cao 		}
19201c8349a1SNamjae Jeon 		keep_towrite = true;
1921f0e6c985SAneesh Kumar K.V 	}
192264769240SAlex Tomas 
1923cb20d518STheodore Ts'o 	if (PageChecked(page) && ext4_should_journal_data(inode))
192443ce1d23SAneesh Kumar K.V 		/*
192543ce1d23SAneesh Kumar K.V 		 * It's mmapped pagecache.  Add buffers and journal it.  There
192643ce1d23SAneesh Kumar K.V 		 * doesn't seem much point in redirtying the page here.
192743ce1d23SAneesh Kumar K.V 		 */
19283f0ca309SWu Fengguang 		return __ext4_journalled_writepage(page, len);
192943ce1d23SAneesh Kumar K.V 
193097a851edSJan Kara 	ext4_io_submit_init(&io_submit, wbc);
193197a851edSJan Kara 	io_submit.io_end = ext4_init_io_end(inode, GFP_NOFS);
193297a851edSJan Kara 	if (!io_submit.io_end) {
193397a851edSJan Kara 		redirty_page_for_writepage(wbc, page);
193497a851edSJan Kara 		unlock_page(page);
193597a851edSJan Kara 		return -ENOMEM;
193697a851edSJan Kara 	}
19371c8349a1SNamjae Jeon 	ret = ext4_bio_write_page(&io_submit, page, len, wbc, keep_towrite);
193836ade451SJan Kara 	ext4_io_submit(&io_submit);
193997a851edSJan Kara 	/* Drop io_end reference we got from init */
194097a851edSJan Kara 	ext4_put_io_end_defer(io_submit.io_end);
194164769240SAlex Tomas 	return ret;
194264769240SAlex Tomas }
194364769240SAlex Tomas 
19445f1132b2SJan Kara static int mpage_submit_page(struct mpage_da_data *mpd, struct page *page)
19455f1132b2SJan Kara {
19465f1132b2SJan Kara 	int len;
19475f1132b2SJan Kara 	loff_t size = i_size_read(mpd->inode);
19485f1132b2SJan Kara 	int err;
19495f1132b2SJan Kara 
19505f1132b2SJan Kara 	BUG_ON(page->index != mpd->first_page);
19515f1132b2SJan Kara 	if (page->index == size >> PAGE_CACHE_SHIFT)
19525f1132b2SJan Kara 		len = size & ~PAGE_CACHE_MASK;
19535f1132b2SJan Kara 	else
19545f1132b2SJan Kara 		len = PAGE_CACHE_SIZE;
19555f1132b2SJan Kara 	clear_page_dirty_for_io(page);
19561c8349a1SNamjae Jeon 	err = ext4_bio_write_page(&mpd->io_submit, page, len, mpd->wbc, false);
19575f1132b2SJan Kara 	if (!err)
19585f1132b2SJan Kara 		mpd->wbc->nr_to_write--;
19595f1132b2SJan Kara 	mpd->first_page++;
19605f1132b2SJan Kara 
19615f1132b2SJan Kara 	return err;
19625f1132b2SJan Kara }
19635f1132b2SJan Kara 
19644e7ea81dSJan Kara #define BH_FLAGS ((1 << BH_Unwritten) | (1 << BH_Delay))
19654e7ea81dSJan Kara 
196661628a3fSMingming Cao /*
1967fffb2739SJan Kara  * mballoc gives us at most this number of blocks...
1968fffb2739SJan Kara  * XXX: That seems to be only a limitation of ext4_mb_normalize_request().
1969fffb2739SJan Kara  * The rest of mballoc seems to handle chunks up to full group size.
197061628a3fSMingming Cao  */
1971fffb2739SJan Kara #define MAX_WRITEPAGES_EXTENT_LEN 2048
1972525f4ed8SMingming Cao 
1973525f4ed8SMingming Cao /*
19744e7ea81dSJan Kara  * mpage_add_bh_to_extent - try to add bh to extent of blocks to map
19754e7ea81dSJan Kara  *
19764e7ea81dSJan Kara  * @mpd - extent of blocks
19774e7ea81dSJan Kara  * @lblk - logical number of the block in the file
197809930042SJan Kara  * @bh - buffer head we want to add to the extent
19794e7ea81dSJan Kara  *
198009930042SJan Kara  * The function is used to collect contig. blocks in the same state. If the
198109930042SJan Kara  * buffer doesn't require mapping for writeback and we haven't started the
198209930042SJan Kara  * extent of buffers to map yet, the function returns 'true' immediately - the
198309930042SJan Kara  * caller can write the buffer right away. Otherwise the function returns true
198409930042SJan Kara  * if the block has been added to the extent, false if the block couldn't be
198509930042SJan Kara  * added.
19864e7ea81dSJan Kara  */
198709930042SJan Kara static bool mpage_add_bh_to_extent(struct mpage_da_data *mpd, ext4_lblk_t lblk,
198809930042SJan Kara 				   struct buffer_head *bh)
19894e7ea81dSJan Kara {
19904e7ea81dSJan Kara 	struct ext4_map_blocks *map = &mpd->map;
19914e7ea81dSJan Kara 
199209930042SJan Kara 	/* Buffer that doesn't need mapping for writeback? */
199309930042SJan Kara 	if (!buffer_dirty(bh) || !buffer_mapped(bh) ||
199409930042SJan Kara 	    (!buffer_delay(bh) && !buffer_unwritten(bh))) {
199509930042SJan Kara 		/* So far no extent to map => we write the buffer right away */
199609930042SJan Kara 		if (map->m_len == 0)
199709930042SJan Kara 			return true;
199809930042SJan Kara 		return false;
199909930042SJan Kara 	}
20004e7ea81dSJan Kara 
20014e7ea81dSJan Kara 	/* First block in the extent? */
20024e7ea81dSJan Kara 	if (map->m_len == 0) {
20034e7ea81dSJan Kara 		map->m_lblk = lblk;
20044e7ea81dSJan Kara 		map->m_len = 1;
200509930042SJan Kara 		map->m_flags = bh->b_state & BH_FLAGS;
200609930042SJan Kara 		return true;
20074e7ea81dSJan Kara 	}
20084e7ea81dSJan Kara 
200909930042SJan Kara 	/* Don't go larger than mballoc is willing to allocate */
201009930042SJan Kara 	if (map->m_len >= MAX_WRITEPAGES_EXTENT_LEN)
201109930042SJan Kara 		return false;
201209930042SJan Kara 
20134e7ea81dSJan Kara 	/* Can we merge the block to our big extent? */
20144e7ea81dSJan Kara 	if (lblk == map->m_lblk + map->m_len &&
201509930042SJan Kara 	    (bh->b_state & BH_FLAGS) == map->m_flags) {
20164e7ea81dSJan Kara 		map->m_len++;
201709930042SJan Kara 		return true;
20184e7ea81dSJan Kara 	}
201909930042SJan Kara 	return false;
20204e7ea81dSJan Kara }
20214e7ea81dSJan Kara 
20225f1132b2SJan Kara /*
20235f1132b2SJan Kara  * mpage_process_page_bufs - submit page buffers for IO or add them to extent
20245f1132b2SJan Kara  *
20255f1132b2SJan Kara  * @mpd - extent of blocks for mapping
20265f1132b2SJan Kara  * @head - the first buffer in the page
20275f1132b2SJan Kara  * @bh - buffer we should start processing from
20285f1132b2SJan Kara  * @lblk - logical number of the block in the file corresponding to @bh
20295f1132b2SJan Kara  *
20305f1132b2SJan Kara  * Walk through page buffers from @bh upto @head (exclusive) and either submit
20315f1132b2SJan Kara  * the page for IO if all buffers in this page were mapped and there's no
20325f1132b2SJan Kara  * accumulated extent of buffers to map or add buffers in the page to the
20335f1132b2SJan Kara  * extent of buffers to map. The function returns 1 if the caller can continue
20345f1132b2SJan Kara  * by processing the next page, 0 if it should stop adding buffers to the
20355f1132b2SJan Kara  * extent to map because we cannot extend it anymore. It can also return value
20365f1132b2SJan Kara  * < 0 in case of error during IO submission.
20375f1132b2SJan Kara  */
20385f1132b2SJan Kara static int mpage_process_page_bufs(struct mpage_da_data *mpd,
20394e7ea81dSJan Kara 				   struct buffer_head *head,
20404e7ea81dSJan Kara 				   struct buffer_head *bh,
20414e7ea81dSJan Kara 				   ext4_lblk_t lblk)
20424e7ea81dSJan Kara {
20434e7ea81dSJan Kara 	struct inode *inode = mpd->inode;
20445f1132b2SJan Kara 	int err;
20454e7ea81dSJan Kara 	ext4_lblk_t blocks = (i_size_read(inode) + (1 << inode->i_blkbits) - 1)
20464e7ea81dSJan Kara 							>> inode->i_blkbits;
20474e7ea81dSJan Kara 
20484e7ea81dSJan Kara 	do {
20494e7ea81dSJan Kara 		BUG_ON(buffer_locked(bh));
20504e7ea81dSJan Kara 
205109930042SJan Kara 		if (lblk >= blocks || !mpage_add_bh_to_extent(mpd, lblk, bh)) {
20524e7ea81dSJan Kara 			/* Found extent to map? */
20534e7ea81dSJan Kara 			if (mpd->map.m_len)
20545f1132b2SJan Kara 				return 0;
205509930042SJan Kara 			/* Everything mapped so far and we hit EOF */
20565f1132b2SJan Kara 			break;
20574e7ea81dSJan Kara 		}
20584e7ea81dSJan Kara 	} while (lblk++, (bh = bh->b_this_page) != head);
20595f1132b2SJan Kara 	/* So far everything mapped? Submit the page for IO. */
20605f1132b2SJan Kara 	if (mpd->map.m_len == 0) {
20615f1132b2SJan Kara 		err = mpage_submit_page(mpd, head->b_page);
20625f1132b2SJan Kara 		if (err < 0)
20634e7ea81dSJan Kara 			return err;
20644e7ea81dSJan Kara 	}
20655f1132b2SJan Kara 	return lblk < blocks;
20665f1132b2SJan Kara }
20674e7ea81dSJan Kara 
20684e7ea81dSJan Kara /*
20694e7ea81dSJan Kara  * mpage_map_buffers - update buffers corresponding to changed extent and
20704e7ea81dSJan Kara  *		       submit fully mapped pages for IO
20714e7ea81dSJan Kara  *
20724e7ea81dSJan Kara  * @mpd - description of extent to map, on return next extent to map
20734e7ea81dSJan Kara  *
20744e7ea81dSJan Kara  * Scan buffers corresponding to changed extent (we expect corresponding pages
20754e7ea81dSJan Kara  * to be already locked) and update buffer state according to new extent state.
20764e7ea81dSJan Kara  * We map delalloc buffers to their physical location, clear unwritten bits,
2077556615dcSLukas Czerner  * and mark buffers as uninit when we perform writes to unwritten extents
20784e7ea81dSJan Kara  * and do extent conversion after IO is finished. If the last page is not fully
20794e7ea81dSJan Kara  * mapped, we update @map to the next extent in the last page that needs
20804e7ea81dSJan Kara  * mapping. Otherwise we submit the page for IO.
20814e7ea81dSJan Kara  */
20824e7ea81dSJan Kara static int mpage_map_and_submit_buffers(struct mpage_da_data *mpd)
20834e7ea81dSJan Kara {
20844e7ea81dSJan Kara 	struct pagevec pvec;
20854e7ea81dSJan Kara 	int nr_pages, i;
20864e7ea81dSJan Kara 	struct inode *inode = mpd->inode;
20874e7ea81dSJan Kara 	struct buffer_head *head, *bh;
20884e7ea81dSJan Kara 	int bpp_bits = PAGE_CACHE_SHIFT - inode->i_blkbits;
20894e7ea81dSJan Kara 	pgoff_t start, end;
20904e7ea81dSJan Kara 	ext4_lblk_t lblk;
20914e7ea81dSJan Kara 	sector_t pblock;
20924e7ea81dSJan Kara 	int err;
20934e7ea81dSJan Kara 
20944e7ea81dSJan Kara 	start = mpd->map.m_lblk >> bpp_bits;
20954e7ea81dSJan Kara 	end = (mpd->map.m_lblk + mpd->map.m_len - 1) >> bpp_bits;
20964e7ea81dSJan Kara 	lblk = start << bpp_bits;
20974e7ea81dSJan Kara 	pblock = mpd->map.m_pblk;
20984e7ea81dSJan Kara 
20994e7ea81dSJan Kara 	pagevec_init(&pvec, 0);
21004e7ea81dSJan Kara 	while (start <= end) {
21014e7ea81dSJan Kara 		nr_pages = pagevec_lookup(&pvec, inode->i_mapping, start,
21024e7ea81dSJan Kara 					  PAGEVEC_SIZE);
21034e7ea81dSJan Kara 		if (nr_pages == 0)
21044e7ea81dSJan Kara 			break;
21054e7ea81dSJan Kara 		for (i = 0; i < nr_pages; i++) {
21064e7ea81dSJan Kara 			struct page *page = pvec.pages[i];
21074e7ea81dSJan Kara 
21084e7ea81dSJan Kara 			if (page->index > end)
21094e7ea81dSJan Kara 				break;
21104e7ea81dSJan Kara 			/* Up to 'end' pages must be contiguous */
21114e7ea81dSJan Kara 			BUG_ON(page->index != start);
21124e7ea81dSJan Kara 			bh = head = page_buffers(page);
21134e7ea81dSJan Kara 			do {
21144e7ea81dSJan Kara 				if (lblk < mpd->map.m_lblk)
21154e7ea81dSJan Kara 					continue;
21164e7ea81dSJan Kara 				if (lblk >= mpd->map.m_lblk + mpd->map.m_len) {
21174e7ea81dSJan Kara 					/*
21184e7ea81dSJan Kara 					 * Buffer after end of mapped extent.
21194e7ea81dSJan Kara 					 * Find next buffer in the page to map.
21204e7ea81dSJan Kara 					 */
21214e7ea81dSJan Kara 					mpd->map.m_len = 0;
21224e7ea81dSJan Kara 					mpd->map.m_flags = 0;
21235f1132b2SJan Kara 					/*
21245f1132b2SJan Kara 					 * FIXME: If dioread_nolock supports
21255f1132b2SJan Kara 					 * blocksize < pagesize, we need to make
21265f1132b2SJan Kara 					 * sure we add size mapped so far to
21275f1132b2SJan Kara 					 * io_end->size as the following call
21285f1132b2SJan Kara 					 * can submit the page for IO.
21295f1132b2SJan Kara 					 */
21305f1132b2SJan Kara 					err = mpage_process_page_bufs(mpd, head,
21315f1132b2SJan Kara 								      bh, lblk);
21324e7ea81dSJan Kara 					pagevec_release(&pvec);
21335f1132b2SJan Kara 					if (err > 0)
21345f1132b2SJan Kara 						err = 0;
21355f1132b2SJan Kara 					return err;
21364e7ea81dSJan Kara 				}
21374e7ea81dSJan Kara 				if (buffer_delay(bh)) {
21384e7ea81dSJan Kara 					clear_buffer_delay(bh);
21394e7ea81dSJan Kara 					bh->b_blocknr = pblock++;
21404e7ea81dSJan Kara 				}
21414e7ea81dSJan Kara 				clear_buffer_unwritten(bh);
21425f1132b2SJan Kara 			} while (lblk++, (bh = bh->b_this_page) != head);
21434e7ea81dSJan Kara 
21444e7ea81dSJan Kara 			/*
21454e7ea81dSJan Kara 			 * FIXME: This is going to break if dioread_nolock
21464e7ea81dSJan Kara 			 * supports blocksize < pagesize as we will try to
21474e7ea81dSJan Kara 			 * convert potentially unmapped parts of inode.
21484e7ea81dSJan Kara 			 */
21494e7ea81dSJan Kara 			mpd->io_submit.io_end->size += PAGE_CACHE_SIZE;
21504e7ea81dSJan Kara 			/* Page fully mapped - let IO run! */
21514e7ea81dSJan Kara 			err = mpage_submit_page(mpd, page);
21524e7ea81dSJan Kara 			if (err < 0) {
21534e7ea81dSJan Kara 				pagevec_release(&pvec);
21544e7ea81dSJan Kara 				return err;
21554e7ea81dSJan Kara 			}
21564e7ea81dSJan Kara 			start++;
21574e7ea81dSJan Kara 		}
21584e7ea81dSJan Kara 		pagevec_release(&pvec);
21594e7ea81dSJan Kara 	}
21604e7ea81dSJan Kara 	/* Extent fully mapped and matches with page boundary. We are done. */
21614e7ea81dSJan Kara 	mpd->map.m_len = 0;
21624e7ea81dSJan Kara 	mpd->map.m_flags = 0;
21634e7ea81dSJan Kara 	return 0;
21644e7ea81dSJan Kara }
21654e7ea81dSJan Kara 
21664e7ea81dSJan Kara static int mpage_map_one_extent(handle_t *handle, struct mpage_da_data *mpd)
21674e7ea81dSJan Kara {
21684e7ea81dSJan Kara 	struct inode *inode = mpd->inode;
21694e7ea81dSJan Kara 	struct ext4_map_blocks *map = &mpd->map;
21704e7ea81dSJan Kara 	int get_blocks_flags;
2171090f32eeSLukas Czerner 	int err, dioread_nolock;
21724e7ea81dSJan Kara 
21734e7ea81dSJan Kara 	trace_ext4_da_write_pages_extent(inode, map);
21744e7ea81dSJan Kara 	/*
21754e7ea81dSJan Kara 	 * Call ext4_map_blocks() to allocate any delayed allocation blocks, or
2176556615dcSLukas Czerner 	 * to convert an unwritten extent to be initialized (in the case
21774e7ea81dSJan Kara 	 * where we have written into one or more preallocated blocks).  It is
21784e7ea81dSJan Kara 	 * possible that we're going to need more metadata blocks than
21794e7ea81dSJan Kara 	 * previously reserved. However we must not fail because we're in
21804e7ea81dSJan Kara 	 * writeback and there is nothing we can do about it so it might result
21814e7ea81dSJan Kara 	 * in data loss.  So use reserved blocks to allocate metadata if
21824e7ea81dSJan Kara 	 * possible.
21834e7ea81dSJan Kara 	 *
2184754cfed6STheodore Ts'o 	 * We pass in the magic EXT4_GET_BLOCKS_DELALLOC_RESERVE if
2185754cfed6STheodore Ts'o 	 * the blocks in question are delalloc blocks.  This indicates
2186754cfed6STheodore Ts'o 	 * that the blocks and quotas has already been checked when
2187754cfed6STheodore Ts'o 	 * the data was copied into the page cache.
21884e7ea81dSJan Kara 	 */
21894e7ea81dSJan Kara 	get_blocks_flags = EXT4_GET_BLOCKS_CREATE |
21904e7ea81dSJan Kara 			   EXT4_GET_BLOCKS_METADATA_NOFAIL;
2191090f32eeSLukas Czerner 	dioread_nolock = ext4_should_dioread_nolock(inode);
2192090f32eeSLukas Czerner 	if (dioread_nolock)
21934e7ea81dSJan Kara 		get_blocks_flags |= EXT4_GET_BLOCKS_IO_CREATE_EXT;
21944e7ea81dSJan Kara 	if (map->m_flags & (1 << BH_Delay))
21954e7ea81dSJan Kara 		get_blocks_flags |= EXT4_GET_BLOCKS_DELALLOC_RESERVE;
21964e7ea81dSJan Kara 
21974e7ea81dSJan Kara 	err = ext4_map_blocks(handle, inode, map, get_blocks_flags);
21984e7ea81dSJan Kara 	if (err < 0)
21994e7ea81dSJan Kara 		return err;
2200090f32eeSLukas Czerner 	if (dioread_nolock && (map->m_flags & EXT4_MAP_UNWRITTEN)) {
22016b523df4SJan Kara 		if (!mpd->io_submit.io_end->handle &&
22026b523df4SJan Kara 		    ext4_handle_valid(handle)) {
22036b523df4SJan Kara 			mpd->io_submit.io_end->handle = handle->h_rsv_handle;
22046b523df4SJan Kara 			handle->h_rsv_handle = NULL;
22056b523df4SJan Kara 		}
22063613d228SJan Kara 		ext4_set_io_unwritten_flag(inode, mpd->io_submit.io_end);
22076b523df4SJan Kara 	}
22084e7ea81dSJan Kara 
22094e7ea81dSJan Kara 	BUG_ON(map->m_len == 0);
22104e7ea81dSJan Kara 	if (map->m_flags & EXT4_MAP_NEW) {
22114e7ea81dSJan Kara 		struct block_device *bdev = inode->i_sb->s_bdev;
22124e7ea81dSJan Kara 		int i;
22134e7ea81dSJan Kara 
22144e7ea81dSJan Kara 		for (i = 0; i < map->m_len; i++)
22154e7ea81dSJan Kara 			unmap_underlying_metadata(bdev, map->m_pblk + i);
22164e7ea81dSJan Kara 	}
22174e7ea81dSJan Kara 	return 0;
22184e7ea81dSJan Kara }
22194e7ea81dSJan Kara 
22204e7ea81dSJan Kara /*
22214e7ea81dSJan Kara  * mpage_map_and_submit_extent - map extent starting at mpd->lblk of length
22224e7ea81dSJan Kara  *				 mpd->len and submit pages underlying it for IO
22234e7ea81dSJan Kara  *
22244e7ea81dSJan Kara  * @handle - handle for journal operations
22254e7ea81dSJan Kara  * @mpd - extent to map
22267534e854SJan Kara  * @give_up_on_write - we set this to true iff there is a fatal error and there
22277534e854SJan Kara  *                     is no hope of writing the data. The caller should discard
22287534e854SJan Kara  *                     dirty pages to avoid infinite loops.
22294e7ea81dSJan Kara  *
22304e7ea81dSJan Kara  * The function maps extent starting at mpd->lblk of length mpd->len. If it is
22314e7ea81dSJan Kara  * delayed, blocks are allocated, if it is unwritten, we may need to convert
22324e7ea81dSJan Kara  * them to initialized or split the described range from larger unwritten
22334e7ea81dSJan Kara  * extent. Note that we need not map all the described range since allocation
22344e7ea81dSJan Kara  * can return less blocks or the range is covered by more unwritten extents. We
22354e7ea81dSJan Kara  * cannot map more because we are limited by reserved transaction credits. On
22364e7ea81dSJan Kara  * the other hand we always make sure that the last touched page is fully
22374e7ea81dSJan Kara  * mapped so that it can be written out (and thus forward progress is
22384e7ea81dSJan Kara  * guaranteed). After mapping we submit all mapped pages for IO.
22394e7ea81dSJan Kara  */
22404e7ea81dSJan Kara static int mpage_map_and_submit_extent(handle_t *handle,
2241cb530541STheodore Ts'o 				       struct mpage_da_data *mpd,
2242cb530541STheodore Ts'o 				       bool *give_up_on_write)
22434e7ea81dSJan Kara {
22444e7ea81dSJan Kara 	struct inode *inode = mpd->inode;
22454e7ea81dSJan Kara 	struct ext4_map_blocks *map = &mpd->map;
22464e7ea81dSJan Kara 	int err;
22474e7ea81dSJan Kara 	loff_t disksize;
22486603120eSDmitry Monakhov 	int progress = 0;
22494e7ea81dSJan Kara 
22504e7ea81dSJan Kara 	mpd->io_submit.io_end->offset =
22514e7ea81dSJan Kara 				((loff_t)map->m_lblk) << inode->i_blkbits;
225227d7c4edSJan Kara 	do {
22534e7ea81dSJan Kara 		err = mpage_map_one_extent(handle, mpd);
22544e7ea81dSJan Kara 		if (err < 0) {
22554e7ea81dSJan Kara 			struct super_block *sb = inode->i_sb;
22564e7ea81dSJan Kara 
2257cb530541STheodore Ts'o 			if (EXT4_SB(sb)->s_mount_flags & EXT4_MF_FS_ABORTED)
2258cb530541STheodore Ts'o 				goto invalidate_dirty_pages;
22594e7ea81dSJan Kara 			/*
2260cb530541STheodore Ts'o 			 * Let the uper layers retry transient errors.
2261cb530541STheodore Ts'o 			 * In the case of ENOSPC, if ext4_count_free_blocks()
2262cb530541STheodore Ts'o 			 * is non-zero, a commit should free up blocks.
22634e7ea81dSJan Kara 			 */
2264cb530541STheodore Ts'o 			if ((err == -ENOMEM) ||
22656603120eSDmitry Monakhov 			    (err == -ENOSPC && ext4_count_free_clusters(sb))) {
22666603120eSDmitry Monakhov 				if (progress)
22676603120eSDmitry Monakhov 					goto update_disksize;
2268cb530541STheodore Ts'o 				return err;
22696603120eSDmitry Monakhov 			}
22704e7ea81dSJan Kara 			ext4_msg(sb, KERN_CRIT,
22714e7ea81dSJan Kara 				 "Delayed block allocation failed for "
22724e7ea81dSJan Kara 				 "inode %lu at logical offset %llu with"
22734e7ea81dSJan Kara 				 " max blocks %u with error %d",
22744e7ea81dSJan Kara 				 inode->i_ino,
22754e7ea81dSJan Kara 				 (unsigned long long)map->m_lblk,
2276cb530541STheodore Ts'o 				 (unsigned)map->m_len, -err);
22774e7ea81dSJan Kara 			ext4_msg(sb, KERN_CRIT,
22784e7ea81dSJan Kara 				 "This should not happen!! Data will "
22794e7ea81dSJan Kara 				 "be lost\n");
22804e7ea81dSJan Kara 			if (err == -ENOSPC)
22814e7ea81dSJan Kara 				ext4_print_free_blocks(inode);
2282cb530541STheodore Ts'o 		invalidate_dirty_pages:
2283cb530541STheodore Ts'o 			*give_up_on_write = true;
22844e7ea81dSJan Kara 			return err;
22854e7ea81dSJan Kara 		}
22866603120eSDmitry Monakhov 		progress = 1;
22874e7ea81dSJan Kara 		/*
22884e7ea81dSJan Kara 		 * Update buffer state, submit mapped pages, and get us new
22894e7ea81dSJan Kara 		 * extent to map
22904e7ea81dSJan Kara 		 */
22914e7ea81dSJan Kara 		err = mpage_map_and_submit_buffers(mpd);
22924e7ea81dSJan Kara 		if (err < 0)
22936603120eSDmitry Monakhov 			goto update_disksize;
229427d7c4edSJan Kara 	} while (map->m_len);
22954e7ea81dSJan Kara 
22966603120eSDmitry Monakhov update_disksize:
2297622cad13STheodore Ts'o 	/*
2298622cad13STheodore Ts'o 	 * Update on-disk size after IO is submitted.  Races with
2299622cad13STheodore Ts'o 	 * truncate are avoided by checking i_size under i_data_sem.
2300622cad13STheodore Ts'o 	 */
23014e7ea81dSJan Kara 	disksize = ((loff_t)mpd->first_page) << PAGE_CACHE_SHIFT;
23024e7ea81dSJan Kara 	if (disksize > EXT4_I(inode)->i_disksize) {
23034e7ea81dSJan Kara 		int err2;
2304622cad13STheodore Ts'o 		loff_t i_size;
23054e7ea81dSJan Kara 
2306622cad13STheodore Ts'o 		down_write(&EXT4_I(inode)->i_data_sem);
2307622cad13STheodore Ts'o 		i_size = i_size_read(inode);
2308622cad13STheodore Ts'o 		if (disksize > i_size)
2309622cad13STheodore Ts'o 			disksize = i_size;
2310622cad13STheodore Ts'o 		if (disksize > EXT4_I(inode)->i_disksize)
2311622cad13STheodore Ts'o 			EXT4_I(inode)->i_disksize = disksize;
23124e7ea81dSJan Kara 		err2 = ext4_mark_inode_dirty(handle, inode);
2313622cad13STheodore Ts'o 		up_write(&EXT4_I(inode)->i_data_sem);
23144e7ea81dSJan Kara 		if (err2)
23154e7ea81dSJan Kara 			ext4_error(inode->i_sb,
23164e7ea81dSJan Kara 				   "Failed to mark inode %lu dirty",
23174e7ea81dSJan Kara 				   inode->i_ino);
23184e7ea81dSJan Kara 		if (!err)
23194e7ea81dSJan Kara 			err = err2;
23204e7ea81dSJan Kara 	}
23214e7ea81dSJan Kara 	return err;
23224e7ea81dSJan Kara }
23234e7ea81dSJan Kara 
23244e7ea81dSJan Kara /*
2325fffb2739SJan Kara  * Calculate the total number of credits to reserve for one writepages
232620970ba6STheodore Ts'o  * iteration. This is called from ext4_writepages(). We map an extent of
2327fffb2739SJan Kara  * up to MAX_WRITEPAGES_EXTENT_LEN blocks and then we go on and finish mapping
2328fffb2739SJan Kara  * the last partial page. So in total we can map MAX_WRITEPAGES_EXTENT_LEN +
2329fffb2739SJan Kara  * bpp - 1 blocks in bpp different extents.
2330525f4ed8SMingming Cao  */
2331fffb2739SJan Kara static int ext4_da_writepages_trans_blocks(struct inode *inode)
2332fffb2739SJan Kara {
2333fffb2739SJan Kara 	int bpp = ext4_journal_blocks_per_page(inode);
2334525f4ed8SMingming Cao 
2335fffb2739SJan Kara 	return ext4_meta_trans_blocks(inode,
2336fffb2739SJan Kara 				MAX_WRITEPAGES_EXTENT_LEN + bpp - 1, bpp);
2337525f4ed8SMingming Cao }
233861628a3fSMingming Cao 
23398e48dcfbSTheodore Ts'o /*
23404e7ea81dSJan Kara  * mpage_prepare_extent_to_map - find & lock contiguous range of dirty pages
23414e7ea81dSJan Kara  * 				 and underlying extent to map
23424e7ea81dSJan Kara  *
23434e7ea81dSJan Kara  * @mpd - where to look for pages
23444e7ea81dSJan Kara  *
23454e7ea81dSJan Kara  * Walk dirty pages in the mapping. If they are fully mapped, submit them for
23464e7ea81dSJan Kara  * IO immediately. When we find a page which isn't mapped we start accumulating
23474e7ea81dSJan Kara  * extent of buffers underlying these pages that needs mapping (formed by
23484e7ea81dSJan Kara  * either delayed or unwritten buffers). We also lock the pages containing
23494e7ea81dSJan Kara  * these buffers. The extent found is returned in @mpd structure (starting at
23504e7ea81dSJan Kara  * mpd->lblk with length mpd->len blocks).
23514e7ea81dSJan Kara  *
23524e7ea81dSJan Kara  * Note that this function can attach bios to one io_end structure which are
23534e7ea81dSJan Kara  * neither logically nor physically contiguous. Although it may seem as an
23544e7ea81dSJan Kara  * unnecessary complication, it is actually inevitable in blocksize < pagesize
23554e7ea81dSJan Kara  * case as we need to track IO to all buffers underlying a page in one io_end.
23568e48dcfbSTheodore Ts'o  */
23574e7ea81dSJan Kara static int mpage_prepare_extent_to_map(struct mpage_da_data *mpd)
23588e48dcfbSTheodore Ts'o {
23594e7ea81dSJan Kara 	struct address_space *mapping = mpd->inode->i_mapping;
23608e48dcfbSTheodore Ts'o 	struct pagevec pvec;
23614f01b02cSTheodore Ts'o 	unsigned int nr_pages;
2362aeac589aSMing Lei 	long left = mpd->wbc->nr_to_write;
23634e7ea81dSJan Kara 	pgoff_t index = mpd->first_page;
23644e7ea81dSJan Kara 	pgoff_t end = mpd->last_page;
23654e7ea81dSJan Kara 	int tag;
23664e7ea81dSJan Kara 	int i, err = 0;
23674e7ea81dSJan Kara 	int blkbits = mpd->inode->i_blkbits;
23684e7ea81dSJan Kara 	ext4_lblk_t lblk;
23694e7ea81dSJan Kara 	struct buffer_head *head;
23708e48dcfbSTheodore Ts'o 
23714e7ea81dSJan Kara 	if (mpd->wbc->sync_mode == WB_SYNC_ALL || mpd->wbc->tagged_writepages)
23725b41d924SEric Sandeen 		tag = PAGECACHE_TAG_TOWRITE;
23735b41d924SEric Sandeen 	else
23745b41d924SEric Sandeen 		tag = PAGECACHE_TAG_DIRTY;
23755b41d924SEric Sandeen 
23764e7ea81dSJan Kara 	pagevec_init(&pvec, 0);
23774e7ea81dSJan Kara 	mpd->map.m_len = 0;
23784e7ea81dSJan Kara 	mpd->next_page = index;
23794f01b02cSTheodore Ts'o 	while (index <= end) {
23805b41d924SEric Sandeen 		nr_pages = pagevec_lookup_tag(&pvec, mapping, &index, tag,
23818e48dcfbSTheodore Ts'o 			      min(end - index, (pgoff_t)PAGEVEC_SIZE-1) + 1);
23828e48dcfbSTheodore Ts'o 		if (nr_pages == 0)
23834e7ea81dSJan Kara 			goto out;
23848e48dcfbSTheodore Ts'o 
23858e48dcfbSTheodore Ts'o 		for (i = 0; i < nr_pages; i++) {
23868e48dcfbSTheodore Ts'o 			struct page *page = pvec.pages[i];
23878e48dcfbSTheodore Ts'o 
23888e48dcfbSTheodore Ts'o 			/*
23898e48dcfbSTheodore Ts'o 			 * At this point, the page may be truncated or
23908e48dcfbSTheodore Ts'o 			 * invalidated (changing page->mapping to NULL), or
23918e48dcfbSTheodore Ts'o 			 * even swizzled back from swapper_space to tmpfs file
23928e48dcfbSTheodore Ts'o 			 * mapping. However, page->index will not change
23938e48dcfbSTheodore Ts'o 			 * because we have a reference on the page.
23948e48dcfbSTheodore Ts'o 			 */
23954f01b02cSTheodore Ts'o 			if (page->index > end)
23964f01b02cSTheodore Ts'o 				goto out;
23978e48dcfbSTheodore Ts'o 
2398aeac589aSMing Lei 			/*
2399aeac589aSMing Lei 			 * Accumulated enough dirty pages? This doesn't apply
2400aeac589aSMing Lei 			 * to WB_SYNC_ALL mode. For integrity sync we have to
2401aeac589aSMing Lei 			 * keep going because someone may be concurrently
2402aeac589aSMing Lei 			 * dirtying pages, and we might have synced a lot of
2403aeac589aSMing Lei 			 * newly appeared dirty pages, but have not synced all
2404aeac589aSMing Lei 			 * of the old dirty pages.
2405aeac589aSMing Lei 			 */
2406aeac589aSMing Lei 			if (mpd->wbc->sync_mode == WB_SYNC_NONE && left <= 0)
2407aeac589aSMing Lei 				goto out;
2408aeac589aSMing Lei 
24094e7ea81dSJan Kara 			/* If we can't merge this page, we are done. */
24104e7ea81dSJan Kara 			if (mpd->map.m_len > 0 && mpd->next_page != page->index)
24114e7ea81dSJan Kara 				goto out;
241278aaced3STheodore Ts'o 
24138e48dcfbSTheodore Ts'o 			lock_page(page);
24148e48dcfbSTheodore Ts'o 			/*
24154e7ea81dSJan Kara 			 * If the page is no longer dirty, or its mapping no
24164e7ea81dSJan Kara 			 * longer corresponds to inode we are writing (which
24174e7ea81dSJan Kara 			 * means it has been truncated or invalidated), or the
24184e7ea81dSJan Kara 			 * page is already under writeback and we are not doing
24194e7ea81dSJan Kara 			 * a data integrity writeback, skip the page
24208e48dcfbSTheodore Ts'o 			 */
24214f01b02cSTheodore Ts'o 			if (!PageDirty(page) ||
24224f01b02cSTheodore Ts'o 			    (PageWriteback(page) &&
24234e7ea81dSJan Kara 			     (mpd->wbc->sync_mode == WB_SYNC_NONE)) ||
24244f01b02cSTheodore Ts'o 			    unlikely(page->mapping != mapping)) {
24258e48dcfbSTheodore Ts'o 				unlock_page(page);
24268e48dcfbSTheodore Ts'o 				continue;
24278e48dcfbSTheodore Ts'o 			}
24288e48dcfbSTheodore Ts'o 
24298e48dcfbSTheodore Ts'o 			wait_on_page_writeback(page);
24308e48dcfbSTheodore Ts'o 			BUG_ON(PageWriteback(page));
24318e48dcfbSTheodore Ts'o 
24324e7ea81dSJan Kara 			if (mpd->map.m_len == 0)
24338eb9e5ceSTheodore Ts'o 				mpd->first_page = page->index;
24348eb9e5ceSTheodore Ts'o 			mpd->next_page = page->index + 1;
2435f8bec370SJan Kara 			/* Add all dirty buffers to mpd */
24364e7ea81dSJan Kara 			lblk = ((ext4_lblk_t)page->index) <<
24374e7ea81dSJan Kara 				(PAGE_CACHE_SHIFT - blkbits);
24388eb9e5ceSTheodore Ts'o 			head = page_buffers(page);
24395f1132b2SJan Kara 			err = mpage_process_page_bufs(mpd, head, head, lblk);
24405f1132b2SJan Kara 			if (err <= 0)
24414e7ea81dSJan Kara 				goto out;
24425f1132b2SJan Kara 			err = 0;
2443aeac589aSMing Lei 			left--;
24448e48dcfbSTheodore Ts'o 		}
24458e48dcfbSTheodore Ts'o 		pagevec_release(&pvec);
24468e48dcfbSTheodore Ts'o 		cond_resched();
24478e48dcfbSTheodore Ts'o 	}
24484f01b02cSTheodore Ts'o 	return 0;
24498eb9e5ceSTheodore Ts'o out:
24508eb9e5ceSTheodore Ts'o 	pagevec_release(&pvec);
24514e7ea81dSJan Kara 	return err;
24528e48dcfbSTheodore Ts'o }
24538e48dcfbSTheodore Ts'o 
245420970ba6STheodore Ts'o static int __writepage(struct page *page, struct writeback_control *wbc,
245520970ba6STheodore Ts'o 		       void *data)
245620970ba6STheodore Ts'o {
245720970ba6STheodore Ts'o 	struct address_space *mapping = data;
245820970ba6STheodore Ts'o 	int ret = ext4_writepage(page, wbc);
245920970ba6STheodore Ts'o 	mapping_set_error(mapping, ret);
246020970ba6STheodore Ts'o 	return ret;
246120970ba6STheodore Ts'o }
246220970ba6STheodore Ts'o 
246320970ba6STheodore Ts'o static int ext4_writepages(struct address_space *mapping,
246464769240SAlex Tomas 			   struct writeback_control *wbc)
246564769240SAlex Tomas {
24664e7ea81dSJan Kara 	pgoff_t	writeback_index = 0;
24674e7ea81dSJan Kara 	long nr_to_write = wbc->nr_to_write;
246822208dedSAneesh Kumar K.V 	int range_whole = 0;
24694e7ea81dSJan Kara 	int cycled = 1;
247061628a3fSMingming Cao 	handle_t *handle = NULL;
2471df22291fSAneesh Kumar K.V 	struct mpage_da_data mpd;
24725e745b04SAneesh Kumar K.V 	struct inode *inode = mapping->host;
24736b523df4SJan Kara 	int needed_blocks, rsv_blocks = 0, ret = 0;
24745e745b04SAneesh Kumar K.V 	struct ext4_sb_info *sbi = EXT4_SB(mapping->host->i_sb);
24754e7ea81dSJan Kara 	bool done;
24761bce63d1SShaohua Li 	struct blk_plug plug;
2477cb530541STheodore Ts'o 	bool give_up_on_write = false;
247861628a3fSMingming Cao 
247920970ba6STheodore Ts'o 	trace_ext4_writepages(inode, wbc);
2480ba80b101STheodore Ts'o 
2481*7f6d5b52SRoss Zwisler 	if (dax_mapping(mapping))
2482*7f6d5b52SRoss Zwisler 		return dax_writeback_mapping_range(mapping, inode->i_sb->s_bdev,
2483*7f6d5b52SRoss Zwisler 						   wbc);
2484*7f6d5b52SRoss Zwisler 
248561628a3fSMingming Cao 	/*
248661628a3fSMingming Cao 	 * No pages to write? This is mainly a kludge to avoid starting
248761628a3fSMingming Cao 	 * a transaction for special inodes like journal inode on last iput()
248861628a3fSMingming Cao 	 * because that could violate lock ordering on umount
248961628a3fSMingming Cao 	 */
2490a1d6cc56SAneesh Kumar K.V 	if (!mapping->nrpages || !mapping_tagged(mapping, PAGECACHE_TAG_DIRTY))
2491bbf023c7SMing Lei 		goto out_writepages;
24922a21e37eSTheodore Ts'o 
249320970ba6STheodore Ts'o 	if (ext4_should_journal_data(inode)) {
249420970ba6STheodore Ts'o 		struct blk_plug plug;
249520970ba6STheodore Ts'o 
249620970ba6STheodore Ts'o 		blk_start_plug(&plug);
249720970ba6STheodore Ts'o 		ret = write_cache_pages(mapping, wbc, __writepage, mapping);
249820970ba6STheodore Ts'o 		blk_finish_plug(&plug);
2499bbf023c7SMing Lei 		goto out_writepages;
250020970ba6STheodore Ts'o 	}
250120970ba6STheodore Ts'o 
25022a21e37eSTheodore Ts'o 	/*
25032a21e37eSTheodore Ts'o 	 * If the filesystem has aborted, it is read-only, so return
25042a21e37eSTheodore Ts'o 	 * right away instead of dumping stack traces later on that
25052a21e37eSTheodore Ts'o 	 * will obscure the real source of the problem.  We test
25064ab2f15bSTheodore Ts'o 	 * EXT4_MF_FS_ABORTED instead of sb->s_flag's MS_RDONLY because
25072a21e37eSTheodore Ts'o 	 * the latter could be true if the filesystem is mounted
250820970ba6STheodore Ts'o 	 * read-only, and in that case, ext4_writepages should
25092a21e37eSTheodore Ts'o 	 * *never* be called, so if that ever happens, we would want
25102a21e37eSTheodore Ts'o 	 * the stack trace.
25112a21e37eSTheodore Ts'o 	 */
2512bbf023c7SMing Lei 	if (unlikely(sbi->s_mount_flags & EXT4_MF_FS_ABORTED)) {
2513bbf023c7SMing Lei 		ret = -EROFS;
2514bbf023c7SMing Lei 		goto out_writepages;
2515bbf023c7SMing Lei 	}
25162a21e37eSTheodore Ts'o 
25176b523df4SJan Kara 	if (ext4_should_dioread_nolock(inode)) {
25186b523df4SJan Kara 		/*
25196b523df4SJan Kara 		 * We may need to convert up to one extent per block in
25206b523df4SJan Kara 		 * the page and we may dirty the inode.
25216b523df4SJan Kara 		 */
25226b523df4SJan Kara 		rsv_blocks = 1 + (PAGE_CACHE_SIZE >> inode->i_blkbits);
25236b523df4SJan Kara 	}
25246b523df4SJan Kara 
25254e7ea81dSJan Kara 	/*
25264e7ea81dSJan Kara 	 * If we have inline data and arrive here, it means that
25274e7ea81dSJan Kara 	 * we will soon create the block for the 1st page, so
25284e7ea81dSJan Kara 	 * we'd better clear the inline data here.
25294e7ea81dSJan Kara 	 */
25304e7ea81dSJan Kara 	if (ext4_has_inline_data(inode)) {
25314e7ea81dSJan Kara 		/* Just inode will be modified... */
25324e7ea81dSJan Kara 		handle = ext4_journal_start(inode, EXT4_HT_INODE, 1);
25334e7ea81dSJan Kara 		if (IS_ERR(handle)) {
25344e7ea81dSJan Kara 			ret = PTR_ERR(handle);
25354e7ea81dSJan Kara 			goto out_writepages;
25364e7ea81dSJan Kara 		}
25374e7ea81dSJan Kara 		BUG_ON(ext4_test_inode_state(inode,
25384e7ea81dSJan Kara 				EXT4_STATE_MAY_INLINE_DATA));
25394e7ea81dSJan Kara 		ext4_destroy_inline_data(handle, inode);
25404e7ea81dSJan Kara 		ext4_journal_stop(handle);
25414e7ea81dSJan Kara 	}
25424e7ea81dSJan Kara 
254322208dedSAneesh Kumar K.V 	if (wbc->range_start == 0 && wbc->range_end == LLONG_MAX)
254422208dedSAneesh Kumar K.V 		range_whole = 1;
254561628a3fSMingming Cao 
25462acf2c26SAneesh Kumar K.V 	if (wbc->range_cyclic) {
25474e7ea81dSJan Kara 		writeback_index = mapping->writeback_index;
25484e7ea81dSJan Kara 		if (writeback_index)
25492acf2c26SAneesh Kumar K.V 			cycled = 0;
25504e7ea81dSJan Kara 		mpd.first_page = writeback_index;
25514e7ea81dSJan Kara 		mpd.last_page = -1;
25525b41d924SEric Sandeen 	} else {
25534e7ea81dSJan Kara 		mpd.first_page = wbc->range_start >> PAGE_CACHE_SHIFT;
25544e7ea81dSJan Kara 		mpd.last_page = wbc->range_end >> PAGE_CACHE_SHIFT;
25555b41d924SEric Sandeen 	}
2556a1d6cc56SAneesh Kumar K.V 
25574e7ea81dSJan Kara 	mpd.inode = inode;
25584e7ea81dSJan Kara 	mpd.wbc = wbc;
25594e7ea81dSJan Kara 	ext4_io_submit_init(&mpd.io_submit, wbc);
25602acf2c26SAneesh Kumar K.V retry:
25616e6938b6SWu Fengguang 	if (wbc->sync_mode == WB_SYNC_ALL || wbc->tagged_writepages)
25624e7ea81dSJan Kara 		tag_pages_for_writeback(mapping, mpd.first_page, mpd.last_page);
25634e7ea81dSJan Kara 	done = false;
25641bce63d1SShaohua Li 	blk_start_plug(&plug);
25654e7ea81dSJan Kara 	while (!done && mpd.first_page <= mpd.last_page) {
25664e7ea81dSJan Kara 		/* For each extent of pages we use new io_end */
25674e7ea81dSJan Kara 		mpd.io_submit.io_end = ext4_init_io_end(inode, GFP_KERNEL);
25684e7ea81dSJan Kara 		if (!mpd.io_submit.io_end) {
25694e7ea81dSJan Kara 			ret = -ENOMEM;
25704e7ea81dSJan Kara 			break;
25714e7ea81dSJan Kara 		}
2572a1d6cc56SAneesh Kumar K.V 
2573a1d6cc56SAneesh Kumar K.V 		/*
25744e7ea81dSJan Kara 		 * We have two constraints: We find one extent to map and we
25754e7ea81dSJan Kara 		 * must always write out whole page (makes a difference when
25764e7ea81dSJan Kara 		 * blocksize < pagesize) so that we don't block on IO when we
25774e7ea81dSJan Kara 		 * try to write out the rest of the page. Journalled mode is
25784e7ea81dSJan Kara 		 * not supported by delalloc.
2579a1d6cc56SAneesh Kumar K.V 		 */
2580a1d6cc56SAneesh Kumar K.V 		BUG_ON(ext4_should_journal_data(inode));
2581525f4ed8SMingming Cao 		needed_blocks = ext4_da_writepages_trans_blocks(inode);
2582a1d6cc56SAneesh Kumar K.V 
258361628a3fSMingming Cao 		/* start a new transaction */
25846b523df4SJan Kara 		handle = ext4_journal_start_with_reserve(inode,
25856b523df4SJan Kara 				EXT4_HT_WRITE_PAGE, needed_blocks, rsv_blocks);
258661628a3fSMingming Cao 		if (IS_ERR(handle)) {
258761628a3fSMingming Cao 			ret = PTR_ERR(handle);
25881693918eSTheodore Ts'o 			ext4_msg(inode->i_sb, KERN_CRIT, "%s: jbd2_start: "
2589fbe845ddSCurt Wohlgemuth 			       "%ld pages, ino %lu; err %d", __func__,
2590a1d6cc56SAneesh Kumar K.V 				wbc->nr_to_write, inode->i_ino, ret);
25914e7ea81dSJan Kara 			/* Release allocated io_end */
25924e7ea81dSJan Kara 			ext4_put_io_end(mpd.io_submit.io_end);
25934e7ea81dSJan Kara 			break;
259461628a3fSMingming Cao 		}
2595f63e6005STheodore Ts'o 
25964e7ea81dSJan Kara 		trace_ext4_da_write_pages(inode, mpd.first_page, mpd.wbc);
25974e7ea81dSJan Kara 		ret = mpage_prepare_extent_to_map(&mpd);
25984e7ea81dSJan Kara 		if (!ret) {
25994e7ea81dSJan Kara 			if (mpd.map.m_len)
2600cb530541STheodore Ts'o 				ret = mpage_map_and_submit_extent(handle, &mpd,
2601cb530541STheodore Ts'o 					&give_up_on_write);
26024e7ea81dSJan Kara 			else {
2603f63e6005STheodore Ts'o 				/*
26044e7ea81dSJan Kara 				 * We scanned the whole range (or exhausted
26054e7ea81dSJan Kara 				 * nr_to_write), submitted what was mapped and
26064e7ea81dSJan Kara 				 * didn't find anything needing mapping. We are
26074e7ea81dSJan Kara 				 * done.
2608f63e6005STheodore Ts'o 				 */
26094e7ea81dSJan Kara 				done = true;
2610f63e6005STheodore Ts'o 			}
26114e7ea81dSJan Kara 		}
261261628a3fSMingming Cao 		ext4_journal_stop(handle);
26134e7ea81dSJan Kara 		/* Submit prepared bio */
26144e7ea81dSJan Kara 		ext4_io_submit(&mpd.io_submit);
26154e7ea81dSJan Kara 		/* Unlock pages we didn't use */
2616cb530541STheodore Ts'o 		mpage_release_unused_pages(&mpd, give_up_on_write);
26174e7ea81dSJan Kara 		/* Drop our io_end reference we got from init */
26184e7ea81dSJan Kara 		ext4_put_io_end(mpd.io_submit.io_end);
2619df22291fSAneesh Kumar K.V 
26204e7ea81dSJan Kara 		if (ret == -ENOSPC && sbi->s_journal) {
26214e7ea81dSJan Kara 			/*
26224e7ea81dSJan Kara 			 * Commit the transaction which would
262322208dedSAneesh Kumar K.V 			 * free blocks released in the transaction
262422208dedSAneesh Kumar K.V 			 * and try again
262522208dedSAneesh Kumar K.V 			 */
2626df22291fSAneesh Kumar K.V 			jbd2_journal_force_commit_nested(sbi->s_journal);
262722208dedSAneesh Kumar K.V 			ret = 0;
26284e7ea81dSJan Kara 			continue;
26294e7ea81dSJan Kara 		}
26304e7ea81dSJan Kara 		/* Fatal error - ENOMEM, EIO... */
26314e7ea81dSJan Kara 		if (ret)
263261628a3fSMingming Cao 			break;
263361628a3fSMingming Cao 	}
26341bce63d1SShaohua Li 	blk_finish_plug(&plug);
26359c12a831SJan Kara 	if (!ret && !cycled && wbc->nr_to_write > 0) {
26362acf2c26SAneesh Kumar K.V 		cycled = 1;
26374e7ea81dSJan Kara 		mpd.last_page = writeback_index - 1;
26384e7ea81dSJan Kara 		mpd.first_page = 0;
26392acf2c26SAneesh Kumar K.V 		goto retry;
26402acf2c26SAneesh Kumar K.V 	}
264161628a3fSMingming Cao 
264222208dedSAneesh Kumar K.V 	/* Update index */
264322208dedSAneesh Kumar K.V 	if (wbc->range_cyclic || (range_whole && wbc->nr_to_write > 0))
264422208dedSAneesh Kumar K.V 		/*
26454e7ea81dSJan Kara 		 * Set the writeback_index so that range_cyclic
264622208dedSAneesh Kumar K.V 		 * mode will write it back later
264722208dedSAneesh Kumar K.V 		 */
26484e7ea81dSJan Kara 		mapping->writeback_index = mpd.first_page;
2649a1d6cc56SAneesh Kumar K.V 
265061628a3fSMingming Cao out_writepages:
265120970ba6STheodore Ts'o 	trace_ext4_writepages_result(inode, wbc, ret,
26524e7ea81dSJan Kara 				     nr_to_write - wbc->nr_to_write);
265361628a3fSMingming Cao 	return ret;
265464769240SAlex Tomas }
265564769240SAlex Tomas 
265679f0be8dSAneesh Kumar K.V static int ext4_nonda_switch(struct super_block *sb)
265779f0be8dSAneesh Kumar K.V {
26585c1ff336SEric Whitney 	s64 free_clusters, dirty_clusters;
265979f0be8dSAneesh Kumar K.V 	struct ext4_sb_info *sbi = EXT4_SB(sb);
266079f0be8dSAneesh Kumar K.V 
266179f0be8dSAneesh Kumar K.V 	/*
266279f0be8dSAneesh Kumar K.V 	 * switch to non delalloc mode if we are running low
266379f0be8dSAneesh Kumar K.V 	 * on free block. The free block accounting via percpu
2664179f7ebfSEric Dumazet 	 * counters can get slightly wrong with percpu_counter_batch getting
266579f0be8dSAneesh Kumar K.V 	 * accumulated on each CPU without updating global counters
266679f0be8dSAneesh Kumar K.V 	 * Delalloc need an accurate free block accounting. So switch
266779f0be8dSAneesh Kumar K.V 	 * to non delalloc when we are near to error range.
266879f0be8dSAneesh Kumar K.V 	 */
26695c1ff336SEric Whitney 	free_clusters =
26705c1ff336SEric Whitney 		percpu_counter_read_positive(&sbi->s_freeclusters_counter);
26715c1ff336SEric Whitney 	dirty_clusters =
26725c1ff336SEric Whitney 		percpu_counter_read_positive(&sbi->s_dirtyclusters_counter);
267300d4e736STheodore Ts'o 	/*
267400d4e736STheodore Ts'o 	 * Start pushing delalloc when 1/2 of free blocks are dirty.
267500d4e736STheodore Ts'o 	 */
26765c1ff336SEric Whitney 	if (dirty_clusters && (free_clusters < 2 * dirty_clusters))
267710ee27a0SMiao Xie 		try_to_writeback_inodes_sb(sb, WB_REASON_FS_FREE_SPACE);
267800d4e736STheodore Ts'o 
26795c1ff336SEric Whitney 	if (2 * free_clusters < 3 * dirty_clusters ||
26805c1ff336SEric Whitney 	    free_clusters < (dirty_clusters + EXT4_FREECLUSTERS_WATERMARK)) {
268179f0be8dSAneesh Kumar K.V 		/*
2682c8afb446SEric Sandeen 		 * free block count is less than 150% of dirty blocks
2683c8afb446SEric Sandeen 		 * or free blocks is less than watermark
268479f0be8dSAneesh Kumar K.V 		 */
268579f0be8dSAneesh Kumar K.V 		return 1;
268679f0be8dSAneesh Kumar K.V 	}
268779f0be8dSAneesh Kumar K.V 	return 0;
268879f0be8dSAneesh Kumar K.V }
268979f0be8dSAneesh Kumar K.V 
26900ff8947fSEric Sandeen /* We always reserve for an inode update; the superblock could be there too */
26910ff8947fSEric Sandeen static int ext4_da_write_credits(struct inode *inode, loff_t pos, unsigned len)
26920ff8947fSEric Sandeen {
2693e2b911c5SDarrick J. Wong 	if (likely(ext4_has_feature_large_file(inode->i_sb)))
26940ff8947fSEric Sandeen 		return 1;
26950ff8947fSEric Sandeen 
26960ff8947fSEric Sandeen 	if (pos + len <= 0x7fffffffULL)
26970ff8947fSEric Sandeen 		return 1;
26980ff8947fSEric Sandeen 
26990ff8947fSEric Sandeen 	/* We might need to update the superblock to set LARGE_FILE */
27000ff8947fSEric Sandeen 	return 2;
27010ff8947fSEric Sandeen }
27020ff8947fSEric Sandeen 
270364769240SAlex Tomas static int ext4_da_write_begin(struct file *file, struct address_space *mapping,
270464769240SAlex Tomas 			       loff_t pos, unsigned len, unsigned flags,
270564769240SAlex Tomas 			       struct page **pagep, void **fsdata)
270664769240SAlex Tomas {
270772b8ab9dSEric Sandeen 	int ret, retries = 0;
270864769240SAlex Tomas 	struct page *page;
270964769240SAlex Tomas 	pgoff_t index;
271064769240SAlex Tomas 	struct inode *inode = mapping->host;
271164769240SAlex Tomas 	handle_t *handle;
271264769240SAlex Tomas 
271364769240SAlex Tomas 	index = pos >> PAGE_CACHE_SHIFT;
271479f0be8dSAneesh Kumar K.V 
271579f0be8dSAneesh Kumar K.V 	if (ext4_nonda_switch(inode->i_sb)) {
271679f0be8dSAneesh Kumar K.V 		*fsdata = (void *)FALL_BACK_TO_NONDELALLOC;
271779f0be8dSAneesh Kumar K.V 		return ext4_write_begin(file, mapping, pos,
271879f0be8dSAneesh Kumar K.V 					len, flags, pagep, fsdata);
271979f0be8dSAneesh Kumar K.V 	}
272079f0be8dSAneesh Kumar K.V 	*fsdata = (void *)0;
27219bffad1eSTheodore Ts'o 	trace_ext4_da_write_begin(inode, pos, len, flags);
27229c3569b5STao Ma 
27239c3569b5STao Ma 	if (ext4_test_inode_state(inode, EXT4_STATE_MAY_INLINE_DATA)) {
27249c3569b5STao Ma 		ret = ext4_da_write_inline_data_begin(mapping, inode,
27259c3569b5STao Ma 						      pos, len, flags,
27269c3569b5STao Ma 						      pagep, fsdata);
27279c3569b5STao Ma 		if (ret < 0)
272847564bfbSTheodore Ts'o 			return ret;
272947564bfbSTheodore Ts'o 		if (ret == 1)
273047564bfbSTheodore Ts'o 			return 0;
27319c3569b5STao Ma 	}
27329c3569b5STao Ma 
273347564bfbSTheodore Ts'o 	/*
273447564bfbSTheodore Ts'o 	 * grab_cache_page_write_begin() can take a long time if the
273547564bfbSTheodore Ts'o 	 * system is thrashing due to memory pressure, or if the page
273647564bfbSTheodore Ts'o 	 * is being written back.  So grab it first before we start
273747564bfbSTheodore Ts'o 	 * the transaction handle.  This also allows us to allocate
273847564bfbSTheodore Ts'o 	 * the page (if needed) without using GFP_NOFS.
273947564bfbSTheodore Ts'o 	 */
274047564bfbSTheodore Ts'o retry_grab:
274147564bfbSTheodore Ts'o 	page = grab_cache_page_write_begin(mapping, index, flags);
274247564bfbSTheodore Ts'o 	if (!page)
274347564bfbSTheodore Ts'o 		return -ENOMEM;
274447564bfbSTheodore Ts'o 	unlock_page(page);
274547564bfbSTheodore Ts'o 
274664769240SAlex Tomas 	/*
274764769240SAlex Tomas 	 * With delayed allocation, we don't log the i_disksize update
274864769240SAlex Tomas 	 * if there is delayed block allocation. But we still need
274964769240SAlex Tomas 	 * to journalling the i_disksize update if writes to the end
275064769240SAlex Tomas 	 * of file which has an already mapped buffer.
275164769240SAlex Tomas 	 */
275247564bfbSTheodore Ts'o retry_journal:
27530ff8947fSEric Sandeen 	handle = ext4_journal_start(inode, EXT4_HT_WRITE_PAGE,
27540ff8947fSEric Sandeen 				ext4_da_write_credits(inode, pos, len));
275564769240SAlex Tomas 	if (IS_ERR(handle)) {
275647564bfbSTheodore Ts'o 		page_cache_release(page);
275747564bfbSTheodore Ts'o 		return PTR_ERR(handle);
275864769240SAlex Tomas 	}
275964769240SAlex Tomas 
276047564bfbSTheodore Ts'o 	lock_page(page);
276147564bfbSTheodore Ts'o 	if (page->mapping != mapping) {
276247564bfbSTheodore Ts'o 		/* The page got truncated from under us */
276347564bfbSTheodore Ts'o 		unlock_page(page);
276447564bfbSTheodore Ts'o 		page_cache_release(page);
2765d5a0d4f7SEric Sandeen 		ext4_journal_stop(handle);
276647564bfbSTheodore Ts'o 		goto retry_grab;
2767d5a0d4f7SEric Sandeen 	}
276847564bfbSTheodore Ts'o 	/* In case writeback began while the page was unlocked */
27697afe5aa5SDmitry Monakhov 	wait_for_stable_page(page);
277064769240SAlex Tomas 
27712058f83aSMichael Halcrow #ifdef CONFIG_EXT4_FS_ENCRYPTION
27722058f83aSMichael Halcrow 	ret = ext4_block_write_begin(page, pos, len,
27732058f83aSMichael Halcrow 				     ext4_da_get_block_prep);
27742058f83aSMichael Halcrow #else
27756e1db88dSChristoph Hellwig 	ret = __block_write_begin(page, pos, len, ext4_da_get_block_prep);
27762058f83aSMichael Halcrow #endif
277764769240SAlex Tomas 	if (ret < 0) {
277864769240SAlex Tomas 		unlock_page(page);
277964769240SAlex Tomas 		ext4_journal_stop(handle);
2780ae4d5372SAneesh Kumar K.V 		/*
2781ae4d5372SAneesh Kumar K.V 		 * block_write_begin may have instantiated a few blocks
2782ae4d5372SAneesh Kumar K.V 		 * outside i_size.  Trim these off again. Don't need
2783ae4d5372SAneesh Kumar K.V 		 * i_size_read because we hold i_mutex.
2784ae4d5372SAneesh Kumar K.V 		 */
2785ae4d5372SAneesh Kumar K.V 		if (pos + len > inode->i_size)
2786b9a4207dSJan Kara 			ext4_truncate_failed_write(inode);
278747564bfbSTheodore Ts'o 
278847564bfbSTheodore Ts'o 		if (ret == -ENOSPC &&
278947564bfbSTheodore Ts'o 		    ext4_should_retry_alloc(inode->i_sb, &retries))
279047564bfbSTheodore Ts'o 			goto retry_journal;
279147564bfbSTheodore Ts'o 
279247564bfbSTheodore Ts'o 		page_cache_release(page);
279347564bfbSTheodore Ts'o 		return ret;
279464769240SAlex Tomas 	}
279564769240SAlex Tomas 
279647564bfbSTheodore Ts'o 	*pagep = page;
279764769240SAlex Tomas 	return ret;
279864769240SAlex Tomas }
279964769240SAlex Tomas 
2800632eaeabSMingming Cao /*
2801632eaeabSMingming Cao  * Check if we should update i_disksize
2802632eaeabSMingming Cao  * when write to the end of file but not require block allocation
2803632eaeabSMingming Cao  */
2804632eaeabSMingming Cao static int ext4_da_should_update_i_disksize(struct page *page,
2805632eaeabSMingming Cao 					    unsigned long offset)
2806632eaeabSMingming Cao {
2807632eaeabSMingming Cao 	struct buffer_head *bh;
2808632eaeabSMingming Cao 	struct inode *inode = page->mapping->host;
2809632eaeabSMingming Cao 	unsigned int idx;
2810632eaeabSMingming Cao 	int i;
2811632eaeabSMingming Cao 
2812632eaeabSMingming Cao 	bh = page_buffers(page);
2813632eaeabSMingming Cao 	idx = offset >> inode->i_blkbits;
2814632eaeabSMingming Cao 
2815632eaeabSMingming Cao 	for (i = 0; i < idx; i++)
2816632eaeabSMingming Cao 		bh = bh->b_this_page;
2817632eaeabSMingming Cao 
281829fa89d0SAneesh Kumar K.V 	if (!buffer_mapped(bh) || (buffer_delay(bh)) || buffer_unwritten(bh))
2819632eaeabSMingming Cao 		return 0;
2820632eaeabSMingming Cao 	return 1;
2821632eaeabSMingming Cao }
2822632eaeabSMingming Cao 
282364769240SAlex Tomas static int ext4_da_write_end(struct file *file,
282464769240SAlex Tomas 			     struct address_space *mapping,
282564769240SAlex Tomas 			     loff_t pos, unsigned len, unsigned copied,
282664769240SAlex Tomas 			     struct page *page, void *fsdata)
282764769240SAlex Tomas {
282864769240SAlex Tomas 	struct inode *inode = mapping->host;
282964769240SAlex Tomas 	int ret = 0, ret2;
283064769240SAlex Tomas 	handle_t *handle = ext4_journal_current_handle();
283164769240SAlex Tomas 	loff_t new_i_size;
2832632eaeabSMingming Cao 	unsigned long start, end;
283379f0be8dSAneesh Kumar K.V 	int write_mode = (int)(unsigned long)fsdata;
283479f0be8dSAneesh Kumar K.V 
283574d553aaSTheodore Ts'o 	if (write_mode == FALL_BACK_TO_NONDELALLOC)
283674d553aaSTheodore Ts'o 		return ext4_write_end(file, mapping, pos,
283779f0be8dSAneesh Kumar K.V 				      len, copied, page, fsdata);
2838632eaeabSMingming Cao 
28399bffad1eSTheodore Ts'o 	trace_ext4_da_write_end(inode, pos, len, copied);
2840632eaeabSMingming Cao 	start = pos & (PAGE_CACHE_SIZE - 1);
2841632eaeabSMingming Cao 	end = start + copied - 1;
284264769240SAlex Tomas 
284364769240SAlex Tomas 	/*
284464769240SAlex Tomas 	 * generic_write_end() will run mark_inode_dirty() if i_size
284564769240SAlex Tomas 	 * changes.  So let's piggyback the i_disksize mark_inode_dirty
284664769240SAlex Tomas 	 * into that.
284764769240SAlex Tomas 	 */
284864769240SAlex Tomas 	new_i_size = pos + copied;
2849ea51d132SAndrea Arcangeli 	if (copied && new_i_size > EXT4_I(inode)->i_disksize) {
28509c3569b5STao Ma 		if (ext4_has_inline_data(inode) ||
28519c3569b5STao Ma 		    ext4_da_should_update_i_disksize(page, end)) {
2852ee124d27SDmitry Monakhov 			ext4_update_i_disksize(inode, new_i_size);
2853cf17fea6SAneesh Kumar K.V 			/* We need to mark inode dirty even if
2854cf17fea6SAneesh Kumar K.V 			 * new_i_size is less that inode->i_size
2855cf17fea6SAneesh Kumar K.V 			 * bu greater than i_disksize.(hint delalloc)
2856cf17fea6SAneesh Kumar K.V 			 */
2857cf17fea6SAneesh Kumar K.V 			ext4_mark_inode_dirty(handle, inode);
2858632eaeabSMingming Cao 		}
2859632eaeabSMingming Cao 	}
28609c3569b5STao Ma 
28619c3569b5STao Ma 	if (write_mode != CONVERT_INLINE_DATA &&
28629c3569b5STao Ma 	    ext4_test_inode_state(inode, EXT4_STATE_MAY_INLINE_DATA) &&
28639c3569b5STao Ma 	    ext4_has_inline_data(inode))
28649c3569b5STao Ma 		ret2 = ext4_da_write_inline_data_end(inode, pos, len, copied,
28659c3569b5STao Ma 						     page);
28669c3569b5STao Ma 	else
286764769240SAlex Tomas 		ret2 = generic_write_end(file, mapping, pos, len, copied,
286864769240SAlex Tomas 							page, fsdata);
28699c3569b5STao Ma 
287064769240SAlex Tomas 	copied = ret2;
287164769240SAlex Tomas 	if (ret2 < 0)
287264769240SAlex Tomas 		ret = ret2;
287364769240SAlex Tomas 	ret2 = ext4_journal_stop(handle);
287464769240SAlex Tomas 	if (!ret)
287564769240SAlex Tomas 		ret = ret2;
287664769240SAlex Tomas 
287764769240SAlex Tomas 	return ret ? ret : copied;
287864769240SAlex Tomas }
287964769240SAlex Tomas 
2880d47992f8SLukas Czerner static void ext4_da_invalidatepage(struct page *page, unsigned int offset,
2881d47992f8SLukas Czerner 				   unsigned int length)
288264769240SAlex Tomas {
288364769240SAlex Tomas 	/*
288464769240SAlex Tomas 	 * Drop reserved blocks
288564769240SAlex Tomas 	 */
288664769240SAlex Tomas 	BUG_ON(!PageLocked(page));
288764769240SAlex Tomas 	if (!page_has_buffers(page))
288864769240SAlex Tomas 		goto out;
288964769240SAlex Tomas 
2890ca99fdd2SLukas Czerner 	ext4_da_page_release_reservation(page, offset, length);
289164769240SAlex Tomas 
289264769240SAlex Tomas out:
2893d47992f8SLukas Czerner 	ext4_invalidatepage(page, offset, length);
289464769240SAlex Tomas 
289564769240SAlex Tomas 	return;
289664769240SAlex Tomas }
289764769240SAlex Tomas 
2898ccd2506bSTheodore Ts'o /*
2899ccd2506bSTheodore Ts'o  * Force all delayed allocation blocks to be allocated for a given inode.
2900ccd2506bSTheodore Ts'o  */
2901ccd2506bSTheodore Ts'o int ext4_alloc_da_blocks(struct inode *inode)
2902ccd2506bSTheodore Ts'o {
2903fb40ba0dSTheodore Ts'o 	trace_ext4_alloc_da_blocks(inode);
2904fb40ba0dSTheodore Ts'o 
290571d4f7d0STheodore Ts'o 	if (!EXT4_I(inode)->i_reserved_data_blocks)
2906ccd2506bSTheodore Ts'o 		return 0;
2907ccd2506bSTheodore Ts'o 
2908ccd2506bSTheodore Ts'o 	/*
2909ccd2506bSTheodore Ts'o 	 * We do something simple for now.  The filemap_flush() will
2910ccd2506bSTheodore Ts'o 	 * also start triggering a write of the data blocks, which is
2911ccd2506bSTheodore Ts'o 	 * not strictly speaking necessary (and for users of
2912ccd2506bSTheodore Ts'o 	 * laptop_mode, not even desirable).  However, to do otherwise
2913ccd2506bSTheodore Ts'o 	 * would require replicating code paths in:
2914ccd2506bSTheodore Ts'o 	 *
291520970ba6STheodore Ts'o 	 * ext4_writepages() ->
2916ccd2506bSTheodore Ts'o 	 *    write_cache_pages() ---> (via passed in callback function)
2917ccd2506bSTheodore Ts'o 	 *        __mpage_da_writepage() -->
2918ccd2506bSTheodore Ts'o 	 *           mpage_add_bh_to_extent()
2919ccd2506bSTheodore Ts'o 	 *           mpage_da_map_blocks()
2920ccd2506bSTheodore Ts'o 	 *
2921ccd2506bSTheodore Ts'o 	 * The problem is that write_cache_pages(), located in
2922ccd2506bSTheodore Ts'o 	 * mm/page-writeback.c, marks pages clean in preparation for
2923ccd2506bSTheodore Ts'o 	 * doing I/O, which is not desirable if we're not planning on
2924ccd2506bSTheodore Ts'o 	 * doing I/O at all.
2925ccd2506bSTheodore Ts'o 	 *
2926ccd2506bSTheodore Ts'o 	 * We could call write_cache_pages(), and then redirty all of
2927380cf090SWu Fengguang 	 * the pages by calling redirty_page_for_writepage() but that
2928ccd2506bSTheodore Ts'o 	 * would be ugly in the extreme.  So instead we would need to
2929ccd2506bSTheodore Ts'o 	 * replicate parts of the code in the above functions,
293025985edcSLucas De Marchi 	 * simplifying them because we wouldn't actually intend to
2931ccd2506bSTheodore Ts'o 	 * write out the pages, but rather only collect contiguous
2932ccd2506bSTheodore Ts'o 	 * logical block extents, call the multi-block allocator, and
2933ccd2506bSTheodore Ts'o 	 * then update the buffer heads with the block allocations.
2934ccd2506bSTheodore Ts'o 	 *
2935ccd2506bSTheodore Ts'o 	 * For now, though, we'll cheat by calling filemap_flush(),
2936ccd2506bSTheodore Ts'o 	 * which will map the blocks, and start the I/O, but not
2937ccd2506bSTheodore Ts'o 	 * actually wait for the I/O to complete.
2938ccd2506bSTheodore Ts'o 	 */
2939ccd2506bSTheodore Ts'o 	return filemap_flush(inode->i_mapping);
2940ccd2506bSTheodore Ts'o }
294164769240SAlex Tomas 
294264769240SAlex Tomas /*
2943ac27a0ecSDave Kleikamp  * bmap() is special.  It gets used by applications such as lilo and by
2944ac27a0ecSDave Kleikamp  * the swapper to find the on-disk block of a specific piece of data.
2945ac27a0ecSDave Kleikamp  *
2946ac27a0ecSDave Kleikamp  * Naturally, this is dangerous if the block concerned is still in the
2947617ba13bSMingming Cao  * journal.  If somebody makes a swapfile on an ext4 data-journaling
2948ac27a0ecSDave Kleikamp  * filesystem and enables swap, then they may get a nasty shock when the
2949ac27a0ecSDave Kleikamp  * data getting swapped to that swapfile suddenly gets overwritten by
2950ac27a0ecSDave Kleikamp  * the original zero's written out previously to the journal and
2951ac27a0ecSDave Kleikamp  * awaiting writeback in the kernel's buffer cache.
2952ac27a0ecSDave Kleikamp  *
2953ac27a0ecSDave Kleikamp  * So, if we see any bmap calls here on a modified, data-journaled file,
2954ac27a0ecSDave Kleikamp  * take extra steps to flush any blocks which might be in the cache.
2955ac27a0ecSDave Kleikamp  */
2956617ba13bSMingming Cao static sector_t ext4_bmap(struct address_space *mapping, sector_t block)
2957ac27a0ecSDave Kleikamp {
2958ac27a0ecSDave Kleikamp 	struct inode *inode = mapping->host;
2959ac27a0ecSDave Kleikamp 	journal_t *journal;
2960ac27a0ecSDave Kleikamp 	int err;
2961ac27a0ecSDave Kleikamp 
296246c7f254STao Ma 	/*
296346c7f254STao Ma 	 * We can get here for an inline file via the FIBMAP ioctl
296446c7f254STao Ma 	 */
296546c7f254STao Ma 	if (ext4_has_inline_data(inode))
296646c7f254STao Ma 		return 0;
296746c7f254STao Ma 
296864769240SAlex Tomas 	if (mapping_tagged(mapping, PAGECACHE_TAG_DIRTY) &&
296964769240SAlex Tomas 			test_opt(inode->i_sb, DELALLOC)) {
297064769240SAlex Tomas 		/*
297164769240SAlex Tomas 		 * With delalloc we want to sync the file
297264769240SAlex Tomas 		 * so that we can make sure we allocate
297364769240SAlex Tomas 		 * blocks for file
297464769240SAlex Tomas 		 */
297564769240SAlex Tomas 		filemap_write_and_wait(mapping);
297664769240SAlex Tomas 	}
297764769240SAlex Tomas 
297819f5fb7aSTheodore Ts'o 	if (EXT4_JOURNAL(inode) &&
297919f5fb7aSTheodore Ts'o 	    ext4_test_inode_state(inode, EXT4_STATE_JDATA)) {
2980ac27a0ecSDave Kleikamp 		/*
2981ac27a0ecSDave Kleikamp 		 * This is a REALLY heavyweight approach, but the use of
2982ac27a0ecSDave Kleikamp 		 * bmap on dirty files is expected to be extremely rare:
2983ac27a0ecSDave Kleikamp 		 * only if we run lilo or swapon on a freshly made file
2984ac27a0ecSDave Kleikamp 		 * do we expect this to happen.
2985ac27a0ecSDave Kleikamp 		 *
2986ac27a0ecSDave Kleikamp 		 * (bmap requires CAP_SYS_RAWIO so this does not
2987ac27a0ecSDave Kleikamp 		 * represent an unprivileged user DOS attack --- we'd be
2988ac27a0ecSDave Kleikamp 		 * in trouble if mortal users could trigger this path at
2989ac27a0ecSDave Kleikamp 		 * will.)
2990ac27a0ecSDave Kleikamp 		 *
2991617ba13bSMingming Cao 		 * NB. EXT4_STATE_JDATA is not set on files other than
2992ac27a0ecSDave Kleikamp 		 * regular files.  If somebody wants to bmap a directory
2993ac27a0ecSDave Kleikamp 		 * or symlink and gets confused because the buffer
2994ac27a0ecSDave Kleikamp 		 * hasn't yet been flushed to disk, they deserve
2995ac27a0ecSDave Kleikamp 		 * everything they get.
2996ac27a0ecSDave Kleikamp 		 */
2997ac27a0ecSDave Kleikamp 
299819f5fb7aSTheodore Ts'o 		ext4_clear_inode_state(inode, EXT4_STATE_JDATA);
2999617ba13bSMingming Cao 		journal = EXT4_JOURNAL(inode);
3000dab291afSMingming Cao 		jbd2_journal_lock_updates(journal);
3001dab291afSMingming Cao 		err = jbd2_journal_flush(journal);
3002dab291afSMingming Cao 		jbd2_journal_unlock_updates(journal);
3003ac27a0ecSDave Kleikamp 
3004ac27a0ecSDave Kleikamp 		if (err)
3005ac27a0ecSDave Kleikamp 			return 0;
3006ac27a0ecSDave Kleikamp 	}
3007ac27a0ecSDave Kleikamp 
3008617ba13bSMingming Cao 	return generic_block_bmap(mapping, block, ext4_get_block);
3009ac27a0ecSDave Kleikamp }
3010ac27a0ecSDave Kleikamp 
3011617ba13bSMingming Cao static int ext4_readpage(struct file *file, struct page *page)
3012ac27a0ecSDave Kleikamp {
301346c7f254STao Ma 	int ret = -EAGAIN;
301446c7f254STao Ma 	struct inode *inode = page->mapping->host;
301546c7f254STao Ma 
30160562e0baSJiaying Zhang 	trace_ext4_readpage(page);
301746c7f254STao Ma 
301846c7f254STao Ma 	if (ext4_has_inline_data(inode))
301946c7f254STao Ma 		ret = ext4_readpage_inline(inode, page);
302046c7f254STao Ma 
302146c7f254STao Ma 	if (ret == -EAGAIN)
3022f64e02feSTheodore Ts'o 		return ext4_mpage_readpages(page->mapping, NULL, page, 1);
302346c7f254STao Ma 
302446c7f254STao Ma 	return ret;
3025ac27a0ecSDave Kleikamp }
3026ac27a0ecSDave Kleikamp 
3027ac27a0ecSDave Kleikamp static int
3028617ba13bSMingming Cao ext4_readpages(struct file *file, struct address_space *mapping,
3029ac27a0ecSDave Kleikamp 		struct list_head *pages, unsigned nr_pages)
3030ac27a0ecSDave Kleikamp {
303146c7f254STao Ma 	struct inode *inode = mapping->host;
303246c7f254STao Ma 
303346c7f254STao Ma 	/* If the file has inline data, no need to do readpages. */
303446c7f254STao Ma 	if (ext4_has_inline_data(inode))
303546c7f254STao Ma 		return 0;
303646c7f254STao Ma 
3037f64e02feSTheodore Ts'o 	return ext4_mpage_readpages(mapping, pages, NULL, nr_pages);
3038ac27a0ecSDave Kleikamp }
3039ac27a0ecSDave Kleikamp 
3040d47992f8SLukas Czerner static void ext4_invalidatepage(struct page *page, unsigned int offset,
3041d47992f8SLukas Czerner 				unsigned int length)
3042ac27a0ecSDave Kleikamp {
3043ca99fdd2SLukas Czerner 	trace_ext4_invalidatepage(page, offset, length);
30440562e0baSJiaying Zhang 
30454520fb3cSJan Kara 	/* No journalling happens on data buffers when this function is used */
30464520fb3cSJan Kara 	WARN_ON(page_has_buffers(page) && buffer_jbd(page_buffers(page)));
30474520fb3cSJan Kara 
3048ca99fdd2SLukas Czerner 	block_invalidatepage(page, offset, length);
30494520fb3cSJan Kara }
30504520fb3cSJan Kara 
305153e87268SJan Kara static int __ext4_journalled_invalidatepage(struct page *page,
3052ca99fdd2SLukas Czerner 					    unsigned int offset,
3053ca99fdd2SLukas Czerner 					    unsigned int length)
30544520fb3cSJan Kara {
30554520fb3cSJan Kara 	journal_t *journal = EXT4_JOURNAL(page->mapping->host);
30564520fb3cSJan Kara 
3057ca99fdd2SLukas Czerner 	trace_ext4_journalled_invalidatepage(page, offset, length);
30584520fb3cSJan Kara 
3059744692dcSJiaying Zhang 	/*
3060ac27a0ecSDave Kleikamp 	 * If it's a full truncate we just forget about the pending dirtying
3061ac27a0ecSDave Kleikamp 	 */
3062ca99fdd2SLukas Czerner 	if (offset == 0 && length == PAGE_CACHE_SIZE)
3063ac27a0ecSDave Kleikamp 		ClearPageChecked(page);
3064ac27a0ecSDave Kleikamp 
3065ca99fdd2SLukas Czerner 	return jbd2_journal_invalidatepage(journal, page, offset, length);
306653e87268SJan Kara }
306753e87268SJan Kara 
306853e87268SJan Kara /* Wrapper for aops... */
306953e87268SJan Kara static void ext4_journalled_invalidatepage(struct page *page,
3070d47992f8SLukas Czerner 					   unsigned int offset,
3071d47992f8SLukas Czerner 					   unsigned int length)
307253e87268SJan Kara {
3073ca99fdd2SLukas Czerner 	WARN_ON(__ext4_journalled_invalidatepage(page, offset, length) < 0);
3074ac27a0ecSDave Kleikamp }
3075ac27a0ecSDave Kleikamp 
3076617ba13bSMingming Cao static int ext4_releasepage(struct page *page, gfp_t wait)
3077ac27a0ecSDave Kleikamp {
3078617ba13bSMingming Cao 	journal_t *journal = EXT4_JOURNAL(page->mapping->host);
3079ac27a0ecSDave Kleikamp 
30800562e0baSJiaying Zhang 	trace_ext4_releasepage(page);
30810562e0baSJiaying Zhang 
3082e1c36595SJan Kara 	/* Page has dirty journalled data -> cannot release */
3083e1c36595SJan Kara 	if (PageChecked(page))
3084ac27a0ecSDave Kleikamp 		return 0;
30850390131bSFrank Mayhar 	if (journal)
3086dab291afSMingming Cao 		return jbd2_journal_try_to_free_buffers(journal, page, wait);
30870390131bSFrank Mayhar 	else
30880390131bSFrank Mayhar 		return try_to_free_buffers(page);
3089ac27a0ecSDave Kleikamp }
3090ac27a0ecSDave Kleikamp 
3091ac27a0ecSDave Kleikamp /*
30922ed88685STheodore Ts'o  * ext4_get_block used when preparing for a DIO write or buffer write.
30932ed88685STheodore Ts'o  * We allocate an uinitialized extent if blocks haven't been allocated.
30942ed88685STheodore Ts'o  * The extent will be converted to initialized after the IO is complete.
30952ed88685STheodore Ts'o  */
3096f19d5870STao Ma int ext4_get_block_write(struct inode *inode, sector_t iblock,
30974c0425ffSMingming Cao 		   struct buffer_head *bh_result, int create)
30984c0425ffSMingming Cao {
3099c7064ef1SJiaying Zhang 	ext4_debug("ext4_get_block_write: inode %lu, create flag %d\n",
31008d5d02e6SMingming Cao 		   inode->i_ino, create);
31012ed88685STheodore Ts'o 	return _ext4_get_block(inode, iblock, bh_result,
31022ed88685STheodore Ts'o 			       EXT4_GET_BLOCKS_IO_CREATE_EXT);
31034c0425ffSMingming Cao }
31044c0425ffSMingming Cao 
31052dcba478SJan Kara static int ext4_get_block_overwrite(struct inode *inode, sector_t iblock,
31068b0f165fSAnatol Pomozov 		   struct buffer_head *bh_result, int create)
3107729f52c6SZheng Liu {
31082dcba478SJan Kara 	int ret;
31092dcba478SJan Kara 
31102dcba478SJan Kara 	ext4_debug("ext4_get_block_overwrite: inode %lu, create flag %d\n",
31118b0f165fSAnatol Pomozov 		   inode->i_ino, create);
31122dcba478SJan Kara 	ret = _ext4_get_block(inode, iblock, bh_result, 0);
31132dcba478SJan Kara 	/*
31142dcba478SJan Kara 	 * Blocks should have been preallocated! ext4_file_write_iter() checks
31152dcba478SJan Kara 	 * that.
31162dcba478SJan Kara 	 */
31172dcba478SJan Kara 	WARN_ON_ONCE(!buffer_mapped(bh_result));
31182dcba478SJan Kara 
31192dcba478SJan Kara 	return ret;
3120729f52c6SZheng Liu }
3121729f52c6SZheng Liu 
3122ba5843f5SJan Kara #ifdef CONFIG_FS_DAX
3123ba5843f5SJan Kara int ext4_dax_mmap_get_block(struct inode *inode, sector_t iblock,
3124ed923b57SMatthew Wilcox 			    struct buffer_head *bh_result, int create)
3125ed923b57SMatthew Wilcox {
3126ba5843f5SJan Kara 	int ret, err;
3127ba5843f5SJan Kara 	int credits;
3128ba5843f5SJan Kara 	struct ext4_map_blocks map;
3129ba5843f5SJan Kara 	handle_t *handle = NULL;
3130ba5843f5SJan Kara 	int flags = 0;
3131c86d8db3SJan Kara 
3132ba5843f5SJan Kara 	ext4_debug("ext4_dax_mmap_get_block: inode %lu, create flag %d\n",
3133ed923b57SMatthew Wilcox 		   inode->i_ino, create);
3134ba5843f5SJan Kara 	map.m_lblk = iblock;
3135ba5843f5SJan Kara 	map.m_len = bh_result->b_size >> inode->i_blkbits;
3136ba5843f5SJan Kara 	credits = ext4_chunk_trans_blocks(inode, map.m_len);
3137ba5843f5SJan Kara 	if (create) {
3138ba5843f5SJan Kara 		flags |= EXT4_GET_BLOCKS_PRE_IO | EXT4_GET_BLOCKS_CREATE_ZERO;
3139ba5843f5SJan Kara 		handle = ext4_journal_start(inode, EXT4_HT_MAP_BLOCKS, credits);
3140ba5843f5SJan Kara 		if (IS_ERR(handle)) {
3141ba5843f5SJan Kara 			ret = PTR_ERR(handle);
3142ba5843f5SJan Kara 			return ret;
3143ed923b57SMatthew Wilcox 		}
3144ba5843f5SJan Kara 	}
3145ba5843f5SJan Kara 
3146ba5843f5SJan Kara 	ret = ext4_map_blocks(handle, inode, &map, flags);
3147ba5843f5SJan Kara 	if (create) {
3148ba5843f5SJan Kara 		err = ext4_journal_stop(handle);
3149ba5843f5SJan Kara 		if (ret >= 0 && err < 0)
3150ba5843f5SJan Kara 			ret = err;
3151ba5843f5SJan Kara 	}
3152ba5843f5SJan Kara 	if (ret <= 0)
3153ba5843f5SJan Kara 		goto out;
3154ba5843f5SJan Kara 	if (map.m_flags & EXT4_MAP_UNWRITTEN) {
3155ba5843f5SJan Kara 		int err2;
3156ba5843f5SJan Kara 
3157ba5843f5SJan Kara 		/*
3158ba5843f5SJan Kara 		 * We are protected by i_mmap_sem so we know block cannot go
3159ba5843f5SJan Kara 		 * away from under us even though we dropped i_data_sem.
3160ba5843f5SJan Kara 		 * Convert extent to written and write zeros there.
3161ba5843f5SJan Kara 		 *
3162ba5843f5SJan Kara 		 * Note: We may get here even when create == 0.
3163ba5843f5SJan Kara 		 */
3164ba5843f5SJan Kara 		handle = ext4_journal_start(inode, EXT4_HT_MAP_BLOCKS, credits);
3165ba5843f5SJan Kara 		if (IS_ERR(handle)) {
3166ba5843f5SJan Kara 			ret = PTR_ERR(handle);
3167ba5843f5SJan Kara 			goto out;
3168ba5843f5SJan Kara 		}
3169ba5843f5SJan Kara 
3170ba5843f5SJan Kara 		err = ext4_map_blocks(handle, inode, &map,
3171ba5843f5SJan Kara 		      EXT4_GET_BLOCKS_CONVERT | EXT4_GET_BLOCKS_CREATE_ZERO);
3172ba5843f5SJan Kara 		if (err < 0)
3173ba5843f5SJan Kara 			ret = err;
3174ba5843f5SJan Kara 		err2 = ext4_journal_stop(handle);
3175ba5843f5SJan Kara 		if (err2 < 0 && ret > 0)
3176ba5843f5SJan Kara 			ret = err2;
3177ba5843f5SJan Kara 	}
3178ba5843f5SJan Kara out:
3179ba5843f5SJan Kara 	WARN_ON_ONCE(ret == 0 && create);
3180ba5843f5SJan Kara 	if (ret > 0) {
3181ba5843f5SJan Kara 		map_bh(bh_result, inode->i_sb, map.m_pblk);
3182ba5843f5SJan Kara 		bh_result->b_state = (bh_result->b_state & ~EXT4_MAP_FLAGS) |
3183ba5843f5SJan Kara 					map.m_flags;
3184ba5843f5SJan Kara 		/*
3185ba5843f5SJan Kara 		 * At least for now we have to clear BH_New so that DAX code
3186ba5843f5SJan Kara 		 * doesn't attempt to zero blocks again in a racy way.
3187ba5843f5SJan Kara 		 */
3188ba5843f5SJan Kara 		bh_result->b_state &= ~(1 << BH_New);
3189ba5843f5SJan Kara 		bh_result->b_size = map.m_len << inode->i_blkbits;
3190ba5843f5SJan Kara 		ret = 0;
3191ba5843f5SJan Kara 	}
3192ba5843f5SJan Kara 	return ret;
3193ba5843f5SJan Kara }
3194ba5843f5SJan Kara #endif
3195ed923b57SMatthew Wilcox 
31964c0425ffSMingming Cao static void ext4_end_io_dio(struct kiocb *iocb, loff_t offset,
31977b7a8665SChristoph Hellwig 			    ssize_t size, void *private)
31984c0425ffSMingming Cao {
31994c0425ffSMingming Cao         ext4_io_end_t *io_end = iocb->private;
32004c0425ffSMingming Cao 
320197a851edSJan Kara 	/* if not async direct IO just return */
32027b7a8665SChristoph Hellwig 	if (!io_end)
320397a851edSJan Kara 		return;
32044b70df18SMingming 
32058d5d02e6SMingming Cao 	ext_debug("ext4_end_io_dio(): io_end 0x%p "
3206ace36ad4SJoe Perches 		  "for inode %lu, iocb 0x%p, offset %llu, size %zd\n",
32078d5d02e6SMingming Cao  		  iocb->private, io_end->inode->i_ino, iocb, offset,
32088d5d02e6SMingming Cao 		  size);
32098d5d02e6SMingming Cao 
3210b5a7e970STheodore Ts'o 	iocb->private = NULL;
32114c0425ffSMingming Cao 	io_end->offset = offset;
32124c0425ffSMingming Cao 	io_end->size = size;
32137b7a8665SChristoph Hellwig 	ext4_put_io_end(io_end);
32144c0425ffSMingming Cao }
3215c7064ef1SJiaying Zhang 
32164c0425ffSMingming Cao /*
32174c0425ffSMingming Cao  * For ext4 extent files, ext4 will do direct-io write to holes,
32184c0425ffSMingming Cao  * preallocated extents, and those write extend the file, no need to
32194c0425ffSMingming Cao  * fall back to buffered IO.
32204c0425ffSMingming Cao  *
3221556615dcSLukas Czerner  * For holes, we fallocate those blocks, mark them as unwritten
322269c499d1STheodore Ts'o  * If those blocks were preallocated, we mark sure they are split, but
3223556615dcSLukas Czerner  * still keep the range to write as unwritten.
32244c0425ffSMingming Cao  *
322569c499d1STheodore Ts'o  * The unwritten extents will be converted to written when DIO is completed.
32268d5d02e6SMingming Cao  * For async direct IO, since the IO may still pending when return, we
322725985edcSLucas De Marchi  * set up an end_io call back function, which will do the conversion
32288d5d02e6SMingming Cao  * when async direct IO completed.
32294c0425ffSMingming Cao  *
32304c0425ffSMingming Cao  * If the O_DIRECT write will extend the file then add this inode to the
32314c0425ffSMingming Cao  * orphan list.  So recovery will truncate it back to the original size
32324c0425ffSMingming Cao  * if the machine crashes during the write.
32334c0425ffSMingming Cao  *
32344c0425ffSMingming Cao  */
32356f673763SOmar Sandoval static ssize_t ext4_ext_direct_IO(struct kiocb *iocb, struct iov_iter *iter,
32366f673763SOmar Sandoval 				  loff_t offset)
32374c0425ffSMingming Cao {
32384c0425ffSMingming Cao 	struct file *file = iocb->ki_filp;
32394c0425ffSMingming Cao 	struct inode *inode = file->f_mapping->host;
32404c0425ffSMingming Cao 	ssize_t ret;
3241a6cbcd4aSAl Viro 	size_t count = iov_iter_count(iter);
3242729f52c6SZheng Liu 	int overwrite = 0;
32438b0f165fSAnatol Pomozov 	get_block_t *get_block_func = NULL;
32448b0f165fSAnatol Pomozov 	int dio_flags = 0;
324569c499d1STheodore Ts'o 	loff_t final_size = offset + count;
324697a851edSJan Kara 	ext4_io_end_t *io_end = NULL;
324769c499d1STheodore Ts'o 
324869c499d1STheodore Ts'o 	/* Use the old path for reads and writes beyond i_size. */
32496f673763SOmar Sandoval 	if (iov_iter_rw(iter) != WRITE || final_size > inode->i_size)
32506f673763SOmar Sandoval 		return ext4_ind_direct_IO(iocb, iter, offset);
3251729f52c6SZheng Liu 
32524bd809dbSZheng Liu 	BUG_ON(iocb->private == NULL);
32534bd809dbSZheng Liu 
3254e8340395SJan Kara 	/*
3255e8340395SJan Kara 	 * Make all waiters for direct IO properly wait also for extent
3256e8340395SJan Kara 	 * conversion. This also disallows race between truncate() and
3257e8340395SJan Kara 	 * overwrite DIO as i_dio_count needs to be incremented under i_mutex.
3258e8340395SJan Kara 	 */
32596f673763SOmar Sandoval 	if (iov_iter_rw(iter) == WRITE)
3260fe0f07d0SJens Axboe 		inode_dio_begin(inode);
3261e8340395SJan Kara 
32624bd809dbSZheng Liu 	/* If we do a overwrite dio, i_mutex locking can be released */
32634bd809dbSZheng Liu 	overwrite = *((int *)iocb->private);
32644bd809dbSZheng Liu 
32652dcba478SJan Kara 	if (overwrite)
32665955102cSAl Viro 		inode_unlock(inode);
32674bd809dbSZheng Liu 
32684c0425ffSMingming Cao 	/*
32698d5d02e6SMingming Cao 	 * We could direct write to holes and fallocate.
32708d5d02e6SMingming Cao 	 *
327169c499d1STheodore Ts'o 	 * Allocated blocks to fill the hole are marked as
3272556615dcSLukas Czerner 	 * unwritten to prevent parallel buffered read to expose
327369c499d1STheodore Ts'o 	 * the stale data before DIO complete the data IO.
32748d5d02e6SMingming Cao 	 *
327569c499d1STheodore Ts'o 	 * As to previously fallocated extents, ext4 get_block will
327669c499d1STheodore Ts'o 	 * just simply mark the buffer mapped but still keep the
3277556615dcSLukas Czerner 	 * extents unwritten.
32784c0425ffSMingming Cao 	 *
327969c499d1STheodore Ts'o 	 * For non AIO case, we will convert those unwritten extents
32808d5d02e6SMingming Cao 	 * to written after return back from blockdev_direct_IO.
32814c0425ffSMingming Cao 	 *
328269c499d1STheodore Ts'o 	 * For async DIO, the conversion needs to be deferred when the
328369c499d1STheodore Ts'o 	 * IO is completed. The ext4 end_io callback function will be
328469c499d1STheodore Ts'o 	 * called to take care of the conversion work.  Here for async
328569c499d1STheodore Ts'o 	 * case, we allocate an io_end structure to hook to the iocb.
32864c0425ffSMingming Cao 	 */
32878d5d02e6SMingming Cao 	iocb->private = NULL;
328874dae427SJan Kara 	if (overwrite) {
328974dae427SJan Kara 		get_block_func = ext4_get_block_overwrite;
329074dae427SJan Kara 	} else {
3291f45ee3a1SDmitry Monakhov 		ext4_inode_aio_set(inode, NULL);
32928d5d02e6SMingming Cao 		if (!is_sync_kiocb(iocb)) {
329397a851edSJan Kara 			io_end = ext4_init_io_end(inode, GFP_NOFS);
32944bd809dbSZheng Liu 			if (!io_end) {
32954bd809dbSZheng Liu 				ret = -ENOMEM;
32964bd809dbSZheng Liu 				goto retake_lock;
32974bd809dbSZheng Liu 			}
329897a851edSJan Kara 			/*
329974dae427SJan Kara 			 * Grab reference for DIO. Will be dropped in
330074dae427SJan Kara 			 * ext4_end_io_dio()
330197a851edSJan Kara 			 */
330297a851edSJan Kara 			iocb->private = ext4_get_io_end(io_end);
33038d5d02e6SMingming Cao 			/*
330469c499d1STheodore Ts'o 			 * we save the io structure for current async direct
330569c499d1STheodore Ts'o 			 * IO, so that later ext4_map_blocks() could flag the
330669c499d1STheodore Ts'o 			 * io structure whether there is a unwritten extents
330769c499d1STheodore Ts'o 			 * needs to be converted when IO is completed.
33088d5d02e6SMingming Cao 			 */
3309f45ee3a1SDmitry Monakhov 			ext4_inode_aio_set(inode, io_end);
33108d5d02e6SMingming Cao 		}
33118b0f165fSAnatol Pomozov 		get_block_func = ext4_get_block_write;
33128b0f165fSAnatol Pomozov 		dio_flags = DIO_LOCKING;
33138b0f165fSAnatol Pomozov 	}
33142058f83aSMichael Halcrow #ifdef CONFIG_EXT4_FS_ENCRYPTION
33152058f83aSMichael Halcrow 	BUG_ON(ext4_encrypted_inode(inode) && S_ISREG(inode->i_mode));
33162058f83aSMichael Halcrow #endif
3317923ae0ffSRoss Zwisler 	if (IS_DAX(inode))
3318a95cd631SOmar Sandoval 		ret = dax_do_io(iocb, inode, iter, offset, get_block_func,
3319923ae0ffSRoss Zwisler 				ext4_end_io_dio, dio_flags);
3320923ae0ffSRoss Zwisler 	else
332117f8c842SOmar Sandoval 		ret = __blockdev_direct_IO(iocb, inode,
3322923ae0ffSRoss Zwisler 					   inode->i_sb->s_bdev, iter, offset,
33238b0f165fSAnatol Pomozov 					   get_block_func,
3324923ae0ffSRoss Zwisler 					   ext4_end_io_dio, NULL, dio_flags);
33258b0f165fSAnatol Pomozov 
33264eec708dSJan Kara 	/*
332797a851edSJan Kara 	 * Put our reference to io_end. This can free the io_end structure e.g.
332897a851edSJan Kara 	 * in sync IO case or in case of error. It can even perform extent
332997a851edSJan Kara 	 * conversion if all bios we submitted finished before we got here.
333097a851edSJan Kara 	 * Note that in that case iocb->private can be already set to NULL
333197a851edSJan Kara 	 * here.
33324eec708dSJan Kara 	 */
333397a851edSJan Kara 	if (io_end) {
333497a851edSJan Kara 		ext4_inode_aio_set(inode, NULL);
333597a851edSJan Kara 		ext4_put_io_end(io_end);
333697a851edSJan Kara 		/*
333797a851edSJan Kara 		 * When no IO was submitted ext4_end_io_dio() was not
333897a851edSJan Kara 		 * called so we have to put iocb's reference.
333997a851edSJan Kara 		 */
334097a851edSJan Kara 		if (ret <= 0 && ret != -EIOCBQUEUED && iocb->private) {
334197a851edSJan Kara 			WARN_ON(iocb->private != io_end);
334297a851edSJan Kara 			WARN_ON(io_end->flag & EXT4_IO_END_UNWRITTEN);
334397a851edSJan Kara 			ext4_put_io_end(io_end);
33448d5d02e6SMingming Cao 			iocb->private = NULL;
334597a851edSJan Kara 		}
334697a851edSJan Kara 	}
334797a851edSJan Kara 	if (ret > 0 && !overwrite && ext4_test_inode_state(inode,
33485f524950SMingming 						EXT4_STATE_DIO_UNWRITTEN)) {
3349109f5565SMingming 		int err;
33508d5d02e6SMingming Cao 		/*
33518d5d02e6SMingming Cao 		 * for non AIO case, since the IO is already
335225985edcSLucas De Marchi 		 * completed, we could do the conversion right here
33538d5d02e6SMingming Cao 		 */
33546b523df4SJan Kara 		err = ext4_convert_unwritten_extents(NULL, inode,
33558d5d02e6SMingming Cao 						     offset, ret);
3356109f5565SMingming 		if (err < 0)
3357109f5565SMingming 			ret = err;
335819f5fb7aSTheodore Ts'o 		ext4_clear_inode_state(inode, EXT4_STATE_DIO_UNWRITTEN);
3359109f5565SMingming 	}
33604bd809dbSZheng Liu 
33614bd809dbSZheng Liu retake_lock:
33626f673763SOmar Sandoval 	if (iov_iter_rw(iter) == WRITE)
3363fe0f07d0SJens Axboe 		inode_dio_end(inode);
33644bd809dbSZheng Liu 	/* take i_mutex locking again if we do a ovewrite dio */
33652dcba478SJan Kara 	if (overwrite)
33665955102cSAl Viro 		inode_lock(inode);
33674bd809dbSZheng Liu 
33684c0425ffSMingming Cao 	return ret;
33694c0425ffSMingming Cao }
33708d5d02e6SMingming Cao 
337122c6186eSOmar Sandoval static ssize_t ext4_direct_IO(struct kiocb *iocb, struct iov_iter *iter,
337222c6186eSOmar Sandoval 			      loff_t offset)
33734c0425ffSMingming Cao {
33744c0425ffSMingming Cao 	struct file *file = iocb->ki_filp;
33754c0425ffSMingming Cao 	struct inode *inode = file->f_mapping->host;
3376a6cbcd4aSAl Viro 	size_t count = iov_iter_count(iter);
33770562e0baSJiaying Zhang 	ssize_t ret;
33784c0425ffSMingming Cao 
33792058f83aSMichael Halcrow #ifdef CONFIG_EXT4_FS_ENCRYPTION
33802058f83aSMichael Halcrow 	if (ext4_encrypted_inode(inode) && S_ISREG(inode->i_mode))
33812058f83aSMichael Halcrow 		return 0;
33822058f83aSMichael Halcrow #endif
33832058f83aSMichael Halcrow 
338484ebd795STheodore Ts'o 	/*
338584ebd795STheodore Ts'o 	 * If we are doing data journalling we don't support O_DIRECT
338684ebd795STheodore Ts'o 	 */
338784ebd795STheodore Ts'o 	if (ext4_should_journal_data(inode))
338884ebd795STheodore Ts'o 		return 0;
338984ebd795STheodore Ts'o 
339046c7f254STao Ma 	/* Let buffer I/O handle the inline data case. */
339146c7f254STao Ma 	if (ext4_has_inline_data(inode))
339246c7f254STao Ma 		return 0;
339346c7f254STao Ma 
33946f673763SOmar Sandoval 	trace_ext4_direct_IO_enter(inode, offset, count, iov_iter_rw(iter));
339512e9b892SDmitry Monakhov 	if (ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS))
33966f673763SOmar Sandoval 		ret = ext4_ext_direct_IO(iocb, iter, offset);
33970562e0baSJiaying Zhang 	else
33986f673763SOmar Sandoval 		ret = ext4_ind_direct_IO(iocb, iter, offset);
33996f673763SOmar Sandoval 	trace_ext4_direct_IO_exit(inode, offset, count, iov_iter_rw(iter), ret);
34000562e0baSJiaying Zhang 	return ret;
34014c0425ffSMingming Cao }
34024c0425ffSMingming Cao 
3403ac27a0ecSDave Kleikamp /*
3404617ba13bSMingming Cao  * Pages can be marked dirty completely asynchronously from ext4's journalling
3405ac27a0ecSDave Kleikamp  * activity.  By filemap_sync_pte(), try_to_unmap_one(), etc.  We cannot do
3406ac27a0ecSDave Kleikamp  * much here because ->set_page_dirty is called under VFS locks.  The page is
3407ac27a0ecSDave Kleikamp  * not necessarily locked.
3408ac27a0ecSDave Kleikamp  *
3409ac27a0ecSDave Kleikamp  * We cannot just dirty the page and leave attached buffers clean, because the
3410ac27a0ecSDave Kleikamp  * buffers' dirty state is "definitive".  We cannot just set the buffers dirty
3411ac27a0ecSDave Kleikamp  * or jbddirty because all the journalling code will explode.
3412ac27a0ecSDave Kleikamp  *
3413ac27a0ecSDave Kleikamp  * So what we do is to mark the page "pending dirty" and next time writepage
3414ac27a0ecSDave Kleikamp  * is called, propagate that into the buffers appropriately.
3415ac27a0ecSDave Kleikamp  */
3416617ba13bSMingming Cao static int ext4_journalled_set_page_dirty(struct page *page)
3417ac27a0ecSDave Kleikamp {
3418ac27a0ecSDave Kleikamp 	SetPageChecked(page);
3419ac27a0ecSDave Kleikamp 	return __set_page_dirty_nobuffers(page);
3420ac27a0ecSDave Kleikamp }
3421ac27a0ecSDave Kleikamp 
342274d553aaSTheodore Ts'o static const struct address_space_operations ext4_aops = {
3423617ba13bSMingming Cao 	.readpage		= ext4_readpage,
3424617ba13bSMingming Cao 	.readpages		= ext4_readpages,
342543ce1d23SAneesh Kumar K.V 	.writepage		= ext4_writepage,
342620970ba6STheodore Ts'o 	.writepages		= ext4_writepages,
3427bfc1af65SNick Piggin 	.write_begin		= ext4_write_begin,
342874d553aaSTheodore Ts'o 	.write_end		= ext4_write_end,
3429617ba13bSMingming Cao 	.bmap			= ext4_bmap,
3430617ba13bSMingming Cao 	.invalidatepage		= ext4_invalidatepage,
3431617ba13bSMingming Cao 	.releasepage		= ext4_releasepage,
3432617ba13bSMingming Cao 	.direct_IO		= ext4_direct_IO,
3433ac27a0ecSDave Kleikamp 	.migratepage		= buffer_migrate_page,
34348ab22b9aSHisashi Hifumi 	.is_partially_uptodate  = block_is_partially_uptodate,
3435aa261f54SAndi Kleen 	.error_remove_page	= generic_error_remove_page,
3436ac27a0ecSDave Kleikamp };
3437ac27a0ecSDave Kleikamp 
3438617ba13bSMingming Cao static const struct address_space_operations ext4_journalled_aops = {
3439617ba13bSMingming Cao 	.readpage		= ext4_readpage,
3440617ba13bSMingming Cao 	.readpages		= ext4_readpages,
344143ce1d23SAneesh Kumar K.V 	.writepage		= ext4_writepage,
344220970ba6STheodore Ts'o 	.writepages		= ext4_writepages,
3443bfc1af65SNick Piggin 	.write_begin		= ext4_write_begin,
3444bfc1af65SNick Piggin 	.write_end		= ext4_journalled_write_end,
3445617ba13bSMingming Cao 	.set_page_dirty		= ext4_journalled_set_page_dirty,
3446617ba13bSMingming Cao 	.bmap			= ext4_bmap,
34474520fb3cSJan Kara 	.invalidatepage		= ext4_journalled_invalidatepage,
3448617ba13bSMingming Cao 	.releasepage		= ext4_releasepage,
344984ebd795STheodore Ts'o 	.direct_IO		= ext4_direct_IO,
34508ab22b9aSHisashi Hifumi 	.is_partially_uptodate  = block_is_partially_uptodate,
3451aa261f54SAndi Kleen 	.error_remove_page	= generic_error_remove_page,
3452ac27a0ecSDave Kleikamp };
3453ac27a0ecSDave Kleikamp 
345464769240SAlex Tomas static const struct address_space_operations ext4_da_aops = {
345564769240SAlex Tomas 	.readpage		= ext4_readpage,
345664769240SAlex Tomas 	.readpages		= ext4_readpages,
345743ce1d23SAneesh Kumar K.V 	.writepage		= ext4_writepage,
345820970ba6STheodore Ts'o 	.writepages		= ext4_writepages,
345964769240SAlex Tomas 	.write_begin		= ext4_da_write_begin,
346064769240SAlex Tomas 	.write_end		= ext4_da_write_end,
346164769240SAlex Tomas 	.bmap			= ext4_bmap,
346264769240SAlex Tomas 	.invalidatepage		= ext4_da_invalidatepage,
346364769240SAlex Tomas 	.releasepage		= ext4_releasepage,
346464769240SAlex Tomas 	.direct_IO		= ext4_direct_IO,
346564769240SAlex Tomas 	.migratepage		= buffer_migrate_page,
34668ab22b9aSHisashi Hifumi 	.is_partially_uptodate  = block_is_partially_uptodate,
3467aa261f54SAndi Kleen 	.error_remove_page	= generic_error_remove_page,
346864769240SAlex Tomas };
346964769240SAlex Tomas 
3470617ba13bSMingming Cao void ext4_set_aops(struct inode *inode)
3471ac27a0ecSDave Kleikamp {
34723d2b1582SLukas Czerner 	switch (ext4_inode_journal_mode(inode)) {
34733d2b1582SLukas Czerner 	case EXT4_INODE_ORDERED_DATA_MODE:
347474d553aaSTheodore Ts'o 		ext4_set_inode_state(inode, EXT4_STATE_ORDERED_MODE);
34753d2b1582SLukas Czerner 		break;
34763d2b1582SLukas Czerner 	case EXT4_INODE_WRITEBACK_DATA_MODE:
347774d553aaSTheodore Ts'o 		ext4_clear_inode_state(inode, EXT4_STATE_ORDERED_MODE);
34783d2b1582SLukas Czerner 		break;
34793d2b1582SLukas Czerner 	case EXT4_INODE_JOURNAL_DATA_MODE:
3480617ba13bSMingming Cao 		inode->i_mapping->a_ops = &ext4_journalled_aops;
348174d553aaSTheodore Ts'o 		return;
34823d2b1582SLukas Czerner 	default:
34833d2b1582SLukas Czerner 		BUG();
34843d2b1582SLukas Czerner 	}
348574d553aaSTheodore Ts'o 	if (test_opt(inode->i_sb, DELALLOC))
348674d553aaSTheodore Ts'o 		inode->i_mapping->a_ops = &ext4_da_aops;
348774d553aaSTheodore Ts'o 	else
348874d553aaSTheodore Ts'o 		inode->i_mapping->a_ops = &ext4_aops;
3489ac27a0ecSDave Kleikamp }
3490ac27a0ecSDave Kleikamp 
3491923ae0ffSRoss Zwisler static int __ext4_block_zero_page_range(handle_t *handle,
3492d863dc36SLukas Czerner 		struct address_space *mapping, loff_t from, loff_t length)
3493d863dc36SLukas Czerner {
3494d863dc36SLukas Czerner 	ext4_fsblk_t index = from >> PAGE_CACHE_SHIFT;
3495d863dc36SLukas Czerner 	unsigned offset = from & (PAGE_CACHE_SIZE-1);
3496923ae0ffSRoss Zwisler 	unsigned blocksize, pos;
3497d863dc36SLukas Czerner 	ext4_lblk_t iblock;
3498d863dc36SLukas Czerner 	struct inode *inode = mapping->host;
3499d863dc36SLukas Czerner 	struct buffer_head *bh;
3500d863dc36SLukas Czerner 	struct page *page;
3501d863dc36SLukas Czerner 	int err = 0;
3502d863dc36SLukas Czerner 
3503d863dc36SLukas Czerner 	page = find_or_create_page(mapping, from >> PAGE_CACHE_SHIFT,
3504c62d2555SMichal Hocko 				   mapping_gfp_constraint(mapping, ~__GFP_FS));
3505d863dc36SLukas Czerner 	if (!page)
3506d863dc36SLukas Czerner 		return -ENOMEM;
3507d863dc36SLukas Czerner 
3508d863dc36SLukas Czerner 	blocksize = inode->i_sb->s_blocksize;
3509d863dc36SLukas Czerner 
3510d863dc36SLukas Czerner 	iblock = index << (PAGE_CACHE_SHIFT - inode->i_sb->s_blocksize_bits);
3511d863dc36SLukas Czerner 
3512d863dc36SLukas Czerner 	if (!page_has_buffers(page))
3513d863dc36SLukas Czerner 		create_empty_buffers(page, blocksize, 0);
3514d863dc36SLukas Czerner 
3515d863dc36SLukas Czerner 	/* Find the buffer that contains "offset" */
3516d863dc36SLukas Czerner 	bh = page_buffers(page);
3517d863dc36SLukas Czerner 	pos = blocksize;
3518d863dc36SLukas Czerner 	while (offset >= pos) {
3519d863dc36SLukas Czerner 		bh = bh->b_this_page;
3520d863dc36SLukas Czerner 		iblock++;
3521d863dc36SLukas Czerner 		pos += blocksize;
3522d863dc36SLukas Czerner 	}
3523d863dc36SLukas Czerner 	if (buffer_freed(bh)) {
3524d863dc36SLukas Czerner 		BUFFER_TRACE(bh, "freed: skip");
3525d863dc36SLukas Czerner 		goto unlock;
3526d863dc36SLukas Czerner 	}
3527d863dc36SLukas Czerner 	if (!buffer_mapped(bh)) {
3528d863dc36SLukas Czerner 		BUFFER_TRACE(bh, "unmapped");
3529d863dc36SLukas Czerner 		ext4_get_block(inode, iblock, bh, 0);
3530d863dc36SLukas Czerner 		/* unmapped? It's a hole - nothing to do */
3531d863dc36SLukas Czerner 		if (!buffer_mapped(bh)) {
3532d863dc36SLukas Czerner 			BUFFER_TRACE(bh, "still unmapped");
3533d863dc36SLukas Czerner 			goto unlock;
3534d863dc36SLukas Czerner 		}
3535d863dc36SLukas Czerner 	}
3536d863dc36SLukas Czerner 
3537d863dc36SLukas Czerner 	/* Ok, it's mapped. Make sure it's up-to-date */
3538d863dc36SLukas Czerner 	if (PageUptodate(page))
3539d863dc36SLukas Czerner 		set_buffer_uptodate(bh);
3540d863dc36SLukas Czerner 
3541d863dc36SLukas Czerner 	if (!buffer_uptodate(bh)) {
3542d863dc36SLukas Czerner 		err = -EIO;
3543d863dc36SLukas Czerner 		ll_rw_block(READ, 1, &bh);
3544d863dc36SLukas Czerner 		wait_on_buffer(bh);
3545d863dc36SLukas Czerner 		/* Uhhuh. Read error. Complain and punt. */
3546d863dc36SLukas Czerner 		if (!buffer_uptodate(bh))
3547d863dc36SLukas Czerner 			goto unlock;
3548c9c7429cSMichael Halcrow 		if (S_ISREG(inode->i_mode) &&
3549c9c7429cSMichael Halcrow 		    ext4_encrypted_inode(inode)) {
3550c9c7429cSMichael Halcrow 			/* We expect the key to be set. */
3551c9c7429cSMichael Halcrow 			BUG_ON(!ext4_has_encryption_key(inode));
3552c9c7429cSMichael Halcrow 			BUG_ON(blocksize != PAGE_CACHE_SIZE);
35533684de8cSTheodore Ts'o 			WARN_ON_ONCE(ext4_decrypt(page));
3554c9c7429cSMichael Halcrow 		}
3555d863dc36SLukas Czerner 	}
3556d863dc36SLukas Czerner 	if (ext4_should_journal_data(inode)) {
3557d863dc36SLukas Czerner 		BUFFER_TRACE(bh, "get write access");
3558d863dc36SLukas Czerner 		err = ext4_journal_get_write_access(handle, bh);
3559d863dc36SLukas Czerner 		if (err)
3560d863dc36SLukas Czerner 			goto unlock;
3561d863dc36SLukas Czerner 	}
3562d863dc36SLukas Czerner 	zero_user(page, offset, length);
3563d863dc36SLukas Czerner 	BUFFER_TRACE(bh, "zeroed end of block");
3564d863dc36SLukas Czerner 
3565d863dc36SLukas Czerner 	if (ext4_should_journal_data(inode)) {
3566d863dc36SLukas Czerner 		err = ext4_handle_dirty_metadata(handle, inode, bh);
35670713ed0cSLukas Czerner 	} else {
3568353eefd3Sjon ernst 		err = 0;
3569d863dc36SLukas Czerner 		mark_buffer_dirty(bh);
35700713ed0cSLukas Czerner 		if (ext4_test_inode_state(inode, EXT4_STATE_ORDERED_MODE))
35710713ed0cSLukas Czerner 			err = ext4_jbd2_file_inode(handle, inode);
35720713ed0cSLukas Czerner 	}
3573d863dc36SLukas Czerner 
3574d863dc36SLukas Czerner unlock:
3575d863dc36SLukas Czerner 	unlock_page(page);
3576d863dc36SLukas Czerner 	page_cache_release(page);
3577d863dc36SLukas Czerner 	return err;
3578d863dc36SLukas Czerner }
3579d863dc36SLukas Czerner 
358094350ab5SMatthew Wilcox /*
3581923ae0ffSRoss Zwisler  * ext4_block_zero_page_range() zeros out a mapping of length 'length'
3582923ae0ffSRoss Zwisler  * starting from file offset 'from'.  The range to be zero'd must
3583923ae0ffSRoss Zwisler  * be contained with in one block.  If the specified range exceeds
3584923ae0ffSRoss Zwisler  * the end of the block it will be shortened to end of the block
3585923ae0ffSRoss Zwisler  * that cooresponds to 'from'
3586923ae0ffSRoss Zwisler  */
3587923ae0ffSRoss Zwisler static int ext4_block_zero_page_range(handle_t *handle,
3588923ae0ffSRoss Zwisler 		struct address_space *mapping, loff_t from, loff_t length)
3589923ae0ffSRoss Zwisler {
3590923ae0ffSRoss Zwisler 	struct inode *inode = mapping->host;
3591923ae0ffSRoss Zwisler 	unsigned offset = from & (PAGE_CACHE_SIZE-1);
3592923ae0ffSRoss Zwisler 	unsigned blocksize = inode->i_sb->s_blocksize;
3593923ae0ffSRoss Zwisler 	unsigned max = blocksize - (offset & (blocksize - 1));
3594923ae0ffSRoss Zwisler 
3595923ae0ffSRoss Zwisler 	/*
3596923ae0ffSRoss Zwisler 	 * correct length if it does not fall between
3597923ae0ffSRoss Zwisler 	 * 'from' and the end of the block
3598923ae0ffSRoss Zwisler 	 */
3599923ae0ffSRoss Zwisler 	if (length > max || length < 0)
3600923ae0ffSRoss Zwisler 		length = max;
3601923ae0ffSRoss Zwisler 
3602923ae0ffSRoss Zwisler 	if (IS_DAX(inode))
3603923ae0ffSRoss Zwisler 		return dax_zero_page_range(inode, from, length, ext4_get_block);
3604923ae0ffSRoss Zwisler 	return __ext4_block_zero_page_range(handle, mapping, from, length);
3605923ae0ffSRoss Zwisler }
3606923ae0ffSRoss Zwisler 
3607923ae0ffSRoss Zwisler /*
360894350ab5SMatthew Wilcox  * ext4_block_truncate_page() zeroes out a mapping from file offset `from'
360994350ab5SMatthew Wilcox  * up to the end of the block which corresponds to `from'.
361094350ab5SMatthew Wilcox  * This required during truncate. We need to physically zero the tail end
361194350ab5SMatthew Wilcox  * of that block so it doesn't yield old data if the file is later grown.
361294350ab5SMatthew Wilcox  */
3613c197855eSStephen Hemminger static int ext4_block_truncate_page(handle_t *handle,
361494350ab5SMatthew Wilcox 		struct address_space *mapping, loff_t from)
361594350ab5SMatthew Wilcox {
361694350ab5SMatthew Wilcox 	unsigned offset = from & (PAGE_CACHE_SIZE-1);
361794350ab5SMatthew Wilcox 	unsigned length;
361894350ab5SMatthew Wilcox 	unsigned blocksize;
361994350ab5SMatthew Wilcox 	struct inode *inode = mapping->host;
362094350ab5SMatthew Wilcox 
362194350ab5SMatthew Wilcox 	blocksize = inode->i_sb->s_blocksize;
362294350ab5SMatthew Wilcox 	length = blocksize - (offset & (blocksize - 1));
362394350ab5SMatthew Wilcox 
362494350ab5SMatthew Wilcox 	return ext4_block_zero_page_range(handle, mapping, from, length);
362594350ab5SMatthew Wilcox }
362694350ab5SMatthew Wilcox 
3627a87dd18cSLukas Czerner int ext4_zero_partial_blocks(handle_t *handle, struct inode *inode,
3628a87dd18cSLukas Czerner 			     loff_t lstart, loff_t length)
3629a87dd18cSLukas Czerner {
3630a87dd18cSLukas Czerner 	struct super_block *sb = inode->i_sb;
3631a87dd18cSLukas Czerner 	struct address_space *mapping = inode->i_mapping;
3632e1be3a92SLukas Czerner 	unsigned partial_start, partial_end;
3633a87dd18cSLukas Czerner 	ext4_fsblk_t start, end;
3634a87dd18cSLukas Czerner 	loff_t byte_end = (lstart + length - 1);
3635a87dd18cSLukas Czerner 	int err = 0;
3636a87dd18cSLukas Czerner 
3637e1be3a92SLukas Czerner 	partial_start = lstart & (sb->s_blocksize - 1);
3638e1be3a92SLukas Czerner 	partial_end = byte_end & (sb->s_blocksize - 1);
3639e1be3a92SLukas Czerner 
3640a87dd18cSLukas Czerner 	start = lstart >> sb->s_blocksize_bits;
3641a87dd18cSLukas Czerner 	end = byte_end >> sb->s_blocksize_bits;
3642a87dd18cSLukas Czerner 
3643a87dd18cSLukas Czerner 	/* Handle partial zero within the single block */
3644e1be3a92SLukas Czerner 	if (start == end &&
3645e1be3a92SLukas Czerner 	    (partial_start || (partial_end != sb->s_blocksize - 1))) {
3646a87dd18cSLukas Czerner 		err = ext4_block_zero_page_range(handle, mapping,
3647a87dd18cSLukas Czerner 						 lstart, length);
3648a87dd18cSLukas Czerner 		return err;
3649a87dd18cSLukas Czerner 	}
3650a87dd18cSLukas Czerner 	/* Handle partial zero out on the start of the range */
3651e1be3a92SLukas Czerner 	if (partial_start) {
3652a87dd18cSLukas Czerner 		err = ext4_block_zero_page_range(handle, mapping,
3653a87dd18cSLukas Czerner 						 lstart, sb->s_blocksize);
3654a87dd18cSLukas Czerner 		if (err)
3655a87dd18cSLukas Czerner 			return err;
3656a87dd18cSLukas Czerner 	}
3657a87dd18cSLukas Czerner 	/* Handle partial zero out on the end of the range */
3658e1be3a92SLukas Czerner 	if (partial_end != sb->s_blocksize - 1)
3659a87dd18cSLukas Czerner 		err = ext4_block_zero_page_range(handle, mapping,
3660e1be3a92SLukas Czerner 						 byte_end - partial_end,
3661e1be3a92SLukas Czerner 						 partial_end + 1);
3662a87dd18cSLukas Czerner 	return err;
3663a87dd18cSLukas Czerner }
3664a87dd18cSLukas Czerner 
366591ef4cafSDuane Griffin int ext4_can_truncate(struct inode *inode)
366691ef4cafSDuane Griffin {
366791ef4cafSDuane Griffin 	if (S_ISREG(inode->i_mode))
366891ef4cafSDuane Griffin 		return 1;
366991ef4cafSDuane Griffin 	if (S_ISDIR(inode->i_mode))
367091ef4cafSDuane Griffin 		return 1;
367191ef4cafSDuane Griffin 	if (S_ISLNK(inode->i_mode))
367291ef4cafSDuane Griffin 		return !ext4_inode_is_fast_symlink(inode);
367391ef4cafSDuane Griffin 	return 0;
367491ef4cafSDuane Griffin }
367591ef4cafSDuane Griffin 
3676ac27a0ecSDave Kleikamp /*
367701127848SJan Kara  * We have to make sure i_disksize gets properly updated before we truncate
367801127848SJan Kara  * page cache due to hole punching or zero range. Otherwise i_disksize update
367901127848SJan Kara  * can get lost as it may have been postponed to submission of writeback but
368001127848SJan Kara  * that will never happen after we truncate page cache.
368101127848SJan Kara  */
368201127848SJan Kara int ext4_update_disksize_before_punch(struct inode *inode, loff_t offset,
368301127848SJan Kara 				      loff_t len)
368401127848SJan Kara {
368501127848SJan Kara 	handle_t *handle;
368601127848SJan Kara 	loff_t size = i_size_read(inode);
368701127848SJan Kara 
36885955102cSAl Viro 	WARN_ON(!inode_is_locked(inode));
368901127848SJan Kara 	if (offset > size || offset + len < size)
369001127848SJan Kara 		return 0;
369101127848SJan Kara 
369201127848SJan Kara 	if (EXT4_I(inode)->i_disksize >= size)
369301127848SJan Kara 		return 0;
369401127848SJan Kara 
369501127848SJan Kara 	handle = ext4_journal_start(inode, EXT4_HT_MISC, 1);
369601127848SJan Kara 	if (IS_ERR(handle))
369701127848SJan Kara 		return PTR_ERR(handle);
369801127848SJan Kara 	ext4_update_i_disksize(inode, size);
369901127848SJan Kara 	ext4_mark_inode_dirty(handle, inode);
370001127848SJan Kara 	ext4_journal_stop(handle);
370101127848SJan Kara 
370201127848SJan Kara 	return 0;
370301127848SJan Kara }
370401127848SJan Kara 
370501127848SJan Kara /*
3706a4bb6b64SAllison Henderson  * ext4_punch_hole: punches a hole in a file by releaseing the blocks
3707a4bb6b64SAllison Henderson  * associated with the given offset and length
3708a4bb6b64SAllison Henderson  *
3709a4bb6b64SAllison Henderson  * @inode:  File inode
3710a4bb6b64SAllison Henderson  * @offset: The offset where the hole will begin
3711a4bb6b64SAllison Henderson  * @len:    The length of the hole
3712a4bb6b64SAllison Henderson  *
37134907cb7bSAnatol Pomozov  * Returns: 0 on success or negative on failure
3714a4bb6b64SAllison Henderson  */
3715a4bb6b64SAllison Henderson 
3716aeb2817aSAshish Sangwan int ext4_punch_hole(struct inode *inode, loff_t offset, loff_t length)
3717a4bb6b64SAllison Henderson {
371826a4c0c6STheodore Ts'o 	struct super_block *sb = inode->i_sb;
371926a4c0c6STheodore Ts'o 	ext4_lblk_t first_block, stop_block;
372026a4c0c6STheodore Ts'o 	struct address_space *mapping = inode->i_mapping;
3721a87dd18cSLukas Czerner 	loff_t first_block_offset, last_block_offset;
372226a4c0c6STheodore Ts'o 	handle_t *handle;
372326a4c0c6STheodore Ts'o 	unsigned int credits;
372426a4c0c6STheodore Ts'o 	int ret = 0;
372526a4c0c6STheodore Ts'o 
3726a4bb6b64SAllison Henderson 	if (!S_ISREG(inode->i_mode))
372773355192SAllison Henderson 		return -EOPNOTSUPP;
3728a4bb6b64SAllison Henderson 
3729b8a86845SLukas Czerner 	trace_ext4_punch_hole(inode, offset, length, 0);
3730aaddea81SZheng Liu 
373126a4c0c6STheodore Ts'o 	/*
373226a4c0c6STheodore Ts'o 	 * Write out all dirty pages to avoid race conditions
373326a4c0c6STheodore Ts'o 	 * Then release them.
373426a4c0c6STheodore Ts'o 	 */
373526a4c0c6STheodore Ts'o 	if (mapping->nrpages && mapping_tagged(mapping, PAGECACHE_TAG_DIRTY)) {
373626a4c0c6STheodore Ts'o 		ret = filemap_write_and_wait_range(mapping, offset,
373726a4c0c6STheodore Ts'o 						   offset + length - 1);
373826a4c0c6STheodore Ts'o 		if (ret)
373926a4c0c6STheodore Ts'o 			return ret;
374026a4c0c6STheodore Ts'o 	}
374126a4c0c6STheodore Ts'o 
37425955102cSAl Viro 	inode_lock(inode);
37439ef06cecSLukas Czerner 
374426a4c0c6STheodore Ts'o 	/* No need to punch hole beyond i_size */
374526a4c0c6STheodore Ts'o 	if (offset >= inode->i_size)
374626a4c0c6STheodore Ts'o 		goto out_mutex;
374726a4c0c6STheodore Ts'o 
374826a4c0c6STheodore Ts'o 	/*
374926a4c0c6STheodore Ts'o 	 * If the hole extends beyond i_size, set the hole
375026a4c0c6STheodore Ts'o 	 * to end after the page that contains i_size
375126a4c0c6STheodore Ts'o 	 */
375226a4c0c6STheodore Ts'o 	if (offset + length > inode->i_size) {
375326a4c0c6STheodore Ts'o 		length = inode->i_size +
375426a4c0c6STheodore Ts'o 		   PAGE_CACHE_SIZE - (inode->i_size & (PAGE_CACHE_SIZE - 1)) -
375526a4c0c6STheodore Ts'o 		   offset;
375626a4c0c6STheodore Ts'o 	}
375726a4c0c6STheodore Ts'o 
3758a361293fSJan Kara 	if (offset & (sb->s_blocksize - 1) ||
3759a361293fSJan Kara 	    (offset + length) & (sb->s_blocksize - 1)) {
3760a361293fSJan Kara 		/*
3761a361293fSJan Kara 		 * Attach jinode to inode for jbd2 if we do any zeroing of
3762a361293fSJan Kara 		 * partial block
3763a361293fSJan Kara 		 */
3764a361293fSJan Kara 		ret = ext4_inode_attach_jinode(inode);
3765a361293fSJan Kara 		if (ret < 0)
3766a361293fSJan Kara 			goto out_mutex;
3767a361293fSJan Kara 
3768a361293fSJan Kara 	}
3769a361293fSJan Kara 
3770ea3d7209SJan Kara 	/* Wait all existing dio workers, newcomers will block on i_mutex */
3771ea3d7209SJan Kara 	ext4_inode_block_unlocked_dio(inode);
3772ea3d7209SJan Kara 	inode_dio_wait(inode);
3773ea3d7209SJan Kara 
3774ea3d7209SJan Kara 	/*
3775ea3d7209SJan Kara 	 * Prevent page faults from reinstantiating pages we have released from
3776ea3d7209SJan Kara 	 * page cache.
3777ea3d7209SJan Kara 	 */
3778ea3d7209SJan Kara 	down_write(&EXT4_I(inode)->i_mmap_sem);
3779a87dd18cSLukas Czerner 	first_block_offset = round_up(offset, sb->s_blocksize);
3780a87dd18cSLukas Czerner 	last_block_offset = round_down((offset + length), sb->s_blocksize) - 1;
378126a4c0c6STheodore Ts'o 
3782a87dd18cSLukas Czerner 	/* Now release the pages and zero block aligned part of pages*/
378301127848SJan Kara 	if (last_block_offset > first_block_offset) {
378401127848SJan Kara 		ret = ext4_update_disksize_before_punch(inode, offset, length);
378501127848SJan Kara 		if (ret)
378601127848SJan Kara 			goto out_dio;
3787a87dd18cSLukas Czerner 		truncate_pagecache_range(inode, first_block_offset,
3788a87dd18cSLukas Czerner 					 last_block_offset);
378901127848SJan Kara 	}
379026a4c0c6STheodore Ts'o 
379126a4c0c6STheodore Ts'o 	if (ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS))
379226a4c0c6STheodore Ts'o 		credits = ext4_writepage_trans_blocks(inode);
379326a4c0c6STheodore Ts'o 	else
379426a4c0c6STheodore Ts'o 		credits = ext4_blocks_for_truncate(inode);
379526a4c0c6STheodore Ts'o 	handle = ext4_journal_start(inode, EXT4_HT_TRUNCATE, credits);
379626a4c0c6STheodore Ts'o 	if (IS_ERR(handle)) {
379726a4c0c6STheodore Ts'o 		ret = PTR_ERR(handle);
379826a4c0c6STheodore Ts'o 		ext4_std_error(sb, ret);
379926a4c0c6STheodore Ts'o 		goto out_dio;
380026a4c0c6STheodore Ts'o 	}
380126a4c0c6STheodore Ts'o 
3802a87dd18cSLukas Czerner 	ret = ext4_zero_partial_blocks(handle, inode, offset,
3803a87dd18cSLukas Czerner 				       length);
380426a4c0c6STheodore Ts'o 	if (ret)
380526a4c0c6STheodore Ts'o 		goto out_stop;
380626a4c0c6STheodore Ts'o 
380726a4c0c6STheodore Ts'o 	first_block = (offset + sb->s_blocksize - 1) >>
380826a4c0c6STheodore Ts'o 		EXT4_BLOCK_SIZE_BITS(sb);
380926a4c0c6STheodore Ts'o 	stop_block = (offset + length) >> EXT4_BLOCK_SIZE_BITS(sb);
381026a4c0c6STheodore Ts'o 
381126a4c0c6STheodore Ts'o 	/* If there are no blocks to remove, return now */
381226a4c0c6STheodore Ts'o 	if (first_block >= stop_block)
381326a4c0c6STheodore Ts'o 		goto out_stop;
381426a4c0c6STheodore Ts'o 
381526a4c0c6STheodore Ts'o 	down_write(&EXT4_I(inode)->i_data_sem);
381626a4c0c6STheodore Ts'o 	ext4_discard_preallocations(inode);
381726a4c0c6STheodore Ts'o 
381826a4c0c6STheodore Ts'o 	ret = ext4_es_remove_extent(inode, first_block,
381926a4c0c6STheodore Ts'o 				    stop_block - first_block);
382026a4c0c6STheodore Ts'o 	if (ret) {
382126a4c0c6STheodore Ts'o 		up_write(&EXT4_I(inode)->i_data_sem);
382226a4c0c6STheodore Ts'o 		goto out_stop;
382326a4c0c6STheodore Ts'o 	}
382426a4c0c6STheodore Ts'o 
382526a4c0c6STheodore Ts'o 	if (ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS))
382626a4c0c6STheodore Ts'o 		ret = ext4_ext_remove_space(inode, first_block,
382726a4c0c6STheodore Ts'o 					    stop_block - 1);
382826a4c0c6STheodore Ts'o 	else
38294f579ae7SLukas Czerner 		ret = ext4_ind_remove_space(handle, inode, first_block,
383026a4c0c6STheodore Ts'o 					    stop_block);
383126a4c0c6STheodore Ts'o 
3832819c4920STheodore Ts'o 	up_write(&EXT4_I(inode)->i_data_sem);
383326a4c0c6STheodore Ts'o 	if (IS_SYNC(inode))
383426a4c0c6STheodore Ts'o 		ext4_handle_sync(handle);
3835e251f9bcSMaxim Patlasov 
383626a4c0c6STheodore Ts'o 	inode->i_mtime = inode->i_ctime = ext4_current_time(inode);
383726a4c0c6STheodore Ts'o 	ext4_mark_inode_dirty(handle, inode);
383826a4c0c6STheodore Ts'o out_stop:
383926a4c0c6STheodore Ts'o 	ext4_journal_stop(handle);
384026a4c0c6STheodore Ts'o out_dio:
3841ea3d7209SJan Kara 	up_write(&EXT4_I(inode)->i_mmap_sem);
384226a4c0c6STheodore Ts'o 	ext4_inode_resume_unlocked_dio(inode);
384326a4c0c6STheodore Ts'o out_mutex:
38445955102cSAl Viro 	inode_unlock(inode);
384526a4c0c6STheodore Ts'o 	return ret;
3846a4bb6b64SAllison Henderson }
3847a4bb6b64SAllison Henderson 
3848a361293fSJan Kara int ext4_inode_attach_jinode(struct inode *inode)
3849a361293fSJan Kara {
3850a361293fSJan Kara 	struct ext4_inode_info *ei = EXT4_I(inode);
3851a361293fSJan Kara 	struct jbd2_inode *jinode;
3852a361293fSJan Kara 
3853a361293fSJan Kara 	if (ei->jinode || !EXT4_SB(inode->i_sb)->s_journal)
3854a361293fSJan Kara 		return 0;
3855a361293fSJan Kara 
3856a361293fSJan Kara 	jinode = jbd2_alloc_inode(GFP_KERNEL);
3857a361293fSJan Kara 	spin_lock(&inode->i_lock);
3858a361293fSJan Kara 	if (!ei->jinode) {
3859a361293fSJan Kara 		if (!jinode) {
3860a361293fSJan Kara 			spin_unlock(&inode->i_lock);
3861a361293fSJan Kara 			return -ENOMEM;
3862a361293fSJan Kara 		}
3863a361293fSJan Kara 		ei->jinode = jinode;
3864a361293fSJan Kara 		jbd2_journal_init_jbd_inode(ei->jinode, inode);
3865a361293fSJan Kara 		jinode = NULL;
3866a361293fSJan Kara 	}
3867a361293fSJan Kara 	spin_unlock(&inode->i_lock);
3868a361293fSJan Kara 	if (unlikely(jinode != NULL))
3869a361293fSJan Kara 		jbd2_free_inode(jinode);
3870a361293fSJan Kara 	return 0;
3871a361293fSJan Kara }
3872a361293fSJan Kara 
3873a4bb6b64SAllison Henderson /*
3874617ba13bSMingming Cao  * ext4_truncate()
3875ac27a0ecSDave Kleikamp  *
3876617ba13bSMingming Cao  * We block out ext4_get_block() block instantiations across the entire
3877617ba13bSMingming Cao  * transaction, and VFS/VM ensures that ext4_truncate() cannot run
3878ac27a0ecSDave Kleikamp  * simultaneously on behalf of the same inode.
3879ac27a0ecSDave Kleikamp  *
388042b2aa86SJustin P. Mattock  * As we work through the truncate and commit bits of it to the journal there
3881ac27a0ecSDave Kleikamp  * is one core, guiding principle: the file's tree must always be consistent on
3882ac27a0ecSDave Kleikamp  * disk.  We must be able to restart the truncate after a crash.
3883ac27a0ecSDave Kleikamp  *
3884ac27a0ecSDave Kleikamp  * The file's tree may be transiently inconsistent in memory (although it
3885ac27a0ecSDave Kleikamp  * probably isn't), but whenever we close off and commit a journal transaction,
3886ac27a0ecSDave Kleikamp  * the contents of (the filesystem + the journal) must be consistent and
3887ac27a0ecSDave Kleikamp  * restartable.  It's pretty simple, really: bottom up, right to left (although
3888ac27a0ecSDave Kleikamp  * left-to-right works OK too).
3889ac27a0ecSDave Kleikamp  *
3890ac27a0ecSDave Kleikamp  * Note that at recovery time, journal replay occurs *before* the restart of
3891ac27a0ecSDave Kleikamp  * truncate against the orphan inode list.
3892ac27a0ecSDave Kleikamp  *
3893ac27a0ecSDave Kleikamp  * The committed inode has the new, desired i_size (which is the same as
3894617ba13bSMingming Cao  * i_disksize in this case).  After a crash, ext4_orphan_cleanup() will see
3895ac27a0ecSDave Kleikamp  * that this inode's truncate did not complete and it will again call
3896617ba13bSMingming Cao  * ext4_truncate() to have another go.  So there will be instantiated blocks
3897617ba13bSMingming Cao  * to the right of the truncation point in a crashed ext4 filesystem.  But
3898ac27a0ecSDave Kleikamp  * that's fine - as long as they are linked from the inode, the post-crash
3899617ba13bSMingming Cao  * ext4_truncate() run will find them and release them.
3900ac27a0ecSDave Kleikamp  */
3901617ba13bSMingming Cao void ext4_truncate(struct inode *inode)
3902ac27a0ecSDave Kleikamp {
3903819c4920STheodore Ts'o 	struct ext4_inode_info *ei = EXT4_I(inode);
3904819c4920STheodore Ts'o 	unsigned int credits;
3905819c4920STheodore Ts'o 	handle_t *handle;
3906819c4920STheodore Ts'o 	struct address_space *mapping = inode->i_mapping;
3907819c4920STheodore Ts'o 
390819b5ef61STheodore Ts'o 	/*
390919b5ef61STheodore Ts'o 	 * There is a possibility that we're either freeing the inode
3910e04027e8SMatthew Wilcox 	 * or it's a completely new inode. In those cases we might not
391119b5ef61STheodore Ts'o 	 * have i_mutex locked because it's not necessary.
391219b5ef61STheodore Ts'o 	 */
391319b5ef61STheodore Ts'o 	if (!(inode->i_state & (I_NEW|I_FREEING)))
39145955102cSAl Viro 		WARN_ON(!inode_is_locked(inode));
39150562e0baSJiaying Zhang 	trace_ext4_truncate_enter(inode);
39160562e0baSJiaying Zhang 
391791ef4cafSDuane Griffin 	if (!ext4_can_truncate(inode))
3918ac27a0ecSDave Kleikamp 		return;
3919ac27a0ecSDave Kleikamp 
392012e9b892SDmitry Monakhov 	ext4_clear_inode_flag(inode, EXT4_INODE_EOFBLOCKS);
3921c8d46e41SJiaying Zhang 
39225534fb5bSTheodore Ts'o 	if (inode->i_size == 0 && !test_opt(inode->i_sb, NO_AUTO_DA_ALLOC))
392319f5fb7aSTheodore Ts'o 		ext4_set_inode_state(inode, EXT4_STATE_DA_ALLOC_CLOSE);
39247d8f9f7dSTheodore Ts'o 
3925aef1c851STao Ma 	if (ext4_has_inline_data(inode)) {
3926aef1c851STao Ma 		int has_inline = 1;
3927aef1c851STao Ma 
3928aef1c851STao Ma 		ext4_inline_data_truncate(inode, &has_inline);
3929aef1c851STao Ma 		if (has_inline)
3930aef1c851STao Ma 			return;
3931aef1c851STao Ma 	}
3932aef1c851STao Ma 
3933a361293fSJan Kara 	/* If we zero-out tail of the page, we have to create jinode for jbd2 */
3934a361293fSJan Kara 	if (inode->i_size & (inode->i_sb->s_blocksize - 1)) {
3935a361293fSJan Kara 		if (ext4_inode_attach_jinode(inode) < 0)
3936a361293fSJan Kara 			return;
3937a361293fSJan Kara 	}
3938a361293fSJan Kara 
3939ff9893dcSAmir Goldstein 	if (ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS))
3940819c4920STheodore Ts'o 		credits = ext4_writepage_trans_blocks(inode);
3941ff9893dcSAmir Goldstein 	else
3942819c4920STheodore Ts'o 		credits = ext4_blocks_for_truncate(inode);
3943819c4920STheodore Ts'o 
3944819c4920STheodore Ts'o 	handle = ext4_journal_start(inode, EXT4_HT_TRUNCATE, credits);
3945819c4920STheodore Ts'o 	if (IS_ERR(handle)) {
3946819c4920STheodore Ts'o 		ext4_std_error(inode->i_sb, PTR_ERR(handle));
3947819c4920STheodore Ts'o 		return;
3948819c4920STheodore Ts'o 	}
3949819c4920STheodore Ts'o 
3950eb3544c6SLukas Czerner 	if (inode->i_size & (inode->i_sb->s_blocksize - 1))
3951eb3544c6SLukas Czerner 		ext4_block_truncate_page(handle, mapping, inode->i_size);
3952819c4920STheodore Ts'o 
3953819c4920STheodore Ts'o 	/*
3954819c4920STheodore Ts'o 	 * We add the inode to the orphan list, so that if this
3955819c4920STheodore Ts'o 	 * truncate spans multiple transactions, and we crash, we will
3956819c4920STheodore Ts'o 	 * resume the truncate when the filesystem recovers.  It also
3957819c4920STheodore Ts'o 	 * marks the inode dirty, to catch the new size.
3958819c4920STheodore Ts'o 	 *
3959819c4920STheodore Ts'o 	 * Implication: the file must always be in a sane, consistent
3960819c4920STheodore Ts'o 	 * truncatable state while each transaction commits.
3961819c4920STheodore Ts'o 	 */
3962819c4920STheodore Ts'o 	if (ext4_orphan_add(handle, inode))
3963819c4920STheodore Ts'o 		goto out_stop;
3964819c4920STheodore Ts'o 
3965819c4920STheodore Ts'o 	down_write(&EXT4_I(inode)->i_data_sem);
3966819c4920STheodore Ts'o 
3967819c4920STheodore Ts'o 	ext4_discard_preallocations(inode);
3968819c4920STheodore Ts'o 
3969819c4920STheodore Ts'o 	if (ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS))
3970819c4920STheodore Ts'o 		ext4_ext_truncate(handle, inode);
3971819c4920STheodore Ts'o 	else
3972819c4920STheodore Ts'o 		ext4_ind_truncate(handle, inode);
3973819c4920STheodore Ts'o 
3974819c4920STheodore Ts'o 	up_write(&ei->i_data_sem);
3975819c4920STheodore Ts'o 
3976819c4920STheodore Ts'o 	if (IS_SYNC(inode))
3977819c4920STheodore Ts'o 		ext4_handle_sync(handle);
3978819c4920STheodore Ts'o 
3979819c4920STheodore Ts'o out_stop:
3980819c4920STheodore Ts'o 	/*
3981819c4920STheodore Ts'o 	 * If this was a simple ftruncate() and the file will remain alive,
3982819c4920STheodore Ts'o 	 * then we need to clear up the orphan record which we created above.
3983819c4920STheodore Ts'o 	 * However, if this was a real unlink then we were called by
398458d86a50SWang Shilong 	 * ext4_evict_inode(), and we allow that function to clean up the
3985819c4920STheodore Ts'o 	 * orphan info for us.
3986819c4920STheodore Ts'o 	 */
3987819c4920STheodore Ts'o 	if (inode->i_nlink)
3988819c4920STheodore Ts'o 		ext4_orphan_del(handle, inode);
3989819c4920STheodore Ts'o 
3990819c4920STheodore Ts'o 	inode->i_mtime = inode->i_ctime = ext4_current_time(inode);
3991819c4920STheodore Ts'o 	ext4_mark_inode_dirty(handle, inode);
3992819c4920STheodore Ts'o 	ext4_journal_stop(handle);
3993a86c6181SAlex Tomas 
39940562e0baSJiaying Zhang 	trace_ext4_truncate_exit(inode);
3995ac27a0ecSDave Kleikamp }
3996ac27a0ecSDave Kleikamp 
3997ac27a0ecSDave Kleikamp /*
3998617ba13bSMingming Cao  * ext4_get_inode_loc returns with an extra refcount against the inode's
3999ac27a0ecSDave Kleikamp  * underlying buffer_head on success. If 'in_mem' is true, we have all
4000ac27a0ecSDave Kleikamp  * data in memory that is needed to recreate the on-disk version of this
4001ac27a0ecSDave Kleikamp  * inode.
4002ac27a0ecSDave Kleikamp  */
4003617ba13bSMingming Cao static int __ext4_get_inode_loc(struct inode *inode,
4004617ba13bSMingming Cao 				struct ext4_iloc *iloc, int in_mem)
4005ac27a0ecSDave Kleikamp {
4006240799cdSTheodore Ts'o 	struct ext4_group_desc	*gdp;
4007ac27a0ecSDave Kleikamp 	struct buffer_head	*bh;
4008240799cdSTheodore Ts'o 	struct super_block	*sb = inode->i_sb;
4009240799cdSTheodore Ts'o 	ext4_fsblk_t		block;
4010240799cdSTheodore Ts'o 	int			inodes_per_block, inode_offset;
4011ac27a0ecSDave Kleikamp 
40123a06d778SAneesh Kumar K.V 	iloc->bh = NULL;
4013240799cdSTheodore Ts'o 	if (!ext4_valid_inum(sb, inode->i_ino))
40146a797d27SDarrick J. Wong 		return -EFSCORRUPTED;
4015ac27a0ecSDave Kleikamp 
4016240799cdSTheodore Ts'o 	iloc->block_group = (inode->i_ino - 1) / EXT4_INODES_PER_GROUP(sb);
4017240799cdSTheodore Ts'o 	gdp = ext4_get_group_desc(sb, iloc->block_group, NULL);
4018240799cdSTheodore Ts'o 	if (!gdp)
4019240799cdSTheodore Ts'o 		return -EIO;
4020240799cdSTheodore Ts'o 
4021240799cdSTheodore Ts'o 	/*
4022240799cdSTheodore Ts'o 	 * Figure out the offset within the block group inode table
4023240799cdSTheodore Ts'o 	 */
402400d09882STao Ma 	inodes_per_block = EXT4_SB(sb)->s_inodes_per_block;
4025240799cdSTheodore Ts'o 	inode_offset = ((inode->i_ino - 1) %
4026240799cdSTheodore Ts'o 			EXT4_INODES_PER_GROUP(sb));
4027240799cdSTheodore Ts'o 	block = ext4_inode_table(sb, gdp) + (inode_offset / inodes_per_block);
4028240799cdSTheodore Ts'o 	iloc->offset = (inode_offset % inodes_per_block) * EXT4_INODE_SIZE(sb);
4029240799cdSTheodore Ts'o 
4030240799cdSTheodore Ts'o 	bh = sb_getblk(sb, block);
4031aebf0243SWang Shilong 	if (unlikely(!bh))
4032860d21e2STheodore Ts'o 		return -ENOMEM;
4033ac27a0ecSDave Kleikamp 	if (!buffer_uptodate(bh)) {
4034ac27a0ecSDave Kleikamp 		lock_buffer(bh);
40359c83a923SHidehiro Kawai 
40369c83a923SHidehiro Kawai 		/*
40379c83a923SHidehiro Kawai 		 * If the buffer has the write error flag, we have failed
40389c83a923SHidehiro Kawai 		 * to write out another inode in the same block.  In this
40399c83a923SHidehiro Kawai 		 * case, we don't have to read the block because we may
40409c83a923SHidehiro Kawai 		 * read the old inode data successfully.
40419c83a923SHidehiro Kawai 		 */
40429c83a923SHidehiro Kawai 		if (buffer_write_io_error(bh) && !buffer_uptodate(bh))
40439c83a923SHidehiro Kawai 			set_buffer_uptodate(bh);
40449c83a923SHidehiro Kawai 
4045ac27a0ecSDave Kleikamp 		if (buffer_uptodate(bh)) {
4046ac27a0ecSDave Kleikamp 			/* someone brought it uptodate while we waited */
4047ac27a0ecSDave Kleikamp 			unlock_buffer(bh);
4048ac27a0ecSDave Kleikamp 			goto has_buffer;
4049ac27a0ecSDave Kleikamp 		}
4050ac27a0ecSDave Kleikamp 
4051ac27a0ecSDave Kleikamp 		/*
4052ac27a0ecSDave Kleikamp 		 * If we have all information of the inode in memory and this
4053ac27a0ecSDave Kleikamp 		 * is the only valid inode in the block, we need not read the
4054ac27a0ecSDave Kleikamp 		 * block.
4055ac27a0ecSDave Kleikamp 		 */
4056ac27a0ecSDave Kleikamp 		if (in_mem) {
4057ac27a0ecSDave Kleikamp 			struct buffer_head *bitmap_bh;
4058240799cdSTheodore Ts'o 			int i, start;
4059ac27a0ecSDave Kleikamp 
4060240799cdSTheodore Ts'o 			start = inode_offset & ~(inodes_per_block - 1);
4061ac27a0ecSDave Kleikamp 
4062ac27a0ecSDave Kleikamp 			/* Is the inode bitmap in cache? */
4063240799cdSTheodore Ts'o 			bitmap_bh = sb_getblk(sb, ext4_inode_bitmap(sb, gdp));
4064aebf0243SWang Shilong 			if (unlikely(!bitmap_bh))
4065ac27a0ecSDave Kleikamp 				goto make_io;
4066ac27a0ecSDave Kleikamp 
4067ac27a0ecSDave Kleikamp 			/*
4068ac27a0ecSDave Kleikamp 			 * If the inode bitmap isn't in cache then the
4069ac27a0ecSDave Kleikamp 			 * optimisation may end up performing two reads instead
4070ac27a0ecSDave Kleikamp 			 * of one, so skip it.
4071ac27a0ecSDave Kleikamp 			 */
4072ac27a0ecSDave Kleikamp 			if (!buffer_uptodate(bitmap_bh)) {
4073ac27a0ecSDave Kleikamp 				brelse(bitmap_bh);
4074ac27a0ecSDave Kleikamp 				goto make_io;
4075ac27a0ecSDave Kleikamp 			}
4076240799cdSTheodore Ts'o 			for (i = start; i < start + inodes_per_block; i++) {
4077ac27a0ecSDave Kleikamp 				if (i == inode_offset)
4078ac27a0ecSDave Kleikamp 					continue;
4079617ba13bSMingming Cao 				if (ext4_test_bit(i, bitmap_bh->b_data))
4080ac27a0ecSDave Kleikamp 					break;
4081ac27a0ecSDave Kleikamp 			}
4082ac27a0ecSDave Kleikamp 			brelse(bitmap_bh);
4083240799cdSTheodore Ts'o 			if (i == start + inodes_per_block) {
4084ac27a0ecSDave Kleikamp 				/* all other inodes are free, so skip I/O */
4085ac27a0ecSDave Kleikamp 				memset(bh->b_data, 0, bh->b_size);
4086ac27a0ecSDave Kleikamp 				set_buffer_uptodate(bh);
4087ac27a0ecSDave Kleikamp 				unlock_buffer(bh);
4088ac27a0ecSDave Kleikamp 				goto has_buffer;
4089ac27a0ecSDave Kleikamp 			}
4090ac27a0ecSDave Kleikamp 		}
4091ac27a0ecSDave Kleikamp 
4092ac27a0ecSDave Kleikamp make_io:
4093ac27a0ecSDave Kleikamp 		/*
4094240799cdSTheodore Ts'o 		 * If we need to do any I/O, try to pre-readahead extra
4095240799cdSTheodore Ts'o 		 * blocks from the inode table.
4096240799cdSTheodore Ts'o 		 */
4097240799cdSTheodore Ts'o 		if (EXT4_SB(sb)->s_inode_readahead_blks) {
4098240799cdSTheodore Ts'o 			ext4_fsblk_t b, end, table;
4099240799cdSTheodore Ts'o 			unsigned num;
41000d606e2cSTheodore Ts'o 			__u32 ra_blks = EXT4_SB(sb)->s_inode_readahead_blks;
4101240799cdSTheodore Ts'o 
4102240799cdSTheodore Ts'o 			table = ext4_inode_table(sb, gdp);
4103b713a5ecSTheodore Ts'o 			/* s_inode_readahead_blks is always a power of 2 */
41040d606e2cSTheodore Ts'o 			b = block & ~((ext4_fsblk_t) ra_blks - 1);
4105240799cdSTheodore Ts'o 			if (table > b)
4106240799cdSTheodore Ts'o 				b = table;
41070d606e2cSTheodore Ts'o 			end = b + ra_blks;
4108240799cdSTheodore Ts'o 			num = EXT4_INODES_PER_GROUP(sb);
4109feb0ab32SDarrick J. Wong 			if (ext4_has_group_desc_csum(sb))
4110560671a0SAneesh Kumar K.V 				num -= ext4_itable_unused_count(sb, gdp);
4111240799cdSTheodore Ts'o 			table += num / inodes_per_block;
4112240799cdSTheodore Ts'o 			if (end > table)
4113240799cdSTheodore Ts'o 				end = table;
4114240799cdSTheodore Ts'o 			while (b <= end)
4115240799cdSTheodore Ts'o 				sb_breadahead(sb, b++);
4116240799cdSTheodore Ts'o 		}
4117240799cdSTheodore Ts'o 
4118240799cdSTheodore Ts'o 		/*
4119ac27a0ecSDave Kleikamp 		 * There are other valid inodes in the buffer, this inode
4120ac27a0ecSDave Kleikamp 		 * has in-inode xattrs, or we don't have this inode in memory.
4121ac27a0ecSDave Kleikamp 		 * Read the block from disk.
4122ac27a0ecSDave Kleikamp 		 */
41230562e0baSJiaying Zhang 		trace_ext4_load_inode(inode);
4124ac27a0ecSDave Kleikamp 		get_bh(bh);
4125ac27a0ecSDave Kleikamp 		bh->b_end_io = end_buffer_read_sync;
412665299a3bSChristoph Hellwig 		submit_bh(READ | REQ_META | REQ_PRIO, bh);
4127ac27a0ecSDave Kleikamp 		wait_on_buffer(bh);
4128ac27a0ecSDave Kleikamp 		if (!buffer_uptodate(bh)) {
4129c398eda0STheodore Ts'o 			EXT4_ERROR_INODE_BLOCK(inode, block,
4130c398eda0STheodore Ts'o 					       "unable to read itable block");
4131ac27a0ecSDave Kleikamp 			brelse(bh);
4132ac27a0ecSDave Kleikamp 			return -EIO;
4133ac27a0ecSDave Kleikamp 		}
4134ac27a0ecSDave Kleikamp 	}
4135ac27a0ecSDave Kleikamp has_buffer:
4136ac27a0ecSDave Kleikamp 	iloc->bh = bh;
4137ac27a0ecSDave Kleikamp 	return 0;
4138ac27a0ecSDave Kleikamp }
4139ac27a0ecSDave Kleikamp 
4140617ba13bSMingming Cao int ext4_get_inode_loc(struct inode *inode, struct ext4_iloc *iloc)
4141ac27a0ecSDave Kleikamp {
4142ac27a0ecSDave Kleikamp 	/* We have all inode data except xattrs in memory here. */
4143617ba13bSMingming Cao 	return __ext4_get_inode_loc(inode, iloc,
414419f5fb7aSTheodore Ts'o 		!ext4_test_inode_state(inode, EXT4_STATE_XATTR));
4145ac27a0ecSDave Kleikamp }
4146ac27a0ecSDave Kleikamp 
4147617ba13bSMingming Cao void ext4_set_inode_flags(struct inode *inode)
4148ac27a0ecSDave Kleikamp {
4149617ba13bSMingming Cao 	unsigned int flags = EXT4_I(inode)->i_flags;
415000a1a053STheodore Ts'o 	unsigned int new_fl = 0;
4151ac27a0ecSDave Kleikamp 
4152617ba13bSMingming Cao 	if (flags & EXT4_SYNC_FL)
415300a1a053STheodore Ts'o 		new_fl |= S_SYNC;
4154617ba13bSMingming Cao 	if (flags & EXT4_APPEND_FL)
415500a1a053STheodore Ts'o 		new_fl |= S_APPEND;
4156617ba13bSMingming Cao 	if (flags & EXT4_IMMUTABLE_FL)
415700a1a053STheodore Ts'o 		new_fl |= S_IMMUTABLE;
4158617ba13bSMingming Cao 	if (flags & EXT4_NOATIME_FL)
415900a1a053STheodore Ts'o 		new_fl |= S_NOATIME;
4160617ba13bSMingming Cao 	if (flags & EXT4_DIRSYNC_FL)
416100a1a053STheodore Ts'o 		new_fl |= S_DIRSYNC;
41620a6cf913SRoss Zwisler 	if (test_opt(inode->i_sb, DAX) && S_ISREG(inode->i_mode))
4163923ae0ffSRoss Zwisler 		new_fl |= S_DAX;
41645f16f322STheodore Ts'o 	inode_set_flags(inode, new_fl,
4165923ae0ffSRoss Zwisler 			S_SYNC|S_APPEND|S_IMMUTABLE|S_NOATIME|S_DIRSYNC|S_DAX);
4166ac27a0ecSDave Kleikamp }
4167ac27a0ecSDave Kleikamp 
4168ff9ddf7eSJan Kara /* Propagate flags from i_flags to EXT4_I(inode)->i_flags */
4169ff9ddf7eSJan Kara void ext4_get_inode_flags(struct ext4_inode_info *ei)
4170ff9ddf7eSJan Kara {
417184a8dce2SDmitry Monakhov 	unsigned int vfs_fl;
417284a8dce2SDmitry Monakhov 	unsigned long old_fl, new_fl;
4173ff9ddf7eSJan Kara 
417484a8dce2SDmitry Monakhov 	do {
417584a8dce2SDmitry Monakhov 		vfs_fl = ei->vfs_inode.i_flags;
417684a8dce2SDmitry Monakhov 		old_fl = ei->i_flags;
417784a8dce2SDmitry Monakhov 		new_fl = old_fl & ~(EXT4_SYNC_FL|EXT4_APPEND_FL|
417884a8dce2SDmitry Monakhov 				EXT4_IMMUTABLE_FL|EXT4_NOATIME_FL|
417984a8dce2SDmitry Monakhov 				EXT4_DIRSYNC_FL);
418084a8dce2SDmitry Monakhov 		if (vfs_fl & S_SYNC)
418184a8dce2SDmitry Monakhov 			new_fl |= EXT4_SYNC_FL;
418284a8dce2SDmitry Monakhov 		if (vfs_fl & S_APPEND)
418384a8dce2SDmitry Monakhov 			new_fl |= EXT4_APPEND_FL;
418484a8dce2SDmitry Monakhov 		if (vfs_fl & S_IMMUTABLE)
418584a8dce2SDmitry Monakhov 			new_fl |= EXT4_IMMUTABLE_FL;
418684a8dce2SDmitry Monakhov 		if (vfs_fl & S_NOATIME)
418784a8dce2SDmitry Monakhov 			new_fl |= EXT4_NOATIME_FL;
418884a8dce2SDmitry Monakhov 		if (vfs_fl & S_DIRSYNC)
418984a8dce2SDmitry Monakhov 			new_fl |= EXT4_DIRSYNC_FL;
419084a8dce2SDmitry Monakhov 	} while (cmpxchg(&ei->i_flags, old_fl, new_fl) != old_fl);
4191ff9ddf7eSJan Kara }
4192de9a55b8STheodore Ts'o 
41930fc1b451SAneesh Kumar K.V static blkcnt_t ext4_inode_blocks(struct ext4_inode *raw_inode,
41940fc1b451SAneesh Kumar K.V 				  struct ext4_inode_info *ei)
41950fc1b451SAneesh Kumar K.V {
41960fc1b451SAneesh Kumar K.V 	blkcnt_t i_blocks ;
41978180a562SAneesh Kumar K.V 	struct inode *inode = &(ei->vfs_inode);
41988180a562SAneesh Kumar K.V 	struct super_block *sb = inode->i_sb;
41990fc1b451SAneesh Kumar K.V 
4200e2b911c5SDarrick J. Wong 	if (ext4_has_feature_huge_file(sb)) {
42010fc1b451SAneesh Kumar K.V 		/* we are using combined 48 bit field */
42020fc1b451SAneesh Kumar K.V 		i_blocks = ((u64)le16_to_cpu(raw_inode->i_blocks_high)) << 32 |
42030fc1b451SAneesh Kumar K.V 					le32_to_cpu(raw_inode->i_blocks_lo);
420407a03824STheodore Ts'o 		if (ext4_test_inode_flag(inode, EXT4_INODE_HUGE_FILE)) {
42058180a562SAneesh Kumar K.V 			/* i_blocks represent file system block size */
42068180a562SAneesh Kumar K.V 			return i_blocks  << (inode->i_blkbits - 9);
42078180a562SAneesh Kumar K.V 		} else {
42080fc1b451SAneesh Kumar K.V 			return i_blocks;
42098180a562SAneesh Kumar K.V 		}
42100fc1b451SAneesh Kumar K.V 	} else {
42110fc1b451SAneesh Kumar K.V 		return le32_to_cpu(raw_inode->i_blocks_lo);
42120fc1b451SAneesh Kumar K.V 	}
42130fc1b451SAneesh Kumar K.V }
4214ff9ddf7eSJan Kara 
4215152a7b0aSTao Ma static inline void ext4_iget_extra_inode(struct inode *inode,
4216152a7b0aSTao Ma 					 struct ext4_inode *raw_inode,
4217152a7b0aSTao Ma 					 struct ext4_inode_info *ei)
4218152a7b0aSTao Ma {
4219152a7b0aSTao Ma 	__le32 *magic = (void *)raw_inode +
4220152a7b0aSTao Ma 			EXT4_GOOD_OLD_INODE_SIZE + ei->i_extra_isize;
422167cf5b09STao Ma 	if (*magic == cpu_to_le32(EXT4_XATTR_MAGIC)) {
4222152a7b0aSTao Ma 		ext4_set_inode_state(inode, EXT4_STATE_XATTR);
422367cf5b09STao Ma 		ext4_find_inline_data_nolock(inode);
4224f19d5870STao Ma 	} else
4225f19d5870STao Ma 		EXT4_I(inode)->i_inline_off = 0;
4226152a7b0aSTao Ma }
4227152a7b0aSTao Ma 
4228040cb378SLi Xi int ext4_get_projid(struct inode *inode, kprojid_t *projid)
4229040cb378SLi Xi {
4230040cb378SLi Xi 	if (!EXT4_HAS_RO_COMPAT_FEATURE(inode->i_sb, EXT4_FEATURE_RO_COMPAT_PROJECT))
4231040cb378SLi Xi 		return -EOPNOTSUPP;
4232040cb378SLi Xi 	*projid = EXT4_I(inode)->i_projid;
4233040cb378SLi Xi 	return 0;
4234040cb378SLi Xi }
4235040cb378SLi Xi 
42361d1fe1eeSDavid Howells struct inode *ext4_iget(struct super_block *sb, unsigned long ino)
4237ac27a0ecSDave Kleikamp {
4238617ba13bSMingming Cao 	struct ext4_iloc iloc;
4239617ba13bSMingming Cao 	struct ext4_inode *raw_inode;
42401d1fe1eeSDavid Howells 	struct ext4_inode_info *ei;
42411d1fe1eeSDavid Howells 	struct inode *inode;
4242b436b9beSJan Kara 	journal_t *journal = EXT4_SB(sb)->s_journal;
42431d1fe1eeSDavid Howells 	long ret;
4244ac27a0ecSDave Kleikamp 	int block;
424508cefc7aSEric W. Biederman 	uid_t i_uid;
424608cefc7aSEric W. Biederman 	gid_t i_gid;
4247040cb378SLi Xi 	projid_t i_projid;
4248ac27a0ecSDave Kleikamp 
42491d1fe1eeSDavid Howells 	inode = iget_locked(sb, ino);
42501d1fe1eeSDavid Howells 	if (!inode)
42511d1fe1eeSDavid Howells 		return ERR_PTR(-ENOMEM);
42521d1fe1eeSDavid Howells 	if (!(inode->i_state & I_NEW))
42531d1fe1eeSDavid Howells 		return inode;
42541d1fe1eeSDavid Howells 
42551d1fe1eeSDavid Howells 	ei = EXT4_I(inode);
42567dc57615SPeter Huewe 	iloc.bh = NULL;
4257ac27a0ecSDave Kleikamp 
42581d1fe1eeSDavid Howells 	ret = __ext4_get_inode_loc(inode, &iloc, 0);
42591d1fe1eeSDavid Howells 	if (ret < 0)
4260ac27a0ecSDave Kleikamp 		goto bad_inode;
4261617ba13bSMingming Cao 	raw_inode = ext4_raw_inode(&iloc);
4262814525f4SDarrick J. Wong 
4263814525f4SDarrick J. Wong 	if (EXT4_INODE_SIZE(inode->i_sb) > EXT4_GOOD_OLD_INODE_SIZE) {
4264814525f4SDarrick J. Wong 		ei->i_extra_isize = le16_to_cpu(raw_inode->i_extra_isize);
4265814525f4SDarrick J. Wong 		if (EXT4_GOOD_OLD_INODE_SIZE + ei->i_extra_isize >
4266814525f4SDarrick J. Wong 		    EXT4_INODE_SIZE(inode->i_sb)) {
4267814525f4SDarrick J. Wong 			EXT4_ERROR_INODE(inode, "bad extra_isize (%u != %u)",
4268814525f4SDarrick J. Wong 				EXT4_GOOD_OLD_INODE_SIZE + ei->i_extra_isize,
4269814525f4SDarrick J. Wong 				EXT4_INODE_SIZE(inode->i_sb));
42706a797d27SDarrick J. Wong 			ret = -EFSCORRUPTED;
4271814525f4SDarrick J. Wong 			goto bad_inode;
4272814525f4SDarrick J. Wong 		}
4273814525f4SDarrick J. Wong 	} else
4274814525f4SDarrick J. Wong 		ei->i_extra_isize = 0;
4275814525f4SDarrick J. Wong 
4276814525f4SDarrick J. Wong 	/* Precompute checksum seed for inode metadata */
42779aa5d32bSDmitry Monakhov 	if (ext4_has_metadata_csum(sb)) {
4278814525f4SDarrick J. Wong 		struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb);
4279814525f4SDarrick J. Wong 		__u32 csum;
4280814525f4SDarrick J. Wong 		__le32 inum = cpu_to_le32(inode->i_ino);
4281814525f4SDarrick J. Wong 		__le32 gen = raw_inode->i_generation;
4282814525f4SDarrick J. Wong 		csum = ext4_chksum(sbi, sbi->s_csum_seed, (__u8 *)&inum,
4283814525f4SDarrick J. Wong 				   sizeof(inum));
4284814525f4SDarrick J. Wong 		ei->i_csum_seed = ext4_chksum(sbi, csum, (__u8 *)&gen,
4285814525f4SDarrick J. Wong 					      sizeof(gen));
4286814525f4SDarrick J. Wong 	}
4287814525f4SDarrick J. Wong 
4288814525f4SDarrick J. Wong 	if (!ext4_inode_csum_verify(inode, raw_inode, ei)) {
4289814525f4SDarrick J. Wong 		EXT4_ERROR_INODE(inode, "checksum invalid");
42906a797d27SDarrick J. Wong 		ret = -EFSBADCRC;
4291814525f4SDarrick J. Wong 		goto bad_inode;
4292814525f4SDarrick J. Wong 	}
4293814525f4SDarrick J. Wong 
4294ac27a0ecSDave Kleikamp 	inode->i_mode = le16_to_cpu(raw_inode->i_mode);
429508cefc7aSEric W. Biederman 	i_uid = (uid_t)le16_to_cpu(raw_inode->i_uid_low);
429608cefc7aSEric W. Biederman 	i_gid = (gid_t)le16_to_cpu(raw_inode->i_gid_low);
4297040cb378SLi Xi 	if (EXT4_HAS_RO_COMPAT_FEATURE(sb, EXT4_FEATURE_RO_COMPAT_PROJECT) &&
4298040cb378SLi Xi 	    EXT4_INODE_SIZE(sb) > EXT4_GOOD_OLD_INODE_SIZE &&
4299040cb378SLi Xi 	    EXT4_FITS_IN_INODE(raw_inode, ei, i_projid))
4300040cb378SLi Xi 		i_projid = (projid_t)le32_to_cpu(raw_inode->i_projid);
4301040cb378SLi Xi 	else
4302040cb378SLi Xi 		i_projid = EXT4_DEF_PROJID;
4303040cb378SLi Xi 
4304ac27a0ecSDave Kleikamp 	if (!(test_opt(inode->i_sb, NO_UID32))) {
430508cefc7aSEric W. Biederman 		i_uid |= le16_to_cpu(raw_inode->i_uid_high) << 16;
430608cefc7aSEric W. Biederman 		i_gid |= le16_to_cpu(raw_inode->i_gid_high) << 16;
4307ac27a0ecSDave Kleikamp 	}
430808cefc7aSEric W. Biederman 	i_uid_write(inode, i_uid);
430908cefc7aSEric W. Biederman 	i_gid_write(inode, i_gid);
4310040cb378SLi Xi 	ei->i_projid = make_kprojid(&init_user_ns, i_projid);
4311bfe86848SMiklos Szeredi 	set_nlink(inode, le16_to_cpu(raw_inode->i_links_count));
4312ac27a0ecSDave Kleikamp 
4313353eb83cSTheodore Ts'o 	ext4_clear_state_flags(ei);	/* Only relevant on 32-bit archs */
431467cf5b09STao Ma 	ei->i_inline_off = 0;
4315ac27a0ecSDave Kleikamp 	ei->i_dir_start_lookup = 0;
4316ac27a0ecSDave Kleikamp 	ei->i_dtime = le32_to_cpu(raw_inode->i_dtime);
4317ac27a0ecSDave Kleikamp 	/* We now have enough fields to check if the inode was active or not.
4318ac27a0ecSDave Kleikamp 	 * This is needed because nfsd might try to access dead inodes
4319ac27a0ecSDave Kleikamp 	 * the test is that same one that e2fsck uses
4320ac27a0ecSDave Kleikamp 	 * NeilBrown 1999oct15
4321ac27a0ecSDave Kleikamp 	 */
4322ac27a0ecSDave Kleikamp 	if (inode->i_nlink == 0) {
4323393d1d1dSDr. Tilmann Bubeck 		if ((inode->i_mode == 0 ||
4324393d1d1dSDr. Tilmann Bubeck 		     !(EXT4_SB(inode->i_sb)->s_mount_state & EXT4_ORPHAN_FS)) &&
4325393d1d1dSDr. Tilmann Bubeck 		    ino != EXT4_BOOT_LOADER_INO) {
4326ac27a0ecSDave Kleikamp 			/* this inode is deleted */
43271d1fe1eeSDavid Howells 			ret = -ESTALE;
4328ac27a0ecSDave Kleikamp 			goto bad_inode;
4329ac27a0ecSDave Kleikamp 		}
4330ac27a0ecSDave Kleikamp 		/* The only unlinked inodes we let through here have
4331ac27a0ecSDave Kleikamp 		 * valid i_mode and are being read by the orphan
4332ac27a0ecSDave Kleikamp 		 * recovery code: that's fine, we're about to complete
4333393d1d1dSDr. Tilmann Bubeck 		 * the process of deleting those.
4334393d1d1dSDr. Tilmann Bubeck 		 * OR it is the EXT4_BOOT_LOADER_INO which is
4335393d1d1dSDr. Tilmann Bubeck 		 * not initialized on a new filesystem. */
4336ac27a0ecSDave Kleikamp 	}
4337ac27a0ecSDave Kleikamp 	ei->i_flags = le32_to_cpu(raw_inode->i_flags);
43380fc1b451SAneesh Kumar K.V 	inode->i_blocks = ext4_inode_blocks(raw_inode, ei);
43397973c0c1SAneesh Kumar K.V 	ei->i_file_acl = le32_to_cpu(raw_inode->i_file_acl_lo);
4340e2b911c5SDarrick J. Wong 	if (ext4_has_feature_64bit(sb))
4341a1ddeb7eSBadari Pulavarty 		ei->i_file_acl |=
4342a1ddeb7eSBadari Pulavarty 			((__u64)le16_to_cpu(raw_inode->i_file_acl_high)) << 32;
4343a48380f7SAneesh Kumar K.V 	inode->i_size = ext4_isize(raw_inode);
4344ac27a0ecSDave Kleikamp 	ei->i_disksize = inode->i_size;
4345a9e7f447SDmitry Monakhov #ifdef CONFIG_QUOTA
4346a9e7f447SDmitry Monakhov 	ei->i_reserved_quota = 0;
4347a9e7f447SDmitry Monakhov #endif
4348ac27a0ecSDave Kleikamp 	inode->i_generation = le32_to_cpu(raw_inode->i_generation);
4349ac27a0ecSDave Kleikamp 	ei->i_block_group = iloc.block_group;
4350a4912123STheodore Ts'o 	ei->i_last_alloc_group = ~0;
4351ac27a0ecSDave Kleikamp 	/*
4352ac27a0ecSDave Kleikamp 	 * NOTE! The in-memory inode i_data array is in little-endian order
4353ac27a0ecSDave Kleikamp 	 * even on big-endian machines: we do NOT byteswap the block numbers!
4354ac27a0ecSDave Kleikamp 	 */
4355617ba13bSMingming Cao 	for (block = 0; block < EXT4_N_BLOCKS; block++)
4356ac27a0ecSDave Kleikamp 		ei->i_data[block] = raw_inode->i_block[block];
4357ac27a0ecSDave Kleikamp 	INIT_LIST_HEAD(&ei->i_orphan);
4358ac27a0ecSDave Kleikamp 
4359b436b9beSJan Kara 	/*
4360b436b9beSJan Kara 	 * Set transaction id's of transactions that have to be committed
4361b436b9beSJan Kara 	 * to finish f[data]sync. We set them to currently running transaction
4362b436b9beSJan Kara 	 * as we cannot be sure that the inode or some of its metadata isn't
4363b436b9beSJan Kara 	 * part of the transaction - the inode could have been reclaimed and
4364b436b9beSJan Kara 	 * now it is reread from disk.
4365b436b9beSJan Kara 	 */
4366b436b9beSJan Kara 	if (journal) {
4367b436b9beSJan Kara 		transaction_t *transaction;
4368b436b9beSJan Kara 		tid_t tid;
4369b436b9beSJan Kara 
4370a931da6aSTheodore Ts'o 		read_lock(&journal->j_state_lock);
4371b436b9beSJan Kara 		if (journal->j_running_transaction)
4372b436b9beSJan Kara 			transaction = journal->j_running_transaction;
4373b436b9beSJan Kara 		else
4374b436b9beSJan Kara 			transaction = journal->j_committing_transaction;
4375b436b9beSJan Kara 		if (transaction)
4376b436b9beSJan Kara 			tid = transaction->t_tid;
4377b436b9beSJan Kara 		else
4378b436b9beSJan Kara 			tid = journal->j_commit_sequence;
4379a931da6aSTheodore Ts'o 		read_unlock(&journal->j_state_lock);
4380b436b9beSJan Kara 		ei->i_sync_tid = tid;
4381b436b9beSJan Kara 		ei->i_datasync_tid = tid;
4382b436b9beSJan Kara 	}
4383b436b9beSJan Kara 
43840040d987SEric Sandeen 	if (EXT4_INODE_SIZE(inode->i_sb) > EXT4_GOOD_OLD_INODE_SIZE) {
4385ac27a0ecSDave Kleikamp 		if (ei->i_extra_isize == 0) {
4386ac27a0ecSDave Kleikamp 			/* The extra space is currently unused. Use it. */
4387617ba13bSMingming Cao 			ei->i_extra_isize = sizeof(struct ext4_inode) -
4388617ba13bSMingming Cao 					    EXT4_GOOD_OLD_INODE_SIZE;
4389ac27a0ecSDave Kleikamp 		} else {
4390152a7b0aSTao Ma 			ext4_iget_extra_inode(inode, raw_inode, ei);
4391ac27a0ecSDave Kleikamp 		}
4392814525f4SDarrick J. Wong 	}
4393ac27a0ecSDave Kleikamp 
4394ef7f3835SKalpak Shah 	EXT4_INODE_GET_XTIME(i_ctime, inode, raw_inode);
4395ef7f3835SKalpak Shah 	EXT4_INODE_GET_XTIME(i_mtime, inode, raw_inode);
4396ef7f3835SKalpak Shah 	EXT4_INODE_GET_XTIME(i_atime, inode, raw_inode);
4397ef7f3835SKalpak Shah 	EXT4_EINODE_GET_XTIME(i_crtime, ei, raw_inode);
4398ef7f3835SKalpak Shah 
4399ed3654ebSTheodore Ts'o 	if (likely(!test_opt2(inode->i_sb, HURD_COMPAT))) {
440025ec56b5SJean Noel Cordenner 		inode->i_version = le32_to_cpu(raw_inode->i_disk_version);
440125ec56b5SJean Noel Cordenner 		if (EXT4_INODE_SIZE(inode->i_sb) > EXT4_GOOD_OLD_INODE_SIZE) {
440225ec56b5SJean Noel Cordenner 			if (EXT4_FITS_IN_INODE(raw_inode, ei, i_version_hi))
440325ec56b5SJean Noel Cordenner 				inode->i_version |=
440425ec56b5SJean Noel Cordenner 		    (__u64)(le32_to_cpu(raw_inode->i_version_hi)) << 32;
440525ec56b5SJean Noel Cordenner 		}
4406c4f65706STheodore Ts'o 	}
440725ec56b5SJean Noel Cordenner 
4408c4b5a614STheodore Ts'o 	ret = 0;
4409485c26ecSTheodore Ts'o 	if (ei->i_file_acl &&
44101032988cSTheodore Ts'o 	    !ext4_data_block_valid(EXT4_SB(sb), ei->i_file_acl, 1)) {
441124676da4STheodore Ts'o 		EXT4_ERROR_INODE(inode, "bad extended attribute block %llu",
441224676da4STheodore Ts'o 				 ei->i_file_acl);
44136a797d27SDarrick J. Wong 		ret = -EFSCORRUPTED;
4414485c26ecSTheodore Ts'o 		goto bad_inode;
4415f19d5870STao Ma 	} else if (!ext4_has_inline_data(inode)) {
4416f19d5870STao Ma 		if (ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS)) {
4417f19d5870STao Ma 			if ((S_ISREG(inode->i_mode) || S_ISDIR(inode->i_mode) ||
4418c4b5a614STheodore Ts'o 			    (S_ISLNK(inode->i_mode) &&
4419f19d5870STao Ma 			     !ext4_inode_is_fast_symlink(inode))))
44207a262f7cSAneesh Kumar K.V 				/* Validate extent which is part of inode */
44217a262f7cSAneesh Kumar K.V 				ret = ext4_ext_check_inode(inode);
4422fe2c8191SThiemo Nagel 		} else if (S_ISREG(inode->i_mode) || S_ISDIR(inode->i_mode) ||
4423fe2c8191SThiemo Nagel 			   (S_ISLNK(inode->i_mode) &&
4424fe2c8191SThiemo Nagel 			    !ext4_inode_is_fast_symlink(inode))) {
4425fe2c8191SThiemo Nagel 			/* Validate block references which are part of inode */
44261f7d1e77STheodore Ts'o 			ret = ext4_ind_check_inode(inode);
4427fe2c8191SThiemo Nagel 		}
4428f19d5870STao Ma 	}
4429567f3e9aSTheodore Ts'o 	if (ret)
44307a262f7cSAneesh Kumar K.V 		goto bad_inode;
44317a262f7cSAneesh Kumar K.V 
4432ac27a0ecSDave Kleikamp 	if (S_ISREG(inode->i_mode)) {
4433617ba13bSMingming Cao 		inode->i_op = &ext4_file_inode_operations;
4434617ba13bSMingming Cao 		inode->i_fop = &ext4_file_operations;
4435617ba13bSMingming Cao 		ext4_set_aops(inode);
4436ac27a0ecSDave Kleikamp 	} else if (S_ISDIR(inode->i_mode)) {
4437617ba13bSMingming Cao 		inode->i_op = &ext4_dir_inode_operations;
4438617ba13bSMingming Cao 		inode->i_fop = &ext4_dir_operations;
4439ac27a0ecSDave Kleikamp 	} else if (S_ISLNK(inode->i_mode)) {
4440a7a67e8aSAl Viro 		if (ext4_encrypted_inode(inode)) {
4441a7a67e8aSAl Viro 			inode->i_op = &ext4_encrypted_symlink_inode_operations;
4442a7a67e8aSAl Viro 			ext4_set_aops(inode);
4443a7a67e8aSAl Viro 		} else if (ext4_inode_is_fast_symlink(inode)) {
444475e7566bSAl Viro 			inode->i_link = (char *)ei->i_data;
4445617ba13bSMingming Cao 			inode->i_op = &ext4_fast_symlink_inode_operations;
4446e83c1397SDuane Griffin 			nd_terminate_link(ei->i_data, inode->i_size,
4447e83c1397SDuane Griffin 				sizeof(ei->i_data) - 1);
4448e83c1397SDuane Griffin 		} else {
4449617ba13bSMingming Cao 			inode->i_op = &ext4_symlink_inode_operations;
4450617ba13bSMingming Cao 			ext4_set_aops(inode);
4451ac27a0ecSDave Kleikamp 		}
445221fc61c7SAl Viro 		inode_nohighmem(inode);
4453563bdd61STheodore Ts'o 	} else if (S_ISCHR(inode->i_mode) || S_ISBLK(inode->i_mode) ||
4454563bdd61STheodore Ts'o 	      S_ISFIFO(inode->i_mode) || S_ISSOCK(inode->i_mode)) {
4455617ba13bSMingming Cao 		inode->i_op = &ext4_special_inode_operations;
4456ac27a0ecSDave Kleikamp 		if (raw_inode->i_block[0])
4457ac27a0ecSDave Kleikamp 			init_special_inode(inode, inode->i_mode,
4458ac27a0ecSDave Kleikamp 			   old_decode_dev(le32_to_cpu(raw_inode->i_block[0])));
4459ac27a0ecSDave Kleikamp 		else
4460ac27a0ecSDave Kleikamp 			init_special_inode(inode, inode->i_mode,
4461ac27a0ecSDave Kleikamp 			   new_decode_dev(le32_to_cpu(raw_inode->i_block[1])));
4462393d1d1dSDr. Tilmann Bubeck 	} else if (ino == EXT4_BOOT_LOADER_INO) {
4463393d1d1dSDr. Tilmann Bubeck 		make_bad_inode(inode);
4464563bdd61STheodore Ts'o 	} else {
44656a797d27SDarrick J. Wong 		ret = -EFSCORRUPTED;
446624676da4STheodore Ts'o 		EXT4_ERROR_INODE(inode, "bogus i_mode (%o)", inode->i_mode);
4467563bdd61STheodore Ts'o 		goto bad_inode;
4468ac27a0ecSDave Kleikamp 	}
4469ac27a0ecSDave Kleikamp 	brelse(iloc.bh);
4470617ba13bSMingming Cao 	ext4_set_inode_flags(inode);
44711d1fe1eeSDavid Howells 	unlock_new_inode(inode);
44721d1fe1eeSDavid Howells 	return inode;
4473ac27a0ecSDave Kleikamp 
4474ac27a0ecSDave Kleikamp bad_inode:
4475567f3e9aSTheodore Ts'o 	brelse(iloc.bh);
44761d1fe1eeSDavid Howells 	iget_failed(inode);
44771d1fe1eeSDavid Howells 	return ERR_PTR(ret);
4478ac27a0ecSDave Kleikamp }
4479ac27a0ecSDave Kleikamp 
4480f4bb2981STheodore Ts'o struct inode *ext4_iget_normal(struct super_block *sb, unsigned long ino)
4481f4bb2981STheodore Ts'o {
4482f4bb2981STheodore Ts'o 	if (ino < EXT4_FIRST_INO(sb) && ino != EXT4_ROOT_INO)
44836a797d27SDarrick J. Wong 		return ERR_PTR(-EFSCORRUPTED);
4484f4bb2981STheodore Ts'o 	return ext4_iget(sb, ino);
4485f4bb2981STheodore Ts'o }
4486f4bb2981STheodore Ts'o 
44870fc1b451SAneesh Kumar K.V static int ext4_inode_blocks_set(handle_t *handle,
44880fc1b451SAneesh Kumar K.V 				struct ext4_inode *raw_inode,
44890fc1b451SAneesh Kumar K.V 				struct ext4_inode_info *ei)
44900fc1b451SAneesh Kumar K.V {
44910fc1b451SAneesh Kumar K.V 	struct inode *inode = &(ei->vfs_inode);
44920fc1b451SAneesh Kumar K.V 	u64 i_blocks = inode->i_blocks;
44930fc1b451SAneesh Kumar K.V 	struct super_block *sb = inode->i_sb;
44940fc1b451SAneesh Kumar K.V 
44950fc1b451SAneesh Kumar K.V 	if (i_blocks <= ~0U) {
44960fc1b451SAneesh Kumar K.V 		/*
44974907cb7bSAnatol Pomozov 		 * i_blocks can be represented in a 32 bit variable
44980fc1b451SAneesh Kumar K.V 		 * as multiple of 512 bytes
44990fc1b451SAneesh Kumar K.V 		 */
45008180a562SAneesh Kumar K.V 		raw_inode->i_blocks_lo   = cpu_to_le32(i_blocks);
45010fc1b451SAneesh Kumar K.V 		raw_inode->i_blocks_high = 0;
450284a8dce2SDmitry Monakhov 		ext4_clear_inode_flag(inode, EXT4_INODE_HUGE_FILE);
4503f287a1a5STheodore Ts'o 		return 0;
4504f287a1a5STheodore Ts'o 	}
4505e2b911c5SDarrick J. Wong 	if (!ext4_has_feature_huge_file(sb))
4506f287a1a5STheodore Ts'o 		return -EFBIG;
4507f287a1a5STheodore Ts'o 
4508f287a1a5STheodore Ts'o 	if (i_blocks <= 0xffffffffffffULL) {
45090fc1b451SAneesh Kumar K.V 		/*
45100fc1b451SAneesh Kumar K.V 		 * i_blocks can be represented in a 48 bit variable
45110fc1b451SAneesh Kumar K.V 		 * as multiple of 512 bytes
45120fc1b451SAneesh Kumar K.V 		 */
45138180a562SAneesh Kumar K.V 		raw_inode->i_blocks_lo   = cpu_to_le32(i_blocks);
45140fc1b451SAneesh Kumar K.V 		raw_inode->i_blocks_high = cpu_to_le16(i_blocks >> 32);
451584a8dce2SDmitry Monakhov 		ext4_clear_inode_flag(inode, EXT4_INODE_HUGE_FILE);
45160fc1b451SAneesh Kumar K.V 	} else {
451784a8dce2SDmitry Monakhov 		ext4_set_inode_flag(inode, EXT4_INODE_HUGE_FILE);
45188180a562SAneesh Kumar K.V 		/* i_block is stored in file system block size */
45198180a562SAneesh Kumar K.V 		i_blocks = i_blocks >> (inode->i_blkbits - 9);
45208180a562SAneesh Kumar K.V 		raw_inode->i_blocks_lo   = cpu_to_le32(i_blocks);
45218180a562SAneesh Kumar K.V 		raw_inode->i_blocks_high = cpu_to_le16(i_blocks >> 32);
45220fc1b451SAneesh Kumar K.V 	}
4523f287a1a5STheodore Ts'o 	return 0;
45240fc1b451SAneesh Kumar K.V }
45250fc1b451SAneesh Kumar K.V 
4526a26f4992STheodore Ts'o struct other_inode {
4527a26f4992STheodore Ts'o 	unsigned long		orig_ino;
4528a26f4992STheodore Ts'o 	struct ext4_inode	*raw_inode;
4529a26f4992STheodore Ts'o };
4530a26f4992STheodore Ts'o 
4531a26f4992STheodore Ts'o static int other_inode_match(struct inode * inode, unsigned long ino,
4532a26f4992STheodore Ts'o 			     void *data)
4533a26f4992STheodore Ts'o {
4534a26f4992STheodore Ts'o 	struct other_inode *oi = (struct other_inode *) data;
4535a26f4992STheodore Ts'o 
4536a26f4992STheodore Ts'o 	if ((inode->i_ino != ino) ||
4537a26f4992STheodore Ts'o 	    (inode->i_state & (I_FREEING | I_WILL_FREE | I_NEW |
4538a26f4992STheodore Ts'o 			       I_DIRTY_SYNC | I_DIRTY_DATASYNC)) ||
4539a26f4992STheodore Ts'o 	    ((inode->i_state & I_DIRTY_TIME) == 0))
4540a26f4992STheodore Ts'o 		return 0;
4541a26f4992STheodore Ts'o 	spin_lock(&inode->i_lock);
4542a26f4992STheodore Ts'o 	if (((inode->i_state & (I_FREEING | I_WILL_FREE | I_NEW |
4543a26f4992STheodore Ts'o 				I_DIRTY_SYNC | I_DIRTY_DATASYNC)) == 0) &&
4544a26f4992STheodore Ts'o 	    (inode->i_state & I_DIRTY_TIME)) {
4545a26f4992STheodore Ts'o 		struct ext4_inode_info	*ei = EXT4_I(inode);
4546a26f4992STheodore Ts'o 
4547a26f4992STheodore Ts'o 		inode->i_state &= ~(I_DIRTY_TIME | I_DIRTY_TIME_EXPIRED);
4548a26f4992STheodore Ts'o 		spin_unlock(&inode->i_lock);
4549a26f4992STheodore Ts'o 
4550a26f4992STheodore Ts'o 		spin_lock(&ei->i_raw_lock);
4551a26f4992STheodore Ts'o 		EXT4_INODE_SET_XTIME(i_ctime, inode, oi->raw_inode);
4552a26f4992STheodore Ts'o 		EXT4_INODE_SET_XTIME(i_mtime, inode, oi->raw_inode);
4553a26f4992STheodore Ts'o 		EXT4_INODE_SET_XTIME(i_atime, inode, oi->raw_inode);
4554a26f4992STheodore Ts'o 		ext4_inode_csum_set(inode, oi->raw_inode, ei);
4555a26f4992STheodore Ts'o 		spin_unlock(&ei->i_raw_lock);
4556a26f4992STheodore Ts'o 		trace_ext4_other_inode_update_time(inode, oi->orig_ino);
4557a26f4992STheodore Ts'o 		return -1;
4558a26f4992STheodore Ts'o 	}
4559a26f4992STheodore Ts'o 	spin_unlock(&inode->i_lock);
4560a26f4992STheodore Ts'o 	return -1;
4561a26f4992STheodore Ts'o }
4562a26f4992STheodore Ts'o 
4563a26f4992STheodore Ts'o /*
4564a26f4992STheodore Ts'o  * Opportunistically update the other time fields for other inodes in
4565a26f4992STheodore Ts'o  * the same inode table block.
4566a26f4992STheodore Ts'o  */
4567a26f4992STheodore Ts'o static void ext4_update_other_inodes_time(struct super_block *sb,
4568a26f4992STheodore Ts'o 					  unsigned long orig_ino, char *buf)
4569a26f4992STheodore Ts'o {
4570a26f4992STheodore Ts'o 	struct other_inode oi;
4571a26f4992STheodore Ts'o 	unsigned long ino;
4572a26f4992STheodore Ts'o 	int i, inodes_per_block = EXT4_SB(sb)->s_inodes_per_block;
4573a26f4992STheodore Ts'o 	int inode_size = EXT4_INODE_SIZE(sb);
4574a26f4992STheodore Ts'o 
4575a26f4992STheodore Ts'o 	oi.orig_ino = orig_ino;
45760f0ff9a9STheodore Ts'o 	/*
45770f0ff9a9STheodore Ts'o 	 * Calculate the first inode in the inode table block.  Inode
45780f0ff9a9STheodore Ts'o 	 * numbers are one-based.  That is, the first inode in a block
45790f0ff9a9STheodore Ts'o 	 * (assuming 4k blocks and 256 byte inodes) is (n*16 + 1).
45800f0ff9a9STheodore Ts'o 	 */
45810f0ff9a9STheodore Ts'o 	ino = ((orig_ino - 1) & ~(inodes_per_block - 1)) + 1;
4582a26f4992STheodore Ts'o 	for (i = 0; i < inodes_per_block; i++, ino++, buf += inode_size) {
4583a26f4992STheodore Ts'o 		if (ino == orig_ino)
4584a26f4992STheodore Ts'o 			continue;
4585a26f4992STheodore Ts'o 		oi.raw_inode = (struct ext4_inode *) buf;
4586a26f4992STheodore Ts'o 		(void) find_inode_nowait(sb, ino, other_inode_match, &oi);
4587a26f4992STheodore Ts'o 	}
4588a26f4992STheodore Ts'o }
4589a26f4992STheodore Ts'o 
4590ac27a0ecSDave Kleikamp /*
4591ac27a0ecSDave Kleikamp  * Post the struct inode info into an on-disk inode location in the
4592ac27a0ecSDave Kleikamp  * buffer-cache.  This gobbles the caller's reference to the
4593ac27a0ecSDave Kleikamp  * buffer_head in the inode location struct.
4594ac27a0ecSDave Kleikamp  *
4595ac27a0ecSDave Kleikamp  * The caller must have write access to iloc->bh.
4596ac27a0ecSDave Kleikamp  */
4597617ba13bSMingming Cao static int ext4_do_update_inode(handle_t *handle,
4598ac27a0ecSDave Kleikamp 				struct inode *inode,
4599830156c7SFrank Mayhar 				struct ext4_iloc *iloc)
4600ac27a0ecSDave Kleikamp {
4601617ba13bSMingming Cao 	struct ext4_inode *raw_inode = ext4_raw_inode(iloc);
4602617ba13bSMingming Cao 	struct ext4_inode_info *ei = EXT4_I(inode);
4603ac27a0ecSDave Kleikamp 	struct buffer_head *bh = iloc->bh;
4604202ee5dfSTheodore Ts'o 	struct super_block *sb = inode->i_sb;
4605ac27a0ecSDave Kleikamp 	int err = 0, rc, block;
4606202ee5dfSTheodore Ts'o 	int need_datasync = 0, set_large_file = 0;
460708cefc7aSEric W. Biederman 	uid_t i_uid;
460808cefc7aSEric W. Biederman 	gid_t i_gid;
4609040cb378SLi Xi 	projid_t i_projid;
4610ac27a0ecSDave Kleikamp 
4611202ee5dfSTheodore Ts'o 	spin_lock(&ei->i_raw_lock);
4612202ee5dfSTheodore Ts'o 
4613202ee5dfSTheodore Ts'o 	/* For fields not tracked in the in-memory inode,
4614ac27a0ecSDave Kleikamp 	 * initialise them to zero for new inodes. */
461519f5fb7aSTheodore Ts'o 	if (ext4_test_inode_state(inode, EXT4_STATE_NEW))
4616617ba13bSMingming Cao 		memset(raw_inode, 0, EXT4_SB(inode->i_sb)->s_inode_size);
4617ac27a0ecSDave Kleikamp 
4618ff9ddf7eSJan Kara 	ext4_get_inode_flags(ei);
4619ac27a0ecSDave Kleikamp 	raw_inode->i_mode = cpu_to_le16(inode->i_mode);
462008cefc7aSEric W. Biederman 	i_uid = i_uid_read(inode);
462108cefc7aSEric W. Biederman 	i_gid = i_gid_read(inode);
4622040cb378SLi Xi 	i_projid = from_kprojid(&init_user_ns, ei->i_projid);
4623ac27a0ecSDave Kleikamp 	if (!(test_opt(inode->i_sb, NO_UID32))) {
462408cefc7aSEric W. Biederman 		raw_inode->i_uid_low = cpu_to_le16(low_16_bits(i_uid));
462508cefc7aSEric W. Biederman 		raw_inode->i_gid_low = cpu_to_le16(low_16_bits(i_gid));
4626ac27a0ecSDave Kleikamp /*
4627ac27a0ecSDave Kleikamp  * Fix up interoperability with old kernels. Otherwise, old inodes get
4628ac27a0ecSDave Kleikamp  * re-used with the upper 16 bits of the uid/gid intact
4629ac27a0ecSDave Kleikamp  */
4630ac27a0ecSDave Kleikamp 		if (!ei->i_dtime) {
4631ac27a0ecSDave Kleikamp 			raw_inode->i_uid_high =
463208cefc7aSEric W. Biederman 				cpu_to_le16(high_16_bits(i_uid));
4633ac27a0ecSDave Kleikamp 			raw_inode->i_gid_high =
463408cefc7aSEric W. Biederman 				cpu_to_le16(high_16_bits(i_gid));
4635ac27a0ecSDave Kleikamp 		} else {
4636ac27a0ecSDave Kleikamp 			raw_inode->i_uid_high = 0;
4637ac27a0ecSDave Kleikamp 			raw_inode->i_gid_high = 0;
4638ac27a0ecSDave Kleikamp 		}
4639ac27a0ecSDave Kleikamp 	} else {
464008cefc7aSEric W. Biederman 		raw_inode->i_uid_low = cpu_to_le16(fs_high2lowuid(i_uid));
464108cefc7aSEric W. Biederman 		raw_inode->i_gid_low = cpu_to_le16(fs_high2lowgid(i_gid));
4642ac27a0ecSDave Kleikamp 		raw_inode->i_uid_high = 0;
4643ac27a0ecSDave Kleikamp 		raw_inode->i_gid_high = 0;
4644ac27a0ecSDave Kleikamp 	}
4645ac27a0ecSDave Kleikamp 	raw_inode->i_links_count = cpu_to_le16(inode->i_nlink);
4646ef7f3835SKalpak Shah 
4647ef7f3835SKalpak Shah 	EXT4_INODE_SET_XTIME(i_ctime, inode, raw_inode);
4648ef7f3835SKalpak Shah 	EXT4_INODE_SET_XTIME(i_mtime, inode, raw_inode);
4649ef7f3835SKalpak Shah 	EXT4_INODE_SET_XTIME(i_atime, inode, raw_inode);
4650ef7f3835SKalpak Shah 	EXT4_EINODE_SET_XTIME(i_crtime, ei, raw_inode);
4651ef7f3835SKalpak Shah 
4652bce92d56SLi Xi 	err = ext4_inode_blocks_set(handle, raw_inode, ei);
4653bce92d56SLi Xi 	if (err) {
4654202ee5dfSTheodore Ts'o 		spin_unlock(&ei->i_raw_lock);
46550fc1b451SAneesh Kumar K.V 		goto out_brelse;
4656202ee5dfSTheodore Ts'o 	}
4657ac27a0ecSDave Kleikamp 	raw_inode->i_dtime = cpu_to_le32(ei->i_dtime);
4658353eb83cSTheodore Ts'o 	raw_inode->i_flags = cpu_to_le32(ei->i_flags & 0xFFFFFFFF);
4659ed3654ebSTheodore Ts'o 	if (likely(!test_opt2(inode->i_sb, HURD_COMPAT)))
4660a1ddeb7eSBadari Pulavarty 		raw_inode->i_file_acl_high =
4661a1ddeb7eSBadari Pulavarty 			cpu_to_le16(ei->i_file_acl >> 32);
46627973c0c1SAneesh Kumar K.V 	raw_inode->i_file_acl_lo = cpu_to_le32(ei->i_file_acl);
4663b71fc079SJan Kara 	if (ei->i_disksize != ext4_isize(raw_inode)) {
4664a48380f7SAneesh Kumar K.V 		ext4_isize_set(raw_inode, ei->i_disksize);
4665b71fc079SJan Kara 		need_datasync = 1;
4666b71fc079SJan Kara 	}
4667ac27a0ecSDave Kleikamp 	if (ei->i_disksize > 0x7fffffffULL) {
4668e2b911c5SDarrick J. Wong 		if (!ext4_has_feature_large_file(sb) ||
4669617ba13bSMingming Cao 				EXT4_SB(sb)->s_es->s_rev_level ==
4670202ee5dfSTheodore Ts'o 		    cpu_to_le32(EXT4_GOOD_OLD_REV))
4671202ee5dfSTheodore Ts'o 			set_large_file = 1;
4672ac27a0ecSDave Kleikamp 	}
4673ac27a0ecSDave Kleikamp 	raw_inode->i_generation = cpu_to_le32(inode->i_generation);
4674ac27a0ecSDave Kleikamp 	if (S_ISCHR(inode->i_mode) || S_ISBLK(inode->i_mode)) {
4675ac27a0ecSDave Kleikamp 		if (old_valid_dev(inode->i_rdev)) {
4676ac27a0ecSDave Kleikamp 			raw_inode->i_block[0] =
4677ac27a0ecSDave Kleikamp 				cpu_to_le32(old_encode_dev(inode->i_rdev));
4678ac27a0ecSDave Kleikamp 			raw_inode->i_block[1] = 0;
4679ac27a0ecSDave Kleikamp 		} else {
4680ac27a0ecSDave Kleikamp 			raw_inode->i_block[0] = 0;
4681ac27a0ecSDave Kleikamp 			raw_inode->i_block[1] =
4682ac27a0ecSDave Kleikamp 				cpu_to_le32(new_encode_dev(inode->i_rdev));
4683ac27a0ecSDave Kleikamp 			raw_inode->i_block[2] = 0;
4684ac27a0ecSDave Kleikamp 		}
4685f19d5870STao Ma 	} else if (!ext4_has_inline_data(inode)) {
4686de9a55b8STheodore Ts'o 		for (block = 0; block < EXT4_N_BLOCKS; block++)
4687ac27a0ecSDave Kleikamp 			raw_inode->i_block[block] = ei->i_data[block];
4688f19d5870STao Ma 	}
4689ac27a0ecSDave Kleikamp 
4690ed3654ebSTheodore Ts'o 	if (likely(!test_opt2(inode->i_sb, HURD_COMPAT))) {
469125ec56b5SJean Noel Cordenner 		raw_inode->i_disk_version = cpu_to_le32(inode->i_version);
469225ec56b5SJean Noel Cordenner 		if (ei->i_extra_isize) {
469325ec56b5SJean Noel Cordenner 			if (EXT4_FITS_IN_INODE(raw_inode, ei, i_version_hi))
469425ec56b5SJean Noel Cordenner 				raw_inode->i_version_hi =
469525ec56b5SJean Noel Cordenner 					cpu_to_le32(inode->i_version >> 32);
4696c4f65706STheodore Ts'o 			raw_inode->i_extra_isize =
4697c4f65706STheodore Ts'o 				cpu_to_le16(ei->i_extra_isize);
4698c4f65706STheodore Ts'o 		}
469925ec56b5SJean Noel Cordenner 	}
4700040cb378SLi Xi 
4701040cb378SLi Xi 	BUG_ON(!EXT4_HAS_RO_COMPAT_FEATURE(inode->i_sb,
4702040cb378SLi Xi 			EXT4_FEATURE_RO_COMPAT_PROJECT) &&
4703040cb378SLi Xi 	       i_projid != EXT4_DEF_PROJID);
4704040cb378SLi Xi 
4705040cb378SLi Xi 	if (EXT4_INODE_SIZE(inode->i_sb) > EXT4_GOOD_OLD_INODE_SIZE &&
4706040cb378SLi Xi 	    EXT4_FITS_IN_INODE(raw_inode, ei, i_projid))
4707040cb378SLi Xi 		raw_inode->i_projid = cpu_to_le32(i_projid);
4708040cb378SLi Xi 
4709814525f4SDarrick J. Wong 	ext4_inode_csum_set(inode, raw_inode, ei);
4710202ee5dfSTheodore Ts'o 	spin_unlock(&ei->i_raw_lock);
4711a26f4992STheodore Ts'o 	if (inode->i_sb->s_flags & MS_LAZYTIME)
4712a26f4992STheodore Ts'o 		ext4_update_other_inodes_time(inode->i_sb, inode->i_ino,
4713a26f4992STheodore Ts'o 					      bh->b_data);
4714202ee5dfSTheodore Ts'o 
47150390131bSFrank Mayhar 	BUFFER_TRACE(bh, "call ext4_handle_dirty_metadata");
471673b50c1cSCurt Wohlgemuth 	rc = ext4_handle_dirty_metadata(handle, NULL, bh);
4717ac27a0ecSDave Kleikamp 	if (!err)
4718ac27a0ecSDave Kleikamp 		err = rc;
471919f5fb7aSTheodore Ts'o 	ext4_clear_inode_state(inode, EXT4_STATE_NEW);
4720202ee5dfSTheodore Ts'o 	if (set_large_file) {
47215d601255Sliang xie 		BUFFER_TRACE(EXT4_SB(sb)->s_sbh, "get write access");
4722202ee5dfSTheodore Ts'o 		err = ext4_journal_get_write_access(handle, EXT4_SB(sb)->s_sbh);
4723202ee5dfSTheodore Ts'o 		if (err)
4724202ee5dfSTheodore Ts'o 			goto out_brelse;
4725202ee5dfSTheodore Ts'o 		ext4_update_dynamic_rev(sb);
4726e2b911c5SDarrick J. Wong 		ext4_set_feature_large_file(sb);
4727202ee5dfSTheodore Ts'o 		ext4_handle_sync(handle);
4728202ee5dfSTheodore Ts'o 		err = ext4_handle_dirty_super(handle, sb);
4729202ee5dfSTheodore Ts'o 	}
4730b71fc079SJan Kara 	ext4_update_inode_fsync_trans(handle, inode, need_datasync);
4731ac27a0ecSDave Kleikamp out_brelse:
4732ac27a0ecSDave Kleikamp 	brelse(bh);
4733617ba13bSMingming Cao 	ext4_std_error(inode->i_sb, err);
4734ac27a0ecSDave Kleikamp 	return err;
4735ac27a0ecSDave Kleikamp }
4736ac27a0ecSDave Kleikamp 
4737ac27a0ecSDave Kleikamp /*
4738617ba13bSMingming Cao  * ext4_write_inode()
4739ac27a0ecSDave Kleikamp  *
4740ac27a0ecSDave Kleikamp  * We are called from a few places:
4741ac27a0ecSDave Kleikamp  *
474287f7e416STheodore Ts'o  * - Within generic_file_aio_write() -> generic_write_sync() for O_SYNC files.
4743ac27a0ecSDave Kleikamp  *   Here, there will be no transaction running. We wait for any running
47444907cb7bSAnatol Pomozov  *   transaction to commit.
4745ac27a0ecSDave Kleikamp  *
474687f7e416STheodore Ts'o  * - Within flush work (sys_sync(), kupdate and such).
474787f7e416STheodore Ts'o  *   We wait on commit, if told to.
4748ac27a0ecSDave Kleikamp  *
474987f7e416STheodore Ts'o  * - Within iput_final() -> write_inode_now()
475087f7e416STheodore Ts'o  *   We wait on commit, if told to.
4751ac27a0ecSDave Kleikamp  *
4752ac27a0ecSDave Kleikamp  * In all cases it is actually safe for us to return without doing anything,
4753ac27a0ecSDave Kleikamp  * because the inode has been copied into a raw inode buffer in
475487f7e416STheodore Ts'o  * ext4_mark_inode_dirty().  This is a correctness thing for WB_SYNC_ALL
475587f7e416STheodore Ts'o  * writeback.
4756ac27a0ecSDave Kleikamp  *
4757ac27a0ecSDave Kleikamp  * Note that we are absolutely dependent upon all inode dirtiers doing the
4758ac27a0ecSDave Kleikamp  * right thing: they *must* call mark_inode_dirty() after dirtying info in
4759ac27a0ecSDave Kleikamp  * which we are interested.
4760ac27a0ecSDave Kleikamp  *
4761ac27a0ecSDave Kleikamp  * It would be a bug for them to not do this.  The code:
4762ac27a0ecSDave Kleikamp  *
4763ac27a0ecSDave Kleikamp  *	mark_inode_dirty(inode)
4764ac27a0ecSDave Kleikamp  *	stuff();
4765ac27a0ecSDave Kleikamp  *	inode->i_size = expr;
4766ac27a0ecSDave Kleikamp  *
476787f7e416STheodore Ts'o  * is in error because write_inode() could occur while `stuff()' is running,
476887f7e416STheodore Ts'o  * and the new i_size will be lost.  Plus the inode will no longer be on the
476987f7e416STheodore Ts'o  * superblock's dirty inode list.
4770ac27a0ecSDave Kleikamp  */
4771a9185b41SChristoph Hellwig int ext4_write_inode(struct inode *inode, struct writeback_control *wbc)
4772ac27a0ecSDave Kleikamp {
477391ac6f43SFrank Mayhar 	int err;
477491ac6f43SFrank Mayhar 
477587f7e416STheodore Ts'o 	if (WARN_ON_ONCE(current->flags & PF_MEMALLOC))
4776ac27a0ecSDave Kleikamp 		return 0;
4777ac27a0ecSDave Kleikamp 
477891ac6f43SFrank Mayhar 	if (EXT4_SB(inode->i_sb)->s_journal) {
4779617ba13bSMingming Cao 		if (ext4_journal_current_handle()) {
4780b38bd33aSMingming Cao 			jbd_debug(1, "called recursively, non-PF_MEMALLOC!\n");
4781ac27a0ecSDave Kleikamp 			dump_stack();
4782ac27a0ecSDave Kleikamp 			return -EIO;
4783ac27a0ecSDave Kleikamp 		}
4784ac27a0ecSDave Kleikamp 
478510542c22SJan Kara 		/*
478610542c22SJan Kara 		 * No need to force transaction in WB_SYNC_NONE mode. Also
478710542c22SJan Kara 		 * ext4_sync_fs() will force the commit after everything is
478810542c22SJan Kara 		 * written.
478910542c22SJan Kara 		 */
479010542c22SJan Kara 		if (wbc->sync_mode != WB_SYNC_ALL || wbc->for_sync)
4791ac27a0ecSDave Kleikamp 			return 0;
4792ac27a0ecSDave Kleikamp 
479391ac6f43SFrank Mayhar 		err = ext4_force_commit(inode->i_sb);
479491ac6f43SFrank Mayhar 	} else {
479591ac6f43SFrank Mayhar 		struct ext4_iloc iloc;
479691ac6f43SFrank Mayhar 
47978b472d73SCurt Wohlgemuth 		err = __ext4_get_inode_loc(inode, &iloc, 0);
479891ac6f43SFrank Mayhar 		if (err)
479991ac6f43SFrank Mayhar 			return err;
480010542c22SJan Kara 		/*
480110542c22SJan Kara 		 * sync(2) will flush the whole buffer cache. No need to do
480210542c22SJan Kara 		 * it here separately for each inode.
480310542c22SJan Kara 		 */
480410542c22SJan Kara 		if (wbc->sync_mode == WB_SYNC_ALL && !wbc->for_sync)
4805830156c7SFrank Mayhar 			sync_dirty_buffer(iloc.bh);
4806830156c7SFrank Mayhar 		if (buffer_req(iloc.bh) && !buffer_uptodate(iloc.bh)) {
4807c398eda0STheodore Ts'o 			EXT4_ERROR_INODE_BLOCK(inode, iloc.bh->b_blocknr,
4808c398eda0STheodore Ts'o 					 "IO error syncing inode");
4809830156c7SFrank Mayhar 			err = -EIO;
4810830156c7SFrank Mayhar 		}
4811fd2dd9fbSCurt Wohlgemuth 		brelse(iloc.bh);
481291ac6f43SFrank Mayhar 	}
481391ac6f43SFrank Mayhar 	return err;
4814ac27a0ecSDave Kleikamp }
4815ac27a0ecSDave Kleikamp 
4816ac27a0ecSDave Kleikamp /*
481753e87268SJan Kara  * In data=journal mode ext4_journalled_invalidatepage() may fail to invalidate
481853e87268SJan Kara  * buffers that are attached to a page stradding i_size and are undergoing
481953e87268SJan Kara  * commit. In that case we have to wait for commit to finish and try again.
482053e87268SJan Kara  */
482153e87268SJan Kara static void ext4_wait_for_tail_page_commit(struct inode *inode)
482253e87268SJan Kara {
482353e87268SJan Kara 	struct page *page;
482453e87268SJan Kara 	unsigned offset;
482553e87268SJan Kara 	journal_t *journal = EXT4_SB(inode->i_sb)->s_journal;
482653e87268SJan Kara 	tid_t commit_tid = 0;
482753e87268SJan Kara 	int ret;
482853e87268SJan Kara 
482953e87268SJan Kara 	offset = inode->i_size & (PAGE_CACHE_SIZE - 1);
483053e87268SJan Kara 	/*
483153e87268SJan Kara 	 * All buffers in the last page remain valid? Then there's nothing to
483253e87268SJan Kara 	 * do. We do the check mainly to optimize the common PAGE_CACHE_SIZE ==
483353e87268SJan Kara 	 * blocksize case
483453e87268SJan Kara 	 */
483553e87268SJan Kara 	if (offset > PAGE_CACHE_SIZE - (1 << inode->i_blkbits))
483653e87268SJan Kara 		return;
483753e87268SJan Kara 	while (1) {
483853e87268SJan Kara 		page = find_lock_page(inode->i_mapping,
483953e87268SJan Kara 				      inode->i_size >> PAGE_CACHE_SHIFT);
484053e87268SJan Kara 		if (!page)
484153e87268SJan Kara 			return;
4842ca99fdd2SLukas Czerner 		ret = __ext4_journalled_invalidatepage(page, offset,
4843ca99fdd2SLukas Czerner 						PAGE_CACHE_SIZE - offset);
484453e87268SJan Kara 		unlock_page(page);
484553e87268SJan Kara 		page_cache_release(page);
484653e87268SJan Kara 		if (ret != -EBUSY)
484753e87268SJan Kara 			return;
484853e87268SJan Kara 		commit_tid = 0;
484953e87268SJan Kara 		read_lock(&journal->j_state_lock);
485053e87268SJan Kara 		if (journal->j_committing_transaction)
485153e87268SJan Kara 			commit_tid = journal->j_committing_transaction->t_tid;
485253e87268SJan Kara 		read_unlock(&journal->j_state_lock);
485353e87268SJan Kara 		if (commit_tid)
485453e87268SJan Kara 			jbd2_log_wait_commit(journal, commit_tid);
485553e87268SJan Kara 	}
485653e87268SJan Kara }
485753e87268SJan Kara 
485853e87268SJan Kara /*
4859617ba13bSMingming Cao  * ext4_setattr()
4860ac27a0ecSDave Kleikamp  *
4861ac27a0ecSDave Kleikamp  * Called from notify_change.
4862ac27a0ecSDave Kleikamp  *
4863ac27a0ecSDave Kleikamp  * We want to trap VFS attempts to truncate the file as soon as
4864ac27a0ecSDave Kleikamp  * possible.  In particular, we want to make sure that when the VFS
4865ac27a0ecSDave Kleikamp  * shrinks i_size, we put the inode on the orphan list and modify
4866ac27a0ecSDave Kleikamp  * i_disksize immediately, so that during the subsequent flushing of
4867ac27a0ecSDave Kleikamp  * dirty pages and freeing of disk blocks, we can guarantee that any
4868ac27a0ecSDave Kleikamp  * commit will leave the blocks being flushed in an unused state on
4869ac27a0ecSDave Kleikamp  * disk.  (On recovery, the inode will get truncated and the blocks will
4870ac27a0ecSDave Kleikamp  * be freed, so we have a strong guarantee that no future commit will
4871ac27a0ecSDave Kleikamp  * leave these blocks visible to the user.)
4872ac27a0ecSDave Kleikamp  *
4873678aaf48SJan Kara  * Another thing we have to assure is that if we are in ordered mode
4874678aaf48SJan Kara  * and inode is still attached to the committing transaction, we must
4875678aaf48SJan Kara  * we start writeout of all the dirty pages which are being truncated.
4876678aaf48SJan Kara  * This way we are sure that all the data written in the previous
4877678aaf48SJan Kara  * transaction are already on disk (truncate waits for pages under
4878678aaf48SJan Kara  * writeback).
4879678aaf48SJan Kara  *
4880678aaf48SJan Kara  * Called with inode->i_mutex down.
4881ac27a0ecSDave Kleikamp  */
4882617ba13bSMingming Cao int ext4_setattr(struct dentry *dentry, struct iattr *attr)
4883ac27a0ecSDave Kleikamp {
48842b0143b5SDavid Howells 	struct inode *inode = d_inode(dentry);
4885ac27a0ecSDave Kleikamp 	int error, rc = 0;
48863d287de3SDmitry Monakhov 	int orphan = 0;
4887ac27a0ecSDave Kleikamp 	const unsigned int ia_valid = attr->ia_valid;
4888ac27a0ecSDave Kleikamp 
4889ac27a0ecSDave Kleikamp 	error = inode_change_ok(inode, attr);
4890ac27a0ecSDave Kleikamp 	if (error)
4891ac27a0ecSDave Kleikamp 		return error;
4892ac27a0ecSDave Kleikamp 
4893a7cdadeeSJan Kara 	if (is_quota_modification(inode, attr)) {
4894a7cdadeeSJan Kara 		error = dquot_initialize(inode);
4895a7cdadeeSJan Kara 		if (error)
4896a7cdadeeSJan Kara 			return error;
4897a7cdadeeSJan Kara 	}
489808cefc7aSEric W. Biederman 	if ((ia_valid & ATTR_UID && !uid_eq(attr->ia_uid, inode->i_uid)) ||
489908cefc7aSEric W. Biederman 	    (ia_valid & ATTR_GID && !gid_eq(attr->ia_gid, inode->i_gid))) {
4900ac27a0ecSDave Kleikamp 		handle_t *handle;
4901ac27a0ecSDave Kleikamp 
4902ac27a0ecSDave Kleikamp 		/* (user+group)*(old+new) structure, inode write (sb,
4903ac27a0ecSDave Kleikamp 		 * inode block, ? - but truncate inode update has it) */
49049924a92aSTheodore Ts'o 		handle = ext4_journal_start(inode, EXT4_HT_QUOTA,
49059924a92aSTheodore Ts'o 			(EXT4_MAXQUOTAS_INIT_BLOCKS(inode->i_sb) +
4906194074acSDmitry Monakhov 			 EXT4_MAXQUOTAS_DEL_BLOCKS(inode->i_sb)) + 3);
4907ac27a0ecSDave Kleikamp 		if (IS_ERR(handle)) {
4908ac27a0ecSDave Kleikamp 			error = PTR_ERR(handle);
4909ac27a0ecSDave Kleikamp 			goto err_out;
4910ac27a0ecSDave Kleikamp 		}
4911b43fa828SChristoph Hellwig 		error = dquot_transfer(inode, attr);
4912ac27a0ecSDave Kleikamp 		if (error) {
4913617ba13bSMingming Cao 			ext4_journal_stop(handle);
4914ac27a0ecSDave Kleikamp 			return error;
4915ac27a0ecSDave Kleikamp 		}
4916ac27a0ecSDave Kleikamp 		/* Update corresponding info in inode so that everything is in
4917ac27a0ecSDave Kleikamp 		 * one transaction */
4918ac27a0ecSDave Kleikamp 		if (attr->ia_valid & ATTR_UID)
4919ac27a0ecSDave Kleikamp 			inode->i_uid = attr->ia_uid;
4920ac27a0ecSDave Kleikamp 		if (attr->ia_valid & ATTR_GID)
4921ac27a0ecSDave Kleikamp 			inode->i_gid = attr->ia_gid;
4922617ba13bSMingming Cao 		error = ext4_mark_inode_dirty(handle, inode);
4923617ba13bSMingming Cao 		ext4_journal_stop(handle);
4924ac27a0ecSDave Kleikamp 	}
4925ac27a0ecSDave Kleikamp 
49263da40c7bSJosef Bacik 	if (attr->ia_valid & ATTR_SIZE) {
49275208386cSJan Kara 		handle_t *handle;
49283da40c7bSJosef Bacik 		loff_t oldsize = inode->i_size;
49293da40c7bSJosef Bacik 		int shrink = (attr->ia_size <= inode->i_size);
4930562c72aaSChristoph Hellwig 
493112e9b892SDmitry Monakhov 		if (!(ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS))) {
4932e2b46574SEric Sandeen 			struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb);
4933e2b46574SEric Sandeen 
49340c095c7fSTheodore Ts'o 			if (attr->ia_size > sbi->s_bitmap_maxbytes)
49350c095c7fSTheodore Ts'o 				return -EFBIG;
4936e2b46574SEric Sandeen 		}
49373da40c7bSJosef Bacik 		if (!S_ISREG(inode->i_mode))
49383da40c7bSJosef Bacik 			return -EINVAL;
4939dff6efc3SChristoph Hellwig 
4940dff6efc3SChristoph Hellwig 		if (IS_I_VERSION(inode) && attr->ia_size != inode->i_size)
4941dff6efc3SChristoph Hellwig 			inode_inc_iversion(inode);
4942dff6efc3SChristoph Hellwig 
49433da40c7bSJosef Bacik 		if (ext4_should_order_data(inode) &&
4944072bd7eaSTheodore Ts'o 		    (attr->ia_size < inode->i_size)) {
49455208386cSJan Kara 			error = ext4_begin_ordered_truncate(inode,
49465208386cSJan Kara 							    attr->ia_size);
49475208386cSJan Kara 			if (error)
49485208386cSJan Kara 				goto err_out;
49495208386cSJan Kara 		}
49503da40c7bSJosef Bacik 		if (attr->ia_size != inode->i_size) {
49519924a92aSTheodore Ts'o 			handle = ext4_journal_start(inode, EXT4_HT_INODE, 3);
4952ac27a0ecSDave Kleikamp 			if (IS_ERR(handle)) {
4953ac27a0ecSDave Kleikamp 				error = PTR_ERR(handle);
4954ac27a0ecSDave Kleikamp 				goto err_out;
4955ac27a0ecSDave Kleikamp 			}
49563da40c7bSJosef Bacik 			if (ext4_handle_valid(handle) && shrink) {
4957617ba13bSMingming Cao 				error = ext4_orphan_add(handle, inode);
49583d287de3SDmitry Monakhov 				orphan = 1;
49593d287de3SDmitry Monakhov 			}
4960911af577SEryu Guan 			/*
4961911af577SEryu Guan 			 * Update c/mtime on truncate up, ext4_truncate() will
4962911af577SEryu Guan 			 * update c/mtime in shrink case below
4963911af577SEryu Guan 			 */
4964911af577SEryu Guan 			if (!shrink) {
4965911af577SEryu Guan 				inode->i_mtime = ext4_current_time(inode);
4966911af577SEryu Guan 				inode->i_ctime = inode->i_mtime;
4967911af577SEryu Guan 			}
496890e775b7SJan Kara 			down_write(&EXT4_I(inode)->i_data_sem);
4969617ba13bSMingming Cao 			EXT4_I(inode)->i_disksize = attr->ia_size;
4970617ba13bSMingming Cao 			rc = ext4_mark_inode_dirty(handle, inode);
4971ac27a0ecSDave Kleikamp 			if (!error)
4972ac27a0ecSDave Kleikamp 				error = rc;
497390e775b7SJan Kara 			/*
497490e775b7SJan Kara 			 * We have to update i_size under i_data_sem together
497590e775b7SJan Kara 			 * with i_disksize to avoid races with writeback code
497690e775b7SJan Kara 			 * running ext4_wb_update_i_disksize().
497790e775b7SJan Kara 			 */
497890e775b7SJan Kara 			if (!error)
497990e775b7SJan Kara 				i_size_write(inode, attr->ia_size);
498090e775b7SJan Kara 			up_write(&EXT4_I(inode)->i_data_sem);
4981617ba13bSMingming Cao 			ext4_journal_stop(handle);
4982678aaf48SJan Kara 			if (error) {
49833da40c7bSJosef Bacik 				if (orphan)
4984678aaf48SJan Kara 					ext4_orphan_del(NULL, inode);
4985678aaf48SJan Kara 				goto err_out;
4986678aaf48SJan Kara 			}
4987d6320cbfSJan Kara 		}
49883da40c7bSJosef Bacik 		if (!shrink)
49893da40c7bSJosef Bacik 			pagecache_isize_extended(inode, oldsize, inode->i_size);
499090e775b7SJan Kara 
499153e87268SJan Kara 		/*
499253e87268SJan Kara 		 * Blocks are going to be removed from the inode. Wait
499353e87268SJan Kara 		 * for dio in flight.  Temporarily disable
499453e87268SJan Kara 		 * dioread_nolock to prevent livelock.
499553e87268SJan Kara 		 */
49961b65007eSDmitry Monakhov 		if (orphan) {
499753e87268SJan Kara 			if (!ext4_should_journal_data(inode)) {
49981b65007eSDmitry Monakhov 				ext4_inode_block_unlocked_dio(inode);
49991c9114f9SDmitry Monakhov 				inode_dio_wait(inode);
50001b65007eSDmitry Monakhov 				ext4_inode_resume_unlocked_dio(inode);
500153e87268SJan Kara 			} else
500253e87268SJan Kara 				ext4_wait_for_tail_page_commit(inode);
50031b65007eSDmitry Monakhov 		}
5004ea3d7209SJan Kara 		down_write(&EXT4_I(inode)->i_mmap_sem);
500553e87268SJan Kara 		/*
500653e87268SJan Kara 		 * Truncate pagecache after we've waited for commit
500753e87268SJan Kara 		 * in data=journal mode to make pages freeable.
500853e87268SJan Kara 		 */
50097caef267SKirill A. Shutemov 		truncate_pagecache(inode, inode->i_size);
50103da40c7bSJosef Bacik 		if (shrink)
5011072bd7eaSTheodore Ts'o 			ext4_truncate(inode);
5012ea3d7209SJan Kara 		up_write(&EXT4_I(inode)->i_mmap_sem);
50133da40c7bSJosef Bacik 	}
5014ac27a0ecSDave Kleikamp 
50151025774cSChristoph Hellwig 	if (!rc) {
50161025774cSChristoph Hellwig 		setattr_copy(inode, attr);
50171025774cSChristoph Hellwig 		mark_inode_dirty(inode);
50181025774cSChristoph Hellwig 	}
50191025774cSChristoph Hellwig 
50201025774cSChristoph Hellwig 	/*
50211025774cSChristoph Hellwig 	 * If the call to ext4_truncate failed to get a transaction handle at
50221025774cSChristoph Hellwig 	 * all, we need to clean up the in-core orphan list manually.
50231025774cSChristoph Hellwig 	 */
50243d287de3SDmitry Monakhov 	if (orphan && inode->i_nlink)
5025617ba13bSMingming Cao 		ext4_orphan_del(NULL, inode);
5026ac27a0ecSDave Kleikamp 
5027ac27a0ecSDave Kleikamp 	if (!rc && (ia_valid & ATTR_MODE))
502864e178a7SChristoph Hellwig 		rc = posix_acl_chmod(inode, inode->i_mode);
5029ac27a0ecSDave Kleikamp 
5030ac27a0ecSDave Kleikamp err_out:
5031617ba13bSMingming Cao 	ext4_std_error(inode->i_sb, error);
5032ac27a0ecSDave Kleikamp 	if (!error)
5033ac27a0ecSDave Kleikamp 		error = rc;
5034ac27a0ecSDave Kleikamp 	return error;
5035ac27a0ecSDave Kleikamp }
5036ac27a0ecSDave Kleikamp 
50373e3398a0SMingming Cao int ext4_getattr(struct vfsmount *mnt, struct dentry *dentry,
50383e3398a0SMingming Cao 		 struct kstat *stat)
50393e3398a0SMingming Cao {
50403e3398a0SMingming Cao 	struct inode *inode;
50418af8eeccSJan Kara 	unsigned long long delalloc_blocks;
50423e3398a0SMingming Cao 
50432b0143b5SDavid Howells 	inode = d_inode(dentry);
50443e3398a0SMingming Cao 	generic_fillattr(inode, stat);
50453e3398a0SMingming Cao 
50463e3398a0SMingming Cao 	/*
50479206c561SAndreas Dilger 	 * If there is inline data in the inode, the inode will normally not
50489206c561SAndreas Dilger 	 * have data blocks allocated (it may have an external xattr block).
50499206c561SAndreas Dilger 	 * Report at least one sector for such files, so tools like tar, rsync,
50509206c561SAndreas Dilger 	 * others doen't incorrectly think the file is completely sparse.
50519206c561SAndreas Dilger 	 */
50529206c561SAndreas Dilger 	if (unlikely(ext4_has_inline_data(inode)))
50539206c561SAndreas Dilger 		stat->blocks += (stat->size + 511) >> 9;
50549206c561SAndreas Dilger 
50559206c561SAndreas Dilger 	/*
50563e3398a0SMingming Cao 	 * We can't update i_blocks if the block allocation is delayed
50573e3398a0SMingming Cao 	 * otherwise in the case of system crash before the real block
50583e3398a0SMingming Cao 	 * allocation is done, we will have i_blocks inconsistent with
50593e3398a0SMingming Cao 	 * on-disk file blocks.
50603e3398a0SMingming Cao 	 * We always keep i_blocks updated together with real
50613e3398a0SMingming Cao 	 * allocation. But to not confuse with user, stat
50623e3398a0SMingming Cao 	 * will return the blocks that include the delayed allocation
50633e3398a0SMingming Cao 	 * blocks for this file.
50643e3398a0SMingming Cao 	 */
506596607551STao Ma 	delalloc_blocks = EXT4_C2B(EXT4_SB(inode->i_sb),
506696607551STao Ma 				   EXT4_I(inode)->i_reserved_data_blocks);
50678af8eeccSJan Kara 	stat->blocks += delalloc_blocks << (inode->i_sb->s_blocksize_bits - 9);
50683e3398a0SMingming Cao 	return 0;
50693e3398a0SMingming Cao }
5070ac27a0ecSDave Kleikamp 
5071fffb2739SJan Kara static int ext4_index_trans_blocks(struct inode *inode, int lblocks,
5072fffb2739SJan Kara 				   int pextents)
5073a02908f1SMingming Cao {
507412e9b892SDmitry Monakhov 	if (!(ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS)))
5075fffb2739SJan Kara 		return ext4_ind_trans_blocks(inode, lblocks);
5076fffb2739SJan Kara 	return ext4_ext_index_trans_blocks(inode, pextents);
5077a02908f1SMingming Cao }
5078ac51d837STheodore Ts'o 
5079a02908f1SMingming Cao /*
5080a02908f1SMingming Cao  * Account for index blocks, block groups bitmaps and block group
5081a02908f1SMingming Cao  * descriptor blocks if modify datablocks and index blocks
5082a02908f1SMingming Cao  * worse case, the indexs blocks spread over different block groups
5083a02908f1SMingming Cao  *
5084a02908f1SMingming Cao  * If datablocks are discontiguous, they are possible to spread over
50854907cb7bSAnatol Pomozov  * different block groups too. If they are contiguous, with flexbg,
5086a02908f1SMingming Cao  * they could still across block group boundary.
5087a02908f1SMingming Cao  *
5088a02908f1SMingming Cao  * Also account for superblock, inode, quota and xattr blocks
5089a02908f1SMingming Cao  */
5090fffb2739SJan Kara static int ext4_meta_trans_blocks(struct inode *inode, int lblocks,
5091fffb2739SJan Kara 				  int pextents)
5092a02908f1SMingming Cao {
50938df9675fSTheodore Ts'o 	ext4_group_t groups, ngroups = ext4_get_groups_count(inode->i_sb);
50948df9675fSTheodore Ts'o 	int gdpblocks;
5095a02908f1SMingming Cao 	int idxblocks;
5096a02908f1SMingming Cao 	int ret = 0;
5097a02908f1SMingming Cao 
5098a02908f1SMingming Cao 	/*
5099fffb2739SJan Kara 	 * How many index blocks need to touch to map @lblocks logical blocks
5100fffb2739SJan Kara 	 * to @pextents physical extents?
5101a02908f1SMingming Cao 	 */
5102fffb2739SJan Kara 	idxblocks = ext4_index_trans_blocks(inode, lblocks, pextents);
5103a02908f1SMingming Cao 
5104a02908f1SMingming Cao 	ret = idxblocks;
5105a02908f1SMingming Cao 
5106a02908f1SMingming Cao 	/*
5107a02908f1SMingming Cao 	 * Now let's see how many group bitmaps and group descriptors need
5108a02908f1SMingming Cao 	 * to account
5109a02908f1SMingming Cao 	 */
5110fffb2739SJan Kara 	groups = idxblocks + pextents;
5111a02908f1SMingming Cao 	gdpblocks = groups;
51128df9675fSTheodore Ts'o 	if (groups > ngroups)
51138df9675fSTheodore Ts'o 		groups = ngroups;
5114a02908f1SMingming Cao 	if (groups > EXT4_SB(inode->i_sb)->s_gdb_count)
5115a02908f1SMingming Cao 		gdpblocks = EXT4_SB(inode->i_sb)->s_gdb_count;
5116a02908f1SMingming Cao 
5117a02908f1SMingming Cao 	/* bitmaps and block group descriptor blocks */
5118a02908f1SMingming Cao 	ret += groups + gdpblocks;
5119a02908f1SMingming Cao 
5120a02908f1SMingming Cao 	/* Blocks for super block, inode, quota and xattr blocks */
5121a02908f1SMingming Cao 	ret += EXT4_META_TRANS_BLOCKS(inode->i_sb);
5122ac27a0ecSDave Kleikamp 
5123ac27a0ecSDave Kleikamp 	return ret;
5124ac27a0ecSDave Kleikamp }
5125ac27a0ecSDave Kleikamp 
5126ac27a0ecSDave Kleikamp /*
512725985edcSLucas De Marchi  * Calculate the total number of credits to reserve to fit
5128f3bd1f3fSMingming Cao  * the modification of a single pages into a single transaction,
5129f3bd1f3fSMingming Cao  * which may include multiple chunks of block allocations.
5130a02908f1SMingming Cao  *
5131525f4ed8SMingming Cao  * This could be called via ext4_write_begin()
5132a02908f1SMingming Cao  *
5133525f4ed8SMingming Cao  * We need to consider the worse case, when
5134a02908f1SMingming Cao  * one new block per extent.
5135a02908f1SMingming Cao  */
5136a02908f1SMingming Cao int ext4_writepage_trans_blocks(struct inode *inode)
5137a02908f1SMingming Cao {
5138a02908f1SMingming Cao 	int bpp = ext4_journal_blocks_per_page(inode);
5139a02908f1SMingming Cao 	int ret;
5140a02908f1SMingming Cao 
5141fffb2739SJan Kara 	ret = ext4_meta_trans_blocks(inode, bpp, bpp);
5142a02908f1SMingming Cao 
5143a02908f1SMingming Cao 	/* Account for data blocks for journalled mode */
5144a02908f1SMingming Cao 	if (ext4_should_journal_data(inode))
5145a02908f1SMingming Cao 		ret += bpp;
5146a02908f1SMingming Cao 	return ret;
5147a02908f1SMingming Cao }
5148f3bd1f3fSMingming Cao 
5149f3bd1f3fSMingming Cao /*
5150f3bd1f3fSMingming Cao  * Calculate the journal credits for a chunk of data modification.
5151f3bd1f3fSMingming Cao  *
5152f3bd1f3fSMingming Cao  * This is called from DIO, fallocate or whoever calling
515379e83036SEric Sandeen  * ext4_map_blocks() to map/allocate a chunk of contiguous disk blocks.
5154f3bd1f3fSMingming Cao  *
5155f3bd1f3fSMingming Cao  * journal buffers for data blocks are not included here, as DIO
5156f3bd1f3fSMingming Cao  * and fallocate do no need to journal data buffers.
5157f3bd1f3fSMingming Cao  */
5158f3bd1f3fSMingming Cao int ext4_chunk_trans_blocks(struct inode *inode, int nrblocks)
5159f3bd1f3fSMingming Cao {
5160f3bd1f3fSMingming Cao 	return ext4_meta_trans_blocks(inode, nrblocks, 1);
5161f3bd1f3fSMingming Cao }
5162f3bd1f3fSMingming Cao 
5163a02908f1SMingming Cao /*
5164617ba13bSMingming Cao  * The caller must have previously called ext4_reserve_inode_write().
5165ac27a0ecSDave Kleikamp  * Give this, we know that the caller already has write access to iloc->bh.
5166ac27a0ecSDave Kleikamp  */
5167617ba13bSMingming Cao int ext4_mark_iloc_dirty(handle_t *handle,
5168617ba13bSMingming Cao 			 struct inode *inode, struct ext4_iloc *iloc)
5169ac27a0ecSDave Kleikamp {
5170ac27a0ecSDave Kleikamp 	int err = 0;
5171ac27a0ecSDave Kleikamp 
5172c64db50eSTheodore Ts'o 	if (IS_I_VERSION(inode))
517325ec56b5SJean Noel Cordenner 		inode_inc_iversion(inode);
517425ec56b5SJean Noel Cordenner 
5175ac27a0ecSDave Kleikamp 	/* the do_update_inode consumes one bh->b_count */
5176ac27a0ecSDave Kleikamp 	get_bh(iloc->bh);
5177ac27a0ecSDave Kleikamp 
5178dab291afSMingming Cao 	/* ext4_do_update_inode() does jbd2_journal_dirty_metadata */
5179830156c7SFrank Mayhar 	err = ext4_do_update_inode(handle, inode, iloc);
5180ac27a0ecSDave Kleikamp 	put_bh(iloc->bh);
5181ac27a0ecSDave Kleikamp 	return err;
5182ac27a0ecSDave Kleikamp }
5183ac27a0ecSDave Kleikamp 
5184ac27a0ecSDave Kleikamp /*
5185ac27a0ecSDave Kleikamp  * On success, We end up with an outstanding reference count against
5186ac27a0ecSDave Kleikamp  * iloc->bh.  This _must_ be cleaned up later.
5187ac27a0ecSDave Kleikamp  */
5188ac27a0ecSDave Kleikamp 
5189ac27a0ecSDave Kleikamp int
5190617ba13bSMingming Cao ext4_reserve_inode_write(handle_t *handle, struct inode *inode,
5191617ba13bSMingming Cao 			 struct ext4_iloc *iloc)
5192ac27a0ecSDave Kleikamp {
51930390131bSFrank Mayhar 	int err;
51940390131bSFrank Mayhar 
5195617ba13bSMingming Cao 	err = ext4_get_inode_loc(inode, iloc);
5196ac27a0ecSDave Kleikamp 	if (!err) {
5197ac27a0ecSDave Kleikamp 		BUFFER_TRACE(iloc->bh, "get_write_access");
5198617ba13bSMingming Cao 		err = ext4_journal_get_write_access(handle, iloc->bh);
5199ac27a0ecSDave Kleikamp 		if (err) {
5200ac27a0ecSDave Kleikamp 			brelse(iloc->bh);
5201ac27a0ecSDave Kleikamp 			iloc->bh = NULL;
5202ac27a0ecSDave Kleikamp 		}
5203ac27a0ecSDave Kleikamp 	}
5204617ba13bSMingming Cao 	ext4_std_error(inode->i_sb, err);
5205ac27a0ecSDave Kleikamp 	return err;
5206ac27a0ecSDave Kleikamp }
5207ac27a0ecSDave Kleikamp 
5208ac27a0ecSDave Kleikamp /*
52096dd4ee7cSKalpak Shah  * Expand an inode by new_extra_isize bytes.
52106dd4ee7cSKalpak Shah  * Returns 0 on success or negative error number on failure.
52116dd4ee7cSKalpak Shah  */
52121d03ec98SAneesh Kumar K.V static int ext4_expand_extra_isize(struct inode *inode,
52131d03ec98SAneesh Kumar K.V 				   unsigned int new_extra_isize,
52141d03ec98SAneesh Kumar K.V 				   struct ext4_iloc iloc,
52151d03ec98SAneesh Kumar K.V 				   handle_t *handle)
52166dd4ee7cSKalpak Shah {
52176dd4ee7cSKalpak Shah 	struct ext4_inode *raw_inode;
52186dd4ee7cSKalpak Shah 	struct ext4_xattr_ibody_header *header;
52196dd4ee7cSKalpak Shah 
52206dd4ee7cSKalpak Shah 	if (EXT4_I(inode)->i_extra_isize >= new_extra_isize)
52216dd4ee7cSKalpak Shah 		return 0;
52226dd4ee7cSKalpak Shah 
52236dd4ee7cSKalpak Shah 	raw_inode = ext4_raw_inode(&iloc);
52246dd4ee7cSKalpak Shah 
52256dd4ee7cSKalpak Shah 	header = IHDR(inode, raw_inode);
52266dd4ee7cSKalpak Shah 
52276dd4ee7cSKalpak Shah 	/* No extended attributes present */
522819f5fb7aSTheodore Ts'o 	if (!ext4_test_inode_state(inode, EXT4_STATE_XATTR) ||
52296dd4ee7cSKalpak Shah 	    header->h_magic != cpu_to_le32(EXT4_XATTR_MAGIC)) {
52306dd4ee7cSKalpak Shah 		memset((void *)raw_inode + EXT4_GOOD_OLD_INODE_SIZE, 0,
52316dd4ee7cSKalpak Shah 			new_extra_isize);
52326dd4ee7cSKalpak Shah 		EXT4_I(inode)->i_extra_isize = new_extra_isize;
52336dd4ee7cSKalpak Shah 		return 0;
52346dd4ee7cSKalpak Shah 	}
52356dd4ee7cSKalpak Shah 
52366dd4ee7cSKalpak Shah 	/* try to expand with EAs present */
52376dd4ee7cSKalpak Shah 	return ext4_expand_extra_isize_ea(inode, new_extra_isize,
52386dd4ee7cSKalpak Shah 					  raw_inode, handle);
52396dd4ee7cSKalpak Shah }
52406dd4ee7cSKalpak Shah 
52416dd4ee7cSKalpak Shah /*
5242ac27a0ecSDave Kleikamp  * What we do here is to mark the in-core inode as clean with respect to inode
5243ac27a0ecSDave Kleikamp  * dirtiness (it may still be data-dirty).
5244ac27a0ecSDave Kleikamp  * This means that the in-core inode may be reaped by prune_icache
5245ac27a0ecSDave Kleikamp  * without having to perform any I/O.  This is a very good thing,
5246ac27a0ecSDave Kleikamp  * because *any* task may call prune_icache - even ones which
5247ac27a0ecSDave Kleikamp  * have a transaction open against a different journal.
5248ac27a0ecSDave Kleikamp  *
5249ac27a0ecSDave Kleikamp  * Is this cheating?  Not really.  Sure, we haven't written the
5250ac27a0ecSDave Kleikamp  * inode out, but prune_icache isn't a user-visible syncing function.
5251ac27a0ecSDave Kleikamp  * Whenever the user wants stuff synced (sys_sync, sys_msync, sys_fsync)
5252ac27a0ecSDave Kleikamp  * we start and wait on commits.
5253ac27a0ecSDave Kleikamp  */
5254617ba13bSMingming Cao int ext4_mark_inode_dirty(handle_t *handle, struct inode *inode)
5255ac27a0ecSDave Kleikamp {
5256617ba13bSMingming Cao 	struct ext4_iloc iloc;
52576dd4ee7cSKalpak Shah 	struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb);
52586dd4ee7cSKalpak Shah 	static unsigned int mnt_count;
52596dd4ee7cSKalpak Shah 	int err, ret;
5260ac27a0ecSDave Kleikamp 
5261ac27a0ecSDave Kleikamp 	might_sleep();
52627ff9c073STheodore Ts'o 	trace_ext4_mark_inode_dirty(inode, _RET_IP_);
5263617ba13bSMingming Cao 	err = ext4_reserve_inode_write(handle, inode, &iloc);
52640390131bSFrank Mayhar 	if (ext4_handle_valid(handle) &&
52650390131bSFrank Mayhar 	    EXT4_I(inode)->i_extra_isize < sbi->s_want_extra_isize &&
526619f5fb7aSTheodore Ts'o 	    !ext4_test_inode_state(inode, EXT4_STATE_NO_EXPAND)) {
52676dd4ee7cSKalpak Shah 		/*
52686dd4ee7cSKalpak Shah 		 * We need extra buffer credits since we may write into EA block
52696dd4ee7cSKalpak Shah 		 * with this same handle. If journal_extend fails, then it will
52706dd4ee7cSKalpak Shah 		 * only result in a minor loss of functionality for that inode.
52716dd4ee7cSKalpak Shah 		 * If this is felt to be critical, then e2fsck should be run to
52726dd4ee7cSKalpak Shah 		 * force a large enough s_min_extra_isize.
52736dd4ee7cSKalpak Shah 		 */
52746dd4ee7cSKalpak Shah 		if ((jbd2_journal_extend(handle,
52756dd4ee7cSKalpak Shah 			     EXT4_DATA_TRANS_BLOCKS(inode->i_sb))) == 0) {
52766dd4ee7cSKalpak Shah 			ret = ext4_expand_extra_isize(inode,
52776dd4ee7cSKalpak Shah 						      sbi->s_want_extra_isize,
52786dd4ee7cSKalpak Shah 						      iloc, handle);
52796dd4ee7cSKalpak Shah 			if (ret) {
528019f5fb7aSTheodore Ts'o 				ext4_set_inode_state(inode,
528119f5fb7aSTheodore Ts'o 						     EXT4_STATE_NO_EXPAND);
5282c1bddad9SAneesh Kumar K.V 				if (mnt_count !=
5283c1bddad9SAneesh Kumar K.V 					le16_to_cpu(sbi->s_es->s_mnt_count)) {
528412062dddSEric Sandeen 					ext4_warning(inode->i_sb,
52856dd4ee7cSKalpak Shah 					"Unable to expand inode %lu. Delete"
52866dd4ee7cSKalpak Shah 					" some EAs or run e2fsck.",
52876dd4ee7cSKalpak Shah 					inode->i_ino);
5288c1bddad9SAneesh Kumar K.V 					mnt_count =
5289c1bddad9SAneesh Kumar K.V 					  le16_to_cpu(sbi->s_es->s_mnt_count);
52906dd4ee7cSKalpak Shah 				}
52916dd4ee7cSKalpak Shah 			}
52926dd4ee7cSKalpak Shah 		}
52936dd4ee7cSKalpak Shah 	}
5294ac27a0ecSDave Kleikamp 	if (!err)
5295617ba13bSMingming Cao 		err = ext4_mark_iloc_dirty(handle, inode, &iloc);
5296ac27a0ecSDave Kleikamp 	return err;
5297ac27a0ecSDave Kleikamp }
5298ac27a0ecSDave Kleikamp 
5299ac27a0ecSDave Kleikamp /*
5300617ba13bSMingming Cao  * ext4_dirty_inode() is called from __mark_inode_dirty()
5301ac27a0ecSDave Kleikamp  *
5302ac27a0ecSDave Kleikamp  * We're really interested in the case where a file is being extended.
5303ac27a0ecSDave Kleikamp  * i_size has been changed by generic_commit_write() and we thus need
5304ac27a0ecSDave Kleikamp  * to include the updated inode in the current transaction.
5305ac27a0ecSDave Kleikamp  *
53065dd4056dSChristoph Hellwig  * Also, dquot_alloc_block() will always dirty the inode when blocks
5307ac27a0ecSDave Kleikamp  * are allocated to the file.
5308ac27a0ecSDave Kleikamp  *
5309ac27a0ecSDave Kleikamp  * If the inode is marked synchronous, we don't honour that here - doing
5310ac27a0ecSDave Kleikamp  * so would cause a commit on atime updates, which we don't bother doing.
5311ac27a0ecSDave Kleikamp  * We handle synchronous inodes at the highest possible level.
53120ae45f63STheodore Ts'o  *
53130ae45f63STheodore Ts'o  * If only the I_DIRTY_TIME flag is set, we can skip everything.  If
53140ae45f63STheodore Ts'o  * I_DIRTY_TIME and I_DIRTY_SYNC is set, the only inode fields we need
53150ae45f63STheodore Ts'o  * to copy into the on-disk inode structure are the timestamp files.
5316ac27a0ecSDave Kleikamp  */
5317aa385729SChristoph Hellwig void ext4_dirty_inode(struct inode *inode, int flags)
5318ac27a0ecSDave Kleikamp {
5319ac27a0ecSDave Kleikamp 	handle_t *handle;
5320ac27a0ecSDave Kleikamp 
53210ae45f63STheodore Ts'o 	if (flags == I_DIRTY_TIME)
53220ae45f63STheodore Ts'o 		return;
53239924a92aSTheodore Ts'o 	handle = ext4_journal_start(inode, EXT4_HT_INODE, 2);
5324ac27a0ecSDave Kleikamp 	if (IS_ERR(handle))
5325ac27a0ecSDave Kleikamp 		goto out;
5326f3dc272fSCurt Wohlgemuth 
5327617ba13bSMingming Cao 	ext4_mark_inode_dirty(handle, inode);
5328f3dc272fSCurt Wohlgemuth 
5329617ba13bSMingming Cao 	ext4_journal_stop(handle);
5330ac27a0ecSDave Kleikamp out:
5331ac27a0ecSDave Kleikamp 	return;
5332ac27a0ecSDave Kleikamp }
5333ac27a0ecSDave Kleikamp 
5334ac27a0ecSDave Kleikamp #if 0
5335ac27a0ecSDave Kleikamp /*
5336ac27a0ecSDave Kleikamp  * Bind an inode's backing buffer_head into this transaction, to prevent
5337ac27a0ecSDave Kleikamp  * it from being flushed to disk early.  Unlike
5338617ba13bSMingming Cao  * ext4_reserve_inode_write, this leaves behind no bh reference and
5339ac27a0ecSDave Kleikamp  * returns no iloc structure, so the caller needs to repeat the iloc
5340ac27a0ecSDave Kleikamp  * lookup to mark the inode dirty later.
5341ac27a0ecSDave Kleikamp  */
5342617ba13bSMingming Cao static int ext4_pin_inode(handle_t *handle, struct inode *inode)
5343ac27a0ecSDave Kleikamp {
5344617ba13bSMingming Cao 	struct ext4_iloc iloc;
5345ac27a0ecSDave Kleikamp 
5346ac27a0ecSDave Kleikamp 	int err = 0;
5347ac27a0ecSDave Kleikamp 	if (handle) {
5348617ba13bSMingming Cao 		err = ext4_get_inode_loc(inode, &iloc);
5349ac27a0ecSDave Kleikamp 		if (!err) {
5350ac27a0ecSDave Kleikamp 			BUFFER_TRACE(iloc.bh, "get_write_access");
5351dab291afSMingming Cao 			err = jbd2_journal_get_write_access(handle, iloc.bh);
5352ac27a0ecSDave Kleikamp 			if (!err)
53530390131bSFrank Mayhar 				err = ext4_handle_dirty_metadata(handle,
535473b50c1cSCurt Wohlgemuth 								 NULL,
5355ac27a0ecSDave Kleikamp 								 iloc.bh);
5356ac27a0ecSDave Kleikamp 			brelse(iloc.bh);
5357ac27a0ecSDave Kleikamp 		}
5358ac27a0ecSDave Kleikamp 	}
5359617ba13bSMingming Cao 	ext4_std_error(inode->i_sb, err);
5360ac27a0ecSDave Kleikamp 	return err;
5361ac27a0ecSDave Kleikamp }
5362ac27a0ecSDave Kleikamp #endif
5363ac27a0ecSDave Kleikamp 
5364617ba13bSMingming Cao int ext4_change_inode_journal_flag(struct inode *inode, int val)
5365ac27a0ecSDave Kleikamp {
5366ac27a0ecSDave Kleikamp 	journal_t *journal;
5367ac27a0ecSDave Kleikamp 	handle_t *handle;
5368ac27a0ecSDave Kleikamp 	int err;
5369ac27a0ecSDave Kleikamp 
5370ac27a0ecSDave Kleikamp 	/*
5371ac27a0ecSDave Kleikamp 	 * We have to be very careful here: changing a data block's
5372ac27a0ecSDave Kleikamp 	 * journaling status dynamically is dangerous.  If we write a
5373ac27a0ecSDave Kleikamp 	 * data block to the journal, change the status and then delete
5374ac27a0ecSDave Kleikamp 	 * that block, we risk forgetting to revoke the old log record
5375ac27a0ecSDave Kleikamp 	 * from the journal and so a subsequent replay can corrupt data.
5376ac27a0ecSDave Kleikamp 	 * So, first we make sure that the journal is empty and that
5377ac27a0ecSDave Kleikamp 	 * nobody is changing anything.
5378ac27a0ecSDave Kleikamp 	 */
5379ac27a0ecSDave Kleikamp 
5380617ba13bSMingming Cao 	journal = EXT4_JOURNAL(inode);
53810390131bSFrank Mayhar 	if (!journal)
53820390131bSFrank Mayhar 		return 0;
5383d699594dSDave Hansen 	if (is_journal_aborted(journal))
5384ac27a0ecSDave Kleikamp 		return -EROFS;
53852aff57b0SYongqiang Yang 	/* We have to allocate physical blocks for delalloc blocks
53862aff57b0SYongqiang Yang 	 * before flushing journal. otherwise delalloc blocks can not
53872aff57b0SYongqiang Yang 	 * be allocated any more. even more truncate on delalloc blocks
53882aff57b0SYongqiang Yang 	 * could trigger BUG by flushing delalloc blocks in journal.
53892aff57b0SYongqiang Yang 	 * There is no delalloc block in non-journal data mode.
53902aff57b0SYongqiang Yang 	 */
53912aff57b0SYongqiang Yang 	if (val && test_opt(inode->i_sb, DELALLOC)) {
53922aff57b0SYongqiang Yang 		err = ext4_alloc_da_blocks(inode);
53932aff57b0SYongqiang Yang 		if (err < 0)
53942aff57b0SYongqiang Yang 			return err;
53952aff57b0SYongqiang Yang 	}
5396ac27a0ecSDave Kleikamp 
539717335dccSDmitry Monakhov 	/* Wait for all existing dio workers */
539817335dccSDmitry Monakhov 	ext4_inode_block_unlocked_dio(inode);
539917335dccSDmitry Monakhov 	inode_dio_wait(inode);
540017335dccSDmitry Monakhov 
5401dab291afSMingming Cao 	jbd2_journal_lock_updates(journal);
5402ac27a0ecSDave Kleikamp 
5403ac27a0ecSDave Kleikamp 	/*
5404ac27a0ecSDave Kleikamp 	 * OK, there are no updates running now, and all cached data is
5405ac27a0ecSDave Kleikamp 	 * synced to disk.  We are now in a completely consistent state
5406ac27a0ecSDave Kleikamp 	 * which doesn't have anything in the journal, and we know that
5407ac27a0ecSDave Kleikamp 	 * no filesystem updates are running, so it is safe to modify
5408ac27a0ecSDave Kleikamp 	 * the inode's in-core data-journaling state flag now.
5409ac27a0ecSDave Kleikamp 	 */
5410ac27a0ecSDave Kleikamp 
5411ac27a0ecSDave Kleikamp 	if (val)
541212e9b892SDmitry Monakhov 		ext4_set_inode_flag(inode, EXT4_INODE_JOURNAL_DATA);
54135872ddaaSYongqiang Yang 	else {
54144f879ca6SJan Kara 		err = jbd2_journal_flush(journal);
54154f879ca6SJan Kara 		if (err < 0) {
54164f879ca6SJan Kara 			jbd2_journal_unlock_updates(journal);
54174f879ca6SJan Kara 			ext4_inode_resume_unlocked_dio(inode);
54184f879ca6SJan Kara 			return err;
54194f879ca6SJan Kara 		}
542012e9b892SDmitry Monakhov 		ext4_clear_inode_flag(inode, EXT4_INODE_JOURNAL_DATA);
54215872ddaaSYongqiang Yang 	}
5422617ba13bSMingming Cao 	ext4_set_aops(inode);
5423ac27a0ecSDave Kleikamp 
5424dab291afSMingming Cao 	jbd2_journal_unlock_updates(journal);
542517335dccSDmitry Monakhov 	ext4_inode_resume_unlocked_dio(inode);
5426ac27a0ecSDave Kleikamp 
5427ac27a0ecSDave Kleikamp 	/* Finally we can mark the inode as dirty. */
5428ac27a0ecSDave Kleikamp 
54299924a92aSTheodore Ts'o 	handle = ext4_journal_start(inode, EXT4_HT_INODE, 1);
5430ac27a0ecSDave Kleikamp 	if (IS_ERR(handle))
5431ac27a0ecSDave Kleikamp 		return PTR_ERR(handle);
5432ac27a0ecSDave Kleikamp 
5433617ba13bSMingming Cao 	err = ext4_mark_inode_dirty(handle, inode);
54340390131bSFrank Mayhar 	ext4_handle_sync(handle);
5435617ba13bSMingming Cao 	ext4_journal_stop(handle);
5436617ba13bSMingming Cao 	ext4_std_error(inode->i_sb, err);
5437ac27a0ecSDave Kleikamp 
5438ac27a0ecSDave Kleikamp 	return err;
5439ac27a0ecSDave Kleikamp }
54402e9ee850SAneesh Kumar K.V 
54412e9ee850SAneesh Kumar K.V static int ext4_bh_unmapped(handle_t *handle, struct buffer_head *bh)
54422e9ee850SAneesh Kumar K.V {
54432e9ee850SAneesh Kumar K.V 	return !buffer_mapped(bh);
54442e9ee850SAneesh Kumar K.V }
54452e9ee850SAneesh Kumar K.V 
5446c2ec175cSNick Piggin int ext4_page_mkwrite(struct vm_area_struct *vma, struct vm_fault *vmf)
54472e9ee850SAneesh Kumar K.V {
5448c2ec175cSNick Piggin 	struct page *page = vmf->page;
54492e9ee850SAneesh Kumar K.V 	loff_t size;
54502e9ee850SAneesh Kumar K.V 	unsigned long len;
54519ea7df53SJan Kara 	int ret;
54522e9ee850SAneesh Kumar K.V 	struct file *file = vma->vm_file;
5453496ad9aaSAl Viro 	struct inode *inode = file_inode(file);
54542e9ee850SAneesh Kumar K.V 	struct address_space *mapping = inode->i_mapping;
54559ea7df53SJan Kara 	handle_t *handle;
54569ea7df53SJan Kara 	get_block_t *get_block;
54579ea7df53SJan Kara 	int retries = 0;
54582e9ee850SAneesh Kumar K.V 
54598e8ad8a5SJan Kara 	sb_start_pagefault(inode->i_sb);
5460041bbb6dSTheodore Ts'o 	file_update_time(vma->vm_file);
5461ea3d7209SJan Kara 
5462ea3d7209SJan Kara 	down_read(&EXT4_I(inode)->i_mmap_sem);
54639ea7df53SJan Kara 	/* Delalloc case is easy... */
54649ea7df53SJan Kara 	if (test_opt(inode->i_sb, DELALLOC) &&
54659ea7df53SJan Kara 	    !ext4_should_journal_data(inode) &&
54669ea7df53SJan Kara 	    !ext4_nonda_switch(inode->i_sb)) {
54679ea7df53SJan Kara 		do {
54685c500029SRoss Zwisler 			ret = block_page_mkwrite(vma, vmf,
54699ea7df53SJan Kara 						   ext4_da_get_block_prep);
54709ea7df53SJan Kara 		} while (ret == -ENOSPC &&
54719ea7df53SJan Kara 		       ext4_should_retry_alloc(inode->i_sb, &retries));
54729ea7df53SJan Kara 		goto out_ret;
54732e9ee850SAneesh Kumar K.V 	}
54740e499890SDarrick J. Wong 
54750e499890SDarrick J. Wong 	lock_page(page);
54769ea7df53SJan Kara 	size = i_size_read(inode);
54779ea7df53SJan Kara 	/* Page got truncated from under us? */
54789ea7df53SJan Kara 	if (page->mapping != mapping || page_offset(page) > size) {
54799ea7df53SJan Kara 		unlock_page(page);
54809ea7df53SJan Kara 		ret = VM_FAULT_NOPAGE;
54819ea7df53SJan Kara 		goto out;
54820e499890SDarrick J. Wong 	}
54832e9ee850SAneesh Kumar K.V 
54842e9ee850SAneesh Kumar K.V 	if (page->index == size >> PAGE_CACHE_SHIFT)
54852e9ee850SAneesh Kumar K.V 		len = size & ~PAGE_CACHE_MASK;
54862e9ee850SAneesh Kumar K.V 	else
54872e9ee850SAneesh Kumar K.V 		len = PAGE_CACHE_SIZE;
5488a827eaffSAneesh Kumar K.V 	/*
54899ea7df53SJan Kara 	 * Return if we have all the buffers mapped. This avoids the need to do
54909ea7df53SJan Kara 	 * journal_start/journal_stop which can block and take a long time
5491a827eaffSAneesh Kumar K.V 	 */
54922e9ee850SAneesh Kumar K.V 	if (page_has_buffers(page)) {
5493f19d5870STao Ma 		if (!ext4_walk_page_buffers(NULL, page_buffers(page),
5494f19d5870STao Ma 					    0, len, NULL,
5495a827eaffSAneesh Kumar K.V 					    ext4_bh_unmapped)) {
54969ea7df53SJan Kara 			/* Wait so that we don't change page under IO */
54971d1d1a76SDarrick J. Wong 			wait_for_stable_page(page);
54989ea7df53SJan Kara 			ret = VM_FAULT_LOCKED;
54999ea7df53SJan Kara 			goto out;
55002e9ee850SAneesh Kumar K.V 		}
5501a827eaffSAneesh Kumar K.V 	}
5502a827eaffSAneesh Kumar K.V 	unlock_page(page);
55039ea7df53SJan Kara 	/* OK, we need to fill the hole... */
55049ea7df53SJan Kara 	if (ext4_should_dioread_nolock(inode))
55059ea7df53SJan Kara 		get_block = ext4_get_block_write;
55069ea7df53SJan Kara 	else
55079ea7df53SJan Kara 		get_block = ext4_get_block;
55089ea7df53SJan Kara retry_alloc:
55099924a92aSTheodore Ts'o 	handle = ext4_journal_start(inode, EXT4_HT_WRITE_PAGE,
55109924a92aSTheodore Ts'o 				    ext4_writepage_trans_blocks(inode));
55119ea7df53SJan Kara 	if (IS_ERR(handle)) {
5512c2ec175cSNick Piggin 		ret = VM_FAULT_SIGBUS;
55139ea7df53SJan Kara 		goto out;
55149ea7df53SJan Kara 	}
55155c500029SRoss Zwisler 	ret = block_page_mkwrite(vma, vmf, get_block);
55169ea7df53SJan Kara 	if (!ret && ext4_should_journal_data(inode)) {
5517f19d5870STao Ma 		if (ext4_walk_page_buffers(handle, page_buffers(page), 0,
55189ea7df53SJan Kara 			  PAGE_CACHE_SIZE, NULL, do_journal_get_write_access)) {
55199ea7df53SJan Kara 			unlock_page(page);
55209ea7df53SJan Kara 			ret = VM_FAULT_SIGBUS;
5521fcbb5515SYongqiang Yang 			ext4_journal_stop(handle);
55229ea7df53SJan Kara 			goto out;
55239ea7df53SJan Kara 		}
55249ea7df53SJan Kara 		ext4_set_inode_state(inode, EXT4_STATE_JDATA);
55259ea7df53SJan Kara 	}
55269ea7df53SJan Kara 	ext4_journal_stop(handle);
55279ea7df53SJan Kara 	if (ret == -ENOSPC && ext4_should_retry_alloc(inode->i_sb, &retries))
55289ea7df53SJan Kara 		goto retry_alloc;
55299ea7df53SJan Kara out_ret:
55309ea7df53SJan Kara 	ret = block_page_mkwrite_return(ret);
55319ea7df53SJan Kara out:
5532ea3d7209SJan Kara 	up_read(&EXT4_I(inode)->i_mmap_sem);
55338e8ad8a5SJan Kara 	sb_end_pagefault(inode->i_sb);
55342e9ee850SAneesh Kumar K.V 	return ret;
55352e9ee850SAneesh Kumar K.V }
5536ea3d7209SJan Kara 
5537ea3d7209SJan Kara int ext4_filemap_fault(struct vm_area_struct *vma, struct vm_fault *vmf)
5538ea3d7209SJan Kara {
5539ea3d7209SJan Kara 	struct inode *inode = file_inode(vma->vm_file);
5540ea3d7209SJan Kara 	int err;
5541ea3d7209SJan Kara 
5542ea3d7209SJan Kara 	down_read(&EXT4_I(inode)->i_mmap_sem);
5543ea3d7209SJan Kara 	err = filemap_fault(vma, vmf);
5544ea3d7209SJan Kara 	up_read(&EXT4_I(inode)->i_mmap_sem);
5545ea3d7209SJan Kara 
5546ea3d7209SJan Kara 	return err;
5547ea3d7209SJan Kara }
5548