xref: /openbmc/linux/fs/ext4/inode.c (revision efe70c29511544b0468723fe92c1847b3b0ca046)
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 
7172ed88685STheodore Ts'o static int _ext4_get_block(struct inode *inode, sector_t iblock,
7182ed88685STheodore Ts'o 			   struct buffer_head *bh, int flags)
719ac27a0ecSDave Kleikamp {
7202ed88685STheodore Ts'o 	struct ext4_map_blocks map;
721*efe70c29SJan Kara 	int ret = 0;
722ac27a0ecSDave Kleikamp 
72346c7f254STao Ma 	if (ext4_has_inline_data(inode))
72446c7f254STao Ma 		return -ERANGE;
72546c7f254STao Ma 
7262ed88685STheodore Ts'o 	map.m_lblk = iblock;
7272ed88685STheodore Ts'o 	map.m_len = bh->b_size >> inode->i_blkbits;
7282ed88685STheodore Ts'o 
729*efe70c29SJan Kara 	ret = ext4_map_blocks(ext4_journal_current_handle(), inode, &map,
730*efe70c29SJan Kara 			      flags);
731ac27a0ecSDave Kleikamp 	if (ret > 0) {
7322ed88685STheodore Ts'o 		map_bh(bh, inode->i_sb, map.m_pblk);
733ed8ad838SJan Kara 		ext4_update_bh_state(bh, map.m_flags);
7342ed88685STheodore Ts'o 		bh->b_size = inode->i_sb->s_blocksize * map.m_len;
735ac27a0ecSDave Kleikamp 		ret = 0;
736ac27a0ecSDave Kleikamp 	}
737ac27a0ecSDave Kleikamp 	return ret;
738ac27a0ecSDave Kleikamp }
739ac27a0ecSDave Kleikamp 
7402ed88685STheodore Ts'o int ext4_get_block(struct inode *inode, sector_t iblock,
7412ed88685STheodore Ts'o 		   struct buffer_head *bh, int create)
7422ed88685STheodore Ts'o {
7432ed88685STheodore Ts'o 	return _ext4_get_block(inode, iblock, bh,
7442ed88685STheodore Ts'o 			       create ? EXT4_GET_BLOCKS_CREATE : 0);
7452ed88685STheodore Ts'o }
7462ed88685STheodore Ts'o 
747ac27a0ecSDave Kleikamp /*
748705965bdSJan Kara  * Get block function used when preparing for buffered write if we require
749705965bdSJan Kara  * creating an unwritten extent if blocks haven't been allocated.  The extent
750705965bdSJan Kara  * will be converted to written after the IO is complete.
751705965bdSJan Kara  */
752705965bdSJan Kara int ext4_get_block_unwritten(struct inode *inode, sector_t iblock,
753705965bdSJan Kara 			     struct buffer_head *bh_result, int create)
754705965bdSJan Kara {
755705965bdSJan Kara 	ext4_debug("ext4_get_block_unwritten: inode %lu, create flag %d\n",
756705965bdSJan Kara 		   inode->i_ino, create);
757705965bdSJan Kara 	return _ext4_get_block(inode, iblock, bh_result,
758705965bdSJan Kara 			       EXT4_GET_BLOCKS_IO_CREATE_EXT);
759705965bdSJan Kara }
760705965bdSJan Kara 
761*efe70c29SJan Kara /* Maximum number of blocks we map for direct IO at once. */
762*efe70c29SJan Kara #define DIO_MAX_BLOCKS 4096
763*efe70c29SJan Kara 
764*efe70c29SJan Kara static handle_t *start_dio_trans(struct inode *inode,
765*efe70c29SJan Kara 				 struct buffer_head *bh_result)
766*efe70c29SJan Kara {
767*efe70c29SJan Kara 	int dio_credits;
768*efe70c29SJan Kara 
769*efe70c29SJan Kara 	/* Trim mapping request to maximum we can map at once for DIO */
770*efe70c29SJan Kara 	if (bh_result->b_size >> inode->i_blkbits > DIO_MAX_BLOCKS)
771*efe70c29SJan Kara 		bh_result->b_size = DIO_MAX_BLOCKS << inode->i_blkbits;
772*efe70c29SJan Kara 	dio_credits = ext4_chunk_trans_blocks(inode,
773*efe70c29SJan Kara 				      bh_result->b_size >> inode->i_blkbits);
774*efe70c29SJan Kara 	return ext4_journal_start(inode, EXT4_HT_MAP_BLOCKS, dio_credits);
775*efe70c29SJan Kara }
776*efe70c29SJan Kara 
777705965bdSJan Kara /* Get block function for DIO reads and writes to inodes without extents */
778705965bdSJan Kara int ext4_dio_get_block(struct inode *inode, sector_t iblock,
779705965bdSJan Kara 		       struct buffer_head *bh, int create)
780705965bdSJan Kara {
781*efe70c29SJan Kara 	handle_t *handle;
782*efe70c29SJan Kara 	int ret;
783*efe70c29SJan Kara 
784*efe70c29SJan Kara 	/* We don't expect handle for direct IO */
785*efe70c29SJan Kara 	WARN_ON_ONCE(ext4_journal_current_handle());
786*efe70c29SJan Kara 
787*efe70c29SJan Kara 	if (create) {
788*efe70c29SJan Kara 		handle = start_dio_trans(inode, bh);
789*efe70c29SJan Kara 		if (IS_ERR(handle))
790*efe70c29SJan Kara 			return PTR_ERR(handle);
791*efe70c29SJan Kara 	}
792*efe70c29SJan Kara 	ret = _ext4_get_block(inode, iblock, bh,
793705965bdSJan Kara 			      create ? EXT4_GET_BLOCKS_CREATE : 0);
794*efe70c29SJan Kara 	if (create)
795*efe70c29SJan Kara 		ext4_journal_stop(handle);
796*efe70c29SJan Kara 	return ret;
797705965bdSJan Kara }
798705965bdSJan Kara 
799705965bdSJan Kara /*
800705965bdSJan Kara  * Get block function for DIO writes when we create unwritten extent if
801705965bdSJan Kara  * blocks are not allocated yet. The extent will be converted to written
802705965bdSJan Kara  * after IO is complete.
803705965bdSJan Kara  */
804705965bdSJan Kara static int ext4_dio_get_block_unwritten(struct inode *inode, sector_t iblock,
805705965bdSJan Kara 			struct buffer_head *bh_result, int create)
806705965bdSJan Kara {
807*efe70c29SJan Kara 	handle_t *handle;
808*efe70c29SJan Kara 	int ret;
809*efe70c29SJan Kara 
810705965bdSJan Kara 	ext4_debug("ext4_dio_get_block_unwritten: inode %lu, create flag %d\n",
811705965bdSJan Kara 		   inode->i_ino, create);
812*efe70c29SJan Kara 	/* We don't expect handle for direct IO */
813*efe70c29SJan Kara 	WARN_ON_ONCE(ext4_journal_current_handle());
814*efe70c29SJan Kara 
815*efe70c29SJan Kara 	handle = start_dio_trans(inode, bh_result);
816*efe70c29SJan Kara 	if (IS_ERR(handle))
817*efe70c29SJan Kara 		return PTR_ERR(handle);
818*efe70c29SJan Kara 	ret = _ext4_get_block(inode, iblock, bh_result,
819705965bdSJan Kara 			      EXT4_GET_BLOCKS_IO_CREATE_EXT);
820*efe70c29SJan Kara 	ext4_journal_stop(handle);
821*efe70c29SJan Kara 	if (!ret && buffer_unwritten(bh_result)) {
822*efe70c29SJan Kara 		ext4_io_end_t *io_end = ext4_inode_aio(inode);
823*efe70c29SJan Kara 
824*efe70c29SJan Kara 		set_buffer_defer_completion(bh_result);
825*efe70c29SJan Kara 		WARN_ON_ONCE(io_end && !(io_end->flag & EXT4_IO_END_UNWRITTEN));
826*efe70c29SJan Kara 	}
827*efe70c29SJan Kara 
828*efe70c29SJan Kara 	return ret;
829705965bdSJan Kara }
830705965bdSJan Kara 
831705965bdSJan Kara static int ext4_dio_get_block_overwrite(struct inode *inode, sector_t iblock,
832705965bdSJan Kara 		   struct buffer_head *bh_result, int create)
833705965bdSJan Kara {
834705965bdSJan Kara 	int ret;
835705965bdSJan Kara 
836705965bdSJan Kara 	ext4_debug("ext4_dio_get_block_overwrite: inode %lu, create flag %d\n",
837705965bdSJan Kara 		   inode->i_ino, create);
838*efe70c29SJan Kara 	/* We don't expect handle for direct IO */
839*efe70c29SJan Kara 	WARN_ON_ONCE(ext4_journal_current_handle());
840*efe70c29SJan Kara 
841705965bdSJan Kara 	ret = _ext4_get_block(inode, iblock, bh_result, 0);
842705965bdSJan Kara 	/*
843705965bdSJan Kara 	 * Blocks should have been preallocated! ext4_file_write_iter() checks
844705965bdSJan Kara 	 * that.
845705965bdSJan Kara 	 */
846*efe70c29SJan Kara 	WARN_ON_ONCE(!buffer_mapped(bh_result) || buffer_unwritten(bh_result));
847705965bdSJan Kara 
848705965bdSJan Kara 	return ret;
849705965bdSJan Kara }
850705965bdSJan Kara 
851705965bdSJan Kara 
852705965bdSJan Kara /*
853ac27a0ecSDave Kleikamp  * `handle' can be NULL if create is zero
854ac27a0ecSDave Kleikamp  */
855617ba13bSMingming Cao struct buffer_head *ext4_getblk(handle_t *handle, struct inode *inode,
856c5e298aeSTheodore Ts'o 				ext4_lblk_t block, int map_flags)
857ac27a0ecSDave Kleikamp {
8582ed88685STheodore Ts'o 	struct ext4_map_blocks map;
8592ed88685STheodore Ts'o 	struct buffer_head *bh;
860c5e298aeSTheodore Ts'o 	int create = map_flags & EXT4_GET_BLOCKS_CREATE;
86110560082STheodore Ts'o 	int err;
862ac27a0ecSDave Kleikamp 
863ac27a0ecSDave Kleikamp 	J_ASSERT(handle != NULL || create == 0);
864ac27a0ecSDave Kleikamp 
8652ed88685STheodore Ts'o 	map.m_lblk = block;
8662ed88685STheodore Ts'o 	map.m_len = 1;
867c5e298aeSTheodore Ts'o 	err = ext4_map_blocks(handle, inode, &map, map_flags);
8682ed88685STheodore Ts'o 
86910560082STheodore Ts'o 	if (err == 0)
87010560082STheodore Ts'o 		return create ? ERR_PTR(-ENOSPC) : NULL;
8712ed88685STheodore Ts'o 	if (err < 0)
87210560082STheodore Ts'o 		return ERR_PTR(err);
8732ed88685STheodore Ts'o 
8742ed88685STheodore Ts'o 	bh = sb_getblk(inode->i_sb, map.m_pblk);
87510560082STheodore Ts'o 	if (unlikely(!bh))
87610560082STheodore Ts'o 		return ERR_PTR(-ENOMEM);
8772ed88685STheodore Ts'o 	if (map.m_flags & EXT4_MAP_NEW) {
878ac27a0ecSDave Kleikamp 		J_ASSERT(create != 0);
879ac39849dSAneesh Kumar K.V 		J_ASSERT(handle != NULL);
880ac27a0ecSDave Kleikamp 
881ac27a0ecSDave Kleikamp 		/*
882ac27a0ecSDave Kleikamp 		 * Now that we do not always journal data, we should
883ac27a0ecSDave Kleikamp 		 * keep in mind whether this should always journal the
884ac27a0ecSDave Kleikamp 		 * new buffer as metadata.  For now, regular file
885617ba13bSMingming Cao 		 * writes use ext4_get_block instead, so it's not a
886ac27a0ecSDave Kleikamp 		 * problem.
887ac27a0ecSDave Kleikamp 		 */
888ac27a0ecSDave Kleikamp 		lock_buffer(bh);
889ac27a0ecSDave Kleikamp 		BUFFER_TRACE(bh, "call get_create_access");
89010560082STheodore Ts'o 		err = ext4_journal_get_create_access(handle, bh);
89110560082STheodore Ts'o 		if (unlikely(err)) {
89210560082STheodore Ts'o 			unlock_buffer(bh);
89310560082STheodore Ts'o 			goto errout;
89410560082STheodore Ts'o 		}
89510560082STheodore Ts'o 		if (!buffer_uptodate(bh)) {
896ac27a0ecSDave Kleikamp 			memset(bh->b_data, 0, inode->i_sb->s_blocksize);
897ac27a0ecSDave Kleikamp 			set_buffer_uptodate(bh);
898ac27a0ecSDave Kleikamp 		}
899ac27a0ecSDave Kleikamp 		unlock_buffer(bh);
9000390131bSFrank Mayhar 		BUFFER_TRACE(bh, "call ext4_handle_dirty_metadata");
9010390131bSFrank Mayhar 		err = ext4_handle_dirty_metadata(handle, inode, bh);
90210560082STheodore Ts'o 		if (unlikely(err))
90310560082STheodore Ts'o 			goto errout;
90410560082STheodore Ts'o 	} else
905ac27a0ecSDave Kleikamp 		BUFFER_TRACE(bh, "not a new buffer");
906ac27a0ecSDave Kleikamp 	return bh;
90710560082STheodore Ts'o errout:
90810560082STheodore Ts'o 	brelse(bh);
90910560082STheodore Ts'o 	return ERR_PTR(err);
910ac27a0ecSDave Kleikamp }
911ac27a0ecSDave Kleikamp 
912617ba13bSMingming Cao struct buffer_head *ext4_bread(handle_t *handle, struct inode *inode,
913c5e298aeSTheodore Ts'o 			       ext4_lblk_t block, int map_flags)
914ac27a0ecSDave Kleikamp {
915ac27a0ecSDave Kleikamp 	struct buffer_head *bh;
916ac27a0ecSDave Kleikamp 
917c5e298aeSTheodore Ts'o 	bh = ext4_getblk(handle, inode, block, map_flags);
9181c215028STheodore Ts'o 	if (IS_ERR(bh))
919ac27a0ecSDave Kleikamp 		return bh;
9201c215028STheodore Ts'o 	if (!bh || buffer_uptodate(bh))
921ac27a0ecSDave Kleikamp 		return bh;
92265299a3bSChristoph Hellwig 	ll_rw_block(READ | REQ_META | REQ_PRIO, 1, &bh);
923ac27a0ecSDave Kleikamp 	wait_on_buffer(bh);
924ac27a0ecSDave Kleikamp 	if (buffer_uptodate(bh))
925ac27a0ecSDave Kleikamp 		return bh;
926ac27a0ecSDave Kleikamp 	put_bh(bh);
9271c215028STheodore Ts'o 	return ERR_PTR(-EIO);
928ac27a0ecSDave Kleikamp }
929ac27a0ecSDave Kleikamp 
930f19d5870STao Ma int ext4_walk_page_buffers(handle_t *handle,
931ac27a0ecSDave Kleikamp 			   struct buffer_head *head,
932ac27a0ecSDave Kleikamp 			   unsigned from,
933ac27a0ecSDave Kleikamp 			   unsigned to,
934ac27a0ecSDave Kleikamp 			   int *partial,
935ac27a0ecSDave Kleikamp 			   int (*fn)(handle_t *handle,
936ac27a0ecSDave Kleikamp 				     struct buffer_head *bh))
937ac27a0ecSDave Kleikamp {
938ac27a0ecSDave Kleikamp 	struct buffer_head *bh;
939ac27a0ecSDave Kleikamp 	unsigned block_start, block_end;
940ac27a0ecSDave Kleikamp 	unsigned blocksize = head->b_size;
941ac27a0ecSDave Kleikamp 	int err, ret = 0;
942ac27a0ecSDave Kleikamp 	struct buffer_head *next;
943ac27a0ecSDave Kleikamp 
944ac27a0ecSDave Kleikamp 	for (bh = head, block_start = 0;
945ac27a0ecSDave Kleikamp 	     ret == 0 && (bh != head || !block_start);
946de9a55b8STheodore Ts'o 	     block_start = block_end, bh = next) {
947ac27a0ecSDave Kleikamp 		next = bh->b_this_page;
948ac27a0ecSDave Kleikamp 		block_end = block_start + blocksize;
949ac27a0ecSDave Kleikamp 		if (block_end <= from || block_start >= to) {
950ac27a0ecSDave Kleikamp 			if (partial && !buffer_uptodate(bh))
951ac27a0ecSDave Kleikamp 				*partial = 1;
952ac27a0ecSDave Kleikamp 			continue;
953ac27a0ecSDave Kleikamp 		}
954ac27a0ecSDave Kleikamp 		err = (*fn)(handle, bh);
955ac27a0ecSDave Kleikamp 		if (!ret)
956ac27a0ecSDave Kleikamp 			ret = err;
957ac27a0ecSDave Kleikamp 	}
958ac27a0ecSDave Kleikamp 	return ret;
959ac27a0ecSDave Kleikamp }
960ac27a0ecSDave Kleikamp 
961ac27a0ecSDave Kleikamp /*
962ac27a0ecSDave Kleikamp  * To preserve ordering, it is essential that the hole instantiation and
963ac27a0ecSDave Kleikamp  * the data write be encapsulated in a single transaction.  We cannot
964617ba13bSMingming Cao  * close off a transaction and start a new one between the ext4_get_block()
965dab291afSMingming Cao  * and the commit_write().  So doing the jbd2_journal_start at the start of
966ac27a0ecSDave Kleikamp  * prepare_write() is the right place.
967ac27a0ecSDave Kleikamp  *
96836ade451SJan Kara  * Also, this function can nest inside ext4_writepage().  In that case, we
96936ade451SJan Kara  * *know* that ext4_writepage() has generated enough buffer credits to do the
97036ade451SJan Kara  * whole page.  So we won't block on the journal in that case, which is good,
97136ade451SJan Kara  * because the caller may be PF_MEMALLOC.
972ac27a0ecSDave Kleikamp  *
973617ba13bSMingming Cao  * By accident, ext4 can be reentered when a transaction is open via
974ac27a0ecSDave Kleikamp  * quota file writes.  If we were to commit the transaction while thus
975ac27a0ecSDave Kleikamp  * reentered, there can be a deadlock - we would be holding a quota
976ac27a0ecSDave Kleikamp  * lock, and the commit would never complete if another thread had a
977ac27a0ecSDave Kleikamp  * transaction open and was blocking on the quota lock - a ranking
978ac27a0ecSDave Kleikamp  * violation.
979ac27a0ecSDave Kleikamp  *
980dab291afSMingming Cao  * So what we do is to rely on the fact that jbd2_journal_stop/journal_start
981ac27a0ecSDave Kleikamp  * will _not_ run commit under these circumstances because handle->h_ref
982ac27a0ecSDave Kleikamp  * is elevated.  We'll still have enough credits for the tiny quotafile
983ac27a0ecSDave Kleikamp  * write.
984ac27a0ecSDave Kleikamp  */
985f19d5870STao Ma int do_journal_get_write_access(handle_t *handle,
986ac27a0ecSDave Kleikamp 				struct buffer_head *bh)
987ac27a0ecSDave Kleikamp {
98856d35a4cSJan Kara 	int dirty = buffer_dirty(bh);
98956d35a4cSJan Kara 	int ret;
99056d35a4cSJan Kara 
991ac27a0ecSDave Kleikamp 	if (!buffer_mapped(bh) || buffer_freed(bh))
992ac27a0ecSDave Kleikamp 		return 0;
99356d35a4cSJan Kara 	/*
994ebdec241SChristoph Hellwig 	 * __block_write_begin() could have dirtied some buffers. Clean
99556d35a4cSJan Kara 	 * the dirty bit as jbd2_journal_get_write_access() could complain
99656d35a4cSJan Kara 	 * otherwise about fs integrity issues. Setting of the dirty bit
997ebdec241SChristoph Hellwig 	 * by __block_write_begin() isn't a real problem here as we clear
99856d35a4cSJan Kara 	 * the bit before releasing a page lock and thus writeback cannot
99956d35a4cSJan Kara 	 * ever write the buffer.
100056d35a4cSJan Kara 	 */
100156d35a4cSJan Kara 	if (dirty)
100256d35a4cSJan Kara 		clear_buffer_dirty(bh);
10035d601255Sliang xie 	BUFFER_TRACE(bh, "get write access");
100456d35a4cSJan Kara 	ret = ext4_journal_get_write_access(handle, bh);
100556d35a4cSJan Kara 	if (!ret && dirty)
100656d35a4cSJan Kara 		ret = ext4_handle_dirty_metadata(handle, NULL, bh);
100756d35a4cSJan Kara 	return ret;
1008ac27a0ecSDave Kleikamp }
1009ac27a0ecSDave Kleikamp 
10102058f83aSMichael Halcrow #ifdef CONFIG_EXT4_FS_ENCRYPTION
10112058f83aSMichael Halcrow static int ext4_block_write_begin(struct page *page, loff_t pos, unsigned len,
10122058f83aSMichael Halcrow 				  get_block_t *get_block)
10132058f83aSMichael Halcrow {
10142058f83aSMichael Halcrow 	unsigned from = pos & (PAGE_CACHE_SIZE - 1);
10152058f83aSMichael Halcrow 	unsigned to = from + len;
10162058f83aSMichael Halcrow 	struct inode *inode = page->mapping->host;
10172058f83aSMichael Halcrow 	unsigned block_start, block_end;
10182058f83aSMichael Halcrow 	sector_t block;
10192058f83aSMichael Halcrow 	int err = 0;
10202058f83aSMichael Halcrow 	unsigned blocksize = inode->i_sb->s_blocksize;
10212058f83aSMichael Halcrow 	unsigned bbits;
10222058f83aSMichael Halcrow 	struct buffer_head *bh, *head, *wait[2], **wait_bh = wait;
10232058f83aSMichael Halcrow 	bool decrypt = false;
10242058f83aSMichael Halcrow 
10252058f83aSMichael Halcrow 	BUG_ON(!PageLocked(page));
10262058f83aSMichael Halcrow 	BUG_ON(from > PAGE_CACHE_SIZE);
10272058f83aSMichael Halcrow 	BUG_ON(to > PAGE_CACHE_SIZE);
10282058f83aSMichael Halcrow 	BUG_ON(from > to);
10292058f83aSMichael Halcrow 
10302058f83aSMichael Halcrow 	if (!page_has_buffers(page))
10312058f83aSMichael Halcrow 		create_empty_buffers(page, blocksize, 0);
10322058f83aSMichael Halcrow 	head = page_buffers(page);
10332058f83aSMichael Halcrow 	bbits = ilog2(blocksize);
10342058f83aSMichael Halcrow 	block = (sector_t)page->index << (PAGE_CACHE_SHIFT - bbits);
10352058f83aSMichael Halcrow 
10362058f83aSMichael Halcrow 	for (bh = head, block_start = 0; bh != head || !block_start;
10372058f83aSMichael Halcrow 	    block++, block_start = block_end, bh = bh->b_this_page) {
10382058f83aSMichael Halcrow 		block_end = block_start + blocksize;
10392058f83aSMichael Halcrow 		if (block_end <= from || block_start >= to) {
10402058f83aSMichael Halcrow 			if (PageUptodate(page)) {
10412058f83aSMichael Halcrow 				if (!buffer_uptodate(bh))
10422058f83aSMichael Halcrow 					set_buffer_uptodate(bh);
10432058f83aSMichael Halcrow 			}
10442058f83aSMichael Halcrow 			continue;
10452058f83aSMichael Halcrow 		}
10462058f83aSMichael Halcrow 		if (buffer_new(bh))
10472058f83aSMichael Halcrow 			clear_buffer_new(bh);
10482058f83aSMichael Halcrow 		if (!buffer_mapped(bh)) {
10492058f83aSMichael Halcrow 			WARN_ON(bh->b_size != blocksize);
10502058f83aSMichael Halcrow 			err = get_block(inode, block, bh, 1);
10512058f83aSMichael Halcrow 			if (err)
10522058f83aSMichael Halcrow 				break;
10532058f83aSMichael Halcrow 			if (buffer_new(bh)) {
10542058f83aSMichael Halcrow 				unmap_underlying_metadata(bh->b_bdev,
10552058f83aSMichael Halcrow 							  bh->b_blocknr);
10562058f83aSMichael Halcrow 				if (PageUptodate(page)) {
10572058f83aSMichael Halcrow 					clear_buffer_new(bh);
10582058f83aSMichael Halcrow 					set_buffer_uptodate(bh);
10592058f83aSMichael Halcrow 					mark_buffer_dirty(bh);
10602058f83aSMichael Halcrow 					continue;
10612058f83aSMichael Halcrow 				}
10622058f83aSMichael Halcrow 				if (block_end > to || block_start < from)
10632058f83aSMichael Halcrow 					zero_user_segments(page, to, block_end,
10642058f83aSMichael Halcrow 							   block_start, from);
10652058f83aSMichael Halcrow 				continue;
10662058f83aSMichael Halcrow 			}
10672058f83aSMichael Halcrow 		}
10682058f83aSMichael Halcrow 		if (PageUptodate(page)) {
10692058f83aSMichael Halcrow 			if (!buffer_uptodate(bh))
10702058f83aSMichael Halcrow 				set_buffer_uptodate(bh);
10712058f83aSMichael Halcrow 			continue;
10722058f83aSMichael Halcrow 		}
10732058f83aSMichael Halcrow 		if (!buffer_uptodate(bh) && !buffer_delay(bh) &&
10742058f83aSMichael Halcrow 		    !buffer_unwritten(bh) &&
10752058f83aSMichael Halcrow 		    (block_start < from || block_end > to)) {
10762058f83aSMichael Halcrow 			ll_rw_block(READ, 1, &bh);
10772058f83aSMichael Halcrow 			*wait_bh++ = bh;
10782058f83aSMichael Halcrow 			decrypt = ext4_encrypted_inode(inode) &&
10792058f83aSMichael Halcrow 				S_ISREG(inode->i_mode);
10802058f83aSMichael Halcrow 		}
10812058f83aSMichael Halcrow 	}
10822058f83aSMichael Halcrow 	/*
10832058f83aSMichael Halcrow 	 * If we issued read requests, let them complete.
10842058f83aSMichael Halcrow 	 */
10852058f83aSMichael Halcrow 	while (wait_bh > wait) {
10862058f83aSMichael Halcrow 		wait_on_buffer(*--wait_bh);
10872058f83aSMichael Halcrow 		if (!buffer_uptodate(*wait_bh))
10882058f83aSMichael Halcrow 			err = -EIO;
10892058f83aSMichael Halcrow 	}
10902058f83aSMichael Halcrow 	if (unlikely(err))
10912058f83aSMichael Halcrow 		page_zero_new_buffers(page, from, to);
10922058f83aSMichael Halcrow 	else if (decrypt)
10933684de8cSTheodore Ts'o 		err = ext4_decrypt(page);
10942058f83aSMichael Halcrow 	return err;
10952058f83aSMichael Halcrow }
10962058f83aSMichael Halcrow #endif
10972058f83aSMichael Halcrow 
1098bfc1af65SNick Piggin static int ext4_write_begin(struct file *file, struct address_space *mapping,
1099bfc1af65SNick Piggin 			    loff_t pos, unsigned len, unsigned flags,
1100bfc1af65SNick Piggin 			    struct page **pagep, void **fsdata)
1101ac27a0ecSDave Kleikamp {
1102bfc1af65SNick Piggin 	struct inode *inode = mapping->host;
11031938a150SAneesh Kumar K.V 	int ret, needed_blocks;
1104ac27a0ecSDave Kleikamp 	handle_t *handle;
1105ac27a0ecSDave Kleikamp 	int retries = 0;
1106bfc1af65SNick Piggin 	struct page *page;
1107bfc1af65SNick Piggin 	pgoff_t index;
1108bfc1af65SNick Piggin 	unsigned from, to;
1109bfc1af65SNick Piggin 
11109bffad1eSTheodore Ts'o 	trace_ext4_write_begin(inode, pos, len, flags);
11111938a150SAneesh Kumar K.V 	/*
11121938a150SAneesh Kumar K.V 	 * Reserve one block more for addition to orphan list in case
11131938a150SAneesh Kumar K.V 	 * we allocate blocks but write fails for some reason
11141938a150SAneesh Kumar K.V 	 */
11151938a150SAneesh Kumar K.V 	needed_blocks = ext4_writepage_trans_blocks(inode) + 1;
1116bfc1af65SNick Piggin 	index = pos >> PAGE_CACHE_SHIFT;
1117bfc1af65SNick Piggin 	from = pos & (PAGE_CACHE_SIZE - 1);
1118bfc1af65SNick Piggin 	to = from + len;
1119ac27a0ecSDave Kleikamp 
1120f19d5870STao Ma 	if (ext4_test_inode_state(inode, EXT4_STATE_MAY_INLINE_DATA)) {
1121f19d5870STao Ma 		ret = ext4_try_to_write_inline_data(mapping, inode, pos, len,
1122f19d5870STao Ma 						    flags, pagep);
1123f19d5870STao Ma 		if (ret < 0)
112447564bfbSTheodore Ts'o 			return ret;
112547564bfbSTheodore Ts'o 		if (ret == 1)
112647564bfbSTheodore Ts'o 			return 0;
1127f19d5870STao Ma 	}
1128f19d5870STao Ma 
112947564bfbSTheodore Ts'o 	/*
113047564bfbSTheodore Ts'o 	 * grab_cache_page_write_begin() can take a long time if the
113147564bfbSTheodore Ts'o 	 * system is thrashing due to memory pressure, or if the page
113247564bfbSTheodore Ts'o 	 * is being written back.  So grab it first before we start
113347564bfbSTheodore Ts'o 	 * the transaction handle.  This also allows us to allocate
113447564bfbSTheodore Ts'o 	 * the page (if needed) without using GFP_NOFS.
113547564bfbSTheodore Ts'o 	 */
113647564bfbSTheodore Ts'o retry_grab:
113754566b2cSNick Piggin 	page = grab_cache_page_write_begin(mapping, index, flags);
113847564bfbSTheodore Ts'o 	if (!page)
113947564bfbSTheodore Ts'o 		return -ENOMEM;
114047564bfbSTheodore Ts'o 	unlock_page(page);
114147564bfbSTheodore Ts'o 
114247564bfbSTheodore Ts'o retry_journal:
11439924a92aSTheodore Ts'o 	handle = ext4_journal_start(inode, EXT4_HT_WRITE_PAGE, needed_blocks);
1144ac27a0ecSDave Kleikamp 	if (IS_ERR(handle)) {
114547564bfbSTheodore Ts'o 		page_cache_release(page);
114647564bfbSTheodore Ts'o 		return PTR_ERR(handle);
1147cf108bcaSJan Kara 	}
1148f19d5870STao Ma 
114947564bfbSTheodore Ts'o 	lock_page(page);
115047564bfbSTheodore Ts'o 	if (page->mapping != mapping) {
115147564bfbSTheodore Ts'o 		/* The page got truncated from under us */
115247564bfbSTheodore Ts'o 		unlock_page(page);
115347564bfbSTheodore Ts'o 		page_cache_release(page);
1154cf108bcaSJan Kara 		ext4_journal_stop(handle);
115547564bfbSTheodore Ts'o 		goto retry_grab;
1156cf108bcaSJan Kara 	}
11577afe5aa5SDmitry Monakhov 	/* In case writeback began while the page was unlocked */
11587afe5aa5SDmitry Monakhov 	wait_for_stable_page(page);
1159cf108bcaSJan Kara 
11602058f83aSMichael Halcrow #ifdef CONFIG_EXT4_FS_ENCRYPTION
11612058f83aSMichael Halcrow 	if (ext4_should_dioread_nolock(inode))
11622058f83aSMichael Halcrow 		ret = ext4_block_write_begin(page, pos, len,
1163705965bdSJan Kara 					     ext4_get_block_unwritten);
11642058f83aSMichael Halcrow 	else
11652058f83aSMichael Halcrow 		ret = ext4_block_write_begin(page, pos, len,
11662058f83aSMichael Halcrow 					     ext4_get_block);
11672058f83aSMichael Halcrow #else
1168744692dcSJiaying Zhang 	if (ext4_should_dioread_nolock(inode))
1169705965bdSJan Kara 		ret = __block_write_begin(page, pos, len,
1170705965bdSJan Kara 					  ext4_get_block_unwritten);
1171744692dcSJiaying Zhang 	else
11726e1db88dSChristoph Hellwig 		ret = __block_write_begin(page, pos, len, ext4_get_block);
11732058f83aSMichael Halcrow #endif
1174bfc1af65SNick Piggin 	if (!ret && ext4_should_journal_data(inode)) {
1175f19d5870STao Ma 		ret = ext4_walk_page_buffers(handle, page_buffers(page),
1176f19d5870STao Ma 					     from, to, NULL,
1177f19d5870STao Ma 					     do_journal_get_write_access);
1178b46be050SAndrey Savochkin 	}
1179bfc1af65SNick Piggin 
1180bfc1af65SNick Piggin 	if (ret) {
1181bfc1af65SNick Piggin 		unlock_page(page);
1182ae4d5372SAneesh Kumar K.V 		/*
11836e1db88dSChristoph Hellwig 		 * __block_write_begin may have instantiated a few blocks
1184ae4d5372SAneesh Kumar K.V 		 * outside i_size.  Trim these off again. Don't need
1185ae4d5372SAneesh Kumar K.V 		 * i_size_read because we hold i_mutex.
11861938a150SAneesh Kumar K.V 		 *
11871938a150SAneesh Kumar K.V 		 * Add inode to orphan list in case we crash before
11881938a150SAneesh Kumar K.V 		 * truncate finishes
1189ae4d5372SAneesh Kumar K.V 		 */
1190ffacfa7aSJan Kara 		if (pos + len > inode->i_size && ext4_can_truncate(inode))
11911938a150SAneesh Kumar K.V 			ext4_orphan_add(handle, inode);
11921938a150SAneesh Kumar K.V 
11931938a150SAneesh Kumar K.V 		ext4_journal_stop(handle);
11941938a150SAneesh Kumar K.V 		if (pos + len > inode->i_size) {
1195b9a4207dSJan Kara 			ext4_truncate_failed_write(inode);
11961938a150SAneesh Kumar K.V 			/*
1197ffacfa7aSJan Kara 			 * If truncate failed early the inode might
11981938a150SAneesh Kumar K.V 			 * still be on the orphan list; we need to
11991938a150SAneesh Kumar K.V 			 * make sure the inode is removed from the
12001938a150SAneesh Kumar K.V 			 * orphan list in that case.
12011938a150SAneesh Kumar K.V 			 */
12021938a150SAneesh Kumar K.V 			if (inode->i_nlink)
12031938a150SAneesh Kumar K.V 				ext4_orphan_del(NULL, inode);
12041938a150SAneesh Kumar K.V 		}
1205bfc1af65SNick Piggin 
120647564bfbSTheodore Ts'o 		if (ret == -ENOSPC &&
120747564bfbSTheodore Ts'o 		    ext4_should_retry_alloc(inode->i_sb, &retries))
120847564bfbSTheodore Ts'o 			goto retry_journal;
120947564bfbSTheodore Ts'o 		page_cache_release(page);
121047564bfbSTheodore Ts'o 		return ret;
121147564bfbSTheodore Ts'o 	}
121247564bfbSTheodore Ts'o 	*pagep = page;
1213ac27a0ecSDave Kleikamp 	return ret;
1214ac27a0ecSDave Kleikamp }
1215ac27a0ecSDave Kleikamp 
1216bfc1af65SNick Piggin /* For write_end() in data=journal mode */
1217bfc1af65SNick Piggin static int write_end_fn(handle_t *handle, struct buffer_head *bh)
1218ac27a0ecSDave Kleikamp {
121913fca323STheodore Ts'o 	int ret;
1220ac27a0ecSDave Kleikamp 	if (!buffer_mapped(bh) || buffer_freed(bh))
1221ac27a0ecSDave Kleikamp 		return 0;
1222ac27a0ecSDave Kleikamp 	set_buffer_uptodate(bh);
122313fca323STheodore Ts'o 	ret = ext4_handle_dirty_metadata(handle, NULL, bh);
122413fca323STheodore Ts'o 	clear_buffer_meta(bh);
122513fca323STheodore Ts'o 	clear_buffer_prio(bh);
122613fca323STheodore Ts'o 	return ret;
1227ac27a0ecSDave Kleikamp }
1228ac27a0ecSDave Kleikamp 
1229eed4333fSZheng Liu /*
1230eed4333fSZheng Liu  * We need to pick up the new inode size which generic_commit_write gave us
1231eed4333fSZheng Liu  * `file' can be NULL - eg, when called from page_symlink().
1232eed4333fSZheng Liu  *
1233eed4333fSZheng Liu  * ext4 never places buffers on inode->i_mapping->private_list.  metadata
1234eed4333fSZheng Liu  * buffers are managed internally.
1235eed4333fSZheng Liu  */
1236eed4333fSZheng Liu static int ext4_write_end(struct file *file,
1237f8514083SAneesh Kumar K.V 			  struct address_space *mapping,
1238f8514083SAneesh Kumar K.V 			  loff_t pos, unsigned len, unsigned copied,
1239f8514083SAneesh Kumar K.V 			  struct page *page, void *fsdata)
1240f8514083SAneesh Kumar K.V {
1241f8514083SAneesh Kumar K.V 	handle_t *handle = ext4_journal_current_handle();
1242eed4333fSZheng Liu 	struct inode *inode = mapping->host;
12430572639fSXiaoguang Wang 	loff_t old_size = inode->i_size;
1244eed4333fSZheng Liu 	int ret = 0, ret2;
1245eed4333fSZheng Liu 	int i_size_changed = 0;
1246eed4333fSZheng Liu 
1247eed4333fSZheng Liu 	trace_ext4_write_end(inode, pos, len, copied);
1248eed4333fSZheng Liu 	if (ext4_test_inode_state(inode, EXT4_STATE_ORDERED_MODE)) {
1249eed4333fSZheng Liu 		ret = ext4_jbd2_file_inode(handle, inode);
1250eed4333fSZheng Liu 		if (ret) {
1251eed4333fSZheng Liu 			unlock_page(page);
1252eed4333fSZheng Liu 			page_cache_release(page);
1253eed4333fSZheng Liu 			goto errout;
1254eed4333fSZheng Liu 		}
1255eed4333fSZheng Liu 	}
1256f8514083SAneesh Kumar K.V 
125742c832deSTheodore Ts'o 	if (ext4_has_inline_data(inode)) {
125842c832deSTheodore Ts'o 		ret = ext4_write_inline_data_end(inode, pos, len,
1259f19d5870STao Ma 						 copied, page);
126042c832deSTheodore Ts'o 		if (ret < 0)
126142c832deSTheodore Ts'o 			goto errout;
126242c832deSTheodore Ts'o 		copied = ret;
126342c832deSTheodore Ts'o 	} else
1264f19d5870STao Ma 		copied = block_write_end(file, mapping, pos,
1265f19d5870STao Ma 					 len, copied, page, fsdata);
1266f8514083SAneesh Kumar K.V 	/*
12674631dbf6SDmitry Monakhov 	 * it's important to update i_size while still holding page lock:
1268f8514083SAneesh Kumar K.V 	 * page writeout could otherwise come in and zero beyond i_size.
1269f8514083SAneesh Kumar K.V 	 */
12704631dbf6SDmitry Monakhov 	i_size_changed = ext4_update_inode_size(inode, pos + copied);
1271f8514083SAneesh Kumar K.V 	unlock_page(page);
1272f8514083SAneesh Kumar K.V 	page_cache_release(page);
1273f8514083SAneesh Kumar K.V 
12740572639fSXiaoguang Wang 	if (old_size < pos)
12750572639fSXiaoguang Wang 		pagecache_isize_extended(inode, old_size, pos);
1276f8514083SAneesh Kumar K.V 	/*
1277f8514083SAneesh Kumar K.V 	 * Don't mark the inode dirty under page lock. First, it unnecessarily
1278f8514083SAneesh Kumar K.V 	 * makes the holding time of page lock longer. Second, it forces lock
1279f8514083SAneesh Kumar K.V 	 * ordering of page lock and transaction start for journaling
1280f8514083SAneesh Kumar K.V 	 * filesystems.
1281f8514083SAneesh Kumar K.V 	 */
1282f8514083SAneesh Kumar K.V 	if (i_size_changed)
1283f8514083SAneesh Kumar K.V 		ext4_mark_inode_dirty(handle, inode);
1284f8514083SAneesh Kumar K.V 
1285ffacfa7aSJan Kara 	if (pos + len > inode->i_size && ext4_can_truncate(inode))
1286f8514083SAneesh Kumar K.V 		/* if we have allocated more blocks and copied
1287f8514083SAneesh Kumar K.V 		 * less. We will have blocks allocated outside
1288f8514083SAneesh Kumar K.V 		 * inode->i_size. So truncate them
1289f8514083SAneesh Kumar K.V 		 */
1290f8514083SAneesh Kumar K.V 		ext4_orphan_add(handle, inode);
129174d553aaSTheodore Ts'o errout:
1292617ba13bSMingming Cao 	ret2 = ext4_journal_stop(handle);
1293ac27a0ecSDave Kleikamp 	if (!ret)
1294ac27a0ecSDave Kleikamp 		ret = ret2;
1295bfc1af65SNick Piggin 
1296f8514083SAneesh Kumar K.V 	if (pos + len > inode->i_size) {
1297b9a4207dSJan Kara 		ext4_truncate_failed_write(inode);
1298f8514083SAneesh Kumar K.V 		/*
1299ffacfa7aSJan Kara 		 * If truncate failed early the inode might still be
1300f8514083SAneesh Kumar K.V 		 * on the orphan list; we need to make sure the inode
1301f8514083SAneesh Kumar K.V 		 * is removed from the orphan list in that case.
1302f8514083SAneesh Kumar K.V 		 */
1303f8514083SAneesh Kumar K.V 		if (inode->i_nlink)
1304f8514083SAneesh Kumar K.V 			ext4_orphan_del(NULL, inode);
1305f8514083SAneesh Kumar K.V 	}
1306f8514083SAneesh Kumar K.V 
1307bfc1af65SNick Piggin 	return ret ? ret : copied;
1308ac27a0ecSDave Kleikamp }
1309ac27a0ecSDave Kleikamp 
1310b90197b6STheodore Ts'o /*
1311b90197b6STheodore Ts'o  * This is a private version of page_zero_new_buffers() which doesn't
1312b90197b6STheodore Ts'o  * set the buffer to be dirty, since in data=journalled mode we need
1313b90197b6STheodore Ts'o  * to call ext4_handle_dirty_metadata() instead.
1314b90197b6STheodore Ts'o  */
1315b90197b6STheodore Ts'o static void zero_new_buffers(struct page *page, unsigned from, unsigned to)
1316b90197b6STheodore Ts'o {
1317b90197b6STheodore Ts'o 	unsigned int block_start = 0, block_end;
1318b90197b6STheodore Ts'o 	struct buffer_head *head, *bh;
1319b90197b6STheodore Ts'o 
1320b90197b6STheodore Ts'o 	bh = head = page_buffers(page);
1321b90197b6STheodore Ts'o 	do {
1322b90197b6STheodore Ts'o 		block_end = block_start + bh->b_size;
1323b90197b6STheodore Ts'o 		if (buffer_new(bh)) {
1324b90197b6STheodore Ts'o 			if (block_end > from && block_start < to) {
1325b90197b6STheodore Ts'o 				if (!PageUptodate(page)) {
1326b90197b6STheodore Ts'o 					unsigned start, size;
1327b90197b6STheodore Ts'o 
1328b90197b6STheodore Ts'o 					start = max(from, block_start);
1329b90197b6STheodore Ts'o 					size = min(to, block_end) - start;
1330b90197b6STheodore Ts'o 
1331b90197b6STheodore Ts'o 					zero_user(page, start, size);
1332b90197b6STheodore Ts'o 					set_buffer_uptodate(bh);
1333b90197b6STheodore Ts'o 				}
1334b90197b6STheodore Ts'o 				clear_buffer_new(bh);
1335b90197b6STheodore Ts'o 			}
1336b90197b6STheodore Ts'o 		}
1337b90197b6STheodore Ts'o 		block_start = block_end;
1338b90197b6STheodore Ts'o 		bh = bh->b_this_page;
1339b90197b6STheodore Ts'o 	} while (bh != head);
1340b90197b6STheodore Ts'o }
1341b90197b6STheodore Ts'o 
1342bfc1af65SNick Piggin static int ext4_journalled_write_end(struct file *file,
1343bfc1af65SNick Piggin 				     struct address_space *mapping,
1344bfc1af65SNick Piggin 				     loff_t pos, unsigned len, unsigned copied,
1345bfc1af65SNick Piggin 				     struct page *page, void *fsdata)
1346ac27a0ecSDave Kleikamp {
1347617ba13bSMingming Cao 	handle_t *handle = ext4_journal_current_handle();
1348bfc1af65SNick Piggin 	struct inode *inode = mapping->host;
13490572639fSXiaoguang Wang 	loff_t old_size = inode->i_size;
1350ac27a0ecSDave Kleikamp 	int ret = 0, ret2;
1351ac27a0ecSDave Kleikamp 	int partial = 0;
1352bfc1af65SNick Piggin 	unsigned from, to;
13534631dbf6SDmitry Monakhov 	int size_changed = 0;
1354ac27a0ecSDave Kleikamp 
13559bffad1eSTheodore Ts'o 	trace_ext4_journalled_write_end(inode, pos, len, copied);
1356bfc1af65SNick Piggin 	from = pos & (PAGE_CACHE_SIZE - 1);
1357bfc1af65SNick Piggin 	to = from + len;
1358bfc1af65SNick Piggin 
1359441c8508SCurt Wohlgemuth 	BUG_ON(!ext4_handle_valid(handle));
1360441c8508SCurt Wohlgemuth 
13613fdcfb66STao Ma 	if (ext4_has_inline_data(inode))
13623fdcfb66STao Ma 		copied = ext4_write_inline_data_end(inode, pos, len,
13633fdcfb66STao Ma 						    copied, page);
13643fdcfb66STao Ma 	else {
1365bfc1af65SNick Piggin 		if (copied < len) {
1366bfc1af65SNick Piggin 			if (!PageUptodate(page))
1367bfc1af65SNick Piggin 				copied = 0;
1368b90197b6STheodore Ts'o 			zero_new_buffers(page, from+copied, to);
1369bfc1af65SNick Piggin 		}
1370ac27a0ecSDave Kleikamp 
1371f19d5870STao Ma 		ret = ext4_walk_page_buffers(handle, page_buffers(page), from,
1372bfc1af65SNick Piggin 					     to, &partial, write_end_fn);
1373ac27a0ecSDave Kleikamp 		if (!partial)
1374ac27a0ecSDave Kleikamp 			SetPageUptodate(page);
13753fdcfb66STao Ma 	}
13764631dbf6SDmitry Monakhov 	size_changed = ext4_update_inode_size(inode, pos + copied);
137719f5fb7aSTheodore Ts'o 	ext4_set_inode_state(inode, EXT4_STATE_JDATA);
13782d859db3SJan Kara 	EXT4_I(inode)->i_datasync_tid = handle->h_transaction->t_tid;
13794631dbf6SDmitry Monakhov 	unlock_page(page);
13804631dbf6SDmitry Monakhov 	page_cache_release(page);
13814631dbf6SDmitry Monakhov 
13820572639fSXiaoguang Wang 	if (old_size < pos)
13830572639fSXiaoguang Wang 		pagecache_isize_extended(inode, old_size, pos);
13840572639fSXiaoguang Wang 
13854631dbf6SDmitry Monakhov 	if (size_changed) {
1386617ba13bSMingming Cao 		ret2 = ext4_mark_inode_dirty(handle, inode);
1387ac27a0ecSDave Kleikamp 		if (!ret)
1388ac27a0ecSDave Kleikamp 			ret = ret2;
1389ac27a0ecSDave Kleikamp 	}
1390bfc1af65SNick Piggin 
1391ffacfa7aSJan Kara 	if (pos + len > inode->i_size && ext4_can_truncate(inode))
1392f8514083SAneesh Kumar K.V 		/* if we have allocated more blocks and copied
1393f8514083SAneesh Kumar K.V 		 * less. We will have blocks allocated outside
1394f8514083SAneesh Kumar K.V 		 * inode->i_size. So truncate them
1395f8514083SAneesh Kumar K.V 		 */
1396f8514083SAneesh Kumar K.V 		ext4_orphan_add(handle, inode);
1397f8514083SAneesh Kumar K.V 
1398617ba13bSMingming Cao 	ret2 = ext4_journal_stop(handle);
1399ac27a0ecSDave Kleikamp 	if (!ret)
1400ac27a0ecSDave Kleikamp 		ret = ret2;
1401f8514083SAneesh Kumar K.V 	if (pos + len > inode->i_size) {
1402b9a4207dSJan Kara 		ext4_truncate_failed_write(inode);
1403f8514083SAneesh Kumar K.V 		/*
1404ffacfa7aSJan Kara 		 * If truncate failed early the inode might still be
1405f8514083SAneesh Kumar K.V 		 * on the orphan list; we need to make sure the inode
1406f8514083SAneesh Kumar K.V 		 * is removed from the orphan list in that case.
1407f8514083SAneesh Kumar K.V 		 */
1408f8514083SAneesh Kumar K.V 		if (inode->i_nlink)
1409f8514083SAneesh Kumar K.V 			ext4_orphan_del(NULL, inode);
1410f8514083SAneesh Kumar K.V 	}
1411bfc1af65SNick Piggin 
1412bfc1af65SNick Piggin 	return ret ? ret : copied;
1413ac27a0ecSDave Kleikamp }
1414d2a17637SMingming Cao 
14159d0be502STheodore Ts'o /*
1416c27e43a1SEric Whitney  * Reserve space for a single cluster
14179d0be502STheodore Ts'o  */
1418c27e43a1SEric Whitney static int ext4_da_reserve_space(struct inode *inode)
1419d2a17637SMingming Cao {
1420d2a17637SMingming Cao 	struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb);
14210637c6f4STheodore Ts'o 	struct ext4_inode_info *ei = EXT4_I(inode);
14225dd4056dSChristoph Hellwig 	int ret;
1423d2a17637SMingming Cao 
142460e58e0fSMingming Cao 	/*
142572b8ab9dSEric Sandeen 	 * We will charge metadata quota at writeout time; this saves
142672b8ab9dSEric Sandeen 	 * us from metadata over-estimation, though we may go over by
142772b8ab9dSEric Sandeen 	 * a small amount in the end.  Here we just reserve for data.
142860e58e0fSMingming Cao 	 */
14297b415bf6SAditya Kali 	ret = dquot_reserve_block(inode, EXT4_C2B(sbi, 1));
14305dd4056dSChristoph Hellwig 	if (ret)
14315dd4056dSChristoph Hellwig 		return ret;
143203179fe9STheodore Ts'o 
143303179fe9STheodore Ts'o 	spin_lock(&ei->i_block_reservation_lock);
143471d4f7d0STheodore Ts'o 	if (ext4_claim_free_clusters(sbi, 1, 0)) {
143503179fe9STheodore Ts'o 		spin_unlock(&ei->i_block_reservation_lock);
143603179fe9STheodore Ts'o 		dquot_release_reservation_block(inode, EXT4_C2B(sbi, 1));
1437d2a17637SMingming Cao 		return -ENOSPC;
1438d2a17637SMingming Cao 	}
14399d0be502STheodore Ts'o 	ei->i_reserved_data_blocks++;
1440c27e43a1SEric Whitney 	trace_ext4_da_reserve_space(inode);
14410637c6f4STheodore Ts'o 	spin_unlock(&ei->i_block_reservation_lock);
144239bc680aSDmitry Monakhov 
1443d2a17637SMingming Cao 	return 0;       /* success */
1444d2a17637SMingming Cao }
1445d2a17637SMingming Cao 
144612219aeaSAneesh Kumar K.V static void ext4_da_release_space(struct inode *inode, int to_free)
1447d2a17637SMingming Cao {
1448d2a17637SMingming Cao 	struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb);
14490637c6f4STheodore Ts'o 	struct ext4_inode_info *ei = EXT4_I(inode);
1450d2a17637SMingming Cao 
1451cd213226SMingming Cao 	if (!to_free)
1452cd213226SMingming Cao 		return;		/* Nothing to release, exit */
1453cd213226SMingming Cao 
1454d2a17637SMingming Cao 	spin_lock(&EXT4_I(inode)->i_block_reservation_lock);
1455cd213226SMingming Cao 
14565a58ec87SLi Zefan 	trace_ext4_da_release_space(inode, to_free);
14570637c6f4STheodore Ts'o 	if (unlikely(to_free > ei->i_reserved_data_blocks)) {
1458cd213226SMingming Cao 		/*
14590637c6f4STheodore Ts'o 		 * if there aren't enough reserved blocks, then the
14600637c6f4STheodore Ts'o 		 * counter is messed up somewhere.  Since this
14610637c6f4STheodore Ts'o 		 * function is called from invalidate page, it's
14620637c6f4STheodore Ts'o 		 * harmless to return without any action.
1463cd213226SMingming Cao 		 */
14648de5c325STheodore Ts'o 		ext4_warning(inode->i_sb, "ext4_da_release_space: "
14650637c6f4STheodore Ts'o 			 "ino %lu, to_free %d with only %d reserved "
14661084f252STheodore Ts'o 			 "data blocks", inode->i_ino, to_free,
14670637c6f4STheodore Ts'o 			 ei->i_reserved_data_blocks);
14680637c6f4STheodore Ts'o 		WARN_ON(1);
14690637c6f4STheodore Ts'o 		to_free = ei->i_reserved_data_blocks;
14700637c6f4STheodore Ts'o 	}
14710637c6f4STheodore Ts'o 	ei->i_reserved_data_blocks -= to_free;
14720637c6f4STheodore Ts'o 
147372b8ab9dSEric Sandeen 	/* update fs dirty data blocks counter */
147457042651STheodore Ts'o 	percpu_counter_sub(&sbi->s_dirtyclusters_counter, to_free);
1475d2a17637SMingming Cao 
1476d2a17637SMingming Cao 	spin_unlock(&EXT4_I(inode)->i_block_reservation_lock);
147760e58e0fSMingming Cao 
14787b415bf6SAditya Kali 	dquot_release_reservation_block(inode, EXT4_C2B(sbi, to_free));
1479d2a17637SMingming Cao }
1480d2a17637SMingming Cao 
1481d2a17637SMingming Cao static void ext4_da_page_release_reservation(struct page *page,
1482ca99fdd2SLukas Czerner 					     unsigned int offset,
1483ca99fdd2SLukas Czerner 					     unsigned int length)
1484d2a17637SMingming Cao {
14859705acd6SLukas Czerner 	int to_release = 0, contiguous_blks = 0;
1486d2a17637SMingming Cao 	struct buffer_head *head, *bh;
1487d2a17637SMingming Cao 	unsigned int curr_off = 0;
14887b415bf6SAditya Kali 	struct inode *inode = page->mapping->host;
14897b415bf6SAditya Kali 	struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb);
1490ca99fdd2SLukas Czerner 	unsigned int stop = offset + length;
14917b415bf6SAditya Kali 	int num_clusters;
149251865fdaSZheng Liu 	ext4_fsblk_t lblk;
1493d2a17637SMingming Cao 
1494ca99fdd2SLukas Czerner 	BUG_ON(stop > PAGE_CACHE_SIZE || stop < length);
1495ca99fdd2SLukas Czerner 
1496d2a17637SMingming Cao 	head = page_buffers(page);
1497d2a17637SMingming Cao 	bh = head;
1498d2a17637SMingming Cao 	do {
1499d2a17637SMingming Cao 		unsigned int next_off = curr_off + bh->b_size;
1500d2a17637SMingming Cao 
1501ca99fdd2SLukas Czerner 		if (next_off > stop)
1502ca99fdd2SLukas Czerner 			break;
1503ca99fdd2SLukas Czerner 
1504d2a17637SMingming Cao 		if ((offset <= curr_off) && (buffer_delay(bh))) {
1505d2a17637SMingming Cao 			to_release++;
15069705acd6SLukas Czerner 			contiguous_blks++;
1507d2a17637SMingming Cao 			clear_buffer_delay(bh);
15089705acd6SLukas Czerner 		} else if (contiguous_blks) {
15099705acd6SLukas Czerner 			lblk = page->index <<
15109705acd6SLukas Czerner 			       (PAGE_CACHE_SHIFT - inode->i_blkbits);
15119705acd6SLukas Czerner 			lblk += (curr_off >> inode->i_blkbits) -
15129705acd6SLukas Czerner 				contiguous_blks;
15139705acd6SLukas Czerner 			ext4_es_remove_extent(inode, lblk, contiguous_blks);
15149705acd6SLukas Czerner 			contiguous_blks = 0;
1515d2a17637SMingming Cao 		}
1516d2a17637SMingming Cao 		curr_off = next_off;
1517d2a17637SMingming Cao 	} while ((bh = bh->b_this_page) != head);
15187b415bf6SAditya Kali 
15199705acd6SLukas Czerner 	if (contiguous_blks) {
152051865fdaSZheng Liu 		lblk = page->index << (PAGE_CACHE_SHIFT - inode->i_blkbits);
15219705acd6SLukas Czerner 		lblk += (curr_off >> inode->i_blkbits) - contiguous_blks;
15229705acd6SLukas Czerner 		ext4_es_remove_extent(inode, lblk, contiguous_blks);
152351865fdaSZheng Liu 	}
152451865fdaSZheng Liu 
15257b415bf6SAditya Kali 	/* If we have released all the blocks belonging to a cluster, then we
15267b415bf6SAditya Kali 	 * need to release the reserved space for that cluster. */
15277b415bf6SAditya Kali 	num_clusters = EXT4_NUM_B2C(sbi, to_release);
15287b415bf6SAditya Kali 	while (num_clusters > 0) {
15297b415bf6SAditya Kali 		lblk = (page->index << (PAGE_CACHE_SHIFT - inode->i_blkbits)) +
15307b415bf6SAditya Kali 			((num_clusters - 1) << sbi->s_cluster_bits);
15317b415bf6SAditya Kali 		if (sbi->s_cluster_ratio == 1 ||
15327d1b1fbcSZheng Liu 		    !ext4_find_delalloc_cluster(inode, lblk))
15337b415bf6SAditya Kali 			ext4_da_release_space(inode, 1);
15347b415bf6SAditya Kali 
15357b415bf6SAditya Kali 		num_clusters--;
15367b415bf6SAditya Kali 	}
1537d2a17637SMingming Cao }
1538ac27a0ecSDave Kleikamp 
1539ac27a0ecSDave Kleikamp /*
154064769240SAlex Tomas  * Delayed allocation stuff
154164769240SAlex Tomas  */
154264769240SAlex Tomas 
15434e7ea81dSJan Kara struct mpage_da_data {
15444e7ea81dSJan Kara 	struct inode *inode;
15454e7ea81dSJan Kara 	struct writeback_control *wbc;
15466b523df4SJan Kara 
15474e7ea81dSJan Kara 	pgoff_t first_page;	/* The first page to write */
15484e7ea81dSJan Kara 	pgoff_t next_page;	/* Current page to examine */
15494e7ea81dSJan Kara 	pgoff_t last_page;	/* Last page to examine */
155064769240SAlex Tomas 	/*
15514e7ea81dSJan Kara 	 * Extent to map - this can be after first_page because that can be
15524e7ea81dSJan Kara 	 * fully mapped. We somewhat abuse m_flags to store whether the extent
15534e7ea81dSJan Kara 	 * is delalloc or unwritten.
155464769240SAlex Tomas 	 */
15554e7ea81dSJan Kara 	struct ext4_map_blocks map;
15564e7ea81dSJan Kara 	struct ext4_io_submit io_submit;	/* IO submission data */
15574e7ea81dSJan Kara };
155864769240SAlex Tomas 
15594e7ea81dSJan Kara static void mpage_release_unused_pages(struct mpage_da_data *mpd,
15604e7ea81dSJan Kara 				       bool invalidate)
1561c4a0c46eSAneesh Kumar K.V {
1562c4a0c46eSAneesh Kumar K.V 	int nr_pages, i;
1563c4a0c46eSAneesh Kumar K.V 	pgoff_t index, end;
1564c4a0c46eSAneesh Kumar K.V 	struct pagevec pvec;
1565c4a0c46eSAneesh Kumar K.V 	struct inode *inode = mpd->inode;
1566c4a0c46eSAneesh Kumar K.V 	struct address_space *mapping = inode->i_mapping;
15674e7ea81dSJan Kara 
15684e7ea81dSJan Kara 	/* This is necessary when next_page == 0. */
15694e7ea81dSJan Kara 	if (mpd->first_page >= mpd->next_page)
15704e7ea81dSJan Kara 		return;
1571c4a0c46eSAneesh Kumar K.V 
1572c7f5938aSCurt Wohlgemuth 	index = mpd->first_page;
1573c7f5938aSCurt Wohlgemuth 	end   = mpd->next_page - 1;
15744e7ea81dSJan Kara 	if (invalidate) {
15754e7ea81dSJan Kara 		ext4_lblk_t start, last;
157651865fdaSZheng Liu 		start = index << (PAGE_CACHE_SHIFT - inode->i_blkbits);
157751865fdaSZheng Liu 		last = end << (PAGE_CACHE_SHIFT - inode->i_blkbits);
157851865fdaSZheng Liu 		ext4_es_remove_extent(inode, start, last - start + 1);
15794e7ea81dSJan Kara 	}
158051865fdaSZheng Liu 
158166bea92cSEric Sandeen 	pagevec_init(&pvec, 0);
1582c4a0c46eSAneesh Kumar K.V 	while (index <= end) {
1583c4a0c46eSAneesh Kumar K.V 		nr_pages = pagevec_lookup(&pvec, mapping, index, PAGEVEC_SIZE);
1584c4a0c46eSAneesh Kumar K.V 		if (nr_pages == 0)
1585c4a0c46eSAneesh Kumar K.V 			break;
1586c4a0c46eSAneesh Kumar K.V 		for (i = 0; i < nr_pages; i++) {
1587c4a0c46eSAneesh Kumar K.V 			struct page *page = pvec.pages[i];
15889b1d0998SJan Kara 			if (page->index > end)
1589c4a0c46eSAneesh Kumar K.V 				break;
1590c4a0c46eSAneesh Kumar K.V 			BUG_ON(!PageLocked(page));
1591c4a0c46eSAneesh Kumar K.V 			BUG_ON(PageWriteback(page));
15924e7ea81dSJan Kara 			if (invalidate) {
1593d47992f8SLukas Czerner 				block_invalidatepage(page, 0, PAGE_CACHE_SIZE);
1594c4a0c46eSAneesh Kumar K.V 				ClearPageUptodate(page);
15954e7ea81dSJan Kara 			}
1596c4a0c46eSAneesh Kumar K.V 			unlock_page(page);
1597c4a0c46eSAneesh Kumar K.V 		}
15989b1d0998SJan Kara 		index = pvec.pages[nr_pages - 1]->index + 1;
15999b1d0998SJan Kara 		pagevec_release(&pvec);
1600c4a0c46eSAneesh Kumar K.V 	}
1601c4a0c46eSAneesh Kumar K.V }
1602c4a0c46eSAneesh Kumar K.V 
1603df22291fSAneesh Kumar K.V static void ext4_print_free_blocks(struct inode *inode)
1604df22291fSAneesh Kumar K.V {
1605df22291fSAneesh Kumar K.V 	struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb);
160692b97816STheodore Ts'o 	struct super_block *sb = inode->i_sb;
1607f78ee70dSLukas Czerner 	struct ext4_inode_info *ei = EXT4_I(inode);
160892b97816STheodore Ts'o 
160992b97816STheodore Ts'o 	ext4_msg(sb, KERN_CRIT, "Total free blocks count %lld",
16105dee5437STheodore Ts'o 	       EXT4_C2B(EXT4_SB(inode->i_sb),
1611f78ee70dSLukas Czerner 			ext4_count_free_clusters(sb)));
161292b97816STheodore Ts'o 	ext4_msg(sb, KERN_CRIT, "Free/Dirty block details");
161392b97816STheodore Ts'o 	ext4_msg(sb, KERN_CRIT, "free_blocks=%lld",
1614f78ee70dSLukas Czerner 	       (long long) EXT4_C2B(EXT4_SB(sb),
161557042651STheodore Ts'o 		percpu_counter_sum(&sbi->s_freeclusters_counter)));
161692b97816STheodore Ts'o 	ext4_msg(sb, KERN_CRIT, "dirty_blocks=%lld",
1617f78ee70dSLukas Czerner 	       (long long) EXT4_C2B(EXT4_SB(sb),
16187b415bf6SAditya Kali 		percpu_counter_sum(&sbi->s_dirtyclusters_counter)));
161992b97816STheodore Ts'o 	ext4_msg(sb, KERN_CRIT, "Block reservation details");
162092b97816STheodore Ts'o 	ext4_msg(sb, KERN_CRIT, "i_reserved_data_blocks=%u",
1621f78ee70dSLukas Czerner 		 ei->i_reserved_data_blocks);
1622df22291fSAneesh Kumar K.V 	return;
1623df22291fSAneesh Kumar K.V }
1624df22291fSAneesh Kumar K.V 
1625c364b22cSAneesh Kumar K.V static int ext4_bh_delay_or_unwritten(handle_t *handle, struct buffer_head *bh)
162629fa89d0SAneesh Kumar K.V {
1627c364b22cSAneesh Kumar K.V 	return (buffer_delay(bh) || buffer_unwritten(bh)) && buffer_dirty(bh);
162829fa89d0SAneesh Kumar K.V }
162929fa89d0SAneesh Kumar K.V 
163064769240SAlex Tomas /*
16315356f261SAditya Kali  * This function is grabs code from the very beginning of
16325356f261SAditya Kali  * ext4_map_blocks, but assumes that the caller is from delayed write
16335356f261SAditya Kali  * time. This function looks up the requested blocks and sets the
16345356f261SAditya Kali  * buffer delay bit under the protection of i_data_sem.
16355356f261SAditya Kali  */
16365356f261SAditya Kali static int ext4_da_map_blocks(struct inode *inode, sector_t iblock,
16375356f261SAditya Kali 			      struct ext4_map_blocks *map,
16385356f261SAditya Kali 			      struct buffer_head *bh)
16395356f261SAditya Kali {
1640d100eef2SZheng Liu 	struct extent_status es;
16415356f261SAditya Kali 	int retval;
16425356f261SAditya Kali 	sector_t invalid_block = ~((sector_t) 0xffff);
1643921f266bSDmitry Monakhov #ifdef ES_AGGRESSIVE_TEST
1644921f266bSDmitry Monakhov 	struct ext4_map_blocks orig_map;
1645921f266bSDmitry Monakhov 
1646921f266bSDmitry Monakhov 	memcpy(&orig_map, map, sizeof(*map));
1647921f266bSDmitry Monakhov #endif
16485356f261SAditya Kali 
16495356f261SAditya Kali 	if (invalid_block < ext4_blocks_count(EXT4_SB(inode->i_sb)->s_es))
16505356f261SAditya Kali 		invalid_block = ~0;
16515356f261SAditya Kali 
16525356f261SAditya Kali 	map->m_flags = 0;
16535356f261SAditya Kali 	ext_debug("ext4_da_map_blocks(): inode %lu, max_blocks %u,"
16545356f261SAditya Kali 		  "logical block %lu\n", inode->i_ino, map->m_len,
16555356f261SAditya Kali 		  (unsigned long) map->m_lblk);
1656d100eef2SZheng Liu 
1657d100eef2SZheng Liu 	/* Lookup extent status tree firstly */
1658d100eef2SZheng Liu 	if (ext4_es_lookup_extent(inode, iblock, &es)) {
1659d100eef2SZheng Liu 		if (ext4_es_is_hole(&es)) {
1660d100eef2SZheng Liu 			retval = 0;
1661c8b459f4SLukas Czerner 			down_read(&EXT4_I(inode)->i_data_sem);
1662d100eef2SZheng Liu 			goto add_delayed;
1663d100eef2SZheng Liu 		}
1664d100eef2SZheng Liu 
1665d100eef2SZheng Liu 		/*
1666d100eef2SZheng Liu 		 * Delayed extent could be allocated by fallocate.
1667d100eef2SZheng Liu 		 * So we need to check it.
1668d100eef2SZheng Liu 		 */
1669d100eef2SZheng Liu 		if (ext4_es_is_delayed(&es) && !ext4_es_is_unwritten(&es)) {
1670d100eef2SZheng Liu 			map_bh(bh, inode->i_sb, invalid_block);
1671d100eef2SZheng Liu 			set_buffer_new(bh);
1672d100eef2SZheng Liu 			set_buffer_delay(bh);
1673d100eef2SZheng Liu 			return 0;
1674d100eef2SZheng Liu 		}
1675d100eef2SZheng Liu 
1676d100eef2SZheng Liu 		map->m_pblk = ext4_es_pblock(&es) + iblock - es.es_lblk;
1677d100eef2SZheng Liu 		retval = es.es_len - (iblock - es.es_lblk);
1678d100eef2SZheng Liu 		if (retval > map->m_len)
1679d100eef2SZheng Liu 			retval = map->m_len;
1680d100eef2SZheng Liu 		map->m_len = retval;
1681d100eef2SZheng Liu 		if (ext4_es_is_written(&es))
1682d100eef2SZheng Liu 			map->m_flags |= EXT4_MAP_MAPPED;
1683d100eef2SZheng Liu 		else if (ext4_es_is_unwritten(&es))
1684d100eef2SZheng Liu 			map->m_flags |= EXT4_MAP_UNWRITTEN;
1685d100eef2SZheng Liu 		else
1686d100eef2SZheng Liu 			BUG_ON(1);
1687d100eef2SZheng Liu 
1688921f266bSDmitry Monakhov #ifdef ES_AGGRESSIVE_TEST
1689921f266bSDmitry Monakhov 		ext4_map_blocks_es_recheck(NULL, inode, map, &orig_map, 0);
1690921f266bSDmitry Monakhov #endif
1691d100eef2SZheng Liu 		return retval;
1692d100eef2SZheng Liu 	}
1693d100eef2SZheng Liu 
16945356f261SAditya Kali 	/*
16955356f261SAditya Kali 	 * Try to see if we can get the block without requesting a new
16965356f261SAditya Kali 	 * file system block.
16975356f261SAditya Kali 	 */
1698c8b459f4SLukas Czerner 	down_read(&EXT4_I(inode)->i_data_sem);
1699cbd7584eSJan Kara 	if (ext4_has_inline_data(inode))
17009c3569b5STao Ma 		retval = 0;
1701cbd7584eSJan Kara 	else if (ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS))
17022f8e0a7cSZheng Liu 		retval = ext4_ext_map_blocks(NULL, inode, map, 0);
17035356f261SAditya Kali 	else
17042f8e0a7cSZheng Liu 		retval = ext4_ind_map_blocks(NULL, inode, map, 0);
17055356f261SAditya Kali 
1706d100eef2SZheng Liu add_delayed:
17075356f261SAditya Kali 	if (retval == 0) {
1708f7fec032SZheng Liu 		int ret;
17095356f261SAditya Kali 		/*
17105356f261SAditya Kali 		 * XXX: __block_prepare_write() unmaps passed block,
17115356f261SAditya Kali 		 * is it OK?
17125356f261SAditya Kali 		 */
1713386ad67cSLukas Czerner 		/*
1714386ad67cSLukas Czerner 		 * If the block was allocated from previously allocated cluster,
1715386ad67cSLukas Czerner 		 * then we don't need to reserve it again. However we still need
1716386ad67cSLukas Czerner 		 * to reserve metadata for every block we're going to write.
1717386ad67cSLukas Czerner 		 */
1718c27e43a1SEric Whitney 		if (EXT4_SB(inode->i_sb)->s_cluster_ratio == 1 ||
1719cbd7584eSJan Kara 		    !ext4_find_delalloc_cluster(inode, map->m_lblk)) {
1720c27e43a1SEric Whitney 			ret = ext4_da_reserve_space(inode);
1721f7fec032SZheng Liu 			if (ret) {
17225356f261SAditya Kali 				/* not enough space to reserve */
1723f7fec032SZheng Liu 				retval = ret;
17245356f261SAditya Kali 				goto out_unlock;
17255356f261SAditya Kali 			}
1726f7fec032SZheng Liu 		}
17275356f261SAditya Kali 
1728f7fec032SZheng Liu 		ret = ext4_es_insert_extent(inode, map->m_lblk, map->m_len,
1729fdc0212eSZheng Liu 					    ~0, EXTENT_STATUS_DELAYED);
1730f7fec032SZheng Liu 		if (ret) {
1731f7fec032SZheng Liu 			retval = ret;
173251865fdaSZheng Liu 			goto out_unlock;
1733f7fec032SZheng Liu 		}
173451865fdaSZheng Liu 
17355356f261SAditya Kali 		map_bh(bh, inode->i_sb, invalid_block);
17365356f261SAditya Kali 		set_buffer_new(bh);
17375356f261SAditya Kali 		set_buffer_delay(bh);
1738f7fec032SZheng Liu 	} else if (retval > 0) {
1739f7fec032SZheng Liu 		int ret;
17403be78c73STheodore Ts'o 		unsigned int status;
1741f7fec032SZheng Liu 
174244fb851dSZheng Liu 		if (unlikely(retval != map->m_len)) {
174344fb851dSZheng Liu 			ext4_warning(inode->i_sb,
174444fb851dSZheng Liu 				     "ES len assertion failed for inode "
174544fb851dSZheng Liu 				     "%lu: retval %d != map->m_len %d",
174644fb851dSZheng Liu 				     inode->i_ino, retval, map->m_len);
174744fb851dSZheng Liu 			WARN_ON(1);
1748921f266bSDmitry Monakhov 		}
1749921f266bSDmitry Monakhov 
1750f7fec032SZheng Liu 		status = map->m_flags & EXT4_MAP_UNWRITTEN ?
1751f7fec032SZheng Liu 				EXTENT_STATUS_UNWRITTEN : EXTENT_STATUS_WRITTEN;
1752f7fec032SZheng Liu 		ret = ext4_es_insert_extent(inode, map->m_lblk, map->m_len,
1753f7fec032SZheng Liu 					    map->m_pblk, status);
1754f7fec032SZheng Liu 		if (ret != 0)
1755f7fec032SZheng Liu 			retval = ret;
17565356f261SAditya Kali 	}
17575356f261SAditya Kali 
17585356f261SAditya Kali out_unlock:
17595356f261SAditya Kali 	up_read((&EXT4_I(inode)->i_data_sem));
17605356f261SAditya Kali 
17615356f261SAditya Kali 	return retval;
17625356f261SAditya Kali }
17635356f261SAditya Kali 
17645356f261SAditya Kali /*
1765d91bd2c1SSeunghun Lee  * This is a special get_block_t callback which is used by
1766b920c755STheodore Ts'o  * ext4_da_write_begin().  It will either return mapped block or
1767b920c755STheodore Ts'o  * reserve space for a single block.
176829fa89d0SAneesh Kumar K.V  *
176929fa89d0SAneesh Kumar K.V  * For delayed buffer_head we have BH_Mapped, BH_New, BH_Delay set.
177029fa89d0SAneesh Kumar K.V  * We also have b_blocknr = -1 and b_bdev initialized properly
177129fa89d0SAneesh Kumar K.V  *
177229fa89d0SAneesh Kumar K.V  * For unwritten buffer_head we have BH_Mapped, BH_New, BH_Unwritten set.
177329fa89d0SAneesh Kumar K.V  * We also have b_blocknr = physicalblock mapping unwritten extent and b_bdev
177429fa89d0SAneesh Kumar K.V  * initialized properly.
177564769240SAlex Tomas  */
17769c3569b5STao Ma int ext4_da_get_block_prep(struct inode *inode, sector_t iblock,
17772ed88685STheodore Ts'o 			   struct buffer_head *bh, int create)
177864769240SAlex Tomas {
17792ed88685STheodore Ts'o 	struct ext4_map_blocks map;
178064769240SAlex Tomas 	int ret = 0;
178164769240SAlex Tomas 
178264769240SAlex Tomas 	BUG_ON(create == 0);
17832ed88685STheodore Ts'o 	BUG_ON(bh->b_size != inode->i_sb->s_blocksize);
17842ed88685STheodore Ts'o 
17852ed88685STheodore Ts'o 	map.m_lblk = iblock;
17862ed88685STheodore Ts'o 	map.m_len = 1;
178764769240SAlex Tomas 
178864769240SAlex Tomas 	/*
178964769240SAlex Tomas 	 * first, we need to know whether the block is allocated already
179064769240SAlex Tomas 	 * preallocated blocks are unmapped but should treated
179164769240SAlex Tomas 	 * the same as allocated blocks.
179264769240SAlex Tomas 	 */
17935356f261SAditya Kali 	ret = ext4_da_map_blocks(inode, iblock, &map, bh);
17945356f261SAditya Kali 	if (ret <= 0)
17952ed88685STheodore Ts'o 		return ret;
179664769240SAlex Tomas 
17972ed88685STheodore Ts'o 	map_bh(bh, inode->i_sb, map.m_pblk);
1798ed8ad838SJan Kara 	ext4_update_bh_state(bh, map.m_flags);
17992ed88685STheodore Ts'o 
18002ed88685STheodore Ts'o 	if (buffer_unwritten(bh)) {
18012ed88685STheodore Ts'o 		/* A delayed write to unwritten bh should be marked
18022ed88685STheodore Ts'o 		 * new and mapped.  Mapped ensures that we don't do
18032ed88685STheodore Ts'o 		 * get_block multiple times when we write to the same
18042ed88685STheodore Ts'o 		 * offset and new ensures that we do proper zero out
18052ed88685STheodore Ts'o 		 * for partial write.
18062ed88685STheodore Ts'o 		 */
18072ed88685STheodore Ts'o 		set_buffer_new(bh);
1808c8205636STheodore Ts'o 		set_buffer_mapped(bh);
18092ed88685STheodore Ts'o 	}
18102ed88685STheodore Ts'o 	return 0;
181164769240SAlex Tomas }
181261628a3fSMingming Cao 
181362e086beSAneesh Kumar K.V static int bget_one(handle_t *handle, struct buffer_head *bh)
181462e086beSAneesh Kumar K.V {
181562e086beSAneesh Kumar K.V 	get_bh(bh);
181662e086beSAneesh Kumar K.V 	return 0;
181762e086beSAneesh Kumar K.V }
181862e086beSAneesh Kumar K.V 
181962e086beSAneesh Kumar K.V static int bput_one(handle_t *handle, struct buffer_head *bh)
182062e086beSAneesh Kumar K.V {
182162e086beSAneesh Kumar K.V 	put_bh(bh);
182262e086beSAneesh Kumar K.V 	return 0;
182362e086beSAneesh Kumar K.V }
182462e086beSAneesh Kumar K.V 
182562e086beSAneesh Kumar K.V static int __ext4_journalled_writepage(struct page *page,
182662e086beSAneesh Kumar K.V 				       unsigned int len)
182762e086beSAneesh Kumar K.V {
182862e086beSAneesh Kumar K.V 	struct address_space *mapping = page->mapping;
182962e086beSAneesh Kumar K.V 	struct inode *inode = mapping->host;
18303fdcfb66STao Ma 	struct buffer_head *page_bufs = NULL;
183162e086beSAneesh Kumar K.V 	handle_t *handle = NULL;
18323fdcfb66STao Ma 	int ret = 0, err = 0;
18333fdcfb66STao Ma 	int inline_data = ext4_has_inline_data(inode);
18343fdcfb66STao Ma 	struct buffer_head *inode_bh = NULL;
183562e086beSAneesh Kumar K.V 
1836cb20d518STheodore Ts'o 	ClearPageChecked(page);
18373fdcfb66STao Ma 
18383fdcfb66STao Ma 	if (inline_data) {
18393fdcfb66STao Ma 		BUG_ON(page->index != 0);
18403fdcfb66STao Ma 		BUG_ON(len > ext4_get_max_inline_size(inode));
18413fdcfb66STao Ma 		inode_bh = ext4_journalled_write_inline_data(inode, len, page);
18423fdcfb66STao Ma 		if (inode_bh == NULL)
18433fdcfb66STao Ma 			goto out;
18443fdcfb66STao Ma 	} else {
184562e086beSAneesh Kumar K.V 		page_bufs = page_buffers(page);
18463fdcfb66STao Ma 		if (!page_bufs) {
18473fdcfb66STao Ma 			BUG();
18483fdcfb66STao Ma 			goto out;
18493fdcfb66STao Ma 		}
18503fdcfb66STao Ma 		ext4_walk_page_buffers(handle, page_bufs, 0, len,
18513fdcfb66STao Ma 				       NULL, bget_one);
18523fdcfb66STao Ma 	}
1853bdf96838STheodore Ts'o 	/*
1854bdf96838STheodore Ts'o 	 * We need to release the page lock before we start the
1855bdf96838STheodore Ts'o 	 * journal, so grab a reference so the page won't disappear
1856bdf96838STheodore Ts'o 	 * out from under us.
1857bdf96838STheodore Ts'o 	 */
1858bdf96838STheodore Ts'o 	get_page(page);
185962e086beSAneesh Kumar K.V 	unlock_page(page);
186062e086beSAneesh Kumar K.V 
18619924a92aSTheodore Ts'o 	handle = ext4_journal_start(inode, EXT4_HT_WRITE_PAGE,
18629924a92aSTheodore Ts'o 				    ext4_writepage_trans_blocks(inode));
186362e086beSAneesh Kumar K.V 	if (IS_ERR(handle)) {
186462e086beSAneesh Kumar K.V 		ret = PTR_ERR(handle);
1865bdf96838STheodore Ts'o 		put_page(page);
1866bdf96838STheodore Ts'o 		goto out_no_pagelock;
1867bdf96838STheodore Ts'o 	}
1868bdf96838STheodore Ts'o 	BUG_ON(!ext4_handle_valid(handle));
1869bdf96838STheodore Ts'o 
1870bdf96838STheodore Ts'o 	lock_page(page);
1871bdf96838STheodore Ts'o 	put_page(page);
1872bdf96838STheodore Ts'o 	if (page->mapping != mapping) {
1873bdf96838STheodore Ts'o 		/* The page got truncated from under us */
1874bdf96838STheodore Ts'o 		ext4_journal_stop(handle);
1875bdf96838STheodore Ts'o 		ret = 0;
187662e086beSAneesh Kumar K.V 		goto out;
187762e086beSAneesh Kumar K.V 	}
187862e086beSAneesh Kumar K.V 
18793fdcfb66STao Ma 	if (inline_data) {
18805d601255Sliang xie 		BUFFER_TRACE(inode_bh, "get write access");
18813fdcfb66STao Ma 		ret = ext4_journal_get_write_access(handle, inode_bh);
18823fdcfb66STao Ma 
18833fdcfb66STao Ma 		err = ext4_handle_dirty_metadata(handle, inode, inode_bh);
18843fdcfb66STao Ma 
18853fdcfb66STao Ma 	} else {
1886f19d5870STao Ma 		ret = ext4_walk_page_buffers(handle, page_bufs, 0, len, NULL,
188762e086beSAneesh Kumar K.V 					     do_journal_get_write_access);
188862e086beSAneesh Kumar K.V 
1889f19d5870STao Ma 		err = ext4_walk_page_buffers(handle, page_bufs, 0, len, NULL,
189062e086beSAneesh Kumar K.V 					     write_end_fn);
18913fdcfb66STao Ma 	}
189262e086beSAneesh Kumar K.V 	if (ret == 0)
189362e086beSAneesh Kumar K.V 		ret = err;
18942d859db3SJan Kara 	EXT4_I(inode)->i_datasync_tid = handle->h_transaction->t_tid;
189562e086beSAneesh Kumar K.V 	err = ext4_journal_stop(handle);
189662e086beSAneesh Kumar K.V 	if (!ret)
189762e086beSAneesh Kumar K.V 		ret = err;
189862e086beSAneesh Kumar K.V 
18993fdcfb66STao Ma 	if (!ext4_has_inline_data(inode))
19008c9367fdSTheodore Ts'o 		ext4_walk_page_buffers(NULL, page_bufs, 0, len,
19013fdcfb66STao Ma 				       NULL, bput_one);
190219f5fb7aSTheodore Ts'o 	ext4_set_inode_state(inode, EXT4_STATE_JDATA);
190362e086beSAneesh Kumar K.V out:
1904bdf96838STheodore Ts'o 	unlock_page(page);
1905bdf96838STheodore Ts'o out_no_pagelock:
19063fdcfb66STao Ma 	brelse(inode_bh);
190762e086beSAneesh Kumar K.V 	return ret;
190862e086beSAneesh Kumar K.V }
190962e086beSAneesh Kumar K.V 
191061628a3fSMingming Cao /*
191143ce1d23SAneesh Kumar K.V  * Note that we don't need to start a transaction unless we're journaling data
191243ce1d23SAneesh Kumar K.V  * because we should have holes filled from ext4_page_mkwrite(). We even don't
191343ce1d23SAneesh Kumar K.V  * need to file the inode to the transaction's list in ordered mode because if
191443ce1d23SAneesh Kumar K.V  * we are writing back data added by write(), the inode is already there and if
191543ce1d23SAneesh Kumar K.V  * we are writing back data modified via mmap(), no one guarantees in which
191643ce1d23SAneesh Kumar K.V  * transaction the data will hit the disk. In case we are journaling data, we
191743ce1d23SAneesh Kumar K.V  * cannot start transaction directly because transaction start ranks above page
191843ce1d23SAneesh Kumar K.V  * lock so we have to do some magic.
191943ce1d23SAneesh Kumar K.V  *
1920b920c755STheodore Ts'o  * This function can get called via...
192120970ba6STheodore Ts'o  *   - ext4_writepages after taking page lock (have journal handle)
1922b920c755STheodore Ts'o  *   - journal_submit_inode_data_buffers (no journal handle)
1923f6463b0dSArtem Bityutskiy  *   - shrink_page_list via the kswapd/direct reclaim (no journal handle)
1924b920c755STheodore Ts'o  *   - grab_page_cache when doing write_begin (have journal handle)
192543ce1d23SAneesh Kumar K.V  *
192643ce1d23SAneesh Kumar K.V  * We don't do any block allocation in this function. If we have page with
192743ce1d23SAneesh Kumar K.V  * multiple blocks we need to write those buffer_heads that are mapped. This
192843ce1d23SAneesh Kumar K.V  * is important for mmaped based write. So if we do with blocksize 1K
192943ce1d23SAneesh Kumar K.V  * truncate(f, 1024);
193043ce1d23SAneesh Kumar K.V  * a = mmap(f, 0, 4096);
193143ce1d23SAneesh Kumar K.V  * a[0] = 'a';
193243ce1d23SAneesh Kumar K.V  * truncate(f, 4096);
193343ce1d23SAneesh Kumar K.V  * we have in the page first buffer_head mapped via page_mkwrite call back
193490802ed9SPaul Bolle  * but other buffer_heads would be unmapped but dirty (dirty done via the
193543ce1d23SAneesh Kumar K.V  * do_wp_page). So writepage should write the first block. If we modify
193643ce1d23SAneesh Kumar K.V  * the mmap area beyond 1024 we will again get a page_fault and the
193743ce1d23SAneesh Kumar K.V  * page_mkwrite callback will do the block allocation and mark the
193843ce1d23SAneesh Kumar K.V  * buffer_heads mapped.
193943ce1d23SAneesh Kumar K.V  *
194043ce1d23SAneesh Kumar K.V  * We redirty the page if we have any buffer_heads that is either delay or
194143ce1d23SAneesh Kumar K.V  * unwritten in the page.
194243ce1d23SAneesh Kumar K.V  *
194343ce1d23SAneesh Kumar K.V  * We can get recursively called as show below.
194443ce1d23SAneesh Kumar K.V  *
194543ce1d23SAneesh Kumar K.V  *	ext4_writepage() -> kmalloc() -> __alloc_pages() -> page_launder() ->
194643ce1d23SAneesh Kumar K.V  *		ext4_writepage()
194743ce1d23SAneesh Kumar K.V  *
194843ce1d23SAneesh Kumar K.V  * But since we don't do any block allocation we should not deadlock.
194943ce1d23SAneesh Kumar K.V  * Page also have the dirty flag cleared so we don't get recurive page_lock.
195061628a3fSMingming Cao  */
195143ce1d23SAneesh Kumar K.V static int ext4_writepage(struct page *page,
195264769240SAlex Tomas 			  struct writeback_control *wbc)
195364769240SAlex Tomas {
1954f8bec370SJan Kara 	int ret = 0;
195561628a3fSMingming Cao 	loff_t size;
1956498e5f24STheodore Ts'o 	unsigned int len;
1957744692dcSJiaying Zhang 	struct buffer_head *page_bufs = NULL;
195861628a3fSMingming Cao 	struct inode *inode = page->mapping->host;
195936ade451SJan Kara 	struct ext4_io_submit io_submit;
19601c8349a1SNamjae Jeon 	bool keep_towrite = false;
196164769240SAlex Tomas 
1962a9c667f8SLukas Czerner 	trace_ext4_writepage(page);
196361628a3fSMingming Cao 	size = i_size_read(inode);
196461628a3fSMingming Cao 	if (page->index == size >> PAGE_CACHE_SHIFT)
196561628a3fSMingming Cao 		len = size & ~PAGE_CACHE_MASK;
196661628a3fSMingming Cao 	else
196761628a3fSMingming Cao 		len = PAGE_CACHE_SIZE;
196861628a3fSMingming Cao 
1969f0e6c985SAneesh Kumar K.V 	page_bufs = page_buffers(page);
197064769240SAlex Tomas 	/*
1971fe386132SJan Kara 	 * We cannot do block allocation or other extent handling in this
1972fe386132SJan Kara 	 * function. If there are buffers needing that, we have to redirty
1973fe386132SJan Kara 	 * the page. But we may reach here when we do a journal commit via
1974fe386132SJan Kara 	 * journal_submit_inode_data_buffers() and in that case we must write
1975fe386132SJan Kara 	 * allocated buffers to achieve data=ordered mode guarantees.
1976cccd147aSTheodore Ts'o 	 *
1977cccd147aSTheodore Ts'o 	 * Also, if there is only one buffer per page (the fs block
1978cccd147aSTheodore Ts'o 	 * size == the page size), if one buffer needs block
1979cccd147aSTheodore Ts'o 	 * allocation or needs to modify the extent tree to clear the
1980cccd147aSTheodore Ts'o 	 * unwritten flag, we know that the page can't be written at
1981cccd147aSTheodore Ts'o 	 * all, so we might as well refuse the write immediately.
1982cccd147aSTheodore Ts'o 	 * Unfortunately if the block size != page size, we can't as
1983cccd147aSTheodore Ts'o 	 * easily detect this case using ext4_walk_page_buffers(), but
1984cccd147aSTheodore Ts'o 	 * for the extremely common case, this is an optimization that
1985cccd147aSTheodore Ts'o 	 * skips a useless round trip through ext4_bio_write_page().
198664769240SAlex Tomas 	 */
1987f19d5870STao Ma 	if (ext4_walk_page_buffers(NULL, page_bufs, 0, len, NULL,
1988c364b22cSAneesh Kumar K.V 				   ext4_bh_delay_or_unwritten)) {
198961628a3fSMingming Cao 		redirty_page_for_writepage(wbc, page);
1990cccd147aSTheodore Ts'o 		if ((current->flags & PF_MEMALLOC) ||
1991cccd147aSTheodore Ts'o 		    (inode->i_sb->s_blocksize == PAGE_CACHE_SIZE)) {
1992fe386132SJan Kara 			/*
1993fe386132SJan Kara 			 * For memory cleaning there's no point in writing only
1994fe386132SJan Kara 			 * some buffers. So just bail out. Warn if we came here
1995fe386132SJan Kara 			 * from direct reclaim.
1996fe386132SJan Kara 			 */
1997fe386132SJan Kara 			WARN_ON_ONCE((current->flags & (PF_MEMALLOC|PF_KSWAPD))
1998fe386132SJan Kara 							== PF_MEMALLOC);
199961628a3fSMingming Cao 			unlock_page(page);
200061628a3fSMingming Cao 			return 0;
200161628a3fSMingming Cao 		}
20021c8349a1SNamjae Jeon 		keep_towrite = true;
2003f0e6c985SAneesh Kumar K.V 	}
200464769240SAlex Tomas 
2005cb20d518STheodore Ts'o 	if (PageChecked(page) && ext4_should_journal_data(inode))
200643ce1d23SAneesh Kumar K.V 		/*
200743ce1d23SAneesh Kumar K.V 		 * It's mmapped pagecache.  Add buffers and journal it.  There
200843ce1d23SAneesh Kumar K.V 		 * doesn't seem much point in redirtying the page here.
200943ce1d23SAneesh Kumar K.V 		 */
20103f0ca309SWu Fengguang 		return __ext4_journalled_writepage(page, len);
201143ce1d23SAneesh Kumar K.V 
201297a851edSJan Kara 	ext4_io_submit_init(&io_submit, wbc);
201397a851edSJan Kara 	io_submit.io_end = ext4_init_io_end(inode, GFP_NOFS);
201497a851edSJan Kara 	if (!io_submit.io_end) {
201597a851edSJan Kara 		redirty_page_for_writepage(wbc, page);
201697a851edSJan Kara 		unlock_page(page);
201797a851edSJan Kara 		return -ENOMEM;
201897a851edSJan Kara 	}
20191c8349a1SNamjae Jeon 	ret = ext4_bio_write_page(&io_submit, page, len, wbc, keep_towrite);
202036ade451SJan Kara 	ext4_io_submit(&io_submit);
202197a851edSJan Kara 	/* Drop io_end reference we got from init */
202297a851edSJan Kara 	ext4_put_io_end_defer(io_submit.io_end);
202364769240SAlex Tomas 	return ret;
202464769240SAlex Tomas }
202564769240SAlex Tomas 
20265f1132b2SJan Kara static int mpage_submit_page(struct mpage_da_data *mpd, struct page *page)
20275f1132b2SJan Kara {
20285f1132b2SJan Kara 	int len;
20295f1132b2SJan Kara 	loff_t size = i_size_read(mpd->inode);
20305f1132b2SJan Kara 	int err;
20315f1132b2SJan Kara 
20325f1132b2SJan Kara 	BUG_ON(page->index != mpd->first_page);
20335f1132b2SJan Kara 	if (page->index == size >> PAGE_CACHE_SHIFT)
20345f1132b2SJan Kara 		len = size & ~PAGE_CACHE_MASK;
20355f1132b2SJan Kara 	else
20365f1132b2SJan Kara 		len = PAGE_CACHE_SIZE;
20375f1132b2SJan Kara 	clear_page_dirty_for_io(page);
20381c8349a1SNamjae Jeon 	err = ext4_bio_write_page(&mpd->io_submit, page, len, mpd->wbc, false);
20395f1132b2SJan Kara 	if (!err)
20405f1132b2SJan Kara 		mpd->wbc->nr_to_write--;
20415f1132b2SJan Kara 	mpd->first_page++;
20425f1132b2SJan Kara 
20435f1132b2SJan Kara 	return err;
20445f1132b2SJan Kara }
20455f1132b2SJan Kara 
20464e7ea81dSJan Kara #define BH_FLAGS ((1 << BH_Unwritten) | (1 << BH_Delay))
20474e7ea81dSJan Kara 
204861628a3fSMingming Cao /*
2049fffb2739SJan Kara  * mballoc gives us at most this number of blocks...
2050fffb2739SJan Kara  * XXX: That seems to be only a limitation of ext4_mb_normalize_request().
2051fffb2739SJan Kara  * The rest of mballoc seems to handle chunks up to full group size.
205261628a3fSMingming Cao  */
2053fffb2739SJan Kara #define MAX_WRITEPAGES_EXTENT_LEN 2048
2054525f4ed8SMingming Cao 
2055525f4ed8SMingming Cao /*
20564e7ea81dSJan Kara  * mpage_add_bh_to_extent - try to add bh to extent of blocks to map
20574e7ea81dSJan Kara  *
20584e7ea81dSJan Kara  * @mpd - extent of blocks
20594e7ea81dSJan Kara  * @lblk - logical number of the block in the file
206009930042SJan Kara  * @bh - buffer head we want to add to the extent
20614e7ea81dSJan Kara  *
206209930042SJan Kara  * The function is used to collect contig. blocks in the same state. If the
206309930042SJan Kara  * buffer doesn't require mapping for writeback and we haven't started the
206409930042SJan Kara  * extent of buffers to map yet, the function returns 'true' immediately - the
206509930042SJan Kara  * caller can write the buffer right away. Otherwise the function returns true
206609930042SJan Kara  * if the block has been added to the extent, false if the block couldn't be
206709930042SJan Kara  * added.
20684e7ea81dSJan Kara  */
206909930042SJan Kara static bool mpage_add_bh_to_extent(struct mpage_da_data *mpd, ext4_lblk_t lblk,
207009930042SJan Kara 				   struct buffer_head *bh)
20714e7ea81dSJan Kara {
20724e7ea81dSJan Kara 	struct ext4_map_blocks *map = &mpd->map;
20734e7ea81dSJan Kara 
207409930042SJan Kara 	/* Buffer that doesn't need mapping for writeback? */
207509930042SJan Kara 	if (!buffer_dirty(bh) || !buffer_mapped(bh) ||
207609930042SJan Kara 	    (!buffer_delay(bh) && !buffer_unwritten(bh))) {
207709930042SJan Kara 		/* So far no extent to map => we write the buffer right away */
207809930042SJan Kara 		if (map->m_len == 0)
207909930042SJan Kara 			return true;
208009930042SJan Kara 		return false;
208109930042SJan Kara 	}
20824e7ea81dSJan Kara 
20834e7ea81dSJan Kara 	/* First block in the extent? */
20844e7ea81dSJan Kara 	if (map->m_len == 0) {
20854e7ea81dSJan Kara 		map->m_lblk = lblk;
20864e7ea81dSJan Kara 		map->m_len = 1;
208709930042SJan Kara 		map->m_flags = bh->b_state & BH_FLAGS;
208809930042SJan Kara 		return true;
20894e7ea81dSJan Kara 	}
20904e7ea81dSJan Kara 
209109930042SJan Kara 	/* Don't go larger than mballoc is willing to allocate */
209209930042SJan Kara 	if (map->m_len >= MAX_WRITEPAGES_EXTENT_LEN)
209309930042SJan Kara 		return false;
209409930042SJan Kara 
20954e7ea81dSJan Kara 	/* Can we merge the block to our big extent? */
20964e7ea81dSJan Kara 	if (lblk == map->m_lblk + map->m_len &&
209709930042SJan Kara 	    (bh->b_state & BH_FLAGS) == map->m_flags) {
20984e7ea81dSJan Kara 		map->m_len++;
209909930042SJan Kara 		return true;
21004e7ea81dSJan Kara 	}
210109930042SJan Kara 	return false;
21024e7ea81dSJan Kara }
21034e7ea81dSJan Kara 
21045f1132b2SJan Kara /*
21055f1132b2SJan Kara  * mpage_process_page_bufs - submit page buffers for IO or add them to extent
21065f1132b2SJan Kara  *
21075f1132b2SJan Kara  * @mpd - extent of blocks for mapping
21085f1132b2SJan Kara  * @head - the first buffer in the page
21095f1132b2SJan Kara  * @bh - buffer we should start processing from
21105f1132b2SJan Kara  * @lblk - logical number of the block in the file corresponding to @bh
21115f1132b2SJan Kara  *
21125f1132b2SJan Kara  * Walk through page buffers from @bh upto @head (exclusive) and either submit
21135f1132b2SJan Kara  * the page for IO if all buffers in this page were mapped and there's no
21145f1132b2SJan Kara  * accumulated extent of buffers to map or add buffers in the page to the
21155f1132b2SJan Kara  * extent of buffers to map. The function returns 1 if the caller can continue
21165f1132b2SJan Kara  * by processing the next page, 0 if it should stop adding buffers to the
21175f1132b2SJan Kara  * extent to map because we cannot extend it anymore. It can also return value
21185f1132b2SJan Kara  * < 0 in case of error during IO submission.
21195f1132b2SJan Kara  */
21205f1132b2SJan Kara static int mpage_process_page_bufs(struct mpage_da_data *mpd,
21214e7ea81dSJan Kara 				   struct buffer_head *head,
21224e7ea81dSJan Kara 				   struct buffer_head *bh,
21234e7ea81dSJan Kara 				   ext4_lblk_t lblk)
21244e7ea81dSJan Kara {
21254e7ea81dSJan Kara 	struct inode *inode = mpd->inode;
21265f1132b2SJan Kara 	int err;
21274e7ea81dSJan Kara 	ext4_lblk_t blocks = (i_size_read(inode) + (1 << inode->i_blkbits) - 1)
21284e7ea81dSJan Kara 							>> inode->i_blkbits;
21294e7ea81dSJan Kara 
21304e7ea81dSJan Kara 	do {
21314e7ea81dSJan Kara 		BUG_ON(buffer_locked(bh));
21324e7ea81dSJan Kara 
213309930042SJan Kara 		if (lblk >= blocks || !mpage_add_bh_to_extent(mpd, lblk, bh)) {
21344e7ea81dSJan Kara 			/* Found extent to map? */
21354e7ea81dSJan Kara 			if (mpd->map.m_len)
21365f1132b2SJan Kara 				return 0;
213709930042SJan Kara 			/* Everything mapped so far and we hit EOF */
21385f1132b2SJan Kara 			break;
21394e7ea81dSJan Kara 		}
21404e7ea81dSJan Kara 	} while (lblk++, (bh = bh->b_this_page) != head);
21415f1132b2SJan Kara 	/* So far everything mapped? Submit the page for IO. */
21425f1132b2SJan Kara 	if (mpd->map.m_len == 0) {
21435f1132b2SJan Kara 		err = mpage_submit_page(mpd, head->b_page);
21445f1132b2SJan Kara 		if (err < 0)
21454e7ea81dSJan Kara 			return err;
21464e7ea81dSJan Kara 	}
21475f1132b2SJan Kara 	return lblk < blocks;
21485f1132b2SJan Kara }
21494e7ea81dSJan Kara 
21504e7ea81dSJan Kara /*
21514e7ea81dSJan Kara  * mpage_map_buffers - update buffers corresponding to changed extent and
21524e7ea81dSJan Kara  *		       submit fully mapped pages for IO
21534e7ea81dSJan Kara  *
21544e7ea81dSJan Kara  * @mpd - description of extent to map, on return next extent to map
21554e7ea81dSJan Kara  *
21564e7ea81dSJan Kara  * Scan buffers corresponding to changed extent (we expect corresponding pages
21574e7ea81dSJan Kara  * to be already locked) and update buffer state according to new extent state.
21584e7ea81dSJan Kara  * We map delalloc buffers to their physical location, clear unwritten bits,
2159556615dcSLukas Czerner  * and mark buffers as uninit when we perform writes to unwritten extents
21604e7ea81dSJan Kara  * and do extent conversion after IO is finished. If the last page is not fully
21614e7ea81dSJan Kara  * mapped, we update @map to the next extent in the last page that needs
21624e7ea81dSJan Kara  * mapping. Otherwise we submit the page for IO.
21634e7ea81dSJan Kara  */
21644e7ea81dSJan Kara static int mpage_map_and_submit_buffers(struct mpage_da_data *mpd)
21654e7ea81dSJan Kara {
21664e7ea81dSJan Kara 	struct pagevec pvec;
21674e7ea81dSJan Kara 	int nr_pages, i;
21684e7ea81dSJan Kara 	struct inode *inode = mpd->inode;
21694e7ea81dSJan Kara 	struct buffer_head *head, *bh;
21704e7ea81dSJan Kara 	int bpp_bits = PAGE_CACHE_SHIFT - inode->i_blkbits;
21714e7ea81dSJan Kara 	pgoff_t start, end;
21724e7ea81dSJan Kara 	ext4_lblk_t lblk;
21734e7ea81dSJan Kara 	sector_t pblock;
21744e7ea81dSJan Kara 	int err;
21754e7ea81dSJan Kara 
21764e7ea81dSJan Kara 	start = mpd->map.m_lblk >> bpp_bits;
21774e7ea81dSJan Kara 	end = (mpd->map.m_lblk + mpd->map.m_len - 1) >> bpp_bits;
21784e7ea81dSJan Kara 	lblk = start << bpp_bits;
21794e7ea81dSJan Kara 	pblock = mpd->map.m_pblk;
21804e7ea81dSJan Kara 
21814e7ea81dSJan Kara 	pagevec_init(&pvec, 0);
21824e7ea81dSJan Kara 	while (start <= end) {
21834e7ea81dSJan Kara 		nr_pages = pagevec_lookup(&pvec, inode->i_mapping, start,
21844e7ea81dSJan Kara 					  PAGEVEC_SIZE);
21854e7ea81dSJan Kara 		if (nr_pages == 0)
21864e7ea81dSJan Kara 			break;
21874e7ea81dSJan Kara 		for (i = 0; i < nr_pages; i++) {
21884e7ea81dSJan Kara 			struct page *page = pvec.pages[i];
21894e7ea81dSJan Kara 
21904e7ea81dSJan Kara 			if (page->index > end)
21914e7ea81dSJan Kara 				break;
21924e7ea81dSJan Kara 			/* Up to 'end' pages must be contiguous */
21934e7ea81dSJan Kara 			BUG_ON(page->index != start);
21944e7ea81dSJan Kara 			bh = head = page_buffers(page);
21954e7ea81dSJan Kara 			do {
21964e7ea81dSJan Kara 				if (lblk < mpd->map.m_lblk)
21974e7ea81dSJan Kara 					continue;
21984e7ea81dSJan Kara 				if (lblk >= mpd->map.m_lblk + mpd->map.m_len) {
21994e7ea81dSJan Kara 					/*
22004e7ea81dSJan Kara 					 * Buffer after end of mapped extent.
22014e7ea81dSJan Kara 					 * Find next buffer in the page to map.
22024e7ea81dSJan Kara 					 */
22034e7ea81dSJan Kara 					mpd->map.m_len = 0;
22044e7ea81dSJan Kara 					mpd->map.m_flags = 0;
22055f1132b2SJan Kara 					/*
22065f1132b2SJan Kara 					 * FIXME: If dioread_nolock supports
22075f1132b2SJan Kara 					 * blocksize < pagesize, we need to make
22085f1132b2SJan Kara 					 * sure we add size mapped so far to
22095f1132b2SJan Kara 					 * io_end->size as the following call
22105f1132b2SJan Kara 					 * can submit the page for IO.
22115f1132b2SJan Kara 					 */
22125f1132b2SJan Kara 					err = mpage_process_page_bufs(mpd, head,
22135f1132b2SJan Kara 								      bh, lblk);
22144e7ea81dSJan Kara 					pagevec_release(&pvec);
22155f1132b2SJan Kara 					if (err > 0)
22165f1132b2SJan Kara 						err = 0;
22175f1132b2SJan Kara 					return err;
22184e7ea81dSJan Kara 				}
22194e7ea81dSJan Kara 				if (buffer_delay(bh)) {
22204e7ea81dSJan Kara 					clear_buffer_delay(bh);
22214e7ea81dSJan Kara 					bh->b_blocknr = pblock++;
22224e7ea81dSJan Kara 				}
22234e7ea81dSJan Kara 				clear_buffer_unwritten(bh);
22245f1132b2SJan Kara 			} while (lblk++, (bh = bh->b_this_page) != head);
22254e7ea81dSJan Kara 
22264e7ea81dSJan Kara 			/*
22274e7ea81dSJan Kara 			 * FIXME: This is going to break if dioread_nolock
22284e7ea81dSJan Kara 			 * supports blocksize < pagesize as we will try to
22294e7ea81dSJan Kara 			 * convert potentially unmapped parts of inode.
22304e7ea81dSJan Kara 			 */
22314e7ea81dSJan Kara 			mpd->io_submit.io_end->size += PAGE_CACHE_SIZE;
22324e7ea81dSJan Kara 			/* Page fully mapped - let IO run! */
22334e7ea81dSJan Kara 			err = mpage_submit_page(mpd, page);
22344e7ea81dSJan Kara 			if (err < 0) {
22354e7ea81dSJan Kara 				pagevec_release(&pvec);
22364e7ea81dSJan Kara 				return err;
22374e7ea81dSJan Kara 			}
22384e7ea81dSJan Kara 			start++;
22394e7ea81dSJan Kara 		}
22404e7ea81dSJan Kara 		pagevec_release(&pvec);
22414e7ea81dSJan Kara 	}
22424e7ea81dSJan Kara 	/* Extent fully mapped and matches with page boundary. We are done. */
22434e7ea81dSJan Kara 	mpd->map.m_len = 0;
22444e7ea81dSJan Kara 	mpd->map.m_flags = 0;
22454e7ea81dSJan Kara 	return 0;
22464e7ea81dSJan Kara }
22474e7ea81dSJan Kara 
22484e7ea81dSJan Kara static int mpage_map_one_extent(handle_t *handle, struct mpage_da_data *mpd)
22494e7ea81dSJan Kara {
22504e7ea81dSJan Kara 	struct inode *inode = mpd->inode;
22514e7ea81dSJan Kara 	struct ext4_map_blocks *map = &mpd->map;
22524e7ea81dSJan Kara 	int get_blocks_flags;
2253090f32eeSLukas Czerner 	int err, dioread_nolock;
22544e7ea81dSJan Kara 
22554e7ea81dSJan Kara 	trace_ext4_da_write_pages_extent(inode, map);
22564e7ea81dSJan Kara 	/*
22574e7ea81dSJan Kara 	 * Call ext4_map_blocks() to allocate any delayed allocation blocks, or
2258556615dcSLukas Czerner 	 * to convert an unwritten extent to be initialized (in the case
22594e7ea81dSJan Kara 	 * where we have written into one or more preallocated blocks).  It is
22604e7ea81dSJan Kara 	 * possible that we're going to need more metadata blocks than
22614e7ea81dSJan Kara 	 * previously reserved. However we must not fail because we're in
22624e7ea81dSJan Kara 	 * writeback and there is nothing we can do about it so it might result
22634e7ea81dSJan Kara 	 * in data loss.  So use reserved blocks to allocate metadata if
22644e7ea81dSJan Kara 	 * possible.
22654e7ea81dSJan Kara 	 *
2266754cfed6STheodore Ts'o 	 * We pass in the magic EXT4_GET_BLOCKS_DELALLOC_RESERVE if
2267754cfed6STheodore Ts'o 	 * the blocks in question are delalloc blocks.  This indicates
2268754cfed6STheodore Ts'o 	 * that the blocks and quotas has already been checked when
2269754cfed6STheodore Ts'o 	 * the data was copied into the page cache.
22704e7ea81dSJan Kara 	 */
22714e7ea81dSJan Kara 	get_blocks_flags = EXT4_GET_BLOCKS_CREATE |
22724e7ea81dSJan Kara 			   EXT4_GET_BLOCKS_METADATA_NOFAIL;
2273090f32eeSLukas Czerner 	dioread_nolock = ext4_should_dioread_nolock(inode);
2274090f32eeSLukas Czerner 	if (dioread_nolock)
22754e7ea81dSJan Kara 		get_blocks_flags |= EXT4_GET_BLOCKS_IO_CREATE_EXT;
22764e7ea81dSJan Kara 	if (map->m_flags & (1 << BH_Delay))
22774e7ea81dSJan Kara 		get_blocks_flags |= EXT4_GET_BLOCKS_DELALLOC_RESERVE;
22784e7ea81dSJan Kara 
22794e7ea81dSJan Kara 	err = ext4_map_blocks(handle, inode, map, get_blocks_flags);
22804e7ea81dSJan Kara 	if (err < 0)
22814e7ea81dSJan Kara 		return err;
2282090f32eeSLukas Czerner 	if (dioread_nolock && (map->m_flags & EXT4_MAP_UNWRITTEN)) {
22836b523df4SJan Kara 		if (!mpd->io_submit.io_end->handle &&
22846b523df4SJan Kara 		    ext4_handle_valid(handle)) {
22856b523df4SJan Kara 			mpd->io_submit.io_end->handle = handle->h_rsv_handle;
22866b523df4SJan Kara 			handle->h_rsv_handle = NULL;
22876b523df4SJan Kara 		}
22883613d228SJan Kara 		ext4_set_io_unwritten_flag(inode, mpd->io_submit.io_end);
22896b523df4SJan Kara 	}
22904e7ea81dSJan Kara 
22914e7ea81dSJan Kara 	BUG_ON(map->m_len == 0);
22924e7ea81dSJan Kara 	if (map->m_flags & EXT4_MAP_NEW) {
22934e7ea81dSJan Kara 		struct block_device *bdev = inode->i_sb->s_bdev;
22944e7ea81dSJan Kara 		int i;
22954e7ea81dSJan Kara 
22964e7ea81dSJan Kara 		for (i = 0; i < map->m_len; i++)
22974e7ea81dSJan Kara 			unmap_underlying_metadata(bdev, map->m_pblk + i);
22984e7ea81dSJan Kara 	}
22994e7ea81dSJan Kara 	return 0;
23004e7ea81dSJan Kara }
23014e7ea81dSJan Kara 
23024e7ea81dSJan Kara /*
23034e7ea81dSJan Kara  * mpage_map_and_submit_extent - map extent starting at mpd->lblk of length
23044e7ea81dSJan Kara  *				 mpd->len and submit pages underlying it for IO
23054e7ea81dSJan Kara  *
23064e7ea81dSJan Kara  * @handle - handle for journal operations
23074e7ea81dSJan Kara  * @mpd - extent to map
23087534e854SJan Kara  * @give_up_on_write - we set this to true iff there is a fatal error and there
23097534e854SJan Kara  *                     is no hope of writing the data. The caller should discard
23107534e854SJan Kara  *                     dirty pages to avoid infinite loops.
23114e7ea81dSJan Kara  *
23124e7ea81dSJan Kara  * The function maps extent starting at mpd->lblk of length mpd->len. If it is
23134e7ea81dSJan Kara  * delayed, blocks are allocated, if it is unwritten, we may need to convert
23144e7ea81dSJan Kara  * them to initialized or split the described range from larger unwritten
23154e7ea81dSJan Kara  * extent. Note that we need not map all the described range since allocation
23164e7ea81dSJan Kara  * can return less blocks or the range is covered by more unwritten extents. We
23174e7ea81dSJan Kara  * cannot map more because we are limited by reserved transaction credits. On
23184e7ea81dSJan Kara  * the other hand we always make sure that the last touched page is fully
23194e7ea81dSJan Kara  * mapped so that it can be written out (and thus forward progress is
23204e7ea81dSJan Kara  * guaranteed). After mapping we submit all mapped pages for IO.
23214e7ea81dSJan Kara  */
23224e7ea81dSJan Kara static int mpage_map_and_submit_extent(handle_t *handle,
2323cb530541STheodore Ts'o 				       struct mpage_da_data *mpd,
2324cb530541STheodore Ts'o 				       bool *give_up_on_write)
23254e7ea81dSJan Kara {
23264e7ea81dSJan Kara 	struct inode *inode = mpd->inode;
23274e7ea81dSJan Kara 	struct ext4_map_blocks *map = &mpd->map;
23284e7ea81dSJan Kara 	int err;
23294e7ea81dSJan Kara 	loff_t disksize;
23306603120eSDmitry Monakhov 	int progress = 0;
23314e7ea81dSJan Kara 
23324e7ea81dSJan Kara 	mpd->io_submit.io_end->offset =
23334e7ea81dSJan Kara 				((loff_t)map->m_lblk) << inode->i_blkbits;
233427d7c4edSJan Kara 	do {
23354e7ea81dSJan Kara 		err = mpage_map_one_extent(handle, mpd);
23364e7ea81dSJan Kara 		if (err < 0) {
23374e7ea81dSJan Kara 			struct super_block *sb = inode->i_sb;
23384e7ea81dSJan Kara 
2339cb530541STheodore Ts'o 			if (EXT4_SB(sb)->s_mount_flags & EXT4_MF_FS_ABORTED)
2340cb530541STheodore Ts'o 				goto invalidate_dirty_pages;
23414e7ea81dSJan Kara 			/*
2342cb530541STheodore Ts'o 			 * Let the uper layers retry transient errors.
2343cb530541STheodore Ts'o 			 * In the case of ENOSPC, if ext4_count_free_blocks()
2344cb530541STheodore Ts'o 			 * is non-zero, a commit should free up blocks.
23454e7ea81dSJan Kara 			 */
2346cb530541STheodore Ts'o 			if ((err == -ENOMEM) ||
23476603120eSDmitry Monakhov 			    (err == -ENOSPC && ext4_count_free_clusters(sb))) {
23486603120eSDmitry Monakhov 				if (progress)
23496603120eSDmitry Monakhov 					goto update_disksize;
2350cb530541STheodore Ts'o 				return err;
23516603120eSDmitry Monakhov 			}
23524e7ea81dSJan Kara 			ext4_msg(sb, KERN_CRIT,
23534e7ea81dSJan Kara 				 "Delayed block allocation failed for "
23544e7ea81dSJan Kara 				 "inode %lu at logical offset %llu with"
23554e7ea81dSJan Kara 				 " max blocks %u with error %d",
23564e7ea81dSJan Kara 				 inode->i_ino,
23574e7ea81dSJan Kara 				 (unsigned long long)map->m_lblk,
2358cb530541STheodore Ts'o 				 (unsigned)map->m_len, -err);
23594e7ea81dSJan Kara 			ext4_msg(sb, KERN_CRIT,
23604e7ea81dSJan Kara 				 "This should not happen!! Data will "
23614e7ea81dSJan Kara 				 "be lost\n");
23624e7ea81dSJan Kara 			if (err == -ENOSPC)
23634e7ea81dSJan Kara 				ext4_print_free_blocks(inode);
2364cb530541STheodore Ts'o 		invalidate_dirty_pages:
2365cb530541STheodore Ts'o 			*give_up_on_write = true;
23664e7ea81dSJan Kara 			return err;
23674e7ea81dSJan Kara 		}
23686603120eSDmitry Monakhov 		progress = 1;
23694e7ea81dSJan Kara 		/*
23704e7ea81dSJan Kara 		 * Update buffer state, submit mapped pages, and get us new
23714e7ea81dSJan Kara 		 * extent to map
23724e7ea81dSJan Kara 		 */
23734e7ea81dSJan Kara 		err = mpage_map_and_submit_buffers(mpd);
23744e7ea81dSJan Kara 		if (err < 0)
23756603120eSDmitry Monakhov 			goto update_disksize;
237627d7c4edSJan Kara 	} while (map->m_len);
23774e7ea81dSJan Kara 
23786603120eSDmitry Monakhov update_disksize:
2379622cad13STheodore Ts'o 	/*
2380622cad13STheodore Ts'o 	 * Update on-disk size after IO is submitted.  Races with
2381622cad13STheodore Ts'o 	 * truncate are avoided by checking i_size under i_data_sem.
2382622cad13STheodore Ts'o 	 */
23834e7ea81dSJan Kara 	disksize = ((loff_t)mpd->first_page) << PAGE_CACHE_SHIFT;
23844e7ea81dSJan Kara 	if (disksize > EXT4_I(inode)->i_disksize) {
23854e7ea81dSJan Kara 		int err2;
2386622cad13STheodore Ts'o 		loff_t i_size;
23874e7ea81dSJan Kara 
2388622cad13STheodore Ts'o 		down_write(&EXT4_I(inode)->i_data_sem);
2389622cad13STheodore Ts'o 		i_size = i_size_read(inode);
2390622cad13STheodore Ts'o 		if (disksize > i_size)
2391622cad13STheodore Ts'o 			disksize = i_size;
2392622cad13STheodore Ts'o 		if (disksize > EXT4_I(inode)->i_disksize)
2393622cad13STheodore Ts'o 			EXT4_I(inode)->i_disksize = disksize;
23944e7ea81dSJan Kara 		err2 = ext4_mark_inode_dirty(handle, inode);
2395622cad13STheodore Ts'o 		up_write(&EXT4_I(inode)->i_data_sem);
23964e7ea81dSJan Kara 		if (err2)
23974e7ea81dSJan Kara 			ext4_error(inode->i_sb,
23984e7ea81dSJan Kara 				   "Failed to mark inode %lu dirty",
23994e7ea81dSJan Kara 				   inode->i_ino);
24004e7ea81dSJan Kara 		if (!err)
24014e7ea81dSJan Kara 			err = err2;
24024e7ea81dSJan Kara 	}
24034e7ea81dSJan Kara 	return err;
24044e7ea81dSJan Kara }
24054e7ea81dSJan Kara 
24064e7ea81dSJan Kara /*
2407fffb2739SJan Kara  * Calculate the total number of credits to reserve for one writepages
240820970ba6STheodore Ts'o  * iteration. This is called from ext4_writepages(). We map an extent of
2409fffb2739SJan Kara  * up to MAX_WRITEPAGES_EXTENT_LEN blocks and then we go on and finish mapping
2410fffb2739SJan Kara  * the last partial page. So in total we can map MAX_WRITEPAGES_EXTENT_LEN +
2411fffb2739SJan Kara  * bpp - 1 blocks in bpp different extents.
2412525f4ed8SMingming Cao  */
2413fffb2739SJan Kara static int ext4_da_writepages_trans_blocks(struct inode *inode)
2414fffb2739SJan Kara {
2415fffb2739SJan Kara 	int bpp = ext4_journal_blocks_per_page(inode);
2416525f4ed8SMingming Cao 
2417fffb2739SJan Kara 	return ext4_meta_trans_blocks(inode,
2418fffb2739SJan Kara 				MAX_WRITEPAGES_EXTENT_LEN + bpp - 1, bpp);
2419525f4ed8SMingming Cao }
242061628a3fSMingming Cao 
24218e48dcfbSTheodore Ts'o /*
24224e7ea81dSJan Kara  * mpage_prepare_extent_to_map - find & lock contiguous range of dirty pages
24234e7ea81dSJan Kara  * 				 and underlying extent to map
24244e7ea81dSJan Kara  *
24254e7ea81dSJan Kara  * @mpd - where to look for pages
24264e7ea81dSJan Kara  *
24274e7ea81dSJan Kara  * Walk dirty pages in the mapping. If they are fully mapped, submit them for
24284e7ea81dSJan Kara  * IO immediately. When we find a page which isn't mapped we start accumulating
24294e7ea81dSJan Kara  * extent of buffers underlying these pages that needs mapping (formed by
24304e7ea81dSJan Kara  * either delayed or unwritten buffers). We also lock the pages containing
24314e7ea81dSJan Kara  * these buffers. The extent found is returned in @mpd structure (starting at
24324e7ea81dSJan Kara  * mpd->lblk with length mpd->len blocks).
24334e7ea81dSJan Kara  *
24344e7ea81dSJan Kara  * Note that this function can attach bios to one io_end structure which are
24354e7ea81dSJan Kara  * neither logically nor physically contiguous. Although it may seem as an
24364e7ea81dSJan Kara  * unnecessary complication, it is actually inevitable in blocksize < pagesize
24374e7ea81dSJan Kara  * case as we need to track IO to all buffers underlying a page in one io_end.
24388e48dcfbSTheodore Ts'o  */
24394e7ea81dSJan Kara static int mpage_prepare_extent_to_map(struct mpage_da_data *mpd)
24408e48dcfbSTheodore Ts'o {
24414e7ea81dSJan Kara 	struct address_space *mapping = mpd->inode->i_mapping;
24428e48dcfbSTheodore Ts'o 	struct pagevec pvec;
24434f01b02cSTheodore Ts'o 	unsigned int nr_pages;
2444aeac589aSMing Lei 	long left = mpd->wbc->nr_to_write;
24454e7ea81dSJan Kara 	pgoff_t index = mpd->first_page;
24464e7ea81dSJan Kara 	pgoff_t end = mpd->last_page;
24474e7ea81dSJan Kara 	int tag;
24484e7ea81dSJan Kara 	int i, err = 0;
24494e7ea81dSJan Kara 	int blkbits = mpd->inode->i_blkbits;
24504e7ea81dSJan Kara 	ext4_lblk_t lblk;
24514e7ea81dSJan Kara 	struct buffer_head *head;
24528e48dcfbSTheodore Ts'o 
24534e7ea81dSJan Kara 	if (mpd->wbc->sync_mode == WB_SYNC_ALL || mpd->wbc->tagged_writepages)
24545b41d924SEric Sandeen 		tag = PAGECACHE_TAG_TOWRITE;
24555b41d924SEric Sandeen 	else
24565b41d924SEric Sandeen 		tag = PAGECACHE_TAG_DIRTY;
24575b41d924SEric Sandeen 
24584e7ea81dSJan Kara 	pagevec_init(&pvec, 0);
24594e7ea81dSJan Kara 	mpd->map.m_len = 0;
24604e7ea81dSJan Kara 	mpd->next_page = index;
24614f01b02cSTheodore Ts'o 	while (index <= end) {
24625b41d924SEric Sandeen 		nr_pages = pagevec_lookup_tag(&pvec, mapping, &index, tag,
24638e48dcfbSTheodore Ts'o 			      min(end - index, (pgoff_t)PAGEVEC_SIZE-1) + 1);
24648e48dcfbSTheodore Ts'o 		if (nr_pages == 0)
24654e7ea81dSJan Kara 			goto out;
24668e48dcfbSTheodore Ts'o 
24678e48dcfbSTheodore Ts'o 		for (i = 0; i < nr_pages; i++) {
24688e48dcfbSTheodore Ts'o 			struct page *page = pvec.pages[i];
24698e48dcfbSTheodore Ts'o 
24708e48dcfbSTheodore Ts'o 			/*
24718e48dcfbSTheodore Ts'o 			 * At this point, the page may be truncated or
24728e48dcfbSTheodore Ts'o 			 * invalidated (changing page->mapping to NULL), or
24738e48dcfbSTheodore Ts'o 			 * even swizzled back from swapper_space to tmpfs file
24748e48dcfbSTheodore Ts'o 			 * mapping. However, page->index will not change
24758e48dcfbSTheodore Ts'o 			 * because we have a reference on the page.
24768e48dcfbSTheodore Ts'o 			 */
24774f01b02cSTheodore Ts'o 			if (page->index > end)
24784f01b02cSTheodore Ts'o 				goto out;
24798e48dcfbSTheodore Ts'o 
2480aeac589aSMing Lei 			/*
2481aeac589aSMing Lei 			 * Accumulated enough dirty pages? This doesn't apply
2482aeac589aSMing Lei 			 * to WB_SYNC_ALL mode. For integrity sync we have to
2483aeac589aSMing Lei 			 * keep going because someone may be concurrently
2484aeac589aSMing Lei 			 * dirtying pages, and we might have synced a lot of
2485aeac589aSMing Lei 			 * newly appeared dirty pages, but have not synced all
2486aeac589aSMing Lei 			 * of the old dirty pages.
2487aeac589aSMing Lei 			 */
2488aeac589aSMing Lei 			if (mpd->wbc->sync_mode == WB_SYNC_NONE && left <= 0)
2489aeac589aSMing Lei 				goto out;
2490aeac589aSMing Lei 
24914e7ea81dSJan Kara 			/* If we can't merge this page, we are done. */
24924e7ea81dSJan Kara 			if (mpd->map.m_len > 0 && mpd->next_page != page->index)
24934e7ea81dSJan Kara 				goto out;
249478aaced3STheodore Ts'o 
24958e48dcfbSTheodore Ts'o 			lock_page(page);
24968e48dcfbSTheodore Ts'o 			/*
24974e7ea81dSJan Kara 			 * If the page is no longer dirty, or its mapping no
24984e7ea81dSJan Kara 			 * longer corresponds to inode we are writing (which
24994e7ea81dSJan Kara 			 * means it has been truncated or invalidated), or the
25004e7ea81dSJan Kara 			 * page is already under writeback and we are not doing
25014e7ea81dSJan Kara 			 * a data integrity writeback, skip the page
25028e48dcfbSTheodore Ts'o 			 */
25034f01b02cSTheodore Ts'o 			if (!PageDirty(page) ||
25044f01b02cSTheodore Ts'o 			    (PageWriteback(page) &&
25054e7ea81dSJan Kara 			     (mpd->wbc->sync_mode == WB_SYNC_NONE)) ||
25064f01b02cSTheodore Ts'o 			    unlikely(page->mapping != mapping)) {
25078e48dcfbSTheodore Ts'o 				unlock_page(page);
25088e48dcfbSTheodore Ts'o 				continue;
25098e48dcfbSTheodore Ts'o 			}
25108e48dcfbSTheodore Ts'o 
25118e48dcfbSTheodore Ts'o 			wait_on_page_writeback(page);
25128e48dcfbSTheodore Ts'o 			BUG_ON(PageWriteback(page));
25138e48dcfbSTheodore Ts'o 
25144e7ea81dSJan Kara 			if (mpd->map.m_len == 0)
25158eb9e5ceSTheodore Ts'o 				mpd->first_page = page->index;
25168eb9e5ceSTheodore Ts'o 			mpd->next_page = page->index + 1;
2517f8bec370SJan Kara 			/* Add all dirty buffers to mpd */
25184e7ea81dSJan Kara 			lblk = ((ext4_lblk_t)page->index) <<
25194e7ea81dSJan Kara 				(PAGE_CACHE_SHIFT - blkbits);
25208eb9e5ceSTheodore Ts'o 			head = page_buffers(page);
25215f1132b2SJan Kara 			err = mpage_process_page_bufs(mpd, head, head, lblk);
25225f1132b2SJan Kara 			if (err <= 0)
25234e7ea81dSJan Kara 				goto out;
25245f1132b2SJan Kara 			err = 0;
2525aeac589aSMing Lei 			left--;
25268e48dcfbSTheodore Ts'o 		}
25278e48dcfbSTheodore Ts'o 		pagevec_release(&pvec);
25288e48dcfbSTheodore Ts'o 		cond_resched();
25298e48dcfbSTheodore Ts'o 	}
25304f01b02cSTheodore Ts'o 	return 0;
25318eb9e5ceSTheodore Ts'o out:
25328eb9e5ceSTheodore Ts'o 	pagevec_release(&pvec);
25334e7ea81dSJan Kara 	return err;
25348e48dcfbSTheodore Ts'o }
25358e48dcfbSTheodore Ts'o 
253620970ba6STheodore Ts'o static int __writepage(struct page *page, struct writeback_control *wbc,
253720970ba6STheodore Ts'o 		       void *data)
253820970ba6STheodore Ts'o {
253920970ba6STheodore Ts'o 	struct address_space *mapping = data;
254020970ba6STheodore Ts'o 	int ret = ext4_writepage(page, wbc);
254120970ba6STheodore Ts'o 	mapping_set_error(mapping, ret);
254220970ba6STheodore Ts'o 	return ret;
254320970ba6STheodore Ts'o }
254420970ba6STheodore Ts'o 
254520970ba6STheodore Ts'o static int ext4_writepages(struct address_space *mapping,
254664769240SAlex Tomas 			   struct writeback_control *wbc)
254764769240SAlex Tomas {
25484e7ea81dSJan Kara 	pgoff_t	writeback_index = 0;
25494e7ea81dSJan Kara 	long nr_to_write = wbc->nr_to_write;
255022208dedSAneesh Kumar K.V 	int range_whole = 0;
25514e7ea81dSJan Kara 	int cycled = 1;
255261628a3fSMingming Cao 	handle_t *handle = NULL;
2553df22291fSAneesh Kumar K.V 	struct mpage_da_data mpd;
25545e745b04SAneesh Kumar K.V 	struct inode *inode = mapping->host;
25556b523df4SJan Kara 	int needed_blocks, rsv_blocks = 0, ret = 0;
25565e745b04SAneesh Kumar K.V 	struct ext4_sb_info *sbi = EXT4_SB(mapping->host->i_sb);
25574e7ea81dSJan Kara 	bool done;
25581bce63d1SShaohua Li 	struct blk_plug plug;
2559cb530541STheodore Ts'o 	bool give_up_on_write = false;
256061628a3fSMingming Cao 
256120970ba6STheodore Ts'o 	trace_ext4_writepages(inode, wbc);
2562ba80b101STheodore Ts'o 
256361628a3fSMingming Cao 	/*
256461628a3fSMingming Cao 	 * No pages to write? This is mainly a kludge to avoid starting
256561628a3fSMingming Cao 	 * a transaction for special inodes like journal inode on last iput()
256661628a3fSMingming Cao 	 * because that could violate lock ordering on umount
256761628a3fSMingming Cao 	 */
2568a1d6cc56SAneesh Kumar K.V 	if (!mapping->nrpages || !mapping_tagged(mapping, PAGECACHE_TAG_DIRTY))
2569bbf023c7SMing Lei 		goto out_writepages;
25702a21e37eSTheodore Ts'o 
257120970ba6STheodore Ts'o 	if (ext4_should_journal_data(inode)) {
257220970ba6STheodore Ts'o 		struct blk_plug plug;
257320970ba6STheodore Ts'o 
257420970ba6STheodore Ts'o 		blk_start_plug(&plug);
257520970ba6STheodore Ts'o 		ret = write_cache_pages(mapping, wbc, __writepage, mapping);
257620970ba6STheodore Ts'o 		blk_finish_plug(&plug);
2577bbf023c7SMing Lei 		goto out_writepages;
257820970ba6STheodore Ts'o 	}
257920970ba6STheodore Ts'o 
25802a21e37eSTheodore Ts'o 	/*
25812a21e37eSTheodore Ts'o 	 * If the filesystem has aborted, it is read-only, so return
25822a21e37eSTheodore Ts'o 	 * right away instead of dumping stack traces later on that
25832a21e37eSTheodore Ts'o 	 * will obscure the real source of the problem.  We test
25844ab2f15bSTheodore Ts'o 	 * EXT4_MF_FS_ABORTED instead of sb->s_flag's MS_RDONLY because
25852a21e37eSTheodore Ts'o 	 * the latter could be true if the filesystem is mounted
258620970ba6STheodore Ts'o 	 * read-only, and in that case, ext4_writepages should
25872a21e37eSTheodore Ts'o 	 * *never* be called, so if that ever happens, we would want
25882a21e37eSTheodore Ts'o 	 * the stack trace.
25892a21e37eSTheodore Ts'o 	 */
2590bbf023c7SMing Lei 	if (unlikely(sbi->s_mount_flags & EXT4_MF_FS_ABORTED)) {
2591bbf023c7SMing Lei 		ret = -EROFS;
2592bbf023c7SMing Lei 		goto out_writepages;
2593bbf023c7SMing Lei 	}
25942a21e37eSTheodore Ts'o 
25956b523df4SJan Kara 	if (ext4_should_dioread_nolock(inode)) {
25966b523df4SJan Kara 		/*
25976b523df4SJan Kara 		 * We may need to convert up to one extent per block in
25986b523df4SJan Kara 		 * the page and we may dirty the inode.
25996b523df4SJan Kara 		 */
26006b523df4SJan Kara 		rsv_blocks = 1 + (PAGE_CACHE_SIZE >> inode->i_blkbits);
26016b523df4SJan Kara 	}
26026b523df4SJan Kara 
26034e7ea81dSJan Kara 	/*
26044e7ea81dSJan Kara 	 * If we have inline data and arrive here, it means that
26054e7ea81dSJan Kara 	 * we will soon create the block for the 1st page, so
26064e7ea81dSJan Kara 	 * we'd better clear the inline data here.
26074e7ea81dSJan Kara 	 */
26084e7ea81dSJan Kara 	if (ext4_has_inline_data(inode)) {
26094e7ea81dSJan Kara 		/* Just inode will be modified... */
26104e7ea81dSJan Kara 		handle = ext4_journal_start(inode, EXT4_HT_INODE, 1);
26114e7ea81dSJan Kara 		if (IS_ERR(handle)) {
26124e7ea81dSJan Kara 			ret = PTR_ERR(handle);
26134e7ea81dSJan Kara 			goto out_writepages;
26144e7ea81dSJan Kara 		}
26154e7ea81dSJan Kara 		BUG_ON(ext4_test_inode_state(inode,
26164e7ea81dSJan Kara 				EXT4_STATE_MAY_INLINE_DATA));
26174e7ea81dSJan Kara 		ext4_destroy_inline_data(handle, inode);
26184e7ea81dSJan Kara 		ext4_journal_stop(handle);
26194e7ea81dSJan Kara 	}
26204e7ea81dSJan Kara 
262122208dedSAneesh Kumar K.V 	if (wbc->range_start == 0 && wbc->range_end == LLONG_MAX)
262222208dedSAneesh Kumar K.V 		range_whole = 1;
262361628a3fSMingming Cao 
26242acf2c26SAneesh Kumar K.V 	if (wbc->range_cyclic) {
26254e7ea81dSJan Kara 		writeback_index = mapping->writeback_index;
26264e7ea81dSJan Kara 		if (writeback_index)
26272acf2c26SAneesh Kumar K.V 			cycled = 0;
26284e7ea81dSJan Kara 		mpd.first_page = writeback_index;
26294e7ea81dSJan Kara 		mpd.last_page = -1;
26305b41d924SEric Sandeen 	} else {
26314e7ea81dSJan Kara 		mpd.first_page = wbc->range_start >> PAGE_CACHE_SHIFT;
26324e7ea81dSJan Kara 		mpd.last_page = wbc->range_end >> PAGE_CACHE_SHIFT;
26335b41d924SEric Sandeen 	}
2634a1d6cc56SAneesh Kumar K.V 
26354e7ea81dSJan Kara 	mpd.inode = inode;
26364e7ea81dSJan Kara 	mpd.wbc = wbc;
26374e7ea81dSJan Kara 	ext4_io_submit_init(&mpd.io_submit, wbc);
26382acf2c26SAneesh Kumar K.V retry:
26396e6938b6SWu Fengguang 	if (wbc->sync_mode == WB_SYNC_ALL || wbc->tagged_writepages)
26404e7ea81dSJan Kara 		tag_pages_for_writeback(mapping, mpd.first_page, mpd.last_page);
26414e7ea81dSJan Kara 	done = false;
26421bce63d1SShaohua Li 	blk_start_plug(&plug);
26434e7ea81dSJan Kara 	while (!done && mpd.first_page <= mpd.last_page) {
26444e7ea81dSJan Kara 		/* For each extent of pages we use new io_end */
26454e7ea81dSJan Kara 		mpd.io_submit.io_end = ext4_init_io_end(inode, GFP_KERNEL);
26464e7ea81dSJan Kara 		if (!mpd.io_submit.io_end) {
26474e7ea81dSJan Kara 			ret = -ENOMEM;
26484e7ea81dSJan Kara 			break;
26494e7ea81dSJan Kara 		}
2650a1d6cc56SAneesh Kumar K.V 
2651a1d6cc56SAneesh Kumar K.V 		/*
26524e7ea81dSJan Kara 		 * We have two constraints: We find one extent to map and we
26534e7ea81dSJan Kara 		 * must always write out whole page (makes a difference when
26544e7ea81dSJan Kara 		 * blocksize < pagesize) so that we don't block on IO when we
26554e7ea81dSJan Kara 		 * try to write out the rest of the page. Journalled mode is
26564e7ea81dSJan Kara 		 * not supported by delalloc.
2657a1d6cc56SAneesh Kumar K.V 		 */
2658a1d6cc56SAneesh Kumar K.V 		BUG_ON(ext4_should_journal_data(inode));
2659525f4ed8SMingming Cao 		needed_blocks = ext4_da_writepages_trans_blocks(inode);
2660a1d6cc56SAneesh Kumar K.V 
266161628a3fSMingming Cao 		/* start a new transaction */
26626b523df4SJan Kara 		handle = ext4_journal_start_with_reserve(inode,
26636b523df4SJan Kara 				EXT4_HT_WRITE_PAGE, needed_blocks, rsv_blocks);
266461628a3fSMingming Cao 		if (IS_ERR(handle)) {
266561628a3fSMingming Cao 			ret = PTR_ERR(handle);
26661693918eSTheodore Ts'o 			ext4_msg(inode->i_sb, KERN_CRIT, "%s: jbd2_start: "
2667fbe845ddSCurt Wohlgemuth 			       "%ld pages, ino %lu; err %d", __func__,
2668a1d6cc56SAneesh Kumar K.V 				wbc->nr_to_write, inode->i_ino, ret);
26694e7ea81dSJan Kara 			/* Release allocated io_end */
26704e7ea81dSJan Kara 			ext4_put_io_end(mpd.io_submit.io_end);
26714e7ea81dSJan Kara 			break;
267261628a3fSMingming Cao 		}
2673f63e6005STheodore Ts'o 
26744e7ea81dSJan Kara 		trace_ext4_da_write_pages(inode, mpd.first_page, mpd.wbc);
26754e7ea81dSJan Kara 		ret = mpage_prepare_extent_to_map(&mpd);
26764e7ea81dSJan Kara 		if (!ret) {
26774e7ea81dSJan Kara 			if (mpd.map.m_len)
2678cb530541STheodore Ts'o 				ret = mpage_map_and_submit_extent(handle, &mpd,
2679cb530541STheodore Ts'o 					&give_up_on_write);
26804e7ea81dSJan Kara 			else {
2681f63e6005STheodore Ts'o 				/*
26824e7ea81dSJan Kara 				 * We scanned the whole range (or exhausted
26834e7ea81dSJan Kara 				 * nr_to_write), submitted what was mapped and
26844e7ea81dSJan Kara 				 * didn't find anything needing mapping. We are
26854e7ea81dSJan Kara 				 * done.
2686f63e6005STheodore Ts'o 				 */
26874e7ea81dSJan Kara 				done = true;
2688f63e6005STheodore Ts'o 			}
26894e7ea81dSJan Kara 		}
269061628a3fSMingming Cao 		ext4_journal_stop(handle);
26914e7ea81dSJan Kara 		/* Submit prepared bio */
26924e7ea81dSJan Kara 		ext4_io_submit(&mpd.io_submit);
26934e7ea81dSJan Kara 		/* Unlock pages we didn't use */
2694cb530541STheodore Ts'o 		mpage_release_unused_pages(&mpd, give_up_on_write);
26954e7ea81dSJan Kara 		/* Drop our io_end reference we got from init */
26964e7ea81dSJan Kara 		ext4_put_io_end(mpd.io_submit.io_end);
2697df22291fSAneesh Kumar K.V 
26984e7ea81dSJan Kara 		if (ret == -ENOSPC && sbi->s_journal) {
26994e7ea81dSJan Kara 			/*
27004e7ea81dSJan Kara 			 * Commit the transaction which would
270122208dedSAneesh Kumar K.V 			 * free blocks released in the transaction
270222208dedSAneesh Kumar K.V 			 * and try again
270322208dedSAneesh Kumar K.V 			 */
2704df22291fSAneesh Kumar K.V 			jbd2_journal_force_commit_nested(sbi->s_journal);
270522208dedSAneesh Kumar K.V 			ret = 0;
27064e7ea81dSJan Kara 			continue;
27074e7ea81dSJan Kara 		}
27084e7ea81dSJan Kara 		/* Fatal error - ENOMEM, EIO... */
27094e7ea81dSJan Kara 		if (ret)
271061628a3fSMingming Cao 			break;
271161628a3fSMingming Cao 	}
27121bce63d1SShaohua Li 	blk_finish_plug(&plug);
27139c12a831SJan Kara 	if (!ret && !cycled && wbc->nr_to_write > 0) {
27142acf2c26SAneesh Kumar K.V 		cycled = 1;
27154e7ea81dSJan Kara 		mpd.last_page = writeback_index - 1;
27164e7ea81dSJan Kara 		mpd.first_page = 0;
27172acf2c26SAneesh Kumar K.V 		goto retry;
27182acf2c26SAneesh Kumar K.V 	}
271961628a3fSMingming Cao 
272022208dedSAneesh Kumar K.V 	/* Update index */
272122208dedSAneesh Kumar K.V 	if (wbc->range_cyclic || (range_whole && wbc->nr_to_write > 0))
272222208dedSAneesh Kumar K.V 		/*
27234e7ea81dSJan Kara 		 * Set the writeback_index so that range_cyclic
272422208dedSAneesh Kumar K.V 		 * mode will write it back later
272522208dedSAneesh Kumar K.V 		 */
27264e7ea81dSJan Kara 		mapping->writeback_index = mpd.first_page;
2727a1d6cc56SAneesh Kumar K.V 
272861628a3fSMingming Cao out_writepages:
272920970ba6STheodore Ts'o 	trace_ext4_writepages_result(inode, wbc, ret,
27304e7ea81dSJan Kara 				     nr_to_write - wbc->nr_to_write);
273161628a3fSMingming Cao 	return ret;
273264769240SAlex Tomas }
273364769240SAlex Tomas 
273479f0be8dSAneesh Kumar K.V static int ext4_nonda_switch(struct super_block *sb)
273579f0be8dSAneesh Kumar K.V {
27365c1ff336SEric Whitney 	s64 free_clusters, dirty_clusters;
273779f0be8dSAneesh Kumar K.V 	struct ext4_sb_info *sbi = EXT4_SB(sb);
273879f0be8dSAneesh Kumar K.V 
273979f0be8dSAneesh Kumar K.V 	/*
274079f0be8dSAneesh Kumar K.V 	 * switch to non delalloc mode if we are running low
274179f0be8dSAneesh Kumar K.V 	 * on free block. The free block accounting via percpu
2742179f7ebfSEric Dumazet 	 * counters can get slightly wrong with percpu_counter_batch getting
274379f0be8dSAneesh Kumar K.V 	 * accumulated on each CPU without updating global counters
274479f0be8dSAneesh Kumar K.V 	 * Delalloc need an accurate free block accounting. So switch
274579f0be8dSAneesh Kumar K.V 	 * to non delalloc when we are near to error range.
274679f0be8dSAneesh Kumar K.V 	 */
27475c1ff336SEric Whitney 	free_clusters =
27485c1ff336SEric Whitney 		percpu_counter_read_positive(&sbi->s_freeclusters_counter);
27495c1ff336SEric Whitney 	dirty_clusters =
27505c1ff336SEric Whitney 		percpu_counter_read_positive(&sbi->s_dirtyclusters_counter);
275100d4e736STheodore Ts'o 	/*
275200d4e736STheodore Ts'o 	 * Start pushing delalloc when 1/2 of free blocks are dirty.
275300d4e736STheodore Ts'o 	 */
27545c1ff336SEric Whitney 	if (dirty_clusters && (free_clusters < 2 * dirty_clusters))
275510ee27a0SMiao Xie 		try_to_writeback_inodes_sb(sb, WB_REASON_FS_FREE_SPACE);
275600d4e736STheodore Ts'o 
27575c1ff336SEric Whitney 	if (2 * free_clusters < 3 * dirty_clusters ||
27585c1ff336SEric Whitney 	    free_clusters < (dirty_clusters + EXT4_FREECLUSTERS_WATERMARK)) {
275979f0be8dSAneesh Kumar K.V 		/*
2760c8afb446SEric Sandeen 		 * free block count is less than 150% of dirty blocks
2761c8afb446SEric Sandeen 		 * or free blocks is less than watermark
276279f0be8dSAneesh Kumar K.V 		 */
276379f0be8dSAneesh Kumar K.V 		return 1;
276479f0be8dSAneesh Kumar K.V 	}
276579f0be8dSAneesh Kumar K.V 	return 0;
276679f0be8dSAneesh Kumar K.V }
276779f0be8dSAneesh Kumar K.V 
27680ff8947fSEric Sandeen /* We always reserve for an inode update; the superblock could be there too */
27690ff8947fSEric Sandeen static int ext4_da_write_credits(struct inode *inode, loff_t pos, unsigned len)
27700ff8947fSEric Sandeen {
2771e2b911c5SDarrick J. Wong 	if (likely(ext4_has_feature_large_file(inode->i_sb)))
27720ff8947fSEric Sandeen 		return 1;
27730ff8947fSEric Sandeen 
27740ff8947fSEric Sandeen 	if (pos + len <= 0x7fffffffULL)
27750ff8947fSEric Sandeen 		return 1;
27760ff8947fSEric Sandeen 
27770ff8947fSEric Sandeen 	/* We might need to update the superblock to set LARGE_FILE */
27780ff8947fSEric Sandeen 	return 2;
27790ff8947fSEric Sandeen }
27800ff8947fSEric Sandeen 
278164769240SAlex Tomas static int ext4_da_write_begin(struct file *file, struct address_space *mapping,
278264769240SAlex Tomas 			       loff_t pos, unsigned len, unsigned flags,
278364769240SAlex Tomas 			       struct page **pagep, void **fsdata)
278464769240SAlex Tomas {
278572b8ab9dSEric Sandeen 	int ret, retries = 0;
278664769240SAlex Tomas 	struct page *page;
278764769240SAlex Tomas 	pgoff_t index;
278864769240SAlex Tomas 	struct inode *inode = mapping->host;
278964769240SAlex Tomas 	handle_t *handle;
279064769240SAlex Tomas 
279164769240SAlex Tomas 	index = pos >> PAGE_CACHE_SHIFT;
279279f0be8dSAneesh Kumar K.V 
279379f0be8dSAneesh Kumar K.V 	if (ext4_nonda_switch(inode->i_sb)) {
279479f0be8dSAneesh Kumar K.V 		*fsdata = (void *)FALL_BACK_TO_NONDELALLOC;
279579f0be8dSAneesh Kumar K.V 		return ext4_write_begin(file, mapping, pos,
279679f0be8dSAneesh Kumar K.V 					len, flags, pagep, fsdata);
279779f0be8dSAneesh Kumar K.V 	}
279879f0be8dSAneesh Kumar K.V 	*fsdata = (void *)0;
27999bffad1eSTheodore Ts'o 	trace_ext4_da_write_begin(inode, pos, len, flags);
28009c3569b5STao Ma 
28019c3569b5STao Ma 	if (ext4_test_inode_state(inode, EXT4_STATE_MAY_INLINE_DATA)) {
28029c3569b5STao Ma 		ret = ext4_da_write_inline_data_begin(mapping, inode,
28039c3569b5STao Ma 						      pos, len, flags,
28049c3569b5STao Ma 						      pagep, fsdata);
28059c3569b5STao Ma 		if (ret < 0)
280647564bfbSTheodore Ts'o 			return ret;
280747564bfbSTheodore Ts'o 		if (ret == 1)
280847564bfbSTheodore Ts'o 			return 0;
28099c3569b5STao Ma 	}
28109c3569b5STao Ma 
281147564bfbSTheodore Ts'o 	/*
281247564bfbSTheodore Ts'o 	 * grab_cache_page_write_begin() can take a long time if the
281347564bfbSTheodore Ts'o 	 * system is thrashing due to memory pressure, or if the page
281447564bfbSTheodore Ts'o 	 * is being written back.  So grab it first before we start
281547564bfbSTheodore Ts'o 	 * the transaction handle.  This also allows us to allocate
281647564bfbSTheodore Ts'o 	 * the page (if needed) without using GFP_NOFS.
281747564bfbSTheodore Ts'o 	 */
281847564bfbSTheodore Ts'o retry_grab:
281947564bfbSTheodore Ts'o 	page = grab_cache_page_write_begin(mapping, index, flags);
282047564bfbSTheodore Ts'o 	if (!page)
282147564bfbSTheodore Ts'o 		return -ENOMEM;
282247564bfbSTheodore Ts'o 	unlock_page(page);
282347564bfbSTheodore Ts'o 
282464769240SAlex Tomas 	/*
282564769240SAlex Tomas 	 * With delayed allocation, we don't log the i_disksize update
282664769240SAlex Tomas 	 * if there is delayed block allocation. But we still need
282764769240SAlex Tomas 	 * to journalling the i_disksize update if writes to the end
282864769240SAlex Tomas 	 * of file which has an already mapped buffer.
282964769240SAlex Tomas 	 */
283047564bfbSTheodore Ts'o retry_journal:
28310ff8947fSEric Sandeen 	handle = ext4_journal_start(inode, EXT4_HT_WRITE_PAGE,
28320ff8947fSEric Sandeen 				ext4_da_write_credits(inode, pos, len));
283364769240SAlex Tomas 	if (IS_ERR(handle)) {
283447564bfbSTheodore Ts'o 		page_cache_release(page);
283547564bfbSTheodore Ts'o 		return PTR_ERR(handle);
283664769240SAlex Tomas 	}
283764769240SAlex Tomas 
283847564bfbSTheodore Ts'o 	lock_page(page);
283947564bfbSTheodore Ts'o 	if (page->mapping != mapping) {
284047564bfbSTheodore Ts'o 		/* The page got truncated from under us */
284147564bfbSTheodore Ts'o 		unlock_page(page);
284247564bfbSTheodore Ts'o 		page_cache_release(page);
2843d5a0d4f7SEric Sandeen 		ext4_journal_stop(handle);
284447564bfbSTheodore Ts'o 		goto retry_grab;
2845d5a0d4f7SEric Sandeen 	}
284647564bfbSTheodore Ts'o 	/* In case writeback began while the page was unlocked */
28477afe5aa5SDmitry Monakhov 	wait_for_stable_page(page);
284864769240SAlex Tomas 
28492058f83aSMichael Halcrow #ifdef CONFIG_EXT4_FS_ENCRYPTION
28502058f83aSMichael Halcrow 	ret = ext4_block_write_begin(page, pos, len,
28512058f83aSMichael Halcrow 				     ext4_da_get_block_prep);
28522058f83aSMichael Halcrow #else
28536e1db88dSChristoph Hellwig 	ret = __block_write_begin(page, pos, len, ext4_da_get_block_prep);
28542058f83aSMichael Halcrow #endif
285564769240SAlex Tomas 	if (ret < 0) {
285664769240SAlex Tomas 		unlock_page(page);
285764769240SAlex Tomas 		ext4_journal_stop(handle);
2858ae4d5372SAneesh Kumar K.V 		/*
2859ae4d5372SAneesh Kumar K.V 		 * block_write_begin may have instantiated a few blocks
2860ae4d5372SAneesh Kumar K.V 		 * outside i_size.  Trim these off again. Don't need
2861ae4d5372SAneesh Kumar K.V 		 * i_size_read because we hold i_mutex.
2862ae4d5372SAneesh Kumar K.V 		 */
2863ae4d5372SAneesh Kumar K.V 		if (pos + len > inode->i_size)
2864b9a4207dSJan Kara 			ext4_truncate_failed_write(inode);
286547564bfbSTheodore Ts'o 
286647564bfbSTheodore Ts'o 		if (ret == -ENOSPC &&
286747564bfbSTheodore Ts'o 		    ext4_should_retry_alloc(inode->i_sb, &retries))
286847564bfbSTheodore Ts'o 			goto retry_journal;
286947564bfbSTheodore Ts'o 
287047564bfbSTheodore Ts'o 		page_cache_release(page);
287147564bfbSTheodore Ts'o 		return ret;
287264769240SAlex Tomas 	}
287364769240SAlex Tomas 
287447564bfbSTheodore Ts'o 	*pagep = page;
287564769240SAlex Tomas 	return ret;
287664769240SAlex Tomas }
287764769240SAlex Tomas 
2878632eaeabSMingming Cao /*
2879632eaeabSMingming Cao  * Check if we should update i_disksize
2880632eaeabSMingming Cao  * when write to the end of file but not require block allocation
2881632eaeabSMingming Cao  */
2882632eaeabSMingming Cao static int ext4_da_should_update_i_disksize(struct page *page,
2883632eaeabSMingming Cao 					    unsigned long offset)
2884632eaeabSMingming Cao {
2885632eaeabSMingming Cao 	struct buffer_head *bh;
2886632eaeabSMingming Cao 	struct inode *inode = page->mapping->host;
2887632eaeabSMingming Cao 	unsigned int idx;
2888632eaeabSMingming Cao 	int i;
2889632eaeabSMingming Cao 
2890632eaeabSMingming Cao 	bh = page_buffers(page);
2891632eaeabSMingming Cao 	idx = offset >> inode->i_blkbits;
2892632eaeabSMingming Cao 
2893632eaeabSMingming Cao 	for (i = 0; i < idx; i++)
2894632eaeabSMingming Cao 		bh = bh->b_this_page;
2895632eaeabSMingming Cao 
289629fa89d0SAneesh Kumar K.V 	if (!buffer_mapped(bh) || (buffer_delay(bh)) || buffer_unwritten(bh))
2897632eaeabSMingming Cao 		return 0;
2898632eaeabSMingming Cao 	return 1;
2899632eaeabSMingming Cao }
2900632eaeabSMingming Cao 
290164769240SAlex Tomas static int ext4_da_write_end(struct file *file,
290264769240SAlex Tomas 			     struct address_space *mapping,
290364769240SAlex Tomas 			     loff_t pos, unsigned len, unsigned copied,
290464769240SAlex Tomas 			     struct page *page, void *fsdata)
290564769240SAlex Tomas {
290664769240SAlex Tomas 	struct inode *inode = mapping->host;
290764769240SAlex Tomas 	int ret = 0, ret2;
290864769240SAlex Tomas 	handle_t *handle = ext4_journal_current_handle();
290964769240SAlex Tomas 	loff_t new_i_size;
2910632eaeabSMingming Cao 	unsigned long start, end;
291179f0be8dSAneesh Kumar K.V 	int write_mode = (int)(unsigned long)fsdata;
291279f0be8dSAneesh Kumar K.V 
291374d553aaSTheodore Ts'o 	if (write_mode == FALL_BACK_TO_NONDELALLOC)
291474d553aaSTheodore Ts'o 		return ext4_write_end(file, mapping, pos,
291579f0be8dSAneesh Kumar K.V 				      len, copied, page, fsdata);
2916632eaeabSMingming Cao 
29179bffad1eSTheodore Ts'o 	trace_ext4_da_write_end(inode, pos, len, copied);
2918632eaeabSMingming Cao 	start = pos & (PAGE_CACHE_SIZE - 1);
2919632eaeabSMingming Cao 	end = start + copied - 1;
292064769240SAlex Tomas 
292164769240SAlex Tomas 	/*
292264769240SAlex Tomas 	 * generic_write_end() will run mark_inode_dirty() if i_size
292364769240SAlex Tomas 	 * changes.  So let's piggyback the i_disksize mark_inode_dirty
292464769240SAlex Tomas 	 * into that.
292564769240SAlex Tomas 	 */
292664769240SAlex Tomas 	new_i_size = pos + copied;
2927ea51d132SAndrea Arcangeli 	if (copied && new_i_size > EXT4_I(inode)->i_disksize) {
29289c3569b5STao Ma 		if (ext4_has_inline_data(inode) ||
29299c3569b5STao Ma 		    ext4_da_should_update_i_disksize(page, end)) {
2930ee124d27SDmitry Monakhov 			ext4_update_i_disksize(inode, new_i_size);
2931cf17fea6SAneesh Kumar K.V 			/* We need to mark inode dirty even if
2932cf17fea6SAneesh Kumar K.V 			 * new_i_size is less that inode->i_size
2933cf17fea6SAneesh Kumar K.V 			 * bu greater than i_disksize.(hint delalloc)
2934cf17fea6SAneesh Kumar K.V 			 */
2935cf17fea6SAneesh Kumar K.V 			ext4_mark_inode_dirty(handle, inode);
2936632eaeabSMingming Cao 		}
2937632eaeabSMingming Cao 	}
29389c3569b5STao Ma 
29399c3569b5STao Ma 	if (write_mode != CONVERT_INLINE_DATA &&
29409c3569b5STao Ma 	    ext4_test_inode_state(inode, EXT4_STATE_MAY_INLINE_DATA) &&
29419c3569b5STao Ma 	    ext4_has_inline_data(inode))
29429c3569b5STao Ma 		ret2 = ext4_da_write_inline_data_end(inode, pos, len, copied,
29439c3569b5STao Ma 						     page);
29449c3569b5STao Ma 	else
294564769240SAlex Tomas 		ret2 = generic_write_end(file, mapping, pos, len, copied,
294664769240SAlex Tomas 							page, fsdata);
29479c3569b5STao Ma 
294864769240SAlex Tomas 	copied = ret2;
294964769240SAlex Tomas 	if (ret2 < 0)
295064769240SAlex Tomas 		ret = ret2;
295164769240SAlex Tomas 	ret2 = ext4_journal_stop(handle);
295264769240SAlex Tomas 	if (!ret)
295364769240SAlex Tomas 		ret = ret2;
295464769240SAlex Tomas 
295564769240SAlex Tomas 	return ret ? ret : copied;
295664769240SAlex Tomas }
295764769240SAlex Tomas 
2958d47992f8SLukas Czerner static void ext4_da_invalidatepage(struct page *page, unsigned int offset,
2959d47992f8SLukas Czerner 				   unsigned int length)
296064769240SAlex Tomas {
296164769240SAlex Tomas 	/*
296264769240SAlex Tomas 	 * Drop reserved blocks
296364769240SAlex Tomas 	 */
296464769240SAlex Tomas 	BUG_ON(!PageLocked(page));
296564769240SAlex Tomas 	if (!page_has_buffers(page))
296664769240SAlex Tomas 		goto out;
296764769240SAlex Tomas 
2968ca99fdd2SLukas Czerner 	ext4_da_page_release_reservation(page, offset, length);
296964769240SAlex Tomas 
297064769240SAlex Tomas out:
2971d47992f8SLukas Czerner 	ext4_invalidatepage(page, offset, length);
297264769240SAlex Tomas 
297364769240SAlex Tomas 	return;
297464769240SAlex Tomas }
297564769240SAlex Tomas 
2976ccd2506bSTheodore Ts'o /*
2977ccd2506bSTheodore Ts'o  * Force all delayed allocation blocks to be allocated for a given inode.
2978ccd2506bSTheodore Ts'o  */
2979ccd2506bSTheodore Ts'o int ext4_alloc_da_blocks(struct inode *inode)
2980ccd2506bSTheodore Ts'o {
2981fb40ba0dSTheodore Ts'o 	trace_ext4_alloc_da_blocks(inode);
2982fb40ba0dSTheodore Ts'o 
298371d4f7d0STheodore Ts'o 	if (!EXT4_I(inode)->i_reserved_data_blocks)
2984ccd2506bSTheodore Ts'o 		return 0;
2985ccd2506bSTheodore Ts'o 
2986ccd2506bSTheodore Ts'o 	/*
2987ccd2506bSTheodore Ts'o 	 * We do something simple for now.  The filemap_flush() will
2988ccd2506bSTheodore Ts'o 	 * also start triggering a write of the data blocks, which is
2989ccd2506bSTheodore Ts'o 	 * not strictly speaking necessary (and for users of
2990ccd2506bSTheodore Ts'o 	 * laptop_mode, not even desirable).  However, to do otherwise
2991ccd2506bSTheodore Ts'o 	 * would require replicating code paths in:
2992ccd2506bSTheodore Ts'o 	 *
299320970ba6STheodore Ts'o 	 * ext4_writepages() ->
2994ccd2506bSTheodore Ts'o 	 *    write_cache_pages() ---> (via passed in callback function)
2995ccd2506bSTheodore Ts'o 	 *        __mpage_da_writepage() -->
2996ccd2506bSTheodore Ts'o 	 *           mpage_add_bh_to_extent()
2997ccd2506bSTheodore Ts'o 	 *           mpage_da_map_blocks()
2998ccd2506bSTheodore Ts'o 	 *
2999ccd2506bSTheodore Ts'o 	 * The problem is that write_cache_pages(), located in
3000ccd2506bSTheodore Ts'o 	 * mm/page-writeback.c, marks pages clean in preparation for
3001ccd2506bSTheodore Ts'o 	 * doing I/O, which is not desirable if we're not planning on
3002ccd2506bSTheodore Ts'o 	 * doing I/O at all.
3003ccd2506bSTheodore Ts'o 	 *
3004ccd2506bSTheodore Ts'o 	 * We could call write_cache_pages(), and then redirty all of
3005380cf090SWu Fengguang 	 * the pages by calling redirty_page_for_writepage() but that
3006ccd2506bSTheodore Ts'o 	 * would be ugly in the extreme.  So instead we would need to
3007ccd2506bSTheodore Ts'o 	 * replicate parts of the code in the above functions,
300825985edcSLucas De Marchi 	 * simplifying them because we wouldn't actually intend to
3009ccd2506bSTheodore Ts'o 	 * write out the pages, but rather only collect contiguous
3010ccd2506bSTheodore Ts'o 	 * logical block extents, call the multi-block allocator, and
3011ccd2506bSTheodore Ts'o 	 * then update the buffer heads with the block allocations.
3012ccd2506bSTheodore Ts'o 	 *
3013ccd2506bSTheodore Ts'o 	 * For now, though, we'll cheat by calling filemap_flush(),
3014ccd2506bSTheodore Ts'o 	 * which will map the blocks, and start the I/O, but not
3015ccd2506bSTheodore Ts'o 	 * actually wait for the I/O to complete.
3016ccd2506bSTheodore Ts'o 	 */
3017ccd2506bSTheodore Ts'o 	return filemap_flush(inode->i_mapping);
3018ccd2506bSTheodore Ts'o }
301964769240SAlex Tomas 
302064769240SAlex Tomas /*
3021ac27a0ecSDave Kleikamp  * bmap() is special.  It gets used by applications such as lilo and by
3022ac27a0ecSDave Kleikamp  * the swapper to find the on-disk block of a specific piece of data.
3023ac27a0ecSDave Kleikamp  *
3024ac27a0ecSDave Kleikamp  * Naturally, this is dangerous if the block concerned is still in the
3025617ba13bSMingming Cao  * journal.  If somebody makes a swapfile on an ext4 data-journaling
3026ac27a0ecSDave Kleikamp  * filesystem and enables swap, then they may get a nasty shock when the
3027ac27a0ecSDave Kleikamp  * data getting swapped to that swapfile suddenly gets overwritten by
3028ac27a0ecSDave Kleikamp  * the original zero's written out previously to the journal and
3029ac27a0ecSDave Kleikamp  * awaiting writeback in the kernel's buffer cache.
3030ac27a0ecSDave Kleikamp  *
3031ac27a0ecSDave Kleikamp  * So, if we see any bmap calls here on a modified, data-journaled file,
3032ac27a0ecSDave Kleikamp  * take extra steps to flush any blocks which might be in the cache.
3033ac27a0ecSDave Kleikamp  */
3034617ba13bSMingming Cao static sector_t ext4_bmap(struct address_space *mapping, sector_t block)
3035ac27a0ecSDave Kleikamp {
3036ac27a0ecSDave Kleikamp 	struct inode *inode = mapping->host;
3037ac27a0ecSDave Kleikamp 	journal_t *journal;
3038ac27a0ecSDave Kleikamp 	int err;
3039ac27a0ecSDave Kleikamp 
304046c7f254STao Ma 	/*
304146c7f254STao Ma 	 * We can get here for an inline file via the FIBMAP ioctl
304246c7f254STao Ma 	 */
304346c7f254STao Ma 	if (ext4_has_inline_data(inode))
304446c7f254STao Ma 		return 0;
304546c7f254STao Ma 
304664769240SAlex Tomas 	if (mapping_tagged(mapping, PAGECACHE_TAG_DIRTY) &&
304764769240SAlex Tomas 			test_opt(inode->i_sb, DELALLOC)) {
304864769240SAlex Tomas 		/*
304964769240SAlex Tomas 		 * With delalloc we want to sync the file
305064769240SAlex Tomas 		 * so that we can make sure we allocate
305164769240SAlex Tomas 		 * blocks for file
305264769240SAlex Tomas 		 */
305364769240SAlex Tomas 		filemap_write_and_wait(mapping);
305464769240SAlex Tomas 	}
305564769240SAlex Tomas 
305619f5fb7aSTheodore Ts'o 	if (EXT4_JOURNAL(inode) &&
305719f5fb7aSTheodore Ts'o 	    ext4_test_inode_state(inode, EXT4_STATE_JDATA)) {
3058ac27a0ecSDave Kleikamp 		/*
3059ac27a0ecSDave Kleikamp 		 * This is a REALLY heavyweight approach, but the use of
3060ac27a0ecSDave Kleikamp 		 * bmap on dirty files is expected to be extremely rare:
3061ac27a0ecSDave Kleikamp 		 * only if we run lilo or swapon on a freshly made file
3062ac27a0ecSDave Kleikamp 		 * do we expect this to happen.
3063ac27a0ecSDave Kleikamp 		 *
3064ac27a0ecSDave Kleikamp 		 * (bmap requires CAP_SYS_RAWIO so this does not
3065ac27a0ecSDave Kleikamp 		 * represent an unprivileged user DOS attack --- we'd be
3066ac27a0ecSDave Kleikamp 		 * in trouble if mortal users could trigger this path at
3067ac27a0ecSDave Kleikamp 		 * will.)
3068ac27a0ecSDave Kleikamp 		 *
3069617ba13bSMingming Cao 		 * NB. EXT4_STATE_JDATA is not set on files other than
3070ac27a0ecSDave Kleikamp 		 * regular files.  If somebody wants to bmap a directory
3071ac27a0ecSDave Kleikamp 		 * or symlink and gets confused because the buffer
3072ac27a0ecSDave Kleikamp 		 * hasn't yet been flushed to disk, they deserve
3073ac27a0ecSDave Kleikamp 		 * everything they get.
3074ac27a0ecSDave Kleikamp 		 */
3075ac27a0ecSDave Kleikamp 
307619f5fb7aSTheodore Ts'o 		ext4_clear_inode_state(inode, EXT4_STATE_JDATA);
3077617ba13bSMingming Cao 		journal = EXT4_JOURNAL(inode);
3078dab291afSMingming Cao 		jbd2_journal_lock_updates(journal);
3079dab291afSMingming Cao 		err = jbd2_journal_flush(journal);
3080dab291afSMingming Cao 		jbd2_journal_unlock_updates(journal);
3081ac27a0ecSDave Kleikamp 
3082ac27a0ecSDave Kleikamp 		if (err)
3083ac27a0ecSDave Kleikamp 			return 0;
3084ac27a0ecSDave Kleikamp 	}
3085ac27a0ecSDave Kleikamp 
3086617ba13bSMingming Cao 	return generic_block_bmap(mapping, block, ext4_get_block);
3087ac27a0ecSDave Kleikamp }
3088ac27a0ecSDave Kleikamp 
3089617ba13bSMingming Cao static int ext4_readpage(struct file *file, struct page *page)
3090ac27a0ecSDave Kleikamp {
309146c7f254STao Ma 	int ret = -EAGAIN;
309246c7f254STao Ma 	struct inode *inode = page->mapping->host;
309346c7f254STao Ma 
30940562e0baSJiaying Zhang 	trace_ext4_readpage(page);
309546c7f254STao Ma 
309646c7f254STao Ma 	if (ext4_has_inline_data(inode))
309746c7f254STao Ma 		ret = ext4_readpage_inline(inode, page);
309846c7f254STao Ma 
309946c7f254STao Ma 	if (ret == -EAGAIN)
3100f64e02feSTheodore Ts'o 		return ext4_mpage_readpages(page->mapping, NULL, page, 1);
310146c7f254STao Ma 
310246c7f254STao Ma 	return ret;
3103ac27a0ecSDave Kleikamp }
3104ac27a0ecSDave Kleikamp 
3105ac27a0ecSDave Kleikamp static int
3106617ba13bSMingming Cao ext4_readpages(struct file *file, struct address_space *mapping,
3107ac27a0ecSDave Kleikamp 		struct list_head *pages, unsigned nr_pages)
3108ac27a0ecSDave Kleikamp {
310946c7f254STao Ma 	struct inode *inode = mapping->host;
311046c7f254STao Ma 
311146c7f254STao Ma 	/* If the file has inline data, no need to do readpages. */
311246c7f254STao Ma 	if (ext4_has_inline_data(inode))
311346c7f254STao Ma 		return 0;
311446c7f254STao Ma 
3115f64e02feSTheodore Ts'o 	return ext4_mpage_readpages(mapping, pages, NULL, nr_pages);
3116ac27a0ecSDave Kleikamp }
3117ac27a0ecSDave Kleikamp 
3118d47992f8SLukas Czerner static void ext4_invalidatepage(struct page *page, unsigned int offset,
3119d47992f8SLukas Czerner 				unsigned int length)
3120ac27a0ecSDave Kleikamp {
3121ca99fdd2SLukas Czerner 	trace_ext4_invalidatepage(page, offset, length);
31220562e0baSJiaying Zhang 
31234520fb3cSJan Kara 	/* No journalling happens on data buffers when this function is used */
31244520fb3cSJan Kara 	WARN_ON(page_has_buffers(page) && buffer_jbd(page_buffers(page)));
31254520fb3cSJan Kara 
3126ca99fdd2SLukas Czerner 	block_invalidatepage(page, offset, length);
31274520fb3cSJan Kara }
31284520fb3cSJan Kara 
312953e87268SJan Kara static int __ext4_journalled_invalidatepage(struct page *page,
3130ca99fdd2SLukas Czerner 					    unsigned int offset,
3131ca99fdd2SLukas Czerner 					    unsigned int length)
31324520fb3cSJan Kara {
31334520fb3cSJan Kara 	journal_t *journal = EXT4_JOURNAL(page->mapping->host);
31344520fb3cSJan Kara 
3135ca99fdd2SLukas Czerner 	trace_ext4_journalled_invalidatepage(page, offset, length);
31364520fb3cSJan Kara 
3137744692dcSJiaying Zhang 	/*
3138ac27a0ecSDave Kleikamp 	 * If it's a full truncate we just forget about the pending dirtying
3139ac27a0ecSDave Kleikamp 	 */
3140ca99fdd2SLukas Czerner 	if (offset == 0 && length == PAGE_CACHE_SIZE)
3141ac27a0ecSDave Kleikamp 		ClearPageChecked(page);
3142ac27a0ecSDave Kleikamp 
3143ca99fdd2SLukas Czerner 	return jbd2_journal_invalidatepage(journal, page, offset, length);
314453e87268SJan Kara }
314553e87268SJan Kara 
314653e87268SJan Kara /* Wrapper for aops... */
314753e87268SJan Kara static void ext4_journalled_invalidatepage(struct page *page,
3148d47992f8SLukas Czerner 					   unsigned int offset,
3149d47992f8SLukas Czerner 					   unsigned int length)
315053e87268SJan Kara {
3151ca99fdd2SLukas Czerner 	WARN_ON(__ext4_journalled_invalidatepage(page, offset, length) < 0);
3152ac27a0ecSDave Kleikamp }
3153ac27a0ecSDave Kleikamp 
3154617ba13bSMingming Cao static int ext4_releasepage(struct page *page, gfp_t wait)
3155ac27a0ecSDave Kleikamp {
3156617ba13bSMingming Cao 	journal_t *journal = EXT4_JOURNAL(page->mapping->host);
3157ac27a0ecSDave Kleikamp 
31580562e0baSJiaying Zhang 	trace_ext4_releasepage(page);
31590562e0baSJiaying Zhang 
3160e1c36595SJan Kara 	/* Page has dirty journalled data -> cannot release */
3161e1c36595SJan Kara 	if (PageChecked(page))
3162ac27a0ecSDave Kleikamp 		return 0;
31630390131bSFrank Mayhar 	if (journal)
3164dab291afSMingming Cao 		return jbd2_journal_try_to_free_buffers(journal, page, wait);
31650390131bSFrank Mayhar 	else
31660390131bSFrank Mayhar 		return try_to_free_buffers(page);
3167ac27a0ecSDave Kleikamp }
3168ac27a0ecSDave Kleikamp 
3169ba5843f5SJan Kara #ifdef CONFIG_FS_DAX
3170ba5843f5SJan Kara int ext4_dax_mmap_get_block(struct inode *inode, sector_t iblock,
3171ed923b57SMatthew Wilcox 			    struct buffer_head *bh_result, int create)
3172ed923b57SMatthew Wilcox {
3173ba5843f5SJan Kara 	int ret, err;
3174ba5843f5SJan Kara 	int credits;
3175ba5843f5SJan Kara 	struct ext4_map_blocks map;
3176ba5843f5SJan Kara 	handle_t *handle = NULL;
3177ba5843f5SJan Kara 	int flags = 0;
3178c86d8db3SJan Kara 
3179ba5843f5SJan Kara 	ext4_debug("ext4_dax_mmap_get_block: inode %lu, create flag %d\n",
3180ed923b57SMatthew Wilcox 		   inode->i_ino, create);
3181ba5843f5SJan Kara 	map.m_lblk = iblock;
3182ba5843f5SJan Kara 	map.m_len = bh_result->b_size >> inode->i_blkbits;
3183ba5843f5SJan Kara 	credits = ext4_chunk_trans_blocks(inode, map.m_len);
3184ba5843f5SJan Kara 	if (create) {
3185ba5843f5SJan Kara 		flags |= EXT4_GET_BLOCKS_PRE_IO | EXT4_GET_BLOCKS_CREATE_ZERO;
3186ba5843f5SJan Kara 		handle = ext4_journal_start(inode, EXT4_HT_MAP_BLOCKS, credits);
3187ba5843f5SJan Kara 		if (IS_ERR(handle)) {
3188ba5843f5SJan Kara 			ret = PTR_ERR(handle);
3189ba5843f5SJan Kara 			return ret;
3190ed923b57SMatthew Wilcox 		}
3191ba5843f5SJan Kara 	}
3192ba5843f5SJan Kara 
3193ba5843f5SJan Kara 	ret = ext4_map_blocks(handle, inode, &map, flags);
3194ba5843f5SJan Kara 	if (create) {
3195ba5843f5SJan Kara 		err = ext4_journal_stop(handle);
3196ba5843f5SJan Kara 		if (ret >= 0 && err < 0)
3197ba5843f5SJan Kara 			ret = err;
3198ba5843f5SJan Kara 	}
3199ba5843f5SJan Kara 	if (ret <= 0)
3200ba5843f5SJan Kara 		goto out;
3201ba5843f5SJan Kara 	if (map.m_flags & EXT4_MAP_UNWRITTEN) {
3202ba5843f5SJan Kara 		int err2;
3203ba5843f5SJan Kara 
3204ba5843f5SJan Kara 		/*
3205ba5843f5SJan Kara 		 * We are protected by i_mmap_sem so we know block cannot go
3206ba5843f5SJan Kara 		 * away from under us even though we dropped i_data_sem.
3207ba5843f5SJan Kara 		 * Convert extent to written and write zeros there.
3208ba5843f5SJan Kara 		 *
3209ba5843f5SJan Kara 		 * Note: We may get here even when create == 0.
3210ba5843f5SJan Kara 		 */
3211ba5843f5SJan Kara 		handle = ext4_journal_start(inode, EXT4_HT_MAP_BLOCKS, credits);
3212ba5843f5SJan Kara 		if (IS_ERR(handle)) {
3213ba5843f5SJan Kara 			ret = PTR_ERR(handle);
3214ba5843f5SJan Kara 			goto out;
3215ba5843f5SJan Kara 		}
3216ba5843f5SJan Kara 
3217ba5843f5SJan Kara 		err = ext4_map_blocks(handle, inode, &map,
3218ba5843f5SJan Kara 		      EXT4_GET_BLOCKS_CONVERT | EXT4_GET_BLOCKS_CREATE_ZERO);
3219ba5843f5SJan Kara 		if (err < 0)
3220ba5843f5SJan Kara 			ret = err;
3221ba5843f5SJan Kara 		err2 = ext4_journal_stop(handle);
3222ba5843f5SJan Kara 		if (err2 < 0 && ret > 0)
3223ba5843f5SJan Kara 			ret = err2;
3224ba5843f5SJan Kara 	}
3225ba5843f5SJan Kara out:
3226ba5843f5SJan Kara 	WARN_ON_ONCE(ret == 0 && create);
3227ba5843f5SJan Kara 	if (ret > 0) {
3228ba5843f5SJan Kara 		map_bh(bh_result, inode->i_sb, map.m_pblk);
3229ba5843f5SJan Kara 		bh_result->b_state = (bh_result->b_state & ~EXT4_MAP_FLAGS) |
3230ba5843f5SJan Kara 					map.m_flags;
3231ba5843f5SJan Kara 		/*
3232ba5843f5SJan Kara 		 * At least for now we have to clear BH_New so that DAX code
3233ba5843f5SJan Kara 		 * doesn't attempt to zero blocks again in a racy way.
3234ba5843f5SJan Kara 		 */
3235ba5843f5SJan Kara 		bh_result->b_state &= ~(1 << BH_New);
3236ba5843f5SJan Kara 		bh_result->b_size = map.m_len << inode->i_blkbits;
3237ba5843f5SJan Kara 		ret = 0;
3238ba5843f5SJan Kara 	}
3239ba5843f5SJan Kara 	return ret;
3240ba5843f5SJan Kara }
3241ba5843f5SJan Kara #endif
3242ed923b57SMatthew Wilcox 
32434c0425ffSMingming Cao static void ext4_end_io_dio(struct kiocb *iocb, loff_t offset,
32447b7a8665SChristoph Hellwig 			    ssize_t size, void *private)
32454c0425ffSMingming Cao {
32464c0425ffSMingming Cao         ext4_io_end_t *io_end = iocb->private;
32474c0425ffSMingming Cao 
324897a851edSJan Kara 	/* if not async direct IO just return */
32497b7a8665SChristoph Hellwig 	if (!io_end)
325097a851edSJan Kara 		return;
32514b70df18SMingming 
32528d5d02e6SMingming Cao 	ext_debug("ext4_end_io_dio(): io_end 0x%p "
3253ace36ad4SJoe Perches 		  "for inode %lu, iocb 0x%p, offset %llu, size %zd\n",
32548d5d02e6SMingming Cao  		  iocb->private, io_end->inode->i_ino, iocb, offset,
32558d5d02e6SMingming Cao 		  size);
32568d5d02e6SMingming Cao 
3257b5a7e970STheodore Ts'o 	iocb->private = NULL;
32584c0425ffSMingming Cao 	io_end->offset = offset;
32594c0425ffSMingming Cao 	io_end->size = size;
32607b7a8665SChristoph Hellwig 	ext4_put_io_end(io_end);
32614c0425ffSMingming Cao }
3262c7064ef1SJiaying Zhang 
32634c0425ffSMingming Cao /*
32644c0425ffSMingming Cao  * For ext4 extent files, ext4 will do direct-io write to holes,
32654c0425ffSMingming Cao  * preallocated extents, and those write extend the file, no need to
32664c0425ffSMingming Cao  * fall back to buffered IO.
32674c0425ffSMingming Cao  *
3268556615dcSLukas Czerner  * For holes, we fallocate those blocks, mark them as unwritten
326969c499d1STheodore Ts'o  * If those blocks were preallocated, we mark sure they are split, but
3270556615dcSLukas Czerner  * still keep the range to write as unwritten.
32714c0425ffSMingming Cao  *
327269c499d1STheodore Ts'o  * The unwritten extents will be converted to written when DIO is completed.
32738d5d02e6SMingming Cao  * For async direct IO, since the IO may still pending when return, we
327425985edcSLucas De Marchi  * set up an end_io call back function, which will do the conversion
32758d5d02e6SMingming Cao  * when async direct IO completed.
32764c0425ffSMingming Cao  *
32774c0425ffSMingming Cao  * If the O_DIRECT write will extend the file then add this inode to the
32784c0425ffSMingming Cao  * orphan list.  So recovery will truncate it back to the original size
32794c0425ffSMingming Cao  * if the machine crashes during the write.
32804c0425ffSMingming Cao  *
32814c0425ffSMingming Cao  */
32826f673763SOmar Sandoval static ssize_t ext4_ext_direct_IO(struct kiocb *iocb, struct iov_iter *iter,
32836f673763SOmar Sandoval 				  loff_t offset)
32844c0425ffSMingming Cao {
32854c0425ffSMingming Cao 	struct file *file = iocb->ki_filp;
32864c0425ffSMingming Cao 	struct inode *inode = file->f_mapping->host;
32874c0425ffSMingming Cao 	ssize_t ret;
3288a6cbcd4aSAl Viro 	size_t count = iov_iter_count(iter);
3289729f52c6SZheng Liu 	int overwrite = 0;
32908b0f165fSAnatol Pomozov 	get_block_t *get_block_func = NULL;
32918b0f165fSAnatol Pomozov 	int dio_flags = 0;
329269c499d1STheodore Ts'o 	loff_t final_size = offset + count;
329397a851edSJan Kara 	ext4_io_end_t *io_end = NULL;
329469c499d1STheodore Ts'o 
329569c499d1STheodore Ts'o 	/* Use the old path for reads and writes beyond i_size. */
32966f673763SOmar Sandoval 	if (iov_iter_rw(iter) != WRITE || final_size > inode->i_size)
32976f673763SOmar Sandoval 		return ext4_ind_direct_IO(iocb, iter, offset);
3298729f52c6SZheng Liu 
32994bd809dbSZheng Liu 	BUG_ON(iocb->private == NULL);
33004bd809dbSZheng Liu 
3301e8340395SJan Kara 	/*
3302e8340395SJan Kara 	 * Make all waiters for direct IO properly wait also for extent
3303e8340395SJan Kara 	 * conversion. This also disallows race between truncate() and
3304e8340395SJan Kara 	 * overwrite DIO as i_dio_count needs to be incremented under i_mutex.
3305e8340395SJan Kara 	 */
33066f673763SOmar Sandoval 	if (iov_iter_rw(iter) == WRITE)
3307fe0f07d0SJens Axboe 		inode_dio_begin(inode);
3308e8340395SJan Kara 
33094bd809dbSZheng Liu 	/* If we do a overwrite dio, i_mutex locking can be released */
33104bd809dbSZheng Liu 	overwrite = *((int *)iocb->private);
33114bd809dbSZheng Liu 
33122dcba478SJan Kara 	if (overwrite)
33135955102cSAl Viro 		inode_unlock(inode);
33144bd809dbSZheng Liu 
33154c0425ffSMingming Cao 	/*
33168d5d02e6SMingming Cao 	 * We could direct write to holes and fallocate.
33178d5d02e6SMingming Cao 	 *
331869c499d1STheodore Ts'o 	 * Allocated blocks to fill the hole are marked as
3319556615dcSLukas Czerner 	 * unwritten to prevent parallel buffered read to expose
332069c499d1STheodore Ts'o 	 * the stale data before DIO complete the data IO.
33218d5d02e6SMingming Cao 	 *
332269c499d1STheodore Ts'o 	 * As to previously fallocated extents, ext4 get_block will
332369c499d1STheodore Ts'o 	 * just simply mark the buffer mapped but still keep the
3324556615dcSLukas Czerner 	 * extents unwritten.
33254c0425ffSMingming Cao 	 *
332669c499d1STheodore Ts'o 	 * For non AIO case, we will convert those unwritten extents
33278d5d02e6SMingming Cao 	 * to written after return back from blockdev_direct_IO.
33284c0425ffSMingming Cao 	 *
332969c499d1STheodore Ts'o 	 * For async DIO, the conversion needs to be deferred when the
333069c499d1STheodore Ts'o 	 * IO is completed. The ext4 end_io callback function will be
333169c499d1STheodore Ts'o 	 * called to take care of the conversion work.  Here for async
333269c499d1STheodore Ts'o 	 * case, we allocate an io_end structure to hook to the iocb.
33334c0425ffSMingming Cao 	 */
33348d5d02e6SMingming Cao 	iocb->private = NULL;
333574dae427SJan Kara 	if (overwrite) {
3336705965bdSJan Kara 		get_block_func = ext4_dio_get_block_overwrite;
333774dae427SJan Kara 	} else {
3338f45ee3a1SDmitry Monakhov 		ext4_inode_aio_set(inode, NULL);
33398d5d02e6SMingming Cao 		if (!is_sync_kiocb(iocb)) {
334097a851edSJan Kara 			io_end = ext4_init_io_end(inode, GFP_NOFS);
33414bd809dbSZheng Liu 			if (!io_end) {
33424bd809dbSZheng Liu 				ret = -ENOMEM;
33434bd809dbSZheng Liu 				goto retake_lock;
33444bd809dbSZheng Liu 			}
334597a851edSJan Kara 			/*
334674dae427SJan Kara 			 * Grab reference for DIO. Will be dropped in
334774dae427SJan Kara 			 * ext4_end_io_dio()
334897a851edSJan Kara 			 */
334997a851edSJan Kara 			iocb->private = ext4_get_io_end(io_end);
33508d5d02e6SMingming Cao 			/*
335169c499d1STheodore Ts'o 			 * we save the io structure for current async direct
335269c499d1STheodore Ts'o 			 * IO, so that later ext4_map_blocks() could flag the
335369c499d1STheodore Ts'o 			 * io structure whether there is a unwritten extents
335469c499d1STheodore Ts'o 			 * needs to be converted when IO is completed.
33558d5d02e6SMingming Cao 			 */
3356f45ee3a1SDmitry Monakhov 			ext4_inode_aio_set(inode, io_end);
33578d5d02e6SMingming Cao 		}
3358705965bdSJan Kara 		get_block_func = ext4_dio_get_block_unwritten;
33598b0f165fSAnatol Pomozov 		dio_flags = DIO_LOCKING;
33608b0f165fSAnatol Pomozov 	}
33612058f83aSMichael Halcrow #ifdef CONFIG_EXT4_FS_ENCRYPTION
33622058f83aSMichael Halcrow 	BUG_ON(ext4_encrypted_inode(inode) && S_ISREG(inode->i_mode));
33632058f83aSMichael Halcrow #endif
3364923ae0ffSRoss Zwisler 	if (IS_DAX(inode))
3365a95cd631SOmar Sandoval 		ret = dax_do_io(iocb, inode, iter, offset, get_block_func,
3366923ae0ffSRoss Zwisler 				ext4_end_io_dio, dio_flags);
3367923ae0ffSRoss Zwisler 	else
336817f8c842SOmar Sandoval 		ret = __blockdev_direct_IO(iocb, inode,
3369923ae0ffSRoss Zwisler 					   inode->i_sb->s_bdev, iter, offset,
33708b0f165fSAnatol Pomozov 					   get_block_func,
3371923ae0ffSRoss Zwisler 					   ext4_end_io_dio, NULL, dio_flags);
33728b0f165fSAnatol Pomozov 
33734eec708dSJan Kara 	/*
337497a851edSJan Kara 	 * Put our reference to io_end. This can free the io_end structure e.g.
337597a851edSJan Kara 	 * in sync IO case or in case of error. It can even perform extent
337697a851edSJan Kara 	 * conversion if all bios we submitted finished before we got here.
337797a851edSJan Kara 	 * Note that in that case iocb->private can be already set to NULL
337897a851edSJan Kara 	 * here.
33794eec708dSJan Kara 	 */
338097a851edSJan Kara 	if (io_end) {
338197a851edSJan Kara 		ext4_inode_aio_set(inode, NULL);
338297a851edSJan Kara 		ext4_put_io_end(io_end);
338397a851edSJan Kara 		/*
338497a851edSJan Kara 		 * When no IO was submitted ext4_end_io_dio() was not
338597a851edSJan Kara 		 * called so we have to put iocb's reference.
338697a851edSJan Kara 		 */
338797a851edSJan Kara 		if (ret <= 0 && ret != -EIOCBQUEUED && iocb->private) {
338897a851edSJan Kara 			WARN_ON(iocb->private != io_end);
338997a851edSJan Kara 			WARN_ON(io_end->flag & EXT4_IO_END_UNWRITTEN);
339097a851edSJan Kara 			ext4_put_io_end(io_end);
33918d5d02e6SMingming Cao 			iocb->private = NULL;
339297a851edSJan Kara 		}
339397a851edSJan Kara 	}
339497a851edSJan Kara 	if (ret > 0 && !overwrite && ext4_test_inode_state(inode,
33955f524950SMingming 						EXT4_STATE_DIO_UNWRITTEN)) {
3396109f5565SMingming 		int err;
33978d5d02e6SMingming Cao 		/*
33988d5d02e6SMingming Cao 		 * for non AIO case, since the IO is already
339925985edcSLucas De Marchi 		 * completed, we could do the conversion right here
34008d5d02e6SMingming Cao 		 */
34016b523df4SJan Kara 		err = ext4_convert_unwritten_extents(NULL, inode,
34028d5d02e6SMingming Cao 						     offset, ret);
3403109f5565SMingming 		if (err < 0)
3404109f5565SMingming 			ret = err;
340519f5fb7aSTheodore Ts'o 		ext4_clear_inode_state(inode, EXT4_STATE_DIO_UNWRITTEN);
3406109f5565SMingming 	}
34074bd809dbSZheng Liu 
34084bd809dbSZheng Liu retake_lock:
34096f673763SOmar Sandoval 	if (iov_iter_rw(iter) == WRITE)
3410fe0f07d0SJens Axboe 		inode_dio_end(inode);
34114bd809dbSZheng Liu 	/* take i_mutex locking again if we do a ovewrite dio */
34122dcba478SJan Kara 	if (overwrite)
34135955102cSAl Viro 		inode_lock(inode);
34144bd809dbSZheng Liu 
34154c0425ffSMingming Cao 	return ret;
34164c0425ffSMingming Cao }
34178d5d02e6SMingming Cao 
341822c6186eSOmar Sandoval static ssize_t ext4_direct_IO(struct kiocb *iocb, struct iov_iter *iter,
341922c6186eSOmar Sandoval 			      loff_t offset)
34204c0425ffSMingming Cao {
34214c0425ffSMingming Cao 	struct file *file = iocb->ki_filp;
34224c0425ffSMingming Cao 	struct inode *inode = file->f_mapping->host;
3423a6cbcd4aSAl Viro 	size_t count = iov_iter_count(iter);
34240562e0baSJiaying Zhang 	ssize_t ret;
34254c0425ffSMingming Cao 
34262058f83aSMichael Halcrow #ifdef CONFIG_EXT4_FS_ENCRYPTION
34272058f83aSMichael Halcrow 	if (ext4_encrypted_inode(inode) && S_ISREG(inode->i_mode))
34282058f83aSMichael Halcrow 		return 0;
34292058f83aSMichael Halcrow #endif
34302058f83aSMichael Halcrow 
343184ebd795STheodore Ts'o 	/*
343284ebd795STheodore Ts'o 	 * If we are doing data journalling we don't support O_DIRECT
343384ebd795STheodore Ts'o 	 */
343484ebd795STheodore Ts'o 	if (ext4_should_journal_data(inode))
343584ebd795STheodore Ts'o 		return 0;
343684ebd795STheodore Ts'o 
343746c7f254STao Ma 	/* Let buffer I/O handle the inline data case. */
343846c7f254STao Ma 	if (ext4_has_inline_data(inode))
343946c7f254STao Ma 		return 0;
344046c7f254STao Ma 
34416f673763SOmar Sandoval 	trace_ext4_direct_IO_enter(inode, offset, count, iov_iter_rw(iter));
344212e9b892SDmitry Monakhov 	if (ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS))
34436f673763SOmar Sandoval 		ret = ext4_ext_direct_IO(iocb, iter, offset);
34440562e0baSJiaying Zhang 	else
34456f673763SOmar Sandoval 		ret = ext4_ind_direct_IO(iocb, iter, offset);
34466f673763SOmar Sandoval 	trace_ext4_direct_IO_exit(inode, offset, count, iov_iter_rw(iter), ret);
34470562e0baSJiaying Zhang 	return ret;
34484c0425ffSMingming Cao }
34494c0425ffSMingming Cao 
3450ac27a0ecSDave Kleikamp /*
3451617ba13bSMingming Cao  * Pages can be marked dirty completely asynchronously from ext4's journalling
3452ac27a0ecSDave Kleikamp  * activity.  By filemap_sync_pte(), try_to_unmap_one(), etc.  We cannot do
3453ac27a0ecSDave Kleikamp  * much here because ->set_page_dirty is called under VFS locks.  The page is
3454ac27a0ecSDave Kleikamp  * not necessarily locked.
3455ac27a0ecSDave Kleikamp  *
3456ac27a0ecSDave Kleikamp  * We cannot just dirty the page and leave attached buffers clean, because the
3457ac27a0ecSDave Kleikamp  * buffers' dirty state is "definitive".  We cannot just set the buffers dirty
3458ac27a0ecSDave Kleikamp  * or jbddirty because all the journalling code will explode.
3459ac27a0ecSDave Kleikamp  *
3460ac27a0ecSDave Kleikamp  * So what we do is to mark the page "pending dirty" and next time writepage
3461ac27a0ecSDave Kleikamp  * is called, propagate that into the buffers appropriately.
3462ac27a0ecSDave Kleikamp  */
3463617ba13bSMingming Cao static int ext4_journalled_set_page_dirty(struct page *page)
3464ac27a0ecSDave Kleikamp {
3465ac27a0ecSDave Kleikamp 	SetPageChecked(page);
3466ac27a0ecSDave Kleikamp 	return __set_page_dirty_nobuffers(page);
3467ac27a0ecSDave Kleikamp }
3468ac27a0ecSDave Kleikamp 
346974d553aaSTheodore Ts'o static const struct address_space_operations ext4_aops = {
3470617ba13bSMingming Cao 	.readpage		= ext4_readpage,
3471617ba13bSMingming Cao 	.readpages		= ext4_readpages,
347243ce1d23SAneesh Kumar K.V 	.writepage		= ext4_writepage,
347320970ba6STheodore Ts'o 	.writepages		= ext4_writepages,
3474bfc1af65SNick Piggin 	.write_begin		= ext4_write_begin,
347574d553aaSTheodore Ts'o 	.write_end		= ext4_write_end,
3476617ba13bSMingming Cao 	.bmap			= ext4_bmap,
3477617ba13bSMingming Cao 	.invalidatepage		= ext4_invalidatepage,
3478617ba13bSMingming Cao 	.releasepage		= ext4_releasepage,
3479617ba13bSMingming Cao 	.direct_IO		= ext4_direct_IO,
3480ac27a0ecSDave Kleikamp 	.migratepage		= buffer_migrate_page,
34818ab22b9aSHisashi Hifumi 	.is_partially_uptodate  = block_is_partially_uptodate,
3482aa261f54SAndi Kleen 	.error_remove_page	= generic_error_remove_page,
3483ac27a0ecSDave Kleikamp };
3484ac27a0ecSDave Kleikamp 
3485617ba13bSMingming Cao static const struct address_space_operations ext4_journalled_aops = {
3486617ba13bSMingming Cao 	.readpage		= ext4_readpage,
3487617ba13bSMingming Cao 	.readpages		= ext4_readpages,
348843ce1d23SAneesh Kumar K.V 	.writepage		= ext4_writepage,
348920970ba6STheodore Ts'o 	.writepages		= ext4_writepages,
3490bfc1af65SNick Piggin 	.write_begin		= ext4_write_begin,
3491bfc1af65SNick Piggin 	.write_end		= ext4_journalled_write_end,
3492617ba13bSMingming Cao 	.set_page_dirty		= ext4_journalled_set_page_dirty,
3493617ba13bSMingming Cao 	.bmap			= ext4_bmap,
34944520fb3cSJan Kara 	.invalidatepage		= ext4_journalled_invalidatepage,
3495617ba13bSMingming Cao 	.releasepage		= ext4_releasepage,
349684ebd795STheodore Ts'o 	.direct_IO		= ext4_direct_IO,
34978ab22b9aSHisashi Hifumi 	.is_partially_uptodate  = block_is_partially_uptodate,
3498aa261f54SAndi Kleen 	.error_remove_page	= generic_error_remove_page,
3499ac27a0ecSDave Kleikamp };
3500ac27a0ecSDave Kleikamp 
350164769240SAlex Tomas static const struct address_space_operations ext4_da_aops = {
350264769240SAlex Tomas 	.readpage		= ext4_readpage,
350364769240SAlex Tomas 	.readpages		= ext4_readpages,
350443ce1d23SAneesh Kumar K.V 	.writepage		= ext4_writepage,
350520970ba6STheodore Ts'o 	.writepages		= ext4_writepages,
350664769240SAlex Tomas 	.write_begin		= ext4_da_write_begin,
350764769240SAlex Tomas 	.write_end		= ext4_da_write_end,
350864769240SAlex Tomas 	.bmap			= ext4_bmap,
350964769240SAlex Tomas 	.invalidatepage		= ext4_da_invalidatepage,
351064769240SAlex Tomas 	.releasepage		= ext4_releasepage,
351164769240SAlex Tomas 	.direct_IO		= ext4_direct_IO,
351264769240SAlex Tomas 	.migratepage		= buffer_migrate_page,
35138ab22b9aSHisashi Hifumi 	.is_partially_uptodate  = block_is_partially_uptodate,
3514aa261f54SAndi Kleen 	.error_remove_page	= generic_error_remove_page,
351564769240SAlex Tomas };
351664769240SAlex Tomas 
3517617ba13bSMingming Cao void ext4_set_aops(struct inode *inode)
3518ac27a0ecSDave Kleikamp {
35193d2b1582SLukas Czerner 	switch (ext4_inode_journal_mode(inode)) {
35203d2b1582SLukas Czerner 	case EXT4_INODE_ORDERED_DATA_MODE:
352174d553aaSTheodore Ts'o 		ext4_set_inode_state(inode, EXT4_STATE_ORDERED_MODE);
35223d2b1582SLukas Czerner 		break;
35233d2b1582SLukas Czerner 	case EXT4_INODE_WRITEBACK_DATA_MODE:
352474d553aaSTheodore Ts'o 		ext4_clear_inode_state(inode, EXT4_STATE_ORDERED_MODE);
35253d2b1582SLukas Czerner 		break;
35263d2b1582SLukas Czerner 	case EXT4_INODE_JOURNAL_DATA_MODE:
3527617ba13bSMingming Cao 		inode->i_mapping->a_ops = &ext4_journalled_aops;
352874d553aaSTheodore Ts'o 		return;
35293d2b1582SLukas Czerner 	default:
35303d2b1582SLukas Czerner 		BUG();
35313d2b1582SLukas Czerner 	}
353274d553aaSTheodore Ts'o 	if (test_opt(inode->i_sb, DELALLOC))
353374d553aaSTheodore Ts'o 		inode->i_mapping->a_ops = &ext4_da_aops;
353474d553aaSTheodore Ts'o 	else
353574d553aaSTheodore Ts'o 		inode->i_mapping->a_ops = &ext4_aops;
3536ac27a0ecSDave Kleikamp }
3537ac27a0ecSDave Kleikamp 
3538923ae0ffSRoss Zwisler static int __ext4_block_zero_page_range(handle_t *handle,
3539d863dc36SLukas Czerner 		struct address_space *mapping, loff_t from, loff_t length)
3540d863dc36SLukas Czerner {
3541d863dc36SLukas Czerner 	ext4_fsblk_t index = from >> PAGE_CACHE_SHIFT;
3542d863dc36SLukas Czerner 	unsigned offset = from & (PAGE_CACHE_SIZE-1);
3543923ae0ffSRoss Zwisler 	unsigned blocksize, pos;
3544d863dc36SLukas Czerner 	ext4_lblk_t iblock;
3545d863dc36SLukas Czerner 	struct inode *inode = mapping->host;
3546d863dc36SLukas Czerner 	struct buffer_head *bh;
3547d863dc36SLukas Czerner 	struct page *page;
3548d863dc36SLukas Czerner 	int err = 0;
3549d863dc36SLukas Czerner 
3550d863dc36SLukas Czerner 	page = find_or_create_page(mapping, from >> PAGE_CACHE_SHIFT,
3551c62d2555SMichal Hocko 				   mapping_gfp_constraint(mapping, ~__GFP_FS));
3552d863dc36SLukas Czerner 	if (!page)
3553d863dc36SLukas Czerner 		return -ENOMEM;
3554d863dc36SLukas Czerner 
3555d863dc36SLukas Czerner 	blocksize = inode->i_sb->s_blocksize;
3556d863dc36SLukas Czerner 
3557d863dc36SLukas Czerner 	iblock = index << (PAGE_CACHE_SHIFT - inode->i_sb->s_blocksize_bits);
3558d863dc36SLukas Czerner 
3559d863dc36SLukas Czerner 	if (!page_has_buffers(page))
3560d863dc36SLukas Czerner 		create_empty_buffers(page, blocksize, 0);
3561d863dc36SLukas Czerner 
3562d863dc36SLukas Czerner 	/* Find the buffer that contains "offset" */
3563d863dc36SLukas Czerner 	bh = page_buffers(page);
3564d863dc36SLukas Czerner 	pos = blocksize;
3565d863dc36SLukas Czerner 	while (offset >= pos) {
3566d863dc36SLukas Czerner 		bh = bh->b_this_page;
3567d863dc36SLukas Czerner 		iblock++;
3568d863dc36SLukas Czerner 		pos += blocksize;
3569d863dc36SLukas Czerner 	}
3570d863dc36SLukas Czerner 	if (buffer_freed(bh)) {
3571d863dc36SLukas Czerner 		BUFFER_TRACE(bh, "freed: skip");
3572d863dc36SLukas Czerner 		goto unlock;
3573d863dc36SLukas Czerner 	}
3574d863dc36SLukas Czerner 	if (!buffer_mapped(bh)) {
3575d863dc36SLukas Czerner 		BUFFER_TRACE(bh, "unmapped");
3576d863dc36SLukas Czerner 		ext4_get_block(inode, iblock, bh, 0);
3577d863dc36SLukas Czerner 		/* unmapped? It's a hole - nothing to do */
3578d863dc36SLukas Czerner 		if (!buffer_mapped(bh)) {
3579d863dc36SLukas Czerner 			BUFFER_TRACE(bh, "still unmapped");
3580d863dc36SLukas Czerner 			goto unlock;
3581d863dc36SLukas Czerner 		}
3582d863dc36SLukas Czerner 	}
3583d863dc36SLukas Czerner 
3584d863dc36SLukas Czerner 	/* Ok, it's mapped. Make sure it's up-to-date */
3585d863dc36SLukas Czerner 	if (PageUptodate(page))
3586d863dc36SLukas Czerner 		set_buffer_uptodate(bh);
3587d863dc36SLukas Czerner 
3588d863dc36SLukas Czerner 	if (!buffer_uptodate(bh)) {
3589d863dc36SLukas Czerner 		err = -EIO;
3590d863dc36SLukas Czerner 		ll_rw_block(READ, 1, &bh);
3591d863dc36SLukas Czerner 		wait_on_buffer(bh);
3592d863dc36SLukas Czerner 		/* Uhhuh. Read error. Complain and punt. */
3593d863dc36SLukas Czerner 		if (!buffer_uptodate(bh))
3594d863dc36SLukas Czerner 			goto unlock;
3595c9c7429cSMichael Halcrow 		if (S_ISREG(inode->i_mode) &&
3596c9c7429cSMichael Halcrow 		    ext4_encrypted_inode(inode)) {
3597c9c7429cSMichael Halcrow 			/* We expect the key to be set. */
3598c9c7429cSMichael Halcrow 			BUG_ON(!ext4_has_encryption_key(inode));
3599c9c7429cSMichael Halcrow 			BUG_ON(blocksize != PAGE_CACHE_SIZE);
36003684de8cSTheodore Ts'o 			WARN_ON_ONCE(ext4_decrypt(page));
3601c9c7429cSMichael Halcrow 		}
3602d863dc36SLukas Czerner 	}
3603d863dc36SLukas Czerner 	if (ext4_should_journal_data(inode)) {
3604d863dc36SLukas Czerner 		BUFFER_TRACE(bh, "get write access");
3605d863dc36SLukas Czerner 		err = ext4_journal_get_write_access(handle, bh);
3606d863dc36SLukas Czerner 		if (err)
3607d863dc36SLukas Czerner 			goto unlock;
3608d863dc36SLukas Czerner 	}
3609d863dc36SLukas Czerner 	zero_user(page, offset, length);
3610d863dc36SLukas Czerner 	BUFFER_TRACE(bh, "zeroed end of block");
3611d863dc36SLukas Czerner 
3612d863dc36SLukas Czerner 	if (ext4_should_journal_data(inode)) {
3613d863dc36SLukas Czerner 		err = ext4_handle_dirty_metadata(handle, inode, bh);
36140713ed0cSLukas Czerner 	} else {
3615353eefd3Sjon ernst 		err = 0;
3616d863dc36SLukas Czerner 		mark_buffer_dirty(bh);
36170713ed0cSLukas Czerner 		if (ext4_test_inode_state(inode, EXT4_STATE_ORDERED_MODE))
36180713ed0cSLukas Czerner 			err = ext4_jbd2_file_inode(handle, inode);
36190713ed0cSLukas Czerner 	}
3620d863dc36SLukas Czerner 
3621d863dc36SLukas Czerner unlock:
3622d863dc36SLukas Czerner 	unlock_page(page);
3623d863dc36SLukas Czerner 	page_cache_release(page);
3624d863dc36SLukas Czerner 	return err;
3625d863dc36SLukas Czerner }
3626d863dc36SLukas Czerner 
362794350ab5SMatthew Wilcox /*
3628923ae0ffSRoss Zwisler  * ext4_block_zero_page_range() zeros out a mapping of length 'length'
3629923ae0ffSRoss Zwisler  * starting from file offset 'from'.  The range to be zero'd must
3630923ae0ffSRoss Zwisler  * be contained with in one block.  If the specified range exceeds
3631923ae0ffSRoss Zwisler  * the end of the block it will be shortened to end of the block
3632923ae0ffSRoss Zwisler  * that cooresponds to 'from'
3633923ae0ffSRoss Zwisler  */
3634923ae0ffSRoss Zwisler static int ext4_block_zero_page_range(handle_t *handle,
3635923ae0ffSRoss Zwisler 		struct address_space *mapping, loff_t from, loff_t length)
3636923ae0ffSRoss Zwisler {
3637923ae0ffSRoss Zwisler 	struct inode *inode = mapping->host;
3638923ae0ffSRoss Zwisler 	unsigned offset = from & (PAGE_CACHE_SIZE-1);
3639923ae0ffSRoss Zwisler 	unsigned blocksize = inode->i_sb->s_blocksize;
3640923ae0ffSRoss Zwisler 	unsigned max = blocksize - (offset & (blocksize - 1));
3641923ae0ffSRoss Zwisler 
3642923ae0ffSRoss Zwisler 	/*
3643923ae0ffSRoss Zwisler 	 * correct length if it does not fall between
3644923ae0ffSRoss Zwisler 	 * 'from' and the end of the block
3645923ae0ffSRoss Zwisler 	 */
3646923ae0ffSRoss Zwisler 	if (length > max || length < 0)
3647923ae0ffSRoss Zwisler 		length = max;
3648923ae0ffSRoss Zwisler 
3649923ae0ffSRoss Zwisler 	if (IS_DAX(inode))
3650923ae0ffSRoss Zwisler 		return dax_zero_page_range(inode, from, length, ext4_get_block);
3651923ae0ffSRoss Zwisler 	return __ext4_block_zero_page_range(handle, mapping, from, length);
3652923ae0ffSRoss Zwisler }
3653923ae0ffSRoss Zwisler 
3654923ae0ffSRoss Zwisler /*
365594350ab5SMatthew Wilcox  * ext4_block_truncate_page() zeroes out a mapping from file offset `from'
365694350ab5SMatthew Wilcox  * up to the end of the block which corresponds to `from'.
365794350ab5SMatthew Wilcox  * This required during truncate. We need to physically zero the tail end
365894350ab5SMatthew Wilcox  * of that block so it doesn't yield old data if the file is later grown.
365994350ab5SMatthew Wilcox  */
3660c197855eSStephen Hemminger static int ext4_block_truncate_page(handle_t *handle,
366194350ab5SMatthew Wilcox 		struct address_space *mapping, loff_t from)
366294350ab5SMatthew Wilcox {
366394350ab5SMatthew Wilcox 	unsigned offset = from & (PAGE_CACHE_SIZE-1);
366494350ab5SMatthew Wilcox 	unsigned length;
366594350ab5SMatthew Wilcox 	unsigned blocksize;
366694350ab5SMatthew Wilcox 	struct inode *inode = mapping->host;
366794350ab5SMatthew Wilcox 
366894350ab5SMatthew Wilcox 	blocksize = inode->i_sb->s_blocksize;
366994350ab5SMatthew Wilcox 	length = blocksize - (offset & (blocksize - 1));
367094350ab5SMatthew Wilcox 
367194350ab5SMatthew Wilcox 	return ext4_block_zero_page_range(handle, mapping, from, length);
367294350ab5SMatthew Wilcox }
367394350ab5SMatthew Wilcox 
3674a87dd18cSLukas Czerner int ext4_zero_partial_blocks(handle_t *handle, struct inode *inode,
3675a87dd18cSLukas Czerner 			     loff_t lstart, loff_t length)
3676a87dd18cSLukas Czerner {
3677a87dd18cSLukas Czerner 	struct super_block *sb = inode->i_sb;
3678a87dd18cSLukas Czerner 	struct address_space *mapping = inode->i_mapping;
3679e1be3a92SLukas Czerner 	unsigned partial_start, partial_end;
3680a87dd18cSLukas Czerner 	ext4_fsblk_t start, end;
3681a87dd18cSLukas Czerner 	loff_t byte_end = (lstart + length - 1);
3682a87dd18cSLukas Czerner 	int err = 0;
3683a87dd18cSLukas Czerner 
3684e1be3a92SLukas Czerner 	partial_start = lstart & (sb->s_blocksize - 1);
3685e1be3a92SLukas Czerner 	partial_end = byte_end & (sb->s_blocksize - 1);
3686e1be3a92SLukas Czerner 
3687a87dd18cSLukas Czerner 	start = lstart >> sb->s_blocksize_bits;
3688a87dd18cSLukas Czerner 	end = byte_end >> sb->s_blocksize_bits;
3689a87dd18cSLukas Czerner 
3690a87dd18cSLukas Czerner 	/* Handle partial zero within the single block */
3691e1be3a92SLukas Czerner 	if (start == end &&
3692e1be3a92SLukas Czerner 	    (partial_start || (partial_end != sb->s_blocksize - 1))) {
3693a87dd18cSLukas Czerner 		err = ext4_block_zero_page_range(handle, mapping,
3694a87dd18cSLukas Czerner 						 lstart, length);
3695a87dd18cSLukas Czerner 		return err;
3696a87dd18cSLukas Czerner 	}
3697a87dd18cSLukas Czerner 	/* Handle partial zero out on the start of the range */
3698e1be3a92SLukas Czerner 	if (partial_start) {
3699a87dd18cSLukas Czerner 		err = ext4_block_zero_page_range(handle, mapping,
3700a87dd18cSLukas Czerner 						 lstart, sb->s_blocksize);
3701a87dd18cSLukas Czerner 		if (err)
3702a87dd18cSLukas Czerner 			return err;
3703a87dd18cSLukas Czerner 	}
3704a87dd18cSLukas Czerner 	/* Handle partial zero out on the end of the range */
3705e1be3a92SLukas Czerner 	if (partial_end != sb->s_blocksize - 1)
3706a87dd18cSLukas Czerner 		err = ext4_block_zero_page_range(handle, mapping,
3707e1be3a92SLukas Czerner 						 byte_end - partial_end,
3708e1be3a92SLukas Czerner 						 partial_end + 1);
3709a87dd18cSLukas Czerner 	return err;
3710a87dd18cSLukas Czerner }
3711a87dd18cSLukas Czerner 
371291ef4cafSDuane Griffin int ext4_can_truncate(struct inode *inode)
371391ef4cafSDuane Griffin {
371491ef4cafSDuane Griffin 	if (S_ISREG(inode->i_mode))
371591ef4cafSDuane Griffin 		return 1;
371691ef4cafSDuane Griffin 	if (S_ISDIR(inode->i_mode))
371791ef4cafSDuane Griffin 		return 1;
371891ef4cafSDuane Griffin 	if (S_ISLNK(inode->i_mode))
371991ef4cafSDuane Griffin 		return !ext4_inode_is_fast_symlink(inode);
372091ef4cafSDuane Griffin 	return 0;
372191ef4cafSDuane Griffin }
372291ef4cafSDuane Griffin 
3723ac27a0ecSDave Kleikamp /*
372401127848SJan Kara  * We have to make sure i_disksize gets properly updated before we truncate
372501127848SJan Kara  * page cache due to hole punching or zero range. Otherwise i_disksize update
372601127848SJan Kara  * can get lost as it may have been postponed to submission of writeback but
372701127848SJan Kara  * that will never happen after we truncate page cache.
372801127848SJan Kara  */
372901127848SJan Kara int ext4_update_disksize_before_punch(struct inode *inode, loff_t offset,
373001127848SJan Kara 				      loff_t len)
373101127848SJan Kara {
373201127848SJan Kara 	handle_t *handle;
373301127848SJan Kara 	loff_t size = i_size_read(inode);
373401127848SJan Kara 
37355955102cSAl Viro 	WARN_ON(!inode_is_locked(inode));
373601127848SJan Kara 	if (offset > size || offset + len < size)
373701127848SJan Kara 		return 0;
373801127848SJan Kara 
373901127848SJan Kara 	if (EXT4_I(inode)->i_disksize >= size)
374001127848SJan Kara 		return 0;
374101127848SJan Kara 
374201127848SJan Kara 	handle = ext4_journal_start(inode, EXT4_HT_MISC, 1);
374301127848SJan Kara 	if (IS_ERR(handle))
374401127848SJan Kara 		return PTR_ERR(handle);
374501127848SJan Kara 	ext4_update_i_disksize(inode, size);
374601127848SJan Kara 	ext4_mark_inode_dirty(handle, inode);
374701127848SJan Kara 	ext4_journal_stop(handle);
374801127848SJan Kara 
374901127848SJan Kara 	return 0;
375001127848SJan Kara }
375101127848SJan Kara 
375201127848SJan Kara /*
3753a4bb6b64SAllison Henderson  * ext4_punch_hole: punches a hole in a file by releaseing the blocks
3754a4bb6b64SAllison Henderson  * associated with the given offset and length
3755a4bb6b64SAllison Henderson  *
3756a4bb6b64SAllison Henderson  * @inode:  File inode
3757a4bb6b64SAllison Henderson  * @offset: The offset where the hole will begin
3758a4bb6b64SAllison Henderson  * @len:    The length of the hole
3759a4bb6b64SAllison Henderson  *
37604907cb7bSAnatol Pomozov  * Returns: 0 on success or negative on failure
3761a4bb6b64SAllison Henderson  */
3762a4bb6b64SAllison Henderson 
3763aeb2817aSAshish Sangwan int ext4_punch_hole(struct inode *inode, loff_t offset, loff_t length)
3764a4bb6b64SAllison Henderson {
376526a4c0c6STheodore Ts'o 	struct super_block *sb = inode->i_sb;
376626a4c0c6STheodore Ts'o 	ext4_lblk_t first_block, stop_block;
376726a4c0c6STheodore Ts'o 	struct address_space *mapping = inode->i_mapping;
3768a87dd18cSLukas Czerner 	loff_t first_block_offset, last_block_offset;
376926a4c0c6STheodore Ts'o 	handle_t *handle;
377026a4c0c6STheodore Ts'o 	unsigned int credits;
377126a4c0c6STheodore Ts'o 	int ret = 0;
377226a4c0c6STheodore Ts'o 
3773a4bb6b64SAllison Henderson 	if (!S_ISREG(inode->i_mode))
377473355192SAllison Henderson 		return -EOPNOTSUPP;
3775a4bb6b64SAllison Henderson 
3776b8a86845SLukas Czerner 	trace_ext4_punch_hole(inode, offset, length, 0);
3777aaddea81SZheng Liu 
377826a4c0c6STheodore Ts'o 	/*
377926a4c0c6STheodore Ts'o 	 * Write out all dirty pages to avoid race conditions
378026a4c0c6STheodore Ts'o 	 * Then release them.
378126a4c0c6STheodore Ts'o 	 */
378226a4c0c6STheodore Ts'o 	if (mapping->nrpages && mapping_tagged(mapping, PAGECACHE_TAG_DIRTY)) {
378326a4c0c6STheodore Ts'o 		ret = filemap_write_and_wait_range(mapping, offset,
378426a4c0c6STheodore Ts'o 						   offset + length - 1);
378526a4c0c6STheodore Ts'o 		if (ret)
378626a4c0c6STheodore Ts'o 			return ret;
378726a4c0c6STheodore Ts'o 	}
378826a4c0c6STheodore Ts'o 
37895955102cSAl Viro 	inode_lock(inode);
37909ef06cecSLukas Czerner 
379126a4c0c6STheodore Ts'o 	/* No need to punch hole beyond i_size */
379226a4c0c6STheodore Ts'o 	if (offset >= inode->i_size)
379326a4c0c6STheodore Ts'o 		goto out_mutex;
379426a4c0c6STheodore Ts'o 
379526a4c0c6STheodore Ts'o 	/*
379626a4c0c6STheodore Ts'o 	 * If the hole extends beyond i_size, set the hole
379726a4c0c6STheodore Ts'o 	 * to end after the page that contains i_size
379826a4c0c6STheodore Ts'o 	 */
379926a4c0c6STheodore Ts'o 	if (offset + length > inode->i_size) {
380026a4c0c6STheodore Ts'o 		length = inode->i_size +
380126a4c0c6STheodore Ts'o 		   PAGE_CACHE_SIZE - (inode->i_size & (PAGE_CACHE_SIZE - 1)) -
380226a4c0c6STheodore Ts'o 		   offset;
380326a4c0c6STheodore Ts'o 	}
380426a4c0c6STheodore Ts'o 
3805a361293fSJan Kara 	if (offset & (sb->s_blocksize - 1) ||
3806a361293fSJan Kara 	    (offset + length) & (sb->s_blocksize - 1)) {
3807a361293fSJan Kara 		/*
3808a361293fSJan Kara 		 * Attach jinode to inode for jbd2 if we do any zeroing of
3809a361293fSJan Kara 		 * partial block
3810a361293fSJan Kara 		 */
3811a361293fSJan Kara 		ret = ext4_inode_attach_jinode(inode);
3812a361293fSJan Kara 		if (ret < 0)
3813a361293fSJan Kara 			goto out_mutex;
3814a361293fSJan Kara 
3815a361293fSJan Kara 	}
3816a361293fSJan Kara 
3817ea3d7209SJan Kara 	/* Wait all existing dio workers, newcomers will block on i_mutex */
3818ea3d7209SJan Kara 	ext4_inode_block_unlocked_dio(inode);
3819ea3d7209SJan Kara 	inode_dio_wait(inode);
3820ea3d7209SJan Kara 
3821ea3d7209SJan Kara 	/*
3822ea3d7209SJan Kara 	 * Prevent page faults from reinstantiating pages we have released from
3823ea3d7209SJan Kara 	 * page cache.
3824ea3d7209SJan Kara 	 */
3825ea3d7209SJan Kara 	down_write(&EXT4_I(inode)->i_mmap_sem);
3826a87dd18cSLukas Czerner 	first_block_offset = round_up(offset, sb->s_blocksize);
3827a87dd18cSLukas Czerner 	last_block_offset = round_down((offset + length), sb->s_blocksize) - 1;
382826a4c0c6STheodore Ts'o 
3829a87dd18cSLukas Czerner 	/* Now release the pages and zero block aligned part of pages*/
383001127848SJan Kara 	if (last_block_offset > first_block_offset) {
383101127848SJan Kara 		ret = ext4_update_disksize_before_punch(inode, offset, length);
383201127848SJan Kara 		if (ret)
383301127848SJan Kara 			goto out_dio;
3834a87dd18cSLukas Czerner 		truncate_pagecache_range(inode, first_block_offset,
3835a87dd18cSLukas Czerner 					 last_block_offset);
383601127848SJan Kara 	}
383726a4c0c6STheodore Ts'o 
383826a4c0c6STheodore Ts'o 	if (ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS))
383926a4c0c6STheodore Ts'o 		credits = ext4_writepage_trans_blocks(inode);
384026a4c0c6STheodore Ts'o 	else
384126a4c0c6STheodore Ts'o 		credits = ext4_blocks_for_truncate(inode);
384226a4c0c6STheodore Ts'o 	handle = ext4_journal_start(inode, EXT4_HT_TRUNCATE, credits);
384326a4c0c6STheodore Ts'o 	if (IS_ERR(handle)) {
384426a4c0c6STheodore Ts'o 		ret = PTR_ERR(handle);
384526a4c0c6STheodore Ts'o 		ext4_std_error(sb, ret);
384626a4c0c6STheodore Ts'o 		goto out_dio;
384726a4c0c6STheodore Ts'o 	}
384826a4c0c6STheodore Ts'o 
3849a87dd18cSLukas Czerner 	ret = ext4_zero_partial_blocks(handle, inode, offset,
3850a87dd18cSLukas Czerner 				       length);
385126a4c0c6STheodore Ts'o 	if (ret)
385226a4c0c6STheodore Ts'o 		goto out_stop;
385326a4c0c6STheodore Ts'o 
385426a4c0c6STheodore Ts'o 	first_block = (offset + sb->s_blocksize - 1) >>
385526a4c0c6STheodore Ts'o 		EXT4_BLOCK_SIZE_BITS(sb);
385626a4c0c6STheodore Ts'o 	stop_block = (offset + length) >> EXT4_BLOCK_SIZE_BITS(sb);
385726a4c0c6STheodore Ts'o 
385826a4c0c6STheodore Ts'o 	/* If there are no blocks to remove, return now */
385926a4c0c6STheodore Ts'o 	if (first_block >= stop_block)
386026a4c0c6STheodore Ts'o 		goto out_stop;
386126a4c0c6STheodore Ts'o 
386226a4c0c6STheodore Ts'o 	down_write(&EXT4_I(inode)->i_data_sem);
386326a4c0c6STheodore Ts'o 	ext4_discard_preallocations(inode);
386426a4c0c6STheodore Ts'o 
386526a4c0c6STheodore Ts'o 	ret = ext4_es_remove_extent(inode, first_block,
386626a4c0c6STheodore Ts'o 				    stop_block - first_block);
386726a4c0c6STheodore Ts'o 	if (ret) {
386826a4c0c6STheodore Ts'o 		up_write(&EXT4_I(inode)->i_data_sem);
386926a4c0c6STheodore Ts'o 		goto out_stop;
387026a4c0c6STheodore Ts'o 	}
387126a4c0c6STheodore Ts'o 
387226a4c0c6STheodore Ts'o 	if (ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS))
387326a4c0c6STheodore Ts'o 		ret = ext4_ext_remove_space(inode, first_block,
387426a4c0c6STheodore Ts'o 					    stop_block - 1);
387526a4c0c6STheodore Ts'o 	else
38764f579ae7SLukas Czerner 		ret = ext4_ind_remove_space(handle, inode, first_block,
387726a4c0c6STheodore Ts'o 					    stop_block);
387826a4c0c6STheodore Ts'o 
3879819c4920STheodore Ts'o 	up_write(&EXT4_I(inode)->i_data_sem);
388026a4c0c6STheodore Ts'o 	if (IS_SYNC(inode))
388126a4c0c6STheodore Ts'o 		ext4_handle_sync(handle);
3882e251f9bcSMaxim Patlasov 
388326a4c0c6STheodore Ts'o 	inode->i_mtime = inode->i_ctime = ext4_current_time(inode);
388426a4c0c6STheodore Ts'o 	ext4_mark_inode_dirty(handle, inode);
388526a4c0c6STheodore Ts'o out_stop:
388626a4c0c6STheodore Ts'o 	ext4_journal_stop(handle);
388726a4c0c6STheodore Ts'o out_dio:
3888ea3d7209SJan Kara 	up_write(&EXT4_I(inode)->i_mmap_sem);
388926a4c0c6STheodore Ts'o 	ext4_inode_resume_unlocked_dio(inode);
389026a4c0c6STheodore Ts'o out_mutex:
38915955102cSAl Viro 	inode_unlock(inode);
389226a4c0c6STheodore Ts'o 	return ret;
3893a4bb6b64SAllison Henderson }
3894a4bb6b64SAllison Henderson 
3895a361293fSJan Kara int ext4_inode_attach_jinode(struct inode *inode)
3896a361293fSJan Kara {
3897a361293fSJan Kara 	struct ext4_inode_info *ei = EXT4_I(inode);
3898a361293fSJan Kara 	struct jbd2_inode *jinode;
3899a361293fSJan Kara 
3900a361293fSJan Kara 	if (ei->jinode || !EXT4_SB(inode->i_sb)->s_journal)
3901a361293fSJan Kara 		return 0;
3902a361293fSJan Kara 
3903a361293fSJan Kara 	jinode = jbd2_alloc_inode(GFP_KERNEL);
3904a361293fSJan Kara 	spin_lock(&inode->i_lock);
3905a361293fSJan Kara 	if (!ei->jinode) {
3906a361293fSJan Kara 		if (!jinode) {
3907a361293fSJan Kara 			spin_unlock(&inode->i_lock);
3908a361293fSJan Kara 			return -ENOMEM;
3909a361293fSJan Kara 		}
3910a361293fSJan Kara 		ei->jinode = jinode;
3911a361293fSJan Kara 		jbd2_journal_init_jbd_inode(ei->jinode, inode);
3912a361293fSJan Kara 		jinode = NULL;
3913a361293fSJan Kara 	}
3914a361293fSJan Kara 	spin_unlock(&inode->i_lock);
3915a361293fSJan Kara 	if (unlikely(jinode != NULL))
3916a361293fSJan Kara 		jbd2_free_inode(jinode);
3917a361293fSJan Kara 	return 0;
3918a361293fSJan Kara }
3919a361293fSJan Kara 
3920a4bb6b64SAllison Henderson /*
3921617ba13bSMingming Cao  * ext4_truncate()
3922ac27a0ecSDave Kleikamp  *
3923617ba13bSMingming Cao  * We block out ext4_get_block() block instantiations across the entire
3924617ba13bSMingming Cao  * transaction, and VFS/VM ensures that ext4_truncate() cannot run
3925ac27a0ecSDave Kleikamp  * simultaneously on behalf of the same inode.
3926ac27a0ecSDave Kleikamp  *
392742b2aa86SJustin P. Mattock  * As we work through the truncate and commit bits of it to the journal there
3928ac27a0ecSDave Kleikamp  * is one core, guiding principle: the file's tree must always be consistent on
3929ac27a0ecSDave Kleikamp  * disk.  We must be able to restart the truncate after a crash.
3930ac27a0ecSDave Kleikamp  *
3931ac27a0ecSDave Kleikamp  * The file's tree may be transiently inconsistent in memory (although it
3932ac27a0ecSDave Kleikamp  * probably isn't), but whenever we close off and commit a journal transaction,
3933ac27a0ecSDave Kleikamp  * the contents of (the filesystem + the journal) must be consistent and
3934ac27a0ecSDave Kleikamp  * restartable.  It's pretty simple, really: bottom up, right to left (although
3935ac27a0ecSDave Kleikamp  * left-to-right works OK too).
3936ac27a0ecSDave Kleikamp  *
3937ac27a0ecSDave Kleikamp  * Note that at recovery time, journal replay occurs *before* the restart of
3938ac27a0ecSDave Kleikamp  * truncate against the orphan inode list.
3939ac27a0ecSDave Kleikamp  *
3940ac27a0ecSDave Kleikamp  * The committed inode has the new, desired i_size (which is the same as
3941617ba13bSMingming Cao  * i_disksize in this case).  After a crash, ext4_orphan_cleanup() will see
3942ac27a0ecSDave Kleikamp  * that this inode's truncate did not complete and it will again call
3943617ba13bSMingming Cao  * ext4_truncate() to have another go.  So there will be instantiated blocks
3944617ba13bSMingming Cao  * to the right of the truncation point in a crashed ext4 filesystem.  But
3945ac27a0ecSDave Kleikamp  * that's fine - as long as they are linked from the inode, the post-crash
3946617ba13bSMingming Cao  * ext4_truncate() run will find them and release them.
3947ac27a0ecSDave Kleikamp  */
3948617ba13bSMingming Cao void ext4_truncate(struct inode *inode)
3949ac27a0ecSDave Kleikamp {
3950819c4920STheodore Ts'o 	struct ext4_inode_info *ei = EXT4_I(inode);
3951819c4920STheodore Ts'o 	unsigned int credits;
3952819c4920STheodore Ts'o 	handle_t *handle;
3953819c4920STheodore Ts'o 	struct address_space *mapping = inode->i_mapping;
3954819c4920STheodore Ts'o 
395519b5ef61STheodore Ts'o 	/*
395619b5ef61STheodore Ts'o 	 * There is a possibility that we're either freeing the inode
3957e04027e8SMatthew Wilcox 	 * or it's a completely new inode. In those cases we might not
395819b5ef61STheodore Ts'o 	 * have i_mutex locked because it's not necessary.
395919b5ef61STheodore Ts'o 	 */
396019b5ef61STheodore Ts'o 	if (!(inode->i_state & (I_NEW|I_FREEING)))
39615955102cSAl Viro 		WARN_ON(!inode_is_locked(inode));
39620562e0baSJiaying Zhang 	trace_ext4_truncate_enter(inode);
39630562e0baSJiaying Zhang 
396491ef4cafSDuane Griffin 	if (!ext4_can_truncate(inode))
3965ac27a0ecSDave Kleikamp 		return;
3966ac27a0ecSDave Kleikamp 
396712e9b892SDmitry Monakhov 	ext4_clear_inode_flag(inode, EXT4_INODE_EOFBLOCKS);
3968c8d46e41SJiaying Zhang 
39695534fb5bSTheodore Ts'o 	if (inode->i_size == 0 && !test_opt(inode->i_sb, NO_AUTO_DA_ALLOC))
397019f5fb7aSTheodore Ts'o 		ext4_set_inode_state(inode, EXT4_STATE_DA_ALLOC_CLOSE);
39717d8f9f7dSTheodore Ts'o 
3972aef1c851STao Ma 	if (ext4_has_inline_data(inode)) {
3973aef1c851STao Ma 		int has_inline = 1;
3974aef1c851STao Ma 
3975aef1c851STao Ma 		ext4_inline_data_truncate(inode, &has_inline);
3976aef1c851STao Ma 		if (has_inline)
3977aef1c851STao Ma 			return;
3978aef1c851STao Ma 	}
3979aef1c851STao Ma 
3980a361293fSJan Kara 	/* If we zero-out tail of the page, we have to create jinode for jbd2 */
3981a361293fSJan Kara 	if (inode->i_size & (inode->i_sb->s_blocksize - 1)) {
3982a361293fSJan Kara 		if (ext4_inode_attach_jinode(inode) < 0)
3983a361293fSJan Kara 			return;
3984a361293fSJan Kara 	}
3985a361293fSJan Kara 
3986ff9893dcSAmir Goldstein 	if (ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS))
3987819c4920STheodore Ts'o 		credits = ext4_writepage_trans_blocks(inode);
3988ff9893dcSAmir Goldstein 	else
3989819c4920STheodore Ts'o 		credits = ext4_blocks_for_truncate(inode);
3990819c4920STheodore Ts'o 
3991819c4920STheodore Ts'o 	handle = ext4_journal_start(inode, EXT4_HT_TRUNCATE, credits);
3992819c4920STheodore Ts'o 	if (IS_ERR(handle)) {
3993819c4920STheodore Ts'o 		ext4_std_error(inode->i_sb, PTR_ERR(handle));
3994819c4920STheodore Ts'o 		return;
3995819c4920STheodore Ts'o 	}
3996819c4920STheodore Ts'o 
3997eb3544c6SLukas Czerner 	if (inode->i_size & (inode->i_sb->s_blocksize - 1))
3998eb3544c6SLukas Czerner 		ext4_block_truncate_page(handle, mapping, inode->i_size);
3999819c4920STheodore Ts'o 
4000819c4920STheodore Ts'o 	/*
4001819c4920STheodore Ts'o 	 * We add the inode to the orphan list, so that if this
4002819c4920STheodore Ts'o 	 * truncate spans multiple transactions, and we crash, we will
4003819c4920STheodore Ts'o 	 * resume the truncate when the filesystem recovers.  It also
4004819c4920STheodore Ts'o 	 * marks the inode dirty, to catch the new size.
4005819c4920STheodore Ts'o 	 *
4006819c4920STheodore Ts'o 	 * Implication: the file must always be in a sane, consistent
4007819c4920STheodore Ts'o 	 * truncatable state while each transaction commits.
4008819c4920STheodore Ts'o 	 */
4009819c4920STheodore Ts'o 	if (ext4_orphan_add(handle, inode))
4010819c4920STheodore Ts'o 		goto out_stop;
4011819c4920STheodore Ts'o 
4012819c4920STheodore Ts'o 	down_write(&EXT4_I(inode)->i_data_sem);
4013819c4920STheodore Ts'o 
4014819c4920STheodore Ts'o 	ext4_discard_preallocations(inode);
4015819c4920STheodore Ts'o 
4016819c4920STheodore Ts'o 	if (ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS))
4017819c4920STheodore Ts'o 		ext4_ext_truncate(handle, inode);
4018819c4920STheodore Ts'o 	else
4019819c4920STheodore Ts'o 		ext4_ind_truncate(handle, inode);
4020819c4920STheodore Ts'o 
4021819c4920STheodore Ts'o 	up_write(&ei->i_data_sem);
4022819c4920STheodore Ts'o 
4023819c4920STheodore Ts'o 	if (IS_SYNC(inode))
4024819c4920STheodore Ts'o 		ext4_handle_sync(handle);
4025819c4920STheodore Ts'o 
4026819c4920STheodore Ts'o out_stop:
4027819c4920STheodore Ts'o 	/*
4028819c4920STheodore Ts'o 	 * If this was a simple ftruncate() and the file will remain alive,
4029819c4920STheodore Ts'o 	 * then we need to clear up the orphan record which we created above.
4030819c4920STheodore Ts'o 	 * However, if this was a real unlink then we were called by
403158d86a50SWang Shilong 	 * ext4_evict_inode(), and we allow that function to clean up the
4032819c4920STheodore Ts'o 	 * orphan info for us.
4033819c4920STheodore Ts'o 	 */
4034819c4920STheodore Ts'o 	if (inode->i_nlink)
4035819c4920STheodore Ts'o 		ext4_orphan_del(handle, inode);
4036819c4920STheodore Ts'o 
4037819c4920STheodore Ts'o 	inode->i_mtime = inode->i_ctime = ext4_current_time(inode);
4038819c4920STheodore Ts'o 	ext4_mark_inode_dirty(handle, inode);
4039819c4920STheodore Ts'o 	ext4_journal_stop(handle);
4040a86c6181SAlex Tomas 
40410562e0baSJiaying Zhang 	trace_ext4_truncate_exit(inode);
4042ac27a0ecSDave Kleikamp }
4043ac27a0ecSDave Kleikamp 
4044ac27a0ecSDave Kleikamp /*
4045617ba13bSMingming Cao  * ext4_get_inode_loc returns with an extra refcount against the inode's
4046ac27a0ecSDave Kleikamp  * underlying buffer_head on success. If 'in_mem' is true, we have all
4047ac27a0ecSDave Kleikamp  * data in memory that is needed to recreate the on-disk version of this
4048ac27a0ecSDave Kleikamp  * inode.
4049ac27a0ecSDave Kleikamp  */
4050617ba13bSMingming Cao static int __ext4_get_inode_loc(struct inode *inode,
4051617ba13bSMingming Cao 				struct ext4_iloc *iloc, int in_mem)
4052ac27a0ecSDave Kleikamp {
4053240799cdSTheodore Ts'o 	struct ext4_group_desc	*gdp;
4054ac27a0ecSDave Kleikamp 	struct buffer_head	*bh;
4055240799cdSTheodore Ts'o 	struct super_block	*sb = inode->i_sb;
4056240799cdSTheodore Ts'o 	ext4_fsblk_t		block;
4057240799cdSTheodore Ts'o 	int			inodes_per_block, inode_offset;
4058ac27a0ecSDave Kleikamp 
40593a06d778SAneesh Kumar K.V 	iloc->bh = NULL;
4060240799cdSTheodore Ts'o 	if (!ext4_valid_inum(sb, inode->i_ino))
40616a797d27SDarrick J. Wong 		return -EFSCORRUPTED;
4062ac27a0ecSDave Kleikamp 
4063240799cdSTheodore Ts'o 	iloc->block_group = (inode->i_ino - 1) / EXT4_INODES_PER_GROUP(sb);
4064240799cdSTheodore Ts'o 	gdp = ext4_get_group_desc(sb, iloc->block_group, NULL);
4065240799cdSTheodore Ts'o 	if (!gdp)
4066240799cdSTheodore Ts'o 		return -EIO;
4067240799cdSTheodore Ts'o 
4068240799cdSTheodore Ts'o 	/*
4069240799cdSTheodore Ts'o 	 * Figure out the offset within the block group inode table
4070240799cdSTheodore Ts'o 	 */
407100d09882STao Ma 	inodes_per_block = EXT4_SB(sb)->s_inodes_per_block;
4072240799cdSTheodore Ts'o 	inode_offset = ((inode->i_ino - 1) %
4073240799cdSTheodore Ts'o 			EXT4_INODES_PER_GROUP(sb));
4074240799cdSTheodore Ts'o 	block = ext4_inode_table(sb, gdp) + (inode_offset / inodes_per_block);
4075240799cdSTheodore Ts'o 	iloc->offset = (inode_offset % inodes_per_block) * EXT4_INODE_SIZE(sb);
4076240799cdSTheodore Ts'o 
4077240799cdSTheodore Ts'o 	bh = sb_getblk(sb, block);
4078aebf0243SWang Shilong 	if (unlikely(!bh))
4079860d21e2STheodore Ts'o 		return -ENOMEM;
4080ac27a0ecSDave Kleikamp 	if (!buffer_uptodate(bh)) {
4081ac27a0ecSDave Kleikamp 		lock_buffer(bh);
40829c83a923SHidehiro Kawai 
40839c83a923SHidehiro Kawai 		/*
40849c83a923SHidehiro Kawai 		 * If the buffer has the write error flag, we have failed
40859c83a923SHidehiro Kawai 		 * to write out another inode in the same block.  In this
40869c83a923SHidehiro Kawai 		 * case, we don't have to read the block because we may
40879c83a923SHidehiro Kawai 		 * read the old inode data successfully.
40889c83a923SHidehiro Kawai 		 */
40899c83a923SHidehiro Kawai 		if (buffer_write_io_error(bh) && !buffer_uptodate(bh))
40909c83a923SHidehiro Kawai 			set_buffer_uptodate(bh);
40919c83a923SHidehiro Kawai 
4092ac27a0ecSDave Kleikamp 		if (buffer_uptodate(bh)) {
4093ac27a0ecSDave Kleikamp 			/* someone brought it uptodate while we waited */
4094ac27a0ecSDave Kleikamp 			unlock_buffer(bh);
4095ac27a0ecSDave Kleikamp 			goto has_buffer;
4096ac27a0ecSDave Kleikamp 		}
4097ac27a0ecSDave Kleikamp 
4098ac27a0ecSDave Kleikamp 		/*
4099ac27a0ecSDave Kleikamp 		 * If we have all information of the inode in memory and this
4100ac27a0ecSDave Kleikamp 		 * is the only valid inode in the block, we need not read the
4101ac27a0ecSDave Kleikamp 		 * block.
4102ac27a0ecSDave Kleikamp 		 */
4103ac27a0ecSDave Kleikamp 		if (in_mem) {
4104ac27a0ecSDave Kleikamp 			struct buffer_head *bitmap_bh;
4105240799cdSTheodore Ts'o 			int i, start;
4106ac27a0ecSDave Kleikamp 
4107240799cdSTheodore Ts'o 			start = inode_offset & ~(inodes_per_block - 1);
4108ac27a0ecSDave Kleikamp 
4109ac27a0ecSDave Kleikamp 			/* Is the inode bitmap in cache? */
4110240799cdSTheodore Ts'o 			bitmap_bh = sb_getblk(sb, ext4_inode_bitmap(sb, gdp));
4111aebf0243SWang Shilong 			if (unlikely(!bitmap_bh))
4112ac27a0ecSDave Kleikamp 				goto make_io;
4113ac27a0ecSDave Kleikamp 
4114ac27a0ecSDave Kleikamp 			/*
4115ac27a0ecSDave Kleikamp 			 * If the inode bitmap isn't in cache then the
4116ac27a0ecSDave Kleikamp 			 * optimisation may end up performing two reads instead
4117ac27a0ecSDave Kleikamp 			 * of one, so skip it.
4118ac27a0ecSDave Kleikamp 			 */
4119ac27a0ecSDave Kleikamp 			if (!buffer_uptodate(bitmap_bh)) {
4120ac27a0ecSDave Kleikamp 				brelse(bitmap_bh);
4121ac27a0ecSDave Kleikamp 				goto make_io;
4122ac27a0ecSDave Kleikamp 			}
4123240799cdSTheodore Ts'o 			for (i = start; i < start + inodes_per_block; i++) {
4124ac27a0ecSDave Kleikamp 				if (i == inode_offset)
4125ac27a0ecSDave Kleikamp 					continue;
4126617ba13bSMingming Cao 				if (ext4_test_bit(i, bitmap_bh->b_data))
4127ac27a0ecSDave Kleikamp 					break;
4128ac27a0ecSDave Kleikamp 			}
4129ac27a0ecSDave Kleikamp 			brelse(bitmap_bh);
4130240799cdSTheodore Ts'o 			if (i == start + inodes_per_block) {
4131ac27a0ecSDave Kleikamp 				/* all other inodes are free, so skip I/O */
4132ac27a0ecSDave Kleikamp 				memset(bh->b_data, 0, bh->b_size);
4133ac27a0ecSDave Kleikamp 				set_buffer_uptodate(bh);
4134ac27a0ecSDave Kleikamp 				unlock_buffer(bh);
4135ac27a0ecSDave Kleikamp 				goto has_buffer;
4136ac27a0ecSDave Kleikamp 			}
4137ac27a0ecSDave Kleikamp 		}
4138ac27a0ecSDave Kleikamp 
4139ac27a0ecSDave Kleikamp make_io:
4140ac27a0ecSDave Kleikamp 		/*
4141240799cdSTheodore Ts'o 		 * If we need to do any I/O, try to pre-readahead extra
4142240799cdSTheodore Ts'o 		 * blocks from the inode table.
4143240799cdSTheodore Ts'o 		 */
4144240799cdSTheodore Ts'o 		if (EXT4_SB(sb)->s_inode_readahead_blks) {
4145240799cdSTheodore Ts'o 			ext4_fsblk_t b, end, table;
4146240799cdSTheodore Ts'o 			unsigned num;
41470d606e2cSTheodore Ts'o 			__u32 ra_blks = EXT4_SB(sb)->s_inode_readahead_blks;
4148240799cdSTheodore Ts'o 
4149240799cdSTheodore Ts'o 			table = ext4_inode_table(sb, gdp);
4150b713a5ecSTheodore Ts'o 			/* s_inode_readahead_blks is always a power of 2 */
41510d606e2cSTheodore Ts'o 			b = block & ~((ext4_fsblk_t) ra_blks - 1);
4152240799cdSTheodore Ts'o 			if (table > b)
4153240799cdSTheodore Ts'o 				b = table;
41540d606e2cSTheodore Ts'o 			end = b + ra_blks;
4155240799cdSTheodore Ts'o 			num = EXT4_INODES_PER_GROUP(sb);
4156feb0ab32SDarrick J. Wong 			if (ext4_has_group_desc_csum(sb))
4157560671a0SAneesh Kumar K.V 				num -= ext4_itable_unused_count(sb, gdp);
4158240799cdSTheodore Ts'o 			table += num / inodes_per_block;
4159240799cdSTheodore Ts'o 			if (end > table)
4160240799cdSTheodore Ts'o 				end = table;
4161240799cdSTheodore Ts'o 			while (b <= end)
4162240799cdSTheodore Ts'o 				sb_breadahead(sb, b++);
4163240799cdSTheodore Ts'o 		}
4164240799cdSTheodore Ts'o 
4165240799cdSTheodore Ts'o 		/*
4166ac27a0ecSDave Kleikamp 		 * There are other valid inodes in the buffer, this inode
4167ac27a0ecSDave Kleikamp 		 * has in-inode xattrs, or we don't have this inode in memory.
4168ac27a0ecSDave Kleikamp 		 * Read the block from disk.
4169ac27a0ecSDave Kleikamp 		 */
41700562e0baSJiaying Zhang 		trace_ext4_load_inode(inode);
4171ac27a0ecSDave Kleikamp 		get_bh(bh);
4172ac27a0ecSDave Kleikamp 		bh->b_end_io = end_buffer_read_sync;
417365299a3bSChristoph Hellwig 		submit_bh(READ | REQ_META | REQ_PRIO, bh);
4174ac27a0ecSDave Kleikamp 		wait_on_buffer(bh);
4175ac27a0ecSDave Kleikamp 		if (!buffer_uptodate(bh)) {
4176c398eda0STheodore Ts'o 			EXT4_ERROR_INODE_BLOCK(inode, block,
4177c398eda0STheodore Ts'o 					       "unable to read itable block");
4178ac27a0ecSDave Kleikamp 			brelse(bh);
4179ac27a0ecSDave Kleikamp 			return -EIO;
4180ac27a0ecSDave Kleikamp 		}
4181ac27a0ecSDave Kleikamp 	}
4182ac27a0ecSDave Kleikamp has_buffer:
4183ac27a0ecSDave Kleikamp 	iloc->bh = bh;
4184ac27a0ecSDave Kleikamp 	return 0;
4185ac27a0ecSDave Kleikamp }
4186ac27a0ecSDave Kleikamp 
4187617ba13bSMingming Cao int ext4_get_inode_loc(struct inode *inode, struct ext4_iloc *iloc)
4188ac27a0ecSDave Kleikamp {
4189ac27a0ecSDave Kleikamp 	/* We have all inode data except xattrs in memory here. */
4190617ba13bSMingming Cao 	return __ext4_get_inode_loc(inode, iloc,
419119f5fb7aSTheodore Ts'o 		!ext4_test_inode_state(inode, EXT4_STATE_XATTR));
4192ac27a0ecSDave Kleikamp }
4193ac27a0ecSDave Kleikamp 
4194617ba13bSMingming Cao void ext4_set_inode_flags(struct inode *inode)
4195ac27a0ecSDave Kleikamp {
4196617ba13bSMingming Cao 	unsigned int flags = EXT4_I(inode)->i_flags;
419700a1a053STheodore Ts'o 	unsigned int new_fl = 0;
4198ac27a0ecSDave Kleikamp 
4199617ba13bSMingming Cao 	if (flags & EXT4_SYNC_FL)
420000a1a053STheodore Ts'o 		new_fl |= S_SYNC;
4201617ba13bSMingming Cao 	if (flags & EXT4_APPEND_FL)
420200a1a053STheodore Ts'o 		new_fl |= S_APPEND;
4203617ba13bSMingming Cao 	if (flags & EXT4_IMMUTABLE_FL)
420400a1a053STheodore Ts'o 		new_fl |= S_IMMUTABLE;
4205617ba13bSMingming Cao 	if (flags & EXT4_NOATIME_FL)
420600a1a053STheodore Ts'o 		new_fl |= S_NOATIME;
4207617ba13bSMingming Cao 	if (flags & EXT4_DIRSYNC_FL)
420800a1a053STheodore Ts'o 		new_fl |= S_DIRSYNC;
4209923ae0ffSRoss Zwisler 	if (test_opt(inode->i_sb, DAX))
4210923ae0ffSRoss Zwisler 		new_fl |= S_DAX;
42115f16f322STheodore Ts'o 	inode_set_flags(inode, new_fl,
4212923ae0ffSRoss Zwisler 			S_SYNC|S_APPEND|S_IMMUTABLE|S_NOATIME|S_DIRSYNC|S_DAX);
4213ac27a0ecSDave Kleikamp }
4214ac27a0ecSDave Kleikamp 
4215ff9ddf7eSJan Kara /* Propagate flags from i_flags to EXT4_I(inode)->i_flags */
4216ff9ddf7eSJan Kara void ext4_get_inode_flags(struct ext4_inode_info *ei)
4217ff9ddf7eSJan Kara {
421884a8dce2SDmitry Monakhov 	unsigned int vfs_fl;
421984a8dce2SDmitry Monakhov 	unsigned long old_fl, new_fl;
4220ff9ddf7eSJan Kara 
422184a8dce2SDmitry Monakhov 	do {
422284a8dce2SDmitry Monakhov 		vfs_fl = ei->vfs_inode.i_flags;
422384a8dce2SDmitry Monakhov 		old_fl = ei->i_flags;
422484a8dce2SDmitry Monakhov 		new_fl = old_fl & ~(EXT4_SYNC_FL|EXT4_APPEND_FL|
422584a8dce2SDmitry Monakhov 				EXT4_IMMUTABLE_FL|EXT4_NOATIME_FL|
422684a8dce2SDmitry Monakhov 				EXT4_DIRSYNC_FL);
422784a8dce2SDmitry Monakhov 		if (vfs_fl & S_SYNC)
422884a8dce2SDmitry Monakhov 			new_fl |= EXT4_SYNC_FL;
422984a8dce2SDmitry Monakhov 		if (vfs_fl & S_APPEND)
423084a8dce2SDmitry Monakhov 			new_fl |= EXT4_APPEND_FL;
423184a8dce2SDmitry Monakhov 		if (vfs_fl & S_IMMUTABLE)
423284a8dce2SDmitry Monakhov 			new_fl |= EXT4_IMMUTABLE_FL;
423384a8dce2SDmitry Monakhov 		if (vfs_fl & S_NOATIME)
423484a8dce2SDmitry Monakhov 			new_fl |= EXT4_NOATIME_FL;
423584a8dce2SDmitry Monakhov 		if (vfs_fl & S_DIRSYNC)
423684a8dce2SDmitry Monakhov 			new_fl |= EXT4_DIRSYNC_FL;
423784a8dce2SDmitry Monakhov 	} while (cmpxchg(&ei->i_flags, old_fl, new_fl) != old_fl);
4238ff9ddf7eSJan Kara }
4239de9a55b8STheodore Ts'o 
42400fc1b451SAneesh Kumar K.V static blkcnt_t ext4_inode_blocks(struct ext4_inode *raw_inode,
42410fc1b451SAneesh Kumar K.V 				  struct ext4_inode_info *ei)
42420fc1b451SAneesh Kumar K.V {
42430fc1b451SAneesh Kumar K.V 	blkcnt_t i_blocks ;
42448180a562SAneesh Kumar K.V 	struct inode *inode = &(ei->vfs_inode);
42458180a562SAneesh Kumar K.V 	struct super_block *sb = inode->i_sb;
42460fc1b451SAneesh Kumar K.V 
4247e2b911c5SDarrick J. Wong 	if (ext4_has_feature_huge_file(sb)) {
42480fc1b451SAneesh Kumar K.V 		/* we are using combined 48 bit field */
42490fc1b451SAneesh Kumar K.V 		i_blocks = ((u64)le16_to_cpu(raw_inode->i_blocks_high)) << 32 |
42500fc1b451SAneesh Kumar K.V 					le32_to_cpu(raw_inode->i_blocks_lo);
425107a03824STheodore Ts'o 		if (ext4_test_inode_flag(inode, EXT4_INODE_HUGE_FILE)) {
42528180a562SAneesh Kumar K.V 			/* i_blocks represent file system block size */
42538180a562SAneesh Kumar K.V 			return i_blocks  << (inode->i_blkbits - 9);
42548180a562SAneesh Kumar K.V 		} else {
42550fc1b451SAneesh Kumar K.V 			return i_blocks;
42568180a562SAneesh Kumar K.V 		}
42570fc1b451SAneesh Kumar K.V 	} else {
42580fc1b451SAneesh Kumar K.V 		return le32_to_cpu(raw_inode->i_blocks_lo);
42590fc1b451SAneesh Kumar K.V 	}
42600fc1b451SAneesh Kumar K.V }
4261ff9ddf7eSJan Kara 
4262152a7b0aSTao Ma static inline void ext4_iget_extra_inode(struct inode *inode,
4263152a7b0aSTao Ma 					 struct ext4_inode *raw_inode,
4264152a7b0aSTao Ma 					 struct ext4_inode_info *ei)
4265152a7b0aSTao Ma {
4266152a7b0aSTao Ma 	__le32 *magic = (void *)raw_inode +
4267152a7b0aSTao Ma 			EXT4_GOOD_OLD_INODE_SIZE + ei->i_extra_isize;
426867cf5b09STao Ma 	if (*magic == cpu_to_le32(EXT4_XATTR_MAGIC)) {
4269152a7b0aSTao Ma 		ext4_set_inode_state(inode, EXT4_STATE_XATTR);
427067cf5b09STao Ma 		ext4_find_inline_data_nolock(inode);
4271f19d5870STao Ma 	} else
4272f19d5870STao Ma 		EXT4_I(inode)->i_inline_off = 0;
4273152a7b0aSTao Ma }
4274152a7b0aSTao Ma 
4275040cb378SLi Xi int ext4_get_projid(struct inode *inode, kprojid_t *projid)
4276040cb378SLi Xi {
4277040cb378SLi Xi 	if (!EXT4_HAS_RO_COMPAT_FEATURE(inode->i_sb, EXT4_FEATURE_RO_COMPAT_PROJECT))
4278040cb378SLi Xi 		return -EOPNOTSUPP;
4279040cb378SLi Xi 	*projid = EXT4_I(inode)->i_projid;
4280040cb378SLi Xi 	return 0;
4281040cb378SLi Xi }
4282040cb378SLi Xi 
42831d1fe1eeSDavid Howells struct inode *ext4_iget(struct super_block *sb, unsigned long ino)
4284ac27a0ecSDave Kleikamp {
4285617ba13bSMingming Cao 	struct ext4_iloc iloc;
4286617ba13bSMingming Cao 	struct ext4_inode *raw_inode;
42871d1fe1eeSDavid Howells 	struct ext4_inode_info *ei;
42881d1fe1eeSDavid Howells 	struct inode *inode;
4289b436b9beSJan Kara 	journal_t *journal = EXT4_SB(sb)->s_journal;
42901d1fe1eeSDavid Howells 	long ret;
4291ac27a0ecSDave Kleikamp 	int block;
429208cefc7aSEric W. Biederman 	uid_t i_uid;
429308cefc7aSEric W. Biederman 	gid_t i_gid;
4294040cb378SLi Xi 	projid_t i_projid;
4295ac27a0ecSDave Kleikamp 
42961d1fe1eeSDavid Howells 	inode = iget_locked(sb, ino);
42971d1fe1eeSDavid Howells 	if (!inode)
42981d1fe1eeSDavid Howells 		return ERR_PTR(-ENOMEM);
42991d1fe1eeSDavid Howells 	if (!(inode->i_state & I_NEW))
43001d1fe1eeSDavid Howells 		return inode;
43011d1fe1eeSDavid Howells 
43021d1fe1eeSDavid Howells 	ei = EXT4_I(inode);
43037dc57615SPeter Huewe 	iloc.bh = NULL;
4304ac27a0ecSDave Kleikamp 
43051d1fe1eeSDavid Howells 	ret = __ext4_get_inode_loc(inode, &iloc, 0);
43061d1fe1eeSDavid Howells 	if (ret < 0)
4307ac27a0ecSDave Kleikamp 		goto bad_inode;
4308617ba13bSMingming Cao 	raw_inode = ext4_raw_inode(&iloc);
4309814525f4SDarrick J. Wong 
4310814525f4SDarrick J. Wong 	if (EXT4_INODE_SIZE(inode->i_sb) > EXT4_GOOD_OLD_INODE_SIZE) {
4311814525f4SDarrick J. Wong 		ei->i_extra_isize = le16_to_cpu(raw_inode->i_extra_isize);
4312814525f4SDarrick J. Wong 		if (EXT4_GOOD_OLD_INODE_SIZE + ei->i_extra_isize >
4313814525f4SDarrick J. Wong 		    EXT4_INODE_SIZE(inode->i_sb)) {
4314814525f4SDarrick J. Wong 			EXT4_ERROR_INODE(inode, "bad extra_isize (%u != %u)",
4315814525f4SDarrick J. Wong 				EXT4_GOOD_OLD_INODE_SIZE + ei->i_extra_isize,
4316814525f4SDarrick J. Wong 				EXT4_INODE_SIZE(inode->i_sb));
43176a797d27SDarrick J. Wong 			ret = -EFSCORRUPTED;
4318814525f4SDarrick J. Wong 			goto bad_inode;
4319814525f4SDarrick J. Wong 		}
4320814525f4SDarrick J. Wong 	} else
4321814525f4SDarrick J. Wong 		ei->i_extra_isize = 0;
4322814525f4SDarrick J. Wong 
4323814525f4SDarrick J. Wong 	/* Precompute checksum seed for inode metadata */
43249aa5d32bSDmitry Monakhov 	if (ext4_has_metadata_csum(sb)) {
4325814525f4SDarrick J. Wong 		struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb);
4326814525f4SDarrick J. Wong 		__u32 csum;
4327814525f4SDarrick J. Wong 		__le32 inum = cpu_to_le32(inode->i_ino);
4328814525f4SDarrick J. Wong 		__le32 gen = raw_inode->i_generation;
4329814525f4SDarrick J. Wong 		csum = ext4_chksum(sbi, sbi->s_csum_seed, (__u8 *)&inum,
4330814525f4SDarrick J. Wong 				   sizeof(inum));
4331814525f4SDarrick J. Wong 		ei->i_csum_seed = ext4_chksum(sbi, csum, (__u8 *)&gen,
4332814525f4SDarrick J. Wong 					      sizeof(gen));
4333814525f4SDarrick J. Wong 	}
4334814525f4SDarrick J. Wong 
4335814525f4SDarrick J. Wong 	if (!ext4_inode_csum_verify(inode, raw_inode, ei)) {
4336814525f4SDarrick J. Wong 		EXT4_ERROR_INODE(inode, "checksum invalid");
43376a797d27SDarrick J. Wong 		ret = -EFSBADCRC;
4338814525f4SDarrick J. Wong 		goto bad_inode;
4339814525f4SDarrick J. Wong 	}
4340814525f4SDarrick J. Wong 
4341ac27a0ecSDave Kleikamp 	inode->i_mode = le16_to_cpu(raw_inode->i_mode);
434208cefc7aSEric W. Biederman 	i_uid = (uid_t)le16_to_cpu(raw_inode->i_uid_low);
434308cefc7aSEric W. Biederman 	i_gid = (gid_t)le16_to_cpu(raw_inode->i_gid_low);
4344040cb378SLi Xi 	if (EXT4_HAS_RO_COMPAT_FEATURE(sb, EXT4_FEATURE_RO_COMPAT_PROJECT) &&
4345040cb378SLi Xi 	    EXT4_INODE_SIZE(sb) > EXT4_GOOD_OLD_INODE_SIZE &&
4346040cb378SLi Xi 	    EXT4_FITS_IN_INODE(raw_inode, ei, i_projid))
4347040cb378SLi Xi 		i_projid = (projid_t)le32_to_cpu(raw_inode->i_projid);
4348040cb378SLi Xi 	else
4349040cb378SLi Xi 		i_projid = EXT4_DEF_PROJID;
4350040cb378SLi Xi 
4351ac27a0ecSDave Kleikamp 	if (!(test_opt(inode->i_sb, NO_UID32))) {
435208cefc7aSEric W. Biederman 		i_uid |= le16_to_cpu(raw_inode->i_uid_high) << 16;
435308cefc7aSEric W. Biederman 		i_gid |= le16_to_cpu(raw_inode->i_gid_high) << 16;
4354ac27a0ecSDave Kleikamp 	}
435508cefc7aSEric W. Biederman 	i_uid_write(inode, i_uid);
435608cefc7aSEric W. Biederman 	i_gid_write(inode, i_gid);
4357040cb378SLi Xi 	ei->i_projid = make_kprojid(&init_user_ns, i_projid);
4358bfe86848SMiklos Szeredi 	set_nlink(inode, le16_to_cpu(raw_inode->i_links_count));
4359ac27a0ecSDave Kleikamp 
4360353eb83cSTheodore Ts'o 	ext4_clear_state_flags(ei);	/* Only relevant on 32-bit archs */
436167cf5b09STao Ma 	ei->i_inline_off = 0;
4362ac27a0ecSDave Kleikamp 	ei->i_dir_start_lookup = 0;
4363ac27a0ecSDave Kleikamp 	ei->i_dtime = le32_to_cpu(raw_inode->i_dtime);
4364ac27a0ecSDave Kleikamp 	/* We now have enough fields to check if the inode was active or not.
4365ac27a0ecSDave Kleikamp 	 * This is needed because nfsd might try to access dead inodes
4366ac27a0ecSDave Kleikamp 	 * the test is that same one that e2fsck uses
4367ac27a0ecSDave Kleikamp 	 * NeilBrown 1999oct15
4368ac27a0ecSDave Kleikamp 	 */
4369ac27a0ecSDave Kleikamp 	if (inode->i_nlink == 0) {
4370393d1d1dSDr. Tilmann Bubeck 		if ((inode->i_mode == 0 ||
4371393d1d1dSDr. Tilmann Bubeck 		     !(EXT4_SB(inode->i_sb)->s_mount_state & EXT4_ORPHAN_FS)) &&
4372393d1d1dSDr. Tilmann Bubeck 		    ino != EXT4_BOOT_LOADER_INO) {
4373ac27a0ecSDave Kleikamp 			/* this inode is deleted */
43741d1fe1eeSDavid Howells 			ret = -ESTALE;
4375ac27a0ecSDave Kleikamp 			goto bad_inode;
4376ac27a0ecSDave Kleikamp 		}
4377ac27a0ecSDave Kleikamp 		/* The only unlinked inodes we let through here have
4378ac27a0ecSDave Kleikamp 		 * valid i_mode and are being read by the orphan
4379ac27a0ecSDave Kleikamp 		 * recovery code: that's fine, we're about to complete
4380393d1d1dSDr. Tilmann Bubeck 		 * the process of deleting those.
4381393d1d1dSDr. Tilmann Bubeck 		 * OR it is the EXT4_BOOT_LOADER_INO which is
4382393d1d1dSDr. Tilmann Bubeck 		 * not initialized on a new filesystem. */
4383ac27a0ecSDave Kleikamp 	}
4384ac27a0ecSDave Kleikamp 	ei->i_flags = le32_to_cpu(raw_inode->i_flags);
43850fc1b451SAneesh Kumar K.V 	inode->i_blocks = ext4_inode_blocks(raw_inode, ei);
43867973c0c1SAneesh Kumar K.V 	ei->i_file_acl = le32_to_cpu(raw_inode->i_file_acl_lo);
4387e2b911c5SDarrick J. Wong 	if (ext4_has_feature_64bit(sb))
4388a1ddeb7eSBadari Pulavarty 		ei->i_file_acl |=
4389a1ddeb7eSBadari Pulavarty 			((__u64)le16_to_cpu(raw_inode->i_file_acl_high)) << 32;
4390a48380f7SAneesh Kumar K.V 	inode->i_size = ext4_isize(raw_inode);
4391ac27a0ecSDave Kleikamp 	ei->i_disksize = inode->i_size;
4392a9e7f447SDmitry Monakhov #ifdef CONFIG_QUOTA
4393a9e7f447SDmitry Monakhov 	ei->i_reserved_quota = 0;
4394a9e7f447SDmitry Monakhov #endif
4395ac27a0ecSDave Kleikamp 	inode->i_generation = le32_to_cpu(raw_inode->i_generation);
4396ac27a0ecSDave Kleikamp 	ei->i_block_group = iloc.block_group;
4397a4912123STheodore Ts'o 	ei->i_last_alloc_group = ~0;
4398ac27a0ecSDave Kleikamp 	/*
4399ac27a0ecSDave Kleikamp 	 * NOTE! The in-memory inode i_data array is in little-endian order
4400ac27a0ecSDave Kleikamp 	 * even on big-endian machines: we do NOT byteswap the block numbers!
4401ac27a0ecSDave Kleikamp 	 */
4402617ba13bSMingming Cao 	for (block = 0; block < EXT4_N_BLOCKS; block++)
4403ac27a0ecSDave Kleikamp 		ei->i_data[block] = raw_inode->i_block[block];
4404ac27a0ecSDave Kleikamp 	INIT_LIST_HEAD(&ei->i_orphan);
4405ac27a0ecSDave Kleikamp 
4406b436b9beSJan Kara 	/*
4407b436b9beSJan Kara 	 * Set transaction id's of transactions that have to be committed
4408b436b9beSJan Kara 	 * to finish f[data]sync. We set them to currently running transaction
4409b436b9beSJan Kara 	 * as we cannot be sure that the inode or some of its metadata isn't
4410b436b9beSJan Kara 	 * part of the transaction - the inode could have been reclaimed and
4411b436b9beSJan Kara 	 * now it is reread from disk.
4412b436b9beSJan Kara 	 */
4413b436b9beSJan Kara 	if (journal) {
4414b436b9beSJan Kara 		transaction_t *transaction;
4415b436b9beSJan Kara 		tid_t tid;
4416b436b9beSJan Kara 
4417a931da6aSTheodore Ts'o 		read_lock(&journal->j_state_lock);
4418b436b9beSJan Kara 		if (journal->j_running_transaction)
4419b436b9beSJan Kara 			transaction = journal->j_running_transaction;
4420b436b9beSJan Kara 		else
4421b436b9beSJan Kara 			transaction = journal->j_committing_transaction;
4422b436b9beSJan Kara 		if (transaction)
4423b436b9beSJan Kara 			tid = transaction->t_tid;
4424b436b9beSJan Kara 		else
4425b436b9beSJan Kara 			tid = journal->j_commit_sequence;
4426a931da6aSTheodore Ts'o 		read_unlock(&journal->j_state_lock);
4427b436b9beSJan Kara 		ei->i_sync_tid = tid;
4428b436b9beSJan Kara 		ei->i_datasync_tid = tid;
4429b436b9beSJan Kara 	}
4430b436b9beSJan Kara 
44310040d987SEric Sandeen 	if (EXT4_INODE_SIZE(inode->i_sb) > EXT4_GOOD_OLD_INODE_SIZE) {
4432ac27a0ecSDave Kleikamp 		if (ei->i_extra_isize == 0) {
4433ac27a0ecSDave Kleikamp 			/* The extra space is currently unused. Use it. */
4434617ba13bSMingming Cao 			ei->i_extra_isize = sizeof(struct ext4_inode) -
4435617ba13bSMingming Cao 					    EXT4_GOOD_OLD_INODE_SIZE;
4436ac27a0ecSDave Kleikamp 		} else {
4437152a7b0aSTao Ma 			ext4_iget_extra_inode(inode, raw_inode, ei);
4438ac27a0ecSDave Kleikamp 		}
4439814525f4SDarrick J. Wong 	}
4440ac27a0ecSDave Kleikamp 
4441ef7f3835SKalpak Shah 	EXT4_INODE_GET_XTIME(i_ctime, inode, raw_inode);
4442ef7f3835SKalpak Shah 	EXT4_INODE_GET_XTIME(i_mtime, inode, raw_inode);
4443ef7f3835SKalpak Shah 	EXT4_INODE_GET_XTIME(i_atime, inode, raw_inode);
4444ef7f3835SKalpak Shah 	EXT4_EINODE_GET_XTIME(i_crtime, ei, raw_inode);
4445ef7f3835SKalpak Shah 
4446ed3654ebSTheodore Ts'o 	if (likely(!test_opt2(inode->i_sb, HURD_COMPAT))) {
444725ec56b5SJean Noel Cordenner 		inode->i_version = le32_to_cpu(raw_inode->i_disk_version);
444825ec56b5SJean Noel Cordenner 		if (EXT4_INODE_SIZE(inode->i_sb) > EXT4_GOOD_OLD_INODE_SIZE) {
444925ec56b5SJean Noel Cordenner 			if (EXT4_FITS_IN_INODE(raw_inode, ei, i_version_hi))
445025ec56b5SJean Noel Cordenner 				inode->i_version |=
445125ec56b5SJean Noel Cordenner 		    (__u64)(le32_to_cpu(raw_inode->i_version_hi)) << 32;
445225ec56b5SJean Noel Cordenner 		}
4453c4f65706STheodore Ts'o 	}
445425ec56b5SJean Noel Cordenner 
4455c4b5a614STheodore Ts'o 	ret = 0;
4456485c26ecSTheodore Ts'o 	if (ei->i_file_acl &&
44571032988cSTheodore Ts'o 	    !ext4_data_block_valid(EXT4_SB(sb), ei->i_file_acl, 1)) {
445824676da4STheodore Ts'o 		EXT4_ERROR_INODE(inode, "bad extended attribute block %llu",
445924676da4STheodore Ts'o 				 ei->i_file_acl);
44606a797d27SDarrick J. Wong 		ret = -EFSCORRUPTED;
4461485c26ecSTheodore Ts'o 		goto bad_inode;
4462f19d5870STao Ma 	} else if (!ext4_has_inline_data(inode)) {
4463f19d5870STao Ma 		if (ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS)) {
4464f19d5870STao Ma 			if ((S_ISREG(inode->i_mode) || S_ISDIR(inode->i_mode) ||
4465c4b5a614STheodore Ts'o 			    (S_ISLNK(inode->i_mode) &&
4466f19d5870STao Ma 			     !ext4_inode_is_fast_symlink(inode))))
44677a262f7cSAneesh Kumar K.V 				/* Validate extent which is part of inode */
44687a262f7cSAneesh Kumar K.V 				ret = ext4_ext_check_inode(inode);
4469fe2c8191SThiemo Nagel 		} else if (S_ISREG(inode->i_mode) || S_ISDIR(inode->i_mode) ||
4470fe2c8191SThiemo Nagel 			   (S_ISLNK(inode->i_mode) &&
4471fe2c8191SThiemo Nagel 			    !ext4_inode_is_fast_symlink(inode))) {
4472fe2c8191SThiemo Nagel 			/* Validate block references which are part of inode */
44731f7d1e77STheodore Ts'o 			ret = ext4_ind_check_inode(inode);
4474fe2c8191SThiemo Nagel 		}
4475f19d5870STao Ma 	}
4476567f3e9aSTheodore Ts'o 	if (ret)
44777a262f7cSAneesh Kumar K.V 		goto bad_inode;
44787a262f7cSAneesh Kumar K.V 
4479ac27a0ecSDave Kleikamp 	if (S_ISREG(inode->i_mode)) {
4480617ba13bSMingming Cao 		inode->i_op = &ext4_file_inode_operations;
4481617ba13bSMingming Cao 		inode->i_fop = &ext4_file_operations;
4482617ba13bSMingming Cao 		ext4_set_aops(inode);
4483ac27a0ecSDave Kleikamp 	} else if (S_ISDIR(inode->i_mode)) {
4484617ba13bSMingming Cao 		inode->i_op = &ext4_dir_inode_operations;
4485617ba13bSMingming Cao 		inode->i_fop = &ext4_dir_operations;
4486ac27a0ecSDave Kleikamp 	} else if (S_ISLNK(inode->i_mode)) {
4487a7a67e8aSAl Viro 		if (ext4_encrypted_inode(inode)) {
4488a7a67e8aSAl Viro 			inode->i_op = &ext4_encrypted_symlink_inode_operations;
4489a7a67e8aSAl Viro 			ext4_set_aops(inode);
4490a7a67e8aSAl Viro 		} else if (ext4_inode_is_fast_symlink(inode)) {
449175e7566bSAl Viro 			inode->i_link = (char *)ei->i_data;
4492617ba13bSMingming Cao 			inode->i_op = &ext4_fast_symlink_inode_operations;
4493e83c1397SDuane Griffin 			nd_terminate_link(ei->i_data, inode->i_size,
4494e83c1397SDuane Griffin 				sizeof(ei->i_data) - 1);
4495e83c1397SDuane Griffin 		} else {
4496617ba13bSMingming Cao 			inode->i_op = &ext4_symlink_inode_operations;
4497617ba13bSMingming Cao 			ext4_set_aops(inode);
4498ac27a0ecSDave Kleikamp 		}
449921fc61c7SAl Viro 		inode_nohighmem(inode);
4500563bdd61STheodore Ts'o 	} else if (S_ISCHR(inode->i_mode) || S_ISBLK(inode->i_mode) ||
4501563bdd61STheodore Ts'o 	      S_ISFIFO(inode->i_mode) || S_ISSOCK(inode->i_mode)) {
4502617ba13bSMingming Cao 		inode->i_op = &ext4_special_inode_operations;
4503ac27a0ecSDave Kleikamp 		if (raw_inode->i_block[0])
4504ac27a0ecSDave Kleikamp 			init_special_inode(inode, inode->i_mode,
4505ac27a0ecSDave Kleikamp 			   old_decode_dev(le32_to_cpu(raw_inode->i_block[0])));
4506ac27a0ecSDave Kleikamp 		else
4507ac27a0ecSDave Kleikamp 			init_special_inode(inode, inode->i_mode,
4508ac27a0ecSDave Kleikamp 			   new_decode_dev(le32_to_cpu(raw_inode->i_block[1])));
4509393d1d1dSDr. Tilmann Bubeck 	} else if (ino == EXT4_BOOT_LOADER_INO) {
4510393d1d1dSDr. Tilmann Bubeck 		make_bad_inode(inode);
4511563bdd61STheodore Ts'o 	} else {
45126a797d27SDarrick J. Wong 		ret = -EFSCORRUPTED;
451324676da4STheodore Ts'o 		EXT4_ERROR_INODE(inode, "bogus i_mode (%o)", inode->i_mode);
4514563bdd61STheodore Ts'o 		goto bad_inode;
4515ac27a0ecSDave Kleikamp 	}
4516ac27a0ecSDave Kleikamp 	brelse(iloc.bh);
4517617ba13bSMingming Cao 	ext4_set_inode_flags(inode);
45181d1fe1eeSDavid Howells 	unlock_new_inode(inode);
45191d1fe1eeSDavid Howells 	return inode;
4520ac27a0ecSDave Kleikamp 
4521ac27a0ecSDave Kleikamp bad_inode:
4522567f3e9aSTheodore Ts'o 	brelse(iloc.bh);
45231d1fe1eeSDavid Howells 	iget_failed(inode);
45241d1fe1eeSDavid Howells 	return ERR_PTR(ret);
4525ac27a0ecSDave Kleikamp }
4526ac27a0ecSDave Kleikamp 
4527f4bb2981STheodore Ts'o struct inode *ext4_iget_normal(struct super_block *sb, unsigned long ino)
4528f4bb2981STheodore Ts'o {
4529f4bb2981STheodore Ts'o 	if (ino < EXT4_FIRST_INO(sb) && ino != EXT4_ROOT_INO)
45306a797d27SDarrick J. Wong 		return ERR_PTR(-EFSCORRUPTED);
4531f4bb2981STheodore Ts'o 	return ext4_iget(sb, ino);
4532f4bb2981STheodore Ts'o }
4533f4bb2981STheodore Ts'o 
45340fc1b451SAneesh Kumar K.V static int ext4_inode_blocks_set(handle_t *handle,
45350fc1b451SAneesh Kumar K.V 				struct ext4_inode *raw_inode,
45360fc1b451SAneesh Kumar K.V 				struct ext4_inode_info *ei)
45370fc1b451SAneesh Kumar K.V {
45380fc1b451SAneesh Kumar K.V 	struct inode *inode = &(ei->vfs_inode);
45390fc1b451SAneesh Kumar K.V 	u64 i_blocks = inode->i_blocks;
45400fc1b451SAneesh Kumar K.V 	struct super_block *sb = inode->i_sb;
45410fc1b451SAneesh Kumar K.V 
45420fc1b451SAneesh Kumar K.V 	if (i_blocks <= ~0U) {
45430fc1b451SAneesh Kumar K.V 		/*
45444907cb7bSAnatol Pomozov 		 * i_blocks can be represented in a 32 bit variable
45450fc1b451SAneesh Kumar K.V 		 * as multiple of 512 bytes
45460fc1b451SAneesh Kumar K.V 		 */
45478180a562SAneesh Kumar K.V 		raw_inode->i_blocks_lo   = cpu_to_le32(i_blocks);
45480fc1b451SAneesh Kumar K.V 		raw_inode->i_blocks_high = 0;
454984a8dce2SDmitry Monakhov 		ext4_clear_inode_flag(inode, EXT4_INODE_HUGE_FILE);
4550f287a1a5STheodore Ts'o 		return 0;
4551f287a1a5STheodore Ts'o 	}
4552e2b911c5SDarrick J. Wong 	if (!ext4_has_feature_huge_file(sb))
4553f287a1a5STheodore Ts'o 		return -EFBIG;
4554f287a1a5STheodore Ts'o 
4555f287a1a5STheodore Ts'o 	if (i_blocks <= 0xffffffffffffULL) {
45560fc1b451SAneesh Kumar K.V 		/*
45570fc1b451SAneesh Kumar K.V 		 * i_blocks can be represented in a 48 bit variable
45580fc1b451SAneesh Kumar K.V 		 * as multiple of 512 bytes
45590fc1b451SAneesh Kumar K.V 		 */
45608180a562SAneesh Kumar K.V 		raw_inode->i_blocks_lo   = cpu_to_le32(i_blocks);
45610fc1b451SAneesh Kumar K.V 		raw_inode->i_blocks_high = cpu_to_le16(i_blocks >> 32);
456284a8dce2SDmitry Monakhov 		ext4_clear_inode_flag(inode, EXT4_INODE_HUGE_FILE);
45630fc1b451SAneesh Kumar K.V 	} else {
456484a8dce2SDmitry Monakhov 		ext4_set_inode_flag(inode, EXT4_INODE_HUGE_FILE);
45658180a562SAneesh Kumar K.V 		/* i_block is stored in file system block size */
45668180a562SAneesh Kumar K.V 		i_blocks = i_blocks >> (inode->i_blkbits - 9);
45678180a562SAneesh Kumar K.V 		raw_inode->i_blocks_lo   = cpu_to_le32(i_blocks);
45688180a562SAneesh Kumar K.V 		raw_inode->i_blocks_high = cpu_to_le16(i_blocks >> 32);
45690fc1b451SAneesh Kumar K.V 	}
4570f287a1a5STheodore Ts'o 	return 0;
45710fc1b451SAneesh Kumar K.V }
45720fc1b451SAneesh Kumar K.V 
4573a26f4992STheodore Ts'o struct other_inode {
4574a26f4992STheodore Ts'o 	unsigned long		orig_ino;
4575a26f4992STheodore Ts'o 	struct ext4_inode	*raw_inode;
4576a26f4992STheodore Ts'o };
4577a26f4992STheodore Ts'o 
4578a26f4992STheodore Ts'o static int other_inode_match(struct inode * inode, unsigned long ino,
4579a26f4992STheodore Ts'o 			     void *data)
4580a26f4992STheodore Ts'o {
4581a26f4992STheodore Ts'o 	struct other_inode *oi = (struct other_inode *) data;
4582a26f4992STheodore Ts'o 
4583a26f4992STheodore Ts'o 	if ((inode->i_ino != ino) ||
4584a26f4992STheodore Ts'o 	    (inode->i_state & (I_FREEING | I_WILL_FREE | I_NEW |
4585a26f4992STheodore Ts'o 			       I_DIRTY_SYNC | I_DIRTY_DATASYNC)) ||
4586a26f4992STheodore Ts'o 	    ((inode->i_state & I_DIRTY_TIME) == 0))
4587a26f4992STheodore Ts'o 		return 0;
4588a26f4992STheodore Ts'o 	spin_lock(&inode->i_lock);
4589a26f4992STheodore Ts'o 	if (((inode->i_state & (I_FREEING | I_WILL_FREE | I_NEW |
4590a26f4992STheodore Ts'o 				I_DIRTY_SYNC | I_DIRTY_DATASYNC)) == 0) &&
4591a26f4992STheodore Ts'o 	    (inode->i_state & I_DIRTY_TIME)) {
4592a26f4992STheodore Ts'o 		struct ext4_inode_info	*ei = EXT4_I(inode);
4593a26f4992STheodore Ts'o 
4594a26f4992STheodore Ts'o 		inode->i_state &= ~(I_DIRTY_TIME | I_DIRTY_TIME_EXPIRED);
4595a26f4992STheodore Ts'o 		spin_unlock(&inode->i_lock);
4596a26f4992STheodore Ts'o 
4597a26f4992STheodore Ts'o 		spin_lock(&ei->i_raw_lock);
4598a26f4992STheodore Ts'o 		EXT4_INODE_SET_XTIME(i_ctime, inode, oi->raw_inode);
4599a26f4992STheodore Ts'o 		EXT4_INODE_SET_XTIME(i_mtime, inode, oi->raw_inode);
4600a26f4992STheodore Ts'o 		EXT4_INODE_SET_XTIME(i_atime, inode, oi->raw_inode);
4601a26f4992STheodore Ts'o 		ext4_inode_csum_set(inode, oi->raw_inode, ei);
4602a26f4992STheodore Ts'o 		spin_unlock(&ei->i_raw_lock);
4603a26f4992STheodore Ts'o 		trace_ext4_other_inode_update_time(inode, oi->orig_ino);
4604a26f4992STheodore Ts'o 		return -1;
4605a26f4992STheodore Ts'o 	}
4606a26f4992STheodore Ts'o 	spin_unlock(&inode->i_lock);
4607a26f4992STheodore Ts'o 	return -1;
4608a26f4992STheodore Ts'o }
4609a26f4992STheodore Ts'o 
4610a26f4992STheodore Ts'o /*
4611a26f4992STheodore Ts'o  * Opportunistically update the other time fields for other inodes in
4612a26f4992STheodore Ts'o  * the same inode table block.
4613a26f4992STheodore Ts'o  */
4614a26f4992STheodore Ts'o static void ext4_update_other_inodes_time(struct super_block *sb,
4615a26f4992STheodore Ts'o 					  unsigned long orig_ino, char *buf)
4616a26f4992STheodore Ts'o {
4617a26f4992STheodore Ts'o 	struct other_inode oi;
4618a26f4992STheodore Ts'o 	unsigned long ino;
4619a26f4992STheodore Ts'o 	int i, inodes_per_block = EXT4_SB(sb)->s_inodes_per_block;
4620a26f4992STheodore Ts'o 	int inode_size = EXT4_INODE_SIZE(sb);
4621a26f4992STheodore Ts'o 
4622a26f4992STheodore Ts'o 	oi.orig_ino = orig_ino;
46230f0ff9a9STheodore Ts'o 	/*
46240f0ff9a9STheodore Ts'o 	 * Calculate the first inode in the inode table block.  Inode
46250f0ff9a9STheodore Ts'o 	 * numbers are one-based.  That is, the first inode in a block
46260f0ff9a9STheodore Ts'o 	 * (assuming 4k blocks and 256 byte inodes) is (n*16 + 1).
46270f0ff9a9STheodore Ts'o 	 */
46280f0ff9a9STheodore Ts'o 	ino = ((orig_ino - 1) & ~(inodes_per_block - 1)) + 1;
4629a26f4992STheodore Ts'o 	for (i = 0; i < inodes_per_block; i++, ino++, buf += inode_size) {
4630a26f4992STheodore Ts'o 		if (ino == orig_ino)
4631a26f4992STheodore Ts'o 			continue;
4632a26f4992STheodore Ts'o 		oi.raw_inode = (struct ext4_inode *) buf;
4633a26f4992STheodore Ts'o 		(void) find_inode_nowait(sb, ino, other_inode_match, &oi);
4634a26f4992STheodore Ts'o 	}
4635a26f4992STheodore Ts'o }
4636a26f4992STheodore Ts'o 
4637ac27a0ecSDave Kleikamp /*
4638ac27a0ecSDave Kleikamp  * Post the struct inode info into an on-disk inode location in the
4639ac27a0ecSDave Kleikamp  * buffer-cache.  This gobbles the caller's reference to the
4640ac27a0ecSDave Kleikamp  * buffer_head in the inode location struct.
4641ac27a0ecSDave Kleikamp  *
4642ac27a0ecSDave Kleikamp  * The caller must have write access to iloc->bh.
4643ac27a0ecSDave Kleikamp  */
4644617ba13bSMingming Cao static int ext4_do_update_inode(handle_t *handle,
4645ac27a0ecSDave Kleikamp 				struct inode *inode,
4646830156c7SFrank Mayhar 				struct ext4_iloc *iloc)
4647ac27a0ecSDave Kleikamp {
4648617ba13bSMingming Cao 	struct ext4_inode *raw_inode = ext4_raw_inode(iloc);
4649617ba13bSMingming Cao 	struct ext4_inode_info *ei = EXT4_I(inode);
4650ac27a0ecSDave Kleikamp 	struct buffer_head *bh = iloc->bh;
4651202ee5dfSTheodore Ts'o 	struct super_block *sb = inode->i_sb;
4652ac27a0ecSDave Kleikamp 	int err = 0, rc, block;
4653202ee5dfSTheodore Ts'o 	int need_datasync = 0, set_large_file = 0;
465408cefc7aSEric W. Biederman 	uid_t i_uid;
465508cefc7aSEric W. Biederman 	gid_t i_gid;
4656040cb378SLi Xi 	projid_t i_projid;
4657ac27a0ecSDave Kleikamp 
4658202ee5dfSTheodore Ts'o 	spin_lock(&ei->i_raw_lock);
4659202ee5dfSTheodore Ts'o 
4660202ee5dfSTheodore Ts'o 	/* For fields not tracked in the in-memory inode,
4661ac27a0ecSDave Kleikamp 	 * initialise them to zero for new inodes. */
466219f5fb7aSTheodore Ts'o 	if (ext4_test_inode_state(inode, EXT4_STATE_NEW))
4663617ba13bSMingming Cao 		memset(raw_inode, 0, EXT4_SB(inode->i_sb)->s_inode_size);
4664ac27a0ecSDave Kleikamp 
4665ff9ddf7eSJan Kara 	ext4_get_inode_flags(ei);
4666ac27a0ecSDave Kleikamp 	raw_inode->i_mode = cpu_to_le16(inode->i_mode);
466708cefc7aSEric W. Biederman 	i_uid = i_uid_read(inode);
466808cefc7aSEric W. Biederman 	i_gid = i_gid_read(inode);
4669040cb378SLi Xi 	i_projid = from_kprojid(&init_user_ns, ei->i_projid);
4670ac27a0ecSDave Kleikamp 	if (!(test_opt(inode->i_sb, NO_UID32))) {
467108cefc7aSEric W. Biederman 		raw_inode->i_uid_low = cpu_to_le16(low_16_bits(i_uid));
467208cefc7aSEric W. Biederman 		raw_inode->i_gid_low = cpu_to_le16(low_16_bits(i_gid));
4673ac27a0ecSDave Kleikamp /*
4674ac27a0ecSDave Kleikamp  * Fix up interoperability with old kernels. Otherwise, old inodes get
4675ac27a0ecSDave Kleikamp  * re-used with the upper 16 bits of the uid/gid intact
4676ac27a0ecSDave Kleikamp  */
4677ac27a0ecSDave Kleikamp 		if (!ei->i_dtime) {
4678ac27a0ecSDave Kleikamp 			raw_inode->i_uid_high =
467908cefc7aSEric W. Biederman 				cpu_to_le16(high_16_bits(i_uid));
4680ac27a0ecSDave Kleikamp 			raw_inode->i_gid_high =
468108cefc7aSEric W. Biederman 				cpu_to_le16(high_16_bits(i_gid));
4682ac27a0ecSDave Kleikamp 		} else {
4683ac27a0ecSDave Kleikamp 			raw_inode->i_uid_high = 0;
4684ac27a0ecSDave Kleikamp 			raw_inode->i_gid_high = 0;
4685ac27a0ecSDave Kleikamp 		}
4686ac27a0ecSDave Kleikamp 	} else {
468708cefc7aSEric W. Biederman 		raw_inode->i_uid_low = cpu_to_le16(fs_high2lowuid(i_uid));
468808cefc7aSEric W. Biederman 		raw_inode->i_gid_low = cpu_to_le16(fs_high2lowgid(i_gid));
4689ac27a0ecSDave Kleikamp 		raw_inode->i_uid_high = 0;
4690ac27a0ecSDave Kleikamp 		raw_inode->i_gid_high = 0;
4691ac27a0ecSDave Kleikamp 	}
4692ac27a0ecSDave Kleikamp 	raw_inode->i_links_count = cpu_to_le16(inode->i_nlink);
4693ef7f3835SKalpak Shah 
4694ef7f3835SKalpak Shah 	EXT4_INODE_SET_XTIME(i_ctime, inode, raw_inode);
4695ef7f3835SKalpak Shah 	EXT4_INODE_SET_XTIME(i_mtime, inode, raw_inode);
4696ef7f3835SKalpak Shah 	EXT4_INODE_SET_XTIME(i_atime, inode, raw_inode);
4697ef7f3835SKalpak Shah 	EXT4_EINODE_SET_XTIME(i_crtime, ei, raw_inode);
4698ef7f3835SKalpak Shah 
4699bce92d56SLi Xi 	err = ext4_inode_blocks_set(handle, raw_inode, ei);
4700bce92d56SLi Xi 	if (err) {
4701202ee5dfSTheodore Ts'o 		spin_unlock(&ei->i_raw_lock);
47020fc1b451SAneesh Kumar K.V 		goto out_brelse;
4703202ee5dfSTheodore Ts'o 	}
4704ac27a0ecSDave Kleikamp 	raw_inode->i_dtime = cpu_to_le32(ei->i_dtime);
4705353eb83cSTheodore Ts'o 	raw_inode->i_flags = cpu_to_le32(ei->i_flags & 0xFFFFFFFF);
4706ed3654ebSTheodore Ts'o 	if (likely(!test_opt2(inode->i_sb, HURD_COMPAT)))
4707a1ddeb7eSBadari Pulavarty 		raw_inode->i_file_acl_high =
4708a1ddeb7eSBadari Pulavarty 			cpu_to_le16(ei->i_file_acl >> 32);
47097973c0c1SAneesh Kumar K.V 	raw_inode->i_file_acl_lo = cpu_to_le32(ei->i_file_acl);
4710b71fc079SJan Kara 	if (ei->i_disksize != ext4_isize(raw_inode)) {
4711a48380f7SAneesh Kumar K.V 		ext4_isize_set(raw_inode, ei->i_disksize);
4712b71fc079SJan Kara 		need_datasync = 1;
4713b71fc079SJan Kara 	}
4714ac27a0ecSDave Kleikamp 	if (ei->i_disksize > 0x7fffffffULL) {
4715e2b911c5SDarrick J. Wong 		if (!ext4_has_feature_large_file(sb) ||
4716617ba13bSMingming Cao 				EXT4_SB(sb)->s_es->s_rev_level ==
4717202ee5dfSTheodore Ts'o 		    cpu_to_le32(EXT4_GOOD_OLD_REV))
4718202ee5dfSTheodore Ts'o 			set_large_file = 1;
4719ac27a0ecSDave Kleikamp 	}
4720ac27a0ecSDave Kleikamp 	raw_inode->i_generation = cpu_to_le32(inode->i_generation);
4721ac27a0ecSDave Kleikamp 	if (S_ISCHR(inode->i_mode) || S_ISBLK(inode->i_mode)) {
4722ac27a0ecSDave Kleikamp 		if (old_valid_dev(inode->i_rdev)) {
4723ac27a0ecSDave Kleikamp 			raw_inode->i_block[0] =
4724ac27a0ecSDave Kleikamp 				cpu_to_le32(old_encode_dev(inode->i_rdev));
4725ac27a0ecSDave Kleikamp 			raw_inode->i_block[1] = 0;
4726ac27a0ecSDave Kleikamp 		} else {
4727ac27a0ecSDave Kleikamp 			raw_inode->i_block[0] = 0;
4728ac27a0ecSDave Kleikamp 			raw_inode->i_block[1] =
4729ac27a0ecSDave Kleikamp 				cpu_to_le32(new_encode_dev(inode->i_rdev));
4730ac27a0ecSDave Kleikamp 			raw_inode->i_block[2] = 0;
4731ac27a0ecSDave Kleikamp 		}
4732f19d5870STao Ma 	} else if (!ext4_has_inline_data(inode)) {
4733de9a55b8STheodore Ts'o 		for (block = 0; block < EXT4_N_BLOCKS; block++)
4734ac27a0ecSDave Kleikamp 			raw_inode->i_block[block] = ei->i_data[block];
4735f19d5870STao Ma 	}
4736ac27a0ecSDave Kleikamp 
4737ed3654ebSTheodore Ts'o 	if (likely(!test_opt2(inode->i_sb, HURD_COMPAT))) {
473825ec56b5SJean Noel Cordenner 		raw_inode->i_disk_version = cpu_to_le32(inode->i_version);
473925ec56b5SJean Noel Cordenner 		if (ei->i_extra_isize) {
474025ec56b5SJean Noel Cordenner 			if (EXT4_FITS_IN_INODE(raw_inode, ei, i_version_hi))
474125ec56b5SJean Noel Cordenner 				raw_inode->i_version_hi =
474225ec56b5SJean Noel Cordenner 					cpu_to_le32(inode->i_version >> 32);
4743c4f65706STheodore Ts'o 			raw_inode->i_extra_isize =
4744c4f65706STheodore Ts'o 				cpu_to_le16(ei->i_extra_isize);
4745c4f65706STheodore Ts'o 		}
474625ec56b5SJean Noel Cordenner 	}
4747040cb378SLi Xi 
4748040cb378SLi Xi 	BUG_ON(!EXT4_HAS_RO_COMPAT_FEATURE(inode->i_sb,
4749040cb378SLi Xi 			EXT4_FEATURE_RO_COMPAT_PROJECT) &&
4750040cb378SLi Xi 	       i_projid != EXT4_DEF_PROJID);
4751040cb378SLi Xi 
4752040cb378SLi Xi 	if (EXT4_INODE_SIZE(inode->i_sb) > EXT4_GOOD_OLD_INODE_SIZE &&
4753040cb378SLi Xi 	    EXT4_FITS_IN_INODE(raw_inode, ei, i_projid))
4754040cb378SLi Xi 		raw_inode->i_projid = cpu_to_le32(i_projid);
4755040cb378SLi Xi 
4756814525f4SDarrick J. Wong 	ext4_inode_csum_set(inode, raw_inode, ei);
4757202ee5dfSTheodore Ts'o 	spin_unlock(&ei->i_raw_lock);
4758a26f4992STheodore Ts'o 	if (inode->i_sb->s_flags & MS_LAZYTIME)
4759a26f4992STheodore Ts'o 		ext4_update_other_inodes_time(inode->i_sb, inode->i_ino,
4760a26f4992STheodore Ts'o 					      bh->b_data);
4761202ee5dfSTheodore Ts'o 
47620390131bSFrank Mayhar 	BUFFER_TRACE(bh, "call ext4_handle_dirty_metadata");
476373b50c1cSCurt Wohlgemuth 	rc = ext4_handle_dirty_metadata(handle, NULL, bh);
4764ac27a0ecSDave Kleikamp 	if (!err)
4765ac27a0ecSDave Kleikamp 		err = rc;
476619f5fb7aSTheodore Ts'o 	ext4_clear_inode_state(inode, EXT4_STATE_NEW);
4767202ee5dfSTheodore Ts'o 	if (set_large_file) {
47685d601255Sliang xie 		BUFFER_TRACE(EXT4_SB(sb)->s_sbh, "get write access");
4769202ee5dfSTheodore Ts'o 		err = ext4_journal_get_write_access(handle, EXT4_SB(sb)->s_sbh);
4770202ee5dfSTheodore Ts'o 		if (err)
4771202ee5dfSTheodore Ts'o 			goto out_brelse;
4772202ee5dfSTheodore Ts'o 		ext4_update_dynamic_rev(sb);
4773e2b911c5SDarrick J. Wong 		ext4_set_feature_large_file(sb);
4774202ee5dfSTheodore Ts'o 		ext4_handle_sync(handle);
4775202ee5dfSTheodore Ts'o 		err = ext4_handle_dirty_super(handle, sb);
4776202ee5dfSTheodore Ts'o 	}
4777b71fc079SJan Kara 	ext4_update_inode_fsync_trans(handle, inode, need_datasync);
4778ac27a0ecSDave Kleikamp out_brelse:
4779ac27a0ecSDave Kleikamp 	brelse(bh);
4780617ba13bSMingming Cao 	ext4_std_error(inode->i_sb, err);
4781ac27a0ecSDave Kleikamp 	return err;
4782ac27a0ecSDave Kleikamp }
4783ac27a0ecSDave Kleikamp 
4784ac27a0ecSDave Kleikamp /*
4785617ba13bSMingming Cao  * ext4_write_inode()
4786ac27a0ecSDave Kleikamp  *
4787ac27a0ecSDave Kleikamp  * We are called from a few places:
4788ac27a0ecSDave Kleikamp  *
478987f7e416STheodore Ts'o  * - Within generic_file_aio_write() -> generic_write_sync() for O_SYNC files.
4790ac27a0ecSDave Kleikamp  *   Here, there will be no transaction running. We wait for any running
47914907cb7bSAnatol Pomozov  *   transaction to commit.
4792ac27a0ecSDave Kleikamp  *
479387f7e416STheodore Ts'o  * - Within flush work (sys_sync(), kupdate and such).
479487f7e416STheodore Ts'o  *   We wait on commit, if told to.
4795ac27a0ecSDave Kleikamp  *
479687f7e416STheodore Ts'o  * - Within iput_final() -> write_inode_now()
479787f7e416STheodore Ts'o  *   We wait on commit, if told to.
4798ac27a0ecSDave Kleikamp  *
4799ac27a0ecSDave Kleikamp  * In all cases it is actually safe for us to return without doing anything,
4800ac27a0ecSDave Kleikamp  * because the inode has been copied into a raw inode buffer in
480187f7e416STheodore Ts'o  * ext4_mark_inode_dirty().  This is a correctness thing for WB_SYNC_ALL
480287f7e416STheodore Ts'o  * writeback.
4803ac27a0ecSDave Kleikamp  *
4804ac27a0ecSDave Kleikamp  * Note that we are absolutely dependent upon all inode dirtiers doing the
4805ac27a0ecSDave Kleikamp  * right thing: they *must* call mark_inode_dirty() after dirtying info in
4806ac27a0ecSDave Kleikamp  * which we are interested.
4807ac27a0ecSDave Kleikamp  *
4808ac27a0ecSDave Kleikamp  * It would be a bug for them to not do this.  The code:
4809ac27a0ecSDave Kleikamp  *
4810ac27a0ecSDave Kleikamp  *	mark_inode_dirty(inode)
4811ac27a0ecSDave Kleikamp  *	stuff();
4812ac27a0ecSDave Kleikamp  *	inode->i_size = expr;
4813ac27a0ecSDave Kleikamp  *
481487f7e416STheodore Ts'o  * is in error because write_inode() could occur while `stuff()' is running,
481587f7e416STheodore Ts'o  * and the new i_size will be lost.  Plus the inode will no longer be on the
481687f7e416STheodore Ts'o  * superblock's dirty inode list.
4817ac27a0ecSDave Kleikamp  */
4818a9185b41SChristoph Hellwig int ext4_write_inode(struct inode *inode, struct writeback_control *wbc)
4819ac27a0ecSDave Kleikamp {
482091ac6f43SFrank Mayhar 	int err;
482191ac6f43SFrank Mayhar 
482287f7e416STheodore Ts'o 	if (WARN_ON_ONCE(current->flags & PF_MEMALLOC))
4823ac27a0ecSDave Kleikamp 		return 0;
4824ac27a0ecSDave Kleikamp 
482591ac6f43SFrank Mayhar 	if (EXT4_SB(inode->i_sb)->s_journal) {
4826617ba13bSMingming Cao 		if (ext4_journal_current_handle()) {
4827b38bd33aSMingming Cao 			jbd_debug(1, "called recursively, non-PF_MEMALLOC!\n");
4828ac27a0ecSDave Kleikamp 			dump_stack();
4829ac27a0ecSDave Kleikamp 			return -EIO;
4830ac27a0ecSDave Kleikamp 		}
4831ac27a0ecSDave Kleikamp 
483210542c22SJan Kara 		/*
483310542c22SJan Kara 		 * No need to force transaction in WB_SYNC_NONE mode. Also
483410542c22SJan Kara 		 * ext4_sync_fs() will force the commit after everything is
483510542c22SJan Kara 		 * written.
483610542c22SJan Kara 		 */
483710542c22SJan Kara 		if (wbc->sync_mode != WB_SYNC_ALL || wbc->for_sync)
4838ac27a0ecSDave Kleikamp 			return 0;
4839ac27a0ecSDave Kleikamp 
484091ac6f43SFrank Mayhar 		err = ext4_force_commit(inode->i_sb);
484191ac6f43SFrank Mayhar 	} else {
484291ac6f43SFrank Mayhar 		struct ext4_iloc iloc;
484391ac6f43SFrank Mayhar 
48448b472d73SCurt Wohlgemuth 		err = __ext4_get_inode_loc(inode, &iloc, 0);
484591ac6f43SFrank Mayhar 		if (err)
484691ac6f43SFrank Mayhar 			return err;
484710542c22SJan Kara 		/*
484810542c22SJan Kara 		 * sync(2) will flush the whole buffer cache. No need to do
484910542c22SJan Kara 		 * it here separately for each inode.
485010542c22SJan Kara 		 */
485110542c22SJan Kara 		if (wbc->sync_mode == WB_SYNC_ALL && !wbc->for_sync)
4852830156c7SFrank Mayhar 			sync_dirty_buffer(iloc.bh);
4853830156c7SFrank Mayhar 		if (buffer_req(iloc.bh) && !buffer_uptodate(iloc.bh)) {
4854c398eda0STheodore Ts'o 			EXT4_ERROR_INODE_BLOCK(inode, iloc.bh->b_blocknr,
4855c398eda0STheodore Ts'o 					 "IO error syncing inode");
4856830156c7SFrank Mayhar 			err = -EIO;
4857830156c7SFrank Mayhar 		}
4858fd2dd9fbSCurt Wohlgemuth 		brelse(iloc.bh);
485991ac6f43SFrank Mayhar 	}
486091ac6f43SFrank Mayhar 	return err;
4861ac27a0ecSDave Kleikamp }
4862ac27a0ecSDave Kleikamp 
4863ac27a0ecSDave Kleikamp /*
486453e87268SJan Kara  * In data=journal mode ext4_journalled_invalidatepage() may fail to invalidate
486553e87268SJan Kara  * buffers that are attached to a page stradding i_size and are undergoing
486653e87268SJan Kara  * commit. In that case we have to wait for commit to finish and try again.
486753e87268SJan Kara  */
486853e87268SJan Kara static void ext4_wait_for_tail_page_commit(struct inode *inode)
486953e87268SJan Kara {
487053e87268SJan Kara 	struct page *page;
487153e87268SJan Kara 	unsigned offset;
487253e87268SJan Kara 	journal_t *journal = EXT4_SB(inode->i_sb)->s_journal;
487353e87268SJan Kara 	tid_t commit_tid = 0;
487453e87268SJan Kara 	int ret;
487553e87268SJan Kara 
487653e87268SJan Kara 	offset = inode->i_size & (PAGE_CACHE_SIZE - 1);
487753e87268SJan Kara 	/*
487853e87268SJan Kara 	 * All buffers in the last page remain valid? Then there's nothing to
487953e87268SJan Kara 	 * do. We do the check mainly to optimize the common PAGE_CACHE_SIZE ==
488053e87268SJan Kara 	 * blocksize case
488153e87268SJan Kara 	 */
488253e87268SJan Kara 	if (offset > PAGE_CACHE_SIZE - (1 << inode->i_blkbits))
488353e87268SJan Kara 		return;
488453e87268SJan Kara 	while (1) {
488553e87268SJan Kara 		page = find_lock_page(inode->i_mapping,
488653e87268SJan Kara 				      inode->i_size >> PAGE_CACHE_SHIFT);
488753e87268SJan Kara 		if (!page)
488853e87268SJan Kara 			return;
4889ca99fdd2SLukas Czerner 		ret = __ext4_journalled_invalidatepage(page, offset,
4890ca99fdd2SLukas Czerner 						PAGE_CACHE_SIZE - offset);
489153e87268SJan Kara 		unlock_page(page);
489253e87268SJan Kara 		page_cache_release(page);
489353e87268SJan Kara 		if (ret != -EBUSY)
489453e87268SJan Kara 			return;
489553e87268SJan Kara 		commit_tid = 0;
489653e87268SJan Kara 		read_lock(&journal->j_state_lock);
489753e87268SJan Kara 		if (journal->j_committing_transaction)
489853e87268SJan Kara 			commit_tid = journal->j_committing_transaction->t_tid;
489953e87268SJan Kara 		read_unlock(&journal->j_state_lock);
490053e87268SJan Kara 		if (commit_tid)
490153e87268SJan Kara 			jbd2_log_wait_commit(journal, commit_tid);
490253e87268SJan Kara 	}
490353e87268SJan Kara }
490453e87268SJan Kara 
490553e87268SJan Kara /*
4906617ba13bSMingming Cao  * ext4_setattr()
4907ac27a0ecSDave Kleikamp  *
4908ac27a0ecSDave Kleikamp  * Called from notify_change.
4909ac27a0ecSDave Kleikamp  *
4910ac27a0ecSDave Kleikamp  * We want to trap VFS attempts to truncate the file as soon as
4911ac27a0ecSDave Kleikamp  * possible.  In particular, we want to make sure that when the VFS
4912ac27a0ecSDave Kleikamp  * shrinks i_size, we put the inode on the orphan list and modify
4913ac27a0ecSDave Kleikamp  * i_disksize immediately, so that during the subsequent flushing of
4914ac27a0ecSDave Kleikamp  * dirty pages and freeing of disk blocks, we can guarantee that any
4915ac27a0ecSDave Kleikamp  * commit will leave the blocks being flushed in an unused state on
4916ac27a0ecSDave Kleikamp  * disk.  (On recovery, the inode will get truncated and the blocks will
4917ac27a0ecSDave Kleikamp  * be freed, so we have a strong guarantee that no future commit will
4918ac27a0ecSDave Kleikamp  * leave these blocks visible to the user.)
4919ac27a0ecSDave Kleikamp  *
4920678aaf48SJan Kara  * Another thing we have to assure is that if we are in ordered mode
4921678aaf48SJan Kara  * and inode is still attached to the committing transaction, we must
4922678aaf48SJan Kara  * we start writeout of all the dirty pages which are being truncated.
4923678aaf48SJan Kara  * This way we are sure that all the data written in the previous
4924678aaf48SJan Kara  * transaction are already on disk (truncate waits for pages under
4925678aaf48SJan Kara  * writeback).
4926678aaf48SJan Kara  *
4927678aaf48SJan Kara  * Called with inode->i_mutex down.
4928ac27a0ecSDave Kleikamp  */
4929617ba13bSMingming Cao int ext4_setattr(struct dentry *dentry, struct iattr *attr)
4930ac27a0ecSDave Kleikamp {
49312b0143b5SDavid Howells 	struct inode *inode = d_inode(dentry);
4932ac27a0ecSDave Kleikamp 	int error, rc = 0;
49333d287de3SDmitry Monakhov 	int orphan = 0;
4934ac27a0ecSDave Kleikamp 	const unsigned int ia_valid = attr->ia_valid;
4935ac27a0ecSDave Kleikamp 
4936ac27a0ecSDave Kleikamp 	error = inode_change_ok(inode, attr);
4937ac27a0ecSDave Kleikamp 	if (error)
4938ac27a0ecSDave Kleikamp 		return error;
4939ac27a0ecSDave Kleikamp 
4940a7cdadeeSJan Kara 	if (is_quota_modification(inode, attr)) {
4941a7cdadeeSJan Kara 		error = dquot_initialize(inode);
4942a7cdadeeSJan Kara 		if (error)
4943a7cdadeeSJan Kara 			return error;
4944a7cdadeeSJan Kara 	}
494508cefc7aSEric W. Biederman 	if ((ia_valid & ATTR_UID && !uid_eq(attr->ia_uid, inode->i_uid)) ||
494608cefc7aSEric W. Biederman 	    (ia_valid & ATTR_GID && !gid_eq(attr->ia_gid, inode->i_gid))) {
4947ac27a0ecSDave Kleikamp 		handle_t *handle;
4948ac27a0ecSDave Kleikamp 
4949ac27a0ecSDave Kleikamp 		/* (user+group)*(old+new) structure, inode write (sb,
4950ac27a0ecSDave Kleikamp 		 * inode block, ? - but truncate inode update has it) */
49519924a92aSTheodore Ts'o 		handle = ext4_journal_start(inode, EXT4_HT_QUOTA,
49529924a92aSTheodore Ts'o 			(EXT4_MAXQUOTAS_INIT_BLOCKS(inode->i_sb) +
4953194074acSDmitry Monakhov 			 EXT4_MAXQUOTAS_DEL_BLOCKS(inode->i_sb)) + 3);
4954ac27a0ecSDave Kleikamp 		if (IS_ERR(handle)) {
4955ac27a0ecSDave Kleikamp 			error = PTR_ERR(handle);
4956ac27a0ecSDave Kleikamp 			goto err_out;
4957ac27a0ecSDave Kleikamp 		}
4958b43fa828SChristoph Hellwig 		error = dquot_transfer(inode, attr);
4959ac27a0ecSDave Kleikamp 		if (error) {
4960617ba13bSMingming Cao 			ext4_journal_stop(handle);
4961ac27a0ecSDave Kleikamp 			return error;
4962ac27a0ecSDave Kleikamp 		}
4963ac27a0ecSDave Kleikamp 		/* Update corresponding info in inode so that everything is in
4964ac27a0ecSDave Kleikamp 		 * one transaction */
4965ac27a0ecSDave Kleikamp 		if (attr->ia_valid & ATTR_UID)
4966ac27a0ecSDave Kleikamp 			inode->i_uid = attr->ia_uid;
4967ac27a0ecSDave Kleikamp 		if (attr->ia_valid & ATTR_GID)
4968ac27a0ecSDave Kleikamp 			inode->i_gid = attr->ia_gid;
4969617ba13bSMingming Cao 		error = ext4_mark_inode_dirty(handle, inode);
4970617ba13bSMingming Cao 		ext4_journal_stop(handle);
4971ac27a0ecSDave Kleikamp 	}
4972ac27a0ecSDave Kleikamp 
49733da40c7bSJosef Bacik 	if (attr->ia_valid & ATTR_SIZE) {
49745208386cSJan Kara 		handle_t *handle;
49753da40c7bSJosef Bacik 		loff_t oldsize = inode->i_size;
49763da40c7bSJosef Bacik 		int shrink = (attr->ia_size <= inode->i_size);
4977562c72aaSChristoph Hellwig 
497812e9b892SDmitry Monakhov 		if (!(ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS))) {
4979e2b46574SEric Sandeen 			struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb);
4980e2b46574SEric Sandeen 
49810c095c7fSTheodore Ts'o 			if (attr->ia_size > sbi->s_bitmap_maxbytes)
49820c095c7fSTheodore Ts'o 				return -EFBIG;
4983e2b46574SEric Sandeen 		}
49843da40c7bSJosef Bacik 		if (!S_ISREG(inode->i_mode))
49853da40c7bSJosef Bacik 			return -EINVAL;
4986dff6efc3SChristoph Hellwig 
4987dff6efc3SChristoph Hellwig 		if (IS_I_VERSION(inode) && attr->ia_size != inode->i_size)
4988dff6efc3SChristoph Hellwig 			inode_inc_iversion(inode);
4989dff6efc3SChristoph Hellwig 
49903da40c7bSJosef Bacik 		if (ext4_should_order_data(inode) &&
4991072bd7eaSTheodore Ts'o 		    (attr->ia_size < inode->i_size)) {
49925208386cSJan Kara 			error = ext4_begin_ordered_truncate(inode,
49935208386cSJan Kara 							    attr->ia_size);
49945208386cSJan Kara 			if (error)
49955208386cSJan Kara 				goto err_out;
49965208386cSJan Kara 		}
49973da40c7bSJosef Bacik 		if (attr->ia_size != inode->i_size) {
49989924a92aSTheodore Ts'o 			handle = ext4_journal_start(inode, EXT4_HT_INODE, 3);
4999ac27a0ecSDave Kleikamp 			if (IS_ERR(handle)) {
5000ac27a0ecSDave Kleikamp 				error = PTR_ERR(handle);
5001ac27a0ecSDave Kleikamp 				goto err_out;
5002ac27a0ecSDave Kleikamp 			}
50033da40c7bSJosef Bacik 			if (ext4_handle_valid(handle) && shrink) {
5004617ba13bSMingming Cao 				error = ext4_orphan_add(handle, inode);
50053d287de3SDmitry Monakhov 				orphan = 1;
50063d287de3SDmitry Monakhov 			}
5007911af577SEryu Guan 			/*
5008911af577SEryu Guan 			 * Update c/mtime on truncate up, ext4_truncate() will
5009911af577SEryu Guan 			 * update c/mtime in shrink case below
5010911af577SEryu Guan 			 */
5011911af577SEryu Guan 			if (!shrink) {
5012911af577SEryu Guan 				inode->i_mtime = ext4_current_time(inode);
5013911af577SEryu Guan 				inode->i_ctime = inode->i_mtime;
5014911af577SEryu Guan 			}
501590e775b7SJan Kara 			down_write(&EXT4_I(inode)->i_data_sem);
5016617ba13bSMingming Cao 			EXT4_I(inode)->i_disksize = attr->ia_size;
5017617ba13bSMingming Cao 			rc = ext4_mark_inode_dirty(handle, inode);
5018ac27a0ecSDave Kleikamp 			if (!error)
5019ac27a0ecSDave Kleikamp 				error = rc;
502090e775b7SJan Kara 			/*
502190e775b7SJan Kara 			 * We have to update i_size under i_data_sem together
502290e775b7SJan Kara 			 * with i_disksize to avoid races with writeback code
502390e775b7SJan Kara 			 * running ext4_wb_update_i_disksize().
502490e775b7SJan Kara 			 */
502590e775b7SJan Kara 			if (!error)
502690e775b7SJan Kara 				i_size_write(inode, attr->ia_size);
502790e775b7SJan Kara 			up_write(&EXT4_I(inode)->i_data_sem);
5028617ba13bSMingming Cao 			ext4_journal_stop(handle);
5029678aaf48SJan Kara 			if (error) {
50303da40c7bSJosef Bacik 				if (orphan)
5031678aaf48SJan Kara 					ext4_orphan_del(NULL, inode);
5032678aaf48SJan Kara 				goto err_out;
5033678aaf48SJan Kara 			}
5034d6320cbfSJan Kara 		}
50353da40c7bSJosef Bacik 		if (!shrink)
50363da40c7bSJosef Bacik 			pagecache_isize_extended(inode, oldsize, inode->i_size);
503790e775b7SJan Kara 
503853e87268SJan Kara 		/*
503953e87268SJan Kara 		 * Blocks are going to be removed from the inode. Wait
504053e87268SJan Kara 		 * for dio in flight.  Temporarily disable
504153e87268SJan Kara 		 * dioread_nolock to prevent livelock.
504253e87268SJan Kara 		 */
50431b65007eSDmitry Monakhov 		if (orphan) {
504453e87268SJan Kara 			if (!ext4_should_journal_data(inode)) {
50451b65007eSDmitry Monakhov 				ext4_inode_block_unlocked_dio(inode);
50461c9114f9SDmitry Monakhov 				inode_dio_wait(inode);
50471b65007eSDmitry Monakhov 				ext4_inode_resume_unlocked_dio(inode);
504853e87268SJan Kara 			} else
504953e87268SJan Kara 				ext4_wait_for_tail_page_commit(inode);
50501b65007eSDmitry Monakhov 		}
5051ea3d7209SJan Kara 		down_write(&EXT4_I(inode)->i_mmap_sem);
505253e87268SJan Kara 		/*
505353e87268SJan Kara 		 * Truncate pagecache after we've waited for commit
505453e87268SJan Kara 		 * in data=journal mode to make pages freeable.
505553e87268SJan Kara 		 */
50567caef267SKirill A. Shutemov 		truncate_pagecache(inode, inode->i_size);
50573da40c7bSJosef Bacik 		if (shrink)
5058072bd7eaSTheodore Ts'o 			ext4_truncate(inode);
5059ea3d7209SJan Kara 		up_write(&EXT4_I(inode)->i_mmap_sem);
50603da40c7bSJosef Bacik 	}
5061ac27a0ecSDave Kleikamp 
50621025774cSChristoph Hellwig 	if (!rc) {
50631025774cSChristoph Hellwig 		setattr_copy(inode, attr);
50641025774cSChristoph Hellwig 		mark_inode_dirty(inode);
50651025774cSChristoph Hellwig 	}
50661025774cSChristoph Hellwig 
50671025774cSChristoph Hellwig 	/*
50681025774cSChristoph Hellwig 	 * If the call to ext4_truncate failed to get a transaction handle at
50691025774cSChristoph Hellwig 	 * all, we need to clean up the in-core orphan list manually.
50701025774cSChristoph Hellwig 	 */
50713d287de3SDmitry Monakhov 	if (orphan && inode->i_nlink)
5072617ba13bSMingming Cao 		ext4_orphan_del(NULL, inode);
5073ac27a0ecSDave Kleikamp 
5074ac27a0ecSDave Kleikamp 	if (!rc && (ia_valid & ATTR_MODE))
507564e178a7SChristoph Hellwig 		rc = posix_acl_chmod(inode, inode->i_mode);
5076ac27a0ecSDave Kleikamp 
5077ac27a0ecSDave Kleikamp err_out:
5078617ba13bSMingming Cao 	ext4_std_error(inode->i_sb, error);
5079ac27a0ecSDave Kleikamp 	if (!error)
5080ac27a0ecSDave Kleikamp 		error = rc;
5081ac27a0ecSDave Kleikamp 	return error;
5082ac27a0ecSDave Kleikamp }
5083ac27a0ecSDave Kleikamp 
50843e3398a0SMingming Cao int ext4_getattr(struct vfsmount *mnt, struct dentry *dentry,
50853e3398a0SMingming Cao 		 struct kstat *stat)
50863e3398a0SMingming Cao {
50873e3398a0SMingming Cao 	struct inode *inode;
50888af8eeccSJan Kara 	unsigned long long delalloc_blocks;
50893e3398a0SMingming Cao 
50902b0143b5SDavid Howells 	inode = d_inode(dentry);
50913e3398a0SMingming Cao 	generic_fillattr(inode, stat);
50923e3398a0SMingming Cao 
50933e3398a0SMingming Cao 	/*
50949206c561SAndreas Dilger 	 * If there is inline data in the inode, the inode will normally not
50959206c561SAndreas Dilger 	 * have data blocks allocated (it may have an external xattr block).
50969206c561SAndreas Dilger 	 * Report at least one sector for such files, so tools like tar, rsync,
50979206c561SAndreas Dilger 	 * others doen't incorrectly think the file is completely sparse.
50989206c561SAndreas Dilger 	 */
50999206c561SAndreas Dilger 	if (unlikely(ext4_has_inline_data(inode)))
51009206c561SAndreas Dilger 		stat->blocks += (stat->size + 511) >> 9;
51019206c561SAndreas Dilger 
51029206c561SAndreas Dilger 	/*
51033e3398a0SMingming Cao 	 * We can't update i_blocks if the block allocation is delayed
51043e3398a0SMingming Cao 	 * otherwise in the case of system crash before the real block
51053e3398a0SMingming Cao 	 * allocation is done, we will have i_blocks inconsistent with
51063e3398a0SMingming Cao 	 * on-disk file blocks.
51073e3398a0SMingming Cao 	 * We always keep i_blocks updated together with real
51083e3398a0SMingming Cao 	 * allocation. But to not confuse with user, stat
51093e3398a0SMingming Cao 	 * will return the blocks that include the delayed allocation
51103e3398a0SMingming Cao 	 * blocks for this file.
51113e3398a0SMingming Cao 	 */
511296607551STao Ma 	delalloc_blocks = EXT4_C2B(EXT4_SB(inode->i_sb),
511396607551STao Ma 				   EXT4_I(inode)->i_reserved_data_blocks);
51148af8eeccSJan Kara 	stat->blocks += delalloc_blocks << (inode->i_sb->s_blocksize_bits - 9);
51153e3398a0SMingming Cao 	return 0;
51163e3398a0SMingming Cao }
5117ac27a0ecSDave Kleikamp 
5118fffb2739SJan Kara static int ext4_index_trans_blocks(struct inode *inode, int lblocks,
5119fffb2739SJan Kara 				   int pextents)
5120a02908f1SMingming Cao {
512112e9b892SDmitry Monakhov 	if (!(ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS)))
5122fffb2739SJan Kara 		return ext4_ind_trans_blocks(inode, lblocks);
5123fffb2739SJan Kara 	return ext4_ext_index_trans_blocks(inode, pextents);
5124a02908f1SMingming Cao }
5125ac51d837STheodore Ts'o 
5126a02908f1SMingming Cao /*
5127a02908f1SMingming Cao  * Account for index blocks, block groups bitmaps and block group
5128a02908f1SMingming Cao  * descriptor blocks if modify datablocks and index blocks
5129a02908f1SMingming Cao  * worse case, the indexs blocks spread over different block groups
5130a02908f1SMingming Cao  *
5131a02908f1SMingming Cao  * If datablocks are discontiguous, they are possible to spread over
51324907cb7bSAnatol Pomozov  * different block groups too. If they are contiguous, with flexbg,
5133a02908f1SMingming Cao  * they could still across block group boundary.
5134a02908f1SMingming Cao  *
5135a02908f1SMingming Cao  * Also account for superblock, inode, quota and xattr blocks
5136a02908f1SMingming Cao  */
5137fffb2739SJan Kara static int ext4_meta_trans_blocks(struct inode *inode, int lblocks,
5138fffb2739SJan Kara 				  int pextents)
5139a02908f1SMingming Cao {
51408df9675fSTheodore Ts'o 	ext4_group_t groups, ngroups = ext4_get_groups_count(inode->i_sb);
51418df9675fSTheodore Ts'o 	int gdpblocks;
5142a02908f1SMingming Cao 	int idxblocks;
5143a02908f1SMingming Cao 	int ret = 0;
5144a02908f1SMingming Cao 
5145a02908f1SMingming Cao 	/*
5146fffb2739SJan Kara 	 * How many index blocks need to touch to map @lblocks logical blocks
5147fffb2739SJan Kara 	 * to @pextents physical extents?
5148a02908f1SMingming Cao 	 */
5149fffb2739SJan Kara 	idxblocks = ext4_index_trans_blocks(inode, lblocks, pextents);
5150a02908f1SMingming Cao 
5151a02908f1SMingming Cao 	ret = idxblocks;
5152a02908f1SMingming Cao 
5153a02908f1SMingming Cao 	/*
5154a02908f1SMingming Cao 	 * Now let's see how many group bitmaps and group descriptors need
5155a02908f1SMingming Cao 	 * to account
5156a02908f1SMingming Cao 	 */
5157fffb2739SJan Kara 	groups = idxblocks + pextents;
5158a02908f1SMingming Cao 	gdpblocks = groups;
51598df9675fSTheodore Ts'o 	if (groups > ngroups)
51608df9675fSTheodore Ts'o 		groups = ngroups;
5161a02908f1SMingming Cao 	if (groups > EXT4_SB(inode->i_sb)->s_gdb_count)
5162a02908f1SMingming Cao 		gdpblocks = EXT4_SB(inode->i_sb)->s_gdb_count;
5163a02908f1SMingming Cao 
5164a02908f1SMingming Cao 	/* bitmaps and block group descriptor blocks */
5165a02908f1SMingming Cao 	ret += groups + gdpblocks;
5166a02908f1SMingming Cao 
5167a02908f1SMingming Cao 	/* Blocks for super block, inode, quota and xattr blocks */
5168a02908f1SMingming Cao 	ret += EXT4_META_TRANS_BLOCKS(inode->i_sb);
5169ac27a0ecSDave Kleikamp 
5170ac27a0ecSDave Kleikamp 	return ret;
5171ac27a0ecSDave Kleikamp }
5172ac27a0ecSDave Kleikamp 
5173ac27a0ecSDave Kleikamp /*
517425985edcSLucas De Marchi  * Calculate the total number of credits to reserve to fit
5175f3bd1f3fSMingming Cao  * the modification of a single pages into a single transaction,
5176f3bd1f3fSMingming Cao  * which may include multiple chunks of block allocations.
5177a02908f1SMingming Cao  *
5178525f4ed8SMingming Cao  * This could be called via ext4_write_begin()
5179a02908f1SMingming Cao  *
5180525f4ed8SMingming Cao  * We need to consider the worse case, when
5181a02908f1SMingming Cao  * one new block per extent.
5182a02908f1SMingming Cao  */
5183a02908f1SMingming Cao int ext4_writepage_trans_blocks(struct inode *inode)
5184a02908f1SMingming Cao {
5185a02908f1SMingming Cao 	int bpp = ext4_journal_blocks_per_page(inode);
5186a02908f1SMingming Cao 	int ret;
5187a02908f1SMingming Cao 
5188fffb2739SJan Kara 	ret = ext4_meta_trans_blocks(inode, bpp, bpp);
5189a02908f1SMingming Cao 
5190a02908f1SMingming Cao 	/* Account for data blocks for journalled mode */
5191a02908f1SMingming Cao 	if (ext4_should_journal_data(inode))
5192a02908f1SMingming Cao 		ret += bpp;
5193a02908f1SMingming Cao 	return ret;
5194a02908f1SMingming Cao }
5195f3bd1f3fSMingming Cao 
5196f3bd1f3fSMingming Cao /*
5197f3bd1f3fSMingming Cao  * Calculate the journal credits for a chunk of data modification.
5198f3bd1f3fSMingming Cao  *
5199f3bd1f3fSMingming Cao  * This is called from DIO, fallocate or whoever calling
520079e83036SEric Sandeen  * ext4_map_blocks() to map/allocate a chunk of contiguous disk blocks.
5201f3bd1f3fSMingming Cao  *
5202f3bd1f3fSMingming Cao  * journal buffers for data blocks are not included here, as DIO
5203f3bd1f3fSMingming Cao  * and fallocate do no need to journal data buffers.
5204f3bd1f3fSMingming Cao  */
5205f3bd1f3fSMingming Cao int ext4_chunk_trans_blocks(struct inode *inode, int nrblocks)
5206f3bd1f3fSMingming Cao {
5207f3bd1f3fSMingming Cao 	return ext4_meta_trans_blocks(inode, nrblocks, 1);
5208f3bd1f3fSMingming Cao }
5209f3bd1f3fSMingming Cao 
5210a02908f1SMingming Cao /*
5211617ba13bSMingming Cao  * The caller must have previously called ext4_reserve_inode_write().
5212ac27a0ecSDave Kleikamp  * Give this, we know that the caller already has write access to iloc->bh.
5213ac27a0ecSDave Kleikamp  */
5214617ba13bSMingming Cao int ext4_mark_iloc_dirty(handle_t *handle,
5215617ba13bSMingming Cao 			 struct inode *inode, struct ext4_iloc *iloc)
5216ac27a0ecSDave Kleikamp {
5217ac27a0ecSDave Kleikamp 	int err = 0;
5218ac27a0ecSDave Kleikamp 
5219c64db50eSTheodore Ts'o 	if (IS_I_VERSION(inode))
522025ec56b5SJean Noel Cordenner 		inode_inc_iversion(inode);
522125ec56b5SJean Noel Cordenner 
5222ac27a0ecSDave Kleikamp 	/* the do_update_inode consumes one bh->b_count */
5223ac27a0ecSDave Kleikamp 	get_bh(iloc->bh);
5224ac27a0ecSDave Kleikamp 
5225dab291afSMingming Cao 	/* ext4_do_update_inode() does jbd2_journal_dirty_metadata */
5226830156c7SFrank Mayhar 	err = ext4_do_update_inode(handle, inode, iloc);
5227ac27a0ecSDave Kleikamp 	put_bh(iloc->bh);
5228ac27a0ecSDave Kleikamp 	return err;
5229ac27a0ecSDave Kleikamp }
5230ac27a0ecSDave Kleikamp 
5231ac27a0ecSDave Kleikamp /*
5232ac27a0ecSDave Kleikamp  * On success, We end up with an outstanding reference count against
5233ac27a0ecSDave Kleikamp  * iloc->bh.  This _must_ be cleaned up later.
5234ac27a0ecSDave Kleikamp  */
5235ac27a0ecSDave Kleikamp 
5236ac27a0ecSDave Kleikamp int
5237617ba13bSMingming Cao ext4_reserve_inode_write(handle_t *handle, struct inode *inode,
5238617ba13bSMingming Cao 			 struct ext4_iloc *iloc)
5239ac27a0ecSDave Kleikamp {
52400390131bSFrank Mayhar 	int err;
52410390131bSFrank Mayhar 
5242617ba13bSMingming Cao 	err = ext4_get_inode_loc(inode, iloc);
5243ac27a0ecSDave Kleikamp 	if (!err) {
5244ac27a0ecSDave Kleikamp 		BUFFER_TRACE(iloc->bh, "get_write_access");
5245617ba13bSMingming Cao 		err = ext4_journal_get_write_access(handle, iloc->bh);
5246ac27a0ecSDave Kleikamp 		if (err) {
5247ac27a0ecSDave Kleikamp 			brelse(iloc->bh);
5248ac27a0ecSDave Kleikamp 			iloc->bh = NULL;
5249ac27a0ecSDave Kleikamp 		}
5250ac27a0ecSDave Kleikamp 	}
5251617ba13bSMingming Cao 	ext4_std_error(inode->i_sb, err);
5252ac27a0ecSDave Kleikamp 	return err;
5253ac27a0ecSDave Kleikamp }
5254ac27a0ecSDave Kleikamp 
5255ac27a0ecSDave Kleikamp /*
52566dd4ee7cSKalpak Shah  * Expand an inode by new_extra_isize bytes.
52576dd4ee7cSKalpak Shah  * Returns 0 on success or negative error number on failure.
52586dd4ee7cSKalpak Shah  */
52591d03ec98SAneesh Kumar K.V static int ext4_expand_extra_isize(struct inode *inode,
52601d03ec98SAneesh Kumar K.V 				   unsigned int new_extra_isize,
52611d03ec98SAneesh Kumar K.V 				   struct ext4_iloc iloc,
52621d03ec98SAneesh Kumar K.V 				   handle_t *handle)
52636dd4ee7cSKalpak Shah {
52646dd4ee7cSKalpak Shah 	struct ext4_inode *raw_inode;
52656dd4ee7cSKalpak Shah 	struct ext4_xattr_ibody_header *header;
52666dd4ee7cSKalpak Shah 
52676dd4ee7cSKalpak Shah 	if (EXT4_I(inode)->i_extra_isize >= new_extra_isize)
52686dd4ee7cSKalpak Shah 		return 0;
52696dd4ee7cSKalpak Shah 
52706dd4ee7cSKalpak Shah 	raw_inode = ext4_raw_inode(&iloc);
52716dd4ee7cSKalpak Shah 
52726dd4ee7cSKalpak Shah 	header = IHDR(inode, raw_inode);
52736dd4ee7cSKalpak Shah 
52746dd4ee7cSKalpak Shah 	/* No extended attributes present */
527519f5fb7aSTheodore Ts'o 	if (!ext4_test_inode_state(inode, EXT4_STATE_XATTR) ||
52766dd4ee7cSKalpak Shah 	    header->h_magic != cpu_to_le32(EXT4_XATTR_MAGIC)) {
52776dd4ee7cSKalpak Shah 		memset((void *)raw_inode + EXT4_GOOD_OLD_INODE_SIZE, 0,
52786dd4ee7cSKalpak Shah 			new_extra_isize);
52796dd4ee7cSKalpak Shah 		EXT4_I(inode)->i_extra_isize = new_extra_isize;
52806dd4ee7cSKalpak Shah 		return 0;
52816dd4ee7cSKalpak Shah 	}
52826dd4ee7cSKalpak Shah 
52836dd4ee7cSKalpak Shah 	/* try to expand with EAs present */
52846dd4ee7cSKalpak Shah 	return ext4_expand_extra_isize_ea(inode, new_extra_isize,
52856dd4ee7cSKalpak Shah 					  raw_inode, handle);
52866dd4ee7cSKalpak Shah }
52876dd4ee7cSKalpak Shah 
52886dd4ee7cSKalpak Shah /*
5289ac27a0ecSDave Kleikamp  * What we do here is to mark the in-core inode as clean with respect to inode
5290ac27a0ecSDave Kleikamp  * dirtiness (it may still be data-dirty).
5291ac27a0ecSDave Kleikamp  * This means that the in-core inode may be reaped by prune_icache
5292ac27a0ecSDave Kleikamp  * without having to perform any I/O.  This is a very good thing,
5293ac27a0ecSDave Kleikamp  * because *any* task may call prune_icache - even ones which
5294ac27a0ecSDave Kleikamp  * have a transaction open against a different journal.
5295ac27a0ecSDave Kleikamp  *
5296ac27a0ecSDave Kleikamp  * Is this cheating?  Not really.  Sure, we haven't written the
5297ac27a0ecSDave Kleikamp  * inode out, but prune_icache isn't a user-visible syncing function.
5298ac27a0ecSDave Kleikamp  * Whenever the user wants stuff synced (sys_sync, sys_msync, sys_fsync)
5299ac27a0ecSDave Kleikamp  * we start and wait on commits.
5300ac27a0ecSDave Kleikamp  */
5301617ba13bSMingming Cao int ext4_mark_inode_dirty(handle_t *handle, struct inode *inode)
5302ac27a0ecSDave Kleikamp {
5303617ba13bSMingming Cao 	struct ext4_iloc iloc;
53046dd4ee7cSKalpak Shah 	struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb);
53056dd4ee7cSKalpak Shah 	static unsigned int mnt_count;
53066dd4ee7cSKalpak Shah 	int err, ret;
5307ac27a0ecSDave Kleikamp 
5308ac27a0ecSDave Kleikamp 	might_sleep();
53097ff9c073STheodore Ts'o 	trace_ext4_mark_inode_dirty(inode, _RET_IP_);
5310617ba13bSMingming Cao 	err = ext4_reserve_inode_write(handle, inode, &iloc);
53110390131bSFrank Mayhar 	if (ext4_handle_valid(handle) &&
53120390131bSFrank Mayhar 	    EXT4_I(inode)->i_extra_isize < sbi->s_want_extra_isize &&
531319f5fb7aSTheodore Ts'o 	    !ext4_test_inode_state(inode, EXT4_STATE_NO_EXPAND)) {
53146dd4ee7cSKalpak Shah 		/*
53156dd4ee7cSKalpak Shah 		 * We need extra buffer credits since we may write into EA block
53166dd4ee7cSKalpak Shah 		 * with this same handle. If journal_extend fails, then it will
53176dd4ee7cSKalpak Shah 		 * only result in a minor loss of functionality for that inode.
53186dd4ee7cSKalpak Shah 		 * If this is felt to be critical, then e2fsck should be run to
53196dd4ee7cSKalpak Shah 		 * force a large enough s_min_extra_isize.
53206dd4ee7cSKalpak Shah 		 */
53216dd4ee7cSKalpak Shah 		if ((jbd2_journal_extend(handle,
53226dd4ee7cSKalpak Shah 			     EXT4_DATA_TRANS_BLOCKS(inode->i_sb))) == 0) {
53236dd4ee7cSKalpak Shah 			ret = ext4_expand_extra_isize(inode,
53246dd4ee7cSKalpak Shah 						      sbi->s_want_extra_isize,
53256dd4ee7cSKalpak Shah 						      iloc, handle);
53266dd4ee7cSKalpak Shah 			if (ret) {
532719f5fb7aSTheodore Ts'o 				ext4_set_inode_state(inode,
532819f5fb7aSTheodore Ts'o 						     EXT4_STATE_NO_EXPAND);
5329c1bddad9SAneesh Kumar K.V 				if (mnt_count !=
5330c1bddad9SAneesh Kumar K.V 					le16_to_cpu(sbi->s_es->s_mnt_count)) {
533112062dddSEric Sandeen 					ext4_warning(inode->i_sb,
53326dd4ee7cSKalpak Shah 					"Unable to expand inode %lu. Delete"
53336dd4ee7cSKalpak Shah 					" some EAs or run e2fsck.",
53346dd4ee7cSKalpak Shah 					inode->i_ino);
5335c1bddad9SAneesh Kumar K.V 					mnt_count =
5336c1bddad9SAneesh Kumar K.V 					  le16_to_cpu(sbi->s_es->s_mnt_count);
53376dd4ee7cSKalpak Shah 				}
53386dd4ee7cSKalpak Shah 			}
53396dd4ee7cSKalpak Shah 		}
53406dd4ee7cSKalpak Shah 	}
5341ac27a0ecSDave Kleikamp 	if (!err)
5342617ba13bSMingming Cao 		err = ext4_mark_iloc_dirty(handle, inode, &iloc);
5343ac27a0ecSDave Kleikamp 	return err;
5344ac27a0ecSDave Kleikamp }
5345ac27a0ecSDave Kleikamp 
5346ac27a0ecSDave Kleikamp /*
5347617ba13bSMingming Cao  * ext4_dirty_inode() is called from __mark_inode_dirty()
5348ac27a0ecSDave Kleikamp  *
5349ac27a0ecSDave Kleikamp  * We're really interested in the case where a file is being extended.
5350ac27a0ecSDave Kleikamp  * i_size has been changed by generic_commit_write() and we thus need
5351ac27a0ecSDave Kleikamp  * to include the updated inode in the current transaction.
5352ac27a0ecSDave Kleikamp  *
53535dd4056dSChristoph Hellwig  * Also, dquot_alloc_block() will always dirty the inode when blocks
5354ac27a0ecSDave Kleikamp  * are allocated to the file.
5355ac27a0ecSDave Kleikamp  *
5356ac27a0ecSDave Kleikamp  * If the inode is marked synchronous, we don't honour that here - doing
5357ac27a0ecSDave Kleikamp  * so would cause a commit on atime updates, which we don't bother doing.
5358ac27a0ecSDave Kleikamp  * We handle synchronous inodes at the highest possible level.
53590ae45f63STheodore Ts'o  *
53600ae45f63STheodore Ts'o  * If only the I_DIRTY_TIME flag is set, we can skip everything.  If
53610ae45f63STheodore Ts'o  * I_DIRTY_TIME and I_DIRTY_SYNC is set, the only inode fields we need
53620ae45f63STheodore Ts'o  * to copy into the on-disk inode structure are the timestamp files.
5363ac27a0ecSDave Kleikamp  */
5364aa385729SChristoph Hellwig void ext4_dirty_inode(struct inode *inode, int flags)
5365ac27a0ecSDave Kleikamp {
5366ac27a0ecSDave Kleikamp 	handle_t *handle;
5367ac27a0ecSDave Kleikamp 
53680ae45f63STheodore Ts'o 	if (flags == I_DIRTY_TIME)
53690ae45f63STheodore Ts'o 		return;
53709924a92aSTheodore Ts'o 	handle = ext4_journal_start(inode, EXT4_HT_INODE, 2);
5371ac27a0ecSDave Kleikamp 	if (IS_ERR(handle))
5372ac27a0ecSDave Kleikamp 		goto out;
5373f3dc272fSCurt Wohlgemuth 
5374617ba13bSMingming Cao 	ext4_mark_inode_dirty(handle, inode);
5375f3dc272fSCurt Wohlgemuth 
5376617ba13bSMingming Cao 	ext4_journal_stop(handle);
5377ac27a0ecSDave Kleikamp out:
5378ac27a0ecSDave Kleikamp 	return;
5379ac27a0ecSDave Kleikamp }
5380ac27a0ecSDave Kleikamp 
5381ac27a0ecSDave Kleikamp #if 0
5382ac27a0ecSDave Kleikamp /*
5383ac27a0ecSDave Kleikamp  * Bind an inode's backing buffer_head into this transaction, to prevent
5384ac27a0ecSDave Kleikamp  * it from being flushed to disk early.  Unlike
5385617ba13bSMingming Cao  * ext4_reserve_inode_write, this leaves behind no bh reference and
5386ac27a0ecSDave Kleikamp  * returns no iloc structure, so the caller needs to repeat the iloc
5387ac27a0ecSDave Kleikamp  * lookup to mark the inode dirty later.
5388ac27a0ecSDave Kleikamp  */
5389617ba13bSMingming Cao static int ext4_pin_inode(handle_t *handle, struct inode *inode)
5390ac27a0ecSDave Kleikamp {
5391617ba13bSMingming Cao 	struct ext4_iloc iloc;
5392ac27a0ecSDave Kleikamp 
5393ac27a0ecSDave Kleikamp 	int err = 0;
5394ac27a0ecSDave Kleikamp 	if (handle) {
5395617ba13bSMingming Cao 		err = ext4_get_inode_loc(inode, &iloc);
5396ac27a0ecSDave Kleikamp 		if (!err) {
5397ac27a0ecSDave Kleikamp 			BUFFER_TRACE(iloc.bh, "get_write_access");
5398dab291afSMingming Cao 			err = jbd2_journal_get_write_access(handle, iloc.bh);
5399ac27a0ecSDave Kleikamp 			if (!err)
54000390131bSFrank Mayhar 				err = ext4_handle_dirty_metadata(handle,
540173b50c1cSCurt Wohlgemuth 								 NULL,
5402ac27a0ecSDave Kleikamp 								 iloc.bh);
5403ac27a0ecSDave Kleikamp 			brelse(iloc.bh);
5404ac27a0ecSDave Kleikamp 		}
5405ac27a0ecSDave Kleikamp 	}
5406617ba13bSMingming Cao 	ext4_std_error(inode->i_sb, err);
5407ac27a0ecSDave Kleikamp 	return err;
5408ac27a0ecSDave Kleikamp }
5409ac27a0ecSDave Kleikamp #endif
5410ac27a0ecSDave Kleikamp 
5411617ba13bSMingming Cao int ext4_change_inode_journal_flag(struct inode *inode, int val)
5412ac27a0ecSDave Kleikamp {
5413ac27a0ecSDave Kleikamp 	journal_t *journal;
5414ac27a0ecSDave Kleikamp 	handle_t *handle;
5415ac27a0ecSDave Kleikamp 	int err;
5416ac27a0ecSDave Kleikamp 
5417ac27a0ecSDave Kleikamp 	/*
5418ac27a0ecSDave Kleikamp 	 * We have to be very careful here: changing a data block's
5419ac27a0ecSDave Kleikamp 	 * journaling status dynamically is dangerous.  If we write a
5420ac27a0ecSDave Kleikamp 	 * data block to the journal, change the status and then delete
5421ac27a0ecSDave Kleikamp 	 * that block, we risk forgetting to revoke the old log record
5422ac27a0ecSDave Kleikamp 	 * from the journal and so a subsequent replay can corrupt data.
5423ac27a0ecSDave Kleikamp 	 * So, first we make sure that the journal is empty and that
5424ac27a0ecSDave Kleikamp 	 * nobody is changing anything.
5425ac27a0ecSDave Kleikamp 	 */
5426ac27a0ecSDave Kleikamp 
5427617ba13bSMingming Cao 	journal = EXT4_JOURNAL(inode);
54280390131bSFrank Mayhar 	if (!journal)
54290390131bSFrank Mayhar 		return 0;
5430d699594dSDave Hansen 	if (is_journal_aborted(journal))
5431ac27a0ecSDave Kleikamp 		return -EROFS;
54322aff57b0SYongqiang Yang 	/* We have to allocate physical blocks for delalloc blocks
54332aff57b0SYongqiang Yang 	 * before flushing journal. otherwise delalloc blocks can not
54342aff57b0SYongqiang Yang 	 * be allocated any more. even more truncate on delalloc blocks
54352aff57b0SYongqiang Yang 	 * could trigger BUG by flushing delalloc blocks in journal.
54362aff57b0SYongqiang Yang 	 * There is no delalloc block in non-journal data mode.
54372aff57b0SYongqiang Yang 	 */
54382aff57b0SYongqiang Yang 	if (val && test_opt(inode->i_sb, DELALLOC)) {
54392aff57b0SYongqiang Yang 		err = ext4_alloc_da_blocks(inode);
54402aff57b0SYongqiang Yang 		if (err < 0)
54412aff57b0SYongqiang Yang 			return err;
54422aff57b0SYongqiang Yang 	}
5443ac27a0ecSDave Kleikamp 
544417335dccSDmitry Monakhov 	/* Wait for all existing dio workers */
544517335dccSDmitry Monakhov 	ext4_inode_block_unlocked_dio(inode);
544617335dccSDmitry Monakhov 	inode_dio_wait(inode);
544717335dccSDmitry Monakhov 
5448dab291afSMingming Cao 	jbd2_journal_lock_updates(journal);
5449ac27a0ecSDave Kleikamp 
5450ac27a0ecSDave Kleikamp 	/*
5451ac27a0ecSDave Kleikamp 	 * OK, there are no updates running now, and all cached data is
5452ac27a0ecSDave Kleikamp 	 * synced to disk.  We are now in a completely consistent state
5453ac27a0ecSDave Kleikamp 	 * which doesn't have anything in the journal, and we know that
5454ac27a0ecSDave Kleikamp 	 * no filesystem updates are running, so it is safe to modify
5455ac27a0ecSDave Kleikamp 	 * the inode's in-core data-journaling state flag now.
5456ac27a0ecSDave Kleikamp 	 */
5457ac27a0ecSDave Kleikamp 
5458ac27a0ecSDave Kleikamp 	if (val)
545912e9b892SDmitry Monakhov 		ext4_set_inode_flag(inode, EXT4_INODE_JOURNAL_DATA);
54605872ddaaSYongqiang Yang 	else {
54614f879ca6SJan Kara 		err = jbd2_journal_flush(journal);
54624f879ca6SJan Kara 		if (err < 0) {
54634f879ca6SJan Kara 			jbd2_journal_unlock_updates(journal);
54644f879ca6SJan Kara 			ext4_inode_resume_unlocked_dio(inode);
54654f879ca6SJan Kara 			return err;
54664f879ca6SJan Kara 		}
546712e9b892SDmitry Monakhov 		ext4_clear_inode_flag(inode, EXT4_INODE_JOURNAL_DATA);
54685872ddaaSYongqiang Yang 	}
5469617ba13bSMingming Cao 	ext4_set_aops(inode);
5470ac27a0ecSDave Kleikamp 
5471dab291afSMingming Cao 	jbd2_journal_unlock_updates(journal);
547217335dccSDmitry Monakhov 	ext4_inode_resume_unlocked_dio(inode);
5473ac27a0ecSDave Kleikamp 
5474ac27a0ecSDave Kleikamp 	/* Finally we can mark the inode as dirty. */
5475ac27a0ecSDave Kleikamp 
54769924a92aSTheodore Ts'o 	handle = ext4_journal_start(inode, EXT4_HT_INODE, 1);
5477ac27a0ecSDave Kleikamp 	if (IS_ERR(handle))
5478ac27a0ecSDave Kleikamp 		return PTR_ERR(handle);
5479ac27a0ecSDave Kleikamp 
5480617ba13bSMingming Cao 	err = ext4_mark_inode_dirty(handle, inode);
54810390131bSFrank Mayhar 	ext4_handle_sync(handle);
5482617ba13bSMingming Cao 	ext4_journal_stop(handle);
5483617ba13bSMingming Cao 	ext4_std_error(inode->i_sb, err);
5484ac27a0ecSDave Kleikamp 
5485ac27a0ecSDave Kleikamp 	return err;
5486ac27a0ecSDave Kleikamp }
54872e9ee850SAneesh Kumar K.V 
54882e9ee850SAneesh Kumar K.V static int ext4_bh_unmapped(handle_t *handle, struct buffer_head *bh)
54892e9ee850SAneesh Kumar K.V {
54902e9ee850SAneesh Kumar K.V 	return !buffer_mapped(bh);
54912e9ee850SAneesh Kumar K.V }
54922e9ee850SAneesh Kumar K.V 
5493c2ec175cSNick Piggin int ext4_page_mkwrite(struct vm_area_struct *vma, struct vm_fault *vmf)
54942e9ee850SAneesh Kumar K.V {
5495c2ec175cSNick Piggin 	struct page *page = vmf->page;
54962e9ee850SAneesh Kumar K.V 	loff_t size;
54972e9ee850SAneesh Kumar K.V 	unsigned long len;
54989ea7df53SJan Kara 	int ret;
54992e9ee850SAneesh Kumar K.V 	struct file *file = vma->vm_file;
5500496ad9aaSAl Viro 	struct inode *inode = file_inode(file);
55012e9ee850SAneesh Kumar K.V 	struct address_space *mapping = inode->i_mapping;
55029ea7df53SJan Kara 	handle_t *handle;
55039ea7df53SJan Kara 	get_block_t *get_block;
55049ea7df53SJan Kara 	int retries = 0;
55052e9ee850SAneesh Kumar K.V 
55068e8ad8a5SJan Kara 	sb_start_pagefault(inode->i_sb);
5507041bbb6dSTheodore Ts'o 	file_update_time(vma->vm_file);
5508ea3d7209SJan Kara 
5509ea3d7209SJan Kara 	down_read(&EXT4_I(inode)->i_mmap_sem);
55109ea7df53SJan Kara 	/* Delalloc case is easy... */
55119ea7df53SJan Kara 	if (test_opt(inode->i_sb, DELALLOC) &&
55129ea7df53SJan Kara 	    !ext4_should_journal_data(inode) &&
55139ea7df53SJan Kara 	    !ext4_nonda_switch(inode->i_sb)) {
55149ea7df53SJan Kara 		do {
55155c500029SRoss Zwisler 			ret = block_page_mkwrite(vma, vmf,
55169ea7df53SJan Kara 						   ext4_da_get_block_prep);
55179ea7df53SJan Kara 		} while (ret == -ENOSPC &&
55189ea7df53SJan Kara 		       ext4_should_retry_alloc(inode->i_sb, &retries));
55199ea7df53SJan Kara 		goto out_ret;
55202e9ee850SAneesh Kumar K.V 	}
55210e499890SDarrick J. Wong 
55220e499890SDarrick J. Wong 	lock_page(page);
55239ea7df53SJan Kara 	size = i_size_read(inode);
55249ea7df53SJan Kara 	/* Page got truncated from under us? */
55259ea7df53SJan Kara 	if (page->mapping != mapping || page_offset(page) > size) {
55269ea7df53SJan Kara 		unlock_page(page);
55279ea7df53SJan Kara 		ret = VM_FAULT_NOPAGE;
55289ea7df53SJan Kara 		goto out;
55290e499890SDarrick J. Wong 	}
55302e9ee850SAneesh Kumar K.V 
55312e9ee850SAneesh Kumar K.V 	if (page->index == size >> PAGE_CACHE_SHIFT)
55322e9ee850SAneesh Kumar K.V 		len = size & ~PAGE_CACHE_MASK;
55332e9ee850SAneesh Kumar K.V 	else
55342e9ee850SAneesh Kumar K.V 		len = PAGE_CACHE_SIZE;
5535a827eaffSAneesh Kumar K.V 	/*
55369ea7df53SJan Kara 	 * Return if we have all the buffers mapped. This avoids the need to do
55379ea7df53SJan Kara 	 * journal_start/journal_stop which can block and take a long time
5538a827eaffSAneesh Kumar K.V 	 */
55392e9ee850SAneesh Kumar K.V 	if (page_has_buffers(page)) {
5540f19d5870STao Ma 		if (!ext4_walk_page_buffers(NULL, page_buffers(page),
5541f19d5870STao Ma 					    0, len, NULL,
5542a827eaffSAneesh Kumar K.V 					    ext4_bh_unmapped)) {
55439ea7df53SJan Kara 			/* Wait so that we don't change page under IO */
55441d1d1a76SDarrick J. Wong 			wait_for_stable_page(page);
55459ea7df53SJan Kara 			ret = VM_FAULT_LOCKED;
55469ea7df53SJan Kara 			goto out;
55472e9ee850SAneesh Kumar K.V 		}
5548a827eaffSAneesh Kumar K.V 	}
5549a827eaffSAneesh Kumar K.V 	unlock_page(page);
55509ea7df53SJan Kara 	/* OK, we need to fill the hole... */
55519ea7df53SJan Kara 	if (ext4_should_dioread_nolock(inode))
5552705965bdSJan Kara 		get_block = ext4_get_block_unwritten;
55539ea7df53SJan Kara 	else
55549ea7df53SJan Kara 		get_block = ext4_get_block;
55559ea7df53SJan Kara retry_alloc:
55569924a92aSTheodore Ts'o 	handle = ext4_journal_start(inode, EXT4_HT_WRITE_PAGE,
55579924a92aSTheodore Ts'o 				    ext4_writepage_trans_blocks(inode));
55589ea7df53SJan Kara 	if (IS_ERR(handle)) {
5559c2ec175cSNick Piggin 		ret = VM_FAULT_SIGBUS;
55609ea7df53SJan Kara 		goto out;
55619ea7df53SJan Kara 	}
55625c500029SRoss Zwisler 	ret = block_page_mkwrite(vma, vmf, get_block);
55639ea7df53SJan Kara 	if (!ret && ext4_should_journal_data(inode)) {
5564f19d5870STao Ma 		if (ext4_walk_page_buffers(handle, page_buffers(page), 0,
55659ea7df53SJan Kara 			  PAGE_CACHE_SIZE, NULL, do_journal_get_write_access)) {
55669ea7df53SJan Kara 			unlock_page(page);
55679ea7df53SJan Kara 			ret = VM_FAULT_SIGBUS;
5568fcbb5515SYongqiang Yang 			ext4_journal_stop(handle);
55699ea7df53SJan Kara 			goto out;
55709ea7df53SJan Kara 		}
55719ea7df53SJan Kara 		ext4_set_inode_state(inode, EXT4_STATE_JDATA);
55729ea7df53SJan Kara 	}
55739ea7df53SJan Kara 	ext4_journal_stop(handle);
55749ea7df53SJan Kara 	if (ret == -ENOSPC && ext4_should_retry_alloc(inode->i_sb, &retries))
55759ea7df53SJan Kara 		goto retry_alloc;
55769ea7df53SJan Kara out_ret:
55779ea7df53SJan Kara 	ret = block_page_mkwrite_return(ret);
55789ea7df53SJan Kara out:
5579ea3d7209SJan Kara 	up_read(&EXT4_I(inode)->i_mmap_sem);
55808e8ad8a5SJan Kara 	sb_end_pagefault(inode->i_sb);
55812e9ee850SAneesh Kumar K.V 	return ret;
55822e9ee850SAneesh Kumar K.V }
5583ea3d7209SJan Kara 
5584ea3d7209SJan Kara int ext4_filemap_fault(struct vm_area_struct *vma, struct vm_fault *vmf)
5585ea3d7209SJan Kara {
5586ea3d7209SJan Kara 	struct inode *inode = file_inode(vma->vm_file);
5587ea3d7209SJan Kara 	int err;
5588ea3d7209SJan Kara 
5589ea3d7209SJan Kara 	down_read(&EXT4_I(inode)->i_mmap_sem);
5590ea3d7209SJan Kara 	err = filemap_fault(vma, vmf);
5591ea3d7209SJan Kara 	up_read(&EXT4_I(inode)->i_mmap_sem);
5592ea3d7209SJan Kara 
5593ea3d7209SJan Kara 	return err;
5594ea3d7209SJan Kara }
5595