xref: /openbmc/linux/fs/ext4/inode.c (revision 705965bd6dfadc3b2e0241da1423ef660bdd04c8)
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 /*
772*705965bdSJan Kara  * Get block function used when preparing for buffered write if we require
773*705965bdSJan Kara  * creating an unwritten extent if blocks haven't been allocated.  The extent
774*705965bdSJan Kara  * will be converted to written after the IO is complete.
775*705965bdSJan Kara  */
776*705965bdSJan Kara int ext4_get_block_unwritten(struct inode *inode, sector_t iblock,
777*705965bdSJan Kara 			     struct buffer_head *bh_result, int create)
778*705965bdSJan Kara {
779*705965bdSJan Kara 	ext4_debug("ext4_get_block_unwritten: inode %lu, create flag %d\n",
780*705965bdSJan Kara 		   inode->i_ino, create);
781*705965bdSJan Kara 	return _ext4_get_block(inode, iblock, bh_result,
782*705965bdSJan Kara 			       EXT4_GET_BLOCKS_IO_CREATE_EXT);
783*705965bdSJan Kara }
784*705965bdSJan Kara 
785*705965bdSJan Kara /* Get block function for DIO reads and writes to inodes without extents */
786*705965bdSJan Kara int ext4_dio_get_block(struct inode *inode, sector_t iblock,
787*705965bdSJan Kara 		       struct buffer_head *bh, int create)
788*705965bdSJan Kara {
789*705965bdSJan Kara 	return _ext4_get_block(inode, iblock, bh,
790*705965bdSJan Kara 			       create ? EXT4_GET_BLOCKS_CREATE : 0);
791*705965bdSJan Kara }
792*705965bdSJan Kara 
793*705965bdSJan Kara /*
794*705965bdSJan Kara  * Get block function for DIO writes when we create unwritten extent if
795*705965bdSJan Kara  * blocks are not allocated yet. The extent will be converted to written
796*705965bdSJan Kara  * after IO is complete.
797*705965bdSJan Kara  */
798*705965bdSJan Kara static int ext4_dio_get_block_unwritten(struct inode *inode, sector_t iblock,
799*705965bdSJan Kara 			struct buffer_head *bh_result, int create)
800*705965bdSJan Kara {
801*705965bdSJan Kara 	ext4_debug("ext4_dio_get_block_unwritten: inode %lu, create flag %d\n",
802*705965bdSJan Kara 		   inode->i_ino, create);
803*705965bdSJan Kara 	return _ext4_get_block(inode, iblock, bh_result,
804*705965bdSJan Kara 			       EXT4_GET_BLOCKS_IO_CREATE_EXT);
805*705965bdSJan Kara }
806*705965bdSJan Kara 
807*705965bdSJan Kara static int ext4_dio_get_block_overwrite(struct inode *inode, sector_t iblock,
808*705965bdSJan Kara 		   struct buffer_head *bh_result, int create)
809*705965bdSJan Kara {
810*705965bdSJan Kara 	int ret;
811*705965bdSJan Kara 
812*705965bdSJan Kara 	ext4_debug("ext4_dio_get_block_overwrite: inode %lu, create flag %d\n",
813*705965bdSJan Kara 		   inode->i_ino, create);
814*705965bdSJan Kara 	ret = _ext4_get_block(inode, iblock, bh_result, 0);
815*705965bdSJan Kara 	/*
816*705965bdSJan Kara 	 * Blocks should have been preallocated! ext4_file_write_iter() checks
817*705965bdSJan Kara 	 * that.
818*705965bdSJan Kara 	 */
819*705965bdSJan Kara 	WARN_ON_ONCE(!buffer_mapped(bh_result));
820*705965bdSJan Kara 
821*705965bdSJan Kara 	return ret;
822*705965bdSJan Kara }
823*705965bdSJan Kara 
824*705965bdSJan Kara 
825*705965bdSJan Kara /*
826ac27a0ecSDave Kleikamp  * `handle' can be NULL if create is zero
827ac27a0ecSDave Kleikamp  */
828617ba13bSMingming Cao struct buffer_head *ext4_getblk(handle_t *handle, struct inode *inode,
829c5e298aeSTheodore Ts'o 				ext4_lblk_t block, int map_flags)
830ac27a0ecSDave Kleikamp {
8312ed88685STheodore Ts'o 	struct ext4_map_blocks map;
8322ed88685STheodore Ts'o 	struct buffer_head *bh;
833c5e298aeSTheodore Ts'o 	int create = map_flags & EXT4_GET_BLOCKS_CREATE;
83410560082STheodore Ts'o 	int err;
835ac27a0ecSDave Kleikamp 
836ac27a0ecSDave Kleikamp 	J_ASSERT(handle != NULL || create == 0);
837ac27a0ecSDave Kleikamp 
8382ed88685STheodore Ts'o 	map.m_lblk = block;
8392ed88685STheodore Ts'o 	map.m_len = 1;
840c5e298aeSTheodore Ts'o 	err = ext4_map_blocks(handle, inode, &map, map_flags);
8412ed88685STheodore Ts'o 
84210560082STheodore Ts'o 	if (err == 0)
84310560082STheodore Ts'o 		return create ? ERR_PTR(-ENOSPC) : NULL;
8442ed88685STheodore Ts'o 	if (err < 0)
84510560082STheodore Ts'o 		return ERR_PTR(err);
8462ed88685STheodore Ts'o 
8472ed88685STheodore Ts'o 	bh = sb_getblk(inode->i_sb, map.m_pblk);
84810560082STheodore Ts'o 	if (unlikely(!bh))
84910560082STheodore Ts'o 		return ERR_PTR(-ENOMEM);
8502ed88685STheodore Ts'o 	if (map.m_flags & EXT4_MAP_NEW) {
851ac27a0ecSDave Kleikamp 		J_ASSERT(create != 0);
852ac39849dSAneesh Kumar K.V 		J_ASSERT(handle != NULL);
853ac27a0ecSDave Kleikamp 
854ac27a0ecSDave Kleikamp 		/*
855ac27a0ecSDave Kleikamp 		 * Now that we do not always journal data, we should
856ac27a0ecSDave Kleikamp 		 * keep in mind whether this should always journal the
857ac27a0ecSDave Kleikamp 		 * new buffer as metadata.  For now, regular file
858617ba13bSMingming Cao 		 * writes use ext4_get_block instead, so it's not a
859ac27a0ecSDave Kleikamp 		 * problem.
860ac27a0ecSDave Kleikamp 		 */
861ac27a0ecSDave Kleikamp 		lock_buffer(bh);
862ac27a0ecSDave Kleikamp 		BUFFER_TRACE(bh, "call get_create_access");
86310560082STheodore Ts'o 		err = ext4_journal_get_create_access(handle, bh);
86410560082STheodore Ts'o 		if (unlikely(err)) {
86510560082STheodore Ts'o 			unlock_buffer(bh);
86610560082STheodore Ts'o 			goto errout;
86710560082STheodore Ts'o 		}
86810560082STheodore Ts'o 		if (!buffer_uptodate(bh)) {
869ac27a0ecSDave Kleikamp 			memset(bh->b_data, 0, inode->i_sb->s_blocksize);
870ac27a0ecSDave Kleikamp 			set_buffer_uptodate(bh);
871ac27a0ecSDave Kleikamp 		}
872ac27a0ecSDave Kleikamp 		unlock_buffer(bh);
8730390131bSFrank Mayhar 		BUFFER_TRACE(bh, "call ext4_handle_dirty_metadata");
8740390131bSFrank Mayhar 		err = ext4_handle_dirty_metadata(handle, inode, bh);
87510560082STheodore Ts'o 		if (unlikely(err))
87610560082STheodore Ts'o 			goto errout;
87710560082STheodore Ts'o 	} else
878ac27a0ecSDave Kleikamp 		BUFFER_TRACE(bh, "not a new buffer");
879ac27a0ecSDave Kleikamp 	return bh;
88010560082STheodore Ts'o errout:
88110560082STheodore Ts'o 	brelse(bh);
88210560082STheodore Ts'o 	return ERR_PTR(err);
883ac27a0ecSDave Kleikamp }
884ac27a0ecSDave Kleikamp 
885617ba13bSMingming Cao struct buffer_head *ext4_bread(handle_t *handle, struct inode *inode,
886c5e298aeSTheodore Ts'o 			       ext4_lblk_t block, int map_flags)
887ac27a0ecSDave Kleikamp {
888ac27a0ecSDave Kleikamp 	struct buffer_head *bh;
889ac27a0ecSDave Kleikamp 
890c5e298aeSTheodore Ts'o 	bh = ext4_getblk(handle, inode, block, map_flags);
8911c215028STheodore Ts'o 	if (IS_ERR(bh))
892ac27a0ecSDave Kleikamp 		return bh;
8931c215028STheodore Ts'o 	if (!bh || buffer_uptodate(bh))
894ac27a0ecSDave Kleikamp 		return bh;
89565299a3bSChristoph Hellwig 	ll_rw_block(READ | REQ_META | REQ_PRIO, 1, &bh);
896ac27a0ecSDave Kleikamp 	wait_on_buffer(bh);
897ac27a0ecSDave Kleikamp 	if (buffer_uptodate(bh))
898ac27a0ecSDave Kleikamp 		return bh;
899ac27a0ecSDave Kleikamp 	put_bh(bh);
9001c215028STheodore Ts'o 	return ERR_PTR(-EIO);
901ac27a0ecSDave Kleikamp }
902ac27a0ecSDave Kleikamp 
903f19d5870STao Ma int ext4_walk_page_buffers(handle_t *handle,
904ac27a0ecSDave Kleikamp 			   struct buffer_head *head,
905ac27a0ecSDave Kleikamp 			   unsigned from,
906ac27a0ecSDave Kleikamp 			   unsigned to,
907ac27a0ecSDave Kleikamp 			   int *partial,
908ac27a0ecSDave Kleikamp 			   int (*fn)(handle_t *handle,
909ac27a0ecSDave Kleikamp 				     struct buffer_head *bh))
910ac27a0ecSDave Kleikamp {
911ac27a0ecSDave Kleikamp 	struct buffer_head *bh;
912ac27a0ecSDave Kleikamp 	unsigned block_start, block_end;
913ac27a0ecSDave Kleikamp 	unsigned blocksize = head->b_size;
914ac27a0ecSDave Kleikamp 	int err, ret = 0;
915ac27a0ecSDave Kleikamp 	struct buffer_head *next;
916ac27a0ecSDave Kleikamp 
917ac27a0ecSDave Kleikamp 	for (bh = head, block_start = 0;
918ac27a0ecSDave Kleikamp 	     ret == 0 && (bh != head || !block_start);
919de9a55b8STheodore Ts'o 	     block_start = block_end, bh = next) {
920ac27a0ecSDave Kleikamp 		next = bh->b_this_page;
921ac27a0ecSDave Kleikamp 		block_end = block_start + blocksize;
922ac27a0ecSDave Kleikamp 		if (block_end <= from || block_start >= to) {
923ac27a0ecSDave Kleikamp 			if (partial && !buffer_uptodate(bh))
924ac27a0ecSDave Kleikamp 				*partial = 1;
925ac27a0ecSDave Kleikamp 			continue;
926ac27a0ecSDave Kleikamp 		}
927ac27a0ecSDave Kleikamp 		err = (*fn)(handle, bh);
928ac27a0ecSDave Kleikamp 		if (!ret)
929ac27a0ecSDave Kleikamp 			ret = err;
930ac27a0ecSDave Kleikamp 	}
931ac27a0ecSDave Kleikamp 	return ret;
932ac27a0ecSDave Kleikamp }
933ac27a0ecSDave Kleikamp 
934ac27a0ecSDave Kleikamp /*
935ac27a0ecSDave Kleikamp  * To preserve ordering, it is essential that the hole instantiation and
936ac27a0ecSDave Kleikamp  * the data write be encapsulated in a single transaction.  We cannot
937617ba13bSMingming Cao  * close off a transaction and start a new one between the ext4_get_block()
938dab291afSMingming Cao  * and the commit_write().  So doing the jbd2_journal_start at the start of
939ac27a0ecSDave Kleikamp  * prepare_write() is the right place.
940ac27a0ecSDave Kleikamp  *
94136ade451SJan Kara  * Also, this function can nest inside ext4_writepage().  In that case, we
94236ade451SJan Kara  * *know* that ext4_writepage() has generated enough buffer credits to do the
94336ade451SJan Kara  * whole page.  So we won't block on the journal in that case, which is good,
94436ade451SJan Kara  * because the caller may be PF_MEMALLOC.
945ac27a0ecSDave Kleikamp  *
946617ba13bSMingming Cao  * By accident, ext4 can be reentered when a transaction is open via
947ac27a0ecSDave Kleikamp  * quota file writes.  If we were to commit the transaction while thus
948ac27a0ecSDave Kleikamp  * reentered, there can be a deadlock - we would be holding a quota
949ac27a0ecSDave Kleikamp  * lock, and the commit would never complete if another thread had a
950ac27a0ecSDave Kleikamp  * transaction open and was blocking on the quota lock - a ranking
951ac27a0ecSDave Kleikamp  * violation.
952ac27a0ecSDave Kleikamp  *
953dab291afSMingming Cao  * So what we do is to rely on the fact that jbd2_journal_stop/journal_start
954ac27a0ecSDave Kleikamp  * will _not_ run commit under these circumstances because handle->h_ref
955ac27a0ecSDave Kleikamp  * is elevated.  We'll still have enough credits for the tiny quotafile
956ac27a0ecSDave Kleikamp  * write.
957ac27a0ecSDave Kleikamp  */
958f19d5870STao Ma int do_journal_get_write_access(handle_t *handle,
959ac27a0ecSDave Kleikamp 				struct buffer_head *bh)
960ac27a0ecSDave Kleikamp {
96156d35a4cSJan Kara 	int dirty = buffer_dirty(bh);
96256d35a4cSJan Kara 	int ret;
96356d35a4cSJan Kara 
964ac27a0ecSDave Kleikamp 	if (!buffer_mapped(bh) || buffer_freed(bh))
965ac27a0ecSDave Kleikamp 		return 0;
96656d35a4cSJan Kara 	/*
967ebdec241SChristoph Hellwig 	 * __block_write_begin() could have dirtied some buffers. Clean
96856d35a4cSJan Kara 	 * the dirty bit as jbd2_journal_get_write_access() could complain
96956d35a4cSJan Kara 	 * otherwise about fs integrity issues. Setting of the dirty bit
970ebdec241SChristoph Hellwig 	 * by __block_write_begin() isn't a real problem here as we clear
97156d35a4cSJan Kara 	 * the bit before releasing a page lock and thus writeback cannot
97256d35a4cSJan Kara 	 * ever write the buffer.
97356d35a4cSJan Kara 	 */
97456d35a4cSJan Kara 	if (dirty)
97556d35a4cSJan Kara 		clear_buffer_dirty(bh);
9765d601255Sliang xie 	BUFFER_TRACE(bh, "get write access");
97756d35a4cSJan Kara 	ret = ext4_journal_get_write_access(handle, bh);
97856d35a4cSJan Kara 	if (!ret && dirty)
97956d35a4cSJan Kara 		ret = ext4_handle_dirty_metadata(handle, NULL, bh);
98056d35a4cSJan Kara 	return ret;
981ac27a0ecSDave Kleikamp }
982ac27a0ecSDave Kleikamp 
9832058f83aSMichael Halcrow #ifdef CONFIG_EXT4_FS_ENCRYPTION
9842058f83aSMichael Halcrow static int ext4_block_write_begin(struct page *page, loff_t pos, unsigned len,
9852058f83aSMichael Halcrow 				  get_block_t *get_block)
9862058f83aSMichael Halcrow {
9872058f83aSMichael Halcrow 	unsigned from = pos & (PAGE_CACHE_SIZE - 1);
9882058f83aSMichael Halcrow 	unsigned to = from + len;
9892058f83aSMichael Halcrow 	struct inode *inode = page->mapping->host;
9902058f83aSMichael Halcrow 	unsigned block_start, block_end;
9912058f83aSMichael Halcrow 	sector_t block;
9922058f83aSMichael Halcrow 	int err = 0;
9932058f83aSMichael Halcrow 	unsigned blocksize = inode->i_sb->s_blocksize;
9942058f83aSMichael Halcrow 	unsigned bbits;
9952058f83aSMichael Halcrow 	struct buffer_head *bh, *head, *wait[2], **wait_bh = wait;
9962058f83aSMichael Halcrow 	bool decrypt = false;
9972058f83aSMichael Halcrow 
9982058f83aSMichael Halcrow 	BUG_ON(!PageLocked(page));
9992058f83aSMichael Halcrow 	BUG_ON(from > PAGE_CACHE_SIZE);
10002058f83aSMichael Halcrow 	BUG_ON(to > PAGE_CACHE_SIZE);
10012058f83aSMichael Halcrow 	BUG_ON(from > to);
10022058f83aSMichael Halcrow 
10032058f83aSMichael Halcrow 	if (!page_has_buffers(page))
10042058f83aSMichael Halcrow 		create_empty_buffers(page, blocksize, 0);
10052058f83aSMichael Halcrow 	head = page_buffers(page);
10062058f83aSMichael Halcrow 	bbits = ilog2(blocksize);
10072058f83aSMichael Halcrow 	block = (sector_t)page->index << (PAGE_CACHE_SHIFT - bbits);
10082058f83aSMichael Halcrow 
10092058f83aSMichael Halcrow 	for (bh = head, block_start = 0; bh != head || !block_start;
10102058f83aSMichael Halcrow 	    block++, block_start = block_end, bh = bh->b_this_page) {
10112058f83aSMichael Halcrow 		block_end = block_start + blocksize;
10122058f83aSMichael Halcrow 		if (block_end <= from || block_start >= to) {
10132058f83aSMichael Halcrow 			if (PageUptodate(page)) {
10142058f83aSMichael Halcrow 				if (!buffer_uptodate(bh))
10152058f83aSMichael Halcrow 					set_buffer_uptodate(bh);
10162058f83aSMichael Halcrow 			}
10172058f83aSMichael Halcrow 			continue;
10182058f83aSMichael Halcrow 		}
10192058f83aSMichael Halcrow 		if (buffer_new(bh))
10202058f83aSMichael Halcrow 			clear_buffer_new(bh);
10212058f83aSMichael Halcrow 		if (!buffer_mapped(bh)) {
10222058f83aSMichael Halcrow 			WARN_ON(bh->b_size != blocksize);
10232058f83aSMichael Halcrow 			err = get_block(inode, block, bh, 1);
10242058f83aSMichael Halcrow 			if (err)
10252058f83aSMichael Halcrow 				break;
10262058f83aSMichael Halcrow 			if (buffer_new(bh)) {
10272058f83aSMichael Halcrow 				unmap_underlying_metadata(bh->b_bdev,
10282058f83aSMichael Halcrow 							  bh->b_blocknr);
10292058f83aSMichael Halcrow 				if (PageUptodate(page)) {
10302058f83aSMichael Halcrow 					clear_buffer_new(bh);
10312058f83aSMichael Halcrow 					set_buffer_uptodate(bh);
10322058f83aSMichael Halcrow 					mark_buffer_dirty(bh);
10332058f83aSMichael Halcrow 					continue;
10342058f83aSMichael Halcrow 				}
10352058f83aSMichael Halcrow 				if (block_end > to || block_start < from)
10362058f83aSMichael Halcrow 					zero_user_segments(page, to, block_end,
10372058f83aSMichael Halcrow 							   block_start, from);
10382058f83aSMichael Halcrow 				continue;
10392058f83aSMichael Halcrow 			}
10402058f83aSMichael Halcrow 		}
10412058f83aSMichael Halcrow 		if (PageUptodate(page)) {
10422058f83aSMichael Halcrow 			if (!buffer_uptodate(bh))
10432058f83aSMichael Halcrow 				set_buffer_uptodate(bh);
10442058f83aSMichael Halcrow 			continue;
10452058f83aSMichael Halcrow 		}
10462058f83aSMichael Halcrow 		if (!buffer_uptodate(bh) && !buffer_delay(bh) &&
10472058f83aSMichael Halcrow 		    !buffer_unwritten(bh) &&
10482058f83aSMichael Halcrow 		    (block_start < from || block_end > to)) {
10492058f83aSMichael Halcrow 			ll_rw_block(READ, 1, &bh);
10502058f83aSMichael Halcrow 			*wait_bh++ = bh;
10512058f83aSMichael Halcrow 			decrypt = ext4_encrypted_inode(inode) &&
10522058f83aSMichael Halcrow 				S_ISREG(inode->i_mode);
10532058f83aSMichael Halcrow 		}
10542058f83aSMichael Halcrow 	}
10552058f83aSMichael Halcrow 	/*
10562058f83aSMichael Halcrow 	 * If we issued read requests, let them complete.
10572058f83aSMichael Halcrow 	 */
10582058f83aSMichael Halcrow 	while (wait_bh > wait) {
10592058f83aSMichael Halcrow 		wait_on_buffer(*--wait_bh);
10602058f83aSMichael Halcrow 		if (!buffer_uptodate(*wait_bh))
10612058f83aSMichael Halcrow 			err = -EIO;
10622058f83aSMichael Halcrow 	}
10632058f83aSMichael Halcrow 	if (unlikely(err))
10642058f83aSMichael Halcrow 		page_zero_new_buffers(page, from, to);
10652058f83aSMichael Halcrow 	else if (decrypt)
10663684de8cSTheodore Ts'o 		err = ext4_decrypt(page);
10672058f83aSMichael Halcrow 	return err;
10682058f83aSMichael Halcrow }
10692058f83aSMichael Halcrow #endif
10702058f83aSMichael Halcrow 
1071bfc1af65SNick Piggin static int ext4_write_begin(struct file *file, struct address_space *mapping,
1072bfc1af65SNick Piggin 			    loff_t pos, unsigned len, unsigned flags,
1073bfc1af65SNick Piggin 			    struct page **pagep, void **fsdata)
1074ac27a0ecSDave Kleikamp {
1075bfc1af65SNick Piggin 	struct inode *inode = mapping->host;
10761938a150SAneesh Kumar K.V 	int ret, needed_blocks;
1077ac27a0ecSDave Kleikamp 	handle_t *handle;
1078ac27a0ecSDave Kleikamp 	int retries = 0;
1079bfc1af65SNick Piggin 	struct page *page;
1080bfc1af65SNick Piggin 	pgoff_t index;
1081bfc1af65SNick Piggin 	unsigned from, to;
1082bfc1af65SNick Piggin 
10839bffad1eSTheodore Ts'o 	trace_ext4_write_begin(inode, pos, len, flags);
10841938a150SAneesh Kumar K.V 	/*
10851938a150SAneesh Kumar K.V 	 * Reserve one block more for addition to orphan list in case
10861938a150SAneesh Kumar K.V 	 * we allocate blocks but write fails for some reason
10871938a150SAneesh Kumar K.V 	 */
10881938a150SAneesh Kumar K.V 	needed_blocks = ext4_writepage_trans_blocks(inode) + 1;
1089bfc1af65SNick Piggin 	index = pos >> PAGE_CACHE_SHIFT;
1090bfc1af65SNick Piggin 	from = pos & (PAGE_CACHE_SIZE - 1);
1091bfc1af65SNick Piggin 	to = from + len;
1092ac27a0ecSDave Kleikamp 
1093f19d5870STao Ma 	if (ext4_test_inode_state(inode, EXT4_STATE_MAY_INLINE_DATA)) {
1094f19d5870STao Ma 		ret = ext4_try_to_write_inline_data(mapping, inode, pos, len,
1095f19d5870STao Ma 						    flags, pagep);
1096f19d5870STao Ma 		if (ret < 0)
109747564bfbSTheodore Ts'o 			return ret;
109847564bfbSTheodore Ts'o 		if (ret == 1)
109947564bfbSTheodore Ts'o 			return 0;
1100f19d5870STao Ma 	}
1101f19d5870STao Ma 
110247564bfbSTheodore Ts'o 	/*
110347564bfbSTheodore Ts'o 	 * grab_cache_page_write_begin() can take a long time if the
110447564bfbSTheodore Ts'o 	 * system is thrashing due to memory pressure, or if the page
110547564bfbSTheodore Ts'o 	 * is being written back.  So grab it first before we start
110647564bfbSTheodore Ts'o 	 * the transaction handle.  This also allows us to allocate
110747564bfbSTheodore Ts'o 	 * the page (if needed) without using GFP_NOFS.
110847564bfbSTheodore Ts'o 	 */
110947564bfbSTheodore Ts'o retry_grab:
111054566b2cSNick Piggin 	page = grab_cache_page_write_begin(mapping, index, flags);
111147564bfbSTheodore Ts'o 	if (!page)
111247564bfbSTheodore Ts'o 		return -ENOMEM;
111347564bfbSTheodore Ts'o 	unlock_page(page);
111447564bfbSTheodore Ts'o 
111547564bfbSTheodore Ts'o retry_journal:
11169924a92aSTheodore Ts'o 	handle = ext4_journal_start(inode, EXT4_HT_WRITE_PAGE, needed_blocks);
1117ac27a0ecSDave Kleikamp 	if (IS_ERR(handle)) {
111847564bfbSTheodore Ts'o 		page_cache_release(page);
111947564bfbSTheodore Ts'o 		return PTR_ERR(handle);
1120cf108bcaSJan Kara 	}
1121f19d5870STao Ma 
112247564bfbSTheodore Ts'o 	lock_page(page);
112347564bfbSTheodore Ts'o 	if (page->mapping != mapping) {
112447564bfbSTheodore Ts'o 		/* The page got truncated from under us */
112547564bfbSTheodore Ts'o 		unlock_page(page);
112647564bfbSTheodore Ts'o 		page_cache_release(page);
1127cf108bcaSJan Kara 		ext4_journal_stop(handle);
112847564bfbSTheodore Ts'o 		goto retry_grab;
1129cf108bcaSJan Kara 	}
11307afe5aa5SDmitry Monakhov 	/* In case writeback began while the page was unlocked */
11317afe5aa5SDmitry Monakhov 	wait_for_stable_page(page);
1132cf108bcaSJan Kara 
11332058f83aSMichael Halcrow #ifdef CONFIG_EXT4_FS_ENCRYPTION
11342058f83aSMichael Halcrow 	if (ext4_should_dioread_nolock(inode))
11352058f83aSMichael Halcrow 		ret = ext4_block_write_begin(page, pos, len,
1136*705965bdSJan Kara 					     ext4_get_block_unwritten);
11372058f83aSMichael Halcrow 	else
11382058f83aSMichael Halcrow 		ret = ext4_block_write_begin(page, pos, len,
11392058f83aSMichael Halcrow 					     ext4_get_block);
11402058f83aSMichael Halcrow #else
1141744692dcSJiaying Zhang 	if (ext4_should_dioread_nolock(inode))
1142*705965bdSJan Kara 		ret = __block_write_begin(page, pos, len,
1143*705965bdSJan Kara 					  ext4_get_block_unwritten);
1144744692dcSJiaying Zhang 	else
11456e1db88dSChristoph Hellwig 		ret = __block_write_begin(page, pos, len, ext4_get_block);
11462058f83aSMichael Halcrow #endif
1147bfc1af65SNick Piggin 	if (!ret && ext4_should_journal_data(inode)) {
1148f19d5870STao Ma 		ret = ext4_walk_page_buffers(handle, page_buffers(page),
1149f19d5870STao Ma 					     from, to, NULL,
1150f19d5870STao Ma 					     do_journal_get_write_access);
1151b46be050SAndrey Savochkin 	}
1152bfc1af65SNick Piggin 
1153bfc1af65SNick Piggin 	if (ret) {
1154bfc1af65SNick Piggin 		unlock_page(page);
1155ae4d5372SAneesh Kumar K.V 		/*
11566e1db88dSChristoph Hellwig 		 * __block_write_begin may have instantiated a few blocks
1157ae4d5372SAneesh Kumar K.V 		 * outside i_size.  Trim these off again. Don't need
1158ae4d5372SAneesh Kumar K.V 		 * i_size_read because we hold i_mutex.
11591938a150SAneesh Kumar K.V 		 *
11601938a150SAneesh Kumar K.V 		 * Add inode to orphan list in case we crash before
11611938a150SAneesh Kumar K.V 		 * truncate finishes
1162ae4d5372SAneesh Kumar K.V 		 */
1163ffacfa7aSJan Kara 		if (pos + len > inode->i_size && ext4_can_truncate(inode))
11641938a150SAneesh Kumar K.V 			ext4_orphan_add(handle, inode);
11651938a150SAneesh Kumar K.V 
11661938a150SAneesh Kumar K.V 		ext4_journal_stop(handle);
11671938a150SAneesh Kumar K.V 		if (pos + len > inode->i_size) {
1168b9a4207dSJan Kara 			ext4_truncate_failed_write(inode);
11691938a150SAneesh Kumar K.V 			/*
1170ffacfa7aSJan Kara 			 * If truncate failed early the inode might
11711938a150SAneesh Kumar K.V 			 * still be on the orphan list; we need to
11721938a150SAneesh Kumar K.V 			 * make sure the inode is removed from the
11731938a150SAneesh Kumar K.V 			 * orphan list in that case.
11741938a150SAneesh Kumar K.V 			 */
11751938a150SAneesh Kumar K.V 			if (inode->i_nlink)
11761938a150SAneesh Kumar K.V 				ext4_orphan_del(NULL, inode);
11771938a150SAneesh Kumar K.V 		}
1178bfc1af65SNick Piggin 
117947564bfbSTheodore Ts'o 		if (ret == -ENOSPC &&
118047564bfbSTheodore Ts'o 		    ext4_should_retry_alloc(inode->i_sb, &retries))
118147564bfbSTheodore Ts'o 			goto retry_journal;
118247564bfbSTheodore Ts'o 		page_cache_release(page);
118347564bfbSTheodore Ts'o 		return ret;
118447564bfbSTheodore Ts'o 	}
118547564bfbSTheodore Ts'o 	*pagep = page;
1186ac27a0ecSDave Kleikamp 	return ret;
1187ac27a0ecSDave Kleikamp }
1188ac27a0ecSDave Kleikamp 
1189bfc1af65SNick Piggin /* For write_end() in data=journal mode */
1190bfc1af65SNick Piggin static int write_end_fn(handle_t *handle, struct buffer_head *bh)
1191ac27a0ecSDave Kleikamp {
119213fca323STheodore Ts'o 	int ret;
1193ac27a0ecSDave Kleikamp 	if (!buffer_mapped(bh) || buffer_freed(bh))
1194ac27a0ecSDave Kleikamp 		return 0;
1195ac27a0ecSDave Kleikamp 	set_buffer_uptodate(bh);
119613fca323STheodore Ts'o 	ret = ext4_handle_dirty_metadata(handle, NULL, bh);
119713fca323STheodore Ts'o 	clear_buffer_meta(bh);
119813fca323STheodore Ts'o 	clear_buffer_prio(bh);
119913fca323STheodore Ts'o 	return ret;
1200ac27a0ecSDave Kleikamp }
1201ac27a0ecSDave Kleikamp 
1202eed4333fSZheng Liu /*
1203eed4333fSZheng Liu  * We need to pick up the new inode size which generic_commit_write gave us
1204eed4333fSZheng Liu  * `file' can be NULL - eg, when called from page_symlink().
1205eed4333fSZheng Liu  *
1206eed4333fSZheng Liu  * ext4 never places buffers on inode->i_mapping->private_list.  metadata
1207eed4333fSZheng Liu  * buffers are managed internally.
1208eed4333fSZheng Liu  */
1209eed4333fSZheng Liu static int ext4_write_end(struct file *file,
1210f8514083SAneesh Kumar K.V 			  struct address_space *mapping,
1211f8514083SAneesh Kumar K.V 			  loff_t pos, unsigned len, unsigned copied,
1212f8514083SAneesh Kumar K.V 			  struct page *page, void *fsdata)
1213f8514083SAneesh Kumar K.V {
1214f8514083SAneesh Kumar K.V 	handle_t *handle = ext4_journal_current_handle();
1215eed4333fSZheng Liu 	struct inode *inode = mapping->host;
12160572639fSXiaoguang Wang 	loff_t old_size = inode->i_size;
1217eed4333fSZheng Liu 	int ret = 0, ret2;
1218eed4333fSZheng Liu 	int i_size_changed = 0;
1219eed4333fSZheng Liu 
1220eed4333fSZheng Liu 	trace_ext4_write_end(inode, pos, len, copied);
1221eed4333fSZheng Liu 	if (ext4_test_inode_state(inode, EXT4_STATE_ORDERED_MODE)) {
1222eed4333fSZheng Liu 		ret = ext4_jbd2_file_inode(handle, inode);
1223eed4333fSZheng Liu 		if (ret) {
1224eed4333fSZheng Liu 			unlock_page(page);
1225eed4333fSZheng Liu 			page_cache_release(page);
1226eed4333fSZheng Liu 			goto errout;
1227eed4333fSZheng Liu 		}
1228eed4333fSZheng Liu 	}
1229f8514083SAneesh Kumar K.V 
123042c832deSTheodore Ts'o 	if (ext4_has_inline_data(inode)) {
123142c832deSTheodore Ts'o 		ret = ext4_write_inline_data_end(inode, pos, len,
1232f19d5870STao Ma 						 copied, page);
123342c832deSTheodore Ts'o 		if (ret < 0)
123442c832deSTheodore Ts'o 			goto errout;
123542c832deSTheodore Ts'o 		copied = ret;
123642c832deSTheodore Ts'o 	} else
1237f19d5870STao Ma 		copied = block_write_end(file, mapping, pos,
1238f19d5870STao Ma 					 len, copied, page, fsdata);
1239f8514083SAneesh Kumar K.V 	/*
12404631dbf6SDmitry Monakhov 	 * it's important to update i_size while still holding page lock:
1241f8514083SAneesh Kumar K.V 	 * page writeout could otherwise come in and zero beyond i_size.
1242f8514083SAneesh Kumar K.V 	 */
12434631dbf6SDmitry Monakhov 	i_size_changed = ext4_update_inode_size(inode, pos + copied);
1244f8514083SAneesh Kumar K.V 	unlock_page(page);
1245f8514083SAneesh Kumar K.V 	page_cache_release(page);
1246f8514083SAneesh Kumar K.V 
12470572639fSXiaoguang Wang 	if (old_size < pos)
12480572639fSXiaoguang Wang 		pagecache_isize_extended(inode, old_size, pos);
1249f8514083SAneesh Kumar K.V 	/*
1250f8514083SAneesh Kumar K.V 	 * Don't mark the inode dirty under page lock. First, it unnecessarily
1251f8514083SAneesh Kumar K.V 	 * makes the holding time of page lock longer. Second, it forces lock
1252f8514083SAneesh Kumar K.V 	 * ordering of page lock and transaction start for journaling
1253f8514083SAneesh Kumar K.V 	 * filesystems.
1254f8514083SAneesh Kumar K.V 	 */
1255f8514083SAneesh Kumar K.V 	if (i_size_changed)
1256f8514083SAneesh Kumar K.V 		ext4_mark_inode_dirty(handle, inode);
1257f8514083SAneesh Kumar K.V 
1258ffacfa7aSJan Kara 	if (pos + len > inode->i_size && ext4_can_truncate(inode))
1259f8514083SAneesh Kumar K.V 		/* if we have allocated more blocks and copied
1260f8514083SAneesh Kumar K.V 		 * less. We will have blocks allocated outside
1261f8514083SAneesh Kumar K.V 		 * inode->i_size. So truncate them
1262f8514083SAneesh Kumar K.V 		 */
1263f8514083SAneesh Kumar K.V 		ext4_orphan_add(handle, inode);
126474d553aaSTheodore Ts'o errout:
1265617ba13bSMingming Cao 	ret2 = ext4_journal_stop(handle);
1266ac27a0ecSDave Kleikamp 	if (!ret)
1267ac27a0ecSDave Kleikamp 		ret = ret2;
1268bfc1af65SNick Piggin 
1269f8514083SAneesh Kumar K.V 	if (pos + len > inode->i_size) {
1270b9a4207dSJan Kara 		ext4_truncate_failed_write(inode);
1271f8514083SAneesh Kumar K.V 		/*
1272ffacfa7aSJan Kara 		 * If truncate failed early the inode might still be
1273f8514083SAneesh Kumar K.V 		 * on the orphan list; we need to make sure the inode
1274f8514083SAneesh Kumar K.V 		 * is removed from the orphan list in that case.
1275f8514083SAneesh Kumar K.V 		 */
1276f8514083SAneesh Kumar K.V 		if (inode->i_nlink)
1277f8514083SAneesh Kumar K.V 			ext4_orphan_del(NULL, inode);
1278f8514083SAneesh Kumar K.V 	}
1279f8514083SAneesh Kumar K.V 
1280bfc1af65SNick Piggin 	return ret ? ret : copied;
1281ac27a0ecSDave Kleikamp }
1282ac27a0ecSDave Kleikamp 
1283b90197b6STheodore Ts'o /*
1284b90197b6STheodore Ts'o  * This is a private version of page_zero_new_buffers() which doesn't
1285b90197b6STheodore Ts'o  * set the buffer to be dirty, since in data=journalled mode we need
1286b90197b6STheodore Ts'o  * to call ext4_handle_dirty_metadata() instead.
1287b90197b6STheodore Ts'o  */
1288b90197b6STheodore Ts'o static void zero_new_buffers(struct page *page, unsigned from, unsigned to)
1289b90197b6STheodore Ts'o {
1290b90197b6STheodore Ts'o 	unsigned int block_start = 0, block_end;
1291b90197b6STheodore Ts'o 	struct buffer_head *head, *bh;
1292b90197b6STheodore Ts'o 
1293b90197b6STheodore Ts'o 	bh = head = page_buffers(page);
1294b90197b6STheodore Ts'o 	do {
1295b90197b6STheodore Ts'o 		block_end = block_start + bh->b_size;
1296b90197b6STheodore Ts'o 		if (buffer_new(bh)) {
1297b90197b6STheodore Ts'o 			if (block_end > from && block_start < to) {
1298b90197b6STheodore Ts'o 				if (!PageUptodate(page)) {
1299b90197b6STheodore Ts'o 					unsigned start, size;
1300b90197b6STheodore Ts'o 
1301b90197b6STheodore Ts'o 					start = max(from, block_start);
1302b90197b6STheodore Ts'o 					size = min(to, block_end) - start;
1303b90197b6STheodore Ts'o 
1304b90197b6STheodore Ts'o 					zero_user(page, start, size);
1305b90197b6STheodore Ts'o 					set_buffer_uptodate(bh);
1306b90197b6STheodore Ts'o 				}
1307b90197b6STheodore Ts'o 				clear_buffer_new(bh);
1308b90197b6STheodore Ts'o 			}
1309b90197b6STheodore Ts'o 		}
1310b90197b6STheodore Ts'o 		block_start = block_end;
1311b90197b6STheodore Ts'o 		bh = bh->b_this_page;
1312b90197b6STheodore Ts'o 	} while (bh != head);
1313b90197b6STheodore Ts'o }
1314b90197b6STheodore Ts'o 
1315bfc1af65SNick Piggin static int ext4_journalled_write_end(struct file *file,
1316bfc1af65SNick Piggin 				     struct address_space *mapping,
1317bfc1af65SNick Piggin 				     loff_t pos, unsigned len, unsigned copied,
1318bfc1af65SNick Piggin 				     struct page *page, void *fsdata)
1319ac27a0ecSDave Kleikamp {
1320617ba13bSMingming Cao 	handle_t *handle = ext4_journal_current_handle();
1321bfc1af65SNick Piggin 	struct inode *inode = mapping->host;
13220572639fSXiaoguang Wang 	loff_t old_size = inode->i_size;
1323ac27a0ecSDave Kleikamp 	int ret = 0, ret2;
1324ac27a0ecSDave Kleikamp 	int partial = 0;
1325bfc1af65SNick Piggin 	unsigned from, to;
13264631dbf6SDmitry Monakhov 	int size_changed = 0;
1327ac27a0ecSDave Kleikamp 
13289bffad1eSTheodore Ts'o 	trace_ext4_journalled_write_end(inode, pos, len, copied);
1329bfc1af65SNick Piggin 	from = pos & (PAGE_CACHE_SIZE - 1);
1330bfc1af65SNick Piggin 	to = from + len;
1331bfc1af65SNick Piggin 
1332441c8508SCurt Wohlgemuth 	BUG_ON(!ext4_handle_valid(handle));
1333441c8508SCurt Wohlgemuth 
13343fdcfb66STao Ma 	if (ext4_has_inline_data(inode))
13353fdcfb66STao Ma 		copied = ext4_write_inline_data_end(inode, pos, len,
13363fdcfb66STao Ma 						    copied, page);
13373fdcfb66STao Ma 	else {
1338bfc1af65SNick Piggin 		if (copied < len) {
1339bfc1af65SNick Piggin 			if (!PageUptodate(page))
1340bfc1af65SNick Piggin 				copied = 0;
1341b90197b6STheodore Ts'o 			zero_new_buffers(page, from+copied, to);
1342bfc1af65SNick Piggin 		}
1343ac27a0ecSDave Kleikamp 
1344f19d5870STao Ma 		ret = ext4_walk_page_buffers(handle, page_buffers(page), from,
1345bfc1af65SNick Piggin 					     to, &partial, write_end_fn);
1346ac27a0ecSDave Kleikamp 		if (!partial)
1347ac27a0ecSDave Kleikamp 			SetPageUptodate(page);
13483fdcfb66STao Ma 	}
13494631dbf6SDmitry Monakhov 	size_changed = ext4_update_inode_size(inode, pos + copied);
135019f5fb7aSTheodore Ts'o 	ext4_set_inode_state(inode, EXT4_STATE_JDATA);
13512d859db3SJan Kara 	EXT4_I(inode)->i_datasync_tid = handle->h_transaction->t_tid;
13524631dbf6SDmitry Monakhov 	unlock_page(page);
13534631dbf6SDmitry Monakhov 	page_cache_release(page);
13544631dbf6SDmitry Monakhov 
13550572639fSXiaoguang Wang 	if (old_size < pos)
13560572639fSXiaoguang Wang 		pagecache_isize_extended(inode, old_size, pos);
13570572639fSXiaoguang Wang 
13584631dbf6SDmitry Monakhov 	if (size_changed) {
1359617ba13bSMingming Cao 		ret2 = ext4_mark_inode_dirty(handle, inode);
1360ac27a0ecSDave Kleikamp 		if (!ret)
1361ac27a0ecSDave Kleikamp 			ret = ret2;
1362ac27a0ecSDave Kleikamp 	}
1363bfc1af65SNick Piggin 
1364ffacfa7aSJan Kara 	if (pos + len > inode->i_size && ext4_can_truncate(inode))
1365f8514083SAneesh Kumar K.V 		/* if we have allocated more blocks and copied
1366f8514083SAneesh Kumar K.V 		 * less. We will have blocks allocated outside
1367f8514083SAneesh Kumar K.V 		 * inode->i_size. So truncate them
1368f8514083SAneesh Kumar K.V 		 */
1369f8514083SAneesh Kumar K.V 		ext4_orphan_add(handle, inode);
1370f8514083SAneesh Kumar K.V 
1371617ba13bSMingming Cao 	ret2 = ext4_journal_stop(handle);
1372ac27a0ecSDave Kleikamp 	if (!ret)
1373ac27a0ecSDave Kleikamp 		ret = ret2;
1374f8514083SAneesh Kumar K.V 	if (pos + len > inode->i_size) {
1375b9a4207dSJan Kara 		ext4_truncate_failed_write(inode);
1376f8514083SAneesh Kumar K.V 		/*
1377ffacfa7aSJan Kara 		 * If truncate failed early the inode might still be
1378f8514083SAneesh Kumar K.V 		 * on the orphan list; we need to make sure the inode
1379f8514083SAneesh Kumar K.V 		 * is removed from the orphan list in that case.
1380f8514083SAneesh Kumar K.V 		 */
1381f8514083SAneesh Kumar K.V 		if (inode->i_nlink)
1382f8514083SAneesh Kumar K.V 			ext4_orphan_del(NULL, inode);
1383f8514083SAneesh Kumar K.V 	}
1384bfc1af65SNick Piggin 
1385bfc1af65SNick Piggin 	return ret ? ret : copied;
1386ac27a0ecSDave Kleikamp }
1387d2a17637SMingming Cao 
13889d0be502STheodore Ts'o /*
1389c27e43a1SEric Whitney  * Reserve space for a single cluster
13909d0be502STheodore Ts'o  */
1391c27e43a1SEric Whitney static int ext4_da_reserve_space(struct inode *inode)
1392d2a17637SMingming Cao {
1393d2a17637SMingming Cao 	struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb);
13940637c6f4STheodore Ts'o 	struct ext4_inode_info *ei = EXT4_I(inode);
13955dd4056dSChristoph Hellwig 	int ret;
1396d2a17637SMingming Cao 
139760e58e0fSMingming Cao 	/*
139872b8ab9dSEric Sandeen 	 * We will charge metadata quota at writeout time; this saves
139972b8ab9dSEric Sandeen 	 * us from metadata over-estimation, though we may go over by
140072b8ab9dSEric Sandeen 	 * a small amount in the end.  Here we just reserve for data.
140160e58e0fSMingming Cao 	 */
14027b415bf6SAditya Kali 	ret = dquot_reserve_block(inode, EXT4_C2B(sbi, 1));
14035dd4056dSChristoph Hellwig 	if (ret)
14045dd4056dSChristoph Hellwig 		return ret;
140503179fe9STheodore Ts'o 
140603179fe9STheodore Ts'o 	spin_lock(&ei->i_block_reservation_lock);
140771d4f7d0STheodore Ts'o 	if (ext4_claim_free_clusters(sbi, 1, 0)) {
140803179fe9STheodore Ts'o 		spin_unlock(&ei->i_block_reservation_lock);
140903179fe9STheodore Ts'o 		dquot_release_reservation_block(inode, EXT4_C2B(sbi, 1));
1410d2a17637SMingming Cao 		return -ENOSPC;
1411d2a17637SMingming Cao 	}
14129d0be502STheodore Ts'o 	ei->i_reserved_data_blocks++;
1413c27e43a1SEric Whitney 	trace_ext4_da_reserve_space(inode);
14140637c6f4STheodore Ts'o 	spin_unlock(&ei->i_block_reservation_lock);
141539bc680aSDmitry Monakhov 
1416d2a17637SMingming Cao 	return 0;       /* success */
1417d2a17637SMingming Cao }
1418d2a17637SMingming Cao 
141912219aeaSAneesh Kumar K.V static void ext4_da_release_space(struct inode *inode, int to_free)
1420d2a17637SMingming Cao {
1421d2a17637SMingming Cao 	struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb);
14220637c6f4STheodore Ts'o 	struct ext4_inode_info *ei = EXT4_I(inode);
1423d2a17637SMingming Cao 
1424cd213226SMingming Cao 	if (!to_free)
1425cd213226SMingming Cao 		return;		/* Nothing to release, exit */
1426cd213226SMingming Cao 
1427d2a17637SMingming Cao 	spin_lock(&EXT4_I(inode)->i_block_reservation_lock);
1428cd213226SMingming Cao 
14295a58ec87SLi Zefan 	trace_ext4_da_release_space(inode, to_free);
14300637c6f4STheodore Ts'o 	if (unlikely(to_free > ei->i_reserved_data_blocks)) {
1431cd213226SMingming Cao 		/*
14320637c6f4STheodore Ts'o 		 * if there aren't enough reserved blocks, then the
14330637c6f4STheodore Ts'o 		 * counter is messed up somewhere.  Since this
14340637c6f4STheodore Ts'o 		 * function is called from invalidate page, it's
14350637c6f4STheodore Ts'o 		 * harmless to return without any action.
1436cd213226SMingming Cao 		 */
14378de5c325STheodore Ts'o 		ext4_warning(inode->i_sb, "ext4_da_release_space: "
14380637c6f4STheodore Ts'o 			 "ino %lu, to_free %d with only %d reserved "
14391084f252STheodore Ts'o 			 "data blocks", inode->i_ino, to_free,
14400637c6f4STheodore Ts'o 			 ei->i_reserved_data_blocks);
14410637c6f4STheodore Ts'o 		WARN_ON(1);
14420637c6f4STheodore Ts'o 		to_free = ei->i_reserved_data_blocks;
14430637c6f4STheodore Ts'o 	}
14440637c6f4STheodore Ts'o 	ei->i_reserved_data_blocks -= to_free;
14450637c6f4STheodore Ts'o 
144672b8ab9dSEric Sandeen 	/* update fs dirty data blocks counter */
144757042651STheodore Ts'o 	percpu_counter_sub(&sbi->s_dirtyclusters_counter, to_free);
1448d2a17637SMingming Cao 
1449d2a17637SMingming Cao 	spin_unlock(&EXT4_I(inode)->i_block_reservation_lock);
145060e58e0fSMingming Cao 
14517b415bf6SAditya Kali 	dquot_release_reservation_block(inode, EXT4_C2B(sbi, to_free));
1452d2a17637SMingming Cao }
1453d2a17637SMingming Cao 
1454d2a17637SMingming Cao static void ext4_da_page_release_reservation(struct page *page,
1455ca99fdd2SLukas Czerner 					     unsigned int offset,
1456ca99fdd2SLukas Czerner 					     unsigned int length)
1457d2a17637SMingming Cao {
14589705acd6SLukas Czerner 	int to_release = 0, contiguous_blks = 0;
1459d2a17637SMingming Cao 	struct buffer_head *head, *bh;
1460d2a17637SMingming Cao 	unsigned int curr_off = 0;
14617b415bf6SAditya Kali 	struct inode *inode = page->mapping->host;
14627b415bf6SAditya Kali 	struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb);
1463ca99fdd2SLukas Czerner 	unsigned int stop = offset + length;
14647b415bf6SAditya Kali 	int num_clusters;
146551865fdaSZheng Liu 	ext4_fsblk_t lblk;
1466d2a17637SMingming Cao 
1467ca99fdd2SLukas Czerner 	BUG_ON(stop > PAGE_CACHE_SIZE || stop < length);
1468ca99fdd2SLukas Czerner 
1469d2a17637SMingming Cao 	head = page_buffers(page);
1470d2a17637SMingming Cao 	bh = head;
1471d2a17637SMingming Cao 	do {
1472d2a17637SMingming Cao 		unsigned int next_off = curr_off + bh->b_size;
1473d2a17637SMingming Cao 
1474ca99fdd2SLukas Czerner 		if (next_off > stop)
1475ca99fdd2SLukas Czerner 			break;
1476ca99fdd2SLukas Czerner 
1477d2a17637SMingming Cao 		if ((offset <= curr_off) && (buffer_delay(bh))) {
1478d2a17637SMingming Cao 			to_release++;
14799705acd6SLukas Czerner 			contiguous_blks++;
1480d2a17637SMingming Cao 			clear_buffer_delay(bh);
14819705acd6SLukas Czerner 		} else if (contiguous_blks) {
14829705acd6SLukas Czerner 			lblk = page->index <<
14839705acd6SLukas Czerner 			       (PAGE_CACHE_SHIFT - inode->i_blkbits);
14849705acd6SLukas Czerner 			lblk += (curr_off >> inode->i_blkbits) -
14859705acd6SLukas Czerner 				contiguous_blks;
14869705acd6SLukas Czerner 			ext4_es_remove_extent(inode, lblk, contiguous_blks);
14879705acd6SLukas Czerner 			contiguous_blks = 0;
1488d2a17637SMingming Cao 		}
1489d2a17637SMingming Cao 		curr_off = next_off;
1490d2a17637SMingming Cao 	} while ((bh = bh->b_this_page) != head);
14917b415bf6SAditya Kali 
14929705acd6SLukas Czerner 	if (contiguous_blks) {
149351865fdaSZheng Liu 		lblk = page->index << (PAGE_CACHE_SHIFT - inode->i_blkbits);
14949705acd6SLukas Czerner 		lblk += (curr_off >> inode->i_blkbits) - contiguous_blks;
14959705acd6SLukas Czerner 		ext4_es_remove_extent(inode, lblk, contiguous_blks);
149651865fdaSZheng Liu 	}
149751865fdaSZheng Liu 
14987b415bf6SAditya Kali 	/* If we have released all the blocks belonging to a cluster, then we
14997b415bf6SAditya Kali 	 * need to release the reserved space for that cluster. */
15007b415bf6SAditya Kali 	num_clusters = EXT4_NUM_B2C(sbi, to_release);
15017b415bf6SAditya Kali 	while (num_clusters > 0) {
15027b415bf6SAditya Kali 		lblk = (page->index << (PAGE_CACHE_SHIFT - inode->i_blkbits)) +
15037b415bf6SAditya Kali 			((num_clusters - 1) << sbi->s_cluster_bits);
15047b415bf6SAditya Kali 		if (sbi->s_cluster_ratio == 1 ||
15057d1b1fbcSZheng Liu 		    !ext4_find_delalloc_cluster(inode, lblk))
15067b415bf6SAditya Kali 			ext4_da_release_space(inode, 1);
15077b415bf6SAditya Kali 
15087b415bf6SAditya Kali 		num_clusters--;
15097b415bf6SAditya Kali 	}
1510d2a17637SMingming Cao }
1511ac27a0ecSDave Kleikamp 
1512ac27a0ecSDave Kleikamp /*
151364769240SAlex Tomas  * Delayed allocation stuff
151464769240SAlex Tomas  */
151564769240SAlex Tomas 
15164e7ea81dSJan Kara struct mpage_da_data {
15174e7ea81dSJan Kara 	struct inode *inode;
15184e7ea81dSJan Kara 	struct writeback_control *wbc;
15196b523df4SJan Kara 
15204e7ea81dSJan Kara 	pgoff_t first_page;	/* The first page to write */
15214e7ea81dSJan Kara 	pgoff_t next_page;	/* Current page to examine */
15224e7ea81dSJan Kara 	pgoff_t last_page;	/* Last page to examine */
152364769240SAlex Tomas 	/*
15244e7ea81dSJan Kara 	 * Extent to map - this can be after first_page because that can be
15254e7ea81dSJan Kara 	 * fully mapped. We somewhat abuse m_flags to store whether the extent
15264e7ea81dSJan Kara 	 * is delalloc or unwritten.
152764769240SAlex Tomas 	 */
15284e7ea81dSJan Kara 	struct ext4_map_blocks map;
15294e7ea81dSJan Kara 	struct ext4_io_submit io_submit;	/* IO submission data */
15304e7ea81dSJan Kara };
153164769240SAlex Tomas 
15324e7ea81dSJan Kara static void mpage_release_unused_pages(struct mpage_da_data *mpd,
15334e7ea81dSJan Kara 				       bool invalidate)
1534c4a0c46eSAneesh Kumar K.V {
1535c4a0c46eSAneesh Kumar K.V 	int nr_pages, i;
1536c4a0c46eSAneesh Kumar K.V 	pgoff_t index, end;
1537c4a0c46eSAneesh Kumar K.V 	struct pagevec pvec;
1538c4a0c46eSAneesh Kumar K.V 	struct inode *inode = mpd->inode;
1539c4a0c46eSAneesh Kumar K.V 	struct address_space *mapping = inode->i_mapping;
15404e7ea81dSJan Kara 
15414e7ea81dSJan Kara 	/* This is necessary when next_page == 0. */
15424e7ea81dSJan Kara 	if (mpd->first_page >= mpd->next_page)
15434e7ea81dSJan Kara 		return;
1544c4a0c46eSAneesh Kumar K.V 
1545c7f5938aSCurt Wohlgemuth 	index = mpd->first_page;
1546c7f5938aSCurt Wohlgemuth 	end   = mpd->next_page - 1;
15474e7ea81dSJan Kara 	if (invalidate) {
15484e7ea81dSJan Kara 		ext4_lblk_t start, last;
154951865fdaSZheng Liu 		start = index << (PAGE_CACHE_SHIFT - inode->i_blkbits);
155051865fdaSZheng Liu 		last = end << (PAGE_CACHE_SHIFT - inode->i_blkbits);
155151865fdaSZheng Liu 		ext4_es_remove_extent(inode, start, last - start + 1);
15524e7ea81dSJan Kara 	}
155351865fdaSZheng Liu 
155466bea92cSEric Sandeen 	pagevec_init(&pvec, 0);
1555c4a0c46eSAneesh Kumar K.V 	while (index <= end) {
1556c4a0c46eSAneesh Kumar K.V 		nr_pages = pagevec_lookup(&pvec, mapping, index, PAGEVEC_SIZE);
1557c4a0c46eSAneesh Kumar K.V 		if (nr_pages == 0)
1558c4a0c46eSAneesh Kumar K.V 			break;
1559c4a0c46eSAneesh Kumar K.V 		for (i = 0; i < nr_pages; i++) {
1560c4a0c46eSAneesh Kumar K.V 			struct page *page = pvec.pages[i];
15619b1d0998SJan Kara 			if (page->index > end)
1562c4a0c46eSAneesh Kumar K.V 				break;
1563c4a0c46eSAneesh Kumar K.V 			BUG_ON(!PageLocked(page));
1564c4a0c46eSAneesh Kumar K.V 			BUG_ON(PageWriteback(page));
15654e7ea81dSJan Kara 			if (invalidate) {
1566d47992f8SLukas Czerner 				block_invalidatepage(page, 0, PAGE_CACHE_SIZE);
1567c4a0c46eSAneesh Kumar K.V 				ClearPageUptodate(page);
15684e7ea81dSJan Kara 			}
1569c4a0c46eSAneesh Kumar K.V 			unlock_page(page);
1570c4a0c46eSAneesh Kumar K.V 		}
15719b1d0998SJan Kara 		index = pvec.pages[nr_pages - 1]->index + 1;
15729b1d0998SJan Kara 		pagevec_release(&pvec);
1573c4a0c46eSAneesh Kumar K.V 	}
1574c4a0c46eSAneesh Kumar K.V }
1575c4a0c46eSAneesh Kumar K.V 
1576df22291fSAneesh Kumar K.V static void ext4_print_free_blocks(struct inode *inode)
1577df22291fSAneesh Kumar K.V {
1578df22291fSAneesh Kumar K.V 	struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb);
157992b97816STheodore Ts'o 	struct super_block *sb = inode->i_sb;
1580f78ee70dSLukas Czerner 	struct ext4_inode_info *ei = EXT4_I(inode);
158192b97816STheodore Ts'o 
158292b97816STheodore Ts'o 	ext4_msg(sb, KERN_CRIT, "Total free blocks count %lld",
15835dee5437STheodore Ts'o 	       EXT4_C2B(EXT4_SB(inode->i_sb),
1584f78ee70dSLukas Czerner 			ext4_count_free_clusters(sb)));
158592b97816STheodore Ts'o 	ext4_msg(sb, KERN_CRIT, "Free/Dirty block details");
158692b97816STheodore Ts'o 	ext4_msg(sb, KERN_CRIT, "free_blocks=%lld",
1587f78ee70dSLukas Czerner 	       (long long) EXT4_C2B(EXT4_SB(sb),
158857042651STheodore Ts'o 		percpu_counter_sum(&sbi->s_freeclusters_counter)));
158992b97816STheodore Ts'o 	ext4_msg(sb, KERN_CRIT, "dirty_blocks=%lld",
1590f78ee70dSLukas Czerner 	       (long long) EXT4_C2B(EXT4_SB(sb),
15917b415bf6SAditya Kali 		percpu_counter_sum(&sbi->s_dirtyclusters_counter)));
159292b97816STheodore Ts'o 	ext4_msg(sb, KERN_CRIT, "Block reservation details");
159392b97816STheodore Ts'o 	ext4_msg(sb, KERN_CRIT, "i_reserved_data_blocks=%u",
1594f78ee70dSLukas Czerner 		 ei->i_reserved_data_blocks);
1595df22291fSAneesh Kumar K.V 	return;
1596df22291fSAneesh Kumar K.V }
1597df22291fSAneesh Kumar K.V 
1598c364b22cSAneesh Kumar K.V static int ext4_bh_delay_or_unwritten(handle_t *handle, struct buffer_head *bh)
159929fa89d0SAneesh Kumar K.V {
1600c364b22cSAneesh Kumar K.V 	return (buffer_delay(bh) || buffer_unwritten(bh)) && buffer_dirty(bh);
160129fa89d0SAneesh Kumar K.V }
160229fa89d0SAneesh Kumar K.V 
160364769240SAlex Tomas /*
16045356f261SAditya Kali  * This function is grabs code from the very beginning of
16055356f261SAditya Kali  * ext4_map_blocks, but assumes that the caller is from delayed write
16065356f261SAditya Kali  * time. This function looks up the requested blocks and sets the
16075356f261SAditya Kali  * buffer delay bit under the protection of i_data_sem.
16085356f261SAditya Kali  */
16095356f261SAditya Kali static int ext4_da_map_blocks(struct inode *inode, sector_t iblock,
16105356f261SAditya Kali 			      struct ext4_map_blocks *map,
16115356f261SAditya Kali 			      struct buffer_head *bh)
16125356f261SAditya Kali {
1613d100eef2SZheng Liu 	struct extent_status es;
16145356f261SAditya Kali 	int retval;
16155356f261SAditya Kali 	sector_t invalid_block = ~((sector_t) 0xffff);
1616921f266bSDmitry Monakhov #ifdef ES_AGGRESSIVE_TEST
1617921f266bSDmitry Monakhov 	struct ext4_map_blocks orig_map;
1618921f266bSDmitry Monakhov 
1619921f266bSDmitry Monakhov 	memcpy(&orig_map, map, sizeof(*map));
1620921f266bSDmitry Monakhov #endif
16215356f261SAditya Kali 
16225356f261SAditya Kali 	if (invalid_block < ext4_blocks_count(EXT4_SB(inode->i_sb)->s_es))
16235356f261SAditya Kali 		invalid_block = ~0;
16245356f261SAditya Kali 
16255356f261SAditya Kali 	map->m_flags = 0;
16265356f261SAditya Kali 	ext_debug("ext4_da_map_blocks(): inode %lu, max_blocks %u,"
16275356f261SAditya Kali 		  "logical block %lu\n", inode->i_ino, map->m_len,
16285356f261SAditya Kali 		  (unsigned long) map->m_lblk);
1629d100eef2SZheng Liu 
1630d100eef2SZheng Liu 	/* Lookup extent status tree firstly */
1631d100eef2SZheng Liu 	if (ext4_es_lookup_extent(inode, iblock, &es)) {
1632d100eef2SZheng Liu 		if (ext4_es_is_hole(&es)) {
1633d100eef2SZheng Liu 			retval = 0;
1634c8b459f4SLukas Czerner 			down_read(&EXT4_I(inode)->i_data_sem);
1635d100eef2SZheng Liu 			goto add_delayed;
1636d100eef2SZheng Liu 		}
1637d100eef2SZheng Liu 
1638d100eef2SZheng Liu 		/*
1639d100eef2SZheng Liu 		 * Delayed extent could be allocated by fallocate.
1640d100eef2SZheng Liu 		 * So we need to check it.
1641d100eef2SZheng Liu 		 */
1642d100eef2SZheng Liu 		if (ext4_es_is_delayed(&es) && !ext4_es_is_unwritten(&es)) {
1643d100eef2SZheng Liu 			map_bh(bh, inode->i_sb, invalid_block);
1644d100eef2SZheng Liu 			set_buffer_new(bh);
1645d100eef2SZheng Liu 			set_buffer_delay(bh);
1646d100eef2SZheng Liu 			return 0;
1647d100eef2SZheng Liu 		}
1648d100eef2SZheng Liu 
1649d100eef2SZheng Liu 		map->m_pblk = ext4_es_pblock(&es) + iblock - es.es_lblk;
1650d100eef2SZheng Liu 		retval = es.es_len - (iblock - es.es_lblk);
1651d100eef2SZheng Liu 		if (retval > map->m_len)
1652d100eef2SZheng Liu 			retval = map->m_len;
1653d100eef2SZheng Liu 		map->m_len = retval;
1654d100eef2SZheng Liu 		if (ext4_es_is_written(&es))
1655d100eef2SZheng Liu 			map->m_flags |= EXT4_MAP_MAPPED;
1656d100eef2SZheng Liu 		else if (ext4_es_is_unwritten(&es))
1657d100eef2SZheng Liu 			map->m_flags |= EXT4_MAP_UNWRITTEN;
1658d100eef2SZheng Liu 		else
1659d100eef2SZheng Liu 			BUG_ON(1);
1660d100eef2SZheng Liu 
1661921f266bSDmitry Monakhov #ifdef ES_AGGRESSIVE_TEST
1662921f266bSDmitry Monakhov 		ext4_map_blocks_es_recheck(NULL, inode, map, &orig_map, 0);
1663921f266bSDmitry Monakhov #endif
1664d100eef2SZheng Liu 		return retval;
1665d100eef2SZheng Liu 	}
1666d100eef2SZheng Liu 
16675356f261SAditya Kali 	/*
16685356f261SAditya Kali 	 * Try to see if we can get the block without requesting a new
16695356f261SAditya Kali 	 * file system block.
16705356f261SAditya Kali 	 */
1671c8b459f4SLukas Czerner 	down_read(&EXT4_I(inode)->i_data_sem);
1672cbd7584eSJan Kara 	if (ext4_has_inline_data(inode))
16739c3569b5STao Ma 		retval = 0;
1674cbd7584eSJan Kara 	else if (ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS))
16752f8e0a7cSZheng Liu 		retval = ext4_ext_map_blocks(NULL, inode, map, 0);
16765356f261SAditya Kali 	else
16772f8e0a7cSZheng Liu 		retval = ext4_ind_map_blocks(NULL, inode, map, 0);
16785356f261SAditya Kali 
1679d100eef2SZheng Liu add_delayed:
16805356f261SAditya Kali 	if (retval == 0) {
1681f7fec032SZheng Liu 		int ret;
16825356f261SAditya Kali 		/*
16835356f261SAditya Kali 		 * XXX: __block_prepare_write() unmaps passed block,
16845356f261SAditya Kali 		 * is it OK?
16855356f261SAditya Kali 		 */
1686386ad67cSLukas Czerner 		/*
1687386ad67cSLukas Czerner 		 * If the block was allocated from previously allocated cluster,
1688386ad67cSLukas Czerner 		 * then we don't need to reserve it again. However we still need
1689386ad67cSLukas Czerner 		 * to reserve metadata for every block we're going to write.
1690386ad67cSLukas Czerner 		 */
1691c27e43a1SEric Whitney 		if (EXT4_SB(inode->i_sb)->s_cluster_ratio == 1 ||
1692cbd7584eSJan Kara 		    !ext4_find_delalloc_cluster(inode, map->m_lblk)) {
1693c27e43a1SEric Whitney 			ret = ext4_da_reserve_space(inode);
1694f7fec032SZheng Liu 			if (ret) {
16955356f261SAditya Kali 				/* not enough space to reserve */
1696f7fec032SZheng Liu 				retval = ret;
16975356f261SAditya Kali 				goto out_unlock;
16985356f261SAditya Kali 			}
1699f7fec032SZheng Liu 		}
17005356f261SAditya Kali 
1701f7fec032SZheng Liu 		ret = ext4_es_insert_extent(inode, map->m_lblk, map->m_len,
1702fdc0212eSZheng Liu 					    ~0, EXTENT_STATUS_DELAYED);
1703f7fec032SZheng Liu 		if (ret) {
1704f7fec032SZheng Liu 			retval = ret;
170551865fdaSZheng Liu 			goto out_unlock;
1706f7fec032SZheng Liu 		}
170751865fdaSZheng Liu 
17085356f261SAditya Kali 		map_bh(bh, inode->i_sb, invalid_block);
17095356f261SAditya Kali 		set_buffer_new(bh);
17105356f261SAditya Kali 		set_buffer_delay(bh);
1711f7fec032SZheng Liu 	} else if (retval > 0) {
1712f7fec032SZheng Liu 		int ret;
17133be78c73STheodore Ts'o 		unsigned int status;
1714f7fec032SZheng Liu 
171544fb851dSZheng Liu 		if (unlikely(retval != map->m_len)) {
171644fb851dSZheng Liu 			ext4_warning(inode->i_sb,
171744fb851dSZheng Liu 				     "ES len assertion failed for inode "
171844fb851dSZheng Liu 				     "%lu: retval %d != map->m_len %d",
171944fb851dSZheng Liu 				     inode->i_ino, retval, map->m_len);
172044fb851dSZheng Liu 			WARN_ON(1);
1721921f266bSDmitry Monakhov 		}
1722921f266bSDmitry Monakhov 
1723f7fec032SZheng Liu 		status = map->m_flags & EXT4_MAP_UNWRITTEN ?
1724f7fec032SZheng Liu 				EXTENT_STATUS_UNWRITTEN : EXTENT_STATUS_WRITTEN;
1725f7fec032SZheng Liu 		ret = ext4_es_insert_extent(inode, map->m_lblk, map->m_len,
1726f7fec032SZheng Liu 					    map->m_pblk, status);
1727f7fec032SZheng Liu 		if (ret != 0)
1728f7fec032SZheng Liu 			retval = ret;
17295356f261SAditya Kali 	}
17305356f261SAditya Kali 
17315356f261SAditya Kali out_unlock:
17325356f261SAditya Kali 	up_read((&EXT4_I(inode)->i_data_sem));
17335356f261SAditya Kali 
17345356f261SAditya Kali 	return retval;
17355356f261SAditya Kali }
17365356f261SAditya Kali 
17375356f261SAditya Kali /*
1738d91bd2c1SSeunghun Lee  * This is a special get_block_t callback which is used by
1739b920c755STheodore Ts'o  * ext4_da_write_begin().  It will either return mapped block or
1740b920c755STheodore Ts'o  * reserve space for a single block.
174129fa89d0SAneesh Kumar K.V  *
174229fa89d0SAneesh Kumar K.V  * For delayed buffer_head we have BH_Mapped, BH_New, BH_Delay set.
174329fa89d0SAneesh Kumar K.V  * We also have b_blocknr = -1 and b_bdev initialized properly
174429fa89d0SAneesh Kumar K.V  *
174529fa89d0SAneesh Kumar K.V  * For unwritten buffer_head we have BH_Mapped, BH_New, BH_Unwritten set.
174629fa89d0SAneesh Kumar K.V  * We also have b_blocknr = physicalblock mapping unwritten extent and b_bdev
174729fa89d0SAneesh Kumar K.V  * initialized properly.
174864769240SAlex Tomas  */
17499c3569b5STao Ma int ext4_da_get_block_prep(struct inode *inode, sector_t iblock,
17502ed88685STheodore Ts'o 			   struct buffer_head *bh, int create)
175164769240SAlex Tomas {
17522ed88685STheodore Ts'o 	struct ext4_map_blocks map;
175364769240SAlex Tomas 	int ret = 0;
175464769240SAlex Tomas 
175564769240SAlex Tomas 	BUG_ON(create == 0);
17562ed88685STheodore Ts'o 	BUG_ON(bh->b_size != inode->i_sb->s_blocksize);
17572ed88685STheodore Ts'o 
17582ed88685STheodore Ts'o 	map.m_lblk = iblock;
17592ed88685STheodore Ts'o 	map.m_len = 1;
176064769240SAlex Tomas 
176164769240SAlex Tomas 	/*
176264769240SAlex Tomas 	 * first, we need to know whether the block is allocated already
176364769240SAlex Tomas 	 * preallocated blocks are unmapped but should treated
176464769240SAlex Tomas 	 * the same as allocated blocks.
176564769240SAlex Tomas 	 */
17665356f261SAditya Kali 	ret = ext4_da_map_blocks(inode, iblock, &map, bh);
17675356f261SAditya Kali 	if (ret <= 0)
17682ed88685STheodore Ts'o 		return ret;
176964769240SAlex Tomas 
17702ed88685STheodore Ts'o 	map_bh(bh, inode->i_sb, map.m_pblk);
1771ed8ad838SJan Kara 	ext4_update_bh_state(bh, map.m_flags);
17722ed88685STheodore Ts'o 
17732ed88685STheodore Ts'o 	if (buffer_unwritten(bh)) {
17742ed88685STheodore Ts'o 		/* A delayed write to unwritten bh should be marked
17752ed88685STheodore Ts'o 		 * new and mapped.  Mapped ensures that we don't do
17762ed88685STheodore Ts'o 		 * get_block multiple times when we write to the same
17772ed88685STheodore Ts'o 		 * offset and new ensures that we do proper zero out
17782ed88685STheodore Ts'o 		 * for partial write.
17792ed88685STheodore Ts'o 		 */
17802ed88685STheodore Ts'o 		set_buffer_new(bh);
1781c8205636STheodore Ts'o 		set_buffer_mapped(bh);
17822ed88685STheodore Ts'o 	}
17832ed88685STheodore Ts'o 	return 0;
178464769240SAlex Tomas }
178561628a3fSMingming Cao 
178662e086beSAneesh Kumar K.V static int bget_one(handle_t *handle, struct buffer_head *bh)
178762e086beSAneesh Kumar K.V {
178862e086beSAneesh Kumar K.V 	get_bh(bh);
178962e086beSAneesh Kumar K.V 	return 0;
179062e086beSAneesh Kumar K.V }
179162e086beSAneesh Kumar K.V 
179262e086beSAneesh Kumar K.V static int bput_one(handle_t *handle, struct buffer_head *bh)
179362e086beSAneesh Kumar K.V {
179462e086beSAneesh Kumar K.V 	put_bh(bh);
179562e086beSAneesh Kumar K.V 	return 0;
179662e086beSAneesh Kumar K.V }
179762e086beSAneesh Kumar K.V 
179862e086beSAneesh Kumar K.V static int __ext4_journalled_writepage(struct page *page,
179962e086beSAneesh Kumar K.V 				       unsigned int len)
180062e086beSAneesh Kumar K.V {
180162e086beSAneesh Kumar K.V 	struct address_space *mapping = page->mapping;
180262e086beSAneesh Kumar K.V 	struct inode *inode = mapping->host;
18033fdcfb66STao Ma 	struct buffer_head *page_bufs = NULL;
180462e086beSAneesh Kumar K.V 	handle_t *handle = NULL;
18053fdcfb66STao Ma 	int ret = 0, err = 0;
18063fdcfb66STao Ma 	int inline_data = ext4_has_inline_data(inode);
18073fdcfb66STao Ma 	struct buffer_head *inode_bh = NULL;
180862e086beSAneesh Kumar K.V 
1809cb20d518STheodore Ts'o 	ClearPageChecked(page);
18103fdcfb66STao Ma 
18113fdcfb66STao Ma 	if (inline_data) {
18123fdcfb66STao Ma 		BUG_ON(page->index != 0);
18133fdcfb66STao Ma 		BUG_ON(len > ext4_get_max_inline_size(inode));
18143fdcfb66STao Ma 		inode_bh = ext4_journalled_write_inline_data(inode, len, page);
18153fdcfb66STao Ma 		if (inode_bh == NULL)
18163fdcfb66STao Ma 			goto out;
18173fdcfb66STao Ma 	} else {
181862e086beSAneesh Kumar K.V 		page_bufs = page_buffers(page);
18193fdcfb66STao Ma 		if (!page_bufs) {
18203fdcfb66STao Ma 			BUG();
18213fdcfb66STao Ma 			goto out;
18223fdcfb66STao Ma 		}
18233fdcfb66STao Ma 		ext4_walk_page_buffers(handle, page_bufs, 0, len,
18243fdcfb66STao Ma 				       NULL, bget_one);
18253fdcfb66STao Ma 	}
1826bdf96838STheodore Ts'o 	/*
1827bdf96838STheodore Ts'o 	 * We need to release the page lock before we start the
1828bdf96838STheodore Ts'o 	 * journal, so grab a reference so the page won't disappear
1829bdf96838STheodore Ts'o 	 * out from under us.
1830bdf96838STheodore Ts'o 	 */
1831bdf96838STheodore Ts'o 	get_page(page);
183262e086beSAneesh Kumar K.V 	unlock_page(page);
183362e086beSAneesh Kumar K.V 
18349924a92aSTheodore Ts'o 	handle = ext4_journal_start(inode, EXT4_HT_WRITE_PAGE,
18359924a92aSTheodore Ts'o 				    ext4_writepage_trans_blocks(inode));
183662e086beSAneesh Kumar K.V 	if (IS_ERR(handle)) {
183762e086beSAneesh Kumar K.V 		ret = PTR_ERR(handle);
1838bdf96838STheodore Ts'o 		put_page(page);
1839bdf96838STheodore Ts'o 		goto out_no_pagelock;
1840bdf96838STheodore Ts'o 	}
1841bdf96838STheodore Ts'o 	BUG_ON(!ext4_handle_valid(handle));
1842bdf96838STheodore Ts'o 
1843bdf96838STheodore Ts'o 	lock_page(page);
1844bdf96838STheodore Ts'o 	put_page(page);
1845bdf96838STheodore Ts'o 	if (page->mapping != mapping) {
1846bdf96838STheodore Ts'o 		/* The page got truncated from under us */
1847bdf96838STheodore Ts'o 		ext4_journal_stop(handle);
1848bdf96838STheodore Ts'o 		ret = 0;
184962e086beSAneesh Kumar K.V 		goto out;
185062e086beSAneesh Kumar K.V 	}
185162e086beSAneesh Kumar K.V 
18523fdcfb66STao Ma 	if (inline_data) {
18535d601255Sliang xie 		BUFFER_TRACE(inode_bh, "get write access");
18543fdcfb66STao Ma 		ret = ext4_journal_get_write_access(handle, inode_bh);
18553fdcfb66STao Ma 
18563fdcfb66STao Ma 		err = ext4_handle_dirty_metadata(handle, inode, inode_bh);
18573fdcfb66STao Ma 
18583fdcfb66STao Ma 	} else {
1859f19d5870STao Ma 		ret = ext4_walk_page_buffers(handle, page_bufs, 0, len, NULL,
186062e086beSAneesh Kumar K.V 					     do_journal_get_write_access);
186162e086beSAneesh Kumar K.V 
1862f19d5870STao Ma 		err = ext4_walk_page_buffers(handle, page_bufs, 0, len, NULL,
186362e086beSAneesh Kumar K.V 					     write_end_fn);
18643fdcfb66STao Ma 	}
186562e086beSAneesh Kumar K.V 	if (ret == 0)
186662e086beSAneesh Kumar K.V 		ret = err;
18672d859db3SJan Kara 	EXT4_I(inode)->i_datasync_tid = handle->h_transaction->t_tid;
186862e086beSAneesh Kumar K.V 	err = ext4_journal_stop(handle);
186962e086beSAneesh Kumar K.V 	if (!ret)
187062e086beSAneesh Kumar K.V 		ret = err;
187162e086beSAneesh Kumar K.V 
18723fdcfb66STao Ma 	if (!ext4_has_inline_data(inode))
18738c9367fdSTheodore Ts'o 		ext4_walk_page_buffers(NULL, page_bufs, 0, len,
18743fdcfb66STao Ma 				       NULL, bput_one);
187519f5fb7aSTheodore Ts'o 	ext4_set_inode_state(inode, EXT4_STATE_JDATA);
187662e086beSAneesh Kumar K.V out:
1877bdf96838STheodore Ts'o 	unlock_page(page);
1878bdf96838STheodore Ts'o out_no_pagelock:
18793fdcfb66STao Ma 	brelse(inode_bh);
188062e086beSAneesh Kumar K.V 	return ret;
188162e086beSAneesh Kumar K.V }
188262e086beSAneesh Kumar K.V 
188361628a3fSMingming Cao /*
188443ce1d23SAneesh Kumar K.V  * Note that we don't need to start a transaction unless we're journaling data
188543ce1d23SAneesh Kumar K.V  * because we should have holes filled from ext4_page_mkwrite(). We even don't
188643ce1d23SAneesh Kumar K.V  * need to file the inode to the transaction's list in ordered mode because if
188743ce1d23SAneesh Kumar K.V  * we are writing back data added by write(), the inode is already there and if
188843ce1d23SAneesh Kumar K.V  * we are writing back data modified via mmap(), no one guarantees in which
188943ce1d23SAneesh Kumar K.V  * transaction the data will hit the disk. In case we are journaling data, we
189043ce1d23SAneesh Kumar K.V  * cannot start transaction directly because transaction start ranks above page
189143ce1d23SAneesh Kumar K.V  * lock so we have to do some magic.
189243ce1d23SAneesh Kumar K.V  *
1893b920c755STheodore Ts'o  * This function can get called via...
189420970ba6STheodore Ts'o  *   - ext4_writepages after taking page lock (have journal handle)
1895b920c755STheodore Ts'o  *   - journal_submit_inode_data_buffers (no journal handle)
1896f6463b0dSArtem Bityutskiy  *   - shrink_page_list via the kswapd/direct reclaim (no journal handle)
1897b920c755STheodore Ts'o  *   - grab_page_cache when doing write_begin (have journal handle)
189843ce1d23SAneesh Kumar K.V  *
189943ce1d23SAneesh Kumar K.V  * We don't do any block allocation in this function. If we have page with
190043ce1d23SAneesh Kumar K.V  * multiple blocks we need to write those buffer_heads that are mapped. This
190143ce1d23SAneesh Kumar K.V  * is important for mmaped based write. So if we do with blocksize 1K
190243ce1d23SAneesh Kumar K.V  * truncate(f, 1024);
190343ce1d23SAneesh Kumar K.V  * a = mmap(f, 0, 4096);
190443ce1d23SAneesh Kumar K.V  * a[0] = 'a';
190543ce1d23SAneesh Kumar K.V  * truncate(f, 4096);
190643ce1d23SAneesh Kumar K.V  * we have in the page first buffer_head mapped via page_mkwrite call back
190790802ed9SPaul Bolle  * but other buffer_heads would be unmapped but dirty (dirty done via the
190843ce1d23SAneesh Kumar K.V  * do_wp_page). So writepage should write the first block. If we modify
190943ce1d23SAneesh Kumar K.V  * the mmap area beyond 1024 we will again get a page_fault and the
191043ce1d23SAneesh Kumar K.V  * page_mkwrite callback will do the block allocation and mark the
191143ce1d23SAneesh Kumar K.V  * buffer_heads mapped.
191243ce1d23SAneesh Kumar K.V  *
191343ce1d23SAneesh Kumar K.V  * We redirty the page if we have any buffer_heads that is either delay or
191443ce1d23SAneesh Kumar K.V  * unwritten in the page.
191543ce1d23SAneesh Kumar K.V  *
191643ce1d23SAneesh Kumar K.V  * We can get recursively called as show below.
191743ce1d23SAneesh Kumar K.V  *
191843ce1d23SAneesh Kumar K.V  *	ext4_writepage() -> kmalloc() -> __alloc_pages() -> page_launder() ->
191943ce1d23SAneesh Kumar K.V  *		ext4_writepage()
192043ce1d23SAneesh Kumar K.V  *
192143ce1d23SAneesh Kumar K.V  * But since we don't do any block allocation we should not deadlock.
192243ce1d23SAneesh Kumar K.V  * Page also have the dirty flag cleared so we don't get recurive page_lock.
192361628a3fSMingming Cao  */
192443ce1d23SAneesh Kumar K.V static int ext4_writepage(struct page *page,
192564769240SAlex Tomas 			  struct writeback_control *wbc)
192664769240SAlex Tomas {
1927f8bec370SJan Kara 	int ret = 0;
192861628a3fSMingming Cao 	loff_t size;
1929498e5f24STheodore Ts'o 	unsigned int len;
1930744692dcSJiaying Zhang 	struct buffer_head *page_bufs = NULL;
193161628a3fSMingming Cao 	struct inode *inode = page->mapping->host;
193236ade451SJan Kara 	struct ext4_io_submit io_submit;
19331c8349a1SNamjae Jeon 	bool keep_towrite = false;
193464769240SAlex Tomas 
1935a9c667f8SLukas Czerner 	trace_ext4_writepage(page);
193661628a3fSMingming Cao 	size = i_size_read(inode);
193761628a3fSMingming Cao 	if (page->index == size >> PAGE_CACHE_SHIFT)
193861628a3fSMingming Cao 		len = size & ~PAGE_CACHE_MASK;
193961628a3fSMingming Cao 	else
194061628a3fSMingming Cao 		len = PAGE_CACHE_SIZE;
194161628a3fSMingming Cao 
1942f0e6c985SAneesh Kumar K.V 	page_bufs = page_buffers(page);
194364769240SAlex Tomas 	/*
1944fe386132SJan Kara 	 * We cannot do block allocation or other extent handling in this
1945fe386132SJan Kara 	 * function. If there are buffers needing that, we have to redirty
1946fe386132SJan Kara 	 * the page. But we may reach here when we do a journal commit via
1947fe386132SJan Kara 	 * journal_submit_inode_data_buffers() and in that case we must write
1948fe386132SJan Kara 	 * allocated buffers to achieve data=ordered mode guarantees.
1949cccd147aSTheodore Ts'o 	 *
1950cccd147aSTheodore Ts'o 	 * Also, if there is only one buffer per page (the fs block
1951cccd147aSTheodore Ts'o 	 * size == the page size), if one buffer needs block
1952cccd147aSTheodore Ts'o 	 * allocation or needs to modify the extent tree to clear the
1953cccd147aSTheodore Ts'o 	 * unwritten flag, we know that the page can't be written at
1954cccd147aSTheodore Ts'o 	 * all, so we might as well refuse the write immediately.
1955cccd147aSTheodore Ts'o 	 * Unfortunately if the block size != page size, we can't as
1956cccd147aSTheodore Ts'o 	 * easily detect this case using ext4_walk_page_buffers(), but
1957cccd147aSTheodore Ts'o 	 * for the extremely common case, this is an optimization that
1958cccd147aSTheodore Ts'o 	 * skips a useless round trip through ext4_bio_write_page().
195964769240SAlex Tomas 	 */
1960f19d5870STao Ma 	if (ext4_walk_page_buffers(NULL, page_bufs, 0, len, NULL,
1961c364b22cSAneesh Kumar K.V 				   ext4_bh_delay_or_unwritten)) {
196261628a3fSMingming Cao 		redirty_page_for_writepage(wbc, page);
1963cccd147aSTheodore Ts'o 		if ((current->flags & PF_MEMALLOC) ||
1964cccd147aSTheodore Ts'o 		    (inode->i_sb->s_blocksize == PAGE_CACHE_SIZE)) {
1965fe386132SJan Kara 			/*
1966fe386132SJan Kara 			 * For memory cleaning there's no point in writing only
1967fe386132SJan Kara 			 * some buffers. So just bail out. Warn if we came here
1968fe386132SJan Kara 			 * from direct reclaim.
1969fe386132SJan Kara 			 */
1970fe386132SJan Kara 			WARN_ON_ONCE((current->flags & (PF_MEMALLOC|PF_KSWAPD))
1971fe386132SJan Kara 							== PF_MEMALLOC);
197261628a3fSMingming Cao 			unlock_page(page);
197361628a3fSMingming Cao 			return 0;
197461628a3fSMingming Cao 		}
19751c8349a1SNamjae Jeon 		keep_towrite = true;
1976f0e6c985SAneesh Kumar K.V 	}
197764769240SAlex Tomas 
1978cb20d518STheodore Ts'o 	if (PageChecked(page) && ext4_should_journal_data(inode))
197943ce1d23SAneesh Kumar K.V 		/*
198043ce1d23SAneesh Kumar K.V 		 * It's mmapped pagecache.  Add buffers and journal it.  There
198143ce1d23SAneesh Kumar K.V 		 * doesn't seem much point in redirtying the page here.
198243ce1d23SAneesh Kumar K.V 		 */
19833f0ca309SWu Fengguang 		return __ext4_journalled_writepage(page, len);
198443ce1d23SAneesh Kumar K.V 
198597a851edSJan Kara 	ext4_io_submit_init(&io_submit, wbc);
198697a851edSJan Kara 	io_submit.io_end = ext4_init_io_end(inode, GFP_NOFS);
198797a851edSJan Kara 	if (!io_submit.io_end) {
198897a851edSJan Kara 		redirty_page_for_writepage(wbc, page);
198997a851edSJan Kara 		unlock_page(page);
199097a851edSJan Kara 		return -ENOMEM;
199197a851edSJan Kara 	}
19921c8349a1SNamjae Jeon 	ret = ext4_bio_write_page(&io_submit, page, len, wbc, keep_towrite);
199336ade451SJan Kara 	ext4_io_submit(&io_submit);
199497a851edSJan Kara 	/* Drop io_end reference we got from init */
199597a851edSJan Kara 	ext4_put_io_end_defer(io_submit.io_end);
199664769240SAlex Tomas 	return ret;
199764769240SAlex Tomas }
199864769240SAlex Tomas 
19995f1132b2SJan Kara static int mpage_submit_page(struct mpage_da_data *mpd, struct page *page)
20005f1132b2SJan Kara {
20015f1132b2SJan Kara 	int len;
20025f1132b2SJan Kara 	loff_t size = i_size_read(mpd->inode);
20035f1132b2SJan Kara 	int err;
20045f1132b2SJan Kara 
20055f1132b2SJan Kara 	BUG_ON(page->index != mpd->first_page);
20065f1132b2SJan Kara 	if (page->index == size >> PAGE_CACHE_SHIFT)
20075f1132b2SJan Kara 		len = size & ~PAGE_CACHE_MASK;
20085f1132b2SJan Kara 	else
20095f1132b2SJan Kara 		len = PAGE_CACHE_SIZE;
20105f1132b2SJan Kara 	clear_page_dirty_for_io(page);
20111c8349a1SNamjae Jeon 	err = ext4_bio_write_page(&mpd->io_submit, page, len, mpd->wbc, false);
20125f1132b2SJan Kara 	if (!err)
20135f1132b2SJan Kara 		mpd->wbc->nr_to_write--;
20145f1132b2SJan Kara 	mpd->first_page++;
20155f1132b2SJan Kara 
20165f1132b2SJan Kara 	return err;
20175f1132b2SJan Kara }
20185f1132b2SJan Kara 
20194e7ea81dSJan Kara #define BH_FLAGS ((1 << BH_Unwritten) | (1 << BH_Delay))
20204e7ea81dSJan Kara 
202161628a3fSMingming Cao /*
2022fffb2739SJan Kara  * mballoc gives us at most this number of blocks...
2023fffb2739SJan Kara  * XXX: That seems to be only a limitation of ext4_mb_normalize_request().
2024fffb2739SJan Kara  * The rest of mballoc seems to handle chunks up to full group size.
202561628a3fSMingming Cao  */
2026fffb2739SJan Kara #define MAX_WRITEPAGES_EXTENT_LEN 2048
2027525f4ed8SMingming Cao 
2028525f4ed8SMingming Cao /*
20294e7ea81dSJan Kara  * mpage_add_bh_to_extent - try to add bh to extent of blocks to map
20304e7ea81dSJan Kara  *
20314e7ea81dSJan Kara  * @mpd - extent of blocks
20324e7ea81dSJan Kara  * @lblk - logical number of the block in the file
203309930042SJan Kara  * @bh - buffer head we want to add to the extent
20344e7ea81dSJan Kara  *
203509930042SJan Kara  * The function is used to collect contig. blocks in the same state. If the
203609930042SJan Kara  * buffer doesn't require mapping for writeback and we haven't started the
203709930042SJan Kara  * extent of buffers to map yet, the function returns 'true' immediately - the
203809930042SJan Kara  * caller can write the buffer right away. Otherwise the function returns true
203909930042SJan Kara  * if the block has been added to the extent, false if the block couldn't be
204009930042SJan Kara  * added.
20414e7ea81dSJan Kara  */
204209930042SJan Kara static bool mpage_add_bh_to_extent(struct mpage_da_data *mpd, ext4_lblk_t lblk,
204309930042SJan Kara 				   struct buffer_head *bh)
20444e7ea81dSJan Kara {
20454e7ea81dSJan Kara 	struct ext4_map_blocks *map = &mpd->map;
20464e7ea81dSJan Kara 
204709930042SJan Kara 	/* Buffer that doesn't need mapping for writeback? */
204809930042SJan Kara 	if (!buffer_dirty(bh) || !buffer_mapped(bh) ||
204909930042SJan Kara 	    (!buffer_delay(bh) && !buffer_unwritten(bh))) {
205009930042SJan Kara 		/* So far no extent to map => we write the buffer right away */
205109930042SJan Kara 		if (map->m_len == 0)
205209930042SJan Kara 			return true;
205309930042SJan Kara 		return false;
205409930042SJan Kara 	}
20554e7ea81dSJan Kara 
20564e7ea81dSJan Kara 	/* First block in the extent? */
20574e7ea81dSJan Kara 	if (map->m_len == 0) {
20584e7ea81dSJan Kara 		map->m_lblk = lblk;
20594e7ea81dSJan Kara 		map->m_len = 1;
206009930042SJan Kara 		map->m_flags = bh->b_state & BH_FLAGS;
206109930042SJan Kara 		return true;
20624e7ea81dSJan Kara 	}
20634e7ea81dSJan Kara 
206409930042SJan Kara 	/* Don't go larger than mballoc is willing to allocate */
206509930042SJan Kara 	if (map->m_len >= MAX_WRITEPAGES_EXTENT_LEN)
206609930042SJan Kara 		return false;
206709930042SJan Kara 
20684e7ea81dSJan Kara 	/* Can we merge the block to our big extent? */
20694e7ea81dSJan Kara 	if (lblk == map->m_lblk + map->m_len &&
207009930042SJan Kara 	    (bh->b_state & BH_FLAGS) == map->m_flags) {
20714e7ea81dSJan Kara 		map->m_len++;
207209930042SJan Kara 		return true;
20734e7ea81dSJan Kara 	}
207409930042SJan Kara 	return false;
20754e7ea81dSJan Kara }
20764e7ea81dSJan Kara 
20775f1132b2SJan Kara /*
20785f1132b2SJan Kara  * mpage_process_page_bufs - submit page buffers for IO or add them to extent
20795f1132b2SJan Kara  *
20805f1132b2SJan Kara  * @mpd - extent of blocks for mapping
20815f1132b2SJan Kara  * @head - the first buffer in the page
20825f1132b2SJan Kara  * @bh - buffer we should start processing from
20835f1132b2SJan Kara  * @lblk - logical number of the block in the file corresponding to @bh
20845f1132b2SJan Kara  *
20855f1132b2SJan Kara  * Walk through page buffers from @bh upto @head (exclusive) and either submit
20865f1132b2SJan Kara  * the page for IO if all buffers in this page were mapped and there's no
20875f1132b2SJan Kara  * accumulated extent of buffers to map or add buffers in the page to the
20885f1132b2SJan Kara  * extent of buffers to map. The function returns 1 if the caller can continue
20895f1132b2SJan Kara  * by processing the next page, 0 if it should stop adding buffers to the
20905f1132b2SJan Kara  * extent to map because we cannot extend it anymore. It can also return value
20915f1132b2SJan Kara  * < 0 in case of error during IO submission.
20925f1132b2SJan Kara  */
20935f1132b2SJan Kara static int mpage_process_page_bufs(struct mpage_da_data *mpd,
20944e7ea81dSJan Kara 				   struct buffer_head *head,
20954e7ea81dSJan Kara 				   struct buffer_head *bh,
20964e7ea81dSJan Kara 				   ext4_lblk_t lblk)
20974e7ea81dSJan Kara {
20984e7ea81dSJan Kara 	struct inode *inode = mpd->inode;
20995f1132b2SJan Kara 	int err;
21004e7ea81dSJan Kara 	ext4_lblk_t blocks = (i_size_read(inode) + (1 << inode->i_blkbits) - 1)
21014e7ea81dSJan Kara 							>> inode->i_blkbits;
21024e7ea81dSJan Kara 
21034e7ea81dSJan Kara 	do {
21044e7ea81dSJan Kara 		BUG_ON(buffer_locked(bh));
21054e7ea81dSJan Kara 
210609930042SJan Kara 		if (lblk >= blocks || !mpage_add_bh_to_extent(mpd, lblk, bh)) {
21074e7ea81dSJan Kara 			/* Found extent to map? */
21084e7ea81dSJan Kara 			if (mpd->map.m_len)
21095f1132b2SJan Kara 				return 0;
211009930042SJan Kara 			/* Everything mapped so far and we hit EOF */
21115f1132b2SJan Kara 			break;
21124e7ea81dSJan Kara 		}
21134e7ea81dSJan Kara 	} while (lblk++, (bh = bh->b_this_page) != head);
21145f1132b2SJan Kara 	/* So far everything mapped? Submit the page for IO. */
21155f1132b2SJan Kara 	if (mpd->map.m_len == 0) {
21165f1132b2SJan Kara 		err = mpage_submit_page(mpd, head->b_page);
21175f1132b2SJan Kara 		if (err < 0)
21184e7ea81dSJan Kara 			return err;
21194e7ea81dSJan Kara 	}
21205f1132b2SJan Kara 	return lblk < blocks;
21215f1132b2SJan Kara }
21224e7ea81dSJan Kara 
21234e7ea81dSJan Kara /*
21244e7ea81dSJan Kara  * mpage_map_buffers - update buffers corresponding to changed extent and
21254e7ea81dSJan Kara  *		       submit fully mapped pages for IO
21264e7ea81dSJan Kara  *
21274e7ea81dSJan Kara  * @mpd - description of extent to map, on return next extent to map
21284e7ea81dSJan Kara  *
21294e7ea81dSJan Kara  * Scan buffers corresponding to changed extent (we expect corresponding pages
21304e7ea81dSJan Kara  * to be already locked) and update buffer state according to new extent state.
21314e7ea81dSJan Kara  * We map delalloc buffers to their physical location, clear unwritten bits,
2132556615dcSLukas Czerner  * and mark buffers as uninit when we perform writes to unwritten extents
21334e7ea81dSJan Kara  * and do extent conversion after IO is finished. If the last page is not fully
21344e7ea81dSJan Kara  * mapped, we update @map to the next extent in the last page that needs
21354e7ea81dSJan Kara  * mapping. Otherwise we submit the page for IO.
21364e7ea81dSJan Kara  */
21374e7ea81dSJan Kara static int mpage_map_and_submit_buffers(struct mpage_da_data *mpd)
21384e7ea81dSJan Kara {
21394e7ea81dSJan Kara 	struct pagevec pvec;
21404e7ea81dSJan Kara 	int nr_pages, i;
21414e7ea81dSJan Kara 	struct inode *inode = mpd->inode;
21424e7ea81dSJan Kara 	struct buffer_head *head, *bh;
21434e7ea81dSJan Kara 	int bpp_bits = PAGE_CACHE_SHIFT - inode->i_blkbits;
21444e7ea81dSJan Kara 	pgoff_t start, end;
21454e7ea81dSJan Kara 	ext4_lblk_t lblk;
21464e7ea81dSJan Kara 	sector_t pblock;
21474e7ea81dSJan Kara 	int err;
21484e7ea81dSJan Kara 
21494e7ea81dSJan Kara 	start = mpd->map.m_lblk >> bpp_bits;
21504e7ea81dSJan Kara 	end = (mpd->map.m_lblk + mpd->map.m_len - 1) >> bpp_bits;
21514e7ea81dSJan Kara 	lblk = start << bpp_bits;
21524e7ea81dSJan Kara 	pblock = mpd->map.m_pblk;
21534e7ea81dSJan Kara 
21544e7ea81dSJan Kara 	pagevec_init(&pvec, 0);
21554e7ea81dSJan Kara 	while (start <= end) {
21564e7ea81dSJan Kara 		nr_pages = pagevec_lookup(&pvec, inode->i_mapping, start,
21574e7ea81dSJan Kara 					  PAGEVEC_SIZE);
21584e7ea81dSJan Kara 		if (nr_pages == 0)
21594e7ea81dSJan Kara 			break;
21604e7ea81dSJan Kara 		for (i = 0; i < nr_pages; i++) {
21614e7ea81dSJan Kara 			struct page *page = pvec.pages[i];
21624e7ea81dSJan Kara 
21634e7ea81dSJan Kara 			if (page->index > end)
21644e7ea81dSJan Kara 				break;
21654e7ea81dSJan Kara 			/* Up to 'end' pages must be contiguous */
21664e7ea81dSJan Kara 			BUG_ON(page->index != start);
21674e7ea81dSJan Kara 			bh = head = page_buffers(page);
21684e7ea81dSJan Kara 			do {
21694e7ea81dSJan Kara 				if (lblk < mpd->map.m_lblk)
21704e7ea81dSJan Kara 					continue;
21714e7ea81dSJan Kara 				if (lblk >= mpd->map.m_lblk + mpd->map.m_len) {
21724e7ea81dSJan Kara 					/*
21734e7ea81dSJan Kara 					 * Buffer after end of mapped extent.
21744e7ea81dSJan Kara 					 * Find next buffer in the page to map.
21754e7ea81dSJan Kara 					 */
21764e7ea81dSJan Kara 					mpd->map.m_len = 0;
21774e7ea81dSJan Kara 					mpd->map.m_flags = 0;
21785f1132b2SJan Kara 					/*
21795f1132b2SJan Kara 					 * FIXME: If dioread_nolock supports
21805f1132b2SJan Kara 					 * blocksize < pagesize, we need to make
21815f1132b2SJan Kara 					 * sure we add size mapped so far to
21825f1132b2SJan Kara 					 * io_end->size as the following call
21835f1132b2SJan Kara 					 * can submit the page for IO.
21845f1132b2SJan Kara 					 */
21855f1132b2SJan Kara 					err = mpage_process_page_bufs(mpd, head,
21865f1132b2SJan Kara 								      bh, lblk);
21874e7ea81dSJan Kara 					pagevec_release(&pvec);
21885f1132b2SJan Kara 					if (err > 0)
21895f1132b2SJan Kara 						err = 0;
21905f1132b2SJan Kara 					return err;
21914e7ea81dSJan Kara 				}
21924e7ea81dSJan Kara 				if (buffer_delay(bh)) {
21934e7ea81dSJan Kara 					clear_buffer_delay(bh);
21944e7ea81dSJan Kara 					bh->b_blocknr = pblock++;
21954e7ea81dSJan Kara 				}
21964e7ea81dSJan Kara 				clear_buffer_unwritten(bh);
21975f1132b2SJan Kara 			} while (lblk++, (bh = bh->b_this_page) != head);
21984e7ea81dSJan Kara 
21994e7ea81dSJan Kara 			/*
22004e7ea81dSJan Kara 			 * FIXME: This is going to break if dioread_nolock
22014e7ea81dSJan Kara 			 * supports blocksize < pagesize as we will try to
22024e7ea81dSJan Kara 			 * convert potentially unmapped parts of inode.
22034e7ea81dSJan Kara 			 */
22044e7ea81dSJan Kara 			mpd->io_submit.io_end->size += PAGE_CACHE_SIZE;
22054e7ea81dSJan Kara 			/* Page fully mapped - let IO run! */
22064e7ea81dSJan Kara 			err = mpage_submit_page(mpd, page);
22074e7ea81dSJan Kara 			if (err < 0) {
22084e7ea81dSJan Kara 				pagevec_release(&pvec);
22094e7ea81dSJan Kara 				return err;
22104e7ea81dSJan Kara 			}
22114e7ea81dSJan Kara 			start++;
22124e7ea81dSJan Kara 		}
22134e7ea81dSJan Kara 		pagevec_release(&pvec);
22144e7ea81dSJan Kara 	}
22154e7ea81dSJan Kara 	/* Extent fully mapped and matches with page boundary. We are done. */
22164e7ea81dSJan Kara 	mpd->map.m_len = 0;
22174e7ea81dSJan Kara 	mpd->map.m_flags = 0;
22184e7ea81dSJan Kara 	return 0;
22194e7ea81dSJan Kara }
22204e7ea81dSJan Kara 
22214e7ea81dSJan Kara static int mpage_map_one_extent(handle_t *handle, struct mpage_da_data *mpd)
22224e7ea81dSJan Kara {
22234e7ea81dSJan Kara 	struct inode *inode = mpd->inode;
22244e7ea81dSJan Kara 	struct ext4_map_blocks *map = &mpd->map;
22254e7ea81dSJan Kara 	int get_blocks_flags;
2226090f32eeSLukas Czerner 	int err, dioread_nolock;
22274e7ea81dSJan Kara 
22284e7ea81dSJan Kara 	trace_ext4_da_write_pages_extent(inode, map);
22294e7ea81dSJan Kara 	/*
22304e7ea81dSJan Kara 	 * Call ext4_map_blocks() to allocate any delayed allocation blocks, or
2231556615dcSLukas Czerner 	 * to convert an unwritten extent to be initialized (in the case
22324e7ea81dSJan Kara 	 * where we have written into one or more preallocated blocks).  It is
22334e7ea81dSJan Kara 	 * possible that we're going to need more metadata blocks than
22344e7ea81dSJan Kara 	 * previously reserved. However we must not fail because we're in
22354e7ea81dSJan Kara 	 * writeback and there is nothing we can do about it so it might result
22364e7ea81dSJan Kara 	 * in data loss.  So use reserved blocks to allocate metadata if
22374e7ea81dSJan Kara 	 * possible.
22384e7ea81dSJan Kara 	 *
2239754cfed6STheodore Ts'o 	 * We pass in the magic EXT4_GET_BLOCKS_DELALLOC_RESERVE if
2240754cfed6STheodore Ts'o 	 * the blocks in question are delalloc blocks.  This indicates
2241754cfed6STheodore Ts'o 	 * that the blocks and quotas has already been checked when
2242754cfed6STheodore Ts'o 	 * the data was copied into the page cache.
22434e7ea81dSJan Kara 	 */
22444e7ea81dSJan Kara 	get_blocks_flags = EXT4_GET_BLOCKS_CREATE |
22454e7ea81dSJan Kara 			   EXT4_GET_BLOCKS_METADATA_NOFAIL;
2246090f32eeSLukas Czerner 	dioread_nolock = ext4_should_dioread_nolock(inode);
2247090f32eeSLukas Czerner 	if (dioread_nolock)
22484e7ea81dSJan Kara 		get_blocks_flags |= EXT4_GET_BLOCKS_IO_CREATE_EXT;
22494e7ea81dSJan Kara 	if (map->m_flags & (1 << BH_Delay))
22504e7ea81dSJan Kara 		get_blocks_flags |= EXT4_GET_BLOCKS_DELALLOC_RESERVE;
22514e7ea81dSJan Kara 
22524e7ea81dSJan Kara 	err = ext4_map_blocks(handle, inode, map, get_blocks_flags);
22534e7ea81dSJan Kara 	if (err < 0)
22544e7ea81dSJan Kara 		return err;
2255090f32eeSLukas Czerner 	if (dioread_nolock && (map->m_flags & EXT4_MAP_UNWRITTEN)) {
22566b523df4SJan Kara 		if (!mpd->io_submit.io_end->handle &&
22576b523df4SJan Kara 		    ext4_handle_valid(handle)) {
22586b523df4SJan Kara 			mpd->io_submit.io_end->handle = handle->h_rsv_handle;
22596b523df4SJan Kara 			handle->h_rsv_handle = NULL;
22606b523df4SJan Kara 		}
22613613d228SJan Kara 		ext4_set_io_unwritten_flag(inode, mpd->io_submit.io_end);
22626b523df4SJan Kara 	}
22634e7ea81dSJan Kara 
22644e7ea81dSJan Kara 	BUG_ON(map->m_len == 0);
22654e7ea81dSJan Kara 	if (map->m_flags & EXT4_MAP_NEW) {
22664e7ea81dSJan Kara 		struct block_device *bdev = inode->i_sb->s_bdev;
22674e7ea81dSJan Kara 		int i;
22684e7ea81dSJan Kara 
22694e7ea81dSJan Kara 		for (i = 0; i < map->m_len; i++)
22704e7ea81dSJan Kara 			unmap_underlying_metadata(bdev, map->m_pblk + i);
22714e7ea81dSJan Kara 	}
22724e7ea81dSJan Kara 	return 0;
22734e7ea81dSJan Kara }
22744e7ea81dSJan Kara 
22754e7ea81dSJan Kara /*
22764e7ea81dSJan Kara  * mpage_map_and_submit_extent - map extent starting at mpd->lblk of length
22774e7ea81dSJan Kara  *				 mpd->len and submit pages underlying it for IO
22784e7ea81dSJan Kara  *
22794e7ea81dSJan Kara  * @handle - handle for journal operations
22804e7ea81dSJan Kara  * @mpd - extent to map
22817534e854SJan Kara  * @give_up_on_write - we set this to true iff there is a fatal error and there
22827534e854SJan Kara  *                     is no hope of writing the data. The caller should discard
22837534e854SJan Kara  *                     dirty pages to avoid infinite loops.
22844e7ea81dSJan Kara  *
22854e7ea81dSJan Kara  * The function maps extent starting at mpd->lblk of length mpd->len. If it is
22864e7ea81dSJan Kara  * delayed, blocks are allocated, if it is unwritten, we may need to convert
22874e7ea81dSJan Kara  * them to initialized or split the described range from larger unwritten
22884e7ea81dSJan Kara  * extent. Note that we need not map all the described range since allocation
22894e7ea81dSJan Kara  * can return less blocks or the range is covered by more unwritten extents. We
22904e7ea81dSJan Kara  * cannot map more because we are limited by reserved transaction credits. On
22914e7ea81dSJan Kara  * the other hand we always make sure that the last touched page is fully
22924e7ea81dSJan Kara  * mapped so that it can be written out (and thus forward progress is
22934e7ea81dSJan Kara  * guaranteed). After mapping we submit all mapped pages for IO.
22944e7ea81dSJan Kara  */
22954e7ea81dSJan Kara static int mpage_map_and_submit_extent(handle_t *handle,
2296cb530541STheodore Ts'o 				       struct mpage_da_data *mpd,
2297cb530541STheodore Ts'o 				       bool *give_up_on_write)
22984e7ea81dSJan Kara {
22994e7ea81dSJan Kara 	struct inode *inode = mpd->inode;
23004e7ea81dSJan Kara 	struct ext4_map_blocks *map = &mpd->map;
23014e7ea81dSJan Kara 	int err;
23024e7ea81dSJan Kara 	loff_t disksize;
23036603120eSDmitry Monakhov 	int progress = 0;
23044e7ea81dSJan Kara 
23054e7ea81dSJan Kara 	mpd->io_submit.io_end->offset =
23064e7ea81dSJan Kara 				((loff_t)map->m_lblk) << inode->i_blkbits;
230727d7c4edSJan Kara 	do {
23084e7ea81dSJan Kara 		err = mpage_map_one_extent(handle, mpd);
23094e7ea81dSJan Kara 		if (err < 0) {
23104e7ea81dSJan Kara 			struct super_block *sb = inode->i_sb;
23114e7ea81dSJan Kara 
2312cb530541STheodore Ts'o 			if (EXT4_SB(sb)->s_mount_flags & EXT4_MF_FS_ABORTED)
2313cb530541STheodore Ts'o 				goto invalidate_dirty_pages;
23144e7ea81dSJan Kara 			/*
2315cb530541STheodore Ts'o 			 * Let the uper layers retry transient errors.
2316cb530541STheodore Ts'o 			 * In the case of ENOSPC, if ext4_count_free_blocks()
2317cb530541STheodore Ts'o 			 * is non-zero, a commit should free up blocks.
23184e7ea81dSJan Kara 			 */
2319cb530541STheodore Ts'o 			if ((err == -ENOMEM) ||
23206603120eSDmitry Monakhov 			    (err == -ENOSPC && ext4_count_free_clusters(sb))) {
23216603120eSDmitry Monakhov 				if (progress)
23226603120eSDmitry Monakhov 					goto update_disksize;
2323cb530541STheodore Ts'o 				return err;
23246603120eSDmitry Monakhov 			}
23254e7ea81dSJan Kara 			ext4_msg(sb, KERN_CRIT,
23264e7ea81dSJan Kara 				 "Delayed block allocation failed for "
23274e7ea81dSJan Kara 				 "inode %lu at logical offset %llu with"
23284e7ea81dSJan Kara 				 " max blocks %u with error %d",
23294e7ea81dSJan Kara 				 inode->i_ino,
23304e7ea81dSJan Kara 				 (unsigned long long)map->m_lblk,
2331cb530541STheodore Ts'o 				 (unsigned)map->m_len, -err);
23324e7ea81dSJan Kara 			ext4_msg(sb, KERN_CRIT,
23334e7ea81dSJan Kara 				 "This should not happen!! Data will "
23344e7ea81dSJan Kara 				 "be lost\n");
23354e7ea81dSJan Kara 			if (err == -ENOSPC)
23364e7ea81dSJan Kara 				ext4_print_free_blocks(inode);
2337cb530541STheodore Ts'o 		invalidate_dirty_pages:
2338cb530541STheodore Ts'o 			*give_up_on_write = true;
23394e7ea81dSJan Kara 			return err;
23404e7ea81dSJan Kara 		}
23416603120eSDmitry Monakhov 		progress = 1;
23424e7ea81dSJan Kara 		/*
23434e7ea81dSJan Kara 		 * Update buffer state, submit mapped pages, and get us new
23444e7ea81dSJan Kara 		 * extent to map
23454e7ea81dSJan Kara 		 */
23464e7ea81dSJan Kara 		err = mpage_map_and_submit_buffers(mpd);
23474e7ea81dSJan Kara 		if (err < 0)
23486603120eSDmitry Monakhov 			goto update_disksize;
234927d7c4edSJan Kara 	} while (map->m_len);
23504e7ea81dSJan Kara 
23516603120eSDmitry Monakhov update_disksize:
2352622cad13STheodore Ts'o 	/*
2353622cad13STheodore Ts'o 	 * Update on-disk size after IO is submitted.  Races with
2354622cad13STheodore Ts'o 	 * truncate are avoided by checking i_size under i_data_sem.
2355622cad13STheodore Ts'o 	 */
23564e7ea81dSJan Kara 	disksize = ((loff_t)mpd->first_page) << PAGE_CACHE_SHIFT;
23574e7ea81dSJan Kara 	if (disksize > EXT4_I(inode)->i_disksize) {
23584e7ea81dSJan Kara 		int err2;
2359622cad13STheodore Ts'o 		loff_t i_size;
23604e7ea81dSJan Kara 
2361622cad13STheodore Ts'o 		down_write(&EXT4_I(inode)->i_data_sem);
2362622cad13STheodore Ts'o 		i_size = i_size_read(inode);
2363622cad13STheodore Ts'o 		if (disksize > i_size)
2364622cad13STheodore Ts'o 			disksize = i_size;
2365622cad13STheodore Ts'o 		if (disksize > EXT4_I(inode)->i_disksize)
2366622cad13STheodore Ts'o 			EXT4_I(inode)->i_disksize = disksize;
23674e7ea81dSJan Kara 		err2 = ext4_mark_inode_dirty(handle, inode);
2368622cad13STheodore Ts'o 		up_write(&EXT4_I(inode)->i_data_sem);
23694e7ea81dSJan Kara 		if (err2)
23704e7ea81dSJan Kara 			ext4_error(inode->i_sb,
23714e7ea81dSJan Kara 				   "Failed to mark inode %lu dirty",
23724e7ea81dSJan Kara 				   inode->i_ino);
23734e7ea81dSJan Kara 		if (!err)
23744e7ea81dSJan Kara 			err = err2;
23754e7ea81dSJan Kara 	}
23764e7ea81dSJan Kara 	return err;
23774e7ea81dSJan Kara }
23784e7ea81dSJan Kara 
23794e7ea81dSJan Kara /*
2380fffb2739SJan Kara  * Calculate the total number of credits to reserve for one writepages
238120970ba6STheodore Ts'o  * iteration. This is called from ext4_writepages(). We map an extent of
2382fffb2739SJan Kara  * up to MAX_WRITEPAGES_EXTENT_LEN blocks and then we go on and finish mapping
2383fffb2739SJan Kara  * the last partial page. So in total we can map MAX_WRITEPAGES_EXTENT_LEN +
2384fffb2739SJan Kara  * bpp - 1 blocks in bpp different extents.
2385525f4ed8SMingming Cao  */
2386fffb2739SJan Kara static int ext4_da_writepages_trans_blocks(struct inode *inode)
2387fffb2739SJan Kara {
2388fffb2739SJan Kara 	int bpp = ext4_journal_blocks_per_page(inode);
2389525f4ed8SMingming Cao 
2390fffb2739SJan Kara 	return ext4_meta_trans_blocks(inode,
2391fffb2739SJan Kara 				MAX_WRITEPAGES_EXTENT_LEN + bpp - 1, bpp);
2392525f4ed8SMingming Cao }
239361628a3fSMingming Cao 
23948e48dcfbSTheodore Ts'o /*
23954e7ea81dSJan Kara  * mpage_prepare_extent_to_map - find & lock contiguous range of dirty pages
23964e7ea81dSJan Kara  * 				 and underlying extent to map
23974e7ea81dSJan Kara  *
23984e7ea81dSJan Kara  * @mpd - where to look for pages
23994e7ea81dSJan Kara  *
24004e7ea81dSJan Kara  * Walk dirty pages in the mapping. If they are fully mapped, submit them for
24014e7ea81dSJan Kara  * IO immediately. When we find a page which isn't mapped we start accumulating
24024e7ea81dSJan Kara  * extent of buffers underlying these pages that needs mapping (formed by
24034e7ea81dSJan Kara  * either delayed or unwritten buffers). We also lock the pages containing
24044e7ea81dSJan Kara  * these buffers. The extent found is returned in @mpd structure (starting at
24054e7ea81dSJan Kara  * mpd->lblk with length mpd->len blocks).
24064e7ea81dSJan Kara  *
24074e7ea81dSJan Kara  * Note that this function can attach bios to one io_end structure which are
24084e7ea81dSJan Kara  * neither logically nor physically contiguous. Although it may seem as an
24094e7ea81dSJan Kara  * unnecessary complication, it is actually inevitable in blocksize < pagesize
24104e7ea81dSJan Kara  * case as we need to track IO to all buffers underlying a page in one io_end.
24118e48dcfbSTheodore Ts'o  */
24124e7ea81dSJan Kara static int mpage_prepare_extent_to_map(struct mpage_da_data *mpd)
24138e48dcfbSTheodore Ts'o {
24144e7ea81dSJan Kara 	struct address_space *mapping = mpd->inode->i_mapping;
24158e48dcfbSTheodore Ts'o 	struct pagevec pvec;
24164f01b02cSTheodore Ts'o 	unsigned int nr_pages;
2417aeac589aSMing Lei 	long left = mpd->wbc->nr_to_write;
24184e7ea81dSJan Kara 	pgoff_t index = mpd->first_page;
24194e7ea81dSJan Kara 	pgoff_t end = mpd->last_page;
24204e7ea81dSJan Kara 	int tag;
24214e7ea81dSJan Kara 	int i, err = 0;
24224e7ea81dSJan Kara 	int blkbits = mpd->inode->i_blkbits;
24234e7ea81dSJan Kara 	ext4_lblk_t lblk;
24244e7ea81dSJan Kara 	struct buffer_head *head;
24258e48dcfbSTheodore Ts'o 
24264e7ea81dSJan Kara 	if (mpd->wbc->sync_mode == WB_SYNC_ALL || mpd->wbc->tagged_writepages)
24275b41d924SEric Sandeen 		tag = PAGECACHE_TAG_TOWRITE;
24285b41d924SEric Sandeen 	else
24295b41d924SEric Sandeen 		tag = PAGECACHE_TAG_DIRTY;
24305b41d924SEric Sandeen 
24314e7ea81dSJan Kara 	pagevec_init(&pvec, 0);
24324e7ea81dSJan Kara 	mpd->map.m_len = 0;
24334e7ea81dSJan Kara 	mpd->next_page = index;
24344f01b02cSTheodore Ts'o 	while (index <= end) {
24355b41d924SEric Sandeen 		nr_pages = pagevec_lookup_tag(&pvec, mapping, &index, tag,
24368e48dcfbSTheodore Ts'o 			      min(end - index, (pgoff_t)PAGEVEC_SIZE-1) + 1);
24378e48dcfbSTheodore Ts'o 		if (nr_pages == 0)
24384e7ea81dSJan Kara 			goto out;
24398e48dcfbSTheodore Ts'o 
24408e48dcfbSTheodore Ts'o 		for (i = 0; i < nr_pages; i++) {
24418e48dcfbSTheodore Ts'o 			struct page *page = pvec.pages[i];
24428e48dcfbSTheodore Ts'o 
24438e48dcfbSTheodore Ts'o 			/*
24448e48dcfbSTheodore Ts'o 			 * At this point, the page may be truncated or
24458e48dcfbSTheodore Ts'o 			 * invalidated (changing page->mapping to NULL), or
24468e48dcfbSTheodore Ts'o 			 * even swizzled back from swapper_space to tmpfs file
24478e48dcfbSTheodore Ts'o 			 * mapping. However, page->index will not change
24488e48dcfbSTheodore Ts'o 			 * because we have a reference on the page.
24498e48dcfbSTheodore Ts'o 			 */
24504f01b02cSTheodore Ts'o 			if (page->index > end)
24514f01b02cSTheodore Ts'o 				goto out;
24528e48dcfbSTheodore Ts'o 
2453aeac589aSMing Lei 			/*
2454aeac589aSMing Lei 			 * Accumulated enough dirty pages? This doesn't apply
2455aeac589aSMing Lei 			 * to WB_SYNC_ALL mode. For integrity sync we have to
2456aeac589aSMing Lei 			 * keep going because someone may be concurrently
2457aeac589aSMing Lei 			 * dirtying pages, and we might have synced a lot of
2458aeac589aSMing Lei 			 * newly appeared dirty pages, but have not synced all
2459aeac589aSMing Lei 			 * of the old dirty pages.
2460aeac589aSMing Lei 			 */
2461aeac589aSMing Lei 			if (mpd->wbc->sync_mode == WB_SYNC_NONE && left <= 0)
2462aeac589aSMing Lei 				goto out;
2463aeac589aSMing Lei 
24644e7ea81dSJan Kara 			/* If we can't merge this page, we are done. */
24654e7ea81dSJan Kara 			if (mpd->map.m_len > 0 && mpd->next_page != page->index)
24664e7ea81dSJan Kara 				goto out;
246778aaced3STheodore Ts'o 
24688e48dcfbSTheodore Ts'o 			lock_page(page);
24698e48dcfbSTheodore Ts'o 			/*
24704e7ea81dSJan Kara 			 * If the page is no longer dirty, or its mapping no
24714e7ea81dSJan Kara 			 * longer corresponds to inode we are writing (which
24724e7ea81dSJan Kara 			 * means it has been truncated or invalidated), or the
24734e7ea81dSJan Kara 			 * page is already under writeback and we are not doing
24744e7ea81dSJan Kara 			 * a data integrity writeback, skip the page
24758e48dcfbSTheodore Ts'o 			 */
24764f01b02cSTheodore Ts'o 			if (!PageDirty(page) ||
24774f01b02cSTheodore Ts'o 			    (PageWriteback(page) &&
24784e7ea81dSJan Kara 			     (mpd->wbc->sync_mode == WB_SYNC_NONE)) ||
24794f01b02cSTheodore Ts'o 			    unlikely(page->mapping != mapping)) {
24808e48dcfbSTheodore Ts'o 				unlock_page(page);
24818e48dcfbSTheodore Ts'o 				continue;
24828e48dcfbSTheodore Ts'o 			}
24838e48dcfbSTheodore Ts'o 
24848e48dcfbSTheodore Ts'o 			wait_on_page_writeback(page);
24858e48dcfbSTheodore Ts'o 			BUG_ON(PageWriteback(page));
24868e48dcfbSTheodore Ts'o 
24874e7ea81dSJan Kara 			if (mpd->map.m_len == 0)
24888eb9e5ceSTheodore Ts'o 				mpd->first_page = page->index;
24898eb9e5ceSTheodore Ts'o 			mpd->next_page = page->index + 1;
2490f8bec370SJan Kara 			/* Add all dirty buffers to mpd */
24914e7ea81dSJan Kara 			lblk = ((ext4_lblk_t)page->index) <<
24924e7ea81dSJan Kara 				(PAGE_CACHE_SHIFT - blkbits);
24938eb9e5ceSTheodore Ts'o 			head = page_buffers(page);
24945f1132b2SJan Kara 			err = mpage_process_page_bufs(mpd, head, head, lblk);
24955f1132b2SJan Kara 			if (err <= 0)
24964e7ea81dSJan Kara 				goto out;
24975f1132b2SJan Kara 			err = 0;
2498aeac589aSMing Lei 			left--;
24998e48dcfbSTheodore Ts'o 		}
25008e48dcfbSTheodore Ts'o 		pagevec_release(&pvec);
25018e48dcfbSTheodore Ts'o 		cond_resched();
25028e48dcfbSTheodore Ts'o 	}
25034f01b02cSTheodore Ts'o 	return 0;
25048eb9e5ceSTheodore Ts'o out:
25058eb9e5ceSTheodore Ts'o 	pagevec_release(&pvec);
25064e7ea81dSJan Kara 	return err;
25078e48dcfbSTheodore Ts'o }
25088e48dcfbSTheodore Ts'o 
250920970ba6STheodore Ts'o static int __writepage(struct page *page, struct writeback_control *wbc,
251020970ba6STheodore Ts'o 		       void *data)
251120970ba6STheodore Ts'o {
251220970ba6STheodore Ts'o 	struct address_space *mapping = data;
251320970ba6STheodore Ts'o 	int ret = ext4_writepage(page, wbc);
251420970ba6STheodore Ts'o 	mapping_set_error(mapping, ret);
251520970ba6STheodore Ts'o 	return ret;
251620970ba6STheodore Ts'o }
251720970ba6STheodore Ts'o 
251820970ba6STheodore Ts'o static int ext4_writepages(struct address_space *mapping,
251964769240SAlex Tomas 			   struct writeback_control *wbc)
252064769240SAlex Tomas {
25214e7ea81dSJan Kara 	pgoff_t	writeback_index = 0;
25224e7ea81dSJan Kara 	long nr_to_write = wbc->nr_to_write;
252322208dedSAneesh Kumar K.V 	int range_whole = 0;
25244e7ea81dSJan Kara 	int cycled = 1;
252561628a3fSMingming Cao 	handle_t *handle = NULL;
2526df22291fSAneesh Kumar K.V 	struct mpage_da_data mpd;
25275e745b04SAneesh Kumar K.V 	struct inode *inode = mapping->host;
25286b523df4SJan Kara 	int needed_blocks, rsv_blocks = 0, ret = 0;
25295e745b04SAneesh Kumar K.V 	struct ext4_sb_info *sbi = EXT4_SB(mapping->host->i_sb);
25304e7ea81dSJan Kara 	bool done;
25311bce63d1SShaohua Li 	struct blk_plug plug;
2532cb530541STheodore Ts'o 	bool give_up_on_write = false;
253361628a3fSMingming Cao 
253420970ba6STheodore Ts'o 	trace_ext4_writepages(inode, wbc);
2535ba80b101STheodore Ts'o 
253661628a3fSMingming Cao 	/*
253761628a3fSMingming Cao 	 * No pages to write? This is mainly a kludge to avoid starting
253861628a3fSMingming Cao 	 * a transaction for special inodes like journal inode on last iput()
253961628a3fSMingming Cao 	 * because that could violate lock ordering on umount
254061628a3fSMingming Cao 	 */
2541a1d6cc56SAneesh Kumar K.V 	if (!mapping->nrpages || !mapping_tagged(mapping, PAGECACHE_TAG_DIRTY))
2542bbf023c7SMing Lei 		goto out_writepages;
25432a21e37eSTheodore Ts'o 
254420970ba6STheodore Ts'o 	if (ext4_should_journal_data(inode)) {
254520970ba6STheodore Ts'o 		struct blk_plug plug;
254620970ba6STheodore Ts'o 
254720970ba6STheodore Ts'o 		blk_start_plug(&plug);
254820970ba6STheodore Ts'o 		ret = write_cache_pages(mapping, wbc, __writepage, mapping);
254920970ba6STheodore Ts'o 		blk_finish_plug(&plug);
2550bbf023c7SMing Lei 		goto out_writepages;
255120970ba6STheodore Ts'o 	}
255220970ba6STheodore Ts'o 
25532a21e37eSTheodore Ts'o 	/*
25542a21e37eSTheodore Ts'o 	 * If the filesystem has aborted, it is read-only, so return
25552a21e37eSTheodore Ts'o 	 * right away instead of dumping stack traces later on that
25562a21e37eSTheodore Ts'o 	 * will obscure the real source of the problem.  We test
25574ab2f15bSTheodore Ts'o 	 * EXT4_MF_FS_ABORTED instead of sb->s_flag's MS_RDONLY because
25582a21e37eSTheodore Ts'o 	 * the latter could be true if the filesystem is mounted
255920970ba6STheodore Ts'o 	 * read-only, and in that case, ext4_writepages should
25602a21e37eSTheodore Ts'o 	 * *never* be called, so if that ever happens, we would want
25612a21e37eSTheodore Ts'o 	 * the stack trace.
25622a21e37eSTheodore Ts'o 	 */
2563bbf023c7SMing Lei 	if (unlikely(sbi->s_mount_flags & EXT4_MF_FS_ABORTED)) {
2564bbf023c7SMing Lei 		ret = -EROFS;
2565bbf023c7SMing Lei 		goto out_writepages;
2566bbf023c7SMing Lei 	}
25672a21e37eSTheodore Ts'o 
25686b523df4SJan Kara 	if (ext4_should_dioread_nolock(inode)) {
25696b523df4SJan Kara 		/*
25706b523df4SJan Kara 		 * We may need to convert up to one extent per block in
25716b523df4SJan Kara 		 * the page and we may dirty the inode.
25726b523df4SJan Kara 		 */
25736b523df4SJan Kara 		rsv_blocks = 1 + (PAGE_CACHE_SIZE >> inode->i_blkbits);
25746b523df4SJan Kara 	}
25756b523df4SJan Kara 
25764e7ea81dSJan Kara 	/*
25774e7ea81dSJan Kara 	 * If we have inline data and arrive here, it means that
25784e7ea81dSJan Kara 	 * we will soon create the block for the 1st page, so
25794e7ea81dSJan Kara 	 * we'd better clear the inline data here.
25804e7ea81dSJan Kara 	 */
25814e7ea81dSJan Kara 	if (ext4_has_inline_data(inode)) {
25824e7ea81dSJan Kara 		/* Just inode will be modified... */
25834e7ea81dSJan Kara 		handle = ext4_journal_start(inode, EXT4_HT_INODE, 1);
25844e7ea81dSJan Kara 		if (IS_ERR(handle)) {
25854e7ea81dSJan Kara 			ret = PTR_ERR(handle);
25864e7ea81dSJan Kara 			goto out_writepages;
25874e7ea81dSJan Kara 		}
25884e7ea81dSJan Kara 		BUG_ON(ext4_test_inode_state(inode,
25894e7ea81dSJan Kara 				EXT4_STATE_MAY_INLINE_DATA));
25904e7ea81dSJan Kara 		ext4_destroy_inline_data(handle, inode);
25914e7ea81dSJan Kara 		ext4_journal_stop(handle);
25924e7ea81dSJan Kara 	}
25934e7ea81dSJan Kara 
259422208dedSAneesh Kumar K.V 	if (wbc->range_start == 0 && wbc->range_end == LLONG_MAX)
259522208dedSAneesh Kumar K.V 		range_whole = 1;
259661628a3fSMingming Cao 
25972acf2c26SAneesh Kumar K.V 	if (wbc->range_cyclic) {
25984e7ea81dSJan Kara 		writeback_index = mapping->writeback_index;
25994e7ea81dSJan Kara 		if (writeback_index)
26002acf2c26SAneesh Kumar K.V 			cycled = 0;
26014e7ea81dSJan Kara 		mpd.first_page = writeback_index;
26024e7ea81dSJan Kara 		mpd.last_page = -1;
26035b41d924SEric Sandeen 	} else {
26044e7ea81dSJan Kara 		mpd.first_page = wbc->range_start >> PAGE_CACHE_SHIFT;
26054e7ea81dSJan Kara 		mpd.last_page = wbc->range_end >> PAGE_CACHE_SHIFT;
26065b41d924SEric Sandeen 	}
2607a1d6cc56SAneesh Kumar K.V 
26084e7ea81dSJan Kara 	mpd.inode = inode;
26094e7ea81dSJan Kara 	mpd.wbc = wbc;
26104e7ea81dSJan Kara 	ext4_io_submit_init(&mpd.io_submit, wbc);
26112acf2c26SAneesh Kumar K.V retry:
26126e6938b6SWu Fengguang 	if (wbc->sync_mode == WB_SYNC_ALL || wbc->tagged_writepages)
26134e7ea81dSJan Kara 		tag_pages_for_writeback(mapping, mpd.first_page, mpd.last_page);
26144e7ea81dSJan Kara 	done = false;
26151bce63d1SShaohua Li 	blk_start_plug(&plug);
26164e7ea81dSJan Kara 	while (!done && mpd.first_page <= mpd.last_page) {
26174e7ea81dSJan Kara 		/* For each extent of pages we use new io_end */
26184e7ea81dSJan Kara 		mpd.io_submit.io_end = ext4_init_io_end(inode, GFP_KERNEL);
26194e7ea81dSJan Kara 		if (!mpd.io_submit.io_end) {
26204e7ea81dSJan Kara 			ret = -ENOMEM;
26214e7ea81dSJan Kara 			break;
26224e7ea81dSJan Kara 		}
2623a1d6cc56SAneesh Kumar K.V 
2624a1d6cc56SAneesh Kumar K.V 		/*
26254e7ea81dSJan Kara 		 * We have two constraints: We find one extent to map and we
26264e7ea81dSJan Kara 		 * must always write out whole page (makes a difference when
26274e7ea81dSJan Kara 		 * blocksize < pagesize) so that we don't block on IO when we
26284e7ea81dSJan Kara 		 * try to write out the rest of the page. Journalled mode is
26294e7ea81dSJan Kara 		 * not supported by delalloc.
2630a1d6cc56SAneesh Kumar K.V 		 */
2631a1d6cc56SAneesh Kumar K.V 		BUG_ON(ext4_should_journal_data(inode));
2632525f4ed8SMingming Cao 		needed_blocks = ext4_da_writepages_trans_blocks(inode);
2633a1d6cc56SAneesh Kumar K.V 
263461628a3fSMingming Cao 		/* start a new transaction */
26356b523df4SJan Kara 		handle = ext4_journal_start_with_reserve(inode,
26366b523df4SJan Kara 				EXT4_HT_WRITE_PAGE, needed_blocks, rsv_blocks);
263761628a3fSMingming Cao 		if (IS_ERR(handle)) {
263861628a3fSMingming Cao 			ret = PTR_ERR(handle);
26391693918eSTheodore Ts'o 			ext4_msg(inode->i_sb, KERN_CRIT, "%s: jbd2_start: "
2640fbe845ddSCurt Wohlgemuth 			       "%ld pages, ino %lu; err %d", __func__,
2641a1d6cc56SAneesh Kumar K.V 				wbc->nr_to_write, inode->i_ino, ret);
26424e7ea81dSJan Kara 			/* Release allocated io_end */
26434e7ea81dSJan Kara 			ext4_put_io_end(mpd.io_submit.io_end);
26444e7ea81dSJan Kara 			break;
264561628a3fSMingming Cao 		}
2646f63e6005STheodore Ts'o 
26474e7ea81dSJan Kara 		trace_ext4_da_write_pages(inode, mpd.first_page, mpd.wbc);
26484e7ea81dSJan Kara 		ret = mpage_prepare_extent_to_map(&mpd);
26494e7ea81dSJan Kara 		if (!ret) {
26504e7ea81dSJan Kara 			if (mpd.map.m_len)
2651cb530541STheodore Ts'o 				ret = mpage_map_and_submit_extent(handle, &mpd,
2652cb530541STheodore Ts'o 					&give_up_on_write);
26534e7ea81dSJan Kara 			else {
2654f63e6005STheodore Ts'o 				/*
26554e7ea81dSJan Kara 				 * We scanned the whole range (or exhausted
26564e7ea81dSJan Kara 				 * nr_to_write), submitted what was mapped and
26574e7ea81dSJan Kara 				 * didn't find anything needing mapping. We are
26584e7ea81dSJan Kara 				 * done.
2659f63e6005STheodore Ts'o 				 */
26604e7ea81dSJan Kara 				done = true;
2661f63e6005STheodore Ts'o 			}
26624e7ea81dSJan Kara 		}
266361628a3fSMingming Cao 		ext4_journal_stop(handle);
26644e7ea81dSJan Kara 		/* Submit prepared bio */
26654e7ea81dSJan Kara 		ext4_io_submit(&mpd.io_submit);
26664e7ea81dSJan Kara 		/* Unlock pages we didn't use */
2667cb530541STheodore Ts'o 		mpage_release_unused_pages(&mpd, give_up_on_write);
26684e7ea81dSJan Kara 		/* Drop our io_end reference we got from init */
26694e7ea81dSJan Kara 		ext4_put_io_end(mpd.io_submit.io_end);
2670df22291fSAneesh Kumar K.V 
26714e7ea81dSJan Kara 		if (ret == -ENOSPC && sbi->s_journal) {
26724e7ea81dSJan Kara 			/*
26734e7ea81dSJan Kara 			 * Commit the transaction which would
267422208dedSAneesh Kumar K.V 			 * free blocks released in the transaction
267522208dedSAneesh Kumar K.V 			 * and try again
267622208dedSAneesh Kumar K.V 			 */
2677df22291fSAneesh Kumar K.V 			jbd2_journal_force_commit_nested(sbi->s_journal);
267822208dedSAneesh Kumar K.V 			ret = 0;
26794e7ea81dSJan Kara 			continue;
26804e7ea81dSJan Kara 		}
26814e7ea81dSJan Kara 		/* Fatal error - ENOMEM, EIO... */
26824e7ea81dSJan Kara 		if (ret)
268361628a3fSMingming Cao 			break;
268461628a3fSMingming Cao 	}
26851bce63d1SShaohua Li 	blk_finish_plug(&plug);
26869c12a831SJan Kara 	if (!ret && !cycled && wbc->nr_to_write > 0) {
26872acf2c26SAneesh Kumar K.V 		cycled = 1;
26884e7ea81dSJan Kara 		mpd.last_page = writeback_index - 1;
26894e7ea81dSJan Kara 		mpd.first_page = 0;
26902acf2c26SAneesh Kumar K.V 		goto retry;
26912acf2c26SAneesh Kumar K.V 	}
269261628a3fSMingming Cao 
269322208dedSAneesh Kumar K.V 	/* Update index */
269422208dedSAneesh Kumar K.V 	if (wbc->range_cyclic || (range_whole && wbc->nr_to_write > 0))
269522208dedSAneesh Kumar K.V 		/*
26964e7ea81dSJan Kara 		 * Set the writeback_index so that range_cyclic
269722208dedSAneesh Kumar K.V 		 * mode will write it back later
269822208dedSAneesh Kumar K.V 		 */
26994e7ea81dSJan Kara 		mapping->writeback_index = mpd.first_page;
2700a1d6cc56SAneesh Kumar K.V 
270161628a3fSMingming Cao out_writepages:
270220970ba6STheodore Ts'o 	trace_ext4_writepages_result(inode, wbc, ret,
27034e7ea81dSJan Kara 				     nr_to_write - wbc->nr_to_write);
270461628a3fSMingming Cao 	return ret;
270564769240SAlex Tomas }
270664769240SAlex Tomas 
270779f0be8dSAneesh Kumar K.V static int ext4_nonda_switch(struct super_block *sb)
270879f0be8dSAneesh Kumar K.V {
27095c1ff336SEric Whitney 	s64 free_clusters, dirty_clusters;
271079f0be8dSAneesh Kumar K.V 	struct ext4_sb_info *sbi = EXT4_SB(sb);
271179f0be8dSAneesh Kumar K.V 
271279f0be8dSAneesh Kumar K.V 	/*
271379f0be8dSAneesh Kumar K.V 	 * switch to non delalloc mode if we are running low
271479f0be8dSAneesh Kumar K.V 	 * on free block. The free block accounting via percpu
2715179f7ebfSEric Dumazet 	 * counters can get slightly wrong with percpu_counter_batch getting
271679f0be8dSAneesh Kumar K.V 	 * accumulated on each CPU without updating global counters
271779f0be8dSAneesh Kumar K.V 	 * Delalloc need an accurate free block accounting. So switch
271879f0be8dSAneesh Kumar K.V 	 * to non delalloc when we are near to error range.
271979f0be8dSAneesh Kumar K.V 	 */
27205c1ff336SEric Whitney 	free_clusters =
27215c1ff336SEric Whitney 		percpu_counter_read_positive(&sbi->s_freeclusters_counter);
27225c1ff336SEric Whitney 	dirty_clusters =
27235c1ff336SEric Whitney 		percpu_counter_read_positive(&sbi->s_dirtyclusters_counter);
272400d4e736STheodore Ts'o 	/*
272500d4e736STheodore Ts'o 	 * Start pushing delalloc when 1/2 of free blocks are dirty.
272600d4e736STheodore Ts'o 	 */
27275c1ff336SEric Whitney 	if (dirty_clusters && (free_clusters < 2 * dirty_clusters))
272810ee27a0SMiao Xie 		try_to_writeback_inodes_sb(sb, WB_REASON_FS_FREE_SPACE);
272900d4e736STheodore Ts'o 
27305c1ff336SEric Whitney 	if (2 * free_clusters < 3 * dirty_clusters ||
27315c1ff336SEric Whitney 	    free_clusters < (dirty_clusters + EXT4_FREECLUSTERS_WATERMARK)) {
273279f0be8dSAneesh Kumar K.V 		/*
2733c8afb446SEric Sandeen 		 * free block count is less than 150% of dirty blocks
2734c8afb446SEric Sandeen 		 * or free blocks is less than watermark
273579f0be8dSAneesh Kumar K.V 		 */
273679f0be8dSAneesh Kumar K.V 		return 1;
273779f0be8dSAneesh Kumar K.V 	}
273879f0be8dSAneesh Kumar K.V 	return 0;
273979f0be8dSAneesh Kumar K.V }
274079f0be8dSAneesh Kumar K.V 
27410ff8947fSEric Sandeen /* We always reserve for an inode update; the superblock could be there too */
27420ff8947fSEric Sandeen static int ext4_da_write_credits(struct inode *inode, loff_t pos, unsigned len)
27430ff8947fSEric Sandeen {
2744e2b911c5SDarrick J. Wong 	if (likely(ext4_has_feature_large_file(inode->i_sb)))
27450ff8947fSEric Sandeen 		return 1;
27460ff8947fSEric Sandeen 
27470ff8947fSEric Sandeen 	if (pos + len <= 0x7fffffffULL)
27480ff8947fSEric Sandeen 		return 1;
27490ff8947fSEric Sandeen 
27500ff8947fSEric Sandeen 	/* We might need to update the superblock to set LARGE_FILE */
27510ff8947fSEric Sandeen 	return 2;
27520ff8947fSEric Sandeen }
27530ff8947fSEric Sandeen 
275464769240SAlex Tomas static int ext4_da_write_begin(struct file *file, struct address_space *mapping,
275564769240SAlex Tomas 			       loff_t pos, unsigned len, unsigned flags,
275664769240SAlex Tomas 			       struct page **pagep, void **fsdata)
275764769240SAlex Tomas {
275872b8ab9dSEric Sandeen 	int ret, retries = 0;
275964769240SAlex Tomas 	struct page *page;
276064769240SAlex Tomas 	pgoff_t index;
276164769240SAlex Tomas 	struct inode *inode = mapping->host;
276264769240SAlex Tomas 	handle_t *handle;
276364769240SAlex Tomas 
276464769240SAlex Tomas 	index = pos >> PAGE_CACHE_SHIFT;
276579f0be8dSAneesh Kumar K.V 
276679f0be8dSAneesh Kumar K.V 	if (ext4_nonda_switch(inode->i_sb)) {
276779f0be8dSAneesh Kumar K.V 		*fsdata = (void *)FALL_BACK_TO_NONDELALLOC;
276879f0be8dSAneesh Kumar K.V 		return ext4_write_begin(file, mapping, pos,
276979f0be8dSAneesh Kumar K.V 					len, flags, pagep, fsdata);
277079f0be8dSAneesh Kumar K.V 	}
277179f0be8dSAneesh Kumar K.V 	*fsdata = (void *)0;
27729bffad1eSTheodore Ts'o 	trace_ext4_da_write_begin(inode, pos, len, flags);
27739c3569b5STao Ma 
27749c3569b5STao Ma 	if (ext4_test_inode_state(inode, EXT4_STATE_MAY_INLINE_DATA)) {
27759c3569b5STao Ma 		ret = ext4_da_write_inline_data_begin(mapping, inode,
27769c3569b5STao Ma 						      pos, len, flags,
27779c3569b5STao Ma 						      pagep, fsdata);
27789c3569b5STao Ma 		if (ret < 0)
277947564bfbSTheodore Ts'o 			return ret;
278047564bfbSTheodore Ts'o 		if (ret == 1)
278147564bfbSTheodore Ts'o 			return 0;
27829c3569b5STao Ma 	}
27839c3569b5STao Ma 
278447564bfbSTheodore Ts'o 	/*
278547564bfbSTheodore Ts'o 	 * grab_cache_page_write_begin() can take a long time if the
278647564bfbSTheodore Ts'o 	 * system is thrashing due to memory pressure, or if the page
278747564bfbSTheodore Ts'o 	 * is being written back.  So grab it first before we start
278847564bfbSTheodore Ts'o 	 * the transaction handle.  This also allows us to allocate
278947564bfbSTheodore Ts'o 	 * the page (if needed) without using GFP_NOFS.
279047564bfbSTheodore Ts'o 	 */
279147564bfbSTheodore Ts'o retry_grab:
279247564bfbSTheodore Ts'o 	page = grab_cache_page_write_begin(mapping, index, flags);
279347564bfbSTheodore Ts'o 	if (!page)
279447564bfbSTheodore Ts'o 		return -ENOMEM;
279547564bfbSTheodore Ts'o 	unlock_page(page);
279647564bfbSTheodore Ts'o 
279764769240SAlex Tomas 	/*
279864769240SAlex Tomas 	 * With delayed allocation, we don't log the i_disksize update
279964769240SAlex Tomas 	 * if there is delayed block allocation. But we still need
280064769240SAlex Tomas 	 * to journalling the i_disksize update if writes to the end
280164769240SAlex Tomas 	 * of file which has an already mapped buffer.
280264769240SAlex Tomas 	 */
280347564bfbSTheodore Ts'o retry_journal:
28040ff8947fSEric Sandeen 	handle = ext4_journal_start(inode, EXT4_HT_WRITE_PAGE,
28050ff8947fSEric Sandeen 				ext4_da_write_credits(inode, pos, len));
280664769240SAlex Tomas 	if (IS_ERR(handle)) {
280747564bfbSTheodore Ts'o 		page_cache_release(page);
280847564bfbSTheodore Ts'o 		return PTR_ERR(handle);
280964769240SAlex Tomas 	}
281064769240SAlex Tomas 
281147564bfbSTheodore Ts'o 	lock_page(page);
281247564bfbSTheodore Ts'o 	if (page->mapping != mapping) {
281347564bfbSTheodore Ts'o 		/* The page got truncated from under us */
281447564bfbSTheodore Ts'o 		unlock_page(page);
281547564bfbSTheodore Ts'o 		page_cache_release(page);
2816d5a0d4f7SEric Sandeen 		ext4_journal_stop(handle);
281747564bfbSTheodore Ts'o 		goto retry_grab;
2818d5a0d4f7SEric Sandeen 	}
281947564bfbSTheodore Ts'o 	/* In case writeback began while the page was unlocked */
28207afe5aa5SDmitry Monakhov 	wait_for_stable_page(page);
282164769240SAlex Tomas 
28222058f83aSMichael Halcrow #ifdef CONFIG_EXT4_FS_ENCRYPTION
28232058f83aSMichael Halcrow 	ret = ext4_block_write_begin(page, pos, len,
28242058f83aSMichael Halcrow 				     ext4_da_get_block_prep);
28252058f83aSMichael Halcrow #else
28266e1db88dSChristoph Hellwig 	ret = __block_write_begin(page, pos, len, ext4_da_get_block_prep);
28272058f83aSMichael Halcrow #endif
282864769240SAlex Tomas 	if (ret < 0) {
282964769240SAlex Tomas 		unlock_page(page);
283064769240SAlex Tomas 		ext4_journal_stop(handle);
2831ae4d5372SAneesh Kumar K.V 		/*
2832ae4d5372SAneesh Kumar K.V 		 * block_write_begin may have instantiated a few blocks
2833ae4d5372SAneesh Kumar K.V 		 * outside i_size.  Trim these off again. Don't need
2834ae4d5372SAneesh Kumar K.V 		 * i_size_read because we hold i_mutex.
2835ae4d5372SAneesh Kumar K.V 		 */
2836ae4d5372SAneesh Kumar K.V 		if (pos + len > inode->i_size)
2837b9a4207dSJan Kara 			ext4_truncate_failed_write(inode);
283847564bfbSTheodore Ts'o 
283947564bfbSTheodore Ts'o 		if (ret == -ENOSPC &&
284047564bfbSTheodore Ts'o 		    ext4_should_retry_alloc(inode->i_sb, &retries))
284147564bfbSTheodore Ts'o 			goto retry_journal;
284247564bfbSTheodore Ts'o 
284347564bfbSTheodore Ts'o 		page_cache_release(page);
284447564bfbSTheodore Ts'o 		return ret;
284564769240SAlex Tomas 	}
284664769240SAlex Tomas 
284747564bfbSTheodore Ts'o 	*pagep = page;
284864769240SAlex Tomas 	return ret;
284964769240SAlex Tomas }
285064769240SAlex Tomas 
2851632eaeabSMingming Cao /*
2852632eaeabSMingming Cao  * Check if we should update i_disksize
2853632eaeabSMingming Cao  * when write to the end of file but not require block allocation
2854632eaeabSMingming Cao  */
2855632eaeabSMingming Cao static int ext4_da_should_update_i_disksize(struct page *page,
2856632eaeabSMingming Cao 					    unsigned long offset)
2857632eaeabSMingming Cao {
2858632eaeabSMingming Cao 	struct buffer_head *bh;
2859632eaeabSMingming Cao 	struct inode *inode = page->mapping->host;
2860632eaeabSMingming Cao 	unsigned int idx;
2861632eaeabSMingming Cao 	int i;
2862632eaeabSMingming Cao 
2863632eaeabSMingming Cao 	bh = page_buffers(page);
2864632eaeabSMingming Cao 	idx = offset >> inode->i_blkbits;
2865632eaeabSMingming Cao 
2866632eaeabSMingming Cao 	for (i = 0; i < idx; i++)
2867632eaeabSMingming Cao 		bh = bh->b_this_page;
2868632eaeabSMingming Cao 
286929fa89d0SAneesh Kumar K.V 	if (!buffer_mapped(bh) || (buffer_delay(bh)) || buffer_unwritten(bh))
2870632eaeabSMingming Cao 		return 0;
2871632eaeabSMingming Cao 	return 1;
2872632eaeabSMingming Cao }
2873632eaeabSMingming Cao 
287464769240SAlex Tomas static int ext4_da_write_end(struct file *file,
287564769240SAlex Tomas 			     struct address_space *mapping,
287664769240SAlex Tomas 			     loff_t pos, unsigned len, unsigned copied,
287764769240SAlex Tomas 			     struct page *page, void *fsdata)
287864769240SAlex Tomas {
287964769240SAlex Tomas 	struct inode *inode = mapping->host;
288064769240SAlex Tomas 	int ret = 0, ret2;
288164769240SAlex Tomas 	handle_t *handle = ext4_journal_current_handle();
288264769240SAlex Tomas 	loff_t new_i_size;
2883632eaeabSMingming Cao 	unsigned long start, end;
288479f0be8dSAneesh Kumar K.V 	int write_mode = (int)(unsigned long)fsdata;
288579f0be8dSAneesh Kumar K.V 
288674d553aaSTheodore Ts'o 	if (write_mode == FALL_BACK_TO_NONDELALLOC)
288774d553aaSTheodore Ts'o 		return ext4_write_end(file, mapping, pos,
288879f0be8dSAneesh Kumar K.V 				      len, copied, page, fsdata);
2889632eaeabSMingming Cao 
28909bffad1eSTheodore Ts'o 	trace_ext4_da_write_end(inode, pos, len, copied);
2891632eaeabSMingming Cao 	start = pos & (PAGE_CACHE_SIZE - 1);
2892632eaeabSMingming Cao 	end = start + copied - 1;
289364769240SAlex Tomas 
289464769240SAlex Tomas 	/*
289564769240SAlex Tomas 	 * generic_write_end() will run mark_inode_dirty() if i_size
289664769240SAlex Tomas 	 * changes.  So let's piggyback the i_disksize mark_inode_dirty
289764769240SAlex Tomas 	 * into that.
289864769240SAlex Tomas 	 */
289964769240SAlex Tomas 	new_i_size = pos + copied;
2900ea51d132SAndrea Arcangeli 	if (copied && new_i_size > EXT4_I(inode)->i_disksize) {
29019c3569b5STao Ma 		if (ext4_has_inline_data(inode) ||
29029c3569b5STao Ma 		    ext4_da_should_update_i_disksize(page, end)) {
2903ee124d27SDmitry Monakhov 			ext4_update_i_disksize(inode, new_i_size);
2904cf17fea6SAneesh Kumar K.V 			/* We need to mark inode dirty even if
2905cf17fea6SAneesh Kumar K.V 			 * new_i_size is less that inode->i_size
2906cf17fea6SAneesh Kumar K.V 			 * bu greater than i_disksize.(hint delalloc)
2907cf17fea6SAneesh Kumar K.V 			 */
2908cf17fea6SAneesh Kumar K.V 			ext4_mark_inode_dirty(handle, inode);
2909632eaeabSMingming Cao 		}
2910632eaeabSMingming Cao 	}
29119c3569b5STao Ma 
29129c3569b5STao Ma 	if (write_mode != CONVERT_INLINE_DATA &&
29139c3569b5STao Ma 	    ext4_test_inode_state(inode, EXT4_STATE_MAY_INLINE_DATA) &&
29149c3569b5STao Ma 	    ext4_has_inline_data(inode))
29159c3569b5STao Ma 		ret2 = ext4_da_write_inline_data_end(inode, pos, len, copied,
29169c3569b5STao Ma 						     page);
29179c3569b5STao Ma 	else
291864769240SAlex Tomas 		ret2 = generic_write_end(file, mapping, pos, len, copied,
291964769240SAlex Tomas 							page, fsdata);
29209c3569b5STao Ma 
292164769240SAlex Tomas 	copied = ret2;
292264769240SAlex Tomas 	if (ret2 < 0)
292364769240SAlex Tomas 		ret = ret2;
292464769240SAlex Tomas 	ret2 = ext4_journal_stop(handle);
292564769240SAlex Tomas 	if (!ret)
292664769240SAlex Tomas 		ret = ret2;
292764769240SAlex Tomas 
292864769240SAlex Tomas 	return ret ? ret : copied;
292964769240SAlex Tomas }
293064769240SAlex Tomas 
2931d47992f8SLukas Czerner static void ext4_da_invalidatepage(struct page *page, unsigned int offset,
2932d47992f8SLukas Czerner 				   unsigned int length)
293364769240SAlex Tomas {
293464769240SAlex Tomas 	/*
293564769240SAlex Tomas 	 * Drop reserved blocks
293664769240SAlex Tomas 	 */
293764769240SAlex Tomas 	BUG_ON(!PageLocked(page));
293864769240SAlex Tomas 	if (!page_has_buffers(page))
293964769240SAlex Tomas 		goto out;
294064769240SAlex Tomas 
2941ca99fdd2SLukas Czerner 	ext4_da_page_release_reservation(page, offset, length);
294264769240SAlex Tomas 
294364769240SAlex Tomas out:
2944d47992f8SLukas Czerner 	ext4_invalidatepage(page, offset, length);
294564769240SAlex Tomas 
294664769240SAlex Tomas 	return;
294764769240SAlex Tomas }
294864769240SAlex Tomas 
2949ccd2506bSTheodore Ts'o /*
2950ccd2506bSTheodore Ts'o  * Force all delayed allocation blocks to be allocated for a given inode.
2951ccd2506bSTheodore Ts'o  */
2952ccd2506bSTheodore Ts'o int ext4_alloc_da_blocks(struct inode *inode)
2953ccd2506bSTheodore Ts'o {
2954fb40ba0dSTheodore Ts'o 	trace_ext4_alloc_da_blocks(inode);
2955fb40ba0dSTheodore Ts'o 
295671d4f7d0STheodore Ts'o 	if (!EXT4_I(inode)->i_reserved_data_blocks)
2957ccd2506bSTheodore Ts'o 		return 0;
2958ccd2506bSTheodore Ts'o 
2959ccd2506bSTheodore Ts'o 	/*
2960ccd2506bSTheodore Ts'o 	 * We do something simple for now.  The filemap_flush() will
2961ccd2506bSTheodore Ts'o 	 * also start triggering a write of the data blocks, which is
2962ccd2506bSTheodore Ts'o 	 * not strictly speaking necessary (and for users of
2963ccd2506bSTheodore Ts'o 	 * laptop_mode, not even desirable).  However, to do otherwise
2964ccd2506bSTheodore Ts'o 	 * would require replicating code paths in:
2965ccd2506bSTheodore Ts'o 	 *
296620970ba6STheodore Ts'o 	 * ext4_writepages() ->
2967ccd2506bSTheodore Ts'o 	 *    write_cache_pages() ---> (via passed in callback function)
2968ccd2506bSTheodore Ts'o 	 *        __mpage_da_writepage() -->
2969ccd2506bSTheodore Ts'o 	 *           mpage_add_bh_to_extent()
2970ccd2506bSTheodore Ts'o 	 *           mpage_da_map_blocks()
2971ccd2506bSTheodore Ts'o 	 *
2972ccd2506bSTheodore Ts'o 	 * The problem is that write_cache_pages(), located in
2973ccd2506bSTheodore Ts'o 	 * mm/page-writeback.c, marks pages clean in preparation for
2974ccd2506bSTheodore Ts'o 	 * doing I/O, which is not desirable if we're not planning on
2975ccd2506bSTheodore Ts'o 	 * doing I/O at all.
2976ccd2506bSTheodore Ts'o 	 *
2977ccd2506bSTheodore Ts'o 	 * We could call write_cache_pages(), and then redirty all of
2978380cf090SWu Fengguang 	 * the pages by calling redirty_page_for_writepage() but that
2979ccd2506bSTheodore Ts'o 	 * would be ugly in the extreme.  So instead we would need to
2980ccd2506bSTheodore Ts'o 	 * replicate parts of the code in the above functions,
298125985edcSLucas De Marchi 	 * simplifying them because we wouldn't actually intend to
2982ccd2506bSTheodore Ts'o 	 * write out the pages, but rather only collect contiguous
2983ccd2506bSTheodore Ts'o 	 * logical block extents, call the multi-block allocator, and
2984ccd2506bSTheodore Ts'o 	 * then update the buffer heads with the block allocations.
2985ccd2506bSTheodore Ts'o 	 *
2986ccd2506bSTheodore Ts'o 	 * For now, though, we'll cheat by calling filemap_flush(),
2987ccd2506bSTheodore Ts'o 	 * which will map the blocks, and start the I/O, but not
2988ccd2506bSTheodore Ts'o 	 * actually wait for the I/O to complete.
2989ccd2506bSTheodore Ts'o 	 */
2990ccd2506bSTheodore Ts'o 	return filemap_flush(inode->i_mapping);
2991ccd2506bSTheodore Ts'o }
299264769240SAlex Tomas 
299364769240SAlex Tomas /*
2994ac27a0ecSDave Kleikamp  * bmap() is special.  It gets used by applications such as lilo and by
2995ac27a0ecSDave Kleikamp  * the swapper to find the on-disk block of a specific piece of data.
2996ac27a0ecSDave Kleikamp  *
2997ac27a0ecSDave Kleikamp  * Naturally, this is dangerous if the block concerned is still in the
2998617ba13bSMingming Cao  * journal.  If somebody makes a swapfile on an ext4 data-journaling
2999ac27a0ecSDave Kleikamp  * filesystem and enables swap, then they may get a nasty shock when the
3000ac27a0ecSDave Kleikamp  * data getting swapped to that swapfile suddenly gets overwritten by
3001ac27a0ecSDave Kleikamp  * the original zero's written out previously to the journal and
3002ac27a0ecSDave Kleikamp  * awaiting writeback in the kernel's buffer cache.
3003ac27a0ecSDave Kleikamp  *
3004ac27a0ecSDave Kleikamp  * So, if we see any bmap calls here on a modified, data-journaled file,
3005ac27a0ecSDave Kleikamp  * take extra steps to flush any blocks which might be in the cache.
3006ac27a0ecSDave Kleikamp  */
3007617ba13bSMingming Cao static sector_t ext4_bmap(struct address_space *mapping, sector_t block)
3008ac27a0ecSDave Kleikamp {
3009ac27a0ecSDave Kleikamp 	struct inode *inode = mapping->host;
3010ac27a0ecSDave Kleikamp 	journal_t *journal;
3011ac27a0ecSDave Kleikamp 	int err;
3012ac27a0ecSDave Kleikamp 
301346c7f254STao Ma 	/*
301446c7f254STao Ma 	 * We can get here for an inline file via the FIBMAP ioctl
301546c7f254STao Ma 	 */
301646c7f254STao Ma 	if (ext4_has_inline_data(inode))
301746c7f254STao Ma 		return 0;
301846c7f254STao Ma 
301964769240SAlex Tomas 	if (mapping_tagged(mapping, PAGECACHE_TAG_DIRTY) &&
302064769240SAlex Tomas 			test_opt(inode->i_sb, DELALLOC)) {
302164769240SAlex Tomas 		/*
302264769240SAlex Tomas 		 * With delalloc we want to sync the file
302364769240SAlex Tomas 		 * so that we can make sure we allocate
302464769240SAlex Tomas 		 * blocks for file
302564769240SAlex Tomas 		 */
302664769240SAlex Tomas 		filemap_write_and_wait(mapping);
302764769240SAlex Tomas 	}
302864769240SAlex Tomas 
302919f5fb7aSTheodore Ts'o 	if (EXT4_JOURNAL(inode) &&
303019f5fb7aSTheodore Ts'o 	    ext4_test_inode_state(inode, EXT4_STATE_JDATA)) {
3031ac27a0ecSDave Kleikamp 		/*
3032ac27a0ecSDave Kleikamp 		 * This is a REALLY heavyweight approach, but the use of
3033ac27a0ecSDave Kleikamp 		 * bmap on dirty files is expected to be extremely rare:
3034ac27a0ecSDave Kleikamp 		 * only if we run lilo or swapon on a freshly made file
3035ac27a0ecSDave Kleikamp 		 * do we expect this to happen.
3036ac27a0ecSDave Kleikamp 		 *
3037ac27a0ecSDave Kleikamp 		 * (bmap requires CAP_SYS_RAWIO so this does not
3038ac27a0ecSDave Kleikamp 		 * represent an unprivileged user DOS attack --- we'd be
3039ac27a0ecSDave Kleikamp 		 * in trouble if mortal users could trigger this path at
3040ac27a0ecSDave Kleikamp 		 * will.)
3041ac27a0ecSDave Kleikamp 		 *
3042617ba13bSMingming Cao 		 * NB. EXT4_STATE_JDATA is not set on files other than
3043ac27a0ecSDave Kleikamp 		 * regular files.  If somebody wants to bmap a directory
3044ac27a0ecSDave Kleikamp 		 * or symlink and gets confused because the buffer
3045ac27a0ecSDave Kleikamp 		 * hasn't yet been flushed to disk, they deserve
3046ac27a0ecSDave Kleikamp 		 * everything they get.
3047ac27a0ecSDave Kleikamp 		 */
3048ac27a0ecSDave Kleikamp 
304919f5fb7aSTheodore Ts'o 		ext4_clear_inode_state(inode, EXT4_STATE_JDATA);
3050617ba13bSMingming Cao 		journal = EXT4_JOURNAL(inode);
3051dab291afSMingming Cao 		jbd2_journal_lock_updates(journal);
3052dab291afSMingming Cao 		err = jbd2_journal_flush(journal);
3053dab291afSMingming Cao 		jbd2_journal_unlock_updates(journal);
3054ac27a0ecSDave Kleikamp 
3055ac27a0ecSDave Kleikamp 		if (err)
3056ac27a0ecSDave Kleikamp 			return 0;
3057ac27a0ecSDave Kleikamp 	}
3058ac27a0ecSDave Kleikamp 
3059617ba13bSMingming Cao 	return generic_block_bmap(mapping, block, ext4_get_block);
3060ac27a0ecSDave Kleikamp }
3061ac27a0ecSDave Kleikamp 
3062617ba13bSMingming Cao static int ext4_readpage(struct file *file, struct page *page)
3063ac27a0ecSDave Kleikamp {
306446c7f254STao Ma 	int ret = -EAGAIN;
306546c7f254STao Ma 	struct inode *inode = page->mapping->host;
306646c7f254STao Ma 
30670562e0baSJiaying Zhang 	trace_ext4_readpage(page);
306846c7f254STao Ma 
306946c7f254STao Ma 	if (ext4_has_inline_data(inode))
307046c7f254STao Ma 		ret = ext4_readpage_inline(inode, page);
307146c7f254STao Ma 
307246c7f254STao Ma 	if (ret == -EAGAIN)
3073f64e02feSTheodore Ts'o 		return ext4_mpage_readpages(page->mapping, NULL, page, 1);
307446c7f254STao Ma 
307546c7f254STao Ma 	return ret;
3076ac27a0ecSDave Kleikamp }
3077ac27a0ecSDave Kleikamp 
3078ac27a0ecSDave Kleikamp static int
3079617ba13bSMingming Cao ext4_readpages(struct file *file, struct address_space *mapping,
3080ac27a0ecSDave Kleikamp 		struct list_head *pages, unsigned nr_pages)
3081ac27a0ecSDave Kleikamp {
308246c7f254STao Ma 	struct inode *inode = mapping->host;
308346c7f254STao Ma 
308446c7f254STao Ma 	/* If the file has inline data, no need to do readpages. */
308546c7f254STao Ma 	if (ext4_has_inline_data(inode))
308646c7f254STao Ma 		return 0;
308746c7f254STao Ma 
3088f64e02feSTheodore Ts'o 	return ext4_mpage_readpages(mapping, pages, NULL, nr_pages);
3089ac27a0ecSDave Kleikamp }
3090ac27a0ecSDave Kleikamp 
3091d47992f8SLukas Czerner static void ext4_invalidatepage(struct page *page, unsigned int offset,
3092d47992f8SLukas Czerner 				unsigned int length)
3093ac27a0ecSDave Kleikamp {
3094ca99fdd2SLukas Czerner 	trace_ext4_invalidatepage(page, offset, length);
30950562e0baSJiaying Zhang 
30964520fb3cSJan Kara 	/* No journalling happens on data buffers when this function is used */
30974520fb3cSJan Kara 	WARN_ON(page_has_buffers(page) && buffer_jbd(page_buffers(page)));
30984520fb3cSJan Kara 
3099ca99fdd2SLukas Czerner 	block_invalidatepage(page, offset, length);
31004520fb3cSJan Kara }
31014520fb3cSJan Kara 
310253e87268SJan Kara static int __ext4_journalled_invalidatepage(struct page *page,
3103ca99fdd2SLukas Czerner 					    unsigned int offset,
3104ca99fdd2SLukas Czerner 					    unsigned int length)
31054520fb3cSJan Kara {
31064520fb3cSJan Kara 	journal_t *journal = EXT4_JOURNAL(page->mapping->host);
31074520fb3cSJan Kara 
3108ca99fdd2SLukas Czerner 	trace_ext4_journalled_invalidatepage(page, offset, length);
31094520fb3cSJan Kara 
3110744692dcSJiaying Zhang 	/*
3111ac27a0ecSDave Kleikamp 	 * If it's a full truncate we just forget about the pending dirtying
3112ac27a0ecSDave Kleikamp 	 */
3113ca99fdd2SLukas Czerner 	if (offset == 0 && length == PAGE_CACHE_SIZE)
3114ac27a0ecSDave Kleikamp 		ClearPageChecked(page);
3115ac27a0ecSDave Kleikamp 
3116ca99fdd2SLukas Czerner 	return jbd2_journal_invalidatepage(journal, page, offset, length);
311753e87268SJan Kara }
311853e87268SJan Kara 
311953e87268SJan Kara /* Wrapper for aops... */
312053e87268SJan Kara static void ext4_journalled_invalidatepage(struct page *page,
3121d47992f8SLukas Czerner 					   unsigned int offset,
3122d47992f8SLukas Czerner 					   unsigned int length)
312353e87268SJan Kara {
3124ca99fdd2SLukas Czerner 	WARN_ON(__ext4_journalled_invalidatepage(page, offset, length) < 0);
3125ac27a0ecSDave Kleikamp }
3126ac27a0ecSDave Kleikamp 
3127617ba13bSMingming Cao static int ext4_releasepage(struct page *page, gfp_t wait)
3128ac27a0ecSDave Kleikamp {
3129617ba13bSMingming Cao 	journal_t *journal = EXT4_JOURNAL(page->mapping->host);
3130ac27a0ecSDave Kleikamp 
31310562e0baSJiaying Zhang 	trace_ext4_releasepage(page);
31320562e0baSJiaying Zhang 
3133e1c36595SJan Kara 	/* Page has dirty journalled data -> cannot release */
3134e1c36595SJan Kara 	if (PageChecked(page))
3135ac27a0ecSDave Kleikamp 		return 0;
31360390131bSFrank Mayhar 	if (journal)
3137dab291afSMingming Cao 		return jbd2_journal_try_to_free_buffers(journal, page, wait);
31380390131bSFrank Mayhar 	else
31390390131bSFrank Mayhar 		return try_to_free_buffers(page);
3140ac27a0ecSDave Kleikamp }
3141ac27a0ecSDave Kleikamp 
3142ba5843f5SJan Kara #ifdef CONFIG_FS_DAX
3143ba5843f5SJan Kara int ext4_dax_mmap_get_block(struct inode *inode, sector_t iblock,
3144ed923b57SMatthew Wilcox 			    struct buffer_head *bh_result, int create)
3145ed923b57SMatthew Wilcox {
3146ba5843f5SJan Kara 	int ret, err;
3147ba5843f5SJan Kara 	int credits;
3148ba5843f5SJan Kara 	struct ext4_map_blocks map;
3149ba5843f5SJan Kara 	handle_t *handle = NULL;
3150ba5843f5SJan Kara 	int flags = 0;
3151c86d8db3SJan Kara 
3152ba5843f5SJan Kara 	ext4_debug("ext4_dax_mmap_get_block: inode %lu, create flag %d\n",
3153ed923b57SMatthew Wilcox 		   inode->i_ino, create);
3154ba5843f5SJan Kara 	map.m_lblk = iblock;
3155ba5843f5SJan Kara 	map.m_len = bh_result->b_size >> inode->i_blkbits;
3156ba5843f5SJan Kara 	credits = ext4_chunk_trans_blocks(inode, map.m_len);
3157ba5843f5SJan Kara 	if (create) {
3158ba5843f5SJan Kara 		flags |= EXT4_GET_BLOCKS_PRE_IO | EXT4_GET_BLOCKS_CREATE_ZERO;
3159ba5843f5SJan Kara 		handle = ext4_journal_start(inode, EXT4_HT_MAP_BLOCKS, credits);
3160ba5843f5SJan Kara 		if (IS_ERR(handle)) {
3161ba5843f5SJan Kara 			ret = PTR_ERR(handle);
3162ba5843f5SJan Kara 			return ret;
3163ed923b57SMatthew Wilcox 		}
3164ba5843f5SJan Kara 	}
3165ba5843f5SJan Kara 
3166ba5843f5SJan Kara 	ret = ext4_map_blocks(handle, inode, &map, flags);
3167ba5843f5SJan Kara 	if (create) {
3168ba5843f5SJan Kara 		err = ext4_journal_stop(handle);
3169ba5843f5SJan Kara 		if (ret >= 0 && err < 0)
3170ba5843f5SJan Kara 			ret = err;
3171ba5843f5SJan Kara 	}
3172ba5843f5SJan Kara 	if (ret <= 0)
3173ba5843f5SJan Kara 		goto out;
3174ba5843f5SJan Kara 	if (map.m_flags & EXT4_MAP_UNWRITTEN) {
3175ba5843f5SJan Kara 		int err2;
3176ba5843f5SJan Kara 
3177ba5843f5SJan Kara 		/*
3178ba5843f5SJan Kara 		 * We are protected by i_mmap_sem so we know block cannot go
3179ba5843f5SJan Kara 		 * away from under us even though we dropped i_data_sem.
3180ba5843f5SJan Kara 		 * Convert extent to written and write zeros there.
3181ba5843f5SJan Kara 		 *
3182ba5843f5SJan Kara 		 * Note: We may get here even when create == 0.
3183ba5843f5SJan Kara 		 */
3184ba5843f5SJan Kara 		handle = ext4_journal_start(inode, EXT4_HT_MAP_BLOCKS, credits);
3185ba5843f5SJan Kara 		if (IS_ERR(handle)) {
3186ba5843f5SJan Kara 			ret = PTR_ERR(handle);
3187ba5843f5SJan Kara 			goto out;
3188ba5843f5SJan Kara 		}
3189ba5843f5SJan Kara 
3190ba5843f5SJan Kara 		err = ext4_map_blocks(handle, inode, &map,
3191ba5843f5SJan Kara 		      EXT4_GET_BLOCKS_CONVERT | EXT4_GET_BLOCKS_CREATE_ZERO);
3192ba5843f5SJan Kara 		if (err < 0)
3193ba5843f5SJan Kara 			ret = err;
3194ba5843f5SJan Kara 		err2 = ext4_journal_stop(handle);
3195ba5843f5SJan Kara 		if (err2 < 0 && ret > 0)
3196ba5843f5SJan Kara 			ret = err2;
3197ba5843f5SJan Kara 	}
3198ba5843f5SJan Kara out:
3199ba5843f5SJan Kara 	WARN_ON_ONCE(ret == 0 && create);
3200ba5843f5SJan Kara 	if (ret > 0) {
3201ba5843f5SJan Kara 		map_bh(bh_result, inode->i_sb, map.m_pblk);
3202ba5843f5SJan Kara 		bh_result->b_state = (bh_result->b_state & ~EXT4_MAP_FLAGS) |
3203ba5843f5SJan Kara 					map.m_flags;
3204ba5843f5SJan Kara 		/*
3205ba5843f5SJan Kara 		 * At least for now we have to clear BH_New so that DAX code
3206ba5843f5SJan Kara 		 * doesn't attempt to zero blocks again in a racy way.
3207ba5843f5SJan Kara 		 */
3208ba5843f5SJan Kara 		bh_result->b_state &= ~(1 << BH_New);
3209ba5843f5SJan Kara 		bh_result->b_size = map.m_len << inode->i_blkbits;
3210ba5843f5SJan Kara 		ret = 0;
3211ba5843f5SJan Kara 	}
3212ba5843f5SJan Kara 	return ret;
3213ba5843f5SJan Kara }
3214ba5843f5SJan Kara #endif
3215ed923b57SMatthew Wilcox 
32164c0425ffSMingming Cao static void ext4_end_io_dio(struct kiocb *iocb, loff_t offset,
32177b7a8665SChristoph Hellwig 			    ssize_t size, void *private)
32184c0425ffSMingming Cao {
32194c0425ffSMingming Cao         ext4_io_end_t *io_end = iocb->private;
32204c0425ffSMingming Cao 
322197a851edSJan Kara 	/* if not async direct IO just return */
32227b7a8665SChristoph Hellwig 	if (!io_end)
322397a851edSJan Kara 		return;
32244b70df18SMingming 
32258d5d02e6SMingming Cao 	ext_debug("ext4_end_io_dio(): io_end 0x%p "
3226ace36ad4SJoe Perches 		  "for inode %lu, iocb 0x%p, offset %llu, size %zd\n",
32278d5d02e6SMingming Cao  		  iocb->private, io_end->inode->i_ino, iocb, offset,
32288d5d02e6SMingming Cao 		  size);
32298d5d02e6SMingming Cao 
3230b5a7e970STheodore Ts'o 	iocb->private = NULL;
32314c0425ffSMingming Cao 	io_end->offset = offset;
32324c0425ffSMingming Cao 	io_end->size = size;
32337b7a8665SChristoph Hellwig 	ext4_put_io_end(io_end);
32344c0425ffSMingming Cao }
3235c7064ef1SJiaying Zhang 
32364c0425ffSMingming Cao /*
32374c0425ffSMingming Cao  * For ext4 extent files, ext4 will do direct-io write to holes,
32384c0425ffSMingming Cao  * preallocated extents, and those write extend the file, no need to
32394c0425ffSMingming Cao  * fall back to buffered IO.
32404c0425ffSMingming Cao  *
3241556615dcSLukas Czerner  * For holes, we fallocate those blocks, mark them as unwritten
324269c499d1STheodore Ts'o  * If those blocks were preallocated, we mark sure they are split, but
3243556615dcSLukas Czerner  * still keep the range to write as unwritten.
32444c0425ffSMingming Cao  *
324569c499d1STheodore Ts'o  * The unwritten extents will be converted to written when DIO is completed.
32468d5d02e6SMingming Cao  * For async direct IO, since the IO may still pending when return, we
324725985edcSLucas De Marchi  * set up an end_io call back function, which will do the conversion
32488d5d02e6SMingming Cao  * when async direct IO completed.
32494c0425ffSMingming Cao  *
32504c0425ffSMingming Cao  * If the O_DIRECT write will extend the file then add this inode to the
32514c0425ffSMingming Cao  * orphan list.  So recovery will truncate it back to the original size
32524c0425ffSMingming Cao  * if the machine crashes during the write.
32534c0425ffSMingming Cao  *
32544c0425ffSMingming Cao  */
32556f673763SOmar Sandoval static ssize_t ext4_ext_direct_IO(struct kiocb *iocb, struct iov_iter *iter,
32566f673763SOmar Sandoval 				  loff_t offset)
32574c0425ffSMingming Cao {
32584c0425ffSMingming Cao 	struct file *file = iocb->ki_filp;
32594c0425ffSMingming Cao 	struct inode *inode = file->f_mapping->host;
32604c0425ffSMingming Cao 	ssize_t ret;
3261a6cbcd4aSAl Viro 	size_t count = iov_iter_count(iter);
3262729f52c6SZheng Liu 	int overwrite = 0;
32638b0f165fSAnatol Pomozov 	get_block_t *get_block_func = NULL;
32648b0f165fSAnatol Pomozov 	int dio_flags = 0;
326569c499d1STheodore Ts'o 	loff_t final_size = offset + count;
326697a851edSJan Kara 	ext4_io_end_t *io_end = NULL;
326769c499d1STheodore Ts'o 
326869c499d1STheodore Ts'o 	/* Use the old path for reads and writes beyond i_size. */
32696f673763SOmar Sandoval 	if (iov_iter_rw(iter) != WRITE || final_size > inode->i_size)
32706f673763SOmar Sandoval 		return ext4_ind_direct_IO(iocb, iter, offset);
3271729f52c6SZheng Liu 
32724bd809dbSZheng Liu 	BUG_ON(iocb->private == NULL);
32734bd809dbSZheng Liu 
3274e8340395SJan Kara 	/*
3275e8340395SJan Kara 	 * Make all waiters for direct IO properly wait also for extent
3276e8340395SJan Kara 	 * conversion. This also disallows race between truncate() and
3277e8340395SJan Kara 	 * overwrite DIO as i_dio_count needs to be incremented under i_mutex.
3278e8340395SJan Kara 	 */
32796f673763SOmar Sandoval 	if (iov_iter_rw(iter) == WRITE)
3280fe0f07d0SJens Axboe 		inode_dio_begin(inode);
3281e8340395SJan Kara 
32824bd809dbSZheng Liu 	/* If we do a overwrite dio, i_mutex locking can be released */
32834bd809dbSZheng Liu 	overwrite = *((int *)iocb->private);
32844bd809dbSZheng Liu 
32852dcba478SJan Kara 	if (overwrite)
32865955102cSAl Viro 		inode_unlock(inode);
32874bd809dbSZheng Liu 
32884c0425ffSMingming Cao 	/*
32898d5d02e6SMingming Cao 	 * We could direct write to holes and fallocate.
32908d5d02e6SMingming Cao 	 *
329169c499d1STheodore Ts'o 	 * Allocated blocks to fill the hole are marked as
3292556615dcSLukas Czerner 	 * unwritten to prevent parallel buffered read to expose
329369c499d1STheodore Ts'o 	 * the stale data before DIO complete the data IO.
32948d5d02e6SMingming Cao 	 *
329569c499d1STheodore Ts'o 	 * As to previously fallocated extents, ext4 get_block will
329669c499d1STheodore Ts'o 	 * just simply mark the buffer mapped but still keep the
3297556615dcSLukas Czerner 	 * extents unwritten.
32984c0425ffSMingming Cao 	 *
329969c499d1STheodore Ts'o 	 * For non AIO case, we will convert those unwritten extents
33008d5d02e6SMingming Cao 	 * to written after return back from blockdev_direct_IO.
33014c0425ffSMingming Cao 	 *
330269c499d1STheodore Ts'o 	 * For async DIO, the conversion needs to be deferred when the
330369c499d1STheodore Ts'o 	 * IO is completed. The ext4 end_io callback function will be
330469c499d1STheodore Ts'o 	 * called to take care of the conversion work.  Here for async
330569c499d1STheodore Ts'o 	 * case, we allocate an io_end structure to hook to the iocb.
33064c0425ffSMingming Cao 	 */
33078d5d02e6SMingming Cao 	iocb->private = NULL;
330874dae427SJan Kara 	if (overwrite) {
3309*705965bdSJan Kara 		get_block_func = ext4_dio_get_block_overwrite;
331074dae427SJan Kara 	} else {
3311f45ee3a1SDmitry Monakhov 		ext4_inode_aio_set(inode, NULL);
33128d5d02e6SMingming Cao 		if (!is_sync_kiocb(iocb)) {
331397a851edSJan Kara 			io_end = ext4_init_io_end(inode, GFP_NOFS);
33144bd809dbSZheng Liu 			if (!io_end) {
33154bd809dbSZheng Liu 				ret = -ENOMEM;
33164bd809dbSZheng Liu 				goto retake_lock;
33174bd809dbSZheng Liu 			}
331897a851edSJan Kara 			/*
331974dae427SJan Kara 			 * Grab reference for DIO. Will be dropped in
332074dae427SJan Kara 			 * ext4_end_io_dio()
332197a851edSJan Kara 			 */
332297a851edSJan Kara 			iocb->private = ext4_get_io_end(io_end);
33238d5d02e6SMingming Cao 			/*
332469c499d1STheodore Ts'o 			 * we save the io structure for current async direct
332569c499d1STheodore Ts'o 			 * IO, so that later ext4_map_blocks() could flag the
332669c499d1STheodore Ts'o 			 * io structure whether there is a unwritten extents
332769c499d1STheodore Ts'o 			 * needs to be converted when IO is completed.
33288d5d02e6SMingming Cao 			 */
3329f45ee3a1SDmitry Monakhov 			ext4_inode_aio_set(inode, io_end);
33308d5d02e6SMingming Cao 		}
3331*705965bdSJan Kara 		get_block_func = ext4_dio_get_block_unwritten;
33328b0f165fSAnatol Pomozov 		dio_flags = DIO_LOCKING;
33338b0f165fSAnatol Pomozov 	}
33342058f83aSMichael Halcrow #ifdef CONFIG_EXT4_FS_ENCRYPTION
33352058f83aSMichael Halcrow 	BUG_ON(ext4_encrypted_inode(inode) && S_ISREG(inode->i_mode));
33362058f83aSMichael Halcrow #endif
3337923ae0ffSRoss Zwisler 	if (IS_DAX(inode))
3338a95cd631SOmar Sandoval 		ret = dax_do_io(iocb, inode, iter, offset, get_block_func,
3339923ae0ffSRoss Zwisler 				ext4_end_io_dio, dio_flags);
3340923ae0ffSRoss Zwisler 	else
334117f8c842SOmar Sandoval 		ret = __blockdev_direct_IO(iocb, inode,
3342923ae0ffSRoss Zwisler 					   inode->i_sb->s_bdev, iter, offset,
33438b0f165fSAnatol Pomozov 					   get_block_func,
3344923ae0ffSRoss Zwisler 					   ext4_end_io_dio, NULL, dio_flags);
33458b0f165fSAnatol Pomozov 
33464eec708dSJan Kara 	/*
334797a851edSJan Kara 	 * Put our reference to io_end. This can free the io_end structure e.g.
334897a851edSJan Kara 	 * in sync IO case or in case of error. It can even perform extent
334997a851edSJan Kara 	 * conversion if all bios we submitted finished before we got here.
335097a851edSJan Kara 	 * Note that in that case iocb->private can be already set to NULL
335197a851edSJan Kara 	 * here.
33524eec708dSJan Kara 	 */
335397a851edSJan Kara 	if (io_end) {
335497a851edSJan Kara 		ext4_inode_aio_set(inode, NULL);
335597a851edSJan Kara 		ext4_put_io_end(io_end);
335697a851edSJan Kara 		/*
335797a851edSJan Kara 		 * When no IO was submitted ext4_end_io_dio() was not
335897a851edSJan Kara 		 * called so we have to put iocb's reference.
335997a851edSJan Kara 		 */
336097a851edSJan Kara 		if (ret <= 0 && ret != -EIOCBQUEUED && iocb->private) {
336197a851edSJan Kara 			WARN_ON(iocb->private != io_end);
336297a851edSJan Kara 			WARN_ON(io_end->flag & EXT4_IO_END_UNWRITTEN);
336397a851edSJan Kara 			ext4_put_io_end(io_end);
33648d5d02e6SMingming Cao 			iocb->private = NULL;
336597a851edSJan Kara 		}
336697a851edSJan Kara 	}
336797a851edSJan Kara 	if (ret > 0 && !overwrite && ext4_test_inode_state(inode,
33685f524950SMingming 						EXT4_STATE_DIO_UNWRITTEN)) {
3369109f5565SMingming 		int err;
33708d5d02e6SMingming Cao 		/*
33718d5d02e6SMingming Cao 		 * for non AIO case, since the IO is already
337225985edcSLucas De Marchi 		 * completed, we could do the conversion right here
33738d5d02e6SMingming Cao 		 */
33746b523df4SJan Kara 		err = ext4_convert_unwritten_extents(NULL, inode,
33758d5d02e6SMingming Cao 						     offset, ret);
3376109f5565SMingming 		if (err < 0)
3377109f5565SMingming 			ret = err;
337819f5fb7aSTheodore Ts'o 		ext4_clear_inode_state(inode, EXT4_STATE_DIO_UNWRITTEN);
3379109f5565SMingming 	}
33804bd809dbSZheng Liu 
33814bd809dbSZheng Liu retake_lock:
33826f673763SOmar Sandoval 	if (iov_iter_rw(iter) == WRITE)
3383fe0f07d0SJens Axboe 		inode_dio_end(inode);
33844bd809dbSZheng Liu 	/* take i_mutex locking again if we do a ovewrite dio */
33852dcba478SJan Kara 	if (overwrite)
33865955102cSAl Viro 		inode_lock(inode);
33874bd809dbSZheng Liu 
33884c0425ffSMingming Cao 	return ret;
33894c0425ffSMingming Cao }
33908d5d02e6SMingming Cao 
339122c6186eSOmar Sandoval static ssize_t ext4_direct_IO(struct kiocb *iocb, struct iov_iter *iter,
339222c6186eSOmar Sandoval 			      loff_t offset)
33934c0425ffSMingming Cao {
33944c0425ffSMingming Cao 	struct file *file = iocb->ki_filp;
33954c0425ffSMingming Cao 	struct inode *inode = file->f_mapping->host;
3396a6cbcd4aSAl Viro 	size_t count = iov_iter_count(iter);
33970562e0baSJiaying Zhang 	ssize_t ret;
33984c0425ffSMingming Cao 
33992058f83aSMichael Halcrow #ifdef CONFIG_EXT4_FS_ENCRYPTION
34002058f83aSMichael Halcrow 	if (ext4_encrypted_inode(inode) && S_ISREG(inode->i_mode))
34012058f83aSMichael Halcrow 		return 0;
34022058f83aSMichael Halcrow #endif
34032058f83aSMichael Halcrow 
340484ebd795STheodore Ts'o 	/*
340584ebd795STheodore Ts'o 	 * If we are doing data journalling we don't support O_DIRECT
340684ebd795STheodore Ts'o 	 */
340784ebd795STheodore Ts'o 	if (ext4_should_journal_data(inode))
340884ebd795STheodore Ts'o 		return 0;
340984ebd795STheodore Ts'o 
341046c7f254STao Ma 	/* Let buffer I/O handle the inline data case. */
341146c7f254STao Ma 	if (ext4_has_inline_data(inode))
341246c7f254STao Ma 		return 0;
341346c7f254STao Ma 
34146f673763SOmar Sandoval 	trace_ext4_direct_IO_enter(inode, offset, count, iov_iter_rw(iter));
341512e9b892SDmitry Monakhov 	if (ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS))
34166f673763SOmar Sandoval 		ret = ext4_ext_direct_IO(iocb, iter, offset);
34170562e0baSJiaying Zhang 	else
34186f673763SOmar Sandoval 		ret = ext4_ind_direct_IO(iocb, iter, offset);
34196f673763SOmar Sandoval 	trace_ext4_direct_IO_exit(inode, offset, count, iov_iter_rw(iter), ret);
34200562e0baSJiaying Zhang 	return ret;
34214c0425ffSMingming Cao }
34224c0425ffSMingming Cao 
3423ac27a0ecSDave Kleikamp /*
3424617ba13bSMingming Cao  * Pages can be marked dirty completely asynchronously from ext4's journalling
3425ac27a0ecSDave Kleikamp  * activity.  By filemap_sync_pte(), try_to_unmap_one(), etc.  We cannot do
3426ac27a0ecSDave Kleikamp  * much here because ->set_page_dirty is called under VFS locks.  The page is
3427ac27a0ecSDave Kleikamp  * not necessarily locked.
3428ac27a0ecSDave Kleikamp  *
3429ac27a0ecSDave Kleikamp  * We cannot just dirty the page and leave attached buffers clean, because the
3430ac27a0ecSDave Kleikamp  * buffers' dirty state is "definitive".  We cannot just set the buffers dirty
3431ac27a0ecSDave Kleikamp  * or jbddirty because all the journalling code will explode.
3432ac27a0ecSDave Kleikamp  *
3433ac27a0ecSDave Kleikamp  * So what we do is to mark the page "pending dirty" and next time writepage
3434ac27a0ecSDave Kleikamp  * is called, propagate that into the buffers appropriately.
3435ac27a0ecSDave Kleikamp  */
3436617ba13bSMingming Cao static int ext4_journalled_set_page_dirty(struct page *page)
3437ac27a0ecSDave Kleikamp {
3438ac27a0ecSDave Kleikamp 	SetPageChecked(page);
3439ac27a0ecSDave Kleikamp 	return __set_page_dirty_nobuffers(page);
3440ac27a0ecSDave Kleikamp }
3441ac27a0ecSDave Kleikamp 
344274d553aaSTheodore Ts'o static const struct address_space_operations ext4_aops = {
3443617ba13bSMingming Cao 	.readpage		= ext4_readpage,
3444617ba13bSMingming Cao 	.readpages		= ext4_readpages,
344543ce1d23SAneesh Kumar K.V 	.writepage		= ext4_writepage,
344620970ba6STheodore Ts'o 	.writepages		= ext4_writepages,
3447bfc1af65SNick Piggin 	.write_begin		= ext4_write_begin,
344874d553aaSTheodore Ts'o 	.write_end		= ext4_write_end,
3449617ba13bSMingming Cao 	.bmap			= ext4_bmap,
3450617ba13bSMingming Cao 	.invalidatepage		= ext4_invalidatepage,
3451617ba13bSMingming Cao 	.releasepage		= ext4_releasepage,
3452617ba13bSMingming Cao 	.direct_IO		= ext4_direct_IO,
3453ac27a0ecSDave Kleikamp 	.migratepage		= buffer_migrate_page,
34548ab22b9aSHisashi Hifumi 	.is_partially_uptodate  = block_is_partially_uptodate,
3455aa261f54SAndi Kleen 	.error_remove_page	= generic_error_remove_page,
3456ac27a0ecSDave Kleikamp };
3457ac27a0ecSDave Kleikamp 
3458617ba13bSMingming Cao static const struct address_space_operations ext4_journalled_aops = {
3459617ba13bSMingming Cao 	.readpage		= ext4_readpage,
3460617ba13bSMingming Cao 	.readpages		= ext4_readpages,
346143ce1d23SAneesh Kumar K.V 	.writepage		= ext4_writepage,
346220970ba6STheodore Ts'o 	.writepages		= ext4_writepages,
3463bfc1af65SNick Piggin 	.write_begin		= ext4_write_begin,
3464bfc1af65SNick Piggin 	.write_end		= ext4_journalled_write_end,
3465617ba13bSMingming Cao 	.set_page_dirty		= ext4_journalled_set_page_dirty,
3466617ba13bSMingming Cao 	.bmap			= ext4_bmap,
34674520fb3cSJan Kara 	.invalidatepage		= ext4_journalled_invalidatepage,
3468617ba13bSMingming Cao 	.releasepage		= ext4_releasepage,
346984ebd795STheodore Ts'o 	.direct_IO		= ext4_direct_IO,
34708ab22b9aSHisashi Hifumi 	.is_partially_uptodate  = block_is_partially_uptodate,
3471aa261f54SAndi Kleen 	.error_remove_page	= generic_error_remove_page,
3472ac27a0ecSDave Kleikamp };
3473ac27a0ecSDave Kleikamp 
347464769240SAlex Tomas static const struct address_space_operations ext4_da_aops = {
347564769240SAlex Tomas 	.readpage		= ext4_readpage,
347664769240SAlex Tomas 	.readpages		= ext4_readpages,
347743ce1d23SAneesh Kumar K.V 	.writepage		= ext4_writepage,
347820970ba6STheodore Ts'o 	.writepages		= ext4_writepages,
347964769240SAlex Tomas 	.write_begin		= ext4_da_write_begin,
348064769240SAlex Tomas 	.write_end		= ext4_da_write_end,
348164769240SAlex Tomas 	.bmap			= ext4_bmap,
348264769240SAlex Tomas 	.invalidatepage		= ext4_da_invalidatepage,
348364769240SAlex Tomas 	.releasepage		= ext4_releasepage,
348464769240SAlex Tomas 	.direct_IO		= ext4_direct_IO,
348564769240SAlex Tomas 	.migratepage		= buffer_migrate_page,
34868ab22b9aSHisashi Hifumi 	.is_partially_uptodate  = block_is_partially_uptodate,
3487aa261f54SAndi Kleen 	.error_remove_page	= generic_error_remove_page,
348864769240SAlex Tomas };
348964769240SAlex Tomas 
3490617ba13bSMingming Cao void ext4_set_aops(struct inode *inode)
3491ac27a0ecSDave Kleikamp {
34923d2b1582SLukas Czerner 	switch (ext4_inode_journal_mode(inode)) {
34933d2b1582SLukas Czerner 	case EXT4_INODE_ORDERED_DATA_MODE:
349474d553aaSTheodore Ts'o 		ext4_set_inode_state(inode, EXT4_STATE_ORDERED_MODE);
34953d2b1582SLukas Czerner 		break;
34963d2b1582SLukas Czerner 	case EXT4_INODE_WRITEBACK_DATA_MODE:
349774d553aaSTheodore Ts'o 		ext4_clear_inode_state(inode, EXT4_STATE_ORDERED_MODE);
34983d2b1582SLukas Czerner 		break;
34993d2b1582SLukas Czerner 	case EXT4_INODE_JOURNAL_DATA_MODE:
3500617ba13bSMingming Cao 		inode->i_mapping->a_ops = &ext4_journalled_aops;
350174d553aaSTheodore Ts'o 		return;
35023d2b1582SLukas Czerner 	default:
35033d2b1582SLukas Czerner 		BUG();
35043d2b1582SLukas Czerner 	}
350574d553aaSTheodore Ts'o 	if (test_opt(inode->i_sb, DELALLOC))
350674d553aaSTheodore Ts'o 		inode->i_mapping->a_ops = &ext4_da_aops;
350774d553aaSTheodore Ts'o 	else
350874d553aaSTheodore Ts'o 		inode->i_mapping->a_ops = &ext4_aops;
3509ac27a0ecSDave Kleikamp }
3510ac27a0ecSDave Kleikamp 
3511923ae0ffSRoss Zwisler static int __ext4_block_zero_page_range(handle_t *handle,
3512d863dc36SLukas Czerner 		struct address_space *mapping, loff_t from, loff_t length)
3513d863dc36SLukas Czerner {
3514d863dc36SLukas Czerner 	ext4_fsblk_t index = from >> PAGE_CACHE_SHIFT;
3515d863dc36SLukas Czerner 	unsigned offset = from & (PAGE_CACHE_SIZE-1);
3516923ae0ffSRoss Zwisler 	unsigned blocksize, pos;
3517d863dc36SLukas Czerner 	ext4_lblk_t iblock;
3518d863dc36SLukas Czerner 	struct inode *inode = mapping->host;
3519d863dc36SLukas Czerner 	struct buffer_head *bh;
3520d863dc36SLukas Czerner 	struct page *page;
3521d863dc36SLukas Czerner 	int err = 0;
3522d863dc36SLukas Czerner 
3523d863dc36SLukas Czerner 	page = find_or_create_page(mapping, from >> PAGE_CACHE_SHIFT,
3524c62d2555SMichal Hocko 				   mapping_gfp_constraint(mapping, ~__GFP_FS));
3525d863dc36SLukas Czerner 	if (!page)
3526d863dc36SLukas Czerner 		return -ENOMEM;
3527d863dc36SLukas Czerner 
3528d863dc36SLukas Czerner 	blocksize = inode->i_sb->s_blocksize;
3529d863dc36SLukas Czerner 
3530d863dc36SLukas Czerner 	iblock = index << (PAGE_CACHE_SHIFT - inode->i_sb->s_blocksize_bits);
3531d863dc36SLukas Czerner 
3532d863dc36SLukas Czerner 	if (!page_has_buffers(page))
3533d863dc36SLukas Czerner 		create_empty_buffers(page, blocksize, 0);
3534d863dc36SLukas Czerner 
3535d863dc36SLukas Czerner 	/* Find the buffer that contains "offset" */
3536d863dc36SLukas Czerner 	bh = page_buffers(page);
3537d863dc36SLukas Czerner 	pos = blocksize;
3538d863dc36SLukas Czerner 	while (offset >= pos) {
3539d863dc36SLukas Czerner 		bh = bh->b_this_page;
3540d863dc36SLukas Czerner 		iblock++;
3541d863dc36SLukas Czerner 		pos += blocksize;
3542d863dc36SLukas Czerner 	}
3543d863dc36SLukas Czerner 	if (buffer_freed(bh)) {
3544d863dc36SLukas Czerner 		BUFFER_TRACE(bh, "freed: skip");
3545d863dc36SLukas Czerner 		goto unlock;
3546d863dc36SLukas Czerner 	}
3547d863dc36SLukas Czerner 	if (!buffer_mapped(bh)) {
3548d863dc36SLukas Czerner 		BUFFER_TRACE(bh, "unmapped");
3549d863dc36SLukas Czerner 		ext4_get_block(inode, iblock, bh, 0);
3550d863dc36SLukas Czerner 		/* unmapped? It's a hole - nothing to do */
3551d863dc36SLukas Czerner 		if (!buffer_mapped(bh)) {
3552d863dc36SLukas Czerner 			BUFFER_TRACE(bh, "still unmapped");
3553d863dc36SLukas Czerner 			goto unlock;
3554d863dc36SLukas Czerner 		}
3555d863dc36SLukas Czerner 	}
3556d863dc36SLukas Czerner 
3557d863dc36SLukas Czerner 	/* Ok, it's mapped. Make sure it's up-to-date */
3558d863dc36SLukas Czerner 	if (PageUptodate(page))
3559d863dc36SLukas Czerner 		set_buffer_uptodate(bh);
3560d863dc36SLukas Czerner 
3561d863dc36SLukas Czerner 	if (!buffer_uptodate(bh)) {
3562d863dc36SLukas Czerner 		err = -EIO;
3563d863dc36SLukas Czerner 		ll_rw_block(READ, 1, &bh);
3564d863dc36SLukas Czerner 		wait_on_buffer(bh);
3565d863dc36SLukas Czerner 		/* Uhhuh. Read error. Complain and punt. */
3566d863dc36SLukas Czerner 		if (!buffer_uptodate(bh))
3567d863dc36SLukas Czerner 			goto unlock;
3568c9c7429cSMichael Halcrow 		if (S_ISREG(inode->i_mode) &&
3569c9c7429cSMichael Halcrow 		    ext4_encrypted_inode(inode)) {
3570c9c7429cSMichael Halcrow 			/* We expect the key to be set. */
3571c9c7429cSMichael Halcrow 			BUG_ON(!ext4_has_encryption_key(inode));
3572c9c7429cSMichael Halcrow 			BUG_ON(blocksize != PAGE_CACHE_SIZE);
35733684de8cSTheodore Ts'o 			WARN_ON_ONCE(ext4_decrypt(page));
3574c9c7429cSMichael Halcrow 		}
3575d863dc36SLukas Czerner 	}
3576d863dc36SLukas Czerner 	if (ext4_should_journal_data(inode)) {
3577d863dc36SLukas Czerner 		BUFFER_TRACE(bh, "get write access");
3578d863dc36SLukas Czerner 		err = ext4_journal_get_write_access(handle, bh);
3579d863dc36SLukas Czerner 		if (err)
3580d863dc36SLukas Czerner 			goto unlock;
3581d863dc36SLukas Czerner 	}
3582d863dc36SLukas Czerner 	zero_user(page, offset, length);
3583d863dc36SLukas Czerner 	BUFFER_TRACE(bh, "zeroed end of block");
3584d863dc36SLukas Czerner 
3585d863dc36SLukas Czerner 	if (ext4_should_journal_data(inode)) {
3586d863dc36SLukas Czerner 		err = ext4_handle_dirty_metadata(handle, inode, bh);
35870713ed0cSLukas Czerner 	} else {
3588353eefd3Sjon ernst 		err = 0;
3589d863dc36SLukas Czerner 		mark_buffer_dirty(bh);
35900713ed0cSLukas Czerner 		if (ext4_test_inode_state(inode, EXT4_STATE_ORDERED_MODE))
35910713ed0cSLukas Czerner 			err = ext4_jbd2_file_inode(handle, inode);
35920713ed0cSLukas Czerner 	}
3593d863dc36SLukas Czerner 
3594d863dc36SLukas Czerner unlock:
3595d863dc36SLukas Czerner 	unlock_page(page);
3596d863dc36SLukas Czerner 	page_cache_release(page);
3597d863dc36SLukas Czerner 	return err;
3598d863dc36SLukas Czerner }
3599d863dc36SLukas Czerner 
360094350ab5SMatthew Wilcox /*
3601923ae0ffSRoss Zwisler  * ext4_block_zero_page_range() zeros out a mapping of length 'length'
3602923ae0ffSRoss Zwisler  * starting from file offset 'from'.  The range to be zero'd must
3603923ae0ffSRoss Zwisler  * be contained with in one block.  If the specified range exceeds
3604923ae0ffSRoss Zwisler  * the end of the block it will be shortened to end of the block
3605923ae0ffSRoss Zwisler  * that cooresponds to 'from'
3606923ae0ffSRoss Zwisler  */
3607923ae0ffSRoss Zwisler static int ext4_block_zero_page_range(handle_t *handle,
3608923ae0ffSRoss Zwisler 		struct address_space *mapping, loff_t from, loff_t length)
3609923ae0ffSRoss Zwisler {
3610923ae0ffSRoss Zwisler 	struct inode *inode = mapping->host;
3611923ae0ffSRoss Zwisler 	unsigned offset = from & (PAGE_CACHE_SIZE-1);
3612923ae0ffSRoss Zwisler 	unsigned blocksize = inode->i_sb->s_blocksize;
3613923ae0ffSRoss Zwisler 	unsigned max = blocksize - (offset & (blocksize - 1));
3614923ae0ffSRoss Zwisler 
3615923ae0ffSRoss Zwisler 	/*
3616923ae0ffSRoss Zwisler 	 * correct length if it does not fall between
3617923ae0ffSRoss Zwisler 	 * 'from' and the end of the block
3618923ae0ffSRoss Zwisler 	 */
3619923ae0ffSRoss Zwisler 	if (length > max || length < 0)
3620923ae0ffSRoss Zwisler 		length = max;
3621923ae0ffSRoss Zwisler 
3622923ae0ffSRoss Zwisler 	if (IS_DAX(inode))
3623923ae0ffSRoss Zwisler 		return dax_zero_page_range(inode, from, length, ext4_get_block);
3624923ae0ffSRoss Zwisler 	return __ext4_block_zero_page_range(handle, mapping, from, length);
3625923ae0ffSRoss Zwisler }
3626923ae0ffSRoss Zwisler 
3627923ae0ffSRoss Zwisler /*
362894350ab5SMatthew Wilcox  * ext4_block_truncate_page() zeroes out a mapping from file offset `from'
362994350ab5SMatthew Wilcox  * up to the end of the block which corresponds to `from'.
363094350ab5SMatthew Wilcox  * This required during truncate. We need to physically zero the tail end
363194350ab5SMatthew Wilcox  * of that block so it doesn't yield old data if the file is later grown.
363294350ab5SMatthew Wilcox  */
3633c197855eSStephen Hemminger static int ext4_block_truncate_page(handle_t *handle,
363494350ab5SMatthew Wilcox 		struct address_space *mapping, loff_t from)
363594350ab5SMatthew Wilcox {
363694350ab5SMatthew Wilcox 	unsigned offset = from & (PAGE_CACHE_SIZE-1);
363794350ab5SMatthew Wilcox 	unsigned length;
363894350ab5SMatthew Wilcox 	unsigned blocksize;
363994350ab5SMatthew Wilcox 	struct inode *inode = mapping->host;
364094350ab5SMatthew Wilcox 
364194350ab5SMatthew Wilcox 	blocksize = inode->i_sb->s_blocksize;
364294350ab5SMatthew Wilcox 	length = blocksize - (offset & (blocksize - 1));
364394350ab5SMatthew Wilcox 
364494350ab5SMatthew Wilcox 	return ext4_block_zero_page_range(handle, mapping, from, length);
364594350ab5SMatthew Wilcox }
364694350ab5SMatthew Wilcox 
3647a87dd18cSLukas Czerner int ext4_zero_partial_blocks(handle_t *handle, struct inode *inode,
3648a87dd18cSLukas Czerner 			     loff_t lstart, loff_t length)
3649a87dd18cSLukas Czerner {
3650a87dd18cSLukas Czerner 	struct super_block *sb = inode->i_sb;
3651a87dd18cSLukas Czerner 	struct address_space *mapping = inode->i_mapping;
3652e1be3a92SLukas Czerner 	unsigned partial_start, partial_end;
3653a87dd18cSLukas Czerner 	ext4_fsblk_t start, end;
3654a87dd18cSLukas Czerner 	loff_t byte_end = (lstart + length - 1);
3655a87dd18cSLukas Czerner 	int err = 0;
3656a87dd18cSLukas Czerner 
3657e1be3a92SLukas Czerner 	partial_start = lstart & (sb->s_blocksize - 1);
3658e1be3a92SLukas Czerner 	partial_end = byte_end & (sb->s_blocksize - 1);
3659e1be3a92SLukas Czerner 
3660a87dd18cSLukas Czerner 	start = lstart >> sb->s_blocksize_bits;
3661a87dd18cSLukas Czerner 	end = byte_end >> sb->s_blocksize_bits;
3662a87dd18cSLukas Czerner 
3663a87dd18cSLukas Czerner 	/* Handle partial zero within the single block */
3664e1be3a92SLukas Czerner 	if (start == end &&
3665e1be3a92SLukas Czerner 	    (partial_start || (partial_end != sb->s_blocksize - 1))) {
3666a87dd18cSLukas Czerner 		err = ext4_block_zero_page_range(handle, mapping,
3667a87dd18cSLukas Czerner 						 lstart, length);
3668a87dd18cSLukas Czerner 		return err;
3669a87dd18cSLukas Czerner 	}
3670a87dd18cSLukas Czerner 	/* Handle partial zero out on the start of the range */
3671e1be3a92SLukas Czerner 	if (partial_start) {
3672a87dd18cSLukas Czerner 		err = ext4_block_zero_page_range(handle, mapping,
3673a87dd18cSLukas Czerner 						 lstart, sb->s_blocksize);
3674a87dd18cSLukas Czerner 		if (err)
3675a87dd18cSLukas Czerner 			return err;
3676a87dd18cSLukas Czerner 	}
3677a87dd18cSLukas Czerner 	/* Handle partial zero out on the end of the range */
3678e1be3a92SLukas Czerner 	if (partial_end != sb->s_blocksize - 1)
3679a87dd18cSLukas Czerner 		err = ext4_block_zero_page_range(handle, mapping,
3680e1be3a92SLukas Czerner 						 byte_end - partial_end,
3681e1be3a92SLukas Czerner 						 partial_end + 1);
3682a87dd18cSLukas Czerner 	return err;
3683a87dd18cSLukas Czerner }
3684a87dd18cSLukas Czerner 
368591ef4cafSDuane Griffin int ext4_can_truncate(struct inode *inode)
368691ef4cafSDuane Griffin {
368791ef4cafSDuane Griffin 	if (S_ISREG(inode->i_mode))
368891ef4cafSDuane Griffin 		return 1;
368991ef4cafSDuane Griffin 	if (S_ISDIR(inode->i_mode))
369091ef4cafSDuane Griffin 		return 1;
369191ef4cafSDuane Griffin 	if (S_ISLNK(inode->i_mode))
369291ef4cafSDuane Griffin 		return !ext4_inode_is_fast_symlink(inode);
369391ef4cafSDuane Griffin 	return 0;
369491ef4cafSDuane Griffin }
369591ef4cafSDuane Griffin 
3696ac27a0ecSDave Kleikamp /*
369701127848SJan Kara  * We have to make sure i_disksize gets properly updated before we truncate
369801127848SJan Kara  * page cache due to hole punching or zero range. Otherwise i_disksize update
369901127848SJan Kara  * can get lost as it may have been postponed to submission of writeback but
370001127848SJan Kara  * that will never happen after we truncate page cache.
370101127848SJan Kara  */
370201127848SJan Kara int ext4_update_disksize_before_punch(struct inode *inode, loff_t offset,
370301127848SJan Kara 				      loff_t len)
370401127848SJan Kara {
370501127848SJan Kara 	handle_t *handle;
370601127848SJan Kara 	loff_t size = i_size_read(inode);
370701127848SJan Kara 
37085955102cSAl Viro 	WARN_ON(!inode_is_locked(inode));
370901127848SJan Kara 	if (offset > size || offset + len < size)
371001127848SJan Kara 		return 0;
371101127848SJan Kara 
371201127848SJan Kara 	if (EXT4_I(inode)->i_disksize >= size)
371301127848SJan Kara 		return 0;
371401127848SJan Kara 
371501127848SJan Kara 	handle = ext4_journal_start(inode, EXT4_HT_MISC, 1);
371601127848SJan Kara 	if (IS_ERR(handle))
371701127848SJan Kara 		return PTR_ERR(handle);
371801127848SJan Kara 	ext4_update_i_disksize(inode, size);
371901127848SJan Kara 	ext4_mark_inode_dirty(handle, inode);
372001127848SJan Kara 	ext4_journal_stop(handle);
372101127848SJan Kara 
372201127848SJan Kara 	return 0;
372301127848SJan Kara }
372401127848SJan Kara 
372501127848SJan Kara /*
3726a4bb6b64SAllison Henderson  * ext4_punch_hole: punches a hole in a file by releaseing the blocks
3727a4bb6b64SAllison Henderson  * associated with the given offset and length
3728a4bb6b64SAllison Henderson  *
3729a4bb6b64SAllison Henderson  * @inode:  File inode
3730a4bb6b64SAllison Henderson  * @offset: The offset where the hole will begin
3731a4bb6b64SAllison Henderson  * @len:    The length of the hole
3732a4bb6b64SAllison Henderson  *
37334907cb7bSAnatol Pomozov  * Returns: 0 on success or negative on failure
3734a4bb6b64SAllison Henderson  */
3735a4bb6b64SAllison Henderson 
3736aeb2817aSAshish Sangwan int ext4_punch_hole(struct inode *inode, loff_t offset, loff_t length)
3737a4bb6b64SAllison Henderson {
373826a4c0c6STheodore Ts'o 	struct super_block *sb = inode->i_sb;
373926a4c0c6STheodore Ts'o 	ext4_lblk_t first_block, stop_block;
374026a4c0c6STheodore Ts'o 	struct address_space *mapping = inode->i_mapping;
3741a87dd18cSLukas Czerner 	loff_t first_block_offset, last_block_offset;
374226a4c0c6STheodore Ts'o 	handle_t *handle;
374326a4c0c6STheodore Ts'o 	unsigned int credits;
374426a4c0c6STheodore Ts'o 	int ret = 0;
374526a4c0c6STheodore Ts'o 
3746a4bb6b64SAllison Henderson 	if (!S_ISREG(inode->i_mode))
374773355192SAllison Henderson 		return -EOPNOTSUPP;
3748a4bb6b64SAllison Henderson 
3749b8a86845SLukas Czerner 	trace_ext4_punch_hole(inode, offset, length, 0);
3750aaddea81SZheng Liu 
375126a4c0c6STheodore Ts'o 	/*
375226a4c0c6STheodore Ts'o 	 * Write out all dirty pages to avoid race conditions
375326a4c0c6STheodore Ts'o 	 * Then release them.
375426a4c0c6STheodore Ts'o 	 */
375526a4c0c6STheodore Ts'o 	if (mapping->nrpages && mapping_tagged(mapping, PAGECACHE_TAG_DIRTY)) {
375626a4c0c6STheodore Ts'o 		ret = filemap_write_and_wait_range(mapping, offset,
375726a4c0c6STheodore Ts'o 						   offset + length - 1);
375826a4c0c6STheodore Ts'o 		if (ret)
375926a4c0c6STheodore Ts'o 			return ret;
376026a4c0c6STheodore Ts'o 	}
376126a4c0c6STheodore Ts'o 
37625955102cSAl Viro 	inode_lock(inode);
37639ef06cecSLukas Czerner 
376426a4c0c6STheodore Ts'o 	/* No need to punch hole beyond i_size */
376526a4c0c6STheodore Ts'o 	if (offset >= inode->i_size)
376626a4c0c6STheodore Ts'o 		goto out_mutex;
376726a4c0c6STheodore Ts'o 
376826a4c0c6STheodore Ts'o 	/*
376926a4c0c6STheodore Ts'o 	 * If the hole extends beyond i_size, set the hole
377026a4c0c6STheodore Ts'o 	 * to end after the page that contains i_size
377126a4c0c6STheodore Ts'o 	 */
377226a4c0c6STheodore Ts'o 	if (offset + length > inode->i_size) {
377326a4c0c6STheodore Ts'o 		length = inode->i_size +
377426a4c0c6STheodore Ts'o 		   PAGE_CACHE_SIZE - (inode->i_size & (PAGE_CACHE_SIZE - 1)) -
377526a4c0c6STheodore Ts'o 		   offset;
377626a4c0c6STheodore Ts'o 	}
377726a4c0c6STheodore Ts'o 
3778a361293fSJan Kara 	if (offset & (sb->s_blocksize - 1) ||
3779a361293fSJan Kara 	    (offset + length) & (sb->s_blocksize - 1)) {
3780a361293fSJan Kara 		/*
3781a361293fSJan Kara 		 * Attach jinode to inode for jbd2 if we do any zeroing of
3782a361293fSJan Kara 		 * partial block
3783a361293fSJan Kara 		 */
3784a361293fSJan Kara 		ret = ext4_inode_attach_jinode(inode);
3785a361293fSJan Kara 		if (ret < 0)
3786a361293fSJan Kara 			goto out_mutex;
3787a361293fSJan Kara 
3788a361293fSJan Kara 	}
3789a361293fSJan Kara 
3790ea3d7209SJan Kara 	/* Wait all existing dio workers, newcomers will block on i_mutex */
3791ea3d7209SJan Kara 	ext4_inode_block_unlocked_dio(inode);
3792ea3d7209SJan Kara 	inode_dio_wait(inode);
3793ea3d7209SJan Kara 
3794ea3d7209SJan Kara 	/*
3795ea3d7209SJan Kara 	 * Prevent page faults from reinstantiating pages we have released from
3796ea3d7209SJan Kara 	 * page cache.
3797ea3d7209SJan Kara 	 */
3798ea3d7209SJan Kara 	down_write(&EXT4_I(inode)->i_mmap_sem);
3799a87dd18cSLukas Czerner 	first_block_offset = round_up(offset, sb->s_blocksize);
3800a87dd18cSLukas Czerner 	last_block_offset = round_down((offset + length), sb->s_blocksize) - 1;
380126a4c0c6STheodore Ts'o 
3802a87dd18cSLukas Czerner 	/* Now release the pages and zero block aligned part of pages*/
380301127848SJan Kara 	if (last_block_offset > first_block_offset) {
380401127848SJan Kara 		ret = ext4_update_disksize_before_punch(inode, offset, length);
380501127848SJan Kara 		if (ret)
380601127848SJan Kara 			goto out_dio;
3807a87dd18cSLukas Czerner 		truncate_pagecache_range(inode, first_block_offset,
3808a87dd18cSLukas Czerner 					 last_block_offset);
380901127848SJan Kara 	}
381026a4c0c6STheodore Ts'o 
381126a4c0c6STheodore Ts'o 	if (ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS))
381226a4c0c6STheodore Ts'o 		credits = ext4_writepage_trans_blocks(inode);
381326a4c0c6STheodore Ts'o 	else
381426a4c0c6STheodore Ts'o 		credits = ext4_blocks_for_truncate(inode);
381526a4c0c6STheodore Ts'o 	handle = ext4_journal_start(inode, EXT4_HT_TRUNCATE, credits);
381626a4c0c6STheodore Ts'o 	if (IS_ERR(handle)) {
381726a4c0c6STheodore Ts'o 		ret = PTR_ERR(handle);
381826a4c0c6STheodore Ts'o 		ext4_std_error(sb, ret);
381926a4c0c6STheodore Ts'o 		goto out_dio;
382026a4c0c6STheodore Ts'o 	}
382126a4c0c6STheodore Ts'o 
3822a87dd18cSLukas Czerner 	ret = ext4_zero_partial_blocks(handle, inode, offset,
3823a87dd18cSLukas Czerner 				       length);
382426a4c0c6STheodore Ts'o 	if (ret)
382526a4c0c6STheodore Ts'o 		goto out_stop;
382626a4c0c6STheodore Ts'o 
382726a4c0c6STheodore Ts'o 	first_block = (offset + sb->s_blocksize - 1) >>
382826a4c0c6STheodore Ts'o 		EXT4_BLOCK_SIZE_BITS(sb);
382926a4c0c6STheodore Ts'o 	stop_block = (offset + length) >> EXT4_BLOCK_SIZE_BITS(sb);
383026a4c0c6STheodore Ts'o 
383126a4c0c6STheodore Ts'o 	/* If there are no blocks to remove, return now */
383226a4c0c6STheodore Ts'o 	if (first_block >= stop_block)
383326a4c0c6STheodore Ts'o 		goto out_stop;
383426a4c0c6STheodore Ts'o 
383526a4c0c6STheodore Ts'o 	down_write(&EXT4_I(inode)->i_data_sem);
383626a4c0c6STheodore Ts'o 	ext4_discard_preallocations(inode);
383726a4c0c6STheodore Ts'o 
383826a4c0c6STheodore Ts'o 	ret = ext4_es_remove_extent(inode, first_block,
383926a4c0c6STheodore Ts'o 				    stop_block - first_block);
384026a4c0c6STheodore Ts'o 	if (ret) {
384126a4c0c6STheodore Ts'o 		up_write(&EXT4_I(inode)->i_data_sem);
384226a4c0c6STheodore Ts'o 		goto out_stop;
384326a4c0c6STheodore Ts'o 	}
384426a4c0c6STheodore Ts'o 
384526a4c0c6STheodore Ts'o 	if (ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS))
384626a4c0c6STheodore Ts'o 		ret = ext4_ext_remove_space(inode, first_block,
384726a4c0c6STheodore Ts'o 					    stop_block - 1);
384826a4c0c6STheodore Ts'o 	else
38494f579ae7SLukas Czerner 		ret = ext4_ind_remove_space(handle, inode, first_block,
385026a4c0c6STheodore Ts'o 					    stop_block);
385126a4c0c6STheodore Ts'o 
3852819c4920STheodore Ts'o 	up_write(&EXT4_I(inode)->i_data_sem);
385326a4c0c6STheodore Ts'o 	if (IS_SYNC(inode))
385426a4c0c6STheodore Ts'o 		ext4_handle_sync(handle);
3855e251f9bcSMaxim Patlasov 
385626a4c0c6STheodore Ts'o 	inode->i_mtime = inode->i_ctime = ext4_current_time(inode);
385726a4c0c6STheodore Ts'o 	ext4_mark_inode_dirty(handle, inode);
385826a4c0c6STheodore Ts'o out_stop:
385926a4c0c6STheodore Ts'o 	ext4_journal_stop(handle);
386026a4c0c6STheodore Ts'o out_dio:
3861ea3d7209SJan Kara 	up_write(&EXT4_I(inode)->i_mmap_sem);
386226a4c0c6STheodore Ts'o 	ext4_inode_resume_unlocked_dio(inode);
386326a4c0c6STheodore Ts'o out_mutex:
38645955102cSAl Viro 	inode_unlock(inode);
386526a4c0c6STheodore Ts'o 	return ret;
3866a4bb6b64SAllison Henderson }
3867a4bb6b64SAllison Henderson 
3868a361293fSJan Kara int ext4_inode_attach_jinode(struct inode *inode)
3869a361293fSJan Kara {
3870a361293fSJan Kara 	struct ext4_inode_info *ei = EXT4_I(inode);
3871a361293fSJan Kara 	struct jbd2_inode *jinode;
3872a361293fSJan Kara 
3873a361293fSJan Kara 	if (ei->jinode || !EXT4_SB(inode->i_sb)->s_journal)
3874a361293fSJan Kara 		return 0;
3875a361293fSJan Kara 
3876a361293fSJan Kara 	jinode = jbd2_alloc_inode(GFP_KERNEL);
3877a361293fSJan Kara 	spin_lock(&inode->i_lock);
3878a361293fSJan Kara 	if (!ei->jinode) {
3879a361293fSJan Kara 		if (!jinode) {
3880a361293fSJan Kara 			spin_unlock(&inode->i_lock);
3881a361293fSJan Kara 			return -ENOMEM;
3882a361293fSJan Kara 		}
3883a361293fSJan Kara 		ei->jinode = jinode;
3884a361293fSJan Kara 		jbd2_journal_init_jbd_inode(ei->jinode, inode);
3885a361293fSJan Kara 		jinode = NULL;
3886a361293fSJan Kara 	}
3887a361293fSJan Kara 	spin_unlock(&inode->i_lock);
3888a361293fSJan Kara 	if (unlikely(jinode != NULL))
3889a361293fSJan Kara 		jbd2_free_inode(jinode);
3890a361293fSJan Kara 	return 0;
3891a361293fSJan Kara }
3892a361293fSJan Kara 
3893a4bb6b64SAllison Henderson /*
3894617ba13bSMingming Cao  * ext4_truncate()
3895ac27a0ecSDave Kleikamp  *
3896617ba13bSMingming Cao  * We block out ext4_get_block() block instantiations across the entire
3897617ba13bSMingming Cao  * transaction, and VFS/VM ensures that ext4_truncate() cannot run
3898ac27a0ecSDave Kleikamp  * simultaneously on behalf of the same inode.
3899ac27a0ecSDave Kleikamp  *
390042b2aa86SJustin P. Mattock  * As we work through the truncate and commit bits of it to the journal there
3901ac27a0ecSDave Kleikamp  * is one core, guiding principle: the file's tree must always be consistent on
3902ac27a0ecSDave Kleikamp  * disk.  We must be able to restart the truncate after a crash.
3903ac27a0ecSDave Kleikamp  *
3904ac27a0ecSDave Kleikamp  * The file's tree may be transiently inconsistent in memory (although it
3905ac27a0ecSDave Kleikamp  * probably isn't), but whenever we close off and commit a journal transaction,
3906ac27a0ecSDave Kleikamp  * the contents of (the filesystem + the journal) must be consistent and
3907ac27a0ecSDave Kleikamp  * restartable.  It's pretty simple, really: bottom up, right to left (although
3908ac27a0ecSDave Kleikamp  * left-to-right works OK too).
3909ac27a0ecSDave Kleikamp  *
3910ac27a0ecSDave Kleikamp  * Note that at recovery time, journal replay occurs *before* the restart of
3911ac27a0ecSDave Kleikamp  * truncate against the orphan inode list.
3912ac27a0ecSDave Kleikamp  *
3913ac27a0ecSDave Kleikamp  * The committed inode has the new, desired i_size (which is the same as
3914617ba13bSMingming Cao  * i_disksize in this case).  After a crash, ext4_orphan_cleanup() will see
3915ac27a0ecSDave Kleikamp  * that this inode's truncate did not complete and it will again call
3916617ba13bSMingming Cao  * ext4_truncate() to have another go.  So there will be instantiated blocks
3917617ba13bSMingming Cao  * to the right of the truncation point in a crashed ext4 filesystem.  But
3918ac27a0ecSDave Kleikamp  * that's fine - as long as they are linked from the inode, the post-crash
3919617ba13bSMingming Cao  * ext4_truncate() run will find them and release them.
3920ac27a0ecSDave Kleikamp  */
3921617ba13bSMingming Cao void ext4_truncate(struct inode *inode)
3922ac27a0ecSDave Kleikamp {
3923819c4920STheodore Ts'o 	struct ext4_inode_info *ei = EXT4_I(inode);
3924819c4920STheodore Ts'o 	unsigned int credits;
3925819c4920STheodore Ts'o 	handle_t *handle;
3926819c4920STheodore Ts'o 	struct address_space *mapping = inode->i_mapping;
3927819c4920STheodore Ts'o 
392819b5ef61STheodore Ts'o 	/*
392919b5ef61STheodore Ts'o 	 * There is a possibility that we're either freeing the inode
3930e04027e8SMatthew Wilcox 	 * or it's a completely new inode. In those cases we might not
393119b5ef61STheodore Ts'o 	 * have i_mutex locked because it's not necessary.
393219b5ef61STheodore Ts'o 	 */
393319b5ef61STheodore Ts'o 	if (!(inode->i_state & (I_NEW|I_FREEING)))
39345955102cSAl Viro 		WARN_ON(!inode_is_locked(inode));
39350562e0baSJiaying Zhang 	trace_ext4_truncate_enter(inode);
39360562e0baSJiaying Zhang 
393791ef4cafSDuane Griffin 	if (!ext4_can_truncate(inode))
3938ac27a0ecSDave Kleikamp 		return;
3939ac27a0ecSDave Kleikamp 
394012e9b892SDmitry Monakhov 	ext4_clear_inode_flag(inode, EXT4_INODE_EOFBLOCKS);
3941c8d46e41SJiaying Zhang 
39425534fb5bSTheodore Ts'o 	if (inode->i_size == 0 && !test_opt(inode->i_sb, NO_AUTO_DA_ALLOC))
394319f5fb7aSTheodore Ts'o 		ext4_set_inode_state(inode, EXT4_STATE_DA_ALLOC_CLOSE);
39447d8f9f7dSTheodore Ts'o 
3945aef1c851STao Ma 	if (ext4_has_inline_data(inode)) {
3946aef1c851STao Ma 		int has_inline = 1;
3947aef1c851STao Ma 
3948aef1c851STao Ma 		ext4_inline_data_truncate(inode, &has_inline);
3949aef1c851STao Ma 		if (has_inline)
3950aef1c851STao Ma 			return;
3951aef1c851STao Ma 	}
3952aef1c851STao Ma 
3953a361293fSJan Kara 	/* If we zero-out tail of the page, we have to create jinode for jbd2 */
3954a361293fSJan Kara 	if (inode->i_size & (inode->i_sb->s_blocksize - 1)) {
3955a361293fSJan Kara 		if (ext4_inode_attach_jinode(inode) < 0)
3956a361293fSJan Kara 			return;
3957a361293fSJan Kara 	}
3958a361293fSJan Kara 
3959ff9893dcSAmir Goldstein 	if (ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS))
3960819c4920STheodore Ts'o 		credits = ext4_writepage_trans_blocks(inode);
3961ff9893dcSAmir Goldstein 	else
3962819c4920STheodore Ts'o 		credits = ext4_blocks_for_truncate(inode);
3963819c4920STheodore Ts'o 
3964819c4920STheodore Ts'o 	handle = ext4_journal_start(inode, EXT4_HT_TRUNCATE, credits);
3965819c4920STheodore Ts'o 	if (IS_ERR(handle)) {
3966819c4920STheodore Ts'o 		ext4_std_error(inode->i_sb, PTR_ERR(handle));
3967819c4920STheodore Ts'o 		return;
3968819c4920STheodore Ts'o 	}
3969819c4920STheodore Ts'o 
3970eb3544c6SLukas Czerner 	if (inode->i_size & (inode->i_sb->s_blocksize - 1))
3971eb3544c6SLukas Czerner 		ext4_block_truncate_page(handle, mapping, inode->i_size);
3972819c4920STheodore Ts'o 
3973819c4920STheodore Ts'o 	/*
3974819c4920STheodore Ts'o 	 * We add the inode to the orphan list, so that if this
3975819c4920STheodore Ts'o 	 * truncate spans multiple transactions, and we crash, we will
3976819c4920STheodore Ts'o 	 * resume the truncate when the filesystem recovers.  It also
3977819c4920STheodore Ts'o 	 * marks the inode dirty, to catch the new size.
3978819c4920STheodore Ts'o 	 *
3979819c4920STheodore Ts'o 	 * Implication: the file must always be in a sane, consistent
3980819c4920STheodore Ts'o 	 * truncatable state while each transaction commits.
3981819c4920STheodore Ts'o 	 */
3982819c4920STheodore Ts'o 	if (ext4_orphan_add(handle, inode))
3983819c4920STheodore Ts'o 		goto out_stop;
3984819c4920STheodore Ts'o 
3985819c4920STheodore Ts'o 	down_write(&EXT4_I(inode)->i_data_sem);
3986819c4920STheodore Ts'o 
3987819c4920STheodore Ts'o 	ext4_discard_preallocations(inode);
3988819c4920STheodore Ts'o 
3989819c4920STheodore Ts'o 	if (ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS))
3990819c4920STheodore Ts'o 		ext4_ext_truncate(handle, inode);
3991819c4920STheodore Ts'o 	else
3992819c4920STheodore Ts'o 		ext4_ind_truncate(handle, inode);
3993819c4920STheodore Ts'o 
3994819c4920STheodore Ts'o 	up_write(&ei->i_data_sem);
3995819c4920STheodore Ts'o 
3996819c4920STheodore Ts'o 	if (IS_SYNC(inode))
3997819c4920STheodore Ts'o 		ext4_handle_sync(handle);
3998819c4920STheodore Ts'o 
3999819c4920STheodore Ts'o out_stop:
4000819c4920STheodore Ts'o 	/*
4001819c4920STheodore Ts'o 	 * If this was a simple ftruncate() and the file will remain alive,
4002819c4920STheodore Ts'o 	 * then we need to clear up the orphan record which we created above.
4003819c4920STheodore Ts'o 	 * However, if this was a real unlink then we were called by
400458d86a50SWang Shilong 	 * ext4_evict_inode(), and we allow that function to clean up the
4005819c4920STheodore Ts'o 	 * orphan info for us.
4006819c4920STheodore Ts'o 	 */
4007819c4920STheodore Ts'o 	if (inode->i_nlink)
4008819c4920STheodore Ts'o 		ext4_orphan_del(handle, inode);
4009819c4920STheodore Ts'o 
4010819c4920STheodore Ts'o 	inode->i_mtime = inode->i_ctime = ext4_current_time(inode);
4011819c4920STheodore Ts'o 	ext4_mark_inode_dirty(handle, inode);
4012819c4920STheodore Ts'o 	ext4_journal_stop(handle);
4013a86c6181SAlex Tomas 
40140562e0baSJiaying Zhang 	trace_ext4_truncate_exit(inode);
4015ac27a0ecSDave Kleikamp }
4016ac27a0ecSDave Kleikamp 
4017ac27a0ecSDave Kleikamp /*
4018617ba13bSMingming Cao  * ext4_get_inode_loc returns with an extra refcount against the inode's
4019ac27a0ecSDave Kleikamp  * underlying buffer_head on success. If 'in_mem' is true, we have all
4020ac27a0ecSDave Kleikamp  * data in memory that is needed to recreate the on-disk version of this
4021ac27a0ecSDave Kleikamp  * inode.
4022ac27a0ecSDave Kleikamp  */
4023617ba13bSMingming Cao static int __ext4_get_inode_loc(struct inode *inode,
4024617ba13bSMingming Cao 				struct ext4_iloc *iloc, int in_mem)
4025ac27a0ecSDave Kleikamp {
4026240799cdSTheodore Ts'o 	struct ext4_group_desc	*gdp;
4027ac27a0ecSDave Kleikamp 	struct buffer_head	*bh;
4028240799cdSTheodore Ts'o 	struct super_block	*sb = inode->i_sb;
4029240799cdSTheodore Ts'o 	ext4_fsblk_t		block;
4030240799cdSTheodore Ts'o 	int			inodes_per_block, inode_offset;
4031ac27a0ecSDave Kleikamp 
40323a06d778SAneesh Kumar K.V 	iloc->bh = NULL;
4033240799cdSTheodore Ts'o 	if (!ext4_valid_inum(sb, inode->i_ino))
40346a797d27SDarrick J. Wong 		return -EFSCORRUPTED;
4035ac27a0ecSDave Kleikamp 
4036240799cdSTheodore Ts'o 	iloc->block_group = (inode->i_ino - 1) / EXT4_INODES_PER_GROUP(sb);
4037240799cdSTheodore Ts'o 	gdp = ext4_get_group_desc(sb, iloc->block_group, NULL);
4038240799cdSTheodore Ts'o 	if (!gdp)
4039240799cdSTheodore Ts'o 		return -EIO;
4040240799cdSTheodore Ts'o 
4041240799cdSTheodore Ts'o 	/*
4042240799cdSTheodore Ts'o 	 * Figure out the offset within the block group inode table
4043240799cdSTheodore Ts'o 	 */
404400d09882STao Ma 	inodes_per_block = EXT4_SB(sb)->s_inodes_per_block;
4045240799cdSTheodore Ts'o 	inode_offset = ((inode->i_ino - 1) %
4046240799cdSTheodore Ts'o 			EXT4_INODES_PER_GROUP(sb));
4047240799cdSTheodore Ts'o 	block = ext4_inode_table(sb, gdp) + (inode_offset / inodes_per_block);
4048240799cdSTheodore Ts'o 	iloc->offset = (inode_offset % inodes_per_block) * EXT4_INODE_SIZE(sb);
4049240799cdSTheodore Ts'o 
4050240799cdSTheodore Ts'o 	bh = sb_getblk(sb, block);
4051aebf0243SWang Shilong 	if (unlikely(!bh))
4052860d21e2STheodore Ts'o 		return -ENOMEM;
4053ac27a0ecSDave Kleikamp 	if (!buffer_uptodate(bh)) {
4054ac27a0ecSDave Kleikamp 		lock_buffer(bh);
40559c83a923SHidehiro Kawai 
40569c83a923SHidehiro Kawai 		/*
40579c83a923SHidehiro Kawai 		 * If the buffer has the write error flag, we have failed
40589c83a923SHidehiro Kawai 		 * to write out another inode in the same block.  In this
40599c83a923SHidehiro Kawai 		 * case, we don't have to read the block because we may
40609c83a923SHidehiro Kawai 		 * read the old inode data successfully.
40619c83a923SHidehiro Kawai 		 */
40629c83a923SHidehiro Kawai 		if (buffer_write_io_error(bh) && !buffer_uptodate(bh))
40639c83a923SHidehiro Kawai 			set_buffer_uptodate(bh);
40649c83a923SHidehiro Kawai 
4065ac27a0ecSDave Kleikamp 		if (buffer_uptodate(bh)) {
4066ac27a0ecSDave Kleikamp 			/* someone brought it uptodate while we waited */
4067ac27a0ecSDave Kleikamp 			unlock_buffer(bh);
4068ac27a0ecSDave Kleikamp 			goto has_buffer;
4069ac27a0ecSDave Kleikamp 		}
4070ac27a0ecSDave Kleikamp 
4071ac27a0ecSDave Kleikamp 		/*
4072ac27a0ecSDave Kleikamp 		 * If we have all information of the inode in memory and this
4073ac27a0ecSDave Kleikamp 		 * is the only valid inode in the block, we need not read the
4074ac27a0ecSDave Kleikamp 		 * block.
4075ac27a0ecSDave Kleikamp 		 */
4076ac27a0ecSDave Kleikamp 		if (in_mem) {
4077ac27a0ecSDave Kleikamp 			struct buffer_head *bitmap_bh;
4078240799cdSTheodore Ts'o 			int i, start;
4079ac27a0ecSDave Kleikamp 
4080240799cdSTheodore Ts'o 			start = inode_offset & ~(inodes_per_block - 1);
4081ac27a0ecSDave Kleikamp 
4082ac27a0ecSDave Kleikamp 			/* Is the inode bitmap in cache? */
4083240799cdSTheodore Ts'o 			bitmap_bh = sb_getblk(sb, ext4_inode_bitmap(sb, gdp));
4084aebf0243SWang Shilong 			if (unlikely(!bitmap_bh))
4085ac27a0ecSDave Kleikamp 				goto make_io;
4086ac27a0ecSDave Kleikamp 
4087ac27a0ecSDave Kleikamp 			/*
4088ac27a0ecSDave Kleikamp 			 * If the inode bitmap isn't in cache then the
4089ac27a0ecSDave Kleikamp 			 * optimisation may end up performing two reads instead
4090ac27a0ecSDave Kleikamp 			 * of one, so skip it.
4091ac27a0ecSDave Kleikamp 			 */
4092ac27a0ecSDave Kleikamp 			if (!buffer_uptodate(bitmap_bh)) {
4093ac27a0ecSDave Kleikamp 				brelse(bitmap_bh);
4094ac27a0ecSDave Kleikamp 				goto make_io;
4095ac27a0ecSDave Kleikamp 			}
4096240799cdSTheodore Ts'o 			for (i = start; i < start + inodes_per_block; i++) {
4097ac27a0ecSDave Kleikamp 				if (i == inode_offset)
4098ac27a0ecSDave Kleikamp 					continue;
4099617ba13bSMingming Cao 				if (ext4_test_bit(i, bitmap_bh->b_data))
4100ac27a0ecSDave Kleikamp 					break;
4101ac27a0ecSDave Kleikamp 			}
4102ac27a0ecSDave Kleikamp 			brelse(bitmap_bh);
4103240799cdSTheodore Ts'o 			if (i == start + inodes_per_block) {
4104ac27a0ecSDave Kleikamp 				/* all other inodes are free, so skip I/O */
4105ac27a0ecSDave Kleikamp 				memset(bh->b_data, 0, bh->b_size);
4106ac27a0ecSDave Kleikamp 				set_buffer_uptodate(bh);
4107ac27a0ecSDave Kleikamp 				unlock_buffer(bh);
4108ac27a0ecSDave Kleikamp 				goto has_buffer;
4109ac27a0ecSDave Kleikamp 			}
4110ac27a0ecSDave Kleikamp 		}
4111ac27a0ecSDave Kleikamp 
4112ac27a0ecSDave Kleikamp make_io:
4113ac27a0ecSDave Kleikamp 		/*
4114240799cdSTheodore Ts'o 		 * If we need to do any I/O, try to pre-readahead extra
4115240799cdSTheodore Ts'o 		 * blocks from the inode table.
4116240799cdSTheodore Ts'o 		 */
4117240799cdSTheodore Ts'o 		if (EXT4_SB(sb)->s_inode_readahead_blks) {
4118240799cdSTheodore Ts'o 			ext4_fsblk_t b, end, table;
4119240799cdSTheodore Ts'o 			unsigned num;
41200d606e2cSTheodore Ts'o 			__u32 ra_blks = EXT4_SB(sb)->s_inode_readahead_blks;
4121240799cdSTheodore Ts'o 
4122240799cdSTheodore Ts'o 			table = ext4_inode_table(sb, gdp);
4123b713a5ecSTheodore Ts'o 			/* s_inode_readahead_blks is always a power of 2 */
41240d606e2cSTheodore Ts'o 			b = block & ~((ext4_fsblk_t) ra_blks - 1);
4125240799cdSTheodore Ts'o 			if (table > b)
4126240799cdSTheodore Ts'o 				b = table;
41270d606e2cSTheodore Ts'o 			end = b + ra_blks;
4128240799cdSTheodore Ts'o 			num = EXT4_INODES_PER_GROUP(sb);
4129feb0ab32SDarrick J. Wong 			if (ext4_has_group_desc_csum(sb))
4130560671a0SAneesh Kumar K.V 				num -= ext4_itable_unused_count(sb, gdp);
4131240799cdSTheodore Ts'o 			table += num / inodes_per_block;
4132240799cdSTheodore Ts'o 			if (end > table)
4133240799cdSTheodore Ts'o 				end = table;
4134240799cdSTheodore Ts'o 			while (b <= end)
4135240799cdSTheodore Ts'o 				sb_breadahead(sb, b++);
4136240799cdSTheodore Ts'o 		}
4137240799cdSTheodore Ts'o 
4138240799cdSTheodore Ts'o 		/*
4139ac27a0ecSDave Kleikamp 		 * There are other valid inodes in the buffer, this inode
4140ac27a0ecSDave Kleikamp 		 * has in-inode xattrs, or we don't have this inode in memory.
4141ac27a0ecSDave Kleikamp 		 * Read the block from disk.
4142ac27a0ecSDave Kleikamp 		 */
41430562e0baSJiaying Zhang 		trace_ext4_load_inode(inode);
4144ac27a0ecSDave Kleikamp 		get_bh(bh);
4145ac27a0ecSDave Kleikamp 		bh->b_end_io = end_buffer_read_sync;
414665299a3bSChristoph Hellwig 		submit_bh(READ | REQ_META | REQ_PRIO, bh);
4147ac27a0ecSDave Kleikamp 		wait_on_buffer(bh);
4148ac27a0ecSDave Kleikamp 		if (!buffer_uptodate(bh)) {
4149c398eda0STheodore Ts'o 			EXT4_ERROR_INODE_BLOCK(inode, block,
4150c398eda0STheodore Ts'o 					       "unable to read itable block");
4151ac27a0ecSDave Kleikamp 			brelse(bh);
4152ac27a0ecSDave Kleikamp 			return -EIO;
4153ac27a0ecSDave Kleikamp 		}
4154ac27a0ecSDave Kleikamp 	}
4155ac27a0ecSDave Kleikamp has_buffer:
4156ac27a0ecSDave Kleikamp 	iloc->bh = bh;
4157ac27a0ecSDave Kleikamp 	return 0;
4158ac27a0ecSDave Kleikamp }
4159ac27a0ecSDave Kleikamp 
4160617ba13bSMingming Cao int ext4_get_inode_loc(struct inode *inode, struct ext4_iloc *iloc)
4161ac27a0ecSDave Kleikamp {
4162ac27a0ecSDave Kleikamp 	/* We have all inode data except xattrs in memory here. */
4163617ba13bSMingming Cao 	return __ext4_get_inode_loc(inode, iloc,
416419f5fb7aSTheodore Ts'o 		!ext4_test_inode_state(inode, EXT4_STATE_XATTR));
4165ac27a0ecSDave Kleikamp }
4166ac27a0ecSDave Kleikamp 
4167617ba13bSMingming Cao void ext4_set_inode_flags(struct inode *inode)
4168ac27a0ecSDave Kleikamp {
4169617ba13bSMingming Cao 	unsigned int flags = EXT4_I(inode)->i_flags;
417000a1a053STheodore Ts'o 	unsigned int new_fl = 0;
4171ac27a0ecSDave Kleikamp 
4172617ba13bSMingming Cao 	if (flags & EXT4_SYNC_FL)
417300a1a053STheodore Ts'o 		new_fl |= S_SYNC;
4174617ba13bSMingming Cao 	if (flags & EXT4_APPEND_FL)
417500a1a053STheodore Ts'o 		new_fl |= S_APPEND;
4176617ba13bSMingming Cao 	if (flags & EXT4_IMMUTABLE_FL)
417700a1a053STheodore Ts'o 		new_fl |= S_IMMUTABLE;
4178617ba13bSMingming Cao 	if (flags & EXT4_NOATIME_FL)
417900a1a053STheodore Ts'o 		new_fl |= S_NOATIME;
4180617ba13bSMingming Cao 	if (flags & EXT4_DIRSYNC_FL)
418100a1a053STheodore Ts'o 		new_fl |= S_DIRSYNC;
4182923ae0ffSRoss Zwisler 	if (test_opt(inode->i_sb, DAX))
4183923ae0ffSRoss Zwisler 		new_fl |= S_DAX;
41845f16f322STheodore Ts'o 	inode_set_flags(inode, new_fl,
4185923ae0ffSRoss Zwisler 			S_SYNC|S_APPEND|S_IMMUTABLE|S_NOATIME|S_DIRSYNC|S_DAX);
4186ac27a0ecSDave Kleikamp }
4187ac27a0ecSDave Kleikamp 
4188ff9ddf7eSJan Kara /* Propagate flags from i_flags to EXT4_I(inode)->i_flags */
4189ff9ddf7eSJan Kara void ext4_get_inode_flags(struct ext4_inode_info *ei)
4190ff9ddf7eSJan Kara {
419184a8dce2SDmitry Monakhov 	unsigned int vfs_fl;
419284a8dce2SDmitry Monakhov 	unsigned long old_fl, new_fl;
4193ff9ddf7eSJan Kara 
419484a8dce2SDmitry Monakhov 	do {
419584a8dce2SDmitry Monakhov 		vfs_fl = ei->vfs_inode.i_flags;
419684a8dce2SDmitry Monakhov 		old_fl = ei->i_flags;
419784a8dce2SDmitry Monakhov 		new_fl = old_fl & ~(EXT4_SYNC_FL|EXT4_APPEND_FL|
419884a8dce2SDmitry Monakhov 				EXT4_IMMUTABLE_FL|EXT4_NOATIME_FL|
419984a8dce2SDmitry Monakhov 				EXT4_DIRSYNC_FL);
420084a8dce2SDmitry Monakhov 		if (vfs_fl & S_SYNC)
420184a8dce2SDmitry Monakhov 			new_fl |= EXT4_SYNC_FL;
420284a8dce2SDmitry Monakhov 		if (vfs_fl & S_APPEND)
420384a8dce2SDmitry Monakhov 			new_fl |= EXT4_APPEND_FL;
420484a8dce2SDmitry Monakhov 		if (vfs_fl & S_IMMUTABLE)
420584a8dce2SDmitry Monakhov 			new_fl |= EXT4_IMMUTABLE_FL;
420684a8dce2SDmitry Monakhov 		if (vfs_fl & S_NOATIME)
420784a8dce2SDmitry Monakhov 			new_fl |= EXT4_NOATIME_FL;
420884a8dce2SDmitry Monakhov 		if (vfs_fl & S_DIRSYNC)
420984a8dce2SDmitry Monakhov 			new_fl |= EXT4_DIRSYNC_FL;
421084a8dce2SDmitry Monakhov 	} while (cmpxchg(&ei->i_flags, old_fl, new_fl) != old_fl);
4211ff9ddf7eSJan Kara }
4212de9a55b8STheodore Ts'o 
42130fc1b451SAneesh Kumar K.V static blkcnt_t ext4_inode_blocks(struct ext4_inode *raw_inode,
42140fc1b451SAneesh Kumar K.V 				  struct ext4_inode_info *ei)
42150fc1b451SAneesh Kumar K.V {
42160fc1b451SAneesh Kumar K.V 	blkcnt_t i_blocks ;
42178180a562SAneesh Kumar K.V 	struct inode *inode = &(ei->vfs_inode);
42188180a562SAneesh Kumar K.V 	struct super_block *sb = inode->i_sb;
42190fc1b451SAneesh Kumar K.V 
4220e2b911c5SDarrick J. Wong 	if (ext4_has_feature_huge_file(sb)) {
42210fc1b451SAneesh Kumar K.V 		/* we are using combined 48 bit field */
42220fc1b451SAneesh Kumar K.V 		i_blocks = ((u64)le16_to_cpu(raw_inode->i_blocks_high)) << 32 |
42230fc1b451SAneesh Kumar K.V 					le32_to_cpu(raw_inode->i_blocks_lo);
422407a03824STheodore Ts'o 		if (ext4_test_inode_flag(inode, EXT4_INODE_HUGE_FILE)) {
42258180a562SAneesh Kumar K.V 			/* i_blocks represent file system block size */
42268180a562SAneesh Kumar K.V 			return i_blocks  << (inode->i_blkbits - 9);
42278180a562SAneesh Kumar K.V 		} else {
42280fc1b451SAneesh Kumar K.V 			return i_blocks;
42298180a562SAneesh Kumar K.V 		}
42300fc1b451SAneesh Kumar K.V 	} else {
42310fc1b451SAneesh Kumar K.V 		return le32_to_cpu(raw_inode->i_blocks_lo);
42320fc1b451SAneesh Kumar K.V 	}
42330fc1b451SAneesh Kumar K.V }
4234ff9ddf7eSJan Kara 
4235152a7b0aSTao Ma static inline void ext4_iget_extra_inode(struct inode *inode,
4236152a7b0aSTao Ma 					 struct ext4_inode *raw_inode,
4237152a7b0aSTao Ma 					 struct ext4_inode_info *ei)
4238152a7b0aSTao Ma {
4239152a7b0aSTao Ma 	__le32 *magic = (void *)raw_inode +
4240152a7b0aSTao Ma 			EXT4_GOOD_OLD_INODE_SIZE + ei->i_extra_isize;
424167cf5b09STao Ma 	if (*magic == cpu_to_le32(EXT4_XATTR_MAGIC)) {
4242152a7b0aSTao Ma 		ext4_set_inode_state(inode, EXT4_STATE_XATTR);
424367cf5b09STao Ma 		ext4_find_inline_data_nolock(inode);
4244f19d5870STao Ma 	} else
4245f19d5870STao Ma 		EXT4_I(inode)->i_inline_off = 0;
4246152a7b0aSTao Ma }
4247152a7b0aSTao Ma 
4248040cb378SLi Xi int ext4_get_projid(struct inode *inode, kprojid_t *projid)
4249040cb378SLi Xi {
4250040cb378SLi Xi 	if (!EXT4_HAS_RO_COMPAT_FEATURE(inode->i_sb, EXT4_FEATURE_RO_COMPAT_PROJECT))
4251040cb378SLi Xi 		return -EOPNOTSUPP;
4252040cb378SLi Xi 	*projid = EXT4_I(inode)->i_projid;
4253040cb378SLi Xi 	return 0;
4254040cb378SLi Xi }
4255040cb378SLi Xi 
42561d1fe1eeSDavid Howells struct inode *ext4_iget(struct super_block *sb, unsigned long ino)
4257ac27a0ecSDave Kleikamp {
4258617ba13bSMingming Cao 	struct ext4_iloc iloc;
4259617ba13bSMingming Cao 	struct ext4_inode *raw_inode;
42601d1fe1eeSDavid Howells 	struct ext4_inode_info *ei;
42611d1fe1eeSDavid Howells 	struct inode *inode;
4262b436b9beSJan Kara 	journal_t *journal = EXT4_SB(sb)->s_journal;
42631d1fe1eeSDavid Howells 	long ret;
4264ac27a0ecSDave Kleikamp 	int block;
426508cefc7aSEric W. Biederman 	uid_t i_uid;
426608cefc7aSEric W. Biederman 	gid_t i_gid;
4267040cb378SLi Xi 	projid_t i_projid;
4268ac27a0ecSDave Kleikamp 
42691d1fe1eeSDavid Howells 	inode = iget_locked(sb, ino);
42701d1fe1eeSDavid Howells 	if (!inode)
42711d1fe1eeSDavid Howells 		return ERR_PTR(-ENOMEM);
42721d1fe1eeSDavid Howells 	if (!(inode->i_state & I_NEW))
42731d1fe1eeSDavid Howells 		return inode;
42741d1fe1eeSDavid Howells 
42751d1fe1eeSDavid Howells 	ei = EXT4_I(inode);
42767dc57615SPeter Huewe 	iloc.bh = NULL;
4277ac27a0ecSDave Kleikamp 
42781d1fe1eeSDavid Howells 	ret = __ext4_get_inode_loc(inode, &iloc, 0);
42791d1fe1eeSDavid Howells 	if (ret < 0)
4280ac27a0ecSDave Kleikamp 		goto bad_inode;
4281617ba13bSMingming Cao 	raw_inode = ext4_raw_inode(&iloc);
4282814525f4SDarrick J. Wong 
4283814525f4SDarrick J. Wong 	if (EXT4_INODE_SIZE(inode->i_sb) > EXT4_GOOD_OLD_INODE_SIZE) {
4284814525f4SDarrick J. Wong 		ei->i_extra_isize = le16_to_cpu(raw_inode->i_extra_isize);
4285814525f4SDarrick J. Wong 		if (EXT4_GOOD_OLD_INODE_SIZE + ei->i_extra_isize >
4286814525f4SDarrick J. Wong 		    EXT4_INODE_SIZE(inode->i_sb)) {
4287814525f4SDarrick J. Wong 			EXT4_ERROR_INODE(inode, "bad extra_isize (%u != %u)",
4288814525f4SDarrick J. Wong 				EXT4_GOOD_OLD_INODE_SIZE + ei->i_extra_isize,
4289814525f4SDarrick J. Wong 				EXT4_INODE_SIZE(inode->i_sb));
42906a797d27SDarrick J. Wong 			ret = -EFSCORRUPTED;
4291814525f4SDarrick J. Wong 			goto bad_inode;
4292814525f4SDarrick J. Wong 		}
4293814525f4SDarrick J. Wong 	} else
4294814525f4SDarrick J. Wong 		ei->i_extra_isize = 0;
4295814525f4SDarrick J. Wong 
4296814525f4SDarrick J. Wong 	/* Precompute checksum seed for inode metadata */
42979aa5d32bSDmitry Monakhov 	if (ext4_has_metadata_csum(sb)) {
4298814525f4SDarrick J. Wong 		struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb);
4299814525f4SDarrick J. Wong 		__u32 csum;
4300814525f4SDarrick J. Wong 		__le32 inum = cpu_to_le32(inode->i_ino);
4301814525f4SDarrick J. Wong 		__le32 gen = raw_inode->i_generation;
4302814525f4SDarrick J. Wong 		csum = ext4_chksum(sbi, sbi->s_csum_seed, (__u8 *)&inum,
4303814525f4SDarrick J. Wong 				   sizeof(inum));
4304814525f4SDarrick J. Wong 		ei->i_csum_seed = ext4_chksum(sbi, csum, (__u8 *)&gen,
4305814525f4SDarrick J. Wong 					      sizeof(gen));
4306814525f4SDarrick J. Wong 	}
4307814525f4SDarrick J. Wong 
4308814525f4SDarrick J. Wong 	if (!ext4_inode_csum_verify(inode, raw_inode, ei)) {
4309814525f4SDarrick J. Wong 		EXT4_ERROR_INODE(inode, "checksum invalid");
43106a797d27SDarrick J. Wong 		ret = -EFSBADCRC;
4311814525f4SDarrick J. Wong 		goto bad_inode;
4312814525f4SDarrick J. Wong 	}
4313814525f4SDarrick J. Wong 
4314ac27a0ecSDave Kleikamp 	inode->i_mode = le16_to_cpu(raw_inode->i_mode);
431508cefc7aSEric W. Biederman 	i_uid = (uid_t)le16_to_cpu(raw_inode->i_uid_low);
431608cefc7aSEric W. Biederman 	i_gid = (gid_t)le16_to_cpu(raw_inode->i_gid_low);
4317040cb378SLi Xi 	if (EXT4_HAS_RO_COMPAT_FEATURE(sb, EXT4_FEATURE_RO_COMPAT_PROJECT) &&
4318040cb378SLi Xi 	    EXT4_INODE_SIZE(sb) > EXT4_GOOD_OLD_INODE_SIZE &&
4319040cb378SLi Xi 	    EXT4_FITS_IN_INODE(raw_inode, ei, i_projid))
4320040cb378SLi Xi 		i_projid = (projid_t)le32_to_cpu(raw_inode->i_projid);
4321040cb378SLi Xi 	else
4322040cb378SLi Xi 		i_projid = EXT4_DEF_PROJID;
4323040cb378SLi Xi 
4324ac27a0ecSDave Kleikamp 	if (!(test_opt(inode->i_sb, NO_UID32))) {
432508cefc7aSEric W. Biederman 		i_uid |= le16_to_cpu(raw_inode->i_uid_high) << 16;
432608cefc7aSEric W. Biederman 		i_gid |= le16_to_cpu(raw_inode->i_gid_high) << 16;
4327ac27a0ecSDave Kleikamp 	}
432808cefc7aSEric W. Biederman 	i_uid_write(inode, i_uid);
432908cefc7aSEric W. Biederman 	i_gid_write(inode, i_gid);
4330040cb378SLi Xi 	ei->i_projid = make_kprojid(&init_user_ns, i_projid);
4331bfe86848SMiklos Szeredi 	set_nlink(inode, le16_to_cpu(raw_inode->i_links_count));
4332ac27a0ecSDave Kleikamp 
4333353eb83cSTheodore Ts'o 	ext4_clear_state_flags(ei);	/* Only relevant on 32-bit archs */
433467cf5b09STao Ma 	ei->i_inline_off = 0;
4335ac27a0ecSDave Kleikamp 	ei->i_dir_start_lookup = 0;
4336ac27a0ecSDave Kleikamp 	ei->i_dtime = le32_to_cpu(raw_inode->i_dtime);
4337ac27a0ecSDave Kleikamp 	/* We now have enough fields to check if the inode was active or not.
4338ac27a0ecSDave Kleikamp 	 * This is needed because nfsd might try to access dead inodes
4339ac27a0ecSDave Kleikamp 	 * the test is that same one that e2fsck uses
4340ac27a0ecSDave Kleikamp 	 * NeilBrown 1999oct15
4341ac27a0ecSDave Kleikamp 	 */
4342ac27a0ecSDave Kleikamp 	if (inode->i_nlink == 0) {
4343393d1d1dSDr. Tilmann Bubeck 		if ((inode->i_mode == 0 ||
4344393d1d1dSDr. Tilmann Bubeck 		     !(EXT4_SB(inode->i_sb)->s_mount_state & EXT4_ORPHAN_FS)) &&
4345393d1d1dSDr. Tilmann Bubeck 		    ino != EXT4_BOOT_LOADER_INO) {
4346ac27a0ecSDave Kleikamp 			/* this inode is deleted */
43471d1fe1eeSDavid Howells 			ret = -ESTALE;
4348ac27a0ecSDave Kleikamp 			goto bad_inode;
4349ac27a0ecSDave Kleikamp 		}
4350ac27a0ecSDave Kleikamp 		/* The only unlinked inodes we let through here have
4351ac27a0ecSDave Kleikamp 		 * valid i_mode and are being read by the orphan
4352ac27a0ecSDave Kleikamp 		 * recovery code: that's fine, we're about to complete
4353393d1d1dSDr. Tilmann Bubeck 		 * the process of deleting those.
4354393d1d1dSDr. Tilmann Bubeck 		 * OR it is the EXT4_BOOT_LOADER_INO which is
4355393d1d1dSDr. Tilmann Bubeck 		 * not initialized on a new filesystem. */
4356ac27a0ecSDave Kleikamp 	}
4357ac27a0ecSDave Kleikamp 	ei->i_flags = le32_to_cpu(raw_inode->i_flags);
43580fc1b451SAneesh Kumar K.V 	inode->i_blocks = ext4_inode_blocks(raw_inode, ei);
43597973c0c1SAneesh Kumar K.V 	ei->i_file_acl = le32_to_cpu(raw_inode->i_file_acl_lo);
4360e2b911c5SDarrick J. Wong 	if (ext4_has_feature_64bit(sb))
4361a1ddeb7eSBadari Pulavarty 		ei->i_file_acl |=
4362a1ddeb7eSBadari Pulavarty 			((__u64)le16_to_cpu(raw_inode->i_file_acl_high)) << 32;
4363a48380f7SAneesh Kumar K.V 	inode->i_size = ext4_isize(raw_inode);
4364ac27a0ecSDave Kleikamp 	ei->i_disksize = inode->i_size;
4365a9e7f447SDmitry Monakhov #ifdef CONFIG_QUOTA
4366a9e7f447SDmitry Monakhov 	ei->i_reserved_quota = 0;
4367a9e7f447SDmitry Monakhov #endif
4368ac27a0ecSDave Kleikamp 	inode->i_generation = le32_to_cpu(raw_inode->i_generation);
4369ac27a0ecSDave Kleikamp 	ei->i_block_group = iloc.block_group;
4370a4912123STheodore Ts'o 	ei->i_last_alloc_group = ~0;
4371ac27a0ecSDave Kleikamp 	/*
4372ac27a0ecSDave Kleikamp 	 * NOTE! The in-memory inode i_data array is in little-endian order
4373ac27a0ecSDave Kleikamp 	 * even on big-endian machines: we do NOT byteswap the block numbers!
4374ac27a0ecSDave Kleikamp 	 */
4375617ba13bSMingming Cao 	for (block = 0; block < EXT4_N_BLOCKS; block++)
4376ac27a0ecSDave Kleikamp 		ei->i_data[block] = raw_inode->i_block[block];
4377ac27a0ecSDave Kleikamp 	INIT_LIST_HEAD(&ei->i_orphan);
4378ac27a0ecSDave Kleikamp 
4379b436b9beSJan Kara 	/*
4380b436b9beSJan Kara 	 * Set transaction id's of transactions that have to be committed
4381b436b9beSJan Kara 	 * to finish f[data]sync. We set them to currently running transaction
4382b436b9beSJan Kara 	 * as we cannot be sure that the inode or some of its metadata isn't
4383b436b9beSJan Kara 	 * part of the transaction - the inode could have been reclaimed and
4384b436b9beSJan Kara 	 * now it is reread from disk.
4385b436b9beSJan Kara 	 */
4386b436b9beSJan Kara 	if (journal) {
4387b436b9beSJan Kara 		transaction_t *transaction;
4388b436b9beSJan Kara 		tid_t tid;
4389b436b9beSJan Kara 
4390a931da6aSTheodore Ts'o 		read_lock(&journal->j_state_lock);
4391b436b9beSJan Kara 		if (journal->j_running_transaction)
4392b436b9beSJan Kara 			transaction = journal->j_running_transaction;
4393b436b9beSJan Kara 		else
4394b436b9beSJan Kara 			transaction = journal->j_committing_transaction;
4395b436b9beSJan Kara 		if (transaction)
4396b436b9beSJan Kara 			tid = transaction->t_tid;
4397b436b9beSJan Kara 		else
4398b436b9beSJan Kara 			tid = journal->j_commit_sequence;
4399a931da6aSTheodore Ts'o 		read_unlock(&journal->j_state_lock);
4400b436b9beSJan Kara 		ei->i_sync_tid = tid;
4401b436b9beSJan Kara 		ei->i_datasync_tid = tid;
4402b436b9beSJan Kara 	}
4403b436b9beSJan Kara 
44040040d987SEric Sandeen 	if (EXT4_INODE_SIZE(inode->i_sb) > EXT4_GOOD_OLD_INODE_SIZE) {
4405ac27a0ecSDave Kleikamp 		if (ei->i_extra_isize == 0) {
4406ac27a0ecSDave Kleikamp 			/* The extra space is currently unused. Use it. */
4407617ba13bSMingming Cao 			ei->i_extra_isize = sizeof(struct ext4_inode) -
4408617ba13bSMingming Cao 					    EXT4_GOOD_OLD_INODE_SIZE;
4409ac27a0ecSDave Kleikamp 		} else {
4410152a7b0aSTao Ma 			ext4_iget_extra_inode(inode, raw_inode, ei);
4411ac27a0ecSDave Kleikamp 		}
4412814525f4SDarrick J. Wong 	}
4413ac27a0ecSDave Kleikamp 
4414ef7f3835SKalpak Shah 	EXT4_INODE_GET_XTIME(i_ctime, inode, raw_inode);
4415ef7f3835SKalpak Shah 	EXT4_INODE_GET_XTIME(i_mtime, inode, raw_inode);
4416ef7f3835SKalpak Shah 	EXT4_INODE_GET_XTIME(i_atime, inode, raw_inode);
4417ef7f3835SKalpak Shah 	EXT4_EINODE_GET_XTIME(i_crtime, ei, raw_inode);
4418ef7f3835SKalpak Shah 
4419ed3654ebSTheodore Ts'o 	if (likely(!test_opt2(inode->i_sb, HURD_COMPAT))) {
442025ec56b5SJean Noel Cordenner 		inode->i_version = le32_to_cpu(raw_inode->i_disk_version);
442125ec56b5SJean Noel Cordenner 		if (EXT4_INODE_SIZE(inode->i_sb) > EXT4_GOOD_OLD_INODE_SIZE) {
442225ec56b5SJean Noel Cordenner 			if (EXT4_FITS_IN_INODE(raw_inode, ei, i_version_hi))
442325ec56b5SJean Noel Cordenner 				inode->i_version |=
442425ec56b5SJean Noel Cordenner 		    (__u64)(le32_to_cpu(raw_inode->i_version_hi)) << 32;
442525ec56b5SJean Noel Cordenner 		}
4426c4f65706STheodore Ts'o 	}
442725ec56b5SJean Noel Cordenner 
4428c4b5a614STheodore Ts'o 	ret = 0;
4429485c26ecSTheodore Ts'o 	if (ei->i_file_acl &&
44301032988cSTheodore Ts'o 	    !ext4_data_block_valid(EXT4_SB(sb), ei->i_file_acl, 1)) {
443124676da4STheodore Ts'o 		EXT4_ERROR_INODE(inode, "bad extended attribute block %llu",
443224676da4STheodore Ts'o 				 ei->i_file_acl);
44336a797d27SDarrick J. Wong 		ret = -EFSCORRUPTED;
4434485c26ecSTheodore Ts'o 		goto bad_inode;
4435f19d5870STao Ma 	} else if (!ext4_has_inline_data(inode)) {
4436f19d5870STao Ma 		if (ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS)) {
4437f19d5870STao Ma 			if ((S_ISREG(inode->i_mode) || S_ISDIR(inode->i_mode) ||
4438c4b5a614STheodore Ts'o 			    (S_ISLNK(inode->i_mode) &&
4439f19d5870STao Ma 			     !ext4_inode_is_fast_symlink(inode))))
44407a262f7cSAneesh Kumar K.V 				/* Validate extent which is part of inode */
44417a262f7cSAneesh Kumar K.V 				ret = ext4_ext_check_inode(inode);
4442fe2c8191SThiemo Nagel 		} else if (S_ISREG(inode->i_mode) || S_ISDIR(inode->i_mode) ||
4443fe2c8191SThiemo Nagel 			   (S_ISLNK(inode->i_mode) &&
4444fe2c8191SThiemo Nagel 			    !ext4_inode_is_fast_symlink(inode))) {
4445fe2c8191SThiemo Nagel 			/* Validate block references which are part of inode */
44461f7d1e77STheodore Ts'o 			ret = ext4_ind_check_inode(inode);
4447fe2c8191SThiemo Nagel 		}
4448f19d5870STao Ma 	}
4449567f3e9aSTheodore Ts'o 	if (ret)
44507a262f7cSAneesh Kumar K.V 		goto bad_inode;
44517a262f7cSAneesh Kumar K.V 
4452ac27a0ecSDave Kleikamp 	if (S_ISREG(inode->i_mode)) {
4453617ba13bSMingming Cao 		inode->i_op = &ext4_file_inode_operations;
4454617ba13bSMingming Cao 		inode->i_fop = &ext4_file_operations;
4455617ba13bSMingming Cao 		ext4_set_aops(inode);
4456ac27a0ecSDave Kleikamp 	} else if (S_ISDIR(inode->i_mode)) {
4457617ba13bSMingming Cao 		inode->i_op = &ext4_dir_inode_operations;
4458617ba13bSMingming Cao 		inode->i_fop = &ext4_dir_operations;
4459ac27a0ecSDave Kleikamp 	} else if (S_ISLNK(inode->i_mode)) {
4460a7a67e8aSAl Viro 		if (ext4_encrypted_inode(inode)) {
4461a7a67e8aSAl Viro 			inode->i_op = &ext4_encrypted_symlink_inode_operations;
4462a7a67e8aSAl Viro 			ext4_set_aops(inode);
4463a7a67e8aSAl Viro 		} else if (ext4_inode_is_fast_symlink(inode)) {
446475e7566bSAl Viro 			inode->i_link = (char *)ei->i_data;
4465617ba13bSMingming Cao 			inode->i_op = &ext4_fast_symlink_inode_operations;
4466e83c1397SDuane Griffin 			nd_terminate_link(ei->i_data, inode->i_size,
4467e83c1397SDuane Griffin 				sizeof(ei->i_data) - 1);
4468e83c1397SDuane Griffin 		} else {
4469617ba13bSMingming Cao 			inode->i_op = &ext4_symlink_inode_operations;
4470617ba13bSMingming Cao 			ext4_set_aops(inode);
4471ac27a0ecSDave Kleikamp 		}
447221fc61c7SAl Viro 		inode_nohighmem(inode);
4473563bdd61STheodore Ts'o 	} else if (S_ISCHR(inode->i_mode) || S_ISBLK(inode->i_mode) ||
4474563bdd61STheodore Ts'o 	      S_ISFIFO(inode->i_mode) || S_ISSOCK(inode->i_mode)) {
4475617ba13bSMingming Cao 		inode->i_op = &ext4_special_inode_operations;
4476ac27a0ecSDave Kleikamp 		if (raw_inode->i_block[0])
4477ac27a0ecSDave Kleikamp 			init_special_inode(inode, inode->i_mode,
4478ac27a0ecSDave Kleikamp 			   old_decode_dev(le32_to_cpu(raw_inode->i_block[0])));
4479ac27a0ecSDave Kleikamp 		else
4480ac27a0ecSDave Kleikamp 			init_special_inode(inode, inode->i_mode,
4481ac27a0ecSDave Kleikamp 			   new_decode_dev(le32_to_cpu(raw_inode->i_block[1])));
4482393d1d1dSDr. Tilmann Bubeck 	} else if (ino == EXT4_BOOT_LOADER_INO) {
4483393d1d1dSDr. Tilmann Bubeck 		make_bad_inode(inode);
4484563bdd61STheodore Ts'o 	} else {
44856a797d27SDarrick J. Wong 		ret = -EFSCORRUPTED;
448624676da4STheodore Ts'o 		EXT4_ERROR_INODE(inode, "bogus i_mode (%o)", inode->i_mode);
4487563bdd61STheodore Ts'o 		goto bad_inode;
4488ac27a0ecSDave Kleikamp 	}
4489ac27a0ecSDave Kleikamp 	brelse(iloc.bh);
4490617ba13bSMingming Cao 	ext4_set_inode_flags(inode);
44911d1fe1eeSDavid Howells 	unlock_new_inode(inode);
44921d1fe1eeSDavid Howells 	return inode;
4493ac27a0ecSDave Kleikamp 
4494ac27a0ecSDave Kleikamp bad_inode:
4495567f3e9aSTheodore Ts'o 	brelse(iloc.bh);
44961d1fe1eeSDavid Howells 	iget_failed(inode);
44971d1fe1eeSDavid Howells 	return ERR_PTR(ret);
4498ac27a0ecSDave Kleikamp }
4499ac27a0ecSDave Kleikamp 
4500f4bb2981STheodore Ts'o struct inode *ext4_iget_normal(struct super_block *sb, unsigned long ino)
4501f4bb2981STheodore Ts'o {
4502f4bb2981STheodore Ts'o 	if (ino < EXT4_FIRST_INO(sb) && ino != EXT4_ROOT_INO)
45036a797d27SDarrick J. Wong 		return ERR_PTR(-EFSCORRUPTED);
4504f4bb2981STheodore Ts'o 	return ext4_iget(sb, ino);
4505f4bb2981STheodore Ts'o }
4506f4bb2981STheodore Ts'o 
45070fc1b451SAneesh Kumar K.V static int ext4_inode_blocks_set(handle_t *handle,
45080fc1b451SAneesh Kumar K.V 				struct ext4_inode *raw_inode,
45090fc1b451SAneesh Kumar K.V 				struct ext4_inode_info *ei)
45100fc1b451SAneesh Kumar K.V {
45110fc1b451SAneesh Kumar K.V 	struct inode *inode = &(ei->vfs_inode);
45120fc1b451SAneesh Kumar K.V 	u64 i_blocks = inode->i_blocks;
45130fc1b451SAneesh Kumar K.V 	struct super_block *sb = inode->i_sb;
45140fc1b451SAneesh Kumar K.V 
45150fc1b451SAneesh Kumar K.V 	if (i_blocks <= ~0U) {
45160fc1b451SAneesh Kumar K.V 		/*
45174907cb7bSAnatol Pomozov 		 * i_blocks can be represented in a 32 bit variable
45180fc1b451SAneesh Kumar K.V 		 * as multiple of 512 bytes
45190fc1b451SAneesh Kumar K.V 		 */
45208180a562SAneesh Kumar K.V 		raw_inode->i_blocks_lo   = cpu_to_le32(i_blocks);
45210fc1b451SAneesh Kumar K.V 		raw_inode->i_blocks_high = 0;
452284a8dce2SDmitry Monakhov 		ext4_clear_inode_flag(inode, EXT4_INODE_HUGE_FILE);
4523f287a1a5STheodore Ts'o 		return 0;
4524f287a1a5STheodore Ts'o 	}
4525e2b911c5SDarrick J. Wong 	if (!ext4_has_feature_huge_file(sb))
4526f287a1a5STheodore Ts'o 		return -EFBIG;
4527f287a1a5STheodore Ts'o 
4528f287a1a5STheodore Ts'o 	if (i_blocks <= 0xffffffffffffULL) {
45290fc1b451SAneesh Kumar K.V 		/*
45300fc1b451SAneesh Kumar K.V 		 * i_blocks can be represented in a 48 bit variable
45310fc1b451SAneesh Kumar K.V 		 * as multiple of 512 bytes
45320fc1b451SAneesh Kumar K.V 		 */
45338180a562SAneesh Kumar K.V 		raw_inode->i_blocks_lo   = cpu_to_le32(i_blocks);
45340fc1b451SAneesh Kumar K.V 		raw_inode->i_blocks_high = cpu_to_le16(i_blocks >> 32);
453584a8dce2SDmitry Monakhov 		ext4_clear_inode_flag(inode, EXT4_INODE_HUGE_FILE);
45360fc1b451SAneesh Kumar K.V 	} else {
453784a8dce2SDmitry Monakhov 		ext4_set_inode_flag(inode, EXT4_INODE_HUGE_FILE);
45388180a562SAneesh Kumar K.V 		/* i_block is stored in file system block size */
45398180a562SAneesh Kumar K.V 		i_blocks = i_blocks >> (inode->i_blkbits - 9);
45408180a562SAneesh Kumar K.V 		raw_inode->i_blocks_lo   = cpu_to_le32(i_blocks);
45418180a562SAneesh Kumar K.V 		raw_inode->i_blocks_high = cpu_to_le16(i_blocks >> 32);
45420fc1b451SAneesh Kumar K.V 	}
4543f287a1a5STheodore Ts'o 	return 0;
45440fc1b451SAneesh Kumar K.V }
45450fc1b451SAneesh Kumar K.V 
4546a26f4992STheodore Ts'o struct other_inode {
4547a26f4992STheodore Ts'o 	unsigned long		orig_ino;
4548a26f4992STheodore Ts'o 	struct ext4_inode	*raw_inode;
4549a26f4992STheodore Ts'o };
4550a26f4992STheodore Ts'o 
4551a26f4992STheodore Ts'o static int other_inode_match(struct inode * inode, unsigned long ino,
4552a26f4992STheodore Ts'o 			     void *data)
4553a26f4992STheodore Ts'o {
4554a26f4992STheodore Ts'o 	struct other_inode *oi = (struct other_inode *) data;
4555a26f4992STheodore Ts'o 
4556a26f4992STheodore Ts'o 	if ((inode->i_ino != ino) ||
4557a26f4992STheodore Ts'o 	    (inode->i_state & (I_FREEING | I_WILL_FREE | I_NEW |
4558a26f4992STheodore Ts'o 			       I_DIRTY_SYNC | I_DIRTY_DATASYNC)) ||
4559a26f4992STheodore Ts'o 	    ((inode->i_state & I_DIRTY_TIME) == 0))
4560a26f4992STheodore Ts'o 		return 0;
4561a26f4992STheodore Ts'o 	spin_lock(&inode->i_lock);
4562a26f4992STheodore Ts'o 	if (((inode->i_state & (I_FREEING | I_WILL_FREE | I_NEW |
4563a26f4992STheodore Ts'o 				I_DIRTY_SYNC | I_DIRTY_DATASYNC)) == 0) &&
4564a26f4992STheodore Ts'o 	    (inode->i_state & I_DIRTY_TIME)) {
4565a26f4992STheodore Ts'o 		struct ext4_inode_info	*ei = EXT4_I(inode);
4566a26f4992STheodore Ts'o 
4567a26f4992STheodore Ts'o 		inode->i_state &= ~(I_DIRTY_TIME | I_DIRTY_TIME_EXPIRED);
4568a26f4992STheodore Ts'o 		spin_unlock(&inode->i_lock);
4569a26f4992STheodore Ts'o 
4570a26f4992STheodore Ts'o 		spin_lock(&ei->i_raw_lock);
4571a26f4992STheodore Ts'o 		EXT4_INODE_SET_XTIME(i_ctime, inode, oi->raw_inode);
4572a26f4992STheodore Ts'o 		EXT4_INODE_SET_XTIME(i_mtime, inode, oi->raw_inode);
4573a26f4992STheodore Ts'o 		EXT4_INODE_SET_XTIME(i_atime, inode, oi->raw_inode);
4574a26f4992STheodore Ts'o 		ext4_inode_csum_set(inode, oi->raw_inode, ei);
4575a26f4992STheodore Ts'o 		spin_unlock(&ei->i_raw_lock);
4576a26f4992STheodore Ts'o 		trace_ext4_other_inode_update_time(inode, oi->orig_ino);
4577a26f4992STheodore Ts'o 		return -1;
4578a26f4992STheodore Ts'o 	}
4579a26f4992STheodore Ts'o 	spin_unlock(&inode->i_lock);
4580a26f4992STheodore Ts'o 	return -1;
4581a26f4992STheodore Ts'o }
4582a26f4992STheodore Ts'o 
4583a26f4992STheodore Ts'o /*
4584a26f4992STheodore Ts'o  * Opportunistically update the other time fields for other inodes in
4585a26f4992STheodore Ts'o  * the same inode table block.
4586a26f4992STheodore Ts'o  */
4587a26f4992STheodore Ts'o static void ext4_update_other_inodes_time(struct super_block *sb,
4588a26f4992STheodore Ts'o 					  unsigned long orig_ino, char *buf)
4589a26f4992STheodore Ts'o {
4590a26f4992STheodore Ts'o 	struct other_inode oi;
4591a26f4992STheodore Ts'o 	unsigned long ino;
4592a26f4992STheodore Ts'o 	int i, inodes_per_block = EXT4_SB(sb)->s_inodes_per_block;
4593a26f4992STheodore Ts'o 	int inode_size = EXT4_INODE_SIZE(sb);
4594a26f4992STheodore Ts'o 
4595a26f4992STheodore Ts'o 	oi.orig_ino = orig_ino;
45960f0ff9a9STheodore Ts'o 	/*
45970f0ff9a9STheodore Ts'o 	 * Calculate the first inode in the inode table block.  Inode
45980f0ff9a9STheodore Ts'o 	 * numbers are one-based.  That is, the first inode in a block
45990f0ff9a9STheodore Ts'o 	 * (assuming 4k blocks and 256 byte inodes) is (n*16 + 1).
46000f0ff9a9STheodore Ts'o 	 */
46010f0ff9a9STheodore Ts'o 	ino = ((orig_ino - 1) & ~(inodes_per_block - 1)) + 1;
4602a26f4992STheodore Ts'o 	for (i = 0; i < inodes_per_block; i++, ino++, buf += inode_size) {
4603a26f4992STheodore Ts'o 		if (ino == orig_ino)
4604a26f4992STheodore Ts'o 			continue;
4605a26f4992STheodore Ts'o 		oi.raw_inode = (struct ext4_inode *) buf;
4606a26f4992STheodore Ts'o 		(void) find_inode_nowait(sb, ino, other_inode_match, &oi);
4607a26f4992STheodore Ts'o 	}
4608a26f4992STheodore Ts'o }
4609a26f4992STheodore Ts'o 
4610ac27a0ecSDave Kleikamp /*
4611ac27a0ecSDave Kleikamp  * Post the struct inode info into an on-disk inode location in the
4612ac27a0ecSDave Kleikamp  * buffer-cache.  This gobbles the caller's reference to the
4613ac27a0ecSDave Kleikamp  * buffer_head in the inode location struct.
4614ac27a0ecSDave Kleikamp  *
4615ac27a0ecSDave Kleikamp  * The caller must have write access to iloc->bh.
4616ac27a0ecSDave Kleikamp  */
4617617ba13bSMingming Cao static int ext4_do_update_inode(handle_t *handle,
4618ac27a0ecSDave Kleikamp 				struct inode *inode,
4619830156c7SFrank Mayhar 				struct ext4_iloc *iloc)
4620ac27a0ecSDave Kleikamp {
4621617ba13bSMingming Cao 	struct ext4_inode *raw_inode = ext4_raw_inode(iloc);
4622617ba13bSMingming Cao 	struct ext4_inode_info *ei = EXT4_I(inode);
4623ac27a0ecSDave Kleikamp 	struct buffer_head *bh = iloc->bh;
4624202ee5dfSTheodore Ts'o 	struct super_block *sb = inode->i_sb;
4625ac27a0ecSDave Kleikamp 	int err = 0, rc, block;
4626202ee5dfSTheodore Ts'o 	int need_datasync = 0, set_large_file = 0;
462708cefc7aSEric W. Biederman 	uid_t i_uid;
462808cefc7aSEric W. Biederman 	gid_t i_gid;
4629040cb378SLi Xi 	projid_t i_projid;
4630ac27a0ecSDave Kleikamp 
4631202ee5dfSTheodore Ts'o 	spin_lock(&ei->i_raw_lock);
4632202ee5dfSTheodore Ts'o 
4633202ee5dfSTheodore Ts'o 	/* For fields not tracked in the in-memory inode,
4634ac27a0ecSDave Kleikamp 	 * initialise them to zero for new inodes. */
463519f5fb7aSTheodore Ts'o 	if (ext4_test_inode_state(inode, EXT4_STATE_NEW))
4636617ba13bSMingming Cao 		memset(raw_inode, 0, EXT4_SB(inode->i_sb)->s_inode_size);
4637ac27a0ecSDave Kleikamp 
4638ff9ddf7eSJan Kara 	ext4_get_inode_flags(ei);
4639ac27a0ecSDave Kleikamp 	raw_inode->i_mode = cpu_to_le16(inode->i_mode);
464008cefc7aSEric W. Biederman 	i_uid = i_uid_read(inode);
464108cefc7aSEric W. Biederman 	i_gid = i_gid_read(inode);
4642040cb378SLi Xi 	i_projid = from_kprojid(&init_user_ns, ei->i_projid);
4643ac27a0ecSDave Kleikamp 	if (!(test_opt(inode->i_sb, NO_UID32))) {
464408cefc7aSEric W. Biederman 		raw_inode->i_uid_low = cpu_to_le16(low_16_bits(i_uid));
464508cefc7aSEric W. Biederman 		raw_inode->i_gid_low = cpu_to_le16(low_16_bits(i_gid));
4646ac27a0ecSDave Kleikamp /*
4647ac27a0ecSDave Kleikamp  * Fix up interoperability with old kernels. Otherwise, old inodes get
4648ac27a0ecSDave Kleikamp  * re-used with the upper 16 bits of the uid/gid intact
4649ac27a0ecSDave Kleikamp  */
4650ac27a0ecSDave Kleikamp 		if (!ei->i_dtime) {
4651ac27a0ecSDave Kleikamp 			raw_inode->i_uid_high =
465208cefc7aSEric W. Biederman 				cpu_to_le16(high_16_bits(i_uid));
4653ac27a0ecSDave Kleikamp 			raw_inode->i_gid_high =
465408cefc7aSEric W. Biederman 				cpu_to_le16(high_16_bits(i_gid));
4655ac27a0ecSDave Kleikamp 		} else {
4656ac27a0ecSDave Kleikamp 			raw_inode->i_uid_high = 0;
4657ac27a0ecSDave Kleikamp 			raw_inode->i_gid_high = 0;
4658ac27a0ecSDave Kleikamp 		}
4659ac27a0ecSDave Kleikamp 	} else {
466008cefc7aSEric W. Biederman 		raw_inode->i_uid_low = cpu_to_le16(fs_high2lowuid(i_uid));
466108cefc7aSEric W. Biederman 		raw_inode->i_gid_low = cpu_to_le16(fs_high2lowgid(i_gid));
4662ac27a0ecSDave Kleikamp 		raw_inode->i_uid_high = 0;
4663ac27a0ecSDave Kleikamp 		raw_inode->i_gid_high = 0;
4664ac27a0ecSDave Kleikamp 	}
4665ac27a0ecSDave Kleikamp 	raw_inode->i_links_count = cpu_to_le16(inode->i_nlink);
4666ef7f3835SKalpak Shah 
4667ef7f3835SKalpak Shah 	EXT4_INODE_SET_XTIME(i_ctime, inode, raw_inode);
4668ef7f3835SKalpak Shah 	EXT4_INODE_SET_XTIME(i_mtime, inode, raw_inode);
4669ef7f3835SKalpak Shah 	EXT4_INODE_SET_XTIME(i_atime, inode, raw_inode);
4670ef7f3835SKalpak Shah 	EXT4_EINODE_SET_XTIME(i_crtime, ei, raw_inode);
4671ef7f3835SKalpak Shah 
4672bce92d56SLi Xi 	err = ext4_inode_blocks_set(handle, raw_inode, ei);
4673bce92d56SLi Xi 	if (err) {
4674202ee5dfSTheodore Ts'o 		spin_unlock(&ei->i_raw_lock);
46750fc1b451SAneesh Kumar K.V 		goto out_brelse;
4676202ee5dfSTheodore Ts'o 	}
4677ac27a0ecSDave Kleikamp 	raw_inode->i_dtime = cpu_to_le32(ei->i_dtime);
4678353eb83cSTheodore Ts'o 	raw_inode->i_flags = cpu_to_le32(ei->i_flags & 0xFFFFFFFF);
4679ed3654ebSTheodore Ts'o 	if (likely(!test_opt2(inode->i_sb, HURD_COMPAT)))
4680a1ddeb7eSBadari Pulavarty 		raw_inode->i_file_acl_high =
4681a1ddeb7eSBadari Pulavarty 			cpu_to_le16(ei->i_file_acl >> 32);
46827973c0c1SAneesh Kumar K.V 	raw_inode->i_file_acl_lo = cpu_to_le32(ei->i_file_acl);
4683b71fc079SJan Kara 	if (ei->i_disksize != ext4_isize(raw_inode)) {
4684a48380f7SAneesh Kumar K.V 		ext4_isize_set(raw_inode, ei->i_disksize);
4685b71fc079SJan Kara 		need_datasync = 1;
4686b71fc079SJan Kara 	}
4687ac27a0ecSDave Kleikamp 	if (ei->i_disksize > 0x7fffffffULL) {
4688e2b911c5SDarrick J. Wong 		if (!ext4_has_feature_large_file(sb) ||
4689617ba13bSMingming Cao 				EXT4_SB(sb)->s_es->s_rev_level ==
4690202ee5dfSTheodore Ts'o 		    cpu_to_le32(EXT4_GOOD_OLD_REV))
4691202ee5dfSTheodore Ts'o 			set_large_file = 1;
4692ac27a0ecSDave Kleikamp 	}
4693ac27a0ecSDave Kleikamp 	raw_inode->i_generation = cpu_to_le32(inode->i_generation);
4694ac27a0ecSDave Kleikamp 	if (S_ISCHR(inode->i_mode) || S_ISBLK(inode->i_mode)) {
4695ac27a0ecSDave Kleikamp 		if (old_valid_dev(inode->i_rdev)) {
4696ac27a0ecSDave Kleikamp 			raw_inode->i_block[0] =
4697ac27a0ecSDave Kleikamp 				cpu_to_le32(old_encode_dev(inode->i_rdev));
4698ac27a0ecSDave Kleikamp 			raw_inode->i_block[1] = 0;
4699ac27a0ecSDave Kleikamp 		} else {
4700ac27a0ecSDave Kleikamp 			raw_inode->i_block[0] = 0;
4701ac27a0ecSDave Kleikamp 			raw_inode->i_block[1] =
4702ac27a0ecSDave Kleikamp 				cpu_to_le32(new_encode_dev(inode->i_rdev));
4703ac27a0ecSDave Kleikamp 			raw_inode->i_block[2] = 0;
4704ac27a0ecSDave Kleikamp 		}
4705f19d5870STao Ma 	} else if (!ext4_has_inline_data(inode)) {
4706de9a55b8STheodore Ts'o 		for (block = 0; block < EXT4_N_BLOCKS; block++)
4707ac27a0ecSDave Kleikamp 			raw_inode->i_block[block] = ei->i_data[block];
4708f19d5870STao Ma 	}
4709ac27a0ecSDave Kleikamp 
4710ed3654ebSTheodore Ts'o 	if (likely(!test_opt2(inode->i_sb, HURD_COMPAT))) {
471125ec56b5SJean Noel Cordenner 		raw_inode->i_disk_version = cpu_to_le32(inode->i_version);
471225ec56b5SJean Noel Cordenner 		if (ei->i_extra_isize) {
471325ec56b5SJean Noel Cordenner 			if (EXT4_FITS_IN_INODE(raw_inode, ei, i_version_hi))
471425ec56b5SJean Noel Cordenner 				raw_inode->i_version_hi =
471525ec56b5SJean Noel Cordenner 					cpu_to_le32(inode->i_version >> 32);
4716c4f65706STheodore Ts'o 			raw_inode->i_extra_isize =
4717c4f65706STheodore Ts'o 				cpu_to_le16(ei->i_extra_isize);
4718c4f65706STheodore Ts'o 		}
471925ec56b5SJean Noel Cordenner 	}
4720040cb378SLi Xi 
4721040cb378SLi Xi 	BUG_ON(!EXT4_HAS_RO_COMPAT_FEATURE(inode->i_sb,
4722040cb378SLi Xi 			EXT4_FEATURE_RO_COMPAT_PROJECT) &&
4723040cb378SLi Xi 	       i_projid != EXT4_DEF_PROJID);
4724040cb378SLi Xi 
4725040cb378SLi Xi 	if (EXT4_INODE_SIZE(inode->i_sb) > EXT4_GOOD_OLD_INODE_SIZE &&
4726040cb378SLi Xi 	    EXT4_FITS_IN_INODE(raw_inode, ei, i_projid))
4727040cb378SLi Xi 		raw_inode->i_projid = cpu_to_le32(i_projid);
4728040cb378SLi Xi 
4729814525f4SDarrick J. Wong 	ext4_inode_csum_set(inode, raw_inode, ei);
4730202ee5dfSTheodore Ts'o 	spin_unlock(&ei->i_raw_lock);
4731a26f4992STheodore Ts'o 	if (inode->i_sb->s_flags & MS_LAZYTIME)
4732a26f4992STheodore Ts'o 		ext4_update_other_inodes_time(inode->i_sb, inode->i_ino,
4733a26f4992STheodore Ts'o 					      bh->b_data);
4734202ee5dfSTheodore Ts'o 
47350390131bSFrank Mayhar 	BUFFER_TRACE(bh, "call ext4_handle_dirty_metadata");
473673b50c1cSCurt Wohlgemuth 	rc = ext4_handle_dirty_metadata(handle, NULL, bh);
4737ac27a0ecSDave Kleikamp 	if (!err)
4738ac27a0ecSDave Kleikamp 		err = rc;
473919f5fb7aSTheodore Ts'o 	ext4_clear_inode_state(inode, EXT4_STATE_NEW);
4740202ee5dfSTheodore Ts'o 	if (set_large_file) {
47415d601255Sliang xie 		BUFFER_TRACE(EXT4_SB(sb)->s_sbh, "get write access");
4742202ee5dfSTheodore Ts'o 		err = ext4_journal_get_write_access(handle, EXT4_SB(sb)->s_sbh);
4743202ee5dfSTheodore Ts'o 		if (err)
4744202ee5dfSTheodore Ts'o 			goto out_brelse;
4745202ee5dfSTheodore Ts'o 		ext4_update_dynamic_rev(sb);
4746e2b911c5SDarrick J. Wong 		ext4_set_feature_large_file(sb);
4747202ee5dfSTheodore Ts'o 		ext4_handle_sync(handle);
4748202ee5dfSTheodore Ts'o 		err = ext4_handle_dirty_super(handle, sb);
4749202ee5dfSTheodore Ts'o 	}
4750b71fc079SJan Kara 	ext4_update_inode_fsync_trans(handle, inode, need_datasync);
4751ac27a0ecSDave Kleikamp out_brelse:
4752ac27a0ecSDave Kleikamp 	brelse(bh);
4753617ba13bSMingming Cao 	ext4_std_error(inode->i_sb, err);
4754ac27a0ecSDave Kleikamp 	return err;
4755ac27a0ecSDave Kleikamp }
4756ac27a0ecSDave Kleikamp 
4757ac27a0ecSDave Kleikamp /*
4758617ba13bSMingming Cao  * ext4_write_inode()
4759ac27a0ecSDave Kleikamp  *
4760ac27a0ecSDave Kleikamp  * We are called from a few places:
4761ac27a0ecSDave Kleikamp  *
476287f7e416STheodore Ts'o  * - Within generic_file_aio_write() -> generic_write_sync() for O_SYNC files.
4763ac27a0ecSDave Kleikamp  *   Here, there will be no transaction running. We wait for any running
47644907cb7bSAnatol Pomozov  *   transaction to commit.
4765ac27a0ecSDave Kleikamp  *
476687f7e416STheodore Ts'o  * - Within flush work (sys_sync(), kupdate and such).
476787f7e416STheodore Ts'o  *   We wait on commit, if told to.
4768ac27a0ecSDave Kleikamp  *
476987f7e416STheodore Ts'o  * - Within iput_final() -> write_inode_now()
477087f7e416STheodore Ts'o  *   We wait on commit, if told to.
4771ac27a0ecSDave Kleikamp  *
4772ac27a0ecSDave Kleikamp  * In all cases it is actually safe for us to return without doing anything,
4773ac27a0ecSDave Kleikamp  * because the inode has been copied into a raw inode buffer in
477487f7e416STheodore Ts'o  * ext4_mark_inode_dirty().  This is a correctness thing for WB_SYNC_ALL
477587f7e416STheodore Ts'o  * writeback.
4776ac27a0ecSDave Kleikamp  *
4777ac27a0ecSDave Kleikamp  * Note that we are absolutely dependent upon all inode dirtiers doing the
4778ac27a0ecSDave Kleikamp  * right thing: they *must* call mark_inode_dirty() after dirtying info in
4779ac27a0ecSDave Kleikamp  * which we are interested.
4780ac27a0ecSDave Kleikamp  *
4781ac27a0ecSDave Kleikamp  * It would be a bug for them to not do this.  The code:
4782ac27a0ecSDave Kleikamp  *
4783ac27a0ecSDave Kleikamp  *	mark_inode_dirty(inode)
4784ac27a0ecSDave Kleikamp  *	stuff();
4785ac27a0ecSDave Kleikamp  *	inode->i_size = expr;
4786ac27a0ecSDave Kleikamp  *
478787f7e416STheodore Ts'o  * is in error because write_inode() could occur while `stuff()' is running,
478887f7e416STheodore Ts'o  * and the new i_size will be lost.  Plus the inode will no longer be on the
478987f7e416STheodore Ts'o  * superblock's dirty inode list.
4790ac27a0ecSDave Kleikamp  */
4791a9185b41SChristoph Hellwig int ext4_write_inode(struct inode *inode, struct writeback_control *wbc)
4792ac27a0ecSDave Kleikamp {
479391ac6f43SFrank Mayhar 	int err;
479491ac6f43SFrank Mayhar 
479587f7e416STheodore Ts'o 	if (WARN_ON_ONCE(current->flags & PF_MEMALLOC))
4796ac27a0ecSDave Kleikamp 		return 0;
4797ac27a0ecSDave Kleikamp 
479891ac6f43SFrank Mayhar 	if (EXT4_SB(inode->i_sb)->s_journal) {
4799617ba13bSMingming Cao 		if (ext4_journal_current_handle()) {
4800b38bd33aSMingming Cao 			jbd_debug(1, "called recursively, non-PF_MEMALLOC!\n");
4801ac27a0ecSDave Kleikamp 			dump_stack();
4802ac27a0ecSDave Kleikamp 			return -EIO;
4803ac27a0ecSDave Kleikamp 		}
4804ac27a0ecSDave Kleikamp 
480510542c22SJan Kara 		/*
480610542c22SJan Kara 		 * No need to force transaction in WB_SYNC_NONE mode. Also
480710542c22SJan Kara 		 * ext4_sync_fs() will force the commit after everything is
480810542c22SJan Kara 		 * written.
480910542c22SJan Kara 		 */
481010542c22SJan Kara 		if (wbc->sync_mode != WB_SYNC_ALL || wbc->for_sync)
4811ac27a0ecSDave Kleikamp 			return 0;
4812ac27a0ecSDave Kleikamp 
481391ac6f43SFrank Mayhar 		err = ext4_force_commit(inode->i_sb);
481491ac6f43SFrank Mayhar 	} else {
481591ac6f43SFrank Mayhar 		struct ext4_iloc iloc;
481691ac6f43SFrank Mayhar 
48178b472d73SCurt Wohlgemuth 		err = __ext4_get_inode_loc(inode, &iloc, 0);
481891ac6f43SFrank Mayhar 		if (err)
481991ac6f43SFrank Mayhar 			return err;
482010542c22SJan Kara 		/*
482110542c22SJan Kara 		 * sync(2) will flush the whole buffer cache. No need to do
482210542c22SJan Kara 		 * it here separately for each inode.
482310542c22SJan Kara 		 */
482410542c22SJan Kara 		if (wbc->sync_mode == WB_SYNC_ALL && !wbc->for_sync)
4825830156c7SFrank Mayhar 			sync_dirty_buffer(iloc.bh);
4826830156c7SFrank Mayhar 		if (buffer_req(iloc.bh) && !buffer_uptodate(iloc.bh)) {
4827c398eda0STheodore Ts'o 			EXT4_ERROR_INODE_BLOCK(inode, iloc.bh->b_blocknr,
4828c398eda0STheodore Ts'o 					 "IO error syncing inode");
4829830156c7SFrank Mayhar 			err = -EIO;
4830830156c7SFrank Mayhar 		}
4831fd2dd9fbSCurt Wohlgemuth 		brelse(iloc.bh);
483291ac6f43SFrank Mayhar 	}
483391ac6f43SFrank Mayhar 	return err;
4834ac27a0ecSDave Kleikamp }
4835ac27a0ecSDave Kleikamp 
4836ac27a0ecSDave Kleikamp /*
483753e87268SJan Kara  * In data=journal mode ext4_journalled_invalidatepage() may fail to invalidate
483853e87268SJan Kara  * buffers that are attached to a page stradding i_size and are undergoing
483953e87268SJan Kara  * commit. In that case we have to wait for commit to finish and try again.
484053e87268SJan Kara  */
484153e87268SJan Kara static void ext4_wait_for_tail_page_commit(struct inode *inode)
484253e87268SJan Kara {
484353e87268SJan Kara 	struct page *page;
484453e87268SJan Kara 	unsigned offset;
484553e87268SJan Kara 	journal_t *journal = EXT4_SB(inode->i_sb)->s_journal;
484653e87268SJan Kara 	tid_t commit_tid = 0;
484753e87268SJan Kara 	int ret;
484853e87268SJan Kara 
484953e87268SJan Kara 	offset = inode->i_size & (PAGE_CACHE_SIZE - 1);
485053e87268SJan Kara 	/*
485153e87268SJan Kara 	 * All buffers in the last page remain valid? Then there's nothing to
485253e87268SJan Kara 	 * do. We do the check mainly to optimize the common PAGE_CACHE_SIZE ==
485353e87268SJan Kara 	 * blocksize case
485453e87268SJan Kara 	 */
485553e87268SJan Kara 	if (offset > PAGE_CACHE_SIZE - (1 << inode->i_blkbits))
485653e87268SJan Kara 		return;
485753e87268SJan Kara 	while (1) {
485853e87268SJan Kara 		page = find_lock_page(inode->i_mapping,
485953e87268SJan Kara 				      inode->i_size >> PAGE_CACHE_SHIFT);
486053e87268SJan Kara 		if (!page)
486153e87268SJan Kara 			return;
4862ca99fdd2SLukas Czerner 		ret = __ext4_journalled_invalidatepage(page, offset,
4863ca99fdd2SLukas Czerner 						PAGE_CACHE_SIZE - offset);
486453e87268SJan Kara 		unlock_page(page);
486553e87268SJan Kara 		page_cache_release(page);
486653e87268SJan Kara 		if (ret != -EBUSY)
486753e87268SJan Kara 			return;
486853e87268SJan Kara 		commit_tid = 0;
486953e87268SJan Kara 		read_lock(&journal->j_state_lock);
487053e87268SJan Kara 		if (journal->j_committing_transaction)
487153e87268SJan Kara 			commit_tid = journal->j_committing_transaction->t_tid;
487253e87268SJan Kara 		read_unlock(&journal->j_state_lock);
487353e87268SJan Kara 		if (commit_tid)
487453e87268SJan Kara 			jbd2_log_wait_commit(journal, commit_tid);
487553e87268SJan Kara 	}
487653e87268SJan Kara }
487753e87268SJan Kara 
487853e87268SJan Kara /*
4879617ba13bSMingming Cao  * ext4_setattr()
4880ac27a0ecSDave Kleikamp  *
4881ac27a0ecSDave Kleikamp  * Called from notify_change.
4882ac27a0ecSDave Kleikamp  *
4883ac27a0ecSDave Kleikamp  * We want to trap VFS attempts to truncate the file as soon as
4884ac27a0ecSDave Kleikamp  * possible.  In particular, we want to make sure that when the VFS
4885ac27a0ecSDave Kleikamp  * shrinks i_size, we put the inode on the orphan list and modify
4886ac27a0ecSDave Kleikamp  * i_disksize immediately, so that during the subsequent flushing of
4887ac27a0ecSDave Kleikamp  * dirty pages and freeing of disk blocks, we can guarantee that any
4888ac27a0ecSDave Kleikamp  * commit will leave the blocks being flushed in an unused state on
4889ac27a0ecSDave Kleikamp  * disk.  (On recovery, the inode will get truncated and the blocks will
4890ac27a0ecSDave Kleikamp  * be freed, so we have a strong guarantee that no future commit will
4891ac27a0ecSDave Kleikamp  * leave these blocks visible to the user.)
4892ac27a0ecSDave Kleikamp  *
4893678aaf48SJan Kara  * Another thing we have to assure is that if we are in ordered mode
4894678aaf48SJan Kara  * and inode is still attached to the committing transaction, we must
4895678aaf48SJan Kara  * we start writeout of all the dirty pages which are being truncated.
4896678aaf48SJan Kara  * This way we are sure that all the data written in the previous
4897678aaf48SJan Kara  * transaction are already on disk (truncate waits for pages under
4898678aaf48SJan Kara  * writeback).
4899678aaf48SJan Kara  *
4900678aaf48SJan Kara  * Called with inode->i_mutex down.
4901ac27a0ecSDave Kleikamp  */
4902617ba13bSMingming Cao int ext4_setattr(struct dentry *dentry, struct iattr *attr)
4903ac27a0ecSDave Kleikamp {
49042b0143b5SDavid Howells 	struct inode *inode = d_inode(dentry);
4905ac27a0ecSDave Kleikamp 	int error, rc = 0;
49063d287de3SDmitry Monakhov 	int orphan = 0;
4907ac27a0ecSDave Kleikamp 	const unsigned int ia_valid = attr->ia_valid;
4908ac27a0ecSDave Kleikamp 
4909ac27a0ecSDave Kleikamp 	error = inode_change_ok(inode, attr);
4910ac27a0ecSDave Kleikamp 	if (error)
4911ac27a0ecSDave Kleikamp 		return error;
4912ac27a0ecSDave Kleikamp 
4913a7cdadeeSJan Kara 	if (is_quota_modification(inode, attr)) {
4914a7cdadeeSJan Kara 		error = dquot_initialize(inode);
4915a7cdadeeSJan Kara 		if (error)
4916a7cdadeeSJan Kara 			return error;
4917a7cdadeeSJan Kara 	}
491808cefc7aSEric W. Biederman 	if ((ia_valid & ATTR_UID && !uid_eq(attr->ia_uid, inode->i_uid)) ||
491908cefc7aSEric W. Biederman 	    (ia_valid & ATTR_GID && !gid_eq(attr->ia_gid, inode->i_gid))) {
4920ac27a0ecSDave Kleikamp 		handle_t *handle;
4921ac27a0ecSDave Kleikamp 
4922ac27a0ecSDave Kleikamp 		/* (user+group)*(old+new) structure, inode write (sb,
4923ac27a0ecSDave Kleikamp 		 * inode block, ? - but truncate inode update has it) */
49249924a92aSTheodore Ts'o 		handle = ext4_journal_start(inode, EXT4_HT_QUOTA,
49259924a92aSTheodore Ts'o 			(EXT4_MAXQUOTAS_INIT_BLOCKS(inode->i_sb) +
4926194074acSDmitry Monakhov 			 EXT4_MAXQUOTAS_DEL_BLOCKS(inode->i_sb)) + 3);
4927ac27a0ecSDave Kleikamp 		if (IS_ERR(handle)) {
4928ac27a0ecSDave Kleikamp 			error = PTR_ERR(handle);
4929ac27a0ecSDave Kleikamp 			goto err_out;
4930ac27a0ecSDave Kleikamp 		}
4931b43fa828SChristoph Hellwig 		error = dquot_transfer(inode, attr);
4932ac27a0ecSDave Kleikamp 		if (error) {
4933617ba13bSMingming Cao 			ext4_journal_stop(handle);
4934ac27a0ecSDave Kleikamp 			return error;
4935ac27a0ecSDave Kleikamp 		}
4936ac27a0ecSDave Kleikamp 		/* Update corresponding info in inode so that everything is in
4937ac27a0ecSDave Kleikamp 		 * one transaction */
4938ac27a0ecSDave Kleikamp 		if (attr->ia_valid & ATTR_UID)
4939ac27a0ecSDave Kleikamp 			inode->i_uid = attr->ia_uid;
4940ac27a0ecSDave Kleikamp 		if (attr->ia_valid & ATTR_GID)
4941ac27a0ecSDave Kleikamp 			inode->i_gid = attr->ia_gid;
4942617ba13bSMingming Cao 		error = ext4_mark_inode_dirty(handle, inode);
4943617ba13bSMingming Cao 		ext4_journal_stop(handle);
4944ac27a0ecSDave Kleikamp 	}
4945ac27a0ecSDave Kleikamp 
49463da40c7bSJosef Bacik 	if (attr->ia_valid & ATTR_SIZE) {
49475208386cSJan Kara 		handle_t *handle;
49483da40c7bSJosef Bacik 		loff_t oldsize = inode->i_size;
49493da40c7bSJosef Bacik 		int shrink = (attr->ia_size <= inode->i_size);
4950562c72aaSChristoph Hellwig 
495112e9b892SDmitry Monakhov 		if (!(ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS))) {
4952e2b46574SEric Sandeen 			struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb);
4953e2b46574SEric Sandeen 
49540c095c7fSTheodore Ts'o 			if (attr->ia_size > sbi->s_bitmap_maxbytes)
49550c095c7fSTheodore Ts'o 				return -EFBIG;
4956e2b46574SEric Sandeen 		}
49573da40c7bSJosef Bacik 		if (!S_ISREG(inode->i_mode))
49583da40c7bSJosef Bacik 			return -EINVAL;
4959dff6efc3SChristoph Hellwig 
4960dff6efc3SChristoph Hellwig 		if (IS_I_VERSION(inode) && attr->ia_size != inode->i_size)
4961dff6efc3SChristoph Hellwig 			inode_inc_iversion(inode);
4962dff6efc3SChristoph Hellwig 
49633da40c7bSJosef Bacik 		if (ext4_should_order_data(inode) &&
4964072bd7eaSTheodore Ts'o 		    (attr->ia_size < inode->i_size)) {
49655208386cSJan Kara 			error = ext4_begin_ordered_truncate(inode,
49665208386cSJan Kara 							    attr->ia_size);
49675208386cSJan Kara 			if (error)
49685208386cSJan Kara 				goto err_out;
49695208386cSJan Kara 		}
49703da40c7bSJosef Bacik 		if (attr->ia_size != inode->i_size) {
49719924a92aSTheodore Ts'o 			handle = ext4_journal_start(inode, EXT4_HT_INODE, 3);
4972ac27a0ecSDave Kleikamp 			if (IS_ERR(handle)) {
4973ac27a0ecSDave Kleikamp 				error = PTR_ERR(handle);
4974ac27a0ecSDave Kleikamp 				goto err_out;
4975ac27a0ecSDave Kleikamp 			}
49763da40c7bSJosef Bacik 			if (ext4_handle_valid(handle) && shrink) {
4977617ba13bSMingming Cao 				error = ext4_orphan_add(handle, inode);
49783d287de3SDmitry Monakhov 				orphan = 1;
49793d287de3SDmitry Monakhov 			}
4980911af577SEryu Guan 			/*
4981911af577SEryu Guan 			 * Update c/mtime on truncate up, ext4_truncate() will
4982911af577SEryu Guan 			 * update c/mtime in shrink case below
4983911af577SEryu Guan 			 */
4984911af577SEryu Guan 			if (!shrink) {
4985911af577SEryu Guan 				inode->i_mtime = ext4_current_time(inode);
4986911af577SEryu Guan 				inode->i_ctime = inode->i_mtime;
4987911af577SEryu Guan 			}
498890e775b7SJan Kara 			down_write(&EXT4_I(inode)->i_data_sem);
4989617ba13bSMingming Cao 			EXT4_I(inode)->i_disksize = attr->ia_size;
4990617ba13bSMingming Cao 			rc = ext4_mark_inode_dirty(handle, inode);
4991ac27a0ecSDave Kleikamp 			if (!error)
4992ac27a0ecSDave Kleikamp 				error = rc;
499390e775b7SJan Kara 			/*
499490e775b7SJan Kara 			 * We have to update i_size under i_data_sem together
499590e775b7SJan Kara 			 * with i_disksize to avoid races with writeback code
499690e775b7SJan Kara 			 * running ext4_wb_update_i_disksize().
499790e775b7SJan Kara 			 */
499890e775b7SJan Kara 			if (!error)
499990e775b7SJan Kara 				i_size_write(inode, attr->ia_size);
500090e775b7SJan Kara 			up_write(&EXT4_I(inode)->i_data_sem);
5001617ba13bSMingming Cao 			ext4_journal_stop(handle);
5002678aaf48SJan Kara 			if (error) {
50033da40c7bSJosef Bacik 				if (orphan)
5004678aaf48SJan Kara 					ext4_orphan_del(NULL, inode);
5005678aaf48SJan Kara 				goto err_out;
5006678aaf48SJan Kara 			}
5007d6320cbfSJan Kara 		}
50083da40c7bSJosef Bacik 		if (!shrink)
50093da40c7bSJosef Bacik 			pagecache_isize_extended(inode, oldsize, inode->i_size);
501090e775b7SJan Kara 
501153e87268SJan Kara 		/*
501253e87268SJan Kara 		 * Blocks are going to be removed from the inode. Wait
501353e87268SJan Kara 		 * for dio in flight.  Temporarily disable
501453e87268SJan Kara 		 * dioread_nolock to prevent livelock.
501553e87268SJan Kara 		 */
50161b65007eSDmitry Monakhov 		if (orphan) {
501753e87268SJan Kara 			if (!ext4_should_journal_data(inode)) {
50181b65007eSDmitry Monakhov 				ext4_inode_block_unlocked_dio(inode);
50191c9114f9SDmitry Monakhov 				inode_dio_wait(inode);
50201b65007eSDmitry Monakhov 				ext4_inode_resume_unlocked_dio(inode);
502153e87268SJan Kara 			} else
502253e87268SJan Kara 				ext4_wait_for_tail_page_commit(inode);
50231b65007eSDmitry Monakhov 		}
5024ea3d7209SJan Kara 		down_write(&EXT4_I(inode)->i_mmap_sem);
502553e87268SJan Kara 		/*
502653e87268SJan Kara 		 * Truncate pagecache after we've waited for commit
502753e87268SJan Kara 		 * in data=journal mode to make pages freeable.
502853e87268SJan Kara 		 */
50297caef267SKirill A. Shutemov 		truncate_pagecache(inode, inode->i_size);
50303da40c7bSJosef Bacik 		if (shrink)
5031072bd7eaSTheodore Ts'o 			ext4_truncate(inode);
5032ea3d7209SJan Kara 		up_write(&EXT4_I(inode)->i_mmap_sem);
50333da40c7bSJosef Bacik 	}
5034ac27a0ecSDave Kleikamp 
50351025774cSChristoph Hellwig 	if (!rc) {
50361025774cSChristoph Hellwig 		setattr_copy(inode, attr);
50371025774cSChristoph Hellwig 		mark_inode_dirty(inode);
50381025774cSChristoph Hellwig 	}
50391025774cSChristoph Hellwig 
50401025774cSChristoph Hellwig 	/*
50411025774cSChristoph Hellwig 	 * If the call to ext4_truncate failed to get a transaction handle at
50421025774cSChristoph Hellwig 	 * all, we need to clean up the in-core orphan list manually.
50431025774cSChristoph Hellwig 	 */
50443d287de3SDmitry Monakhov 	if (orphan && inode->i_nlink)
5045617ba13bSMingming Cao 		ext4_orphan_del(NULL, inode);
5046ac27a0ecSDave Kleikamp 
5047ac27a0ecSDave Kleikamp 	if (!rc && (ia_valid & ATTR_MODE))
504864e178a7SChristoph Hellwig 		rc = posix_acl_chmod(inode, inode->i_mode);
5049ac27a0ecSDave Kleikamp 
5050ac27a0ecSDave Kleikamp err_out:
5051617ba13bSMingming Cao 	ext4_std_error(inode->i_sb, error);
5052ac27a0ecSDave Kleikamp 	if (!error)
5053ac27a0ecSDave Kleikamp 		error = rc;
5054ac27a0ecSDave Kleikamp 	return error;
5055ac27a0ecSDave Kleikamp }
5056ac27a0ecSDave Kleikamp 
50573e3398a0SMingming Cao int ext4_getattr(struct vfsmount *mnt, struct dentry *dentry,
50583e3398a0SMingming Cao 		 struct kstat *stat)
50593e3398a0SMingming Cao {
50603e3398a0SMingming Cao 	struct inode *inode;
50618af8eeccSJan Kara 	unsigned long long delalloc_blocks;
50623e3398a0SMingming Cao 
50632b0143b5SDavid Howells 	inode = d_inode(dentry);
50643e3398a0SMingming Cao 	generic_fillattr(inode, stat);
50653e3398a0SMingming Cao 
50663e3398a0SMingming Cao 	/*
50679206c561SAndreas Dilger 	 * If there is inline data in the inode, the inode will normally not
50689206c561SAndreas Dilger 	 * have data blocks allocated (it may have an external xattr block).
50699206c561SAndreas Dilger 	 * Report at least one sector for such files, so tools like tar, rsync,
50709206c561SAndreas Dilger 	 * others doen't incorrectly think the file is completely sparse.
50719206c561SAndreas Dilger 	 */
50729206c561SAndreas Dilger 	if (unlikely(ext4_has_inline_data(inode)))
50739206c561SAndreas Dilger 		stat->blocks += (stat->size + 511) >> 9;
50749206c561SAndreas Dilger 
50759206c561SAndreas Dilger 	/*
50763e3398a0SMingming Cao 	 * We can't update i_blocks if the block allocation is delayed
50773e3398a0SMingming Cao 	 * otherwise in the case of system crash before the real block
50783e3398a0SMingming Cao 	 * allocation is done, we will have i_blocks inconsistent with
50793e3398a0SMingming Cao 	 * on-disk file blocks.
50803e3398a0SMingming Cao 	 * We always keep i_blocks updated together with real
50813e3398a0SMingming Cao 	 * allocation. But to not confuse with user, stat
50823e3398a0SMingming Cao 	 * will return the blocks that include the delayed allocation
50833e3398a0SMingming Cao 	 * blocks for this file.
50843e3398a0SMingming Cao 	 */
508596607551STao Ma 	delalloc_blocks = EXT4_C2B(EXT4_SB(inode->i_sb),
508696607551STao Ma 				   EXT4_I(inode)->i_reserved_data_blocks);
50878af8eeccSJan Kara 	stat->blocks += delalloc_blocks << (inode->i_sb->s_blocksize_bits - 9);
50883e3398a0SMingming Cao 	return 0;
50893e3398a0SMingming Cao }
5090ac27a0ecSDave Kleikamp 
5091fffb2739SJan Kara static int ext4_index_trans_blocks(struct inode *inode, int lblocks,
5092fffb2739SJan Kara 				   int pextents)
5093a02908f1SMingming Cao {
509412e9b892SDmitry Monakhov 	if (!(ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS)))
5095fffb2739SJan Kara 		return ext4_ind_trans_blocks(inode, lblocks);
5096fffb2739SJan Kara 	return ext4_ext_index_trans_blocks(inode, pextents);
5097a02908f1SMingming Cao }
5098ac51d837STheodore Ts'o 
5099a02908f1SMingming Cao /*
5100a02908f1SMingming Cao  * Account for index blocks, block groups bitmaps and block group
5101a02908f1SMingming Cao  * descriptor blocks if modify datablocks and index blocks
5102a02908f1SMingming Cao  * worse case, the indexs blocks spread over different block groups
5103a02908f1SMingming Cao  *
5104a02908f1SMingming Cao  * If datablocks are discontiguous, they are possible to spread over
51054907cb7bSAnatol Pomozov  * different block groups too. If they are contiguous, with flexbg,
5106a02908f1SMingming Cao  * they could still across block group boundary.
5107a02908f1SMingming Cao  *
5108a02908f1SMingming Cao  * Also account for superblock, inode, quota and xattr blocks
5109a02908f1SMingming Cao  */
5110fffb2739SJan Kara static int ext4_meta_trans_blocks(struct inode *inode, int lblocks,
5111fffb2739SJan Kara 				  int pextents)
5112a02908f1SMingming Cao {
51138df9675fSTheodore Ts'o 	ext4_group_t groups, ngroups = ext4_get_groups_count(inode->i_sb);
51148df9675fSTheodore Ts'o 	int gdpblocks;
5115a02908f1SMingming Cao 	int idxblocks;
5116a02908f1SMingming Cao 	int ret = 0;
5117a02908f1SMingming Cao 
5118a02908f1SMingming Cao 	/*
5119fffb2739SJan Kara 	 * How many index blocks need to touch to map @lblocks logical blocks
5120fffb2739SJan Kara 	 * to @pextents physical extents?
5121a02908f1SMingming Cao 	 */
5122fffb2739SJan Kara 	idxblocks = ext4_index_trans_blocks(inode, lblocks, pextents);
5123a02908f1SMingming Cao 
5124a02908f1SMingming Cao 	ret = idxblocks;
5125a02908f1SMingming Cao 
5126a02908f1SMingming Cao 	/*
5127a02908f1SMingming Cao 	 * Now let's see how many group bitmaps and group descriptors need
5128a02908f1SMingming Cao 	 * to account
5129a02908f1SMingming Cao 	 */
5130fffb2739SJan Kara 	groups = idxblocks + pextents;
5131a02908f1SMingming Cao 	gdpblocks = groups;
51328df9675fSTheodore Ts'o 	if (groups > ngroups)
51338df9675fSTheodore Ts'o 		groups = ngroups;
5134a02908f1SMingming Cao 	if (groups > EXT4_SB(inode->i_sb)->s_gdb_count)
5135a02908f1SMingming Cao 		gdpblocks = EXT4_SB(inode->i_sb)->s_gdb_count;
5136a02908f1SMingming Cao 
5137a02908f1SMingming Cao 	/* bitmaps and block group descriptor blocks */
5138a02908f1SMingming Cao 	ret += groups + gdpblocks;
5139a02908f1SMingming Cao 
5140a02908f1SMingming Cao 	/* Blocks for super block, inode, quota and xattr blocks */
5141a02908f1SMingming Cao 	ret += EXT4_META_TRANS_BLOCKS(inode->i_sb);
5142ac27a0ecSDave Kleikamp 
5143ac27a0ecSDave Kleikamp 	return ret;
5144ac27a0ecSDave Kleikamp }
5145ac27a0ecSDave Kleikamp 
5146ac27a0ecSDave Kleikamp /*
514725985edcSLucas De Marchi  * Calculate the total number of credits to reserve to fit
5148f3bd1f3fSMingming Cao  * the modification of a single pages into a single transaction,
5149f3bd1f3fSMingming Cao  * which may include multiple chunks of block allocations.
5150a02908f1SMingming Cao  *
5151525f4ed8SMingming Cao  * This could be called via ext4_write_begin()
5152a02908f1SMingming Cao  *
5153525f4ed8SMingming Cao  * We need to consider the worse case, when
5154a02908f1SMingming Cao  * one new block per extent.
5155a02908f1SMingming Cao  */
5156a02908f1SMingming Cao int ext4_writepage_trans_blocks(struct inode *inode)
5157a02908f1SMingming Cao {
5158a02908f1SMingming Cao 	int bpp = ext4_journal_blocks_per_page(inode);
5159a02908f1SMingming Cao 	int ret;
5160a02908f1SMingming Cao 
5161fffb2739SJan Kara 	ret = ext4_meta_trans_blocks(inode, bpp, bpp);
5162a02908f1SMingming Cao 
5163a02908f1SMingming Cao 	/* Account for data blocks for journalled mode */
5164a02908f1SMingming Cao 	if (ext4_should_journal_data(inode))
5165a02908f1SMingming Cao 		ret += bpp;
5166a02908f1SMingming Cao 	return ret;
5167a02908f1SMingming Cao }
5168f3bd1f3fSMingming Cao 
5169f3bd1f3fSMingming Cao /*
5170f3bd1f3fSMingming Cao  * Calculate the journal credits for a chunk of data modification.
5171f3bd1f3fSMingming Cao  *
5172f3bd1f3fSMingming Cao  * This is called from DIO, fallocate or whoever calling
517379e83036SEric Sandeen  * ext4_map_blocks() to map/allocate a chunk of contiguous disk blocks.
5174f3bd1f3fSMingming Cao  *
5175f3bd1f3fSMingming Cao  * journal buffers for data blocks are not included here, as DIO
5176f3bd1f3fSMingming Cao  * and fallocate do no need to journal data buffers.
5177f3bd1f3fSMingming Cao  */
5178f3bd1f3fSMingming Cao int ext4_chunk_trans_blocks(struct inode *inode, int nrblocks)
5179f3bd1f3fSMingming Cao {
5180f3bd1f3fSMingming Cao 	return ext4_meta_trans_blocks(inode, nrblocks, 1);
5181f3bd1f3fSMingming Cao }
5182f3bd1f3fSMingming Cao 
5183a02908f1SMingming Cao /*
5184617ba13bSMingming Cao  * The caller must have previously called ext4_reserve_inode_write().
5185ac27a0ecSDave Kleikamp  * Give this, we know that the caller already has write access to iloc->bh.
5186ac27a0ecSDave Kleikamp  */
5187617ba13bSMingming Cao int ext4_mark_iloc_dirty(handle_t *handle,
5188617ba13bSMingming Cao 			 struct inode *inode, struct ext4_iloc *iloc)
5189ac27a0ecSDave Kleikamp {
5190ac27a0ecSDave Kleikamp 	int err = 0;
5191ac27a0ecSDave Kleikamp 
5192c64db50eSTheodore Ts'o 	if (IS_I_VERSION(inode))
519325ec56b5SJean Noel Cordenner 		inode_inc_iversion(inode);
519425ec56b5SJean Noel Cordenner 
5195ac27a0ecSDave Kleikamp 	/* the do_update_inode consumes one bh->b_count */
5196ac27a0ecSDave Kleikamp 	get_bh(iloc->bh);
5197ac27a0ecSDave Kleikamp 
5198dab291afSMingming Cao 	/* ext4_do_update_inode() does jbd2_journal_dirty_metadata */
5199830156c7SFrank Mayhar 	err = ext4_do_update_inode(handle, inode, iloc);
5200ac27a0ecSDave Kleikamp 	put_bh(iloc->bh);
5201ac27a0ecSDave Kleikamp 	return err;
5202ac27a0ecSDave Kleikamp }
5203ac27a0ecSDave Kleikamp 
5204ac27a0ecSDave Kleikamp /*
5205ac27a0ecSDave Kleikamp  * On success, We end up with an outstanding reference count against
5206ac27a0ecSDave Kleikamp  * iloc->bh.  This _must_ be cleaned up later.
5207ac27a0ecSDave Kleikamp  */
5208ac27a0ecSDave Kleikamp 
5209ac27a0ecSDave Kleikamp int
5210617ba13bSMingming Cao ext4_reserve_inode_write(handle_t *handle, struct inode *inode,
5211617ba13bSMingming Cao 			 struct ext4_iloc *iloc)
5212ac27a0ecSDave Kleikamp {
52130390131bSFrank Mayhar 	int err;
52140390131bSFrank Mayhar 
5215617ba13bSMingming Cao 	err = ext4_get_inode_loc(inode, iloc);
5216ac27a0ecSDave Kleikamp 	if (!err) {
5217ac27a0ecSDave Kleikamp 		BUFFER_TRACE(iloc->bh, "get_write_access");
5218617ba13bSMingming Cao 		err = ext4_journal_get_write_access(handle, iloc->bh);
5219ac27a0ecSDave Kleikamp 		if (err) {
5220ac27a0ecSDave Kleikamp 			brelse(iloc->bh);
5221ac27a0ecSDave Kleikamp 			iloc->bh = NULL;
5222ac27a0ecSDave Kleikamp 		}
5223ac27a0ecSDave Kleikamp 	}
5224617ba13bSMingming Cao 	ext4_std_error(inode->i_sb, err);
5225ac27a0ecSDave Kleikamp 	return err;
5226ac27a0ecSDave Kleikamp }
5227ac27a0ecSDave Kleikamp 
5228ac27a0ecSDave Kleikamp /*
52296dd4ee7cSKalpak Shah  * Expand an inode by new_extra_isize bytes.
52306dd4ee7cSKalpak Shah  * Returns 0 on success or negative error number on failure.
52316dd4ee7cSKalpak Shah  */
52321d03ec98SAneesh Kumar K.V static int ext4_expand_extra_isize(struct inode *inode,
52331d03ec98SAneesh Kumar K.V 				   unsigned int new_extra_isize,
52341d03ec98SAneesh Kumar K.V 				   struct ext4_iloc iloc,
52351d03ec98SAneesh Kumar K.V 				   handle_t *handle)
52366dd4ee7cSKalpak Shah {
52376dd4ee7cSKalpak Shah 	struct ext4_inode *raw_inode;
52386dd4ee7cSKalpak Shah 	struct ext4_xattr_ibody_header *header;
52396dd4ee7cSKalpak Shah 
52406dd4ee7cSKalpak Shah 	if (EXT4_I(inode)->i_extra_isize >= new_extra_isize)
52416dd4ee7cSKalpak Shah 		return 0;
52426dd4ee7cSKalpak Shah 
52436dd4ee7cSKalpak Shah 	raw_inode = ext4_raw_inode(&iloc);
52446dd4ee7cSKalpak Shah 
52456dd4ee7cSKalpak Shah 	header = IHDR(inode, raw_inode);
52466dd4ee7cSKalpak Shah 
52476dd4ee7cSKalpak Shah 	/* No extended attributes present */
524819f5fb7aSTheodore Ts'o 	if (!ext4_test_inode_state(inode, EXT4_STATE_XATTR) ||
52496dd4ee7cSKalpak Shah 	    header->h_magic != cpu_to_le32(EXT4_XATTR_MAGIC)) {
52506dd4ee7cSKalpak Shah 		memset((void *)raw_inode + EXT4_GOOD_OLD_INODE_SIZE, 0,
52516dd4ee7cSKalpak Shah 			new_extra_isize);
52526dd4ee7cSKalpak Shah 		EXT4_I(inode)->i_extra_isize = new_extra_isize;
52536dd4ee7cSKalpak Shah 		return 0;
52546dd4ee7cSKalpak Shah 	}
52556dd4ee7cSKalpak Shah 
52566dd4ee7cSKalpak Shah 	/* try to expand with EAs present */
52576dd4ee7cSKalpak Shah 	return ext4_expand_extra_isize_ea(inode, new_extra_isize,
52586dd4ee7cSKalpak Shah 					  raw_inode, handle);
52596dd4ee7cSKalpak Shah }
52606dd4ee7cSKalpak Shah 
52616dd4ee7cSKalpak Shah /*
5262ac27a0ecSDave Kleikamp  * What we do here is to mark the in-core inode as clean with respect to inode
5263ac27a0ecSDave Kleikamp  * dirtiness (it may still be data-dirty).
5264ac27a0ecSDave Kleikamp  * This means that the in-core inode may be reaped by prune_icache
5265ac27a0ecSDave Kleikamp  * without having to perform any I/O.  This is a very good thing,
5266ac27a0ecSDave Kleikamp  * because *any* task may call prune_icache - even ones which
5267ac27a0ecSDave Kleikamp  * have a transaction open against a different journal.
5268ac27a0ecSDave Kleikamp  *
5269ac27a0ecSDave Kleikamp  * Is this cheating?  Not really.  Sure, we haven't written the
5270ac27a0ecSDave Kleikamp  * inode out, but prune_icache isn't a user-visible syncing function.
5271ac27a0ecSDave Kleikamp  * Whenever the user wants stuff synced (sys_sync, sys_msync, sys_fsync)
5272ac27a0ecSDave Kleikamp  * we start and wait on commits.
5273ac27a0ecSDave Kleikamp  */
5274617ba13bSMingming Cao int ext4_mark_inode_dirty(handle_t *handle, struct inode *inode)
5275ac27a0ecSDave Kleikamp {
5276617ba13bSMingming Cao 	struct ext4_iloc iloc;
52776dd4ee7cSKalpak Shah 	struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb);
52786dd4ee7cSKalpak Shah 	static unsigned int mnt_count;
52796dd4ee7cSKalpak Shah 	int err, ret;
5280ac27a0ecSDave Kleikamp 
5281ac27a0ecSDave Kleikamp 	might_sleep();
52827ff9c073STheodore Ts'o 	trace_ext4_mark_inode_dirty(inode, _RET_IP_);
5283617ba13bSMingming Cao 	err = ext4_reserve_inode_write(handle, inode, &iloc);
52840390131bSFrank Mayhar 	if (ext4_handle_valid(handle) &&
52850390131bSFrank Mayhar 	    EXT4_I(inode)->i_extra_isize < sbi->s_want_extra_isize &&
528619f5fb7aSTheodore Ts'o 	    !ext4_test_inode_state(inode, EXT4_STATE_NO_EXPAND)) {
52876dd4ee7cSKalpak Shah 		/*
52886dd4ee7cSKalpak Shah 		 * We need extra buffer credits since we may write into EA block
52896dd4ee7cSKalpak Shah 		 * with this same handle. If journal_extend fails, then it will
52906dd4ee7cSKalpak Shah 		 * only result in a minor loss of functionality for that inode.
52916dd4ee7cSKalpak Shah 		 * If this is felt to be critical, then e2fsck should be run to
52926dd4ee7cSKalpak Shah 		 * force a large enough s_min_extra_isize.
52936dd4ee7cSKalpak Shah 		 */
52946dd4ee7cSKalpak Shah 		if ((jbd2_journal_extend(handle,
52956dd4ee7cSKalpak Shah 			     EXT4_DATA_TRANS_BLOCKS(inode->i_sb))) == 0) {
52966dd4ee7cSKalpak Shah 			ret = ext4_expand_extra_isize(inode,
52976dd4ee7cSKalpak Shah 						      sbi->s_want_extra_isize,
52986dd4ee7cSKalpak Shah 						      iloc, handle);
52996dd4ee7cSKalpak Shah 			if (ret) {
530019f5fb7aSTheodore Ts'o 				ext4_set_inode_state(inode,
530119f5fb7aSTheodore Ts'o 						     EXT4_STATE_NO_EXPAND);
5302c1bddad9SAneesh Kumar K.V 				if (mnt_count !=
5303c1bddad9SAneesh Kumar K.V 					le16_to_cpu(sbi->s_es->s_mnt_count)) {
530412062dddSEric Sandeen 					ext4_warning(inode->i_sb,
53056dd4ee7cSKalpak Shah 					"Unable to expand inode %lu. Delete"
53066dd4ee7cSKalpak Shah 					" some EAs or run e2fsck.",
53076dd4ee7cSKalpak Shah 					inode->i_ino);
5308c1bddad9SAneesh Kumar K.V 					mnt_count =
5309c1bddad9SAneesh Kumar K.V 					  le16_to_cpu(sbi->s_es->s_mnt_count);
53106dd4ee7cSKalpak Shah 				}
53116dd4ee7cSKalpak Shah 			}
53126dd4ee7cSKalpak Shah 		}
53136dd4ee7cSKalpak Shah 	}
5314ac27a0ecSDave Kleikamp 	if (!err)
5315617ba13bSMingming Cao 		err = ext4_mark_iloc_dirty(handle, inode, &iloc);
5316ac27a0ecSDave Kleikamp 	return err;
5317ac27a0ecSDave Kleikamp }
5318ac27a0ecSDave Kleikamp 
5319ac27a0ecSDave Kleikamp /*
5320617ba13bSMingming Cao  * ext4_dirty_inode() is called from __mark_inode_dirty()
5321ac27a0ecSDave Kleikamp  *
5322ac27a0ecSDave Kleikamp  * We're really interested in the case where a file is being extended.
5323ac27a0ecSDave Kleikamp  * i_size has been changed by generic_commit_write() and we thus need
5324ac27a0ecSDave Kleikamp  * to include the updated inode in the current transaction.
5325ac27a0ecSDave Kleikamp  *
53265dd4056dSChristoph Hellwig  * Also, dquot_alloc_block() will always dirty the inode when blocks
5327ac27a0ecSDave Kleikamp  * are allocated to the file.
5328ac27a0ecSDave Kleikamp  *
5329ac27a0ecSDave Kleikamp  * If the inode is marked synchronous, we don't honour that here - doing
5330ac27a0ecSDave Kleikamp  * so would cause a commit on atime updates, which we don't bother doing.
5331ac27a0ecSDave Kleikamp  * We handle synchronous inodes at the highest possible level.
53320ae45f63STheodore Ts'o  *
53330ae45f63STheodore Ts'o  * If only the I_DIRTY_TIME flag is set, we can skip everything.  If
53340ae45f63STheodore Ts'o  * I_DIRTY_TIME and I_DIRTY_SYNC is set, the only inode fields we need
53350ae45f63STheodore Ts'o  * to copy into the on-disk inode structure are the timestamp files.
5336ac27a0ecSDave Kleikamp  */
5337aa385729SChristoph Hellwig void ext4_dirty_inode(struct inode *inode, int flags)
5338ac27a0ecSDave Kleikamp {
5339ac27a0ecSDave Kleikamp 	handle_t *handle;
5340ac27a0ecSDave Kleikamp 
53410ae45f63STheodore Ts'o 	if (flags == I_DIRTY_TIME)
53420ae45f63STheodore Ts'o 		return;
53439924a92aSTheodore Ts'o 	handle = ext4_journal_start(inode, EXT4_HT_INODE, 2);
5344ac27a0ecSDave Kleikamp 	if (IS_ERR(handle))
5345ac27a0ecSDave Kleikamp 		goto out;
5346f3dc272fSCurt Wohlgemuth 
5347617ba13bSMingming Cao 	ext4_mark_inode_dirty(handle, inode);
5348f3dc272fSCurt Wohlgemuth 
5349617ba13bSMingming Cao 	ext4_journal_stop(handle);
5350ac27a0ecSDave Kleikamp out:
5351ac27a0ecSDave Kleikamp 	return;
5352ac27a0ecSDave Kleikamp }
5353ac27a0ecSDave Kleikamp 
5354ac27a0ecSDave Kleikamp #if 0
5355ac27a0ecSDave Kleikamp /*
5356ac27a0ecSDave Kleikamp  * Bind an inode's backing buffer_head into this transaction, to prevent
5357ac27a0ecSDave Kleikamp  * it from being flushed to disk early.  Unlike
5358617ba13bSMingming Cao  * ext4_reserve_inode_write, this leaves behind no bh reference and
5359ac27a0ecSDave Kleikamp  * returns no iloc structure, so the caller needs to repeat the iloc
5360ac27a0ecSDave Kleikamp  * lookup to mark the inode dirty later.
5361ac27a0ecSDave Kleikamp  */
5362617ba13bSMingming Cao static int ext4_pin_inode(handle_t *handle, struct inode *inode)
5363ac27a0ecSDave Kleikamp {
5364617ba13bSMingming Cao 	struct ext4_iloc iloc;
5365ac27a0ecSDave Kleikamp 
5366ac27a0ecSDave Kleikamp 	int err = 0;
5367ac27a0ecSDave Kleikamp 	if (handle) {
5368617ba13bSMingming Cao 		err = ext4_get_inode_loc(inode, &iloc);
5369ac27a0ecSDave Kleikamp 		if (!err) {
5370ac27a0ecSDave Kleikamp 			BUFFER_TRACE(iloc.bh, "get_write_access");
5371dab291afSMingming Cao 			err = jbd2_journal_get_write_access(handle, iloc.bh);
5372ac27a0ecSDave Kleikamp 			if (!err)
53730390131bSFrank Mayhar 				err = ext4_handle_dirty_metadata(handle,
537473b50c1cSCurt Wohlgemuth 								 NULL,
5375ac27a0ecSDave Kleikamp 								 iloc.bh);
5376ac27a0ecSDave Kleikamp 			brelse(iloc.bh);
5377ac27a0ecSDave Kleikamp 		}
5378ac27a0ecSDave Kleikamp 	}
5379617ba13bSMingming Cao 	ext4_std_error(inode->i_sb, err);
5380ac27a0ecSDave Kleikamp 	return err;
5381ac27a0ecSDave Kleikamp }
5382ac27a0ecSDave Kleikamp #endif
5383ac27a0ecSDave Kleikamp 
5384617ba13bSMingming Cao int ext4_change_inode_journal_flag(struct inode *inode, int val)
5385ac27a0ecSDave Kleikamp {
5386ac27a0ecSDave Kleikamp 	journal_t *journal;
5387ac27a0ecSDave Kleikamp 	handle_t *handle;
5388ac27a0ecSDave Kleikamp 	int err;
5389ac27a0ecSDave Kleikamp 
5390ac27a0ecSDave Kleikamp 	/*
5391ac27a0ecSDave Kleikamp 	 * We have to be very careful here: changing a data block's
5392ac27a0ecSDave Kleikamp 	 * journaling status dynamically is dangerous.  If we write a
5393ac27a0ecSDave Kleikamp 	 * data block to the journal, change the status and then delete
5394ac27a0ecSDave Kleikamp 	 * that block, we risk forgetting to revoke the old log record
5395ac27a0ecSDave Kleikamp 	 * from the journal and so a subsequent replay can corrupt data.
5396ac27a0ecSDave Kleikamp 	 * So, first we make sure that the journal is empty and that
5397ac27a0ecSDave Kleikamp 	 * nobody is changing anything.
5398ac27a0ecSDave Kleikamp 	 */
5399ac27a0ecSDave Kleikamp 
5400617ba13bSMingming Cao 	journal = EXT4_JOURNAL(inode);
54010390131bSFrank Mayhar 	if (!journal)
54020390131bSFrank Mayhar 		return 0;
5403d699594dSDave Hansen 	if (is_journal_aborted(journal))
5404ac27a0ecSDave Kleikamp 		return -EROFS;
54052aff57b0SYongqiang Yang 	/* We have to allocate physical blocks for delalloc blocks
54062aff57b0SYongqiang Yang 	 * before flushing journal. otherwise delalloc blocks can not
54072aff57b0SYongqiang Yang 	 * be allocated any more. even more truncate on delalloc blocks
54082aff57b0SYongqiang Yang 	 * could trigger BUG by flushing delalloc blocks in journal.
54092aff57b0SYongqiang Yang 	 * There is no delalloc block in non-journal data mode.
54102aff57b0SYongqiang Yang 	 */
54112aff57b0SYongqiang Yang 	if (val && test_opt(inode->i_sb, DELALLOC)) {
54122aff57b0SYongqiang Yang 		err = ext4_alloc_da_blocks(inode);
54132aff57b0SYongqiang Yang 		if (err < 0)
54142aff57b0SYongqiang Yang 			return err;
54152aff57b0SYongqiang Yang 	}
5416ac27a0ecSDave Kleikamp 
541717335dccSDmitry Monakhov 	/* Wait for all existing dio workers */
541817335dccSDmitry Monakhov 	ext4_inode_block_unlocked_dio(inode);
541917335dccSDmitry Monakhov 	inode_dio_wait(inode);
542017335dccSDmitry Monakhov 
5421dab291afSMingming Cao 	jbd2_journal_lock_updates(journal);
5422ac27a0ecSDave Kleikamp 
5423ac27a0ecSDave Kleikamp 	/*
5424ac27a0ecSDave Kleikamp 	 * OK, there are no updates running now, and all cached data is
5425ac27a0ecSDave Kleikamp 	 * synced to disk.  We are now in a completely consistent state
5426ac27a0ecSDave Kleikamp 	 * which doesn't have anything in the journal, and we know that
5427ac27a0ecSDave Kleikamp 	 * no filesystem updates are running, so it is safe to modify
5428ac27a0ecSDave Kleikamp 	 * the inode's in-core data-journaling state flag now.
5429ac27a0ecSDave Kleikamp 	 */
5430ac27a0ecSDave Kleikamp 
5431ac27a0ecSDave Kleikamp 	if (val)
543212e9b892SDmitry Monakhov 		ext4_set_inode_flag(inode, EXT4_INODE_JOURNAL_DATA);
54335872ddaaSYongqiang Yang 	else {
54344f879ca6SJan Kara 		err = jbd2_journal_flush(journal);
54354f879ca6SJan Kara 		if (err < 0) {
54364f879ca6SJan Kara 			jbd2_journal_unlock_updates(journal);
54374f879ca6SJan Kara 			ext4_inode_resume_unlocked_dio(inode);
54384f879ca6SJan Kara 			return err;
54394f879ca6SJan Kara 		}
544012e9b892SDmitry Monakhov 		ext4_clear_inode_flag(inode, EXT4_INODE_JOURNAL_DATA);
54415872ddaaSYongqiang Yang 	}
5442617ba13bSMingming Cao 	ext4_set_aops(inode);
5443ac27a0ecSDave Kleikamp 
5444dab291afSMingming Cao 	jbd2_journal_unlock_updates(journal);
544517335dccSDmitry Monakhov 	ext4_inode_resume_unlocked_dio(inode);
5446ac27a0ecSDave Kleikamp 
5447ac27a0ecSDave Kleikamp 	/* Finally we can mark the inode as dirty. */
5448ac27a0ecSDave Kleikamp 
54499924a92aSTheodore Ts'o 	handle = ext4_journal_start(inode, EXT4_HT_INODE, 1);
5450ac27a0ecSDave Kleikamp 	if (IS_ERR(handle))
5451ac27a0ecSDave Kleikamp 		return PTR_ERR(handle);
5452ac27a0ecSDave Kleikamp 
5453617ba13bSMingming Cao 	err = ext4_mark_inode_dirty(handle, inode);
54540390131bSFrank Mayhar 	ext4_handle_sync(handle);
5455617ba13bSMingming Cao 	ext4_journal_stop(handle);
5456617ba13bSMingming Cao 	ext4_std_error(inode->i_sb, err);
5457ac27a0ecSDave Kleikamp 
5458ac27a0ecSDave Kleikamp 	return err;
5459ac27a0ecSDave Kleikamp }
54602e9ee850SAneesh Kumar K.V 
54612e9ee850SAneesh Kumar K.V static int ext4_bh_unmapped(handle_t *handle, struct buffer_head *bh)
54622e9ee850SAneesh Kumar K.V {
54632e9ee850SAneesh Kumar K.V 	return !buffer_mapped(bh);
54642e9ee850SAneesh Kumar K.V }
54652e9ee850SAneesh Kumar K.V 
5466c2ec175cSNick Piggin int ext4_page_mkwrite(struct vm_area_struct *vma, struct vm_fault *vmf)
54672e9ee850SAneesh Kumar K.V {
5468c2ec175cSNick Piggin 	struct page *page = vmf->page;
54692e9ee850SAneesh Kumar K.V 	loff_t size;
54702e9ee850SAneesh Kumar K.V 	unsigned long len;
54719ea7df53SJan Kara 	int ret;
54722e9ee850SAneesh Kumar K.V 	struct file *file = vma->vm_file;
5473496ad9aaSAl Viro 	struct inode *inode = file_inode(file);
54742e9ee850SAneesh Kumar K.V 	struct address_space *mapping = inode->i_mapping;
54759ea7df53SJan Kara 	handle_t *handle;
54769ea7df53SJan Kara 	get_block_t *get_block;
54779ea7df53SJan Kara 	int retries = 0;
54782e9ee850SAneesh Kumar K.V 
54798e8ad8a5SJan Kara 	sb_start_pagefault(inode->i_sb);
5480041bbb6dSTheodore Ts'o 	file_update_time(vma->vm_file);
5481ea3d7209SJan Kara 
5482ea3d7209SJan Kara 	down_read(&EXT4_I(inode)->i_mmap_sem);
54839ea7df53SJan Kara 	/* Delalloc case is easy... */
54849ea7df53SJan Kara 	if (test_opt(inode->i_sb, DELALLOC) &&
54859ea7df53SJan Kara 	    !ext4_should_journal_data(inode) &&
54869ea7df53SJan Kara 	    !ext4_nonda_switch(inode->i_sb)) {
54879ea7df53SJan Kara 		do {
54885c500029SRoss Zwisler 			ret = block_page_mkwrite(vma, vmf,
54899ea7df53SJan Kara 						   ext4_da_get_block_prep);
54909ea7df53SJan Kara 		} while (ret == -ENOSPC &&
54919ea7df53SJan Kara 		       ext4_should_retry_alloc(inode->i_sb, &retries));
54929ea7df53SJan Kara 		goto out_ret;
54932e9ee850SAneesh Kumar K.V 	}
54940e499890SDarrick J. Wong 
54950e499890SDarrick J. Wong 	lock_page(page);
54969ea7df53SJan Kara 	size = i_size_read(inode);
54979ea7df53SJan Kara 	/* Page got truncated from under us? */
54989ea7df53SJan Kara 	if (page->mapping != mapping || page_offset(page) > size) {
54999ea7df53SJan Kara 		unlock_page(page);
55009ea7df53SJan Kara 		ret = VM_FAULT_NOPAGE;
55019ea7df53SJan Kara 		goto out;
55020e499890SDarrick J. Wong 	}
55032e9ee850SAneesh Kumar K.V 
55042e9ee850SAneesh Kumar K.V 	if (page->index == size >> PAGE_CACHE_SHIFT)
55052e9ee850SAneesh Kumar K.V 		len = size & ~PAGE_CACHE_MASK;
55062e9ee850SAneesh Kumar K.V 	else
55072e9ee850SAneesh Kumar K.V 		len = PAGE_CACHE_SIZE;
5508a827eaffSAneesh Kumar K.V 	/*
55099ea7df53SJan Kara 	 * Return if we have all the buffers mapped. This avoids the need to do
55109ea7df53SJan Kara 	 * journal_start/journal_stop which can block and take a long time
5511a827eaffSAneesh Kumar K.V 	 */
55122e9ee850SAneesh Kumar K.V 	if (page_has_buffers(page)) {
5513f19d5870STao Ma 		if (!ext4_walk_page_buffers(NULL, page_buffers(page),
5514f19d5870STao Ma 					    0, len, NULL,
5515a827eaffSAneesh Kumar K.V 					    ext4_bh_unmapped)) {
55169ea7df53SJan Kara 			/* Wait so that we don't change page under IO */
55171d1d1a76SDarrick J. Wong 			wait_for_stable_page(page);
55189ea7df53SJan Kara 			ret = VM_FAULT_LOCKED;
55199ea7df53SJan Kara 			goto out;
55202e9ee850SAneesh Kumar K.V 		}
5521a827eaffSAneesh Kumar K.V 	}
5522a827eaffSAneesh Kumar K.V 	unlock_page(page);
55239ea7df53SJan Kara 	/* OK, we need to fill the hole... */
55249ea7df53SJan Kara 	if (ext4_should_dioread_nolock(inode))
5525*705965bdSJan Kara 		get_block = ext4_get_block_unwritten;
55269ea7df53SJan Kara 	else
55279ea7df53SJan Kara 		get_block = ext4_get_block;
55289ea7df53SJan Kara retry_alloc:
55299924a92aSTheodore Ts'o 	handle = ext4_journal_start(inode, EXT4_HT_WRITE_PAGE,
55309924a92aSTheodore Ts'o 				    ext4_writepage_trans_blocks(inode));
55319ea7df53SJan Kara 	if (IS_ERR(handle)) {
5532c2ec175cSNick Piggin 		ret = VM_FAULT_SIGBUS;
55339ea7df53SJan Kara 		goto out;
55349ea7df53SJan Kara 	}
55355c500029SRoss Zwisler 	ret = block_page_mkwrite(vma, vmf, get_block);
55369ea7df53SJan Kara 	if (!ret && ext4_should_journal_data(inode)) {
5537f19d5870STao Ma 		if (ext4_walk_page_buffers(handle, page_buffers(page), 0,
55389ea7df53SJan Kara 			  PAGE_CACHE_SIZE, NULL, do_journal_get_write_access)) {
55399ea7df53SJan Kara 			unlock_page(page);
55409ea7df53SJan Kara 			ret = VM_FAULT_SIGBUS;
5541fcbb5515SYongqiang Yang 			ext4_journal_stop(handle);
55429ea7df53SJan Kara 			goto out;
55439ea7df53SJan Kara 		}
55449ea7df53SJan Kara 		ext4_set_inode_state(inode, EXT4_STATE_JDATA);
55459ea7df53SJan Kara 	}
55469ea7df53SJan Kara 	ext4_journal_stop(handle);
55479ea7df53SJan Kara 	if (ret == -ENOSPC && ext4_should_retry_alloc(inode->i_sb, &retries))
55489ea7df53SJan Kara 		goto retry_alloc;
55499ea7df53SJan Kara out_ret:
55509ea7df53SJan Kara 	ret = block_page_mkwrite_return(ret);
55519ea7df53SJan Kara out:
5552ea3d7209SJan Kara 	up_read(&EXT4_I(inode)->i_mmap_sem);
55538e8ad8a5SJan Kara 	sb_end_pagefault(inode->i_sb);
55542e9ee850SAneesh Kumar K.V 	return ret;
55552e9ee850SAneesh Kumar K.V }
5556ea3d7209SJan Kara 
5557ea3d7209SJan Kara int ext4_filemap_fault(struct vm_area_struct *vma, struct vm_fault *vmf)
5558ea3d7209SJan Kara {
5559ea3d7209SJan Kara 	struct inode *inode = file_inode(vma->vm_file);
5560ea3d7209SJan Kara 	int err;
5561ea3d7209SJan Kara 
5562ea3d7209SJan Kara 	down_read(&EXT4_I(inode)->i_mmap_sem);
5563ea3d7209SJan Kara 	err = filemap_fault(vma, vmf);
5564ea3d7209SJan Kara 	up_read(&EXT4_I(inode)->i_mmap_sem);
5565ea3d7209SJan Kara 
5566ea3d7209SJan Kara 	return err;
5567ea3d7209SJan Kara }
5568