xref: /openbmc/linux/fs/ext4/inode.c (revision 71d4f7d032149b935a26eb3ff85c6c837f3714e1)
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>
23dab291afSMingming Cao #include <linux/jbd2.h>
24ac27a0ecSDave Kleikamp #include <linux/highuid.h>
25ac27a0ecSDave Kleikamp #include <linux/pagemap.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>
39a8901d34STheodore Ts'o #include <linux/ratelimit.h>
40a27bb332SKent Overstreet #include <linux/aio.h>
4100a1a053STheodore Ts'o #include <linux/bitops.h>
429bffad1eSTheodore Ts'o 
433dcf5451SChristoph Hellwig #include "ext4_jbd2.h"
44ac27a0ecSDave Kleikamp #include "xattr.h"
45ac27a0ecSDave Kleikamp #include "acl.h"
469f125d64STheodore Ts'o #include "truncate.h"
47ac27a0ecSDave Kleikamp 
489bffad1eSTheodore Ts'o #include <trace/events/ext4.h>
499bffad1eSTheodore Ts'o 
50a1d6cc56SAneesh Kumar K.V #define MPAGE_DA_EXTENT_TAIL 0x01
51a1d6cc56SAneesh Kumar K.V 
52814525f4SDarrick J. Wong static __u32 ext4_inode_csum(struct inode *inode, struct ext4_inode *raw,
53814525f4SDarrick J. Wong 			      struct ext4_inode_info *ei)
54814525f4SDarrick J. Wong {
55814525f4SDarrick J. Wong 	struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb);
56814525f4SDarrick J. Wong 	__u16 csum_lo;
57814525f4SDarrick J. Wong 	__u16 csum_hi = 0;
58814525f4SDarrick J. Wong 	__u32 csum;
59814525f4SDarrick J. Wong 
60171a7f21SDmitry Monakhov 	csum_lo = le16_to_cpu(raw->i_checksum_lo);
61814525f4SDarrick J. Wong 	raw->i_checksum_lo = 0;
62814525f4SDarrick J. Wong 	if (EXT4_INODE_SIZE(inode->i_sb) > EXT4_GOOD_OLD_INODE_SIZE &&
63814525f4SDarrick J. Wong 	    EXT4_FITS_IN_INODE(raw, ei, i_checksum_hi)) {
64171a7f21SDmitry Monakhov 		csum_hi = le16_to_cpu(raw->i_checksum_hi);
65814525f4SDarrick J. Wong 		raw->i_checksum_hi = 0;
66814525f4SDarrick J. Wong 	}
67814525f4SDarrick J. Wong 
68814525f4SDarrick J. Wong 	csum = ext4_chksum(sbi, ei->i_csum_seed, (__u8 *)raw,
69814525f4SDarrick J. Wong 			   EXT4_INODE_SIZE(inode->i_sb));
70814525f4SDarrick J. Wong 
71171a7f21SDmitry Monakhov 	raw->i_checksum_lo = cpu_to_le16(csum_lo);
72814525f4SDarrick J. Wong 	if (EXT4_INODE_SIZE(inode->i_sb) > EXT4_GOOD_OLD_INODE_SIZE &&
73814525f4SDarrick J. Wong 	    EXT4_FITS_IN_INODE(raw, ei, i_checksum_hi))
74171a7f21SDmitry Monakhov 		raw->i_checksum_hi = cpu_to_le16(csum_hi);
75814525f4SDarrick J. Wong 
76814525f4SDarrick J. Wong 	return csum;
77814525f4SDarrick J. Wong }
78814525f4SDarrick J. Wong 
79814525f4SDarrick J. Wong static int ext4_inode_csum_verify(struct inode *inode, struct ext4_inode *raw,
80814525f4SDarrick J. Wong 				  struct ext4_inode_info *ei)
81814525f4SDarrick J. Wong {
82814525f4SDarrick J. Wong 	__u32 provided, calculated;
83814525f4SDarrick J. Wong 
84814525f4SDarrick J. Wong 	if (EXT4_SB(inode->i_sb)->s_es->s_creator_os !=
85814525f4SDarrick J. Wong 	    cpu_to_le32(EXT4_OS_LINUX) ||
86814525f4SDarrick J. Wong 	    !EXT4_HAS_RO_COMPAT_FEATURE(inode->i_sb,
87814525f4SDarrick J. Wong 		EXT4_FEATURE_RO_COMPAT_METADATA_CSUM))
88814525f4SDarrick J. Wong 		return 1;
89814525f4SDarrick J. Wong 
90814525f4SDarrick J. Wong 	provided = le16_to_cpu(raw->i_checksum_lo);
91814525f4SDarrick J. Wong 	calculated = ext4_inode_csum(inode, raw, ei);
92814525f4SDarrick J. Wong 	if (EXT4_INODE_SIZE(inode->i_sb) > EXT4_GOOD_OLD_INODE_SIZE &&
93814525f4SDarrick J. Wong 	    EXT4_FITS_IN_INODE(raw, ei, i_checksum_hi))
94814525f4SDarrick J. Wong 		provided |= ((__u32)le16_to_cpu(raw->i_checksum_hi)) << 16;
95814525f4SDarrick J. Wong 	else
96814525f4SDarrick J. Wong 		calculated &= 0xFFFF;
97814525f4SDarrick J. Wong 
98814525f4SDarrick J. Wong 	return provided == calculated;
99814525f4SDarrick J. Wong }
100814525f4SDarrick J. Wong 
101814525f4SDarrick J. Wong static void ext4_inode_csum_set(struct inode *inode, struct ext4_inode *raw,
102814525f4SDarrick J. Wong 				struct ext4_inode_info *ei)
103814525f4SDarrick J. Wong {
104814525f4SDarrick J. Wong 	__u32 csum;
105814525f4SDarrick J. Wong 
106814525f4SDarrick J. Wong 	if (EXT4_SB(inode->i_sb)->s_es->s_creator_os !=
107814525f4SDarrick J. Wong 	    cpu_to_le32(EXT4_OS_LINUX) ||
108814525f4SDarrick J. Wong 	    !EXT4_HAS_RO_COMPAT_FEATURE(inode->i_sb,
109814525f4SDarrick J. Wong 		EXT4_FEATURE_RO_COMPAT_METADATA_CSUM))
110814525f4SDarrick J. Wong 		return;
111814525f4SDarrick J. Wong 
112814525f4SDarrick J. Wong 	csum = ext4_inode_csum(inode, raw, ei);
113814525f4SDarrick J. Wong 	raw->i_checksum_lo = cpu_to_le16(csum & 0xFFFF);
114814525f4SDarrick J. Wong 	if (EXT4_INODE_SIZE(inode->i_sb) > EXT4_GOOD_OLD_INODE_SIZE &&
115814525f4SDarrick J. Wong 	    EXT4_FITS_IN_INODE(raw, ei, i_checksum_hi))
116814525f4SDarrick J. Wong 		raw->i_checksum_hi = cpu_to_le16(csum >> 16);
117814525f4SDarrick J. Wong }
118814525f4SDarrick J. Wong 
119678aaf48SJan Kara static inline int ext4_begin_ordered_truncate(struct inode *inode,
120678aaf48SJan Kara 					      loff_t new_size)
121678aaf48SJan Kara {
1227ff9c073STheodore Ts'o 	trace_ext4_begin_ordered_truncate(inode, new_size);
1238aefcd55STheodore Ts'o 	/*
1248aefcd55STheodore Ts'o 	 * If jinode is zero, then we never opened the file for
1258aefcd55STheodore Ts'o 	 * writing, so there's no need to call
1268aefcd55STheodore Ts'o 	 * jbd2_journal_begin_ordered_truncate() since there's no
1278aefcd55STheodore Ts'o 	 * outstanding writes we need to flush.
1288aefcd55STheodore Ts'o 	 */
1298aefcd55STheodore Ts'o 	if (!EXT4_I(inode)->jinode)
1308aefcd55STheodore Ts'o 		return 0;
1318aefcd55STheodore Ts'o 	return jbd2_journal_begin_ordered_truncate(EXT4_JOURNAL(inode),
1328aefcd55STheodore Ts'o 						   EXT4_I(inode)->jinode,
133678aaf48SJan Kara 						   new_size);
134678aaf48SJan Kara }
135678aaf48SJan Kara 
136d47992f8SLukas Czerner static void ext4_invalidatepage(struct page *page, unsigned int offset,
137d47992f8SLukas Czerner 				unsigned int length);
138cb20d518STheodore Ts'o static int __ext4_journalled_writepage(struct page *page, unsigned int len);
139cb20d518STheodore Ts'o static int ext4_bh_delay_or_unwritten(handle_t *handle, struct buffer_head *bh);
140fffb2739SJan Kara static int ext4_meta_trans_blocks(struct inode *inode, int lblocks,
141fffb2739SJan Kara 				  int pextents);
14264769240SAlex Tomas 
143ac27a0ecSDave Kleikamp /*
144ac27a0ecSDave Kleikamp  * Test whether an inode is a fast symlink.
145ac27a0ecSDave Kleikamp  */
146617ba13bSMingming Cao static int ext4_inode_is_fast_symlink(struct inode *inode)
147ac27a0ecSDave Kleikamp {
148617ba13bSMingming Cao         int ea_blocks = EXT4_I(inode)->i_file_acl ?
14965eddb56SYongqiang Yang 		EXT4_CLUSTER_SIZE(inode->i_sb) >> 9 : 0;
150ac27a0ecSDave Kleikamp 
151bd9db175SZheng Liu 	if (ext4_has_inline_data(inode))
152bd9db175SZheng Liu 		return 0;
153bd9db175SZheng Liu 
154ac27a0ecSDave Kleikamp 	return (S_ISLNK(inode->i_mode) && inode->i_blocks - ea_blocks == 0);
155ac27a0ecSDave Kleikamp }
156ac27a0ecSDave Kleikamp 
157ac27a0ecSDave Kleikamp /*
158ac27a0ecSDave Kleikamp  * Restart the transaction associated with *handle.  This does a commit,
159ac27a0ecSDave Kleikamp  * so before we call here everything must be consistently dirtied against
160ac27a0ecSDave Kleikamp  * this transaction.
161ac27a0ecSDave Kleikamp  */
162487caeefSJan Kara int ext4_truncate_restart_trans(handle_t *handle, struct inode *inode,
163487caeefSJan Kara 				 int nblocks)
164ac27a0ecSDave Kleikamp {
165487caeefSJan Kara 	int ret;
166487caeefSJan Kara 
167487caeefSJan Kara 	/*
168e35fd660STheodore Ts'o 	 * Drop i_data_sem to avoid deadlock with ext4_map_blocks.  At this
169487caeefSJan Kara 	 * moment, get_block can be called only for blocks inside i_size since
170487caeefSJan Kara 	 * page cache has been already dropped and writes are blocked by
171487caeefSJan Kara 	 * i_mutex. So we can safely drop the i_data_sem here.
172487caeefSJan Kara 	 */
1730390131bSFrank Mayhar 	BUG_ON(EXT4_JOURNAL(inode) == NULL);
174ac27a0ecSDave Kleikamp 	jbd_debug(2, "restarting handle %p\n", handle);
175487caeefSJan Kara 	up_write(&EXT4_I(inode)->i_data_sem);
1768e8eaabeSAmir Goldstein 	ret = ext4_journal_restart(handle, nblocks);
177487caeefSJan Kara 	down_write(&EXT4_I(inode)->i_data_sem);
178fa5d1113SAneesh Kumar K.V 	ext4_discard_preallocations(inode);
179487caeefSJan Kara 
180487caeefSJan Kara 	return ret;
181ac27a0ecSDave Kleikamp }
182ac27a0ecSDave Kleikamp 
183ac27a0ecSDave Kleikamp /*
184ac27a0ecSDave Kleikamp  * Called at the last iput() if i_nlink is zero.
185ac27a0ecSDave Kleikamp  */
1860930fcc1SAl Viro void ext4_evict_inode(struct inode *inode)
187ac27a0ecSDave Kleikamp {
188ac27a0ecSDave Kleikamp 	handle_t *handle;
189bc965ab3STheodore Ts'o 	int err;
190ac27a0ecSDave Kleikamp 
1917ff9c073STheodore Ts'o 	trace_ext4_evict_inode(inode);
1922581fdc8SJiaying Zhang 
1930930fcc1SAl Viro 	if (inode->i_nlink) {
1942d859db3SJan Kara 		/*
1952d859db3SJan Kara 		 * When journalling data dirty buffers are tracked only in the
1962d859db3SJan Kara 		 * journal. So although mm thinks everything is clean and
1972d859db3SJan Kara 		 * ready for reaping the inode might still have some pages to
1982d859db3SJan Kara 		 * write in the running transaction or waiting to be
1992d859db3SJan Kara 		 * checkpointed. Thus calling jbd2_journal_invalidatepage()
2002d859db3SJan Kara 		 * (via truncate_inode_pages()) to discard these buffers can
2012d859db3SJan Kara 		 * cause data loss. Also even if we did not discard these
2022d859db3SJan Kara 		 * buffers, we would have no way to find them after the inode
2032d859db3SJan Kara 		 * is reaped and thus user could see stale data if he tries to
2042d859db3SJan Kara 		 * read them before the transaction is checkpointed. So be
2052d859db3SJan Kara 		 * careful and force everything to disk here... We use
2062d859db3SJan Kara 		 * ei->i_datasync_tid to store the newest transaction
2072d859db3SJan Kara 		 * containing inode's data.
2082d859db3SJan Kara 		 *
2092d859db3SJan Kara 		 * Note that directories do not have this problem because they
2102d859db3SJan Kara 		 * don't use page cache.
2112d859db3SJan Kara 		 */
2122d859db3SJan Kara 		if (ext4_should_journal_data(inode) &&
2132b405bfaSTheodore Ts'o 		    (S_ISLNK(inode->i_mode) || S_ISREG(inode->i_mode)) &&
2142b405bfaSTheodore Ts'o 		    inode->i_ino != EXT4_JOURNAL_INO) {
2152d859db3SJan Kara 			journal_t *journal = EXT4_SB(inode->i_sb)->s_journal;
2162d859db3SJan Kara 			tid_t commit_tid = EXT4_I(inode)->i_datasync_tid;
2172d859db3SJan Kara 
218d76a3a77STheodore Ts'o 			jbd2_complete_transaction(journal, commit_tid);
2192d859db3SJan Kara 			filemap_write_and_wait(&inode->i_data);
2202d859db3SJan Kara 		}
22191b0abe3SJohannes Weiner 		truncate_inode_pages_final(&inode->i_data);
2225dc23bddSJan Kara 
2235dc23bddSJan Kara 		WARN_ON(atomic_read(&EXT4_I(inode)->i_ioend_count));
2240930fcc1SAl Viro 		goto no_delete;
2250930fcc1SAl Viro 	}
2260930fcc1SAl Viro 
227907f4554SChristoph Hellwig 	if (!is_bad_inode(inode))
228871a2931SChristoph Hellwig 		dquot_initialize(inode);
229907f4554SChristoph Hellwig 
230678aaf48SJan Kara 	if (ext4_should_order_data(inode))
231678aaf48SJan Kara 		ext4_begin_ordered_truncate(inode, 0);
23291b0abe3SJohannes Weiner 	truncate_inode_pages_final(&inode->i_data);
233ac27a0ecSDave Kleikamp 
2345dc23bddSJan Kara 	WARN_ON(atomic_read(&EXT4_I(inode)->i_ioend_count));
235ac27a0ecSDave Kleikamp 	if (is_bad_inode(inode))
236ac27a0ecSDave Kleikamp 		goto no_delete;
237ac27a0ecSDave Kleikamp 
2388e8ad8a5SJan Kara 	/*
2398e8ad8a5SJan Kara 	 * Protect us against freezing - iput() caller didn't have to have any
2408e8ad8a5SJan Kara 	 * protection against it
2418e8ad8a5SJan Kara 	 */
2428e8ad8a5SJan Kara 	sb_start_intwrite(inode->i_sb);
2439924a92aSTheodore Ts'o 	handle = ext4_journal_start(inode, EXT4_HT_TRUNCATE,
2449924a92aSTheodore Ts'o 				    ext4_blocks_for_truncate(inode)+3);
245ac27a0ecSDave Kleikamp 	if (IS_ERR(handle)) {
246bc965ab3STheodore Ts'o 		ext4_std_error(inode->i_sb, PTR_ERR(handle));
247ac27a0ecSDave Kleikamp 		/*
248ac27a0ecSDave Kleikamp 		 * If we're going to skip the normal cleanup, we still need to
249ac27a0ecSDave Kleikamp 		 * make sure that the in-core orphan linked list is properly
250ac27a0ecSDave Kleikamp 		 * cleaned up.
251ac27a0ecSDave Kleikamp 		 */
252617ba13bSMingming Cao 		ext4_orphan_del(NULL, inode);
2538e8ad8a5SJan Kara 		sb_end_intwrite(inode->i_sb);
254ac27a0ecSDave Kleikamp 		goto no_delete;
255ac27a0ecSDave Kleikamp 	}
256ac27a0ecSDave Kleikamp 
257ac27a0ecSDave Kleikamp 	if (IS_SYNC(inode))
2580390131bSFrank Mayhar 		ext4_handle_sync(handle);
259ac27a0ecSDave Kleikamp 	inode->i_size = 0;
260bc965ab3STheodore Ts'o 	err = ext4_mark_inode_dirty(handle, inode);
261bc965ab3STheodore Ts'o 	if (err) {
26212062dddSEric Sandeen 		ext4_warning(inode->i_sb,
263bc965ab3STheodore Ts'o 			     "couldn't mark inode dirty (err %d)", err);
264bc965ab3STheodore Ts'o 		goto stop_handle;
265bc965ab3STheodore Ts'o 	}
266ac27a0ecSDave Kleikamp 	if (inode->i_blocks)
267617ba13bSMingming Cao 		ext4_truncate(inode);
268bc965ab3STheodore Ts'o 
269bc965ab3STheodore Ts'o 	/*
270bc965ab3STheodore Ts'o 	 * ext4_ext_truncate() doesn't reserve any slop when it
271bc965ab3STheodore Ts'o 	 * restarts journal transactions; therefore there may not be
272bc965ab3STheodore Ts'o 	 * enough credits left in the handle to remove the inode from
273bc965ab3STheodore Ts'o 	 * the orphan list and set the dtime field.
274bc965ab3STheodore Ts'o 	 */
2750390131bSFrank Mayhar 	if (!ext4_handle_has_enough_credits(handle, 3)) {
276bc965ab3STheodore Ts'o 		err = ext4_journal_extend(handle, 3);
277bc965ab3STheodore Ts'o 		if (err > 0)
278bc965ab3STheodore Ts'o 			err = ext4_journal_restart(handle, 3);
279bc965ab3STheodore Ts'o 		if (err != 0) {
28012062dddSEric Sandeen 			ext4_warning(inode->i_sb,
281bc965ab3STheodore Ts'o 				     "couldn't extend journal (err %d)", err);
282bc965ab3STheodore Ts'o 		stop_handle:
283bc965ab3STheodore Ts'o 			ext4_journal_stop(handle);
28445388219STheodore Ts'o 			ext4_orphan_del(NULL, inode);
2858e8ad8a5SJan Kara 			sb_end_intwrite(inode->i_sb);
286bc965ab3STheodore Ts'o 			goto no_delete;
287bc965ab3STheodore Ts'o 		}
288bc965ab3STheodore Ts'o 	}
289bc965ab3STheodore Ts'o 
290ac27a0ecSDave Kleikamp 	/*
291617ba13bSMingming Cao 	 * Kill off the orphan record which ext4_truncate created.
292ac27a0ecSDave Kleikamp 	 * AKPM: I think this can be inside the above `if'.
293617ba13bSMingming Cao 	 * Note that ext4_orphan_del() has to be able to cope with the
294ac27a0ecSDave Kleikamp 	 * deletion of a non-existent orphan - this is because we don't
295617ba13bSMingming Cao 	 * know if ext4_truncate() actually created an orphan record.
296ac27a0ecSDave Kleikamp 	 * (Well, we could do this if we need to, but heck - it works)
297ac27a0ecSDave Kleikamp 	 */
298617ba13bSMingming Cao 	ext4_orphan_del(handle, inode);
299617ba13bSMingming Cao 	EXT4_I(inode)->i_dtime	= get_seconds();
300ac27a0ecSDave Kleikamp 
301ac27a0ecSDave Kleikamp 	/*
302ac27a0ecSDave Kleikamp 	 * One subtle ordering requirement: if anything has gone wrong
303ac27a0ecSDave Kleikamp 	 * (transaction abort, IO errors, whatever), then we can still
304ac27a0ecSDave Kleikamp 	 * do these next steps (the fs will already have been marked as
305ac27a0ecSDave Kleikamp 	 * having errors), but we can't free the inode if the mark_dirty
306ac27a0ecSDave Kleikamp 	 * fails.
307ac27a0ecSDave Kleikamp 	 */
308617ba13bSMingming Cao 	if (ext4_mark_inode_dirty(handle, inode))
309ac27a0ecSDave Kleikamp 		/* If that failed, just do the required in-core inode clear. */
3100930fcc1SAl Viro 		ext4_clear_inode(inode);
311ac27a0ecSDave Kleikamp 	else
312617ba13bSMingming Cao 		ext4_free_inode(handle, inode);
313617ba13bSMingming Cao 	ext4_journal_stop(handle);
3148e8ad8a5SJan Kara 	sb_end_intwrite(inode->i_sb);
315ac27a0ecSDave Kleikamp 	return;
316ac27a0ecSDave Kleikamp no_delete:
3170930fcc1SAl Viro 	ext4_clear_inode(inode);	/* We must guarantee clearing of inode... */
318ac27a0ecSDave Kleikamp }
319ac27a0ecSDave Kleikamp 
320a9e7f447SDmitry Monakhov #ifdef CONFIG_QUOTA
321a9e7f447SDmitry Monakhov qsize_t *ext4_get_reserved_space(struct inode *inode)
32260e58e0fSMingming Cao {
323a9e7f447SDmitry Monakhov 	return &EXT4_I(inode)->i_reserved_quota;
32460e58e0fSMingming Cao }
325a9e7f447SDmitry Monakhov #endif
3269d0be502STheodore Ts'o 
32712219aeaSAneesh Kumar K.V /*
3280637c6f4STheodore Ts'o  * Called with i_data_sem down, which is important since we can call
3290637c6f4STheodore Ts'o  * ext4_discard_preallocations() from here.
3300637c6f4STheodore Ts'o  */
3315f634d06SAneesh Kumar K.V void ext4_da_update_reserve_space(struct inode *inode,
3325f634d06SAneesh Kumar K.V 					int used, int quota_claim)
33312219aeaSAneesh Kumar K.V {
33412219aeaSAneesh Kumar K.V 	struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb);
3350637c6f4STheodore Ts'o 	struct ext4_inode_info *ei = EXT4_I(inode);
33612219aeaSAneesh Kumar K.V 
3370637c6f4STheodore Ts'o 	spin_lock(&ei->i_block_reservation_lock);
338d8990240SAditya Kali 	trace_ext4_da_update_reserve_space(inode, used, quota_claim);
3390637c6f4STheodore Ts'o 	if (unlikely(used > ei->i_reserved_data_blocks)) {
3408de5c325STheodore Ts'o 		ext4_warning(inode->i_sb, "%s: ino %lu, used %d "
3411084f252STheodore Ts'o 			 "with only %d reserved data blocks",
3420637c6f4STheodore Ts'o 			 __func__, inode->i_ino, used,
3430637c6f4STheodore Ts'o 			 ei->i_reserved_data_blocks);
3440637c6f4STheodore Ts'o 		WARN_ON(1);
3450637c6f4STheodore Ts'o 		used = ei->i_reserved_data_blocks;
3466bc6e63fSAneesh Kumar K.V 	}
34712219aeaSAneesh Kumar K.V 
3480637c6f4STheodore Ts'o 	/* Update per-inode reservations */
3490637c6f4STheodore Ts'o 	ei->i_reserved_data_blocks -= used;
350*71d4f7d0STheodore Ts'o 	percpu_counter_sub(&sbi->s_dirtyclusters_counter, used);
3510637c6f4STheodore Ts'o 
35212219aeaSAneesh Kumar K.V 	spin_unlock(&EXT4_I(inode)->i_block_reservation_lock);
35360e58e0fSMingming Cao 
35472b8ab9dSEric Sandeen 	/* Update quota subsystem for data blocks */
35572b8ab9dSEric Sandeen 	if (quota_claim)
3567b415bf6SAditya Kali 		dquot_claim_block(inode, EXT4_C2B(sbi, used));
35772b8ab9dSEric Sandeen 	else {
3585f634d06SAneesh Kumar K.V 		/*
3595f634d06SAneesh Kumar K.V 		 * We did fallocate with an offset that is already delayed
3605f634d06SAneesh Kumar K.V 		 * allocated. So on delayed allocated writeback we should
36172b8ab9dSEric Sandeen 		 * not re-claim the quota for fallocated blocks.
3625f634d06SAneesh Kumar K.V 		 */
3637b415bf6SAditya Kali 		dquot_release_reservation_block(inode, EXT4_C2B(sbi, used));
3645f634d06SAneesh Kumar K.V 	}
365d6014301SAneesh Kumar K.V 
366d6014301SAneesh Kumar K.V 	/*
367d6014301SAneesh Kumar K.V 	 * If we have done all the pending block allocations and if
368d6014301SAneesh Kumar K.V 	 * there aren't any writers on the inode, we can discard the
369d6014301SAneesh Kumar K.V 	 * inode's preallocations.
370d6014301SAneesh Kumar K.V 	 */
3710637c6f4STheodore Ts'o 	if ((ei->i_reserved_data_blocks == 0) &&
3720637c6f4STheodore Ts'o 	    (atomic_read(&inode->i_writecount) == 0))
373d6014301SAneesh Kumar K.V 		ext4_discard_preallocations(inode);
37412219aeaSAneesh Kumar K.V }
37512219aeaSAneesh Kumar K.V 
376e29136f8STheodore Ts'o static int __check_block_validity(struct inode *inode, const char *func,
377c398eda0STheodore Ts'o 				unsigned int line,
37824676da4STheodore Ts'o 				struct ext4_map_blocks *map)
3796fd058f7STheodore Ts'o {
38024676da4STheodore Ts'o 	if (!ext4_data_block_valid(EXT4_SB(inode->i_sb), map->m_pblk,
38124676da4STheodore Ts'o 				   map->m_len)) {
382c398eda0STheodore Ts'o 		ext4_error_inode(inode, func, line, map->m_pblk,
383c398eda0STheodore Ts'o 				 "lblock %lu mapped to illegal pblock "
38424676da4STheodore Ts'o 				 "(length %d)", (unsigned long) map->m_lblk,
385c398eda0STheodore Ts'o 				 map->m_len);
3866fd058f7STheodore Ts'o 		return -EIO;
3876fd058f7STheodore Ts'o 	}
3886fd058f7STheodore Ts'o 	return 0;
3896fd058f7STheodore Ts'o }
3906fd058f7STheodore Ts'o 
391e29136f8STheodore Ts'o #define check_block_validity(inode, map)	\
392c398eda0STheodore Ts'o 	__check_block_validity((inode), __func__, __LINE__, (map))
393e29136f8STheodore Ts'o 
394921f266bSDmitry Monakhov #ifdef ES_AGGRESSIVE_TEST
395921f266bSDmitry Monakhov static void ext4_map_blocks_es_recheck(handle_t *handle,
396921f266bSDmitry Monakhov 				       struct inode *inode,
397921f266bSDmitry Monakhov 				       struct ext4_map_blocks *es_map,
398921f266bSDmitry Monakhov 				       struct ext4_map_blocks *map,
399921f266bSDmitry Monakhov 				       int flags)
400921f266bSDmitry Monakhov {
401921f266bSDmitry Monakhov 	int retval;
402921f266bSDmitry Monakhov 
403921f266bSDmitry Monakhov 	map->m_flags = 0;
404921f266bSDmitry Monakhov 	/*
405921f266bSDmitry Monakhov 	 * There is a race window that the result is not the same.
406921f266bSDmitry Monakhov 	 * e.g. xfstests #223 when dioread_nolock enables.  The reason
407921f266bSDmitry Monakhov 	 * is that we lookup a block mapping in extent status tree with
408921f266bSDmitry Monakhov 	 * out taking i_data_sem.  So at the time the unwritten extent
409921f266bSDmitry Monakhov 	 * could be converted.
410921f266bSDmitry Monakhov 	 */
411921f266bSDmitry Monakhov 	if (!(flags & EXT4_GET_BLOCKS_NO_LOCK))
412c8b459f4SLukas Czerner 		down_read(&EXT4_I(inode)->i_data_sem);
413921f266bSDmitry Monakhov 	if (ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS)) {
414921f266bSDmitry Monakhov 		retval = ext4_ext_map_blocks(handle, inode, map, flags &
415921f266bSDmitry Monakhov 					     EXT4_GET_BLOCKS_KEEP_SIZE);
416921f266bSDmitry Monakhov 	} else {
417921f266bSDmitry Monakhov 		retval = ext4_ind_map_blocks(handle, inode, map, flags &
418921f266bSDmitry Monakhov 					     EXT4_GET_BLOCKS_KEEP_SIZE);
419921f266bSDmitry Monakhov 	}
420921f266bSDmitry Monakhov 	if (!(flags & EXT4_GET_BLOCKS_NO_LOCK))
421921f266bSDmitry Monakhov 		up_read((&EXT4_I(inode)->i_data_sem));
422921f266bSDmitry Monakhov 	/*
423921f266bSDmitry Monakhov 	 * Clear EXT4_MAP_FROM_CLUSTER and EXT4_MAP_BOUNDARY flag
424921f266bSDmitry Monakhov 	 * because it shouldn't be marked in es_map->m_flags.
425921f266bSDmitry Monakhov 	 */
426921f266bSDmitry Monakhov 	map->m_flags &= ~(EXT4_MAP_FROM_CLUSTER | EXT4_MAP_BOUNDARY);
427921f266bSDmitry Monakhov 
428921f266bSDmitry Monakhov 	/*
429921f266bSDmitry Monakhov 	 * We don't check m_len because extent will be collpased in status
430921f266bSDmitry Monakhov 	 * tree.  So the m_len might not equal.
431921f266bSDmitry Monakhov 	 */
432921f266bSDmitry Monakhov 	if (es_map->m_lblk != map->m_lblk ||
433921f266bSDmitry Monakhov 	    es_map->m_flags != map->m_flags ||
434921f266bSDmitry Monakhov 	    es_map->m_pblk != map->m_pblk) {
435bdafe42aSTheodore Ts'o 		printk("ES cache assertion failed for inode: %lu "
436921f266bSDmitry Monakhov 		       "es_cached ex [%d/%d/%llu/%x] != "
437921f266bSDmitry Monakhov 		       "found ex [%d/%d/%llu/%x] retval %d flags %x\n",
438921f266bSDmitry Monakhov 		       inode->i_ino, es_map->m_lblk, es_map->m_len,
439921f266bSDmitry Monakhov 		       es_map->m_pblk, es_map->m_flags, map->m_lblk,
440921f266bSDmitry Monakhov 		       map->m_len, map->m_pblk, map->m_flags,
441921f266bSDmitry Monakhov 		       retval, flags);
442921f266bSDmitry Monakhov 	}
443921f266bSDmitry Monakhov }
444921f266bSDmitry Monakhov #endif /* ES_AGGRESSIVE_TEST */
445921f266bSDmitry Monakhov 
44655138e0bSTheodore Ts'o /*
447e35fd660STheodore Ts'o  * The ext4_map_blocks() function tries to look up the requested blocks,
4482b2d6d01STheodore Ts'o  * and returns if the blocks are already mapped.
449f5ab0d1fSMingming Cao  *
450f5ab0d1fSMingming Cao  * Otherwise it takes the write lock of the i_data_sem and allocate blocks
451f5ab0d1fSMingming Cao  * and store the allocated blocks in the result buffer head and mark it
452f5ab0d1fSMingming Cao  * mapped.
453f5ab0d1fSMingming Cao  *
454e35fd660STheodore Ts'o  * If file type is extents based, it will call ext4_ext_map_blocks(),
455e35fd660STheodore Ts'o  * Otherwise, call with ext4_ind_map_blocks() to handle indirect mapping
456f5ab0d1fSMingming Cao  * based files
457f5ab0d1fSMingming Cao  *
458556615dcSLukas Czerner  * On success, it returns the number of blocks being mapped or allocated.
459556615dcSLukas Czerner  * if create==0 and the blocks are pre-allocated and unwritten block,
460f5ab0d1fSMingming Cao  * the result buffer head is unmapped. If the create ==1, it will make sure
461f5ab0d1fSMingming Cao  * the buffer head is mapped.
462f5ab0d1fSMingming Cao  *
463f5ab0d1fSMingming Cao  * It returns 0 if plain look up failed (blocks have not been allocated), in
464df3ab170STao Ma  * that case, buffer head is unmapped
465f5ab0d1fSMingming Cao  *
466f5ab0d1fSMingming Cao  * It returns the error in case of allocation failure.
467f5ab0d1fSMingming Cao  */
468e35fd660STheodore Ts'o int ext4_map_blocks(handle_t *handle, struct inode *inode,
469e35fd660STheodore Ts'o 		    struct ext4_map_blocks *map, int flags)
4700e855ac8SAneesh Kumar K.V {
471d100eef2SZheng Liu 	struct extent_status es;
4720e855ac8SAneesh Kumar K.V 	int retval;
473b8a86845SLukas Czerner 	int ret = 0;
474921f266bSDmitry Monakhov #ifdef ES_AGGRESSIVE_TEST
475921f266bSDmitry Monakhov 	struct ext4_map_blocks orig_map;
476921f266bSDmitry Monakhov 
477921f266bSDmitry Monakhov 	memcpy(&orig_map, map, sizeof(*map));
478921f266bSDmitry Monakhov #endif
479f5ab0d1fSMingming Cao 
480e35fd660STheodore Ts'o 	map->m_flags = 0;
481e35fd660STheodore Ts'o 	ext_debug("ext4_map_blocks(): inode %lu, flag %d, max_blocks %u,"
482e35fd660STheodore Ts'o 		  "logical block %lu\n", inode->i_ino, flags, map->m_len,
483e35fd660STheodore Ts'o 		  (unsigned long) map->m_lblk);
484d100eef2SZheng Liu 
485e861b5e9STheodore Ts'o 	/*
486e861b5e9STheodore Ts'o 	 * ext4_map_blocks returns an int, and m_len is an unsigned int
487e861b5e9STheodore Ts'o 	 */
488e861b5e9STheodore Ts'o 	if (unlikely(map->m_len > INT_MAX))
489e861b5e9STheodore Ts'o 		map->m_len = INT_MAX;
490e861b5e9STheodore Ts'o 
4914adb6ab3SKazuya Mio 	/* We can handle the block number less than EXT_MAX_BLOCKS */
4924adb6ab3SKazuya Mio 	if (unlikely(map->m_lblk >= EXT_MAX_BLOCKS))
4934adb6ab3SKazuya Mio 		return -EIO;
4944adb6ab3SKazuya Mio 
495d100eef2SZheng Liu 	/* Lookup extent status tree firstly */
496d100eef2SZheng Liu 	if (ext4_es_lookup_extent(inode, map->m_lblk, &es)) {
49763b99968STheodore Ts'o 		ext4_es_lru_add(inode);
498d100eef2SZheng Liu 		if (ext4_es_is_written(&es) || ext4_es_is_unwritten(&es)) {
499d100eef2SZheng Liu 			map->m_pblk = ext4_es_pblock(&es) +
500d100eef2SZheng Liu 					map->m_lblk - es.es_lblk;
501d100eef2SZheng Liu 			map->m_flags |= ext4_es_is_written(&es) ?
502d100eef2SZheng Liu 					EXT4_MAP_MAPPED : EXT4_MAP_UNWRITTEN;
503d100eef2SZheng Liu 			retval = es.es_len - (map->m_lblk - es.es_lblk);
504d100eef2SZheng Liu 			if (retval > map->m_len)
505d100eef2SZheng Liu 				retval = map->m_len;
506d100eef2SZheng Liu 			map->m_len = retval;
507d100eef2SZheng Liu 		} else if (ext4_es_is_delayed(&es) || ext4_es_is_hole(&es)) {
508d100eef2SZheng Liu 			retval = 0;
509d100eef2SZheng Liu 		} else {
510d100eef2SZheng Liu 			BUG_ON(1);
511d100eef2SZheng Liu 		}
512921f266bSDmitry Monakhov #ifdef ES_AGGRESSIVE_TEST
513921f266bSDmitry Monakhov 		ext4_map_blocks_es_recheck(handle, inode, map,
514921f266bSDmitry Monakhov 					   &orig_map, flags);
515921f266bSDmitry Monakhov #endif
516d100eef2SZheng Liu 		goto found;
517d100eef2SZheng Liu 	}
518d100eef2SZheng Liu 
5194df3d265SAneesh Kumar K.V 	/*
520b920c755STheodore Ts'o 	 * Try to see if we can get the block without requesting a new
521b920c755STheodore Ts'o 	 * file system block.
5224df3d265SAneesh Kumar K.V 	 */
523729f52c6SZheng Liu 	if (!(flags & EXT4_GET_BLOCKS_NO_LOCK))
524c8b459f4SLukas Czerner 		down_read(&EXT4_I(inode)->i_data_sem);
52512e9b892SDmitry Monakhov 	if (ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS)) {
526a4e5d88bSDmitry Monakhov 		retval = ext4_ext_map_blocks(handle, inode, map, flags &
527a4e5d88bSDmitry Monakhov 					     EXT4_GET_BLOCKS_KEEP_SIZE);
5284df3d265SAneesh Kumar K.V 	} else {
529a4e5d88bSDmitry Monakhov 		retval = ext4_ind_map_blocks(handle, inode, map, flags &
530a4e5d88bSDmitry Monakhov 					     EXT4_GET_BLOCKS_KEEP_SIZE);
5310e855ac8SAneesh Kumar K.V 	}
532f7fec032SZheng Liu 	if (retval > 0) {
5333be78c73STheodore Ts'o 		unsigned int status;
534f7fec032SZheng Liu 
53544fb851dSZheng Liu 		if (unlikely(retval != map->m_len)) {
53644fb851dSZheng Liu 			ext4_warning(inode->i_sb,
53744fb851dSZheng Liu 				     "ES len assertion failed for inode "
53844fb851dSZheng Liu 				     "%lu: retval %d != map->m_len %d",
53944fb851dSZheng Liu 				     inode->i_ino, retval, map->m_len);
54044fb851dSZheng Liu 			WARN_ON(1);
541921f266bSDmitry Monakhov 		}
542921f266bSDmitry Monakhov 
543f7fec032SZheng Liu 		status = map->m_flags & EXT4_MAP_UNWRITTEN ?
544f7fec032SZheng Liu 				EXTENT_STATUS_UNWRITTEN : EXTENT_STATUS_WRITTEN;
545f7fec032SZheng Liu 		if (!(flags & EXT4_GET_BLOCKS_DELALLOC_RESERVE) &&
546f7fec032SZheng Liu 		    ext4_find_delalloc_range(inode, map->m_lblk,
547f7fec032SZheng Liu 					     map->m_lblk + map->m_len - 1))
548f7fec032SZheng Liu 			status |= EXTENT_STATUS_DELAYED;
549f7fec032SZheng Liu 		ret = ext4_es_insert_extent(inode, map->m_lblk,
550f7fec032SZheng Liu 					    map->m_len, map->m_pblk, status);
551f7fec032SZheng Liu 		if (ret < 0)
552f7fec032SZheng Liu 			retval = ret;
553f7fec032SZheng Liu 	}
554729f52c6SZheng Liu 	if (!(flags & EXT4_GET_BLOCKS_NO_LOCK))
5554df3d265SAneesh Kumar K.V 		up_read((&EXT4_I(inode)->i_data_sem));
556f5ab0d1fSMingming Cao 
557d100eef2SZheng Liu found:
558e35fd660STheodore Ts'o 	if (retval > 0 && map->m_flags & EXT4_MAP_MAPPED) {
559b8a86845SLukas Czerner 		ret = check_block_validity(inode, map);
5606fd058f7STheodore Ts'o 		if (ret != 0)
5616fd058f7STheodore Ts'o 			return ret;
5626fd058f7STheodore Ts'o 	}
5636fd058f7STheodore Ts'o 
564f5ab0d1fSMingming Cao 	/* If it is only a block(s) look up */
565c2177057STheodore Ts'o 	if ((flags & EXT4_GET_BLOCKS_CREATE) == 0)
5664df3d265SAneesh Kumar K.V 		return retval;
5674df3d265SAneesh Kumar K.V 
5684df3d265SAneesh Kumar K.V 	/*
569f5ab0d1fSMingming Cao 	 * Returns if the blocks have already allocated
570f5ab0d1fSMingming Cao 	 *
571f5ab0d1fSMingming Cao 	 * Note that if blocks have been preallocated
572df3ab170STao Ma 	 * ext4_ext_get_block() returns the create = 0
573f5ab0d1fSMingming Cao 	 * with buffer head unmapped.
574f5ab0d1fSMingming Cao 	 */
575e35fd660STheodore Ts'o 	if (retval > 0 && map->m_flags & EXT4_MAP_MAPPED)
576b8a86845SLukas Czerner 		/*
577b8a86845SLukas Czerner 		 * If we need to convert extent to unwritten
578b8a86845SLukas Czerner 		 * we continue and do the actual work in
579b8a86845SLukas Czerner 		 * ext4_ext_map_blocks()
580b8a86845SLukas Czerner 		 */
581b8a86845SLukas Czerner 		if (!(flags & EXT4_GET_BLOCKS_CONVERT_UNWRITTEN))
582f5ab0d1fSMingming Cao 			return retval;
583f5ab0d1fSMingming Cao 
584f5ab0d1fSMingming Cao 	/*
585a25a4e1aSZheng Liu 	 * Here we clear m_flags because after allocating an new extent,
586a25a4e1aSZheng Liu 	 * it will be set again.
5872a8964d6SAneesh Kumar K.V 	 */
588a25a4e1aSZheng Liu 	map->m_flags &= ~EXT4_MAP_FLAGS;
5892a8964d6SAneesh Kumar K.V 
5902a8964d6SAneesh Kumar K.V 	/*
591556615dcSLukas Czerner 	 * New blocks allocate and/or writing to unwritten extent
592f5ab0d1fSMingming Cao 	 * will possibly result in updating i_data, so we take
593f5ab0d1fSMingming Cao 	 * the write lock of i_data_sem, and call get_blocks()
594f5ab0d1fSMingming Cao 	 * with create == 1 flag.
5954df3d265SAneesh Kumar K.V 	 */
596c8b459f4SLukas Czerner 	down_write(&EXT4_I(inode)->i_data_sem);
597d2a17637SMingming Cao 
598d2a17637SMingming Cao 	/*
599d2a17637SMingming Cao 	 * if the caller is from delayed allocation writeout path
600d2a17637SMingming Cao 	 * we have already reserved fs blocks for allocation
601d2a17637SMingming Cao 	 * let the underlying get_block() function know to
602d2a17637SMingming Cao 	 * avoid double accounting
603d2a17637SMingming Cao 	 */
604c2177057STheodore Ts'o 	if (flags & EXT4_GET_BLOCKS_DELALLOC_RESERVE)
605f2321097STheodore Ts'o 		ext4_set_inode_state(inode, EXT4_STATE_DELALLOC_RESERVED);
6064df3d265SAneesh Kumar K.V 	/*
6074df3d265SAneesh Kumar K.V 	 * We need to check for EXT4 here because migrate
6084df3d265SAneesh Kumar K.V 	 * could have changed the inode type in between
6094df3d265SAneesh Kumar K.V 	 */
61012e9b892SDmitry Monakhov 	if (ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS)) {
611e35fd660STheodore Ts'o 		retval = ext4_ext_map_blocks(handle, inode, map, flags);
6120e855ac8SAneesh Kumar K.V 	} else {
613e35fd660STheodore Ts'o 		retval = ext4_ind_map_blocks(handle, inode, map, flags);
614267e4db9SAneesh Kumar K.V 
615e35fd660STheodore Ts'o 		if (retval > 0 && map->m_flags & EXT4_MAP_NEW) {
616267e4db9SAneesh Kumar K.V 			/*
617267e4db9SAneesh Kumar K.V 			 * We allocated new blocks which will result in
618267e4db9SAneesh Kumar K.V 			 * i_data's format changing.  Force the migrate
619267e4db9SAneesh Kumar K.V 			 * to fail by clearing migrate flags
620267e4db9SAneesh Kumar K.V 			 */
62119f5fb7aSTheodore Ts'o 			ext4_clear_inode_state(inode, EXT4_STATE_EXT_MIGRATE);
622267e4db9SAneesh Kumar K.V 		}
6232ac3b6e0STheodore Ts'o 
624d2a17637SMingming Cao 		/*
6252ac3b6e0STheodore Ts'o 		 * Update reserved blocks/metadata blocks after successful
6265f634d06SAneesh Kumar K.V 		 * block allocation which had been deferred till now. We don't
6275f634d06SAneesh Kumar K.V 		 * support fallocate for non extent files. So we can update
6285f634d06SAneesh Kumar K.V 		 * reserve space here.
629d2a17637SMingming Cao 		 */
6305f634d06SAneesh Kumar K.V 		if ((retval > 0) &&
6311296cc85SAneesh Kumar K.V 			(flags & EXT4_GET_BLOCKS_DELALLOC_RESERVE))
6325f634d06SAneesh Kumar K.V 			ext4_da_update_reserve_space(inode, retval, 1);
6335f634d06SAneesh Kumar K.V 	}
634f7fec032SZheng Liu 	if (flags & EXT4_GET_BLOCKS_DELALLOC_RESERVE)
635f2321097STheodore Ts'o 		ext4_clear_inode_state(inode, EXT4_STATE_DELALLOC_RESERVED);
636d2a17637SMingming Cao 
637f7fec032SZheng Liu 	if (retval > 0) {
6383be78c73STheodore Ts'o 		unsigned int status;
639f7fec032SZheng Liu 
64044fb851dSZheng Liu 		if (unlikely(retval != map->m_len)) {
64144fb851dSZheng Liu 			ext4_warning(inode->i_sb,
64244fb851dSZheng Liu 				     "ES len assertion failed for inode "
64344fb851dSZheng Liu 				     "%lu: retval %d != map->m_len %d",
64444fb851dSZheng Liu 				     inode->i_ino, retval, map->m_len);
64544fb851dSZheng Liu 			WARN_ON(1);
646921f266bSDmitry Monakhov 		}
647921f266bSDmitry Monakhov 
648adb23551SZheng Liu 		/*
649adb23551SZheng Liu 		 * If the extent has been zeroed out, we don't need to update
650adb23551SZheng Liu 		 * extent status tree.
651adb23551SZheng Liu 		 */
652adb23551SZheng Liu 		if ((flags & EXT4_GET_BLOCKS_PRE_IO) &&
653adb23551SZheng Liu 		    ext4_es_lookup_extent(inode, map->m_lblk, &es)) {
654adb23551SZheng Liu 			if (ext4_es_is_written(&es))
655adb23551SZheng Liu 				goto has_zeroout;
656adb23551SZheng Liu 		}
657f7fec032SZheng Liu 		status = map->m_flags & EXT4_MAP_UNWRITTEN ?
658f7fec032SZheng Liu 				EXTENT_STATUS_UNWRITTEN : EXTENT_STATUS_WRITTEN;
659f7fec032SZheng Liu 		if (!(flags & EXT4_GET_BLOCKS_DELALLOC_RESERVE) &&
660f7fec032SZheng Liu 		    ext4_find_delalloc_range(inode, map->m_lblk,
661f7fec032SZheng Liu 					     map->m_lblk + map->m_len - 1))
662f7fec032SZheng Liu 			status |= EXTENT_STATUS_DELAYED;
663f7fec032SZheng Liu 		ret = ext4_es_insert_extent(inode, map->m_lblk, map->m_len,
664f7fec032SZheng Liu 					    map->m_pblk, status);
66551865fdaSZheng Liu 		if (ret < 0)
66651865fdaSZheng Liu 			retval = ret;
66751865fdaSZheng Liu 	}
6685356f261SAditya Kali 
669adb23551SZheng Liu has_zeroout:
6700e855ac8SAneesh Kumar K.V 	up_write((&EXT4_I(inode)->i_data_sem));
671e35fd660STheodore Ts'o 	if (retval > 0 && map->m_flags & EXT4_MAP_MAPPED) {
672b8a86845SLukas Czerner 		ret = check_block_validity(inode, map);
6736fd058f7STheodore Ts'o 		if (ret != 0)
6746fd058f7STheodore Ts'o 			return ret;
6756fd058f7STheodore Ts'o 	}
6760e855ac8SAneesh Kumar K.V 	return retval;
6770e855ac8SAneesh Kumar K.V }
6780e855ac8SAneesh Kumar K.V 
679f3bd1f3fSMingming Cao /* Maximum number of blocks we map for direct IO at once. */
680f3bd1f3fSMingming Cao #define DIO_MAX_BLOCKS 4096
681f3bd1f3fSMingming Cao 
6822ed88685STheodore Ts'o static int _ext4_get_block(struct inode *inode, sector_t iblock,
6832ed88685STheodore Ts'o 			   struct buffer_head *bh, int flags)
684ac27a0ecSDave Kleikamp {
6853e4fdaf8SDmitriy Monakhov 	handle_t *handle = ext4_journal_current_handle();
6862ed88685STheodore Ts'o 	struct ext4_map_blocks map;
6877fb5409dSJan Kara 	int ret = 0, started = 0;
688f3bd1f3fSMingming Cao 	int dio_credits;
689ac27a0ecSDave Kleikamp 
69046c7f254STao Ma 	if (ext4_has_inline_data(inode))
69146c7f254STao Ma 		return -ERANGE;
69246c7f254STao Ma 
6932ed88685STheodore Ts'o 	map.m_lblk = iblock;
6942ed88685STheodore Ts'o 	map.m_len = bh->b_size >> inode->i_blkbits;
6952ed88685STheodore Ts'o 
6968b0f165fSAnatol Pomozov 	if (flags && !(flags & EXT4_GET_BLOCKS_NO_LOCK) && !handle) {
6977fb5409dSJan Kara 		/* Direct IO write... */
6982ed88685STheodore Ts'o 		if (map.m_len > DIO_MAX_BLOCKS)
6992ed88685STheodore Ts'o 			map.m_len = DIO_MAX_BLOCKS;
7002ed88685STheodore Ts'o 		dio_credits = ext4_chunk_trans_blocks(inode, map.m_len);
7019924a92aSTheodore Ts'o 		handle = ext4_journal_start(inode, EXT4_HT_MAP_BLOCKS,
7029924a92aSTheodore Ts'o 					    dio_credits);
7037fb5409dSJan Kara 		if (IS_ERR(handle)) {
704ac27a0ecSDave Kleikamp 			ret = PTR_ERR(handle);
7052ed88685STheodore Ts'o 			return ret;
7067fb5409dSJan Kara 		}
7077fb5409dSJan Kara 		started = 1;
708ac27a0ecSDave Kleikamp 	}
709ac27a0ecSDave Kleikamp 
7102ed88685STheodore Ts'o 	ret = ext4_map_blocks(handle, inode, &map, flags);
711ac27a0ecSDave Kleikamp 	if (ret > 0) {
7127b7a8665SChristoph Hellwig 		ext4_io_end_t *io_end = ext4_inode_aio(inode);
7137b7a8665SChristoph Hellwig 
7142ed88685STheodore Ts'o 		map_bh(bh, inode->i_sb, map.m_pblk);
7152ed88685STheodore Ts'o 		bh->b_state = (bh->b_state & ~EXT4_MAP_FLAGS) | map.m_flags;
7167b7a8665SChristoph Hellwig 		if (io_end && io_end->flag & EXT4_IO_END_UNWRITTEN)
7177b7a8665SChristoph Hellwig 			set_buffer_defer_completion(bh);
7182ed88685STheodore Ts'o 		bh->b_size = inode->i_sb->s_blocksize * map.m_len;
719ac27a0ecSDave Kleikamp 		ret = 0;
720ac27a0ecSDave Kleikamp 	}
7217fb5409dSJan Kara 	if (started)
7227fb5409dSJan Kara 		ext4_journal_stop(handle);
723ac27a0ecSDave Kleikamp 	return ret;
724ac27a0ecSDave Kleikamp }
725ac27a0ecSDave Kleikamp 
7262ed88685STheodore Ts'o int ext4_get_block(struct inode *inode, sector_t iblock,
7272ed88685STheodore Ts'o 		   struct buffer_head *bh, int create)
7282ed88685STheodore Ts'o {
7292ed88685STheodore Ts'o 	return _ext4_get_block(inode, iblock, bh,
7302ed88685STheodore Ts'o 			       create ? EXT4_GET_BLOCKS_CREATE : 0);
7312ed88685STheodore Ts'o }
7322ed88685STheodore Ts'o 
733ac27a0ecSDave Kleikamp /*
734ac27a0ecSDave Kleikamp  * `handle' can be NULL if create is zero
735ac27a0ecSDave Kleikamp  */
736617ba13bSMingming Cao struct buffer_head *ext4_getblk(handle_t *handle, struct inode *inode,
737725d26d3SAneesh Kumar K.V 				ext4_lblk_t block, int create, int *errp)
738ac27a0ecSDave Kleikamp {
7392ed88685STheodore Ts'o 	struct ext4_map_blocks map;
7402ed88685STheodore Ts'o 	struct buffer_head *bh;
741ac27a0ecSDave Kleikamp 	int fatal = 0, err;
742ac27a0ecSDave Kleikamp 
743ac27a0ecSDave Kleikamp 	J_ASSERT(handle != NULL || create == 0);
744ac27a0ecSDave Kleikamp 
7452ed88685STheodore Ts'o 	map.m_lblk = block;
7462ed88685STheodore Ts'o 	map.m_len = 1;
7472ed88685STheodore Ts'o 	err = ext4_map_blocks(handle, inode, &map,
7482ed88685STheodore Ts'o 			      create ? EXT4_GET_BLOCKS_CREATE : 0);
7492ed88685STheodore Ts'o 
75090b0a973SCarlos Maiolino 	/* ensure we send some value back into *errp */
75190b0a973SCarlos Maiolino 	*errp = 0;
75290b0a973SCarlos Maiolino 
7530f70b406STheodore Ts'o 	if (create && err == 0)
7540f70b406STheodore Ts'o 		err = -ENOSPC;	/* should never happen */
7552ed88685STheodore Ts'o 	if (err < 0)
756ac27a0ecSDave Kleikamp 		*errp = err;
7572ed88685STheodore Ts'o 	if (err <= 0)
7582ed88685STheodore Ts'o 		return NULL;
7592ed88685STheodore Ts'o 
7602ed88685STheodore Ts'o 	bh = sb_getblk(inode->i_sb, map.m_pblk);
761aebf0243SWang Shilong 	if (unlikely(!bh)) {
762860d21e2STheodore Ts'o 		*errp = -ENOMEM;
7632ed88685STheodore Ts'o 		return NULL;
764ac27a0ecSDave Kleikamp 	}
7652ed88685STheodore Ts'o 	if (map.m_flags & EXT4_MAP_NEW) {
766ac27a0ecSDave Kleikamp 		J_ASSERT(create != 0);
767ac39849dSAneesh Kumar K.V 		J_ASSERT(handle != NULL);
768ac27a0ecSDave Kleikamp 
769ac27a0ecSDave Kleikamp 		/*
770ac27a0ecSDave Kleikamp 		 * Now that we do not always journal data, we should
771ac27a0ecSDave Kleikamp 		 * keep in mind whether this should always journal the
772ac27a0ecSDave Kleikamp 		 * new buffer as metadata.  For now, regular file
773617ba13bSMingming Cao 		 * writes use ext4_get_block instead, so it's not a
774ac27a0ecSDave Kleikamp 		 * problem.
775ac27a0ecSDave Kleikamp 		 */
776ac27a0ecSDave Kleikamp 		lock_buffer(bh);
777ac27a0ecSDave Kleikamp 		BUFFER_TRACE(bh, "call get_create_access");
778617ba13bSMingming Cao 		fatal = ext4_journal_get_create_access(handle, bh);
779ac27a0ecSDave Kleikamp 		if (!fatal && !buffer_uptodate(bh)) {
780ac27a0ecSDave Kleikamp 			memset(bh->b_data, 0, inode->i_sb->s_blocksize);
781ac27a0ecSDave Kleikamp 			set_buffer_uptodate(bh);
782ac27a0ecSDave Kleikamp 		}
783ac27a0ecSDave Kleikamp 		unlock_buffer(bh);
7840390131bSFrank Mayhar 		BUFFER_TRACE(bh, "call ext4_handle_dirty_metadata");
7850390131bSFrank Mayhar 		err = ext4_handle_dirty_metadata(handle, inode, bh);
786ac27a0ecSDave Kleikamp 		if (!fatal)
787ac27a0ecSDave Kleikamp 			fatal = err;
788ac27a0ecSDave Kleikamp 	} else {
789ac27a0ecSDave Kleikamp 		BUFFER_TRACE(bh, "not a new buffer");
790ac27a0ecSDave Kleikamp 	}
791ac27a0ecSDave Kleikamp 	if (fatal) {
792ac27a0ecSDave Kleikamp 		*errp = fatal;
793ac27a0ecSDave Kleikamp 		brelse(bh);
794ac27a0ecSDave Kleikamp 		bh = NULL;
795ac27a0ecSDave Kleikamp 	}
796ac27a0ecSDave Kleikamp 	return bh;
797ac27a0ecSDave Kleikamp }
798ac27a0ecSDave Kleikamp 
799617ba13bSMingming Cao struct buffer_head *ext4_bread(handle_t *handle, struct inode *inode,
800725d26d3SAneesh Kumar K.V 			       ext4_lblk_t block, int create, int *err)
801ac27a0ecSDave Kleikamp {
802ac27a0ecSDave Kleikamp 	struct buffer_head *bh;
803ac27a0ecSDave Kleikamp 
804617ba13bSMingming Cao 	bh = ext4_getblk(handle, inode, block, create, err);
805ac27a0ecSDave Kleikamp 	if (!bh)
806ac27a0ecSDave Kleikamp 		return bh;
807ac27a0ecSDave Kleikamp 	if (buffer_uptodate(bh))
808ac27a0ecSDave Kleikamp 		return bh;
80965299a3bSChristoph Hellwig 	ll_rw_block(READ | REQ_META | REQ_PRIO, 1, &bh);
810ac27a0ecSDave Kleikamp 	wait_on_buffer(bh);
811ac27a0ecSDave Kleikamp 	if (buffer_uptodate(bh))
812ac27a0ecSDave Kleikamp 		return bh;
813ac27a0ecSDave Kleikamp 	put_bh(bh);
814ac27a0ecSDave Kleikamp 	*err = -EIO;
815ac27a0ecSDave Kleikamp 	return NULL;
816ac27a0ecSDave Kleikamp }
817ac27a0ecSDave Kleikamp 
818f19d5870STao Ma int ext4_walk_page_buffers(handle_t *handle,
819ac27a0ecSDave Kleikamp 			   struct buffer_head *head,
820ac27a0ecSDave Kleikamp 			   unsigned from,
821ac27a0ecSDave Kleikamp 			   unsigned to,
822ac27a0ecSDave Kleikamp 			   int *partial,
823ac27a0ecSDave Kleikamp 			   int (*fn)(handle_t *handle,
824ac27a0ecSDave Kleikamp 				     struct buffer_head *bh))
825ac27a0ecSDave Kleikamp {
826ac27a0ecSDave Kleikamp 	struct buffer_head *bh;
827ac27a0ecSDave Kleikamp 	unsigned block_start, block_end;
828ac27a0ecSDave Kleikamp 	unsigned blocksize = head->b_size;
829ac27a0ecSDave Kleikamp 	int err, ret = 0;
830ac27a0ecSDave Kleikamp 	struct buffer_head *next;
831ac27a0ecSDave Kleikamp 
832ac27a0ecSDave Kleikamp 	for (bh = head, block_start = 0;
833ac27a0ecSDave Kleikamp 	     ret == 0 && (bh != head || !block_start);
834de9a55b8STheodore Ts'o 	     block_start = block_end, bh = next) {
835ac27a0ecSDave Kleikamp 		next = bh->b_this_page;
836ac27a0ecSDave Kleikamp 		block_end = block_start + blocksize;
837ac27a0ecSDave Kleikamp 		if (block_end <= from || block_start >= to) {
838ac27a0ecSDave Kleikamp 			if (partial && !buffer_uptodate(bh))
839ac27a0ecSDave Kleikamp 				*partial = 1;
840ac27a0ecSDave Kleikamp 			continue;
841ac27a0ecSDave Kleikamp 		}
842ac27a0ecSDave Kleikamp 		err = (*fn)(handle, bh);
843ac27a0ecSDave Kleikamp 		if (!ret)
844ac27a0ecSDave Kleikamp 			ret = err;
845ac27a0ecSDave Kleikamp 	}
846ac27a0ecSDave Kleikamp 	return ret;
847ac27a0ecSDave Kleikamp }
848ac27a0ecSDave Kleikamp 
849ac27a0ecSDave Kleikamp /*
850ac27a0ecSDave Kleikamp  * To preserve ordering, it is essential that the hole instantiation and
851ac27a0ecSDave Kleikamp  * the data write be encapsulated in a single transaction.  We cannot
852617ba13bSMingming Cao  * close off a transaction and start a new one between the ext4_get_block()
853dab291afSMingming Cao  * and the commit_write().  So doing the jbd2_journal_start at the start of
854ac27a0ecSDave Kleikamp  * prepare_write() is the right place.
855ac27a0ecSDave Kleikamp  *
85636ade451SJan Kara  * Also, this function can nest inside ext4_writepage().  In that case, we
85736ade451SJan Kara  * *know* that ext4_writepage() has generated enough buffer credits to do the
85836ade451SJan Kara  * whole page.  So we won't block on the journal in that case, which is good,
85936ade451SJan Kara  * because the caller may be PF_MEMALLOC.
860ac27a0ecSDave Kleikamp  *
861617ba13bSMingming Cao  * By accident, ext4 can be reentered when a transaction is open via
862ac27a0ecSDave Kleikamp  * quota file writes.  If we were to commit the transaction while thus
863ac27a0ecSDave Kleikamp  * reentered, there can be a deadlock - we would be holding a quota
864ac27a0ecSDave Kleikamp  * lock, and the commit would never complete if another thread had a
865ac27a0ecSDave Kleikamp  * transaction open and was blocking on the quota lock - a ranking
866ac27a0ecSDave Kleikamp  * violation.
867ac27a0ecSDave Kleikamp  *
868dab291afSMingming Cao  * So what we do is to rely on the fact that jbd2_journal_stop/journal_start
869ac27a0ecSDave Kleikamp  * will _not_ run commit under these circumstances because handle->h_ref
870ac27a0ecSDave Kleikamp  * is elevated.  We'll still have enough credits for the tiny quotafile
871ac27a0ecSDave Kleikamp  * write.
872ac27a0ecSDave Kleikamp  */
873f19d5870STao Ma int do_journal_get_write_access(handle_t *handle,
874ac27a0ecSDave Kleikamp 				struct buffer_head *bh)
875ac27a0ecSDave Kleikamp {
87656d35a4cSJan Kara 	int dirty = buffer_dirty(bh);
87756d35a4cSJan Kara 	int ret;
87856d35a4cSJan Kara 
879ac27a0ecSDave Kleikamp 	if (!buffer_mapped(bh) || buffer_freed(bh))
880ac27a0ecSDave Kleikamp 		return 0;
88156d35a4cSJan Kara 	/*
882ebdec241SChristoph Hellwig 	 * __block_write_begin() could have dirtied some buffers. Clean
88356d35a4cSJan Kara 	 * the dirty bit as jbd2_journal_get_write_access() could complain
88456d35a4cSJan Kara 	 * otherwise about fs integrity issues. Setting of the dirty bit
885ebdec241SChristoph Hellwig 	 * by __block_write_begin() isn't a real problem here as we clear
88656d35a4cSJan Kara 	 * the bit before releasing a page lock and thus writeback cannot
88756d35a4cSJan Kara 	 * ever write the buffer.
88856d35a4cSJan Kara 	 */
88956d35a4cSJan Kara 	if (dirty)
89056d35a4cSJan Kara 		clear_buffer_dirty(bh);
8915d601255Sliang xie 	BUFFER_TRACE(bh, "get write access");
89256d35a4cSJan Kara 	ret = ext4_journal_get_write_access(handle, bh);
89356d35a4cSJan Kara 	if (!ret && dirty)
89456d35a4cSJan Kara 		ret = ext4_handle_dirty_metadata(handle, NULL, bh);
89556d35a4cSJan Kara 	return ret;
896ac27a0ecSDave Kleikamp }
897ac27a0ecSDave Kleikamp 
8988b0f165fSAnatol Pomozov static int ext4_get_block_write_nolock(struct inode *inode, sector_t iblock,
8998b0f165fSAnatol Pomozov 		   struct buffer_head *bh_result, int create);
900bfc1af65SNick Piggin static int ext4_write_begin(struct file *file, struct address_space *mapping,
901bfc1af65SNick Piggin 			    loff_t pos, unsigned len, unsigned flags,
902bfc1af65SNick Piggin 			    struct page **pagep, void **fsdata)
903ac27a0ecSDave Kleikamp {
904bfc1af65SNick Piggin 	struct inode *inode = mapping->host;
9051938a150SAneesh Kumar K.V 	int ret, needed_blocks;
906ac27a0ecSDave Kleikamp 	handle_t *handle;
907ac27a0ecSDave Kleikamp 	int retries = 0;
908bfc1af65SNick Piggin 	struct page *page;
909bfc1af65SNick Piggin 	pgoff_t index;
910bfc1af65SNick Piggin 	unsigned from, to;
911bfc1af65SNick Piggin 
9129bffad1eSTheodore Ts'o 	trace_ext4_write_begin(inode, pos, len, flags);
9131938a150SAneesh Kumar K.V 	/*
9141938a150SAneesh Kumar K.V 	 * Reserve one block more for addition to orphan list in case
9151938a150SAneesh Kumar K.V 	 * we allocate blocks but write fails for some reason
9161938a150SAneesh Kumar K.V 	 */
9171938a150SAneesh Kumar K.V 	needed_blocks = ext4_writepage_trans_blocks(inode) + 1;
918bfc1af65SNick Piggin 	index = pos >> PAGE_CACHE_SHIFT;
919bfc1af65SNick Piggin 	from = pos & (PAGE_CACHE_SIZE - 1);
920bfc1af65SNick Piggin 	to = from + len;
921ac27a0ecSDave Kleikamp 
922f19d5870STao Ma 	if (ext4_test_inode_state(inode, EXT4_STATE_MAY_INLINE_DATA)) {
923f19d5870STao Ma 		ret = ext4_try_to_write_inline_data(mapping, inode, pos, len,
924f19d5870STao Ma 						    flags, pagep);
925f19d5870STao Ma 		if (ret < 0)
92647564bfbSTheodore Ts'o 			return ret;
92747564bfbSTheodore Ts'o 		if (ret == 1)
92847564bfbSTheodore Ts'o 			return 0;
929f19d5870STao Ma 	}
930f19d5870STao Ma 
93147564bfbSTheodore Ts'o 	/*
93247564bfbSTheodore Ts'o 	 * grab_cache_page_write_begin() can take a long time if the
93347564bfbSTheodore Ts'o 	 * system is thrashing due to memory pressure, or if the page
93447564bfbSTheodore Ts'o 	 * is being written back.  So grab it first before we start
93547564bfbSTheodore Ts'o 	 * the transaction handle.  This also allows us to allocate
93647564bfbSTheodore Ts'o 	 * the page (if needed) without using GFP_NOFS.
93747564bfbSTheodore Ts'o 	 */
93847564bfbSTheodore Ts'o retry_grab:
93954566b2cSNick Piggin 	page = grab_cache_page_write_begin(mapping, index, flags);
94047564bfbSTheodore Ts'o 	if (!page)
94147564bfbSTheodore Ts'o 		return -ENOMEM;
94247564bfbSTheodore Ts'o 	unlock_page(page);
94347564bfbSTheodore Ts'o 
94447564bfbSTheodore Ts'o retry_journal:
9459924a92aSTheodore Ts'o 	handle = ext4_journal_start(inode, EXT4_HT_WRITE_PAGE, needed_blocks);
946ac27a0ecSDave Kleikamp 	if (IS_ERR(handle)) {
94747564bfbSTheodore Ts'o 		page_cache_release(page);
94847564bfbSTheodore Ts'o 		return PTR_ERR(handle);
949cf108bcaSJan Kara 	}
950f19d5870STao Ma 
95147564bfbSTheodore Ts'o 	lock_page(page);
95247564bfbSTheodore Ts'o 	if (page->mapping != mapping) {
95347564bfbSTheodore Ts'o 		/* The page got truncated from under us */
95447564bfbSTheodore Ts'o 		unlock_page(page);
95547564bfbSTheodore Ts'o 		page_cache_release(page);
956cf108bcaSJan Kara 		ext4_journal_stop(handle);
95747564bfbSTheodore Ts'o 		goto retry_grab;
958cf108bcaSJan Kara 	}
9597afe5aa5SDmitry Monakhov 	/* In case writeback began while the page was unlocked */
9607afe5aa5SDmitry Monakhov 	wait_for_stable_page(page);
961cf108bcaSJan Kara 
962744692dcSJiaying Zhang 	if (ext4_should_dioread_nolock(inode))
9636e1db88dSChristoph Hellwig 		ret = __block_write_begin(page, pos, len, ext4_get_block_write);
964744692dcSJiaying Zhang 	else
9656e1db88dSChristoph Hellwig 		ret = __block_write_begin(page, pos, len, ext4_get_block);
966bfc1af65SNick Piggin 
967bfc1af65SNick Piggin 	if (!ret && ext4_should_journal_data(inode)) {
968f19d5870STao Ma 		ret = ext4_walk_page_buffers(handle, page_buffers(page),
969f19d5870STao Ma 					     from, to, NULL,
970f19d5870STao Ma 					     do_journal_get_write_access);
971b46be050SAndrey Savochkin 	}
972bfc1af65SNick Piggin 
973bfc1af65SNick Piggin 	if (ret) {
974bfc1af65SNick Piggin 		unlock_page(page);
975ae4d5372SAneesh Kumar K.V 		/*
9766e1db88dSChristoph Hellwig 		 * __block_write_begin may have instantiated a few blocks
977ae4d5372SAneesh Kumar K.V 		 * outside i_size.  Trim these off again. Don't need
978ae4d5372SAneesh Kumar K.V 		 * i_size_read because we hold i_mutex.
9791938a150SAneesh Kumar K.V 		 *
9801938a150SAneesh Kumar K.V 		 * Add inode to orphan list in case we crash before
9811938a150SAneesh Kumar K.V 		 * truncate finishes
982ae4d5372SAneesh Kumar K.V 		 */
983ffacfa7aSJan Kara 		if (pos + len > inode->i_size && ext4_can_truncate(inode))
9841938a150SAneesh Kumar K.V 			ext4_orphan_add(handle, inode);
9851938a150SAneesh Kumar K.V 
9861938a150SAneesh Kumar K.V 		ext4_journal_stop(handle);
9871938a150SAneesh Kumar K.V 		if (pos + len > inode->i_size) {
988b9a4207dSJan Kara 			ext4_truncate_failed_write(inode);
9891938a150SAneesh Kumar K.V 			/*
990ffacfa7aSJan Kara 			 * If truncate failed early the inode might
9911938a150SAneesh Kumar K.V 			 * still be on the orphan list; we need to
9921938a150SAneesh Kumar K.V 			 * make sure the inode is removed from the
9931938a150SAneesh Kumar K.V 			 * orphan list in that case.
9941938a150SAneesh Kumar K.V 			 */
9951938a150SAneesh Kumar K.V 			if (inode->i_nlink)
9961938a150SAneesh Kumar K.V 				ext4_orphan_del(NULL, inode);
9971938a150SAneesh Kumar K.V 		}
998bfc1af65SNick Piggin 
99947564bfbSTheodore Ts'o 		if (ret == -ENOSPC &&
100047564bfbSTheodore Ts'o 		    ext4_should_retry_alloc(inode->i_sb, &retries))
100147564bfbSTheodore Ts'o 			goto retry_journal;
100247564bfbSTheodore Ts'o 		page_cache_release(page);
100347564bfbSTheodore Ts'o 		return ret;
100447564bfbSTheodore Ts'o 	}
100547564bfbSTheodore Ts'o 	*pagep = page;
1006ac27a0ecSDave Kleikamp 	return ret;
1007ac27a0ecSDave Kleikamp }
1008ac27a0ecSDave Kleikamp 
1009bfc1af65SNick Piggin /* For write_end() in data=journal mode */
1010bfc1af65SNick Piggin static int write_end_fn(handle_t *handle, struct buffer_head *bh)
1011ac27a0ecSDave Kleikamp {
101213fca323STheodore Ts'o 	int ret;
1013ac27a0ecSDave Kleikamp 	if (!buffer_mapped(bh) || buffer_freed(bh))
1014ac27a0ecSDave Kleikamp 		return 0;
1015ac27a0ecSDave Kleikamp 	set_buffer_uptodate(bh);
101613fca323STheodore Ts'o 	ret = ext4_handle_dirty_metadata(handle, NULL, bh);
101713fca323STheodore Ts'o 	clear_buffer_meta(bh);
101813fca323STheodore Ts'o 	clear_buffer_prio(bh);
101913fca323STheodore Ts'o 	return ret;
1020ac27a0ecSDave Kleikamp }
1021ac27a0ecSDave Kleikamp 
1022eed4333fSZheng Liu /*
1023eed4333fSZheng Liu  * We need to pick up the new inode size which generic_commit_write gave us
1024eed4333fSZheng Liu  * `file' can be NULL - eg, when called from page_symlink().
1025eed4333fSZheng Liu  *
1026eed4333fSZheng Liu  * ext4 never places buffers on inode->i_mapping->private_list.  metadata
1027eed4333fSZheng Liu  * buffers are managed internally.
1028eed4333fSZheng Liu  */
1029eed4333fSZheng Liu static int ext4_write_end(struct file *file,
1030f8514083SAneesh Kumar K.V 			  struct address_space *mapping,
1031f8514083SAneesh Kumar K.V 			  loff_t pos, unsigned len, unsigned copied,
1032f8514083SAneesh Kumar K.V 			  struct page *page, void *fsdata)
1033f8514083SAneesh Kumar K.V {
1034f8514083SAneesh Kumar K.V 	handle_t *handle = ext4_journal_current_handle();
1035eed4333fSZheng Liu 	struct inode *inode = mapping->host;
1036eed4333fSZheng Liu 	int ret = 0, ret2;
1037eed4333fSZheng Liu 	int i_size_changed = 0;
1038eed4333fSZheng Liu 
1039eed4333fSZheng Liu 	trace_ext4_write_end(inode, pos, len, copied);
1040eed4333fSZheng Liu 	if (ext4_test_inode_state(inode, EXT4_STATE_ORDERED_MODE)) {
1041eed4333fSZheng Liu 		ret = ext4_jbd2_file_inode(handle, inode);
1042eed4333fSZheng Liu 		if (ret) {
1043eed4333fSZheng Liu 			unlock_page(page);
1044eed4333fSZheng Liu 			page_cache_release(page);
1045eed4333fSZheng Liu 			goto errout;
1046eed4333fSZheng Liu 		}
1047eed4333fSZheng Liu 	}
1048f8514083SAneesh Kumar K.V 
104942c832deSTheodore Ts'o 	if (ext4_has_inline_data(inode)) {
105042c832deSTheodore Ts'o 		ret = ext4_write_inline_data_end(inode, pos, len,
1051f19d5870STao Ma 						 copied, page);
105242c832deSTheodore Ts'o 		if (ret < 0)
105342c832deSTheodore Ts'o 			goto errout;
105442c832deSTheodore Ts'o 		copied = ret;
105542c832deSTheodore Ts'o 	} else
1056f19d5870STao Ma 		copied = block_write_end(file, mapping, pos,
1057f19d5870STao Ma 					 len, copied, page, fsdata);
1058f8514083SAneesh Kumar K.V 
1059f8514083SAneesh Kumar K.V 	/*
1060f8514083SAneesh Kumar K.V 	 * No need to use i_size_read() here, the i_size
1061eed4333fSZheng Liu 	 * cannot change under us because we hole i_mutex.
1062f8514083SAneesh Kumar K.V 	 *
1063f8514083SAneesh Kumar K.V 	 * But it's important to update i_size while still holding page lock:
1064f8514083SAneesh Kumar K.V 	 * page writeout could otherwise come in and zero beyond i_size.
1065f8514083SAneesh Kumar K.V 	 */
1066f8514083SAneesh Kumar K.V 	if (pos + copied > inode->i_size) {
1067f8514083SAneesh Kumar K.V 		i_size_write(inode, pos + copied);
1068f8514083SAneesh Kumar K.V 		i_size_changed = 1;
1069f8514083SAneesh Kumar K.V 	}
1070f8514083SAneesh Kumar K.V 
1071f8514083SAneesh Kumar K.V 	if (pos + copied > EXT4_I(inode)->i_disksize) {
1072f8514083SAneesh Kumar K.V 		/* We need to mark inode dirty even if
1073f8514083SAneesh Kumar K.V 		 * new_i_size is less that inode->i_size
1074eed4333fSZheng Liu 		 * but greater than i_disksize. (hint delalloc)
1075f8514083SAneesh Kumar K.V 		 */
1076f8514083SAneesh Kumar K.V 		ext4_update_i_disksize(inode, (pos + copied));
1077f8514083SAneesh Kumar K.V 		i_size_changed = 1;
1078f8514083SAneesh Kumar K.V 	}
1079f8514083SAneesh Kumar K.V 	unlock_page(page);
1080f8514083SAneesh Kumar K.V 	page_cache_release(page);
1081f8514083SAneesh Kumar K.V 
1082f8514083SAneesh Kumar K.V 	/*
1083f8514083SAneesh Kumar K.V 	 * Don't mark the inode dirty under page lock. First, it unnecessarily
1084f8514083SAneesh Kumar K.V 	 * makes the holding time of page lock longer. Second, it forces lock
1085f8514083SAneesh Kumar K.V 	 * ordering of page lock and transaction start for journaling
1086f8514083SAneesh Kumar K.V 	 * filesystems.
1087f8514083SAneesh Kumar K.V 	 */
1088f8514083SAneesh Kumar K.V 	if (i_size_changed)
1089f8514083SAneesh Kumar K.V 		ext4_mark_inode_dirty(handle, inode);
1090f8514083SAneesh Kumar K.V 
1091ffacfa7aSJan Kara 	if (pos + len > inode->i_size && ext4_can_truncate(inode))
1092f8514083SAneesh Kumar K.V 		/* if we have allocated more blocks and copied
1093f8514083SAneesh Kumar K.V 		 * less. We will have blocks allocated outside
1094f8514083SAneesh Kumar K.V 		 * inode->i_size. So truncate them
1095f8514083SAneesh Kumar K.V 		 */
1096f8514083SAneesh Kumar K.V 		ext4_orphan_add(handle, inode);
109774d553aaSTheodore Ts'o errout:
1098617ba13bSMingming Cao 	ret2 = ext4_journal_stop(handle);
1099ac27a0ecSDave Kleikamp 	if (!ret)
1100ac27a0ecSDave Kleikamp 		ret = ret2;
1101bfc1af65SNick Piggin 
1102f8514083SAneesh Kumar K.V 	if (pos + len > inode->i_size) {
1103b9a4207dSJan Kara 		ext4_truncate_failed_write(inode);
1104f8514083SAneesh Kumar K.V 		/*
1105ffacfa7aSJan Kara 		 * If truncate failed early the inode might still be
1106f8514083SAneesh Kumar K.V 		 * on the orphan list; we need to make sure the inode
1107f8514083SAneesh Kumar K.V 		 * is removed from the orphan list in that case.
1108f8514083SAneesh Kumar K.V 		 */
1109f8514083SAneesh Kumar K.V 		if (inode->i_nlink)
1110f8514083SAneesh Kumar K.V 			ext4_orphan_del(NULL, inode);
1111f8514083SAneesh Kumar K.V 	}
1112f8514083SAneesh Kumar K.V 
1113bfc1af65SNick Piggin 	return ret ? ret : copied;
1114ac27a0ecSDave Kleikamp }
1115ac27a0ecSDave Kleikamp 
1116bfc1af65SNick Piggin static int ext4_journalled_write_end(struct file *file,
1117bfc1af65SNick Piggin 				     struct address_space *mapping,
1118bfc1af65SNick Piggin 				     loff_t pos, unsigned len, unsigned copied,
1119bfc1af65SNick Piggin 				     struct page *page, void *fsdata)
1120ac27a0ecSDave Kleikamp {
1121617ba13bSMingming Cao 	handle_t *handle = ext4_journal_current_handle();
1122bfc1af65SNick Piggin 	struct inode *inode = mapping->host;
1123ac27a0ecSDave Kleikamp 	int ret = 0, ret2;
1124ac27a0ecSDave Kleikamp 	int partial = 0;
1125bfc1af65SNick Piggin 	unsigned from, to;
1126cf17fea6SAneesh Kumar K.V 	loff_t new_i_size;
1127ac27a0ecSDave Kleikamp 
11289bffad1eSTheodore Ts'o 	trace_ext4_journalled_write_end(inode, pos, len, copied);
1129bfc1af65SNick Piggin 	from = pos & (PAGE_CACHE_SIZE - 1);
1130bfc1af65SNick Piggin 	to = from + len;
1131bfc1af65SNick Piggin 
1132441c8508SCurt Wohlgemuth 	BUG_ON(!ext4_handle_valid(handle));
1133441c8508SCurt Wohlgemuth 
11343fdcfb66STao Ma 	if (ext4_has_inline_data(inode))
11353fdcfb66STao Ma 		copied = ext4_write_inline_data_end(inode, pos, len,
11363fdcfb66STao Ma 						    copied, page);
11373fdcfb66STao Ma 	else {
1138bfc1af65SNick Piggin 		if (copied < len) {
1139bfc1af65SNick Piggin 			if (!PageUptodate(page))
1140bfc1af65SNick Piggin 				copied = 0;
1141bfc1af65SNick Piggin 			page_zero_new_buffers(page, from+copied, to);
1142bfc1af65SNick Piggin 		}
1143ac27a0ecSDave Kleikamp 
1144f19d5870STao Ma 		ret = ext4_walk_page_buffers(handle, page_buffers(page), from,
1145bfc1af65SNick Piggin 					     to, &partial, write_end_fn);
1146ac27a0ecSDave Kleikamp 		if (!partial)
1147ac27a0ecSDave Kleikamp 			SetPageUptodate(page);
11483fdcfb66STao Ma 	}
1149cf17fea6SAneesh Kumar K.V 	new_i_size = pos + copied;
1150cf17fea6SAneesh Kumar K.V 	if (new_i_size > inode->i_size)
1151bfc1af65SNick Piggin 		i_size_write(inode, pos+copied);
115219f5fb7aSTheodore Ts'o 	ext4_set_inode_state(inode, EXT4_STATE_JDATA);
11532d859db3SJan Kara 	EXT4_I(inode)->i_datasync_tid = handle->h_transaction->t_tid;
1154cf17fea6SAneesh Kumar K.V 	if (new_i_size > EXT4_I(inode)->i_disksize) {
1155cf17fea6SAneesh Kumar K.V 		ext4_update_i_disksize(inode, new_i_size);
1156617ba13bSMingming Cao 		ret2 = ext4_mark_inode_dirty(handle, inode);
1157ac27a0ecSDave Kleikamp 		if (!ret)
1158ac27a0ecSDave Kleikamp 			ret = ret2;
1159ac27a0ecSDave Kleikamp 	}
1160bfc1af65SNick Piggin 
1161cf108bcaSJan Kara 	unlock_page(page);
1162f8514083SAneesh Kumar K.V 	page_cache_release(page);
1163ffacfa7aSJan Kara 	if (pos + len > inode->i_size && ext4_can_truncate(inode))
1164f8514083SAneesh Kumar K.V 		/* if we have allocated more blocks and copied
1165f8514083SAneesh Kumar K.V 		 * less. We will have blocks allocated outside
1166f8514083SAneesh Kumar K.V 		 * inode->i_size. So truncate them
1167f8514083SAneesh Kumar K.V 		 */
1168f8514083SAneesh Kumar K.V 		ext4_orphan_add(handle, inode);
1169f8514083SAneesh Kumar K.V 
1170617ba13bSMingming Cao 	ret2 = ext4_journal_stop(handle);
1171ac27a0ecSDave Kleikamp 	if (!ret)
1172ac27a0ecSDave Kleikamp 		ret = ret2;
1173f8514083SAneesh Kumar K.V 	if (pos + len > inode->i_size) {
1174b9a4207dSJan Kara 		ext4_truncate_failed_write(inode);
1175f8514083SAneesh Kumar K.V 		/*
1176ffacfa7aSJan Kara 		 * If truncate failed early the inode might still be
1177f8514083SAneesh Kumar K.V 		 * on the orphan list; we need to make sure the inode
1178f8514083SAneesh Kumar K.V 		 * is removed from the orphan list in that case.
1179f8514083SAneesh Kumar K.V 		 */
1180f8514083SAneesh Kumar K.V 		if (inode->i_nlink)
1181f8514083SAneesh Kumar K.V 			ext4_orphan_del(NULL, inode);
1182f8514083SAneesh Kumar K.V 	}
1183bfc1af65SNick Piggin 
1184bfc1af65SNick Piggin 	return ret ? ret : copied;
1185ac27a0ecSDave Kleikamp }
1186d2a17637SMingming Cao 
11879d0be502STheodore Ts'o /*
11887b415bf6SAditya Kali  * Reserve a single cluster located at lblock
11899d0be502STheodore Ts'o  */
119001f49d0bSTheodore Ts'o static int ext4_da_reserve_space(struct inode *inode, ext4_lblk_t lblock)
1191d2a17637SMingming Cao {
1192d2a17637SMingming Cao 	struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb);
11930637c6f4STheodore Ts'o 	struct ext4_inode_info *ei = EXT4_I(inode);
11947b415bf6SAditya Kali 	unsigned int md_needed;
11955dd4056dSChristoph Hellwig 	int ret;
1196d2a17637SMingming Cao 
119760e58e0fSMingming Cao 	/*
119872b8ab9dSEric Sandeen 	 * We will charge metadata quota at writeout time; this saves
119972b8ab9dSEric Sandeen 	 * us from metadata over-estimation, though we may go over by
120072b8ab9dSEric Sandeen 	 * a small amount in the end.  Here we just reserve for data.
120160e58e0fSMingming Cao 	 */
12027b415bf6SAditya Kali 	ret = dquot_reserve_block(inode, EXT4_C2B(sbi, 1));
12035dd4056dSChristoph Hellwig 	if (ret)
12045dd4056dSChristoph Hellwig 		return ret;
120503179fe9STheodore Ts'o 
120603179fe9STheodore Ts'o 	/*
120703179fe9STheodore Ts'o 	 * recalculate the amount of metadata blocks to reserve
120803179fe9STheodore Ts'o 	 * in order to allocate nrblocks
120903179fe9STheodore Ts'o 	 * worse case is one extent per block
121003179fe9STheodore Ts'o 	 */
121103179fe9STheodore Ts'o 	spin_lock(&ei->i_block_reservation_lock);
121203179fe9STheodore Ts'o 	/*
121303179fe9STheodore Ts'o 	 * ext4_calc_metadata_amount() has side effects, which we have
121403179fe9STheodore Ts'o 	 * to be prepared undo if we fail to claim space.
121503179fe9STheodore Ts'o 	 */
1216*71d4f7d0STheodore Ts'o 	md_needed = 0;
1217*71d4f7d0STheodore Ts'o 	trace_ext4_da_reserve_space(inode, 0);
121803179fe9STheodore Ts'o 
1219*71d4f7d0STheodore Ts'o 	if (ext4_claim_free_clusters(sbi, 1, 0)) {
122003179fe9STheodore Ts'o 		spin_unlock(&ei->i_block_reservation_lock);
122103179fe9STheodore Ts'o 		dquot_release_reservation_block(inode, EXT4_C2B(sbi, 1));
1222d2a17637SMingming Cao 		return -ENOSPC;
1223d2a17637SMingming Cao 	}
12249d0be502STheodore Ts'o 	ei->i_reserved_data_blocks++;
12250637c6f4STheodore Ts'o 	spin_unlock(&ei->i_block_reservation_lock);
122639bc680aSDmitry Monakhov 
1227d2a17637SMingming Cao 	return 0;       /* success */
1228d2a17637SMingming Cao }
1229d2a17637SMingming Cao 
123012219aeaSAneesh Kumar K.V static void ext4_da_release_space(struct inode *inode, int to_free)
1231d2a17637SMingming Cao {
1232d2a17637SMingming Cao 	struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb);
12330637c6f4STheodore Ts'o 	struct ext4_inode_info *ei = EXT4_I(inode);
1234d2a17637SMingming Cao 
1235cd213226SMingming Cao 	if (!to_free)
1236cd213226SMingming Cao 		return;		/* Nothing to release, exit */
1237cd213226SMingming Cao 
1238d2a17637SMingming Cao 	spin_lock(&EXT4_I(inode)->i_block_reservation_lock);
1239cd213226SMingming Cao 
12405a58ec87SLi Zefan 	trace_ext4_da_release_space(inode, to_free);
12410637c6f4STheodore Ts'o 	if (unlikely(to_free > ei->i_reserved_data_blocks)) {
1242cd213226SMingming Cao 		/*
12430637c6f4STheodore Ts'o 		 * if there aren't enough reserved blocks, then the
12440637c6f4STheodore Ts'o 		 * counter is messed up somewhere.  Since this
12450637c6f4STheodore Ts'o 		 * function is called from invalidate page, it's
12460637c6f4STheodore Ts'o 		 * harmless to return without any action.
1247cd213226SMingming Cao 		 */
12488de5c325STheodore Ts'o 		ext4_warning(inode->i_sb, "ext4_da_release_space: "
12490637c6f4STheodore Ts'o 			 "ino %lu, to_free %d with only %d reserved "
12501084f252STheodore Ts'o 			 "data blocks", inode->i_ino, to_free,
12510637c6f4STheodore Ts'o 			 ei->i_reserved_data_blocks);
12520637c6f4STheodore Ts'o 		WARN_ON(1);
12530637c6f4STheodore Ts'o 		to_free = ei->i_reserved_data_blocks;
12540637c6f4STheodore Ts'o 	}
12550637c6f4STheodore Ts'o 	ei->i_reserved_data_blocks -= to_free;
12560637c6f4STheodore Ts'o 
125772b8ab9dSEric Sandeen 	/* update fs dirty data blocks counter */
125857042651STheodore Ts'o 	percpu_counter_sub(&sbi->s_dirtyclusters_counter, to_free);
1259d2a17637SMingming Cao 
1260d2a17637SMingming Cao 	spin_unlock(&EXT4_I(inode)->i_block_reservation_lock);
126160e58e0fSMingming Cao 
12627b415bf6SAditya Kali 	dquot_release_reservation_block(inode, EXT4_C2B(sbi, to_free));
1263d2a17637SMingming Cao }
1264d2a17637SMingming Cao 
1265d2a17637SMingming Cao static void ext4_da_page_release_reservation(struct page *page,
1266ca99fdd2SLukas Czerner 					     unsigned int offset,
1267ca99fdd2SLukas Czerner 					     unsigned int length)
1268d2a17637SMingming Cao {
1269d2a17637SMingming Cao 	int to_release = 0;
1270d2a17637SMingming Cao 	struct buffer_head *head, *bh;
1271d2a17637SMingming Cao 	unsigned int curr_off = 0;
12727b415bf6SAditya Kali 	struct inode *inode = page->mapping->host;
12737b415bf6SAditya Kali 	struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb);
1274ca99fdd2SLukas Czerner 	unsigned int stop = offset + length;
12757b415bf6SAditya Kali 	int num_clusters;
127651865fdaSZheng Liu 	ext4_fsblk_t lblk;
1277d2a17637SMingming Cao 
1278ca99fdd2SLukas Czerner 	BUG_ON(stop > PAGE_CACHE_SIZE || stop < length);
1279ca99fdd2SLukas Czerner 
1280d2a17637SMingming Cao 	head = page_buffers(page);
1281d2a17637SMingming Cao 	bh = head;
1282d2a17637SMingming Cao 	do {
1283d2a17637SMingming Cao 		unsigned int next_off = curr_off + bh->b_size;
1284d2a17637SMingming Cao 
1285ca99fdd2SLukas Czerner 		if (next_off > stop)
1286ca99fdd2SLukas Czerner 			break;
1287ca99fdd2SLukas Czerner 
1288d2a17637SMingming Cao 		if ((offset <= curr_off) && (buffer_delay(bh))) {
1289d2a17637SMingming Cao 			to_release++;
1290d2a17637SMingming Cao 			clear_buffer_delay(bh);
1291d2a17637SMingming Cao 		}
1292d2a17637SMingming Cao 		curr_off = next_off;
1293d2a17637SMingming Cao 	} while ((bh = bh->b_this_page) != head);
12947b415bf6SAditya Kali 
129551865fdaSZheng Liu 	if (to_release) {
129651865fdaSZheng Liu 		lblk = page->index << (PAGE_CACHE_SHIFT - inode->i_blkbits);
129751865fdaSZheng Liu 		ext4_es_remove_extent(inode, lblk, to_release);
129851865fdaSZheng Liu 	}
129951865fdaSZheng Liu 
13007b415bf6SAditya Kali 	/* If we have released all the blocks belonging to a cluster, then we
13017b415bf6SAditya Kali 	 * need to release the reserved space for that cluster. */
13027b415bf6SAditya Kali 	num_clusters = EXT4_NUM_B2C(sbi, to_release);
13037b415bf6SAditya Kali 	while (num_clusters > 0) {
13047b415bf6SAditya Kali 		lblk = (page->index << (PAGE_CACHE_SHIFT - inode->i_blkbits)) +
13057b415bf6SAditya Kali 			((num_clusters - 1) << sbi->s_cluster_bits);
13067b415bf6SAditya Kali 		if (sbi->s_cluster_ratio == 1 ||
13077d1b1fbcSZheng Liu 		    !ext4_find_delalloc_cluster(inode, lblk))
13087b415bf6SAditya Kali 			ext4_da_release_space(inode, 1);
13097b415bf6SAditya Kali 
13107b415bf6SAditya Kali 		num_clusters--;
13117b415bf6SAditya Kali 	}
1312d2a17637SMingming Cao }
1313ac27a0ecSDave Kleikamp 
1314ac27a0ecSDave Kleikamp /*
131564769240SAlex Tomas  * Delayed allocation stuff
131664769240SAlex Tomas  */
131764769240SAlex Tomas 
13184e7ea81dSJan Kara struct mpage_da_data {
13194e7ea81dSJan Kara 	struct inode *inode;
13204e7ea81dSJan Kara 	struct writeback_control *wbc;
13216b523df4SJan Kara 
13224e7ea81dSJan Kara 	pgoff_t first_page;	/* The first page to write */
13234e7ea81dSJan Kara 	pgoff_t next_page;	/* Current page to examine */
13244e7ea81dSJan Kara 	pgoff_t last_page;	/* Last page to examine */
132564769240SAlex Tomas 	/*
13264e7ea81dSJan Kara 	 * Extent to map - this can be after first_page because that can be
13274e7ea81dSJan Kara 	 * fully mapped. We somewhat abuse m_flags to store whether the extent
13284e7ea81dSJan Kara 	 * is delalloc or unwritten.
132964769240SAlex Tomas 	 */
13304e7ea81dSJan Kara 	struct ext4_map_blocks map;
13314e7ea81dSJan Kara 	struct ext4_io_submit io_submit;	/* IO submission data */
13324e7ea81dSJan Kara };
133364769240SAlex Tomas 
13344e7ea81dSJan Kara static void mpage_release_unused_pages(struct mpage_da_data *mpd,
13354e7ea81dSJan Kara 				       bool invalidate)
1336c4a0c46eSAneesh Kumar K.V {
1337c4a0c46eSAneesh Kumar K.V 	int nr_pages, i;
1338c4a0c46eSAneesh Kumar K.V 	pgoff_t index, end;
1339c4a0c46eSAneesh Kumar K.V 	struct pagevec pvec;
1340c4a0c46eSAneesh Kumar K.V 	struct inode *inode = mpd->inode;
1341c4a0c46eSAneesh Kumar K.V 	struct address_space *mapping = inode->i_mapping;
13424e7ea81dSJan Kara 
13434e7ea81dSJan Kara 	/* This is necessary when next_page == 0. */
13444e7ea81dSJan Kara 	if (mpd->first_page >= mpd->next_page)
13454e7ea81dSJan Kara 		return;
1346c4a0c46eSAneesh Kumar K.V 
1347c7f5938aSCurt Wohlgemuth 	index = mpd->first_page;
1348c7f5938aSCurt Wohlgemuth 	end   = mpd->next_page - 1;
13494e7ea81dSJan Kara 	if (invalidate) {
13504e7ea81dSJan Kara 		ext4_lblk_t start, last;
135151865fdaSZheng Liu 		start = index << (PAGE_CACHE_SHIFT - inode->i_blkbits);
135251865fdaSZheng Liu 		last = end << (PAGE_CACHE_SHIFT - inode->i_blkbits);
135351865fdaSZheng Liu 		ext4_es_remove_extent(inode, start, last - start + 1);
13544e7ea81dSJan Kara 	}
135551865fdaSZheng Liu 
135666bea92cSEric Sandeen 	pagevec_init(&pvec, 0);
1357c4a0c46eSAneesh Kumar K.V 	while (index <= end) {
1358c4a0c46eSAneesh Kumar K.V 		nr_pages = pagevec_lookup(&pvec, mapping, index, PAGEVEC_SIZE);
1359c4a0c46eSAneesh Kumar K.V 		if (nr_pages == 0)
1360c4a0c46eSAneesh Kumar K.V 			break;
1361c4a0c46eSAneesh Kumar K.V 		for (i = 0; i < nr_pages; i++) {
1362c4a0c46eSAneesh Kumar K.V 			struct page *page = pvec.pages[i];
13639b1d0998SJan Kara 			if (page->index > end)
1364c4a0c46eSAneesh Kumar K.V 				break;
1365c4a0c46eSAneesh Kumar K.V 			BUG_ON(!PageLocked(page));
1366c4a0c46eSAneesh Kumar K.V 			BUG_ON(PageWriteback(page));
13674e7ea81dSJan Kara 			if (invalidate) {
1368d47992f8SLukas Czerner 				block_invalidatepage(page, 0, PAGE_CACHE_SIZE);
1369c4a0c46eSAneesh Kumar K.V 				ClearPageUptodate(page);
13704e7ea81dSJan Kara 			}
1371c4a0c46eSAneesh Kumar K.V 			unlock_page(page);
1372c4a0c46eSAneesh Kumar K.V 		}
13739b1d0998SJan Kara 		index = pvec.pages[nr_pages - 1]->index + 1;
13749b1d0998SJan Kara 		pagevec_release(&pvec);
1375c4a0c46eSAneesh Kumar K.V 	}
1376c4a0c46eSAneesh Kumar K.V }
1377c4a0c46eSAneesh Kumar K.V 
1378df22291fSAneesh Kumar K.V static void ext4_print_free_blocks(struct inode *inode)
1379df22291fSAneesh Kumar K.V {
1380df22291fSAneesh Kumar K.V 	struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb);
138192b97816STheodore Ts'o 	struct super_block *sb = inode->i_sb;
1382f78ee70dSLukas Czerner 	struct ext4_inode_info *ei = EXT4_I(inode);
138392b97816STheodore Ts'o 
138492b97816STheodore Ts'o 	ext4_msg(sb, KERN_CRIT, "Total free blocks count %lld",
13855dee5437STheodore Ts'o 	       EXT4_C2B(EXT4_SB(inode->i_sb),
1386f78ee70dSLukas Czerner 			ext4_count_free_clusters(sb)));
138792b97816STheodore Ts'o 	ext4_msg(sb, KERN_CRIT, "Free/Dirty block details");
138892b97816STheodore Ts'o 	ext4_msg(sb, KERN_CRIT, "free_blocks=%lld",
1389f78ee70dSLukas Czerner 	       (long long) EXT4_C2B(EXT4_SB(sb),
139057042651STheodore Ts'o 		percpu_counter_sum(&sbi->s_freeclusters_counter)));
139192b97816STheodore Ts'o 	ext4_msg(sb, KERN_CRIT, "dirty_blocks=%lld",
1392f78ee70dSLukas Czerner 	       (long long) EXT4_C2B(EXT4_SB(sb),
13937b415bf6SAditya Kali 		percpu_counter_sum(&sbi->s_dirtyclusters_counter)));
139492b97816STheodore Ts'o 	ext4_msg(sb, KERN_CRIT, "Block reservation details");
139592b97816STheodore Ts'o 	ext4_msg(sb, KERN_CRIT, "i_reserved_data_blocks=%u",
1396f78ee70dSLukas Czerner 		 ei->i_reserved_data_blocks);
1397df22291fSAneesh Kumar K.V 	return;
1398df22291fSAneesh Kumar K.V }
1399df22291fSAneesh Kumar K.V 
1400c364b22cSAneesh Kumar K.V static int ext4_bh_delay_or_unwritten(handle_t *handle, struct buffer_head *bh)
140129fa89d0SAneesh Kumar K.V {
1402c364b22cSAneesh Kumar K.V 	return (buffer_delay(bh) || buffer_unwritten(bh)) && buffer_dirty(bh);
140329fa89d0SAneesh Kumar K.V }
140429fa89d0SAneesh Kumar K.V 
140564769240SAlex Tomas /*
14065356f261SAditya Kali  * This function is grabs code from the very beginning of
14075356f261SAditya Kali  * ext4_map_blocks, but assumes that the caller is from delayed write
14085356f261SAditya Kali  * time. This function looks up the requested blocks and sets the
14095356f261SAditya Kali  * buffer delay bit under the protection of i_data_sem.
14105356f261SAditya Kali  */
14115356f261SAditya Kali static int ext4_da_map_blocks(struct inode *inode, sector_t iblock,
14125356f261SAditya Kali 			      struct ext4_map_blocks *map,
14135356f261SAditya Kali 			      struct buffer_head *bh)
14145356f261SAditya Kali {
1415d100eef2SZheng Liu 	struct extent_status es;
14165356f261SAditya Kali 	int retval;
14175356f261SAditya Kali 	sector_t invalid_block = ~((sector_t) 0xffff);
1418921f266bSDmitry Monakhov #ifdef ES_AGGRESSIVE_TEST
1419921f266bSDmitry Monakhov 	struct ext4_map_blocks orig_map;
1420921f266bSDmitry Monakhov 
1421921f266bSDmitry Monakhov 	memcpy(&orig_map, map, sizeof(*map));
1422921f266bSDmitry Monakhov #endif
14235356f261SAditya Kali 
14245356f261SAditya Kali 	if (invalid_block < ext4_blocks_count(EXT4_SB(inode->i_sb)->s_es))
14255356f261SAditya Kali 		invalid_block = ~0;
14265356f261SAditya Kali 
14275356f261SAditya Kali 	map->m_flags = 0;
14285356f261SAditya Kali 	ext_debug("ext4_da_map_blocks(): inode %lu, max_blocks %u,"
14295356f261SAditya Kali 		  "logical block %lu\n", inode->i_ino, map->m_len,
14305356f261SAditya Kali 		  (unsigned long) map->m_lblk);
1431d100eef2SZheng Liu 
1432d100eef2SZheng Liu 	/* Lookup extent status tree firstly */
1433d100eef2SZheng Liu 	if (ext4_es_lookup_extent(inode, iblock, &es)) {
143463b99968STheodore Ts'o 		ext4_es_lru_add(inode);
1435d100eef2SZheng Liu 		if (ext4_es_is_hole(&es)) {
1436d100eef2SZheng Liu 			retval = 0;
1437c8b459f4SLukas Czerner 			down_read(&EXT4_I(inode)->i_data_sem);
1438d100eef2SZheng Liu 			goto add_delayed;
1439d100eef2SZheng Liu 		}
1440d100eef2SZheng Liu 
1441d100eef2SZheng Liu 		/*
1442d100eef2SZheng Liu 		 * Delayed extent could be allocated by fallocate.
1443d100eef2SZheng Liu 		 * So we need to check it.
1444d100eef2SZheng Liu 		 */
1445d100eef2SZheng Liu 		if (ext4_es_is_delayed(&es) && !ext4_es_is_unwritten(&es)) {
1446d100eef2SZheng Liu 			map_bh(bh, inode->i_sb, invalid_block);
1447d100eef2SZheng Liu 			set_buffer_new(bh);
1448d100eef2SZheng Liu 			set_buffer_delay(bh);
1449d100eef2SZheng Liu 			return 0;
1450d100eef2SZheng Liu 		}
1451d100eef2SZheng Liu 
1452d100eef2SZheng Liu 		map->m_pblk = ext4_es_pblock(&es) + iblock - es.es_lblk;
1453d100eef2SZheng Liu 		retval = es.es_len - (iblock - es.es_lblk);
1454d100eef2SZheng Liu 		if (retval > map->m_len)
1455d100eef2SZheng Liu 			retval = map->m_len;
1456d100eef2SZheng Liu 		map->m_len = retval;
1457d100eef2SZheng Liu 		if (ext4_es_is_written(&es))
1458d100eef2SZheng Liu 			map->m_flags |= EXT4_MAP_MAPPED;
1459d100eef2SZheng Liu 		else if (ext4_es_is_unwritten(&es))
1460d100eef2SZheng Liu 			map->m_flags |= EXT4_MAP_UNWRITTEN;
1461d100eef2SZheng Liu 		else
1462d100eef2SZheng Liu 			BUG_ON(1);
1463d100eef2SZheng Liu 
1464921f266bSDmitry Monakhov #ifdef ES_AGGRESSIVE_TEST
1465921f266bSDmitry Monakhov 		ext4_map_blocks_es_recheck(NULL, inode, map, &orig_map, 0);
1466921f266bSDmitry Monakhov #endif
1467d100eef2SZheng Liu 		return retval;
1468d100eef2SZheng Liu 	}
1469d100eef2SZheng Liu 
14705356f261SAditya Kali 	/*
14715356f261SAditya Kali 	 * Try to see if we can get the block without requesting a new
14725356f261SAditya Kali 	 * file system block.
14735356f261SAditya Kali 	 */
1474c8b459f4SLukas Czerner 	down_read(&EXT4_I(inode)->i_data_sem);
14759c3569b5STao Ma 	if (ext4_has_inline_data(inode)) {
14769c3569b5STao Ma 		/*
14779c3569b5STao Ma 		 * We will soon create blocks for this page, and let
14789c3569b5STao Ma 		 * us pretend as if the blocks aren't allocated yet.
14799c3569b5STao Ma 		 * In case of clusters, we have to handle the work
14809c3569b5STao Ma 		 * of mapping from cluster so that the reserved space
14819c3569b5STao Ma 		 * is calculated properly.
14829c3569b5STao Ma 		 */
14839c3569b5STao Ma 		if ((EXT4_SB(inode->i_sb)->s_cluster_ratio > 1) &&
14849c3569b5STao Ma 		    ext4_find_delalloc_cluster(inode, map->m_lblk))
14859c3569b5STao Ma 			map->m_flags |= EXT4_MAP_FROM_CLUSTER;
14869c3569b5STao Ma 		retval = 0;
14879c3569b5STao Ma 	} else if (ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS))
1488d100eef2SZheng Liu 		retval = ext4_ext_map_blocks(NULL, inode, map,
1489d100eef2SZheng Liu 					     EXT4_GET_BLOCKS_NO_PUT_HOLE);
14905356f261SAditya Kali 	else
1491d100eef2SZheng Liu 		retval = ext4_ind_map_blocks(NULL, inode, map,
1492d100eef2SZheng Liu 					     EXT4_GET_BLOCKS_NO_PUT_HOLE);
14935356f261SAditya Kali 
1494d100eef2SZheng Liu add_delayed:
14955356f261SAditya Kali 	if (retval == 0) {
1496f7fec032SZheng Liu 		int ret;
14975356f261SAditya Kali 		/*
14985356f261SAditya Kali 		 * XXX: __block_prepare_write() unmaps passed block,
14995356f261SAditya Kali 		 * is it OK?
15005356f261SAditya Kali 		 */
1501386ad67cSLukas Czerner 		/*
1502386ad67cSLukas Czerner 		 * If the block was allocated from previously allocated cluster,
1503386ad67cSLukas Czerner 		 * then we don't need to reserve it again. However we still need
1504386ad67cSLukas Czerner 		 * to reserve metadata for every block we're going to write.
1505386ad67cSLukas Czerner 		 */
15065356f261SAditya Kali 		if (!(map->m_flags & EXT4_MAP_FROM_CLUSTER)) {
1507f7fec032SZheng Liu 			ret = ext4_da_reserve_space(inode, iblock);
1508f7fec032SZheng Liu 			if (ret) {
15095356f261SAditya Kali 				/* not enough space to reserve */
1510f7fec032SZheng Liu 				retval = ret;
15115356f261SAditya Kali 				goto out_unlock;
15125356f261SAditya Kali 			}
1513f7fec032SZheng Liu 		}
15145356f261SAditya Kali 
1515f7fec032SZheng Liu 		ret = ext4_es_insert_extent(inode, map->m_lblk, map->m_len,
1516fdc0212eSZheng Liu 					    ~0, EXTENT_STATUS_DELAYED);
1517f7fec032SZheng Liu 		if (ret) {
1518f7fec032SZheng Liu 			retval = ret;
151951865fdaSZheng Liu 			goto out_unlock;
1520f7fec032SZheng Liu 		}
152151865fdaSZheng Liu 
15225356f261SAditya Kali 		/* Clear EXT4_MAP_FROM_CLUSTER flag since its purpose is served
15235356f261SAditya Kali 		 * and it should not appear on the bh->b_state.
15245356f261SAditya Kali 		 */
15255356f261SAditya Kali 		map->m_flags &= ~EXT4_MAP_FROM_CLUSTER;
15265356f261SAditya Kali 
15275356f261SAditya Kali 		map_bh(bh, inode->i_sb, invalid_block);
15285356f261SAditya Kali 		set_buffer_new(bh);
15295356f261SAditya Kali 		set_buffer_delay(bh);
1530f7fec032SZheng Liu 	} else if (retval > 0) {
1531f7fec032SZheng Liu 		int ret;
15323be78c73STheodore Ts'o 		unsigned int status;
1533f7fec032SZheng Liu 
153444fb851dSZheng Liu 		if (unlikely(retval != map->m_len)) {
153544fb851dSZheng Liu 			ext4_warning(inode->i_sb,
153644fb851dSZheng Liu 				     "ES len assertion failed for inode "
153744fb851dSZheng Liu 				     "%lu: retval %d != map->m_len %d",
153844fb851dSZheng Liu 				     inode->i_ino, retval, map->m_len);
153944fb851dSZheng Liu 			WARN_ON(1);
1540921f266bSDmitry Monakhov 		}
1541921f266bSDmitry Monakhov 
1542f7fec032SZheng Liu 		status = map->m_flags & EXT4_MAP_UNWRITTEN ?
1543f7fec032SZheng Liu 				EXTENT_STATUS_UNWRITTEN : EXTENT_STATUS_WRITTEN;
1544f7fec032SZheng Liu 		ret = ext4_es_insert_extent(inode, map->m_lblk, map->m_len,
1545f7fec032SZheng Liu 					    map->m_pblk, status);
1546f7fec032SZheng Liu 		if (ret != 0)
1547f7fec032SZheng Liu 			retval = ret;
15485356f261SAditya Kali 	}
15495356f261SAditya Kali 
15505356f261SAditya Kali out_unlock:
15515356f261SAditya Kali 	up_read((&EXT4_I(inode)->i_data_sem));
15525356f261SAditya Kali 
15535356f261SAditya Kali 	return retval;
15545356f261SAditya Kali }
15555356f261SAditya Kali 
15565356f261SAditya Kali /*
1557b920c755STheodore Ts'o  * This is a special get_blocks_t callback which is used by
1558b920c755STheodore Ts'o  * ext4_da_write_begin().  It will either return mapped block or
1559b920c755STheodore Ts'o  * reserve space for a single block.
156029fa89d0SAneesh Kumar K.V  *
156129fa89d0SAneesh Kumar K.V  * For delayed buffer_head we have BH_Mapped, BH_New, BH_Delay set.
156229fa89d0SAneesh Kumar K.V  * We also have b_blocknr = -1 and b_bdev initialized properly
156329fa89d0SAneesh Kumar K.V  *
156429fa89d0SAneesh Kumar K.V  * For unwritten buffer_head we have BH_Mapped, BH_New, BH_Unwritten set.
156529fa89d0SAneesh Kumar K.V  * We also have b_blocknr = physicalblock mapping unwritten extent and b_bdev
156629fa89d0SAneesh Kumar K.V  * initialized properly.
156764769240SAlex Tomas  */
15689c3569b5STao Ma int ext4_da_get_block_prep(struct inode *inode, sector_t iblock,
15692ed88685STheodore Ts'o 			   struct buffer_head *bh, int create)
157064769240SAlex Tomas {
15712ed88685STheodore Ts'o 	struct ext4_map_blocks map;
157264769240SAlex Tomas 	int ret = 0;
157364769240SAlex Tomas 
157464769240SAlex Tomas 	BUG_ON(create == 0);
15752ed88685STheodore Ts'o 	BUG_ON(bh->b_size != inode->i_sb->s_blocksize);
15762ed88685STheodore Ts'o 
15772ed88685STheodore Ts'o 	map.m_lblk = iblock;
15782ed88685STheodore Ts'o 	map.m_len = 1;
157964769240SAlex Tomas 
158064769240SAlex Tomas 	/*
158164769240SAlex Tomas 	 * first, we need to know whether the block is allocated already
158264769240SAlex Tomas 	 * preallocated blocks are unmapped but should treated
158364769240SAlex Tomas 	 * the same as allocated blocks.
158464769240SAlex Tomas 	 */
15855356f261SAditya Kali 	ret = ext4_da_map_blocks(inode, iblock, &map, bh);
15865356f261SAditya Kali 	if (ret <= 0)
15872ed88685STheodore Ts'o 		return ret;
158864769240SAlex Tomas 
15892ed88685STheodore Ts'o 	map_bh(bh, inode->i_sb, map.m_pblk);
15902ed88685STheodore Ts'o 	bh->b_state = (bh->b_state & ~EXT4_MAP_FLAGS) | map.m_flags;
15912ed88685STheodore Ts'o 
15922ed88685STheodore Ts'o 	if (buffer_unwritten(bh)) {
15932ed88685STheodore Ts'o 		/* A delayed write to unwritten bh should be marked
15942ed88685STheodore Ts'o 		 * new and mapped.  Mapped ensures that we don't do
15952ed88685STheodore Ts'o 		 * get_block multiple times when we write to the same
15962ed88685STheodore Ts'o 		 * offset and new ensures that we do proper zero out
15972ed88685STheodore Ts'o 		 * for partial write.
15982ed88685STheodore Ts'o 		 */
15992ed88685STheodore Ts'o 		set_buffer_new(bh);
1600c8205636STheodore Ts'o 		set_buffer_mapped(bh);
16012ed88685STheodore Ts'o 	}
16022ed88685STheodore Ts'o 	return 0;
160364769240SAlex Tomas }
160461628a3fSMingming Cao 
160562e086beSAneesh Kumar K.V static int bget_one(handle_t *handle, struct buffer_head *bh)
160662e086beSAneesh Kumar K.V {
160762e086beSAneesh Kumar K.V 	get_bh(bh);
160862e086beSAneesh Kumar K.V 	return 0;
160962e086beSAneesh Kumar K.V }
161062e086beSAneesh Kumar K.V 
161162e086beSAneesh Kumar K.V static int bput_one(handle_t *handle, struct buffer_head *bh)
161262e086beSAneesh Kumar K.V {
161362e086beSAneesh Kumar K.V 	put_bh(bh);
161462e086beSAneesh Kumar K.V 	return 0;
161562e086beSAneesh Kumar K.V }
161662e086beSAneesh Kumar K.V 
161762e086beSAneesh Kumar K.V static int __ext4_journalled_writepage(struct page *page,
161862e086beSAneesh Kumar K.V 				       unsigned int len)
161962e086beSAneesh Kumar K.V {
162062e086beSAneesh Kumar K.V 	struct address_space *mapping = page->mapping;
162162e086beSAneesh Kumar K.V 	struct inode *inode = mapping->host;
16223fdcfb66STao Ma 	struct buffer_head *page_bufs = NULL;
162362e086beSAneesh Kumar K.V 	handle_t *handle = NULL;
16243fdcfb66STao Ma 	int ret = 0, err = 0;
16253fdcfb66STao Ma 	int inline_data = ext4_has_inline_data(inode);
16263fdcfb66STao Ma 	struct buffer_head *inode_bh = NULL;
162762e086beSAneesh Kumar K.V 
1628cb20d518STheodore Ts'o 	ClearPageChecked(page);
16293fdcfb66STao Ma 
16303fdcfb66STao Ma 	if (inline_data) {
16313fdcfb66STao Ma 		BUG_ON(page->index != 0);
16323fdcfb66STao Ma 		BUG_ON(len > ext4_get_max_inline_size(inode));
16333fdcfb66STao Ma 		inode_bh = ext4_journalled_write_inline_data(inode, len, page);
16343fdcfb66STao Ma 		if (inode_bh == NULL)
16353fdcfb66STao Ma 			goto out;
16363fdcfb66STao Ma 	} else {
163762e086beSAneesh Kumar K.V 		page_bufs = page_buffers(page);
16383fdcfb66STao Ma 		if (!page_bufs) {
16393fdcfb66STao Ma 			BUG();
16403fdcfb66STao Ma 			goto out;
16413fdcfb66STao Ma 		}
16423fdcfb66STao Ma 		ext4_walk_page_buffers(handle, page_bufs, 0, len,
16433fdcfb66STao Ma 				       NULL, bget_one);
16443fdcfb66STao Ma 	}
164562e086beSAneesh Kumar K.V 	/* As soon as we unlock the page, it can go away, but we have
164662e086beSAneesh Kumar K.V 	 * references to buffers so we are safe */
164762e086beSAneesh Kumar K.V 	unlock_page(page);
164862e086beSAneesh Kumar K.V 
16499924a92aSTheodore Ts'o 	handle = ext4_journal_start(inode, EXT4_HT_WRITE_PAGE,
16509924a92aSTheodore Ts'o 				    ext4_writepage_trans_blocks(inode));
165162e086beSAneesh Kumar K.V 	if (IS_ERR(handle)) {
165262e086beSAneesh Kumar K.V 		ret = PTR_ERR(handle);
165362e086beSAneesh Kumar K.V 		goto out;
165462e086beSAneesh Kumar K.V 	}
165562e086beSAneesh Kumar K.V 
1656441c8508SCurt Wohlgemuth 	BUG_ON(!ext4_handle_valid(handle));
1657441c8508SCurt Wohlgemuth 
16583fdcfb66STao Ma 	if (inline_data) {
16595d601255Sliang xie 		BUFFER_TRACE(inode_bh, "get write access");
16603fdcfb66STao Ma 		ret = ext4_journal_get_write_access(handle, inode_bh);
16613fdcfb66STao Ma 
16623fdcfb66STao Ma 		err = ext4_handle_dirty_metadata(handle, inode, inode_bh);
16633fdcfb66STao Ma 
16643fdcfb66STao Ma 	} else {
1665f19d5870STao Ma 		ret = ext4_walk_page_buffers(handle, page_bufs, 0, len, NULL,
166662e086beSAneesh Kumar K.V 					     do_journal_get_write_access);
166762e086beSAneesh Kumar K.V 
1668f19d5870STao Ma 		err = ext4_walk_page_buffers(handle, page_bufs, 0, len, NULL,
166962e086beSAneesh Kumar K.V 					     write_end_fn);
16703fdcfb66STao Ma 	}
167162e086beSAneesh Kumar K.V 	if (ret == 0)
167262e086beSAneesh Kumar K.V 		ret = err;
16732d859db3SJan Kara 	EXT4_I(inode)->i_datasync_tid = handle->h_transaction->t_tid;
167462e086beSAneesh Kumar K.V 	err = ext4_journal_stop(handle);
167562e086beSAneesh Kumar K.V 	if (!ret)
167662e086beSAneesh Kumar K.V 		ret = err;
167762e086beSAneesh Kumar K.V 
16783fdcfb66STao Ma 	if (!ext4_has_inline_data(inode))
16798c9367fdSTheodore Ts'o 		ext4_walk_page_buffers(NULL, page_bufs, 0, len,
16803fdcfb66STao Ma 				       NULL, bput_one);
168119f5fb7aSTheodore Ts'o 	ext4_set_inode_state(inode, EXT4_STATE_JDATA);
168262e086beSAneesh Kumar K.V out:
16833fdcfb66STao Ma 	brelse(inode_bh);
168462e086beSAneesh Kumar K.V 	return ret;
168562e086beSAneesh Kumar K.V }
168662e086beSAneesh Kumar K.V 
168761628a3fSMingming Cao /*
168843ce1d23SAneesh Kumar K.V  * Note that we don't need to start a transaction unless we're journaling data
168943ce1d23SAneesh Kumar K.V  * because we should have holes filled from ext4_page_mkwrite(). We even don't
169043ce1d23SAneesh Kumar K.V  * need to file the inode to the transaction's list in ordered mode because if
169143ce1d23SAneesh Kumar K.V  * we are writing back data added by write(), the inode is already there and if
169243ce1d23SAneesh Kumar K.V  * we are writing back data modified via mmap(), no one guarantees in which
169343ce1d23SAneesh Kumar K.V  * transaction the data will hit the disk. In case we are journaling data, we
169443ce1d23SAneesh Kumar K.V  * cannot start transaction directly because transaction start ranks above page
169543ce1d23SAneesh Kumar K.V  * lock so we have to do some magic.
169643ce1d23SAneesh Kumar K.V  *
1697b920c755STheodore Ts'o  * This function can get called via...
169820970ba6STheodore Ts'o  *   - ext4_writepages after taking page lock (have journal handle)
1699b920c755STheodore Ts'o  *   - journal_submit_inode_data_buffers (no journal handle)
1700f6463b0dSArtem Bityutskiy  *   - shrink_page_list via the kswapd/direct reclaim (no journal handle)
1701b920c755STheodore Ts'o  *   - grab_page_cache when doing write_begin (have journal handle)
170243ce1d23SAneesh Kumar K.V  *
170343ce1d23SAneesh Kumar K.V  * We don't do any block allocation in this function. If we have page with
170443ce1d23SAneesh Kumar K.V  * multiple blocks we need to write those buffer_heads that are mapped. This
170543ce1d23SAneesh Kumar K.V  * is important for mmaped based write. So if we do with blocksize 1K
170643ce1d23SAneesh Kumar K.V  * truncate(f, 1024);
170743ce1d23SAneesh Kumar K.V  * a = mmap(f, 0, 4096);
170843ce1d23SAneesh Kumar K.V  * a[0] = 'a';
170943ce1d23SAneesh Kumar K.V  * truncate(f, 4096);
171043ce1d23SAneesh Kumar K.V  * we have in the page first buffer_head mapped via page_mkwrite call back
171190802ed9SPaul Bolle  * but other buffer_heads would be unmapped but dirty (dirty done via the
171243ce1d23SAneesh Kumar K.V  * do_wp_page). So writepage should write the first block. If we modify
171343ce1d23SAneesh Kumar K.V  * the mmap area beyond 1024 we will again get a page_fault and the
171443ce1d23SAneesh Kumar K.V  * page_mkwrite callback will do the block allocation and mark the
171543ce1d23SAneesh Kumar K.V  * buffer_heads mapped.
171643ce1d23SAneesh Kumar K.V  *
171743ce1d23SAneesh Kumar K.V  * We redirty the page if we have any buffer_heads that is either delay or
171843ce1d23SAneesh Kumar K.V  * unwritten in the page.
171943ce1d23SAneesh Kumar K.V  *
172043ce1d23SAneesh Kumar K.V  * We can get recursively called as show below.
172143ce1d23SAneesh Kumar K.V  *
172243ce1d23SAneesh Kumar K.V  *	ext4_writepage() -> kmalloc() -> __alloc_pages() -> page_launder() ->
172343ce1d23SAneesh Kumar K.V  *		ext4_writepage()
172443ce1d23SAneesh Kumar K.V  *
172543ce1d23SAneesh Kumar K.V  * But since we don't do any block allocation we should not deadlock.
172643ce1d23SAneesh Kumar K.V  * Page also have the dirty flag cleared so we don't get recurive page_lock.
172761628a3fSMingming Cao  */
172843ce1d23SAneesh Kumar K.V static int ext4_writepage(struct page *page,
172964769240SAlex Tomas 			  struct writeback_control *wbc)
173064769240SAlex Tomas {
1731f8bec370SJan Kara 	int ret = 0;
173261628a3fSMingming Cao 	loff_t size;
1733498e5f24STheodore Ts'o 	unsigned int len;
1734744692dcSJiaying Zhang 	struct buffer_head *page_bufs = NULL;
173561628a3fSMingming Cao 	struct inode *inode = page->mapping->host;
173636ade451SJan Kara 	struct ext4_io_submit io_submit;
17371c8349a1SNamjae Jeon 	bool keep_towrite = false;
173864769240SAlex Tomas 
1739a9c667f8SLukas Czerner 	trace_ext4_writepage(page);
174061628a3fSMingming Cao 	size = i_size_read(inode);
174161628a3fSMingming Cao 	if (page->index == size >> PAGE_CACHE_SHIFT)
174261628a3fSMingming Cao 		len = size & ~PAGE_CACHE_MASK;
174361628a3fSMingming Cao 	else
174461628a3fSMingming Cao 		len = PAGE_CACHE_SIZE;
174561628a3fSMingming Cao 
1746f0e6c985SAneesh Kumar K.V 	page_bufs = page_buffers(page);
174764769240SAlex Tomas 	/*
1748fe386132SJan Kara 	 * We cannot do block allocation or other extent handling in this
1749fe386132SJan Kara 	 * function. If there are buffers needing that, we have to redirty
1750fe386132SJan Kara 	 * the page. But we may reach here when we do a journal commit via
1751fe386132SJan Kara 	 * journal_submit_inode_data_buffers() and in that case we must write
1752fe386132SJan Kara 	 * allocated buffers to achieve data=ordered mode guarantees.
175364769240SAlex Tomas 	 */
1754f19d5870STao Ma 	if (ext4_walk_page_buffers(NULL, page_bufs, 0, len, NULL,
1755c364b22cSAneesh Kumar K.V 				   ext4_bh_delay_or_unwritten)) {
175661628a3fSMingming Cao 		redirty_page_for_writepage(wbc, page);
1757fe386132SJan Kara 		if (current->flags & PF_MEMALLOC) {
1758fe386132SJan Kara 			/*
1759fe386132SJan Kara 			 * For memory cleaning there's no point in writing only
1760fe386132SJan Kara 			 * some buffers. So just bail out. Warn if we came here
1761fe386132SJan Kara 			 * from direct reclaim.
1762fe386132SJan Kara 			 */
1763fe386132SJan Kara 			WARN_ON_ONCE((current->flags & (PF_MEMALLOC|PF_KSWAPD))
1764fe386132SJan Kara 							== PF_MEMALLOC);
176561628a3fSMingming Cao 			unlock_page(page);
176661628a3fSMingming Cao 			return 0;
176761628a3fSMingming Cao 		}
17681c8349a1SNamjae Jeon 		keep_towrite = true;
1769f0e6c985SAneesh Kumar K.V 	}
177064769240SAlex Tomas 
1771cb20d518STheodore Ts'o 	if (PageChecked(page) && ext4_should_journal_data(inode))
177243ce1d23SAneesh Kumar K.V 		/*
177343ce1d23SAneesh Kumar K.V 		 * It's mmapped pagecache.  Add buffers and journal it.  There
177443ce1d23SAneesh Kumar K.V 		 * doesn't seem much point in redirtying the page here.
177543ce1d23SAneesh Kumar K.V 		 */
17763f0ca309SWu Fengguang 		return __ext4_journalled_writepage(page, len);
177743ce1d23SAneesh Kumar K.V 
177897a851edSJan Kara 	ext4_io_submit_init(&io_submit, wbc);
177997a851edSJan Kara 	io_submit.io_end = ext4_init_io_end(inode, GFP_NOFS);
178097a851edSJan Kara 	if (!io_submit.io_end) {
178197a851edSJan Kara 		redirty_page_for_writepage(wbc, page);
178297a851edSJan Kara 		unlock_page(page);
178397a851edSJan Kara 		return -ENOMEM;
178497a851edSJan Kara 	}
17851c8349a1SNamjae Jeon 	ret = ext4_bio_write_page(&io_submit, page, len, wbc, keep_towrite);
178636ade451SJan Kara 	ext4_io_submit(&io_submit);
178797a851edSJan Kara 	/* Drop io_end reference we got from init */
178897a851edSJan Kara 	ext4_put_io_end_defer(io_submit.io_end);
178964769240SAlex Tomas 	return ret;
179064769240SAlex Tomas }
179164769240SAlex Tomas 
17925f1132b2SJan Kara static int mpage_submit_page(struct mpage_da_data *mpd, struct page *page)
17935f1132b2SJan Kara {
17945f1132b2SJan Kara 	int len;
17955f1132b2SJan Kara 	loff_t size = i_size_read(mpd->inode);
17965f1132b2SJan Kara 	int err;
17975f1132b2SJan Kara 
17985f1132b2SJan Kara 	BUG_ON(page->index != mpd->first_page);
17995f1132b2SJan Kara 	if (page->index == size >> PAGE_CACHE_SHIFT)
18005f1132b2SJan Kara 		len = size & ~PAGE_CACHE_MASK;
18015f1132b2SJan Kara 	else
18025f1132b2SJan Kara 		len = PAGE_CACHE_SIZE;
18035f1132b2SJan Kara 	clear_page_dirty_for_io(page);
18041c8349a1SNamjae Jeon 	err = ext4_bio_write_page(&mpd->io_submit, page, len, mpd->wbc, false);
18055f1132b2SJan Kara 	if (!err)
18065f1132b2SJan Kara 		mpd->wbc->nr_to_write--;
18075f1132b2SJan Kara 	mpd->first_page++;
18085f1132b2SJan Kara 
18095f1132b2SJan Kara 	return err;
18105f1132b2SJan Kara }
18115f1132b2SJan Kara 
18124e7ea81dSJan Kara #define BH_FLAGS ((1 << BH_Unwritten) | (1 << BH_Delay))
18134e7ea81dSJan Kara 
181461628a3fSMingming Cao /*
1815fffb2739SJan Kara  * mballoc gives us at most this number of blocks...
1816fffb2739SJan Kara  * XXX: That seems to be only a limitation of ext4_mb_normalize_request().
1817fffb2739SJan Kara  * The rest of mballoc seems to handle chunks up to full group size.
181861628a3fSMingming Cao  */
1819fffb2739SJan Kara #define MAX_WRITEPAGES_EXTENT_LEN 2048
1820525f4ed8SMingming Cao 
1821525f4ed8SMingming Cao /*
18224e7ea81dSJan Kara  * mpage_add_bh_to_extent - try to add bh to extent of blocks to map
18234e7ea81dSJan Kara  *
18244e7ea81dSJan Kara  * @mpd - extent of blocks
18254e7ea81dSJan Kara  * @lblk - logical number of the block in the file
182609930042SJan Kara  * @bh - buffer head we want to add to the extent
18274e7ea81dSJan Kara  *
182809930042SJan Kara  * The function is used to collect contig. blocks in the same state. If the
182909930042SJan Kara  * buffer doesn't require mapping for writeback and we haven't started the
183009930042SJan Kara  * extent of buffers to map yet, the function returns 'true' immediately - the
183109930042SJan Kara  * caller can write the buffer right away. Otherwise the function returns true
183209930042SJan Kara  * if the block has been added to the extent, false if the block couldn't be
183309930042SJan Kara  * added.
18344e7ea81dSJan Kara  */
183509930042SJan Kara static bool mpage_add_bh_to_extent(struct mpage_da_data *mpd, ext4_lblk_t lblk,
183609930042SJan Kara 				   struct buffer_head *bh)
18374e7ea81dSJan Kara {
18384e7ea81dSJan Kara 	struct ext4_map_blocks *map = &mpd->map;
18394e7ea81dSJan Kara 
184009930042SJan Kara 	/* Buffer that doesn't need mapping for writeback? */
184109930042SJan Kara 	if (!buffer_dirty(bh) || !buffer_mapped(bh) ||
184209930042SJan Kara 	    (!buffer_delay(bh) && !buffer_unwritten(bh))) {
184309930042SJan Kara 		/* So far no extent to map => we write the buffer right away */
184409930042SJan Kara 		if (map->m_len == 0)
184509930042SJan Kara 			return true;
184609930042SJan Kara 		return false;
184709930042SJan Kara 	}
18484e7ea81dSJan Kara 
18494e7ea81dSJan Kara 	/* First block in the extent? */
18504e7ea81dSJan Kara 	if (map->m_len == 0) {
18514e7ea81dSJan Kara 		map->m_lblk = lblk;
18524e7ea81dSJan Kara 		map->m_len = 1;
185309930042SJan Kara 		map->m_flags = bh->b_state & BH_FLAGS;
185409930042SJan Kara 		return true;
18554e7ea81dSJan Kara 	}
18564e7ea81dSJan Kara 
185709930042SJan Kara 	/* Don't go larger than mballoc is willing to allocate */
185809930042SJan Kara 	if (map->m_len >= MAX_WRITEPAGES_EXTENT_LEN)
185909930042SJan Kara 		return false;
186009930042SJan Kara 
18614e7ea81dSJan Kara 	/* Can we merge the block to our big extent? */
18624e7ea81dSJan Kara 	if (lblk == map->m_lblk + map->m_len &&
186309930042SJan Kara 	    (bh->b_state & BH_FLAGS) == map->m_flags) {
18644e7ea81dSJan Kara 		map->m_len++;
186509930042SJan Kara 		return true;
18664e7ea81dSJan Kara 	}
186709930042SJan Kara 	return false;
18684e7ea81dSJan Kara }
18694e7ea81dSJan Kara 
18705f1132b2SJan Kara /*
18715f1132b2SJan Kara  * mpage_process_page_bufs - submit page buffers for IO or add them to extent
18725f1132b2SJan Kara  *
18735f1132b2SJan Kara  * @mpd - extent of blocks for mapping
18745f1132b2SJan Kara  * @head - the first buffer in the page
18755f1132b2SJan Kara  * @bh - buffer we should start processing from
18765f1132b2SJan Kara  * @lblk - logical number of the block in the file corresponding to @bh
18775f1132b2SJan Kara  *
18785f1132b2SJan Kara  * Walk through page buffers from @bh upto @head (exclusive) and either submit
18795f1132b2SJan Kara  * the page for IO if all buffers in this page were mapped and there's no
18805f1132b2SJan Kara  * accumulated extent of buffers to map or add buffers in the page to the
18815f1132b2SJan Kara  * extent of buffers to map. The function returns 1 if the caller can continue
18825f1132b2SJan Kara  * by processing the next page, 0 if it should stop adding buffers to the
18835f1132b2SJan Kara  * extent to map because we cannot extend it anymore. It can also return value
18845f1132b2SJan Kara  * < 0 in case of error during IO submission.
18855f1132b2SJan Kara  */
18865f1132b2SJan Kara static int mpage_process_page_bufs(struct mpage_da_data *mpd,
18874e7ea81dSJan Kara 				   struct buffer_head *head,
18884e7ea81dSJan Kara 				   struct buffer_head *bh,
18894e7ea81dSJan Kara 				   ext4_lblk_t lblk)
18904e7ea81dSJan Kara {
18914e7ea81dSJan Kara 	struct inode *inode = mpd->inode;
18925f1132b2SJan Kara 	int err;
18934e7ea81dSJan Kara 	ext4_lblk_t blocks = (i_size_read(inode) + (1 << inode->i_blkbits) - 1)
18944e7ea81dSJan Kara 							>> inode->i_blkbits;
18954e7ea81dSJan Kara 
18964e7ea81dSJan Kara 	do {
18974e7ea81dSJan Kara 		BUG_ON(buffer_locked(bh));
18984e7ea81dSJan Kara 
189909930042SJan Kara 		if (lblk >= blocks || !mpage_add_bh_to_extent(mpd, lblk, bh)) {
19004e7ea81dSJan Kara 			/* Found extent to map? */
19014e7ea81dSJan Kara 			if (mpd->map.m_len)
19025f1132b2SJan Kara 				return 0;
190309930042SJan Kara 			/* Everything mapped so far and we hit EOF */
19045f1132b2SJan Kara 			break;
19054e7ea81dSJan Kara 		}
19064e7ea81dSJan Kara 	} while (lblk++, (bh = bh->b_this_page) != head);
19075f1132b2SJan Kara 	/* So far everything mapped? Submit the page for IO. */
19085f1132b2SJan Kara 	if (mpd->map.m_len == 0) {
19095f1132b2SJan Kara 		err = mpage_submit_page(mpd, head->b_page);
19105f1132b2SJan Kara 		if (err < 0)
19114e7ea81dSJan Kara 			return err;
19124e7ea81dSJan Kara 	}
19135f1132b2SJan Kara 	return lblk < blocks;
19145f1132b2SJan Kara }
19154e7ea81dSJan Kara 
19164e7ea81dSJan Kara /*
19174e7ea81dSJan Kara  * mpage_map_buffers - update buffers corresponding to changed extent and
19184e7ea81dSJan Kara  *		       submit fully mapped pages for IO
19194e7ea81dSJan Kara  *
19204e7ea81dSJan Kara  * @mpd - description of extent to map, on return next extent to map
19214e7ea81dSJan Kara  *
19224e7ea81dSJan Kara  * Scan buffers corresponding to changed extent (we expect corresponding pages
19234e7ea81dSJan Kara  * to be already locked) and update buffer state according to new extent state.
19244e7ea81dSJan Kara  * We map delalloc buffers to their physical location, clear unwritten bits,
1925556615dcSLukas Czerner  * and mark buffers as uninit when we perform writes to unwritten extents
19264e7ea81dSJan Kara  * and do extent conversion after IO is finished. If the last page is not fully
19274e7ea81dSJan Kara  * mapped, we update @map to the next extent in the last page that needs
19284e7ea81dSJan Kara  * mapping. Otherwise we submit the page for IO.
19294e7ea81dSJan Kara  */
19304e7ea81dSJan Kara static int mpage_map_and_submit_buffers(struct mpage_da_data *mpd)
19314e7ea81dSJan Kara {
19324e7ea81dSJan Kara 	struct pagevec pvec;
19334e7ea81dSJan Kara 	int nr_pages, i;
19344e7ea81dSJan Kara 	struct inode *inode = mpd->inode;
19354e7ea81dSJan Kara 	struct buffer_head *head, *bh;
19364e7ea81dSJan Kara 	int bpp_bits = PAGE_CACHE_SHIFT - inode->i_blkbits;
19374e7ea81dSJan Kara 	pgoff_t start, end;
19384e7ea81dSJan Kara 	ext4_lblk_t lblk;
19394e7ea81dSJan Kara 	sector_t pblock;
19404e7ea81dSJan Kara 	int err;
19414e7ea81dSJan Kara 
19424e7ea81dSJan Kara 	start = mpd->map.m_lblk >> bpp_bits;
19434e7ea81dSJan Kara 	end = (mpd->map.m_lblk + mpd->map.m_len - 1) >> bpp_bits;
19444e7ea81dSJan Kara 	lblk = start << bpp_bits;
19454e7ea81dSJan Kara 	pblock = mpd->map.m_pblk;
19464e7ea81dSJan Kara 
19474e7ea81dSJan Kara 	pagevec_init(&pvec, 0);
19484e7ea81dSJan Kara 	while (start <= end) {
19494e7ea81dSJan Kara 		nr_pages = pagevec_lookup(&pvec, inode->i_mapping, start,
19504e7ea81dSJan Kara 					  PAGEVEC_SIZE);
19514e7ea81dSJan Kara 		if (nr_pages == 0)
19524e7ea81dSJan Kara 			break;
19534e7ea81dSJan Kara 		for (i = 0; i < nr_pages; i++) {
19544e7ea81dSJan Kara 			struct page *page = pvec.pages[i];
19554e7ea81dSJan Kara 
19564e7ea81dSJan Kara 			if (page->index > end)
19574e7ea81dSJan Kara 				break;
19584e7ea81dSJan Kara 			/* Up to 'end' pages must be contiguous */
19594e7ea81dSJan Kara 			BUG_ON(page->index != start);
19604e7ea81dSJan Kara 			bh = head = page_buffers(page);
19614e7ea81dSJan Kara 			do {
19624e7ea81dSJan Kara 				if (lblk < mpd->map.m_lblk)
19634e7ea81dSJan Kara 					continue;
19644e7ea81dSJan Kara 				if (lblk >= mpd->map.m_lblk + mpd->map.m_len) {
19654e7ea81dSJan Kara 					/*
19664e7ea81dSJan Kara 					 * Buffer after end of mapped extent.
19674e7ea81dSJan Kara 					 * Find next buffer in the page to map.
19684e7ea81dSJan Kara 					 */
19694e7ea81dSJan Kara 					mpd->map.m_len = 0;
19704e7ea81dSJan Kara 					mpd->map.m_flags = 0;
19715f1132b2SJan Kara 					/*
19725f1132b2SJan Kara 					 * FIXME: If dioread_nolock supports
19735f1132b2SJan Kara 					 * blocksize < pagesize, we need to make
19745f1132b2SJan Kara 					 * sure we add size mapped so far to
19755f1132b2SJan Kara 					 * io_end->size as the following call
19765f1132b2SJan Kara 					 * can submit the page for IO.
19775f1132b2SJan Kara 					 */
19785f1132b2SJan Kara 					err = mpage_process_page_bufs(mpd, head,
19795f1132b2SJan Kara 								      bh, lblk);
19804e7ea81dSJan Kara 					pagevec_release(&pvec);
19815f1132b2SJan Kara 					if (err > 0)
19825f1132b2SJan Kara 						err = 0;
19835f1132b2SJan Kara 					return err;
19844e7ea81dSJan Kara 				}
19854e7ea81dSJan Kara 				if (buffer_delay(bh)) {
19864e7ea81dSJan Kara 					clear_buffer_delay(bh);
19874e7ea81dSJan Kara 					bh->b_blocknr = pblock++;
19884e7ea81dSJan Kara 				}
19894e7ea81dSJan Kara 				clear_buffer_unwritten(bh);
19905f1132b2SJan Kara 			} while (lblk++, (bh = bh->b_this_page) != head);
19914e7ea81dSJan Kara 
19924e7ea81dSJan Kara 			/*
19934e7ea81dSJan Kara 			 * FIXME: This is going to break if dioread_nolock
19944e7ea81dSJan Kara 			 * supports blocksize < pagesize as we will try to
19954e7ea81dSJan Kara 			 * convert potentially unmapped parts of inode.
19964e7ea81dSJan Kara 			 */
19974e7ea81dSJan Kara 			mpd->io_submit.io_end->size += PAGE_CACHE_SIZE;
19984e7ea81dSJan Kara 			/* Page fully mapped - let IO run! */
19994e7ea81dSJan Kara 			err = mpage_submit_page(mpd, page);
20004e7ea81dSJan Kara 			if (err < 0) {
20014e7ea81dSJan Kara 				pagevec_release(&pvec);
20024e7ea81dSJan Kara 				return err;
20034e7ea81dSJan Kara 			}
20044e7ea81dSJan Kara 			start++;
20054e7ea81dSJan Kara 		}
20064e7ea81dSJan Kara 		pagevec_release(&pvec);
20074e7ea81dSJan Kara 	}
20084e7ea81dSJan Kara 	/* Extent fully mapped and matches with page boundary. We are done. */
20094e7ea81dSJan Kara 	mpd->map.m_len = 0;
20104e7ea81dSJan Kara 	mpd->map.m_flags = 0;
20114e7ea81dSJan Kara 	return 0;
20124e7ea81dSJan Kara }
20134e7ea81dSJan Kara 
20144e7ea81dSJan Kara static int mpage_map_one_extent(handle_t *handle, struct mpage_da_data *mpd)
20154e7ea81dSJan Kara {
20164e7ea81dSJan Kara 	struct inode *inode = mpd->inode;
20174e7ea81dSJan Kara 	struct ext4_map_blocks *map = &mpd->map;
20184e7ea81dSJan Kara 	int get_blocks_flags;
2019090f32eeSLukas Czerner 	int err, dioread_nolock;
20204e7ea81dSJan Kara 
20214e7ea81dSJan Kara 	trace_ext4_da_write_pages_extent(inode, map);
20224e7ea81dSJan Kara 	/*
20234e7ea81dSJan Kara 	 * Call ext4_map_blocks() to allocate any delayed allocation blocks, or
2024556615dcSLukas Czerner 	 * to convert an unwritten extent to be initialized (in the case
20254e7ea81dSJan Kara 	 * where we have written into one or more preallocated blocks).  It is
20264e7ea81dSJan Kara 	 * possible that we're going to need more metadata blocks than
20274e7ea81dSJan Kara 	 * previously reserved. However we must not fail because we're in
20284e7ea81dSJan Kara 	 * writeback and there is nothing we can do about it so it might result
20294e7ea81dSJan Kara 	 * in data loss.  So use reserved blocks to allocate metadata if
20304e7ea81dSJan Kara 	 * possible.
20314e7ea81dSJan Kara 	 *
20324e7ea81dSJan Kara 	 * We pass in the magic EXT4_GET_BLOCKS_DELALLOC_RESERVE if the blocks
20334e7ea81dSJan Kara 	 * in question are delalloc blocks.  This affects functions in many
20344e7ea81dSJan Kara 	 * different parts of the allocation call path.  This flag exists
20354e7ea81dSJan Kara 	 * primarily because we don't want to change *many* call functions, so
20364e7ea81dSJan Kara 	 * ext4_map_blocks() will set the EXT4_STATE_DELALLOC_RESERVED flag
20374e7ea81dSJan Kara 	 * once the inode's allocation semaphore is taken.
20384e7ea81dSJan Kara 	 */
20394e7ea81dSJan Kara 	get_blocks_flags = EXT4_GET_BLOCKS_CREATE |
20404e7ea81dSJan Kara 			   EXT4_GET_BLOCKS_METADATA_NOFAIL;
2041090f32eeSLukas Czerner 	dioread_nolock = ext4_should_dioread_nolock(inode);
2042090f32eeSLukas Czerner 	if (dioread_nolock)
20434e7ea81dSJan Kara 		get_blocks_flags |= EXT4_GET_BLOCKS_IO_CREATE_EXT;
20444e7ea81dSJan Kara 	if (map->m_flags & (1 << BH_Delay))
20454e7ea81dSJan Kara 		get_blocks_flags |= EXT4_GET_BLOCKS_DELALLOC_RESERVE;
20464e7ea81dSJan Kara 
20474e7ea81dSJan Kara 	err = ext4_map_blocks(handle, inode, map, get_blocks_flags);
20484e7ea81dSJan Kara 	if (err < 0)
20494e7ea81dSJan Kara 		return err;
2050090f32eeSLukas Czerner 	if (dioread_nolock && (map->m_flags & EXT4_MAP_UNWRITTEN)) {
20516b523df4SJan Kara 		if (!mpd->io_submit.io_end->handle &&
20526b523df4SJan Kara 		    ext4_handle_valid(handle)) {
20536b523df4SJan Kara 			mpd->io_submit.io_end->handle = handle->h_rsv_handle;
20546b523df4SJan Kara 			handle->h_rsv_handle = NULL;
20556b523df4SJan Kara 		}
20563613d228SJan Kara 		ext4_set_io_unwritten_flag(inode, mpd->io_submit.io_end);
20576b523df4SJan Kara 	}
20584e7ea81dSJan Kara 
20594e7ea81dSJan Kara 	BUG_ON(map->m_len == 0);
20604e7ea81dSJan Kara 	if (map->m_flags & EXT4_MAP_NEW) {
20614e7ea81dSJan Kara 		struct block_device *bdev = inode->i_sb->s_bdev;
20624e7ea81dSJan Kara 		int i;
20634e7ea81dSJan Kara 
20644e7ea81dSJan Kara 		for (i = 0; i < map->m_len; i++)
20654e7ea81dSJan Kara 			unmap_underlying_metadata(bdev, map->m_pblk + i);
20664e7ea81dSJan Kara 	}
20674e7ea81dSJan Kara 	return 0;
20684e7ea81dSJan Kara }
20694e7ea81dSJan Kara 
20704e7ea81dSJan Kara /*
20714e7ea81dSJan Kara  * mpage_map_and_submit_extent - map extent starting at mpd->lblk of length
20724e7ea81dSJan Kara  *				 mpd->len and submit pages underlying it for IO
20734e7ea81dSJan Kara  *
20744e7ea81dSJan Kara  * @handle - handle for journal operations
20754e7ea81dSJan Kara  * @mpd - extent to map
20767534e854SJan Kara  * @give_up_on_write - we set this to true iff there is a fatal error and there
20777534e854SJan Kara  *                     is no hope of writing the data. The caller should discard
20787534e854SJan Kara  *                     dirty pages to avoid infinite loops.
20794e7ea81dSJan Kara  *
20804e7ea81dSJan Kara  * The function maps extent starting at mpd->lblk of length mpd->len. If it is
20814e7ea81dSJan Kara  * delayed, blocks are allocated, if it is unwritten, we may need to convert
20824e7ea81dSJan Kara  * them to initialized or split the described range from larger unwritten
20834e7ea81dSJan Kara  * extent. Note that we need not map all the described range since allocation
20844e7ea81dSJan Kara  * can return less blocks or the range is covered by more unwritten extents. We
20854e7ea81dSJan Kara  * cannot map more because we are limited by reserved transaction credits. On
20864e7ea81dSJan Kara  * the other hand we always make sure that the last touched page is fully
20874e7ea81dSJan Kara  * mapped so that it can be written out (and thus forward progress is
20884e7ea81dSJan Kara  * guaranteed). After mapping we submit all mapped pages for IO.
20894e7ea81dSJan Kara  */
20904e7ea81dSJan Kara static int mpage_map_and_submit_extent(handle_t *handle,
2091cb530541STheodore Ts'o 				       struct mpage_da_data *mpd,
2092cb530541STheodore Ts'o 				       bool *give_up_on_write)
20934e7ea81dSJan Kara {
20944e7ea81dSJan Kara 	struct inode *inode = mpd->inode;
20954e7ea81dSJan Kara 	struct ext4_map_blocks *map = &mpd->map;
20964e7ea81dSJan Kara 	int err;
20974e7ea81dSJan Kara 	loff_t disksize;
20984e7ea81dSJan Kara 
20994e7ea81dSJan Kara 	mpd->io_submit.io_end->offset =
21004e7ea81dSJan Kara 				((loff_t)map->m_lblk) << inode->i_blkbits;
210127d7c4edSJan Kara 	do {
21024e7ea81dSJan Kara 		err = mpage_map_one_extent(handle, mpd);
21034e7ea81dSJan Kara 		if (err < 0) {
21044e7ea81dSJan Kara 			struct super_block *sb = inode->i_sb;
21054e7ea81dSJan Kara 
2106cb530541STheodore Ts'o 			if (EXT4_SB(sb)->s_mount_flags & EXT4_MF_FS_ABORTED)
2107cb530541STheodore Ts'o 				goto invalidate_dirty_pages;
21084e7ea81dSJan Kara 			/*
2109cb530541STheodore Ts'o 			 * Let the uper layers retry transient errors.
2110cb530541STheodore Ts'o 			 * In the case of ENOSPC, if ext4_count_free_blocks()
2111cb530541STheodore Ts'o 			 * is non-zero, a commit should free up blocks.
21124e7ea81dSJan Kara 			 */
2113cb530541STheodore Ts'o 			if ((err == -ENOMEM) ||
2114cb530541STheodore Ts'o 			    (err == -ENOSPC && ext4_count_free_clusters(sb)))
2115cb530541STheodore Ts'o 				return err;
21164e7ea81dSJan Kara 			ext4_msg(sb, KERN_CRIT,
21174e7ea81dSJan Kara 				 "Delayed block allocation failed for "
21184e7ea81dSJan Kara 				 "inode %lu at logical offset %llu with"
21194e7ea81dSJan Kara 				 " max blocks %u with error %d",
21204e7ea81dSJan Kara 				 inode->i_ino,
21214e7ea81dSJan Kara 				 (unsigned long long)map->m_lblk,
2122cb530541STheodore Ts'o 				 (unsigned)map->m_len, -err);
21234e7ea81dSJan Kara 			ext4_msg(sb, KERN_CRIT,
21244e7ea81dSJan Kara 				 "This should not happen!! Data will "
21254e7ea81dSJan Kara 				 "be lost\n");
21264e7ea81dSJan Kara 			if (err == -ENOSPC)
21274e7ea81dSJan Kara 				ext4_print_free_blocks(inode);
2128cb530541STheodore Ts'o 		invalidate_dirty_pages:
2129cb530541STheodore Ts'o 			*give_up_on_write = true;
21304e7ea81dSJan Kara 			return err;
21314e7ea81dSJan Kara 		}
21324e7ea81dSJan Kara 		/*
21334e7ea81dSJan Kara 		 * Update buffer state, submit mapped pages, and get us new
21344e7ea81dSJan Kara 		 * extent to map
21354e7ea81dSJan Kara 		 */
21364e7ea81dSJan Kara 		err = mpage_map_and_submit_buffers(mpd);
21374e7ea81dSJan Kara 		if (err < 0)
21384e7ea81dSJan Kara 			return err;
213927d7c4edSJan Kara 	} while (map->m_len);
21404e7ea81dSJan Kara 
2141622cad13STheodore Ts'o 	/*
2142622cad13STheodore Ts'o 	 * Update on-disk size after IO is submitted.  Races with
2143622cad13STheodore Ts'o 	 * truncate are avoided by checking i_size under i_data_sem.
2144622cad13STheodore Ts'o 	 */
21454e7ea81dSJan Kara 	disksize = ((loff_t)mpd->first_page) << PAGE_CACHE_SHIFT;
21464e7ea81dSJan Kara 	if (disksize > EXT4_I(inode)->i_disksize) {
21474e7ea81dSJan Kara 		int err2;
2148622cad13STheodore Ts'o 		loff_t i_size;
21494e7ea81dSJan Kara 
2150622cad13STheodore Ts'o 		down_write(&EXT4_I(inode)->i_data_sem);
2151622cad13STheodore Ts'o 		i_size = i_size_read(inode);
2152622cad13STheodore Ts'o 		if (disksize > i_size)
2153622cad13STheodore Ts'o 			disksize = i_size;
2154622cad13STheodore Ts'o 		if (disksize > EXT4_I(inode)->i_disksize)
2155622cad13STheodore Ts'o 			EXT4_I(inode)->i_disksize = disksize;
21564e7ea81dSJan Kara 		err2 = ext4_mark_inode_dirty(handle, inode);
2157622cad13STheodore Ts'o 		up_write(&EXT4_I(inode)->i_data_sem);
21584e7ea81dSJan Kara 		if (err2)
21594e7ea81dSJan Kara 			ext4_error(inode->i_sb,
21604e7ea81dSJan Kara 				   "Failed to mark inode %lu dirty",
21614e7ea81dSJan Kara 				   inode->i_ino);
21624e7ea81dSJan Kara 		if (!err)
21634e7ea81dSJan Kara 			err = err2;
21644e7ea81dSJan Kara 	}
21654e7ea81dSJan Kara 	return err;
21664e7ea81dSJan Kara }
21674e7ea81dSJan Kara 
21684e7ea81dSJan Kara /*
2169fffb2739SJan Kara  * Calculate the total number of credits to reserve for one writepages
217020970ba6STheodore Ts'o  * iteration. This is called from ext4_writepages(). We map an extent of
2171fffb2739SJan Kara  * up to MAX_WRITEPAGES_EXTENT_LEN blocks and then we go on and finish mapping
2172fffb2739SJan Kara  * the last partial page. So in total we can map MAX_WRITEPAGES_EXTENT_LEN +
2173fffb2739SJan Kara  * bpp - 1 blocks in bpp different extents.
2174525f4ed8SMingming Cao  */
2175fffb2739SJan Kara static int ext4_da_writepages_trans_blocks(struct inode *inode)
2176fffb2739SJan Kara {
2177fffb2739SJan Kara 	int bpp = ext4_journal_blocks_per_page(inode);
2178525f4ed8SMingming Cao 
2179fffb2739SJan Kara 	return ext4_meta_trans_blocks(inode,
2180fffb2739SJan Kara 				MAX_WRITEPAGES_EXTENT_LEN + bpp - 1, bpp);
2181525f4ed8SMingming Cao }
218261628a3fSMingming Cao 
21838e48dcfbSTheodore Ts'o /*
21844e7ea81dSJan Kara  * mpage_prepare_extent_to_map - find & lock contiguous range of dirty pages
21854e7ea81dSJan Kara  * 				 and underlying extent to map
21864e7ea81dSJan Kara  *
21874e7ea81dSJan Kara  * @mpd - where to look for pages
21884e7ea81dSJan Kara  *
21894e7ea81dSJan Kara  * Walk dirty pages in the mapping. If they are fully mapped, submit them for
21904e7ea81dSJan Kara  * IO immediately. When we find a page which isn't mapped we start accumulating
21914e7ea81dSJan Kara  * extent of buffers underlying these pages that needs mapping (formed by
21924e7ea81dSJan Kara  * either delayed or unwritten buffers). We also lock the pages containing
21934e7ea81dSJan Kara  * these buffers. The extent found is returned in @mpd structure (starting at
21944e7ea81dSJan Kara  * mpd->lblk with length mpd->len blocks).
21954e7ea81dSJan Kara  *
21964e7ea81dSJan Kara  * Note that this function can attach bios to one io_end structure which are
21974e7ea81dSJan Kara  * neither logically nor physically contiguous. Although it may seem as an
21984e7ea81dSJan Kara  * unnecessary complication, it is actually inevitable in blocksize < pagesize
21994e7ea81dSJan Kara  * case as we need to track IO to all buffers underlying a page in one io_end.
22008e48dcfbSTheodore Ts'o  */
22014e7ea81dSJan Kara static int mpage_prepare_extent_to_map(struct mpage_da_data *mpd)
22028e48dcfbSTheodore Ts'o {
22034e7ea81dSJan Kara 	struct address_space *mapping = mpd->inode->i_mapping;
22048e48dcfbSTheodore Ts'o 	struct pagevec pvec;
22054f01b02cSTheodore Ts'o 	unsigned int nr_pages;
2206aeac589aSMing Lei 	long left = mpd->wbc->nr_to_write;
22074e7ea81dSJan Kara 	pgoff_t index = mpd->first_page;
22084e7ea81dSJan Kara 	pgoff_t end = mpd->last_page;
22094e7ea81dSJan Kara 	int tag;
22104e7ea81dSJan Kara 	int i, err = 0;
22114e7ea81dSJan Kara 	int blkbits = mpd->inode->i_blkbits;
22124e7ea81dSJan Kara 	ext4_lblk_t lblk;
22134e7ea81dSJan Kara 	struct buffer_head *head;
22148e48dcfbSTheodore Ts'o 
22154e7ea81dSJan Kara 	if (mpd->wbc->sync_mode == WB_SYNC_ALL || mpd->wbc->tagged_writepages)
22165b41d924SEric Sandeen 		tag = PAGECACHE_TAG_TOWRITE;
22175b41d924SEric Sandeen 	else
22185b41d924SEric Sandeen 		tag = PAGECACHE_TAG_DIRTY;
22195b41d924SEric Sandeen 
22204e7ea81dSJan Kara 	pagevec_init(&pvec, 0);
22214e7ea81dSJan Kara 	mpd->map.m_len = 0;
22224e7ea81dSJan Kara 	mpd->next_page = index;
22234f01b02cSTheodore Ts'o 	while (index <= end) {
22245b41d924SEric Sandeen 		nr_pages = pagevec_lookup_tag(&pvec, mapping, &index, tag,
22258e48dcfbSTheodore Ts'o 			      min(end - index, (pgoff_t)PAGEVEC_SIZE-1) + 1);
22268e48dcfbSTheodore Ts'o 		if (nr_pages == 0)
22274e7ea81dSJan Kara 			goto out;
22288e48dcfbSTheodore Ts'o 
22298e48dcfbSTheodore Ts'o 		for (i = 0; i < nr_pages; i++) {
22308e48dcfbSTheodore Ts'o 			struct page *page = pvec.pages[i];
22318e48dcfbSTheodore Ts'o 
22328e48dcfbSTheodore Ts'o 			/*
22338e48dcfbSTheodore Ts'o 			 * At this point, the page may be truncated or
22348e48dcfbSTheodore Ts'o 			 * invalidated (changing page->mapping to NULL), or
22358e48dcfbSTheodore Ts'o 			 * even swizzled back from swapper_space to tmpfs file
22368e48dcfbSTheodore Ts'o 			 * mapping. However, page->index will not change
22378e48dcfbSTheodore Ts'o 			 * because we have a reference on the page.
22388e48dcfbSTheodore Ts'o 			 */
22394f01b02cSTheodore Ts'o 			if (page->index > end)
22404f01b02cSTheodore Ts'o 				goto out;
22418e48dcfbSTheodore Ts'o 
2242aeac589aSMing Lei 			/*
2243aeac589aSMing Lei 			 * Accumulated enough dirty pages? This doesn't apply
2244aeac589aSMing Lei 			 * to WB_SYNC_ALL mode. For integrity sync we have to
2245aeac589aSMing Lei 			 * keep going because someone may be concurrently
2246aeac589aSMing Lei 			 * dirtying pages, and we might have synced a lot of
2247aeac589aSMing Lei 			 * newly appeared dirty pages, but have not synced all
2248aeac589aSMing Lei 			 * of the old dirty pages.
2249aeac589aSMing Lei 			 */
2250aeac589aSMing Lei 			if (mpd->wbc->sync_mode == WB_SYNC_NONE && left <= 0)
2251aeac589aSMing Lei 				goto out;
2252aeac589aSMing Lei 
22534e7ea81dSJan Kara 			/* If we can't merge this page, we are done. */
22544e7ea81dSJan Kara 			if (mpd->map.m_len > 0 && mpd->next_page != page->index)
22554e7ea81dSJan Kara 				goto out;
225678aaced3STheodore Ts'o 
22578e48dcfbSTheodore Ts'o 			lock_page(page);
22588e48dcfbSTheodore Ts'o 			/*
22594e7ea81dSJan Kara 			 * If the page is no longer dirty, or its mapping no
22604e7ea81dSJan Kara 			 * longer corresponds to inode we are writing (which
22614e7ea81dSJan Kara 			 * means it has been truncated or invalidated), or the
22624e7ea81dSJan Kara 			 * page is already under writeback and we are not doing
22634e7ea81dSJan Kara 			 * a data integrity writeback, skip the page
22648e48dcfbSTheodore Ts'o 			 */
22654f01b02cSTheodore Ts'o 			if (!PageDirty(page) ||
22664f01b02cSTheodore Ts'o 			    (PageWriteback(page) &&
22674e7ea81dSJan Kara 			     (mpd->wbc->sync_mode == WB_SYNC_NONE)) ||
22684f01b02cSTheodore Ts'o 			    unlikely(page->mapping != mapping)) {
22698e48dcfbSTheodore Ts'o 				unlock_page(page);
22708e48dcfbSTheodore Ts'o 				continue;
22718e48dcfbSTheodore Ts'o 			}
22728e48dcfbSTheodore Ts'o 
22738e48dcfbSTheodore Ts'o 			wait_on_page_writeback(page);
22748e48dcfbSTheodore Ts'o 			BUG_ON(PageWriteback(page));
22758e48dcfbSTheodore Ts'o 
22764e7ea81dSJan Kara 			if (mpd->map.m_len == 0)
22778eb9e5ceSTheodore Ts'o 				mpd->first_page = page->index;
22788eb9e5ceSTheodore Ts'o 			mpd->next_page = page->index + 1;
2279f8bec370SJan Kara 			/* Add all dirty buffers to mpd */
22804e7ea81dSJan Kara 			lblk = ((ext4_lblk_t)page->index) <<
22814e7ea81dSJan Kara 				(PAGE_CACHE_SHIFT - blkbits);
22828eb9e5ceSTheodore Ts'o 			head = page_buffers(page);
22835f1132b2SJan Kara 			err = mpage_process_page_bufs(mpd, head, head, lblk);
22845f1132b2SJan Kara 			if (err <= 0)
22854e7ea81dSJan Kara 				goto out;
22865f1132b2SJan Kara 			err = 0;
2287aeac589aSMing Lei 			left--;
22888e48dcfbSTheodore Ts'o 		}
22898e48dcfbSTheodore Ts'o 		pagevec_release(&pvec);
22908e48dcfbSTheodore Ts'o 		cond_resched();
22918e48dcfbSTheodore Ts'o 	}
22924f01b02cSTheodore Ts'o 	return 0;
22938eb9e5ceSTheodore Ts'o out:
22948eb9e5ceSTheodore Ts'o 	pagevec_release(&pvec);
22954e7ea81dSJan Kara 	return err;
22968e48dcfbSTheodore Ts'o }
22978e48dcfbSTheodore Ts'o 
229820970ba6STheodore Ts'o static int __writepage(struct page *page, struct writeback_control *wbc,
229920970ba6STheodore Ts'o 		       void *data)
230020970ba6STheodore Ts'o {
230120970ba6STheodore Ts'o 	struct address_space *mapping = data;
230220970ba6STheodore Ts'o 	int ret = ext4_writepage(page, wbc);
230320970ba6STheodore Ts'o 	mapping_set_error(mapping, ret);
230420970ba6STheodore Ts'o 	return ret;
230520970ba6STheodore Ts'o }
230620970ba6STheodore Ts'o 
230720970ba6STheodore Ts'o static int ext4_writepages(struct address_space *mapping,
230864769240SAlex Tomas 			   struct writeback_control *wbc)
230964769240SAlex Tomas {
23104e7ea81dSJan Kara 	pgoff_t	writeback_index = 0;
23114e7ea81dSJan Kara 	long nr_to_write = wbc->nr_to_write;
231222208dedSAneesh Kumar K.V 	int range_whole = 0;
23134e7ea81dSJan Kara 	int cycled = 1;
231461628a3fSMingming Cao 	handle_t *handle = NULL;
2315df22291fSAneesh Kumar K.V 	struct mpage_da_data mpd;
23165e745b04SAneesh Kumar K.V 	struct inode *inode = mapping->host;
23176b523df4SJan Kara 	int needed_blocks, rsv_blocks = 0, ret = 0;
23185e745b04SAneesh Kumar K.V 	struct ext4_sb_info *sbi = EXT4_SB(mapping->host->i_sb);
23194e7ea81dSJan Kara 	bool done;
23201bce63d1SShaohua Li 	struct blk_plug plug;
2321cb530541STheodore Ts'o 	bool give_up_on_write = false;
232261628a3fSMingming Cao 
232320970ba6STheodore Ts'o 	trace_ext4_writepages(inode, wbc);
2324ba80b101STheodore Ts'o 
232561628a3fSMingming Cao 	/*
232661628a3fSMingming Cao 	 * No pages to write? This is mainly a kludge to avoid starting
232761628a3fSMingming Cao 	 * a transaction for special inodes like journal inode on last iput()
232861628a3fSMingming Cao 	 * because that could violate lock ordering on umount
232961628a3fSMingming Cao 	 */
2330a1d6cc56SAneesh Kumar K.V 	if (!mapping->nrpages || !mapping_tagged(mapping, PAGECACHE_TAG_DIRTY))
2331bbf023c7SMing Lei 		goto out_writepages;
23322a21e37eSTheodore Ts'o 
233320970ba6STheodore Ts'o 	if (ext4_should_journal_data(inode)) {
233420970ba6STheodore Ts'o 		struct blk_plug plug;
233520970ba6STheodore Ts'o 
233620970ba6STheodore Ts'o 		blk_start_plug(&plug);
233720970ba6STheodore Ts'o 		ret = write_cache_pages(mapping, wbc, __writepage, mapping);
233820970ba6STheodore Ts'o 		blk_finish_plug(&plug);
2339bbf023c7SMing Lei 		goto out_writepages;
234020970ba6STheodore Ts'o 	}
234120970ba6STheodore Ts'o 
23422a21e37eSTheodore Ts'o 	/*
23432a21e37eSTheodore Ts'o 	 * If the filesystem has aborted, it is read-only, so return
23442a21e37eSTheodore Ts'o 	 * right away instead of dumping stack traces later on that
23452a21e37eSTheodore Ts'o 	 * will obscure the real source of the problem.  We test
23464ab2f15bSTheodore Ts'o 	 * EXT4_MF_FS_ABORTED instead of sb->s_flag's MS_RDONLY because
23472a21e37eSTheodore Ts'o 	 * the latter could be true if the filesystem is mounted
234820970ba6STheodore Ts'o 	 * read-only, and in that case, ext4_writepages should
23492a21e37eSTheodore Ts'o 	 * *never* be called, so if that ever happens, we would want
23502a21e37eSTheodore Ts'o 	 * the stack trace.
23512a21e37eSTheodore Ts'o 	 */
2352bbf023c7SMing Lei 	if (unlikely(sbi->s_mount_flags & EXT4_MF_FS_ABORTED)) {
2353bbf023c7SMing Lei 		ret = -EROFS;
2354bbf023c7SMing Lei 		goto out_writepages;
2355bbf023c7SMing Lei 	}
23562a21e37eSTheodore Ts'o 
23576b523df4SJan Kara 	if (ext4_should_dioread_nolock(inode)) {
23586b523df4SJan Kara 		/*
23596b523df4SJan Kara 		 * We may need to convert up to one extent per block in
23606b523df4SJan Kara 		 * the page and we may dirty the inode.
23616b523df4SJan Kara 		 */
23626b523df4SJan Kara 		rsv_blocks = 1 + (PAGE_CACHE_SIZE >> inode->i_blkbits);
23636b523df4SJan Kara 	}
23646b523df4SJan Kara 
23654e7ea81dSJan Kara 	/*
23664e7ea81dSJan Kara 	 * If we have inline data and arrive here, it means that
23674e7ea81dSJan Kara 	 * we will soon create the block for the 1st page, so
23684e7ea81dSJan Kara 	 * we'd better clear the inline data here.
23694e7ea81dSJan Kara 	 */
23704e7ea81dSJan Kara 	if (ext4_has_inline_data(inode)) {
23714e7ea81dSJan Kara 		/* Just inode will be modified... */
23724e7ea81dSJan Kara 		handle = ext4_journal_start(inode, EXT4_HT_INODE, 1);
23734e7ea81dSJan Kara 		if (IS_ERR(handle)) {
23744e7ea81dSJan Kara 			ret = PTR_ERR(handle);
23754e7ea81dSJan Kara 			goto out_writepages;
23764e7ea81dSJan Kara 		}
23774e7ea81dSJan Kara 		BUG_ON(ext4_test_inode_state(inode,
23784e7ea81dSJan Kara 				EXT4_STATE_MAY_INLINE_DATA));
23794e7ea81dSJan Kara 		ext4_destroy_inline_data(handle, inode);
23804e7ea81dSJan Kara 		ext4_journal_stop(handle);
23814e7ea81dSJan Kara 	}
23824e7ea81dSJan Kara 
238322208dedSAneesh Kumar K.V 	if (wbc->range_start == 0 && wbc->range_end == LLONG_MAX)
238422208dedSAneesh Kumar K.V 		range_whole = 1;
238561628a3fSMingming Cao 
23862acf2c26SAneesh Kumar K.V 	if (wbc->range_cyclic) {
23874e7ea81dSJan Kara 		writeback_index = mapping->writeback_index;
23884e7ea81dSJan Kara 		if (writeback_index)
23892acf2c26SAneesh Kumar K.V 			cycled = 0;
23904e7ea81dSJan Kara 		mpd.first_page = writeback_index;
23914e7ea81dSJan Kara 		mpd.last_page = -1;
23925b41d924SEric Sandeen 	} else {
23934e7ea81dSJan Kara 		mpd.first_page = wbc->range_start >> PAGE_CACHE_SHIFT;
23944e7ea81dSJan Kara 		mpd.last_page = wbc->range_end >> PAGE_CACHE_SHIFT;
23955b41d924SEric Sandeen 	}
2396a1d6cc56SAneesh Kumar K.V 
23974e7ea81dSJan Kara 	mpd.inode = inode;
23984e7ea81dSJan Kara 	mpd.wbc = wbc;
23994e7ea81dSJan Kara 	ext4_io_submit_init(&mpd.io_submit, wbc);
24002acf2c26SAneesh Kumar K.V retry:
24016e6938b6SWu Fengguang 	if (wbc->sync_mode == WB_SYNC_ALL || wbc->tagged_writepages)
24024e7ea81dSJan Kara 		tag_pages_for_writeback(mapping, mpd.first_page, mpd.last_page);
24034e7ea81dSJan Kara 	done = false;
24041bce63d1SShaohua Li 	blk_start_plug(&plug);
24054e7ea81dSJan Kara 	while (!done && mpd.first_page <= mpd.last_page) {
24064e7ea81dSJan Kara 		/* For each extent of pages we use new io_end */
24074e7ea81dSJan Kara 		mpd.io_submit.io_end = ext4_init_io_end(inode, GFP_KERNEL);
24084e7ea81dSJan Kara 		if (!mpd.io_submit.io_end) {
24094e7ea81dSJan Kara 			ret = -ENOMEM;
24104e7ea81dSJan Kara 			break;
24114e7ea81dSJan Kara 		}
2412a1d6cc56SAneesh Kumar K.V 
2413a1d6cc56SAneesh Kumar K.V 		/*
24144e7ea81dSJan Kara 		 * We have two constraints: We find one extent to map and we
24154e7ea81dSJan Kara 		 * must always write out whole page (makes a difference when
24164e7ea81dSJan Kara 		 * blocksize < pagesize) so that we don't block on IO when we
24174e7ea81dSJan Kara 		 * try to write out the rest of the page. Journalled mode is
24184e7ea81dSJan Kara 		 * not supported by delalloc.
2419a1d6cc56SAneesh Kumar K.V 		 */
2420a1d6cc56SAneesh Kumar K.V 		BUG_ON(ext4_should_journal_data(inode));
2421525f4ed8SMingming Cao 		needed_blocks = ext4_da_writepages_trans_blocks(inode);
2422a1d6cc56SAneesh Kumar K.V 
242361628a3fSMingming Cao 		/* start a new transaction */
24246b523df4SJan Kara 		handle = ext4_journal_start_with_reserve(inode,
24256b523df4SJan Kara 				EXT4_HT_WRITE_PAGE, needed_blocks, rsv_blocks);
242661628a3fSMingming Cao 		if (IS_ERR(handle)) {
242761628a3fSMingming Cao 			ret = PTR_ERR(handle);
24281693918eSTheodore Ts'o 			ext4_msg(inode->i_sb, KERN_CRIT, "%s: jbd2_start: "
2429fbe845ddSCurt Wohlgemuth 			       "%ld pages, ino %lu; err %d", __func__,
2430a1d6cc56SAneesh Kumar K.V 				wbc->nr_to_write, inode->i_ino, ret);
24314e7ea81dSJan Kara 			/* Release allocated io_end */
24324e7ea81dSJan Kara 			ext4_put_io_end(mpd.io_submit.io_end);
24334e7ea81dSJan Kara 			break;
243461628a3fSMingming Cao 		}
2435f63e6005STheodore Ts'o 
24364e7ea81dSJan Kara 		trace_ext4_da_write_pages(inode, mpd.first_page, mpd.wbc);
24374e7ea81dSJan Kara 		ret = mpage_prepare_extent_to_map(&mpd);
24384e7ea81dSJan Kara 		if (!ret) {
24394e7ea81dSJan Kara 			if (mpd.map.m_len)
2440cb530541STheodore Ts'o 				ret = mpage_map_and_submit_extent(handle, &mpd,
2441cb530541STheodore Ts'o 					&give_up_on_write);
24424e7ea81dSJan Kara 			else {
2443f63e6005STheodore Ts'o 				/*
24444e7ea81dSJan Kara 				 * We scanned the whole range (or exhausted
24454e7ea81dSJan Kara 				 * nr_to_write), submitted what was mapped and
24464e7ea81dSJan Kara 				 * didn't find anything needing mapping. We are
24474e7ea81dSJan Kara 				 * done.
2448f63e6005STheodore Ts'o 				 */
24494e7ea81dSJan Kara 				done = true;
2450f63e6005STheodore Ts'o 			}
24514e7ea81dSJan Kara 		}
245261628a3fSMingming Cao 		ext4_journal_stop(handle);
24534e7ea81dSJan Kara 		/* Submit prepared bio */
24544e7ea81dSJan Kara 		ext4_io_submit(&mpd.io_submit);
24554e7ea81dSJan Kara 		/* Unlock pages we didn't use */
2456cb530541STheodore Ts'o 		mpage_release_unused_pages(&mpd, give_up_on_write);
24574e7ea81dSJan Kara 		/* Drop our io_end reference we got from init */
24584e7ea81dSJan Kara 		ext4_put_io_end(mpd.io_submit.io_end);
2459df22291fSAneesh Kumar K.V 
24604e7ea81dSJan Kara 		if (ret == -ENOSPC && sbi->s_journal) {
24614e7ea81dSJan Kara 			/*
24624e7ea81dSJan Kara 			 * Commit the transaction which would
246322208dedSAneesh Kumar K.V 			 * free blocks released in the transaction
246422208dedSAneesh Kumar K.V 			 * and try again
246522208dedSAneesh Kumar K.V 			 */
2466df22291fSAneesh Kumar K.V 			jbd2_journal_force_commit_nested(sbi->s_journal);
246722208dedSAneesh Kumar K.V 			ret = 0;
24684e7ea81dSJan Kara 			continue;
24694e7ea81dSJan Kara 		}
24704e7ea81dSJan Kara 		/* Fatal error - ENOMEM, EIO... */
24714e7ea81dSJan Kara 		if (ret)
247261628a3fSMingming Cao 			break;
247361628a3fSMingming Cao 	}
24741bce63d1SShaohua Li 	blk_finish_plug(&plug);
24759c12a831SJan Kara 	if (!ret && !cycled && wbc->nr_to_write > 0) {
24762acf2c26SAneesh Kumar K.V 		cycled = 1;
24774e7ea81dSJan Kara 		mpd.last_page = writeback_index - 1;
24784e7ea81dSJan Kara 		mpd.first_page = 0;
24792acf2c26SAneesh Kumar K.V 		goto retry;
24802acf2c26SAneesh Kumar K.V 	}
248161628a3fSMingming Cao 
248222208dedSAneesh Kumar K.V 	/* Update index */
248322208dedSAneesh Kumar K.V 	if (wbc->range_cyclic || (range_whole && wbc->nr_to_write > 0))
248422208dedSAneesh Kumar K.V 		/*
24854e7ea81dSJan Kara 		 * Set the writeback_index so that range_cyclic
248622208dedSAneesh Kumar K.V 		 * mode will write it back later
248722208dedSAneesh Kumar K.V 		 */
24884e7ea81dSJan Kara 		mapping->writeback_index = mpd.first_page;
2489a1d6cc56SAneesh Kumar K.V 
249061628a3fSMingming Cao out_writepages:
249120970ba6STheodore Ts'o 	trace_ext4_writepages_result(inode, wbc, ret,
24924e7ea81dSJan Kara 				     nr_to_write - wbc->nr_to_write);
249361628a3fSMingming Cao 	return ret;
249464769240SAlex Tomas }
249564769240SAlex Tomas 
249679f0be8dSAneesh Kumar K.V static int ext4_nonda_switch(struct super_block *sb)
249779f0be8dSAneesh Kumar K.V {
24985c1ff336SEric Whitney 	s64 free_clusters, dirty_clusters;
249979f0be8dSAneesh Kumar K.V 	struct ext4_sb_info *sbi = EXT4_SB(sb);
250079f0be8dSAneesh Kumar K.V 
250179f0be8dSAneesh Kumar K.V 	/*
250279f0be8dSAneesh Kumar K.V 	 * switch to non delalloc mode if we are running low
250379f0be8dSAneesh Kumar K.V 	 * on free block. The free block accounting via percpu
2504179f7ebfSEric Dumazet 	 * counters can get slightly wrong with percpu_counter_batch getting
250579f0be8dSAneesh Kumar K.V 	 * accumulated on each CPU without updating global counters
250679f0be8dSAneesh Kumar K.V 	 * Delalloc need an accurate free block accounting. So switch
250779f0be8dSAneesh Kumar K.V 	 * to non delalloc when we are near to error range.
250879f0be8dSAneesh Kumar K.V 	 */
25095c1ff336SEric Whitney 	free_clusters =
25105c1ff336SEric Whitney 		percpu_counter_read_positive(&sbi->s_freeclusters_counter);
25115c1ff336SEric Whitney 	dirty_clusters =
25125c1ff336SEric Whitney 		percpu_counter_read_positive(&sbi->s_dirtyclusters_counter);
251300d4e736STheodore Ts'o 	/*
251400d4e736STheodore Ts'o 	 * Start pushing delalloc when 1/2 of free blocks are dirty.
251500d4e736STheodore Ts'o 	 */
25165c1ff336SEric Whitney 	if (dirty_clusters && (free_clusters < 2 * dirty_clusters))
251710ee27a0SMiao Xie 		try_to_writeback_inodes_sb(sb, WB_REASON_FS_FREE_SPACE);
251800d4e736STheodore Ts'o 
25195c1ff336SEric Whitney 	if (2 * free_clusters < 3 * dirty_clusters ||
25205c1ff336SEric Whitney 	    free_clusters < (dirty_clusters + EXT4_FREECLUSTERS_WATERMARK)) {
252179f0be8dSAneesh Kumar K.V 		/*
2522c8afb446SEric Sandeen 		 * free block count is less than 150% of dirty blocks
2523c8afb446SEric Sandeen 		 * or free blocks is less than watermark
252479f0be8dSAneesh Kumar K.V 		 */
252579f0be8dSAneesh Kumar K.V 		return 1;
252679f0be8dSAneesh Kumar K.V 	}
252779f0be8dSAneesh Kumar K.V 	return 0;
252879f0be8dSAneesh Kumar K.V }
252979f0be8dSAneesh Kumar K.V 
253064769240SAlex Tomas static int ext4_da_write_begin(struct file *file, struct address_space *mapping,
253164769240SAlex Tomas 			       loff_t pos, unsigned len, unsigned flags,
253264769240SAlex Tomas 			       struct page **pagep, void **fsdata)
253364769240SAlex Tomas {
253472b8ab9dSEric Sandeen 	int ret, retries = 0;
253564769240SAlex Tomas 	struct page *page;
253664769240SAlex Tomas 	pgoff_t index;
253764769240SAlex Tomas 	struct inode *inode = mapping->host;
253864769240SAlex Tomas 	handle_t *handle;
253964769240SAlex Tomas 
254064769240SAlex Tomas 	index = pos >> PAGE_CACHE_SHIFT;
254179f0be8dSAneesh Kumar K.V 
254279f0be8dSAneesh Kumar K.V 	if (ext4_nonda_switch(inode->i_sb)) {
254379f0be8dSAneesh Kumar K.V 		*fsdata = (void *)FALL_BACK_TO_NONDELALLOC;
254479f0be8dSAneesh Kumar K.V 		return ext4_write_begin(file, mapping, pos,
254579f0be8dSAneesh Kumar K.V 					len, flags, pagep, fsdata);
254679f0be8dSAneesh Kumar K.V 	}
254779f0be8dSAneesh Kumar K.V 	*fsdata = (void *)0;
25489bffad1eSTheodore Ts'o 	trace_ext4_da_write_begin(inode, pos, len, flags);
25499c3569b5STao Ma 
25509c3569b5STao Ma 	if (ext4_test_inode_state(inode, EXT4_STATE_MAY_INLINE_DATA)) {
25519c3569b5STao Ma 		ret = ext4_da_write_inline_data_begin(mapping, inode,
25529c3569b5STao Ma 						      pos, len, flags,
25539c3569b5STao Ma 						      pagep, fsdata);
25549c3569b5STao Ma 		if (ret < 0)
255547564bfbSTheodore Ts'o 			return ret;
255647564bfbSTheodore Ts'o 		if (ret == 1)
255747564bfbSTheodore Ts'o 			return 0;
25589c3569b5STao Ma 	}
25599c3569b5STao Ma 
256047564bfbSTheodore Ts'o 	/*
256147564bfbSTheodore Ts'o 	 * grab_cache_page_write_begin() can take a long time if the
256247564bfbSTheodore Ts'o 	 * system is thrashing due to memory pressure, or if the page
256347564bfbSTheodore Ts'o 	 * is being written back.  So grab it first before we start
256447564bfbSTheodore Ts'o 	 * the transaction handle.  This also allows us to allocate
256547564bfbSTheodore Ts'o 	 * the page (if needed) without using GFP_NOFS.
256647564bfbSTheodore Ts'o 	 */
256747564bfbSTheodore Ts'o retry_grab:
256847564bfbSTheodore Ts'o 	page = grab_cache_page_write_begin(mapping, index, flags);
256947564bfbSTheodore Ts'o 	if (!page)
257047564bfbSTheodore Ts'o 		return -ENOMEM;
257147564bfbSTheodore Ts'o 	unlock_page(page);
257247564bfbSTheodore Ts'o 
257364769240SAlex Tomas 	/*
257464769240SAlex Tomas 	 * With delayed allocation, we don't log the i_disksize update
257564769240SAlex Tomas 	 * if there is delayed block allocation. But we still need
257664769240SAlex Tomas 	 * to journalling the i_disksize update if writes to the end
257764769240SAlex Tomas 	 * of file which has an already mapped buffer.
257864769240SAlex Tomas 	 */
257947564bfbSTheodore Ts'o retry_journal:
25809924a92aSTheodore Ts'o 	handle = ext4_journal_start(inode, EXT4_HT_WRITE_PAGE, 1);
258164769240SAlex Tomas 	if (IS_ERR(handle)) {
258247564bfbSTheodore Ts'o 		page_cache_release(page);
258347564bfbSTheodore Ts'o 		return PTR_ERR(handle);
258464769240SAlex Tomas 	}
258564769240SAlex Tomas 
258647564bfbSTheodore Ts'o 	lock_page(page);
258747564bfbSTheodore Ts'o 	if (page->mapping != mapping) {
258847564bfbSTheodore Ts'o 		/* The page got truncated from under us */
258947564bfbSTheodore Ts'o 		unlock_page(page);
259047564bfbSTheodore Ts'o 		page_cache_release(page);
2591d5a0d4f7SEric Sandeen 		ext4_journal_stop(handle);
259247564bfbSTheodore Ts'o 		goto retry_grab;
2593d5a0d4f7SEric Sandeen 	}
259447564bfbSTheodore Ts'o 	/* In case writeback began while the page was unlocked */
25957afe5aa5SDmitry Monakhov 	wait_for_stable_page(page);
259664769240SAlex Tomas 
25976e1db88dSChristoph Hellwig 	ret = __block_write_begin(page, pos, len, ext4_da_get_block_prep);
259864769240SAlex Tomas 	if (ret < 0) {
259964769240SAlex Tomas 		unlock_page(page);
260064769240SAlex Tomas 		ext4_journal_stop(handle);
2601ae4d5372SAneesh Kumar K.V 		/*
2602ae4d5372SAneesh Kumar K.V 		 * block_write_begin may have instantiated a few blocks
2603ae4d5372SAneesh Kumar K.V 		 * outside i_size.  Trim these off again. Don't need
2604ae4d5372SAneesh Kumar K.V 		 * i_size_read because we hold i_mutex.
2605ae4d5372SAneesh Kumar K.V 		 */
2606ae4d5372SAneesh Kumar K.V 		if (pos + len > inode->i_size)
2607b9a4207dSJan Kara 			ext4_truncate_failed_write(inode);
260847564bfbSTheodore Ts'o 
260947564bfbSTheodore Ts'o 		if (ret == -ENOSPC &&
261047564bfbSTheodore Ts'o 		    ext4_should_retry_alloc(inode->i_sb, &retries))
261147564bfbSTheodore Ts'o 			goto retry_journal;
261247564bfbSTheodore Ts'o 
261347564bfbSTheodore Ts'o 		page_cache_release(page);
261447564bfbSTheodore Ts'o 		return ret;
261564769240SAlex Tomas 	}
261664769240SAlex Tomas 
261747564bfbSTheodore Ts'o 	*pagep = page;
261864769240SAlex Tomas 	return ret;
261964769240SAlex Tomas }
262064769240SAlex Tomas 
2621632eaeabSMingming Cao /*
2622632eaeabSMingming Cao  * Check if we should update i_disksize
2623632eaeabSMingming Cao  * when write to the end of file but not require block allocation
2624632eaeabSMingming Cao  */
2625632eaeabSMingming Cao static int ext4_da_should_update_i_disksize(struct page *page,
2626632eaeabSMingming Cao 					    unsigned long offset)
2627632eaeabSMingming Cao {
2628632eaeabSMingming Cao 	struct buffer_head *bh;
2629632eaeabSMingming Cao 	struct inode *inode = page->mapping->host;
2630632eaeabSMingming Cao 	unsigned int idx;
2631632eaeabSMingming Cao 	int i;
2632632eaeabSMingming Cao 
2633632eaeabSMingming Cao 	bh = page_buffers(page);
2634632eaeabSMingming Cao 	idx = offset >> inode->i_blkbits;
2635632eaeabSMingming Cao 
2636632eaeabSMingming Cao 	for (i = 0; i < idx; i++)
2637632eaeabSMingming Cao 		bh = bh->b_this_page;
2638632eaeabSMingming Cao 
263929fa89d0SAneesh Kumar K.V 	if (!buffer_mapped(bh) || (buffer_delay(bh)) || buffer_unwritten(bh))
2640632eaeabSMingming Cao 		return 0;
2641632eaeabSMingming Cao 	return 1;
2642632eaeabSMingming Cao }
2643632eaeabSMingming Cao 
264464769240SAlex Tomas static int ext4_da_write_end(struct file *file,
264564769240SAlex Tomas 			     struct address_space *mapping,
264664769240SAlex Tomas 			     loff_t pos, unsigned len, unsigned copied,
264764769240SAlex Tomas 			     struct page *page, void *fsdata)
264864769240SAlex Tomas {
264964769240SAlex Tomas 	struct inode *inode = mapping->host;
265064769240SAlex Tomas 	int ret = 0, ret2;
265164769240SAlex Tomas 	handle_t *handle = ext4_journal_current_handle();
265264769240SAlex Tomas 	loff_t new_i_size;
2653632eaeabSMingming Cao 	unsigned long start, end;
265479f0be8dSAneesh Kumar K.V 	int write_mode = (int)(unsigned long)fsdata;
265579f0be8dSAneesh Kumar K.V 
265674d553aaSTheodore Ts'o 	if (write_mode == FALL_BACK_TO_NONDELALLOC)
265774d553aaSTheodore Ts'o 		return ext4_write_end(file, mapping, pos,
265879f0be8dSAneesh Kumar K.V 				      len, copied, page, fsdata);
2659632eaeabSMingming Cao 
26609bffad1eSTheodore Ts'o 	trace_ext4_da_write_end(inode, pos, len, copied);
2661632eaeabSMingming Cao 	start = pos & (PAGE_CACHE_SIZE - 1);
2662632eaeabSMingming Cao 	end = start + copied - 1;
266364769240SAlex Tomas 
266464769240SAlex Tomas 	/*
266564769240SAlex Tomas 	 * generic_write_end() will run mark_inode_dirty() if i_size
266664769240SAlex Tomas 	 * changes.  So let's piggyback the i_disksize mark_inode_dirty
266764769240SAlex Tomas 	 * into that.
266864769240SAlex Tomas 	 */
266964769240SAlex Tomas 	new_i_size = pos + copied;
2670ea51d132SAndrea Arcangeli 	if (copied && new_i_size > EXT4_I(inode)->i_disksize) {
26719c3569b5STao Ma 		if (ext4_has_inline_data(inode) ||
26729c3569b5STao Ma 		    ext4_da_should_update_i_disksize(page, end)) {
2673632eaeabSMingming Cao 			down_write(&EXT4_I(inode)->i_data_sem);
2674f3b59291STheodore Ts'o 			if (new_i_size > EXT4_I(inode)->i_disksize)
267564769240SAlex Tomas 				EXT4_I(inode)->i_disksize = new_i_size;
2676632eaeabSMingming Cao 			up_write(&EXT4_I(inode)->i_data_sem);
2677cf17fea6SAneesh Kumar K.V 			/* We need to mark inode dirty even if
2678cf17fea6SAneesh Kumar K.V 			 * new_i_size is less that inode->i_size
2679cf17fea6SAneesh Kumar K.V 			 * bu greater than i_disksize.(hint delalloc)
2680cf17fea6SAneesh Kumar K.V 			 */
2681cf17fea6SAneesh Kumar K.V 			ext4_mark_inode_dirty(handle, inode);
2682632eaeabSMingming Cao 		}
2683632eaeabSMingming Cao 	}
26849c3569b5STao Ma 
26859c3569b5STao Ma 	if (write_mode != CONVERT_INLINE_DATA &&
26869c3569b5STao Ma 	    ext4_test_inode_state(inode, EXT4_STATE_MAY_INLINE_DATA) &&
26879c3569b5STao Ma 	    ext4_has_inline_data(inode))
26889c3569b5STao Ma 		ret2 = ext4_da_write_inline_data_end(inode, pos, len, copied,
26899c3569b5STao Ma 						     page);
26909c3569b5STao Ma 	else
269164769240SAlex Tomas 		ret2 = generic_write_end(file, mapping, pos, len, copied,
269264769240SAlex Tomas 							page, fsdata);
26939c3569b5STao Ma 
269464769240SAlex Tomas 	copied = ret2;
269564769240SAlex Tomas 	if (ret2 < 0)
269664769240SAlex Tomas 		ret = ret2;
269764769240SAlex Tomas 	ret2 = ext4_journal_stop(handle);
269864769240SAlex Tomas 	if (!ret)
269964769240SAlex Tomas 		ret = ret2;
270064769240SAlex Tomas 
270164769240SAlex Tomas 	return ret ? ret : copied;
270264769240SAlex Tomas }
270364769240SAlex Tomas 
2704d47992f8SLukas Czerner static void ext4_da_invalidatepage(struct page *page, unsigned int offset,
2705d47992f8SLukas Czerner 				   unsigned int length)
270664769240SAlex Tomas {
270764769240SAlex Tomas 	/*
270864769240SAlex Tomas 	 * Drop reserved blocks
270964769240SAlex Tomas 	 */
271064769240SAlex Tomas 	BUG_ON(!PageLocked(page));
271164769240SAlex Tomas 	if (!page_has_buffers(page))
271264769240SAlex Tomas 		goto out;
271364769240SAlex Tomas 
2714ca99fdd2SLukas Czerner 	ext4_da_page_release_reservation(page, offset, length);
271564769240SAlex Tomas 
271664769240SAlex Tomas out:
2717d47992f8SLukas Czerner 	ext4_invalidatepage(page, offset, length);
271864769240SAlex Tomas 
271964769240SAlex Tomas 	return;
272064769240SAlex Tomas }
272164769240SAlex Tomas 
2722ccd2506bSTheodore Ts'o /*
2723ccd2506bSTheodore Ts'o  * Force all delayed allocation blocks to be allocated for a given inode.
2724ccd2506bSTheodore Ts'o  */
2725ccd2506bSTheodore Ts'o int ext4_alloc_da_blocks(struct inode *inode)
2726ccd2506bSTheodore Ts'o {
2727fb40ba0dSTheodore Ts'o 	trace_ext4_alloc_da_blocks(inode);
2728fb40ba0dSTheodore Ts'o 
2729*71d4f7d0STheodore Ts'o 	if (!EXT4_I(inode)->i_reserved_data_blocks)
2730ccd2506bSTheodore Ts'o 		return 0;
2731ccd2506bSTheodore Ts'o 
2732ccd2506bSTheodore Ts'o 	/*
2733ccd2506bSTheodore Ts'o 	 * We do something simple for now.  The filemap_flush() will
2734ccd2506bSTheodore Ts'o 	 * also start triggering a write of the data blocks, which is
2735ccd2506bSTheodore Ts'o 	 * not strictly speaking necessary (and for users of
2736ccd2506bSTheodore Ts'o 	 * laptop_mode, not even desirable).  However, to do otherwise
2737ccd2506bSTheodore Ts'o 	 * would require replicating code paths in:
2738ccd2506bSTheodore Ts'o 	 *
273920970ba6STheodore Ts'o 	 * ext4_writepages() ->
2740ccd2506bSTheodore Ts'o 	 *    write_cache_pages() ---> (via passed in callback function)
2741ccd2506bSTheodore Ts'o 	 *        __mpage_da_writepage() -->
2742ccd2506bSTheodore Ts'o 	 *           mpage_add_bh_to_extent()
2743ccd2506bSTheodore Ts'o 	 *           mpage_da_map_blocks()
2744ccd2506bSTheodore Ts'o 	 *
2745ccd2506bSTheodore Ts'o 	 * The problem is that write_cache_pages(), located in
2746ccd2506bSTheodore Ts'o 	 * mm/page-writeback.c, marks pages clean in preparation for
2747ccd2506bSTheodore Ts'o 	 * doing I/O, which is not desirable if we're not planning on
2748ccd2506bSTheodore Ts'o 	 * doing I/O at all.
2749ccd2506bSTheodore Ts'o 	 *
2750ccd2506bSTheodore Ts'o 	 * We could call write_cache_pages(), and then redirty all of
2751380cf090SWu Fengguang 	 * the pages by calling redirty_page_for_writepage() but that
2752ccd2506bSTheodore Ts'o 	 * would be ugly in the extreme.  So instead we would need to
2753ccd2506bSTheodore Ts'o 	 * replicate parts of the code in the above functions,
275425985edcSLucas De Marchi 	 * simplifying them because we wouldn't actually intend to
2755ccd2506bSTheodore Ts'o 	 * write out the pages, but rather only collect contiguous
2756ccd2506bSTheodore Ts'o 	 * logical block extents, call the multi-block allocator, and
2757ccd2506bSTheodore Ts'o 	 * then update the buffer heads with the block allocations.
2758ccd2506bSTheodore Ts'o 	 *
2759ccd2506bSTheodore Ts'o 	 * For now, though, we'll cheat by calling filemap_flush(),
2760ccd2506bSTheodore Ts'o 	 * which will map the blocks, and start the I/O, but not
2761ccd2506bSTheodore Ts'o 	 * actually wait for the I/O to complete.
2762ccd2506bSTheodore Ts'o 	 */
2763ccd2506bSTheodore Ts'o 	return filemap_flush(inode->i_mapping);
2764ccd2506bSTheodore Ts'o }
276564769240SAlex Tomas 
276664769240SAlex Tomas /*
2767ac27a0ecSDave Kleikamp  * bmap() is special.  It gets used by applications such as lilo and by
2768ac27a0ecSDave Kleikamp  * the swapper to find the on-disk block of a specific piece of data.
2769ac27a0ecSDave Kleikamp  *
2770ac27a0ecSDave Kleikamp  * Naturally, this is dangerous if the block concerned is still in the
2771617ba13bSMingming Cao  * journal.  If somebody makes a swapfile on an ext4 data-journaling
2772ac27a0ecSDave Kleikamp  * filesystem and enables swap, then they may get a nasty shock when the
2773ac27a0ecSDave Kleikamp  * data getting swapped to that swapfile suddenly gets overwritten by
2774ac27a0ecSDave Kleikamp  * the original zero's written out previously to the journal and
2775ac27a0ecSDave Kleikamp  * awaiting writeback in the kernel's buffer cache.
2776ac27a0ecSDave Kleikamp  *
2777ac27a0ecSDave Kleikamp  * So, if we see any bmap calls here on a modified, data-journaled file,
2778ac27a0ecSDave Kleikamp  * take extra steps to flush any blocks which might be in the cache.
2779ac27a0ecSDave Kleikamp  */
2780617ba13bSMingming Cao static sector_t ext4_bmap(struct address_space *mapping, sector_t block)
2781ac27a0ecSDave Kleikamp {
2782ac27a0ecSDave Kleikamp 	struct inode *inode = mapping->host;
2783ac27a0ecSDave Kleikamp 	journal_t *journal;
2784ac27a0ecSDave Kleikamp 	int err;
2785ac27a0ecSDave Kleikamp 
278646c7f254STao Ma 	/*
278746c7f254STao Ma 	 * We can get here for an inline file via the FIBMAP ioctl
278846c7f254STao Ma 	 */
278946c7f254STao Ma 	if (ext4_has_inline_data(inode))
279046c7f254STao Ma 		return 0;
279146c7f254STao Ma 
279264769240SAlex Tomas 	if (mapping_tagged(mapping, PAGECACHE_TAG_DIRTY) &&
279364769240SAlex Tomas 			test_opt(inode->i_sb, DELALLOC)) {
279464769240SAlex Tomas 		/*
279564769240SAlex Tomas 		 * With delalloc we want to sync the file
279664769240SAlex Tomas 		 * so that we can make sure we allocate
279764769240SAlex Tomas 		 * blocks for file
279864769240SAlex Tomas 		 */
279964769240SAlex Tomas 		filemap_write_and_wait(mapping);
280064769240SAlex Tomas 	}
280164769240SAlex Tomas 
280219f5fb7aSTheodore Ts'o 	if (EXT4_JOURNAL(inode) &&
280319f5fb7aSTheodore Ts'o 	    ext4_test_inode_state(inode, EXT4_STATE_JDATA)) {
2804ac27a0ecSDave Kleikamp 		/*
2805ac27a0ecSDave Kleikamp 		 * This is a REALLY heavyweight approach, but the use of
2806ac27a0ecSDave Kleikamp 		 * bmap on dirty files is expected to be extremely rare:
2807ac27a0ecSDave Kleikamp 		 * only if we run lilo or swapon on a freshly made file
2808ac27a0ecSDave Kleikamp 		 * do we expect this to happen.
2809ac27a0ecSDave Kleikamp 		 *
2810ac27a0ecSDave Kleikamp 		 * (bmap requires CAP_SYS_RAWIO so this does not
2811ac27a0ecSDave Kleikamp 		 * represent an unprivileged user DOS attack --- we'd be
2812ac27a0ecSDave Kleikamp 		 * in trouble if mortal users could trigger this path at
2813ac27a0ecSDave Kleikamp 		 * will.)
2814ac27a0ecSDave Kleikamp 		 *
2815617ba13bSMingming Cao 		 * NB. EXT4_STATE_JDATA is not set on files other than
2816ac27a0ecSDave Kleikamp 		 * regular files.  If somebody wants to bmap a directory
2817ac27a0ecSDave Kleikamp 		 * or symlink and gets confused because the buffer
2818ac27a0ecSDave Kleikamp 		 * hasn't yet been flushed to disk, they deserve
2819ac27a0ecSDave Kleikamp 		 * everything they get.
2820ac27a0ecSDave Kleikamp 		 */
2821ac27a0ecSDave Kleikamp 
282219f5fb7aSTheodore Ts'o 		ext4_clear_inode_state(inode, EXT4_STATE_JDATA);
2823617ba13bSMingming Cao 		journal = EXT4_JOURNAL(inode);
2824dab291afSMingming Cao 		jbd2_journal_lock_updates(journal);
2825dab291afSMingming Cao 		err = jbd2_journal_flush(journal);
2826dab291afSMingming Cao 		jbd2_journal_unlock_updates(journal);
2827ac27a0ecSDave Kleikamp 
2828ac27a0ecSDave Kleikamp 		if (err)
2829ac27a0ecSDave Kleikamp 			return 0;
2830ac27a0ecSDave Kleikamp 	}
2831ac27a0ecSDave Kleikamp 
2832617ba13bSMingming Cao 	return generic_block_bmap(mapping, block, ext4_get_block);
2833ac27a0ecSDave Kleikamp }
2834ac27a0ecSDave Kleikamp 
2835617ba13bSMingming Cao static int ext4_readpage(struct file *file, struct page *page)
2836ac27a0ecSDave Kleikamp {
283746c7f254STao Ma 	int ret = -EAGAIN;
283846c7f254STao Ma 	struct inode *inode = page->mapping->host;
283946c7f254STao Ma 
28400562e0baSJiaying Zhang 	trace_ext4_readpage(page);
284146c7f254STao Ma 
284246c7f254STao Ma 	if (ext4_has_inline_data(inode))
284346c7f254STao Ma 		ret = ext4_readpage_inline(inode, page);
284446c7f254STao Ma 
284546c7f254STao Ma 	if (ret == -EAGAIN)
2846617ba13bSMingming Cao 		return mpage_readpage(page, ext4_get_block);
284746c7f254STao Ma 
284846c7f254STao Ma 	return ret;
2849ac27a0ecSDave Kleikamp }
2850ac27a0ecSDave Kleikamp 
2851ac27a0ecSDave Kleikamp static int
2852617ba13bSMingming Cao ext4_readpages(struct file *file, struct address_space *mapping,
2853ac27a0ecSDave Kleikamp 		struct list_head *pages, unsigned nr_pages)
2854ac27a0ecSDave Kleikamp {
285546c7f254STao Ma 	struct inode *inode = mapping->host;
285646c7f254STao Ma 
285746c7f254STao Ma 	/* If the file has inline data, no need to do readpages. */
285846c7f254STao Ma 	if (ext4_has_inline_data(inode))
285946c7f254STao Ma 		return 0;
286046c7f254STao Ma 
2861617ba13bSMingming Cao 	return mpage_readpages(mapping, pages, nr_pages, ext4_get_block);
2862ac27a0ecSDave Kleikamp }
2863ac27a0ecSDave Kleikamp 
2864d47992f8SLukas Czerner static void ext4_invalidatepage(struct page *page, unsigned int offset,
2865d47992f8SLukas Czerner 				unsigned int length)
2866ac27a0ecSDave Kleikamp {
2867ca99fdd2SLukas Czerner 	trace_ext4_invalidatepage(page, offset, length);
28680562e0baSJiaying Zhang 
28694520fb3cSJan Kara 	/* No journalling happens on data buffers when this function is used */
28704520fb3cSJan Kara 	WARN_ON(page_has_buffers(page) && buffer_jbd(page_buffers(page)));
28714520fb3cSJan Kara 
2872ca99fdd2SLukas Czerner 	block_invalidatepage(page, offset, length);
28734520fb3cSJan Kara }
28744520fb3cSJan Kara 
287553e87268SJan Kara static int __ext4_journalled_invalidatepage(struct page *page,
2876ca99fdd2SLukas Czerner 					    unsigned int offset,
2877ca99fdd2SLukas Czerner 					    unsigned int length)
28784520fb3cSJan Kara {
28794520fb3cSJan Kara 	journal_t *journal = EXT4_JOURNAL(page->mapping->host);
28804520fb3cSJan Kara 
2881ca99fdd2SLukas Czerner 	trace_ext4_journalled_invalidatepage(page, offset, length);
28824520fb3cSJan Kara 
2883744692dcSJiaying Zhang 	/*
2884ac27a0ecSDave Kleikamp 	 * If it's a full truncate we just forget about the pending dirtying
2885ac27a0ecSDave Kleikamp 	 */
2886ca99fdd2SLukas Czerner 	if (offset == 0 && length == PAGE_CACHE_SIZE)
2887ac27a0ecSDave Kleikamp 		ClearPageChecked(page);
2888ac27a0ecSDave Kleikamp 
2889ca99fdd2SLukas Czerner 	return jbd2_journal_invalidatepage(journal, page, offset, length);
289053e87268SJan Kara }
289153e87268SJan Kara 
289253e87268SJan Kara /* Wrapper for aops... */
289353e87268SJan Kara static void ext4_journalled_invalidatepage(struct page *page,
2894d47992f8SLukas Czerner 					   unsigned int offset,
2895d47992f8SLukas Czerner 					   unsigned int length)
289653e87268SJan Kara {
2897ca99fdd2SLukas Czerner 	WARN_ON(__ext4_journalled_invalidatepage(page, offset, length) < 0);
2898ac27a0ecSDave Kleikamp }
2899ac27a0ecSDave Kleikamp 
2900617ba13bSMingming Cao static int ext4_releasepage(struct page *page, gfp_t wait)
2901ac27a0ecSDave Kleikamp {
2902617ba13bSMingming Cao 	journal_t *journal = EXT4_JOURNAL(page->mapping->host);
2903ac27a0ecSDave Kleikamp 
29040562e0baSJiaying Zhang 	trace_ext4_releasepage(page);
29050562e0baSJiaying Zhang 
2906e1c36595SJan Kara 	/* Page has dirty journalled data -> cannot release */
2907e1c36595SJan Kara 	if (PageChecked(page))
2908ac27a0ecSDave Kleikamp 		return 0;
29090390131bSFrank Mayhar 	if (journal)
2910dab291afSMingming Cao 		return jbd2_journal_try_to_free_buffers(journal, page, wait);
29110390131bSFrank Mayhar 	else
29120390131bSFrank Mayhar 		return try_to_free_buffers(page);
2913ac27a0ecSDave Kleikamp }
2914ac27a0ecSDave Kleikamp 
2915ac27a0ecSDave Kleikamp /*
29162ed88685STheodore Ts'o  * ext4_get_block used when preparing for a DIO write or buffer write.
29172ed88685STheodore Ts'o  * We allocate an uinitialized extent if blocks haven't been allocated.
29182ed88685STheodore Ts'o  * The extent will be converted to initialized after the IO is complete.
29192ed88685STheodore Ts'o  */
2920f19d5870STao Ma int ext4_get_block_write(struct inode *inode, sector_t iblock,
29214c0425ffSMingming Cao 		   struct buffer_head *bh_result, int create)
29224c0425ffSMingming Cao {
2923c7064ef1SJiaying Zhang 	ext4_debug("ext4_get_block_write: inode %lu, create flag %d\n",
29248d5d02e6SMingming Cao 		   inode->i_ino, create);
29252ed88685STheodore Ts'o 	return _ext4_get_block(inode, iblock, bh_result,
29262ed88685STheodore Ts'o 			       EXT4_GET_BLOCKS_IO_CREATE_EXT);
29274c0425ffSMingming Cao }
29284c0425ffSMingming Cao 
2929729f52c6SZheng Liu static int ext4_get_block_write_nolock(struct inode *inode, sector_t iblock,
29308b0f165fSAnatol Pomozov 		   struct buffer_head *bh_result, int create)
2931729f52c6SZheng Liu {
29328b0f165fSAnatol Pomozov 	ext4_debug("ext4_get_block_write_nolock: inode %lu, create flag %d\n",
29338b0f165fSAnatol Pomozov 		   inode->i_ino, create);
29348b0f165fSAnatol Pomozov 	return _ext4_get_block(inode, iblock, bh_result,
29358b0f165fSAnatol Pomozov 			       EXT4_GET_BLOCKS_NO_LOCK);
2936729f52c6SZheng Liu }
2937729f52c6SZheng Liu 
29384c0425ffSMingming Cao static void ext4_end_io_dio(struct kiocb *iocb, loff_t offset,
29397b7a8665SChristoph Hellwig 			    ssize_t size, void *private)
29404c0425ffSMingming Cao {
29414c0425ffSMingming Cao         ext4_io_end_t *io_end = iocb->private;
29424c0425ffSMingming Cao 
294397a851edSJan Kara 	/* if not async direct IO just return */
29447b7a8665SChristoph Hellwig 	if (!io_end)
294597a851edSJan Kara 		return;
29464b70df18SMingming 
29478d5d02e6SMingming Cao 	ext_debug("ext4_end_io_dio(): io_end 0x%p "
2948ace36ad4SJoe Perches 		  "for inode %lu, iocb 0x%p, offset %llu, size %zd\n",
29498d5d02e6SMingming Cao  		  iocb->private, io_end->inode->i_ino, iocb, offset,
29508d5d02e6SMingming Cao 		  size);
29518d5d02e6SMingming Cao 
2952b5a7e970STheodore Ts'o 	iocb->private = NULL;
29534c0425ffSMingming Cao 	io_end->offset = offset;
29544c0425ffSMingming Cao 	io_end->size = size;
29557b7a8665SChristoph Hellwig 	ext4_put_io_end(io_end);
29564c0425ffSMingming Cao }
2957c7064ef1SJiaying Zhang 
29584c0425ffSMingming Cao /*
29594c0425ffSMingming Cao  * For ext4 extent files, ext4 will do direct-io write to holes,
29604c0425ffSMingming Cao  * preallocated extents, and those write extend the file, no need to
29614c0425ffSMingming Cao  * fall back to buffered IO.
29624c0425ffSMingming Cao  *
2963556615dcSLukas Czerner  * For holes, we fallocate those blocks, mark them as unwritten
296469c499d1STheodore Ts'o  * If those blocks were preallocated, we mark sure they are split, but
2965556615dcSLukas Czerner  * still keep the range to write as unwritten.
29664c0425ffSMingming Cao  *
296769c499d1STheodore Ts'o  * The unwritten extents will be converted to written when DIO is completed.
29688d5d02e6SMingming Cao  * For async direct IO, since the IO may still pending when return, we
296925985edcSLucas De Marchi  * set up an end_io call back function, which will do the conversion
29708d5d02e6SMingming Cao  * when async direct IO completed.
29714c0425ffSMingming Cao  *
29724c0425ffSMingming Cao  * If the O_DIRECT write will extend the file then add this inode to the
29734c0425ffSMingming Cao  * orphan list.  So recovery will truncate it back to the original size
29744c0425ffSMingming Cao  * if the machine crashes during the write.
29754c0425ffSMingming Cao  *
29764c0425ffSMingming Cao  */
29774c0425ffSMingming Cao static ssize_t ext4_ext_direct_IO(int rw, struct kiocb *iocb,
297816b1f05dSAl Viro 			      struct iov_iter *iter, loff_t offset)
29794c0425ffSMingming Cao {
29804c0425ffSMingming Cao 	struct file *file = iocb->ki_filp;
29814c0425ffSMingming Cao 	struct inode *inode = file->f_mapping->host;
29824c0425ffSMingming Cao 	ssize_t ret;
2983a6cbcd4aSAl Viro 	size_t count = iov_iter_count(iter);
2984729f52c6SZheng Liu 	int overwrite = 0;
29858b0f165fSAnatol Pomozov 	get_block_t *get_block_func = NULL;
29868b0f165fSAnatol Pomozov 	int dio_flags = 0;
298769c499d1STheodore Ts'o 	loff_t final_size = offset + count;
298897a851edSJan Kara 	ext4_io_end_t *io_end = NULL;
298969c499d1STheodore Ts'o 
299069c499d1STheodore Ts'o 	/* Use the old path for reads and writes beyond i_size. */
299169c499d1STheodore Ts'o 	if (rw != WRITE || final_size > inode->i_size)
299216b1f05dSAl Viro 		return ext4_ind_direct_IO(rw, iocb, iter, offset);
2993729f52c6SZheng Liu 
29944bd809dbSZheng Liu 	BUG_ON(iocb->private == NULL);
29954bd809dbSZheng Liu 
2996e8340395SJan Kara 	/*
2997e8340395SJan Kara 	 * Make all waiters for direct IO properly wait also for extent
2998e8340395SJan Kara 	 * conversion. This also disallows race between truncate() and
2999e8340395SJan Kara 	 * overwrite DIO as i_dio_count needs to be incremented under i_mutex.
3000e8340395SJan Kara 	 */
3001e8340395SJan Kara 	if (rw == WRITE)
3002e8340395SJan Kara 		atomic_inc(&inode->i_dio_count);
3003e8340395SJan Kara 
30044bd809dbSZheng Liu 	/* If we do a overwrite dio, i_mutex locking can be released */
30054bd809dbSZheng Liu 	overwrite = *((int *)iocb->private);
30064bd809dbSZheng Liu 
30074bd809dbSZheng Liu 	if (overwrite) {
30084bd809dbSZheng Liu 		down_read(&EXT4_I(inode)->i_data_sem);
30094bd809dbSZheng Liu 		mutex_unlock(&inode->i_mutex);
30104bd809dbSZheng Liu 	}
30114bd809dbSZheng Liu 
30124c0425ffSMingming Cao 	/*
30138d5d02e6SMingming Cao 	 * We could direct write to holes and fallocate.
30148d5d02e6SMingming Cao 	 *
301569c499d1STheodore Ts'o 	 * Allocated blocks to fill the hole are marked as
3016556615dcSLukas Czerner 	 * unwritten to prevent parallel buffered read to expose
301769c499d1STheodore Ts'o 	 * the stale data before DIO complete the data IO.
30188d5d02e6SMingming Cao 	 *
301969c499d1STheodore Ts'o 	 * As to previously fallocated extents, ext4 get_block will
302069c499d1STheodore Ts'o 	 * just simply mark the buffer mapped but still keep the
3021556615dcSLukas Czerner 	 * extents unwritten.
30224c0425ffSMingming Cao 	 *
302369c499d1STheodore Ts'o 	 * For non AIO case, we will convert those unwritten extents
30248d5d02e6SMingming Cao 	 * to written after return back from blockdev_direct_IO.
30254c0425ffSMingming Cao 	 *
302669c499d1STheodore Ts'o 	 * For async DIO, the conversion needs to be deferred when the
302769c499d1STheodore Ts'o 	 * IO is completed. The ext4 end_io callback function will be
302869c499d1STheodore Ts'o 	 * called to take care of the conversion work.  Here for async
302969c499d1STheodore Ts'o 	 * case, we allocate an io_end structure to hook to the iocb.
30304c0425ffSMingming Cao 	 */
30318d5d02e6SMingming Cao 	iocb->private = NULL;
3032f45ee3a1SDmitry Monakhov 	ext4_inode_aio_set(inode, NULL);
30338d5d02e6SMingming Cao 	if (!is_sync_kiocb(iocb)) {
303497a851edSJan Kara 		io_end = ext4_init_io_end(inode, GFP_NOFS);
30354bd809dbSZheng Liu 		if (!io_end) {
30364bd809dbSZheng Liu 			ret = -ENOMEM;
30374bd809dbSZheng Liu 			goto retake_lock;
30384bd809dbSZheng Liu 		}
303997a851edSJan Kara 		/*
304097a851edSJan Kara 		 * Grab reference for DIO. Will be dropped in ext4_end_io_dio()
304197a851edSJan Kara 		 */
304297a851edSJan Kara 		iocb->private = ext4_get_io_end(io_end);
30438d5d02e6SMingming Cao 		/*
304469c499d1STheodore Ts'o 		 * we save the io structure for current async direct
304569c499d1STheodore Ts'o 		 * IO, so that later ext4_map_blocks() could flag the
304669c499d1STheodore Ts'o 		 * io structure whether there is a unwritten extents
304769c499d1STheodore Ts'o 		 * needs to be converted when IO is completed.
30488d5d02e6SMingming Cao 		 */
3049f45ee3a1SDmitry Monakhov 		ext4_inode_aio_set(inode, io_end);
30508d5d02e6SMingming Cao 	}
30518d5d02e6SMingming Cao 
30528b0f165fSAnatol Pomozov 	if (overwrite) {
30538b0f165fSAnatol Pomozov 		get_block_func = ext4_get_block_write_nolock;
30548b0f165fSAnatol Pomozov 	} else {
30558b0f165fSAnatol Pomozov 		get_block_func = ext4_get_block_write;
30568b0f165fSAnatol Pomozov 		dio_flags = DIO_LOCKING;
30578b0f165fSAnatol Pomozov 	}
3058729f52c6SZheng Liu 	ret = __blockdev_direct_IO(rw, iocb, inode,
305931b14039SAl Viro 				   inode->i_sb->s_bdev, iter,
306031b14039SAl Viro 				   offset,
30618b0f165fSAnatol Pomozov 				   get_block_func,
3062729f52c6SZheng Liu 				   ext4_end_io_dio,
3063729f52c6SZheng Liu 				   NULL,
30648b0f165fSAnatol Pomozov 				   dio_flags);
30658b0f165fSAnatol Pomozov 
30664eec708dSJan Kara 	/*
306797a851edSJan Kara 	 * Put our reference to io_end. This can free the io_end structure e.g.
306897a851edSJan Kara 	 * in sync IO case or in case of error. It can even perform extent
306997a851edSJan Kara 	 * conversion if all bios we submitted finished before we got here.
307097a851edSJan Kara 	 * Note that in that case iocb->private can be already set to NULL
307197a851edSJan Kara 	 * here.
30724eec708dSJan Kara 	 */
307397a851edSJan Kara 	if (io_end) {
307497a851edSJan Kara 		ext4_inode_aio_set(inode, NULL);
307597a851edSJan Kara 		ext4_put_io_end(io_end);
307697a851edSJan Kara 		/*
307797a851edSJan Kara 		 * When no IO was submitted ext4_end_io_dio() was not
307897a851edSJan Kara 		 * called so we have to put iocb's reference.
307997a851edSJan Kara 		 */
308097a851edSJan Kara 		if (ret <= 0 && ret != -EIOCBQUEUED && iocb->private) {
308197a851edSJan Kara 			WARN_ON(iocb->private != io_end);
308297a851edSJan Kara 			WARN_ON(io_end->flag & EXT4_IO_END_UNWRITTEN);
308397a851edSJan Kara 			ext4_put_io_end(io_end);
30848d5d02e6SMingming Cao 			iocb->private = NULL;
308597a851edSJan Kara 		}
308697a851edSJan Kara 	}
308797a851edSJan Kara 	if (ret > 0 && !overwrite && ext4_test_inode_state(inode,
30885f524950SMingming 						EXT4_STATE_DIO_UNWRITTEN)) {
3089109f5565SMingming 		int err;
30908d5d02e6SMingming Cao 		/*
30918d5d02e6SMingming Cao 		 * for non AIO case, since the IO is already
309225985edcSLucas De Marchi 		 * completed, we could do the conversion right here
30938d5d02e6SMingming Cao 		 */
30946b523df4SJan Kara 		err = ext4_convert_unwritten_extents(NULL, inode,
30958d5d02e6SMingming Cao 						     offset, ret);
3096109f5565SMingming 		if (err < 0)
3097109f5565SMingming 			ret = err;
309819f5fb7aSTheodore Ts'o 		ext4_clear_inode_state(inode, EXT4_STATE_DIO_UNWRITTEN);
3099109f5565SMingming 	}
31004bd809dbSZheng Liu 
31014bd809dbSZheng Liu retake_lock:
3102e8340395SJan Kara 	if (rw == WRITE)
3103e8340395SJan Kara 		inode_dio_done(inode);
31044bd809dbSZheng Liu 	/* take i_mutex locking again if we do a ovewrite dio */
31054bd809dbSZheng Liu 	if (overwrite) {
31064bd809dbSZheng Liu 		up_read(&EXT4_I(inode)->i_data_sem);
31074bd809dbSZheng Liu 		mutex_lock(&inode->i_mutex);
31084bd809dbSZheng Liu 	}
31094bd809dbSZheng Liu 
31104c0425ffSMingming Cao 	return ret;
31114c0425ffSMingming Cao }
31128d5d02e6SMingming Cao 
31134c0425ffSMingming Cao static ssize_t ext4_direct_IO(int rw, struct kiocb *iocb,
3114d8d3d94bSAl Viro 			      struct iov_iter *iter, loff_t offset)
31154c0425ffSMingming Cao {
31164c0425ffSMingming Cao 	struct file *file = iocb->ki_filp;
31174c0425ffSMingming Cao 	struct inode *inode = file->f_mapping->host;
3118a6cbcd4aSAl Viro 	size_t count = iov_iter_count(iter);
31190562e0baSJiaying Zhang 	ssize_t ret;
31204c0425ffSMingming Cao 
312184ebd795STheodore Ts'o 	/*
312284ebd795STheodore Ts'o 	 * If we are doing data journalling we don't support O_DIRECT
312384ebd795STheodore Ts'o 	 */
312484ebd795STheodore Ts'o 	if (ext4_should_journal_data(inode))
312584ebd795STheodore Ts'o 		return 0;
312684ebd795STheodore Ts'o 
312746c7f254STao Ma 	/* Let buffer I/O handle the inline data case. */
312846c7f254STao Ma 	if (ext4_has_inline_data(inode))
312946c7f254STao Ma 		return 0;
313046c7f254STao Ma 
3131a6cbcd4aSAl Viro 	trace_ext4_direct_IO_enter(inode, offset, count, rw);
313212e9b892SDmitry Monakhov 	if (ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS))
313316b1f05dSAl Viro 		ret = ext4_ext_direct_IO(rw, iocb, iter, offset);
31340562e0baSJiaying Zhang 	else
313516b1f05dSAl Viro 		ret = ext4_ind_direct_IO(rw, iocb, iter, offset);
3136a6cbcd4aSAl Viro 	trace_ext4_direct_IO_exit(inode, offset, count, rw, ret);
31370562e0baSJiaying Zhang 	return ret;
31384c0425ffSMingming Cao }
31394c0425ffSMingming Cao 
3140ac27a0ecSDave Kleikamp /*
3141617ba13bSMingming Cao  * Pages can be marked dirty completely asynchronously from ext4's journalling
3142ac27a0ecSDave Kleikamp  * activity.  By filemap_sync_pte(), try_to_unmap_one(), etc.  We cannot do
3143ac27a0ecSDave Kleikamp  * much here because ->set_page_dirty is called under VFS locks.  The page is
3144ac27a0ecSDave Kleikamp  * not necessarily locked.
3145ac27a0ecSDave Kleikamp  *
3146ac27a0ecSDave Kleikamp  * We cannot just dirty the page and leave attached buffers clean, because the
3147ac27a0ecSDave Kleikamp  * buffers' dirty state is "definitive".  We cannot just set the buffers dirty
3148ac27a0ecSDave Kleikamp  * or jbddirty because all the journalling code will explode.
3149ac27a0ecSDave Kleikamp  *
3150ac27a0ecSDave Kleikamp  * So what we do is to mark the page "pending dirty" and next time writepage
3151ac27a0ecSDave Kleikamp  * is called, propagate that into the buffers appropriately.
3152ac27a0ecSDave Kleikamp  */
3153617ba13bSMingming Cao static int ext4_journalled_set_page_dirty(struct page *page)
3154ac27a0ecSDave Kleikamp {
3155ac27a0ecSDave Kleikamp 	SetPageChecked(page);
3156ac27a0ecSDave Kleikamp 	return __set_page_dirty_nobuffers(page);
3157ac27a0ecSDave Kleikamp }
3158ac27a0ecSDave Kleikamp 
315974d553aaSTheodore Ts'o static const struct address_space_operations ext4_aops = {
3160617ba13bSMingming Cao 	.readpage		= ext4_readpage,
3161617ba13bSMingming Cao 	.readpages		= ext4_readpages,
316243ce1d23SAneesh Kumar K.V 	.writepage		= ext4_writepage,
316320970ba6STheodore Ts'o 	.writepages		= ext4_writepages,
3164bfc1af65SNick Piggin 	.write_begin		= ext4_write_begin,
316574d553aaSTheodore Ts'o 	.write_end		= ext4_write_end,
3166617ba13bSMingming Cao 	.bmap			= ext4_bmap,
3167617ba13bSMingming Cao 	.invalidatepage		= ext4_invalidatepage,
3168617ba13bSMingming Cao 	.releasepage		= ext4_releasepage,
3169617ba13bSMingming Cao 	.direct_IO		= ext4_direct_IO,
3170ac27a0ecSDave Kleikamp 	.migratepage		= buffer_migrate_page,
31718ab22b9aSHisashi Hifumi 	.is_partially_uptodate  = block_is_partially_uptodate,
3172aa261f54SAndi Kleen 	.error_remove_page	= generic_error_remove_page,
3173ac27a0ecSDave Kleikamp };
3174ac27a0ecSDave Kleikamp 
3175617ba13bSMingming Cao static const struct address_space_operations ext4_journalled_aops = {
3176617ba13bSMingming Cao 	.readpage		= ext4_readpage,
3177617ba13bSMingming Cao 	.readpages		= ext4_readpages,
317843ce1d23SAneesh Kumar K.V 	.writepage		= ext4_writepage,
317920970ba6STheodore Ts'o 	.writepages		= ext4_writepages,
3180bfc1af65SNick Piggin 	.write_begin		= ext4_write_begin,
3181bfc1af65SNick Piggin 	.write_end		= ext4_journalled_write_end,
3182617ba13bSMingming Cao 	.set_page_dirty		= ext4_journalled_set_page_dirty,
3183617ba13bSMingming Cao 	.bmap			= ext4_bmap,
31844520fb3cSJan Kara 	.invalidatepage		= ext4_journalled_invalidatepage,
3185617ba13bSMingming Cao 	.releasepage		= ext4_releasepage,
318684ebd795STheodore Ts'o 	.direct_IO		= ext4_direct_IO,
31878ab22b9aSHisashi Hifumi 	.is_partially_uptodate  = block_is_partially_uptodate,
3188aa261f54SAndi Kleen 	.error_remove_page	= generic_error_remove_page,
3189ac27a0ecSDave Kleikamp };
3190ac27a0ecSDave Kleikamp 
319164769240SAlex Tomas static const struct address_space_operations ext4_da_aops = {
319264769240SAlex Tomas 	.readpage		= ext4_readpage,
319364769240SAlex Tomas 	.readpages		= ext4_readpages,
319443ce1d23SAneesh Kumar K.V 	.writepage		= ext4_writepage,
319520970ba6STheodore Ts'o 	.writepages		= ext4_writepages,
319664769240SAlex Tomas 	.write_begin		= ext4_da_write_begin,
319764769240SAlex Tomas 	.write_end		= ext4_da_write_end,
319864769240SAlex Tomas 	.bmap			= ext4_bmap,
319964769240SAlex Tomas 	.invalidatepage		= ext4_da_invalidatepage,
320064769240SAlex Tomas 	.releasepage		= ext4_releasepage,
320164769240SAlex Tomas 	.direct_IO		= ext4_direct_IO,
320264769240SAlex Tomas 	.migratepage		= buffer_migrate_page,
32038ab22b9aSHisashi Hifumi 	.is_partially_uptodate  = block_is_partially_uptodate,
3204aa261f54SAndi Kleen 	.error_remove_page	= generic_error_remove_page,
320564769240SAlex Tomas };
320664769240SAlex Tomas 
3207617ba13bSMingming Cao void ext4_set_aops(struct inode *inode)
3208ac27a0ecSDave Kleikamp {
32093d2b1582SLukas Czerner 	switch (ext4_inode_journal_mode(inode)) {
32103d2b1582SLukas Czerner 	case EXT4_INODE_ORDERED_DATA_MODE:
321174d553aaSTheodore Ts'o 		ext4_set_inode_state(inode, EXT4_STATE_ORDERED_MODE);
32123d2b1582SLukas Czerner 		break;
32133d2b1582SLukas Czerner 	case EXT4_INODE_WRITEBACK_DATA_MODE:
321474d553aaSTheodore Ts'o 		ext4_clear_inode_state(inode, EXT4_STATE_ORDERED_MODE);
32153d2b1582SLukas Czerner 		break;
32163d2b1582SLukas Czerner 	case EXT4_INODE_JOURNAL_DATA_MODE:
3217617ba13bSMingming Cao 		inode->i_mapping->a_ops = &ext4_journalled_aops;
321874d553aaSTheodore Ts'o 		return;
32193d2b1582SLukas Czerner 	default:
32203d2b1582SLukas Czerner 		BUG();
32213d2b1582SLukas Czerner 	}
322274d553aaSTheodore Ts'o 	if (test_opt(inode->i_sb, DELALLOC))
322374d553aaSTheodore Ts'o 		inode->i_mapping->a_ops = &ext4_da_aops;
322474d553aaSTheodore Ts'o 	else
322574d553aaSTheodore Ts'o 		inode->i_mapping->a_ops = &ext4_aops;
3226ac27a0ecSDave Kleikamp }
3227ac27a0ecSDave Kleikamp 
3228d863dc36SLukas Czerner /*
3229d863dc36SLukas Czerner  * ext4_block_zero_page_range() zeros out a mapping of length 'length'
3230d863dc36SLukas Czerner  * starting from file offset 'from'.  The range to be zero'd must
3231d863dc36SLukas Czerner  * be contained with in one block.  If the specified range exceeds
3232d863dc36SLukas Czerner  * the end of the block it will be shortened to end of the block
3233d863dc36SLukas Czerner  * that cooresponds to 'from'
3234d863dc36SLukas Czerner  */
323594350ab5SMatthew Wilcox static int ext4_block_zero_page_range(handle_t *handle,
3236d863dc36SLukas Czerner 		struct address_space *mapping, loff_t from, loff_t length)
3237d863dc36SLukas Czerner {
3238d863dc36SLukas Czerner 	ext4_fsblk_t index = from >> PAGE_CACHE_SHIFT;
3239d863dc36SLukas Czerner 	unsigned offset = from & (PAGE_CACHE_SIZE-1);
3240d863dc36SLukas Czerner 	unsigned blocksize, max, pos;
3241d863dc36SLukas Czerner 	ext4_lblk_t iblock;
3242d863dc36SLukas Czerner 	struct inode *inode = mapping->host;
3243d863dc36SLukas Czerner 	struct buffer_head *bh;
3244d863dc36SLukas Czerner 	struct page *page;
3245d863dc36SLukas Czerner 	int err = 0;
3246d863dc36SLukas Czerner 
3247d863dc36SLukas Czerner 	page = find_or_create_page(mapping, from >> PAGE_CACHE_SHIFT,
3248d863dc36SLukas Czerner 				   mapping_gfp_mask(mapping) & ~__GFP_FS);
3249d863dc36SLukas Czerner 	if (!page)
3250d863dc36SLukas Czerner 		return -ENOMEM;
3251d863dc36SLukas Czerner 
3252d863dc36SLukas Czerner 	blocksize = inode->i_sb->s_blocksize;
3253d863dc36SLukas Czerner 	max = blocksize - (offset & (blocksize - 1));
3254d863dc36SLukas Czerner 
3255d863dc36SLukas Czerner 	/*
3256d863dc36SLukas Czerner 	 * correct length if it does not fall between
3257d863dc36SLukas Czerner 	 * 'from' and the end of the block
3258d863dc36SLukas Czerner 	 */
3259d863dc36SLukas Czerner 	if (length > max || length < 0)
3260d863dc36SLukas Czerner 		length = max;
3261d863dc36SLukas Czerner 
3262d863dc36SLukas Czerner 	iblock = index << (PAGE_CACHE_SHIFT - inode->i_sb->s_blocksize_bits);
3263d863dc36SLukas Czerner 
3264d863dc36SLukas Czerner 	if (!page_has_buffers(page))
3265d863dc36SLukas Czerner 		create_empty_buffers(page, blocksize, 0);
3266d863dc36SLukas Czerner 
3267d863dc36SLukas Czerner 	/* Find the buffer that contains "offset" */
3268d863dc36SLukas Czerner 	bh = page_buffers(page);
3269d863dc36SLukas Czerner 	pos = blocksize;
3270d863dc36SLukas Czerner 	while (offset >= pos) {
3271d863dc36SLukas Czerner 		bh = bh->b_this_page;
3272d863dc36SLukas Czerner 		iblock++;
3273d863dc36SLukas Czerner 		pos += blocksize;
3274d863dc36SLukas Czerner 	}
3275d863dc36SLukas Czerner 	if (buffer_freed(bh)) {
3276d863dc36SLukas Czerner 		BUFFER_TRACE(bh, "freed: skip");
3277d863dc36SLukas Czerner 		goto unlock;
3278d863dc36SLukas Czerner 	}
3279d863dc36SLukas Czerner 	if (!buffer_mapped(bh)) {
3280d863dc36SLukas Czerner 		BUFFER_TRACE(bh, "unmapped");
3281d863dc36SLukas Czerner 		ext4_get_block(inode, iblock, bh, 0);
3282d863dc36SLukas Czerner 		/* unmapped? It's a hole - nothing to do */
3283d863dc36SLukas Czerner 		if (!buffer_mapped(bh)) {
3284d863dc36SLukas Czerner 			BUFFER_TRACE(bh, "still unmapped");
3285d863dc36SLukas Czerner 			goto unlock;
3286d863dc36SLukas Czerner 		}
3287d863dc36SLukas Czerner 	}
3288d863dc36SLukas Czerner 
3289d863dc36SLukas Czerner 	/* Ok, it's mapped. Make sure it's up-to-date */
3290d863dc36SLukas Czerner 	if (PageUptodate(page))
3291d863dc36SLukas Czerner 		set_buffer_uptodate(bh);
3292d863dc36SLukas Czerner 
3293d863dc36SLukas Czerner 	if (!buffer_uptodate(bh)) {
3294d863dc36SLukas Czerner 		err = -EIO;
3295d863dc36SLukas Czerner 		ll_rw_block(READ, 1, &bh);
3296d863dc36SLukas Czerner 		wait_on_buffer(bh);
3297d863dc36SLukas Czerner 		/* Uhhuh. Read error. Complain and punt. */
3298d863dc36SLukas Czerner 		if (!buffer_uptodate(bh))
3299d863dc36SLukas Czerner 			goto unlock;
3300d863dc36SLukas Czerner 	}
3301d863dc36SLukas Czerner 	if (ext4_should_journal_data(inode)) {
3302d863dc36SLukas Czerner 		BUFFER_TRACE(bh, "get write access");
3303d863dc36SLukas Czerner 		err = ext4_journal_get_write_access(handle, bh);
3304d863dc36SLukas Czerner 		if (err)
3305d863dc36SLukas Czerner 			goto unlock;
3306d863dc36SLukas Czerner 	}
3307d863dc36SLukas Czerner 	zero_user(page, offset, length);
3308d863dc36SLukas Czerner 	BUFFER_TRACE(bh, "zeroed end of block");
3309d863dc36SLukas Czerner 
3310d863dc36SLukas Czerner 	if (ext4_should_journal_data(inode)) {
3311d863dc36SLukas Czerner 		err = ext4_handle_dirty_metadata(handle, inode, bh);
33120713ed0cSLukas Czerner 	} else {
3313353eefd3Sjon ernst 		err = 0;
3314d863dc36SLukas Czerner 		mark_buffer_dirty(bh);
33150713ed0cSLukas Czerner 		if (ext4_test_inode_state(inode, EXT4_STATE_ORDERED_MODE))
33160713ed0cSLukas Czerner 			err = ext4_jbd2_file_inode(handle, inode);
33170713ed0cSLukas Czerner 	}
3318d863dc36SLukas Czerner 
3319d863dc36SLukas Czerner unlock:
3320d863dc36SLukas Czerner 	unlock_page(page);
3321d863dc36SLukas Czerner 	page_cache_release(page);
3322d863dc36SLukas Czerner 	return err;
3323d863dc36SLukas Czerner }
3324d863dc36SLukas Czerner 
332594350ab5SMatthew Wilcox /*
332694350ab5SMatthew Wilcox  * ext4_block_truncate_page() zeroes out a mapping from file offset `from'
332794350ab5SMatthew Wilcox  * up to the end of the block which corresponds to `from'.
332894350ab5SMatthew Wilcox  * This required during truncate. We need to physically zero the tail end
332994350ab5SMatthew Wilcox  * of that block so it doesn't yield old data if the file is later grown.
333094350ab5SMatthew Wilcox  */
3331c197855eSStephen Hemminger static int ext4_block_truncate_page(handle_t *handle,
333294350ab5SMatthew Wilcox 		struct address_space *mapping, loff_t from)
333394350ab5SMatthew Wilcox {
333494350ab5SMatthew Wilcox 	unsigned offset = from & (PAGE_CACHE_SIZE-1);
333594350ab5SMatthew Wilcox 	unsigned length;
333694350ab5SMatthew Wilcox 	unsigned blocksize;
333794350ab5SMatthew Wilcox 	struct inode *inode = mapping->host;
333894350ab5SMatthew Wilcox 
333994350ab5SMatthew Wilcox 	blocksize = inode->i_sb->s_blocksize;
334094350ab5SMatthew Wilcox 	length = blocksize - (offset & (blocksize - 1));
334194350ab5SMatthew Wilcox 
334294350ab5SMatthew Wilcox 	return ext4_block_zero_page_range(handle, mapping, from, length);
334394350ab5SMatthew Wilcox }
334494350ab5SMatthew Wilcox 
3345a87dd18cSLukas Czerner int ext4_zero_partial_blocks(handle_t *handle, struct inode *inode,
3346a87dd18cSLukas Czerner 			     loff_t lstart, loff_t length)
3347a87dd18cSLukas Czerner {
3348a87dd18cSLukas Czerner 	struct super_block *sb = inode->i_sb;
3349a87dd18cSLukas Czerner 	struct address_space *mapping = inode->i_mapping;
3350e1be3a92SLukas Czerner 	unsigned partial_start, partial_end;
3351a87dd18cSLukas Czerner 	ext4_fsblk_t start, end;
3352a87dd18cSLukas Czerner 	loff_t byte_end = (lstart + length - 1);
3353a87dd18cSLukas Czerner 	int err = 0;
3354a87dd18cSLukas Czerner 
3355e1be3a92SLukas Czerner 	partial_start = lstart & (sb->s_blocksize - 1);
3356e1be3a92SLukas Czerner 	partial_end = byte_end & (sb->s_blocksize - 1);
3357e1be3a92SLukas Czerner 
3358a87dd18cSLukas Czerner 	start = lstart >> sb->s_blocksize_bits;
3359a87dd18cSLukas Czerner 	end = byte_end >> sb->s_blocksize_bits;
3360a87dd18cSLukas Czerner 
3361a87dd18cSLukas Czerner 	/* Handle partial zero within the single block */
3362e1be3a92SLukas Czerner 	if (start == end &&
3363e1be3a92SLukas Czerner 	    (partial_start || (partial_end != sb->s_blocksize - 1))) {
3364a87dd18cSLukas Czerner 		err = ext4_block_zero_page_range(handle, mapping,
3365a87dd18cSLukas Czerner 						 lstart, length);
3366a87dd18cSLukas Czerner 		return err;
3367a87dd18cSLukas Czerner 	}
3368a87dd18cSLukas Czerner 	/* Handle partial zero out on the start of the range */
3369e1be3a92SLukas Czerner 	if (partial_start) {
3370a87dd18cSLukas Czerner 		err = ext4_block_zero_page_range(handle, mapping,
3371a87dd18cSLukas Czerner 						 lstart, sb->s_blocksize);
3372a87dd18cSLukas Czerner 		if (err)
3373a87dd18cSLukas Czerner 			return err;
3374a87dd18cSLukas Czerner 	}
3375a87dd18cSLukas Czerner 	/* Handle partial zero out on the end of the range */
3376e1be3a92SLukas Czerner 	if (partial_end != sb->s_blocksize - 1)
3377a87dd18cSLukas Czerner 		err = ext4_block_zero_page_range(handle, mapping,
3378e1be3a92SLukas Czerner 						 byte_end - partial_end,
3379e1be3a92SLukas Czerner 						 partial_end + 1);
3380a87dd18cSLukas Czerner 	return err;
3381a87dd18cSLukas Czerner }
3382a87dd18cSLukas Czerner 
338391ef4cafSDuane Griffin int ext4_can_truncate(struct inode *inode)
338491ef4cafSDuane Griffin {
338591ef4cafSDuane Griffin 	if (S_ISREG(inode->i_mode))
338691ef4cafSDuane Griffin 		return 1;
338791ef4cafSDuane Griffin 	if (S_ISDIR(inode->i_mode))
338891ef4cafSDuane Griffin 		return 1;
338991ef4cafSDuane Griffin 	if (S_ISLNK(inode->i_mode))
339091ef4cafSDuane Griffin 		return !ext4_inode_is_fast_symlink(inode);
339191ef4cafSDuane Griffin 	return 0;
339291ef4cafSDuane Griffin }
339391ef4cafSDuane Griffin 
3394ac27a0ecSDave Kleikamp /*
3395a4bb6b64SAllison Henderson  * ext4_punch_hole: punches a hole in a file by releaseing the blocks
3396a4bb6b64SAllison Henderson  * associated with the given offset and length
3397a4bb6b64SAllison Henderson  *
3398a4bb6b64SAllison Henderson  * @inode:  File inode
3399a4bb6b64SAllison Henderson  * @offset: The offset where the hole will begin
3400a4bb6b64SAllison Henderson  * @len:    The length of the hole
3401a4bb6b64SAllison Henderson  *
34024907cb7bSAnatol Pomozov  * Returns: 0 on success or negative on failure
3403a4bb6b64SAllison Henderson  */
3404a4bb6b64SAllison Henderson 
3405aeb2817aSAshish Sangwan int ext4_punch_hole(struct inode *inode, loff_t offset, loff_t length)
3406a4bb6b64SAllison Henderson {
340726a4c0c6STheodore Ts'o 	struct super_block *sb = inode->i_sb;
340826a4c0c6STheodore Ts'o 	ext4_lblk_t first_block, stop_block;
340926a4c0c6STheodore Ts'o 	struct address_space *mapping = inode->i_mapping;
3410a87dd18cSLukas Czerner 	loff_t first_block_offset, last_block_offset;
341126a4c0c6STheodore Ts'o 	handle_t *handle;
341226a4c0c6STheodore Ts'o 	unsigned int credits;
341326a4c0c6STheodore Ts'o 	int ret = 0;
341426a4c0c6STheodore Ts'o 
3415a4bb6b64SAllison Henderson 	if (!S_ISREG(inode->i_mode))
341673355192SAllison Henderson 		return -EOPNOTSUPP;
3417a4bb6b64SAllison Henderson 
3418b8a86845SLukas Czerner 	trace_ext4_punch_hole(inode, offset, length, 0);
3419aaddea81SZheng Liu 
342026a4c0c6STheodore Ts'o 	/*
342126a4c0c6STheodore Ts'o 	 * Write out all dirty pages to avoid race conditions
342226a4c0c6STheodore Ts'o 	 * Then release them.
342326a4c0c6STheodore Ts'o 	 */
342426a4c0c6STheodore Ts'o 	if (mapping->nrpages && mapping_tagged(mapping, PAGECACHE_TAG_DIRTY)) {
342526a4c0c6STheodore Ts'o 		ret = filemap_write_and_wait_range(mapping, offset,
342626a4c0c6STheodore Ts'o 						   offset + length - 1);
342726a4c0c6STheodore Ts'o 		if (ret)
342826a4c0c6STheodore Ts'o 			return ret;
342926a4c0c6STheodore Ts'o 	}
343026a4c0c6STheodore Ts'o 
343126a4c0c6STheodore Ts'o 	mutex_lock(&inode->i_mutex);
34329ef06cecSLukas Czerner 
343326a4c0c6STheodore Ts'o 	/* No need to punch hole beyond i_size */
343426a4c0c6STheodore Ts'o 	if (offset >= inode->i_size)
343526a4c0c6STheodore Ts'o 		goto out_mutex;
343626a4c0c6STheodore Ts'o 
343726a4c0c6STheodore Ts'o 	/*
343826a4c0c6STheodore Ts'o 	 * If the hole extends beyond i_size, set the hole
343926a4c0c6STheodore Ts'o 	 * to end after the page that contains i_size
344026a4c0c6STheodore Ts'o 	 */
344126a4c0c6STheodore Ts'o 	if (offset + length > inode->i_size) {
344226a4c0c6STheodore Ts'o 		length = inode->i_size +
344326a4c0c6STheodore Ts'o 		   PAGE_CACHE_SIZE - (inode->i_size & (PAGE_CACHE_SIZE - 1)) -
344426a4c0c6STheodore Ts'o 		   offset;
344526a4c0c6STheodore Ts'o 	}
344626a4c0c6STheodore Ts'o 
3447a361293fSJan Kara 	if (offset & (sb->s_blocksize - 1) ||
3448a361293fSJan Kara 	    (offset + length) & (sb->s_blocksize - 1)) {
3449a361293fSJan Kara 		/*
3450a361293fSJan Kara 		 * Attach jinode to inode for jbd2 if we do any zeroing of
3451a361293fSJan Kara 		 * partial block
3452a361293fSJan Kara 		 */
3453a361293fSJan Kara 		ret = ext4_inode_attach_jinode(inode);
3454a361293fSJan Kara 		if (ret < 0)
3455a361293fSJan Kara 			goto out_mutex;
3456a361293fSJan Kara 
3457a361293fSJan Kara 	}
3458a361293fSJan Kara 
3459a87dd18cSLukas Czerner 	first_block_offset = round_up(offset, sb->s_blocksize);
3460a87dd18cSLukas Czerner 	last_block_offset = round_down((offset + length), sb->s_blocksize) - 1;
346126a4c0c6STheodore Ts'o 
3462a87dd18cSLukas Czerner 	/* Now release the pages and zero block aligned part of pages*/
3463a87dd18cSLukas Czerner 	if (last_block_offset > first_block_offset)
3464a87dd18cSLukas Czerner 		truncate_pagecache_range(inode, first_block_offset,
3465a87dd18cSLukas Czerner 					 last_block_offset);
346626a4c0c6STheodore Ts'o 
346726a4c0c6STheodore Ts'o 	/* Wait all existing dio workers, newcomers will block on i_mutex */
346826a4c0c6STheodore Ts'o 	ext4_inode_block_unlocked_dio(inode);
346926a4c0c6STheodore Ts'o 	inode_dio_wait(inode);
347026a4c0c6STheodore Ts'o 
347126a4c0c6STheodore Ts'o 	if (ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS))
347226a4c0c6STheodore Ts'o 		credits = ext4_writepage_trans_blocks(inode);
347326a4c0c6STheodore Ts'o 	else
347426a4c0c6STheodore Ts'o 		credits = ext4_blocks_for_truncate(inode);
347526a4c0c6STheodore Ts'o 	handle = ext4_journal_start(inode, EXT4_HT_TRUNCATE, credits);
347626a4c0c6STheodore Ts'o 	if (IS_ERR(handle)) {
347726a4c0c6STheodore Ts'o 		ret = PTR_ERR(handle);
347826a4c0c6STheodore Ts'o 		ext4_std_error(sb, ret);
347926a4c0c6STheodore Ts'o 		goto out_dio;
348026a4c0c6STheodore Ts'o 	}
348126a4c0c6STheodore Ts'o 
3482a87dd18cSLukas Czerner 	ret = ext4_zero_partial_blocks(handle, inode, offset,
3483a87dd18cSLukas Czerner 				       length);
348426a4c0c6STheodore Ts'o 	if (ret)
348526a4c0c6STheodore Ts'o 		goto out_stop;
348626a4c0c6STheodore Ts'o 
348726a4c0c6STheodore Ts'o 	first_block = (offset + sb->s_blocksize - 1) >>
348826a4c0c6STheodore Ts'o 		EXT4_BLOCK_SIZE_BITS(sb);
348926a4c0c6STheodore Ts'o 	stop_block = (offset + length) >> EXT4_BLOCK_SIZE_BITS(sb);
349026a4c0c6STheodore Ts'o 
349126a4c0c6STheodore Ts'o 	/* If there are no blocks to remove, return now */
349226a4c0c6STheodore Ts'o 	if (first_block >= stop_block)
349326a4c0c6STheodore Ts'o 		goto out_stop;
349426a4c0c6STheodore Ts'o 
349526a4c0c6STheodore Ts'o 	down_write(&EXT4_I(inode)->i_data_sem);
349626a4c0c6STheodore Ts'o 	ext4_discard_preallocations(inode);
349726a4c0c6STheodore Ts'o 
349826a4c0c6STheodore Ts'o 	ret = ext4_es_remove_extent(inode, first_block,
349926a4c0c6STheodore Ts'o 				    stop_block - first_block);
350026a4c0c6STheodore Ts'o 	if (ret) {
350126a4c0c6STheodore Ts'o 		up_write(&EXT4_I(inode)->i_data_sem);
350226a4c0c6STheodore Ts'o 		goto out_stop;
350326a4c0c6STheodore Ts'o 	}
350426a4c0c6STheodore Ts'o 
350526a4c0c6STheodore Ts'o 	if (ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS))
350626a4c0c6STheodore Ts'o 		ret = ext4_ext_remove_space(inode, first_block,
350726a4c0c6STheodore Ts'o 					    stop_block - 1);
350826a4c0c6STheodore Ts'o 	else
350926a4c0c6STheodore Ts'o 		ret = ext4_free_hole_blocks(handle, inode, first_block,
351026a4c0c6STheodore Ts'o 					    stop_block);
351126a4c0c6STheodore Ts'o 
3512819c4920STheodore Ts'o 	up_write(&EXT4_I(inode)->i_data_sem);
351326a4c0c6STheodore Ts'o 	if (IS_SYNC(inode))
351426a4c0c6STheodore Ts'o 		ext4_handle_sync(handle);
3515e251f9bcSMaxim Patlasov 
3516e251f9bcSMaxim Patlasov 	/* Now release the pages again to reduce race window */
3517e251f9bcSMaxim Patlasov 	if (last_block_offset > first_block_offset)
3518e251f9bcSMaxim Patlasov 		truncate_pagecache_range(inode, first_block_offset,
3519e251f9bcSMaxim Patlasov 					 last_block_offset);
3520e251f9bcSMaxim Patlasov 
352126a4c0c6STheodore Ts'o 	inode->i_mtime = inode->i_ctime = ext4_current_time(inode);
352226a4c0c6STheodore Ts'o 	ext4_mark_inode_dirty(handle, inode);
352326a4c0c6STheodore Ts'o out_stop:
352426a4c0c6STheodore Ts'o 	ext4_journal_stop(handle);
352526a4c0c6STheodore Ts'o out_dio:
352626a4c0c6STheodore Ts'o 	ext4_inode_resume_unlocked_dio(inode);
352726a4c0c6STheodore Ts'o out_mutex:
352826a4c0c6STheodore Ts'o 	mutex_unlock(&inode->i_mutex);
352926a4c0c6STheodore Ts'o 	return ret;
3530a4bb6b64SAllison Henderson }
3531a4bb6b64SAllison Henderson 
3532a361293fSJan Kara int ext4_inode_attach_jinode(struct inode *inode)
3533a361293fSJan Kara {
3534a361293fSJan Kara 	struct ext4_inode_info *ei = EXT4_I(inode);
3535a361293fSJan Kara 	struct jbd2_inode *jinode;
3536a361293fSJan Kara 
3537a361293fSJan Kara 	if (ei->jinode || !EXT4_SB(inode->i_sb)->s_journal)
3538a361293fSJan Kara 		return 0;
3539a361293fSJan Kara 
3540a361293fSJan Kara 	jinode = jbd2_alloc_inode(GFP_KERNEL);
3541a361293fSJan Kara 	spin_lock(&inode->i_lock);
3542a361293fSJan Kara 	if (!ei->jinode) {
3543a361293fSJan Kara 		if (!jinode) {
3544a361293fSJan Kara 			spin_unlock(&inode->i_lock);
3545a361293fSJan Kara 			return -ENOMEM;
3546a361293fSJan Kara 		}
3547a361293fSJan Kara 		ei->jinode = jinode;
3548a361293fSJan Kara 		jbd2_journal_init_jbd_inode(ei->jinode, inode);
3549a361293fSJan Kara 		jinode = NULL;
3550a361293fSJan Kara 	}
3551a361293fSJan Kara 	spin_unlock(&inode->i_lock);
3552a361293fSJan Kara 	if (unlikely(jinode != NULL))
3553a361293fSJan Kara 		jbd2_free_inode(jinode);
3554a361293fSJan Kara 	return 0;
3555a361293fSJan Kara }
3556a361293fSJan Kara 
3557a4bb6b64SAllison Henderson /*
3558617ba13bSMingming Cao  * ext4_truncate()
3559ac27a0ecSDave Kleikamp  *
3560617ba13bSMingming Cao  * We block out ext4_get_block() block instantiations across the entire
3561617ba13bSMingming Cao  * transaction, and VFS/VM ensures that ext4_truncate() cannot run
3562ac27a0ecSDave Kleikamp  * simultaneously on behalf of the same inode.
3563ac27a0ecSDave Kleikamp  *
356442b2aa86SJustin P. Mattock  * As we work through the truncate and commit bits of it to the journal there
3565ac27a0ecSDave Kleikamp  * is one core, guiding principle: the file's tree must always be consistent on
3566ac27a0ecSDave Kleikamp  * disk.  We must be able to restart the truncate after a crash.
3567ac27a0ecSDave Kleikamp  *
3568ac27a0ecSDave Kleikamp  * The file's tree may be transiently inconsistent in memory (although it
3569ac27a0ecSDave Kleikamp  * probably isn't), but whenever we close off and commit a journal transaction,
3570ac27a0ecSDave Kleikamp  * the contents of (the filesystem + the journal) must be consistent and
3571ac27a0ecSDave Kleikamp  * restartable.  It's pretty simple, really: bottom up, right to left (although
3572ac27a0ecSDave Kleikamp  * left-to-right works OK too).
3573ac27a0ecSDave Kleikamp  *
3574ac27a0ecSDave Kleikamp  * Note that at recovery time, journal replay occurs *before* the restart of
3575ac27a0ecSDave Kleikamp  * truncate against the orphan inode list.
3576ac27a0ecSDave Kleikamp  *
3577ac27a0ecSDave Kleikamp  * The committed inode has the new, desired i_size (which is the same as
3578617ba13bSMingming Cao  * i_disksize in this case).  After a crash, ext4_orphan_cleanup() will see
3579ac27a0ecSDave Kleikamp  * that this inode's truncate did not complete and it will again call
3580617ba13bSMingming Cao  * ext4_truncate() to have another go.  So there will be instantiated blocks
3581617ba13bSMingming Cao  * to the right of the truncation point in a crashed ext4 filesystem.  But
3582ac27a0ecSDave Kleikamp  * that's fine - as long as they are linked from the inode, the post-crash
3583617ba13bSMingming Cao  * ext4_truncate() run will find them and release them.
3584ac27a0ecSDave Kleikamp  */
3585617ba13bSMingming Cao void ext4_truncate(struct inode *inode)
3586ac27a0ecSDave Kleikamp {
3587819c4920STheodore Ts'o 	struct ext4_inode_info *ei = EXT4_I(inode);
3588819c4920STheodore Ts'o 	unsigned int credits;
3589819c4920STheodore Ts'o 	handle_t *handle;
3590819c4920STheodore Ts'o 	struct address_space *mapping = inode->i_mapping;
3591819c4920STheodore Ts'o 
359219b5ef61STheodore Ts'o 	/*
359319b5ef61STheodore Ts'o 	 * There is a possibility that we're either freeing the inode
3594e04027e8SMatthew Wilcox 	 * or it's a completely new inode. In those cases we might not
359519b5ef61STheodore Ts'o 	 * have i_mutex locked because it's not necessary.
359619b5ef61STheodore Ts'o 	 */
359719b5ef61STheodore Ts'o 	if (!(inode->i_state & (I_NEW|I_FREEING)))
359819b5ef61STheodore Ts'o 		WARN_ON(!mutex_is_locked(&inode->i_mutex));
35990562e0baSJiaying Zhang 	trace_ext4_truncate_enter(inode);
36000562e0baSJiaying Zhang 
360191ef4cafSDuane Griffin 	if (!ext4_can_truncate(inode))
3602ac27a0ecSDave Kleikamp 		return;
3603ac27a0ecSDave Kleikamp 
360412e9b892SDmitry Monakhov 	ext4_clear_inode_flag(inode, EXT4_INODE_EOFBLOCKS);
3605c8d46e41SJiaying Zhang 
36065534fb5bSTheodore Ts'o 	if (inode->i_size == 0 && !test_opt(inode->i_sb, NO_AUTO_DA_ALLOC))
360719f5fb7aSTheodore Ts'o 		ext4_set_inode_state(inode, EXT4_STATE_DA_ALLOC_CLOSE);
36087d8f9f7dSTheodore Ts'o 
3609aef1c851STao Ma 	if (ext4_has_inline_data(inode)) {
3610aef1c851STao Ma 		int has_inline = 1;
3611aef1c851STao Ma 
3612aef1c851STao Ma 		ext4_inline_data_truncate(inode, &has_inline);
3613aef1c851STao Ma 		if (has_inline)
3614aef1c851STao Ma 			return;
3615aef1c851STao Ma 	}
3616aef1c851STao Ma 
3617a361293fSJan Kara 	/* If we zero-out tail of the page, we have to create jinode for jbd2 */
3618a361293fSJan Kara 	if (inode->i_size & (inode->i_sb->s_blocksize - 1)) {
3619a361293fSJan Kara 		if (ext4_inode_attach_jinode(inode) < 0)
3620a361293fSJan Kara 			return;
3621a361293fSJan Kara 	}
3622a361293fSJan Kara 
3623ff9893dcSAmir Goldstein 	if (ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS))
3624819c4920STheodore Ts'o 		credits = ext4_writepage_trans_blocks(inode);
3625ff9893dcSAmir Goldstein 	else
3626819c4920STheodore Ts'o 		credits = ext4_blocks_for_truncate(inode);
3627819c4920STheodore Ts'o 
3628819c4920STheodore Ts'o 	handle = ext4_journal_start(inode, EXT4_HT_TRUNCATE, credits);
3629819c4920STheodore Ts'o 	if (IS_ERR(handle)) {
3630819c4920STheodore Ts'o 		ext4_std_error(inode->i_sb, PTR_ERR(handle));
3631819c4920STheodore Ts'o 		return;
3632819c4920STheodore Ts'o 	}
3633819c4920STheodore Ts'o 
3634eb3544c6SLukas Czerner 	if (inode->i_size & (inode->i_sb->s_blocksize - 1))
3635eb3544c6SLukas Czerner 		ext4_block_truncate_page(handle, mapping, inode->i_size);
3636819c4920STheodore Ts'o 
3637819c4920STheodore Ts'o 	/*
3638819c4920STheodore Ts'o 	 * We add the inode to the orphan list, so that if this
3639819c4920STheodore Ts'o 	 * truncate spans multiple transactions, and we crash, we will
3640819c4920STheodore Ts'o 	 * resume the truncate when the filesystem recovers.  It also
3641819c4920STheodore Ts'o 	 * marks the inode dirty, to catch the new size.
3642819c4920STheodore Ts'o 	 *
3643819c4920STheodore Ts'o 	 * Implication: the file must always be in a sane, consistent
3644819c4920STheodore Ts'o 	 * truncatable state while each transaction commits.
3645819c4920STheodore Ts'o 	 */
3646819c4920STheodore Ts'o 	if (ext4_orphan_add(handle, inode))
3647819c4920STheodore Ts'o 		goto out_stop;
3648819c4920STheodore Ts'o 
3649819c4920STheodore Ts'o 	down_write(&EXT4_I(inode)->i_data_sem);
3650819c4920STheodore Ts'o 
3651819c4920STheodore Ts'o 	ext4_discard_preallocations(inode);
3652819c4920STheodore Ts'o 
3653819c4920STheodore Ts'o 	if (ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS))
3654819c4920STheodore Ts'o 		ext4_ext_truncate(handle, inode);
3655819c4920STheodore Ts'o 	else
3656819c4920STheodore Ts'o 		ext4_ind_truncate(handle, inode);
3657819c4920STheodore Ts'o 
3658819c4920STheodore Ts'o 	up_write(&ei->i_data_sem);
3659819c4920STheodore Ts'o 
3660819c4920STheodore Ts'o 	if (IS_SYNC(inode))
3661819c4920STheodore Ts'o 		ext4_handle_sync(handle);
3662819c4920STheodore Ts'o 
3663819c4920STheodore Ts'o out_stop:
3664819c4920STheodore Ts'o 	/*
3665819c4920STheodore Ts'o 	 * If this was a simple ftruncate() and the file will remain alive,
3666819c4920STheodore Ts'o 	 * then we need to clear up the orphan record which we created above.
3667819c4920STheodore Ts'o 	 * However, if this was a real unlink then we were called by
3668819c4920STheodore Ts'o 	 * ext4_delete_inode(), and we allow that function to clean up the
3669819c4920STheodore Ts'o 	 * orphan info for us.
3670819c4920STheodore Ts'o 	 */
3671819c4920STheodore Ts'o 	if (inode->i_nlink)
3672819c4920STheodore Ts'o 		ext4_orphan_del(handle, inode);
3673819c4920STheodore Ts'o 
3674819c4920STheodore Ts'o 	inode->i_mtime = inode->i_ctime = ext4_current_time(inode);
3675819c4920STheodore Ts'o 	ext4_mark_inode_dirty(handle, inode);
3676819c4920STheodore Ts'o 	ext4_journal_stop(handle);
3677a86c6181SAlex Tomas 
36780562e0baSJiaying Zhang 	trace_ext4_truncate_exit(inode);
3679ac27a0ecSDave Kleikamp }
3680ac27a0ecSDave Kleikamp 
3681ac27a0ecSDave Kleikamp /*
3682617ba13bSMingming Cao  * ext4_get_inode_loc returns with an extra refcount against the inode's
3683ac27a0ecSDave Kleikamp  * underlying buffer_head on success. If 'in_mem' is true, we have all
3684ac27a0ecSDave Kleikamp  * data in memory that is needed to recreate the on-disk version of this
3685ac27a0ecSDave Kleikamp  * inode.
3686ac27a0ecSDave Kleikamp  */
3687617ba13bSMingming Cao static int __ext4_get_inode_loc(struct inode *inode,
3688617ba13bSMingming Cao 				struct ext4_iloc *iloc, int in_mem)
3689ac27a0ecSDave Kleikamp {
3690240799cdSTheodore Ts'o 	struct ext4_group_desc	*gdp;
3691ac27a0ecSDave Kleikamp 	struct buffer_head	*bh;
3692240799cdSTheodore Ts'o 	struct super_block	*sb = inode->i_sb;
3693240799cdSTheodore Ts'o 	ext4_fsblk_t		block;
3694240799cdSTheodore Ts'o 	int			inodes_per_block, inode_offset;
3695ac27a0ecSDave Kleikamp 
36963a06d778SAneesh Kumar K.V 	iloc->bh = NULL;
3697240799cdSTheodore Ts'o 	if (!ext4_valid_inum(sb, inode->i_ino))
3698ac27a0ecSDave Kleikamp 		return -EIO;
3699ac27a0ecSDave Kleikamp 
3700240799cdSTheodore Ts'o 	iloc->block_group = (inode->i_ino - 1) / EXT4_INODES_PER_GROUP(sb);
3701240799cdSTheodore Ts'o 	gdp = ext4_get_group_desc(sb, iloc->block_group, NULL);
3702240799cdSTheodore Ts'o 	if (!gdp)
3703240799cdSTheodore Ts'o 		return -EIO;
3704240799cdSTheodore Ts'o 
3705240799cdSTheodore Ts'o 	/*
3706240799cdSTheodore Ts'o 	 * Figure out the offset within the block group inode table
3707240799cdSTheodore Ts'o 	 */
370800d09882STao Ma 	inodes_per_block = EXT4_SB(sb)->s_inodes_per_block;
3709240799cdSTheodore Ts'o 	inode_offset = ((inode->i_ino - 1) %
3710240799cdSTheodore Ts'o 			EXT4_INODES_PER_GROUP(sb));
3711240799cdSTheodore Ts'o 	block = ext4_inode_table(sb, gdp) + (inode_offset / inodes_per_block);
3712240799cdSTheodore Ts'o 	iloc->offset = (inode_offset % inodes_per_block) * EXT4_INODE_SIZE(sb);
3713240799cdSTheodore Ts'o 
3714240799cdSTheodore Ts'o 	bh = sb_getblk(sb, block);
3715aebf0243SWang Shilong 	if (unlikely(!bh))
3716860d21e2STheodore Ts'o 		return -ENOMEM;
3717ac27a0ecSDave Kleikamp 	if (!buffer_uptodate(bh)) {
3718ac27a0ecSDave Kleikamp 		lock_buffer(bh);
37199c83a923SHidehiro Kawai 
37209c83a923SHidehiro Kawai 		/*
37219c83a923SHidehiro Kawai 		 * If the buffer has the write error flag, we have failed
37229c83a923SHidehiro Kawai 		 * to write out another inode in the same block.  In this
37239c83a923SHidehiro Kawai 		 * case, we don't have to read the block because we may
37249c83a923SHidehiro Kawai 		 * read the old inode data successfully.
37259c83a923SHidehiro Kawai 		 */
37269c83a923SHidehiro Kawai 		if (buffer_write_io_error(bh) && !buffer_uptodate(bh))
37279c83a923SHidehiro Kawai 			set_buffer_uptodate(bh);
37289c83a923SHidehiro Kawai 
3729ac27a0ecSDave Kleikamp 		if (buffer_uptodate(bh)) {
3730ac27a0ecSDave Kleikamp 			/* someone brought it uptodate while we waited */
3731ac27a0ecSDave Kleikamp 			unlock_buffer(bh);
3732ac27a0ecSDave Kleikamp 			goto has_buffer;
3733ac27a0ecSDave Kleikamp 		}
3734ac27a0ecSDave Kleikamp 
3735ac27a0ecSDave Kleikamp 		/*
3736ac27a0ecSDave Kleikamp 		 * If we have all information of the inode in memory and this
3737ac27a0ecSDave Kleikamp 		 * is the only valid inode in the block, we need not read the
3738ac27a0ecSDave Kleikamp 		 * block.
3739ac27a0ecSDave Kleikamp 		 */
3740ac27a0ecSDave Kleikamp 		if (in_mem) {
3741ac27a0ecSDave Kleikamp 			struct buffer_head *bitmap_bh;
3742240799cdSTheodore Ts'o 			int i, start;
3743ac27a0ecSDave Kleikamp 
3744240799cdSTheodore Ts'o 			start = inode_offset & ~(inodes_per_block - 1);
3745ac27a0ecSDave Kleikamp 
3746ac27a0ecSDave Kleikamp 			/* Is the inode bitmap in cache? */
3747240799cdSTheodore Ts'o 			bitmap_bh = sb_getblk(sb, ext4_inode_bitmap(sb, gdp));
3748aebf0243SWang Shilong 			if (unlikely(!bitmap_bh))
3749ac27a0ecSDave Kleikamp 				goto make_io;
3750ac27a0ecSDave Kleikamp 
3751ac27a0ecSDave Kleikamp 			/*
3752ac27a0ecSDave Kleikamp 			 * If the inode bitmap isn't in cache then the
3753ac27a0ecSDave Kleikamp 			 * optimisation may end up performing two reads instead
3754ac27a0ecSDave Kleikamp 			 * of one, so skip it.
3755ac27a0ecSDave Kleikamp 			 */
3756ac27a0ecSDave Kleikamp 			if (!buffer_uptodate(bitmap_bh)) {
3757ac27a0ecSDave Kleikamp 				brelse(bitmap_bh);
3758ac27a0ecSDave Kleikamp 				goto make_io;
3759ac27a0ecSDave Kleikamp 			}
3760240799cdSTheodore Ts'o 			for (i = start; i < start + inodes_per_block; i++) {
3761ac27a0ecSDave Kleikamp 				if (i == inode_offset)
3762ac27a0ecSDave Kleikamp 					continue;
3763617ba13bSMingming Cao 				if (ext4_test_bit(i, bitmap_bh->b_data))
3764ac27a0ecSDave Kleikamp 					break;
3765ac27a0ecSDave Kleikamp 			}
3766ac27a0ecSDave Kleikamp 			brelse(bitmap_bh);
3767240799cdSTheodore Ts'o 			if (i == start + inodes_per_block) {
3768ac27a0ecSDave Kleikamp 				/* all other inodes are free, so skip I/O */
3769ac27a0ecSDave Kleikamp 				memset(bh->b_data, 0, bh->b_size);
3770ac27a0ecSDave Kleikamp 				set_buffer_uptodate(bh);
3771ac27a0ecSDave Kleikamp 				unlock_buffer(bh);
3772ac27a0ecSDave Kleikamp 				goto has_buffer;
3773ac27a0ecSDave Kleikamp 			}
3774ac27a0ecSDave Kleikamp 		}
3775ac27a0ecSDave Kleikamp 
3776ac27a0ecSDave Kleikamp make_io:
3777ac27a0ecSDave Kleikamp 		/*
3778240799cdSTheodore Ts'o 		 * If we need to do any I/O, try to pre-readahead extra
3779240799cdSTheodore Ts'o 		 * blocks from the inode table.
3780240799cdSTheodore Ts'o 		 */
3781240799cdSTheodore Ts'o 		if (EXT4_SB(sb)->s_inode_readahead_blks) {
3782240799cdSTheodore Ts'o 			ext4_fsblk_t b, end, table;
3783240799cdSTheodore Ts'o 			unsigned num;
37840d606e2cSTheodore Ts'o 			__u32 ra_blks = EXT4_SB(sb)->s_inode_readahead_blks;
3785240799cdSTheodore Ts'o 
3786240799cdSTheodore Ts'o 			table = ext4_inode_table(sb, gdp);
3787b713a5ecSTheodore Ts'o 			/* s_inode_readahead_blks is always a power of 2 */
37880d606e2cSTheodore Ts'o 			b = block & ~((ext4_fsblk_t) ra_blks - 1);
3789240799cdSTheodore Ts'o 			if (table > b)
3790240799cdSTheodore Ts'o 				b = table;
37910d606e2cSTheodore Ts'o 			end = b + ra_blks;
3792240799cdSTheodore Ts'o 			num = EXT4_INODES_PER_GROUP(sb);
3793feb0ab32SDarrick J. Wong 			if (ext4_has_group_desc_csum(sb))
3794560671a0SAneesh Kumar K.V 				num -= ext4_itable_unused_count(sb, gdp);
3795240799cdSTheodore Ts'o 			table += num / inodes_per_block;
3796240799cdSTheodore Ts'o 			if (end > table)
3797240799cdSTheodore Ts'o 				end = table;
3798240799cdSTheodore Ts'o 			while (b <= end)
3799240799cdSTheodore Ts'o 				sb_breadahead(sb, b++);
3800240799cdSTheodore Ts'o 		}
3801240799cdSTheodore Ts'o 
3802240799cdSTheodore Ts'o 		/*
3803ac27a0ecSDave Kleikamp 		 * There are other valid inodes in the buffer, this inode
3804ac27a0ecSDave Kleikamp 		 * has in-inode xattrs, or we don't have this inode in memory.
3805ac27a0ecSDave Kleikamp 		 * Read the block from disk.
3806ac27a0ecSDave Kleikamp 		 */
38070562e0baSJiaying Zhang 		trace_ext4_load_inode(inode);
3808ac27a0ecSDave Kleikamp 		get_bh(bh);
3809ac27a0ecSDave Kleikamp 		bh->b_end_io = end_buffer_read_sync;
381065299a3bSChristoph Hellwig 		submit_bh(READ | REQ_META | REQ_PRIO, bh);
3811ac27a0ecSDave Kleikamp 		wait_on_buffer(bh);
3812ac27a0ecSDave Kleikamp 		if (!buffer_uptodate(bh)) {
3813c398eda0STheodore Ts'o 			EXT4_ERROR_INODE_BLOCK(inode, block,
3814c398eda0STheodore Ts'o 					       "unable to read itable block");
3815ac27a0ecSDave Kleikamp 			brelse(bh);
3816ac27a0ecSDave Kleikamp 			return -EIO;
3817ac27a0ecSDave Kleikamp 		}
3818ac27a0ecSDave Kleikamp 	}
3819ac27a0ecSDave Kleikamp has_buffer:
3820ac27a0ecSDave Kleikamp 	iloc->bh = bh;
3821ac27a0ecSDave Kleikamp 	return 0;
3822ac27a0ecSDave Kleikamp }
3823ac27a0ecSDave Kleikamp 
3824617ba13bSMingming Cao int ext4_get_inode_loc(struct inode *inode, struct ext4_iloc *iloc)
3825ac27a0ecSDave Kleikamp {
3826ac27a0ecSDave Kleikamp 	/* We have all inode data except xattrs in memory here. */
3827617ba13bSMingming Cao 	return __ext4_get_inode_loc(inode, iloc,
382819f5fb7aSTheodore Ts'o 		!ext4_test_inode_state(inode, EXT4_STATE_XATTR));
3829ac27a0ecSDave Kleikamp }
3830ac27a0ecSDave Kleikamp 
3831617ba13bSMingming Cao void ext4_set_inode_flags(struct inode *inode)
3832ac27a0ecSDave Kleikamp {
3833617ba13bSMingming Cao 	unsigned int flags = EXT4_I(inode)->i_flags;
383400a1a053STheodore Ts'o 	unsigned int new_fl = 0;
3835ac27a0ecSDave Kleikamp 
3836617ba13bSMingming Cao 	if (flags & EXT4_SYNC_FL)
383700a1a053STheodore Ts'o 		new_fl |= S_SYNC;
3838617ba13bSMingming Cao 	if (flags & EXT4_APPEND_FL)
383900a1a053STheodore Ts'o 		new_fl |= S_APPEND;
3840617ba13bSMingming Cao 	if (flags & EXT4_IMMUTABLE_FL)
384100a1a053STheodore Ts'o 		new_fl |= S_IMMUTABLE;
3842617ba13bSMingming Cao 	if (flags & EXT4_NOATIME_FL)
384300a1a053STheodore Ts'o 		new_fl |= S_NOATIME;
3844617ba13bSMingming Cao 	if (flags & EXT4_DIRSYNC_FL)
384500a1a053STheodore Ts'o 		new_fl |= S_DIRSYNC;
38465f16f322STheodore Ts'o 	inode_set_flags(inode, new_fl,
38475f16f322STheodore Ts'o 			S_SYNC|S_APPEND|S_IMMUTABLE|S_NOATIME|S_DIRSYNC);
3848ac27a0ecSDave Kleikamp }
3849ac27a0ecSDave Kleikamp 
3850ff9ddf7eSJan Kara /* Propagate flags from i_flags to EXT4_I(inode)->i_flags */
3851ff9ddf7eSJan Kara void ext4_get_inode_flags(struct ext4_inode_info *ei)
3852ff9ddf7eSJan Kara {
385384a8dce2SDmitry Monakhov 	unsigned int vfs_fl;
385484a8dce2SDmitry Monakhov 	unsigned long old_fl, new_fl;
3855ff9ddf7eSJan Kara 
385684a8dce2SDmitry Monakhov 	do {
385784a8dce2SDmitry Monakhov 		vfs_fl = ei->vfs_inode.i_flags;
385884a8dce2SDmitry Monakhov 		old_fl = ei->i_flags;
385984a8dce2SDmitry Monakhov 		new_fl = old_fl & ~(EXT4_SYNC_FL|EXT4_APPEND_FL|
386084a8dce2SDmitry Monakhov 				EXT4_IMMUTABLE_FL|EXT4_NOATIME_FL|
386184a8dce2SDmitry Monakhov 				EXT4_DIRSYNC_FL);
386284a8dce2SDmitry Monakhov 		if (vfs_fl & S_SYNC)
386384a8dce2SDmitry Monakhov 			new_fl |= EXT4_SYNC_FL;
386484a8dce2SDmitry Monakhov 		if (vfs_fl & S_APPEND)
386584a8dce2SDmitry Monakhov 			new_fl |= EXT4_APPEND_FL;
386684a8dce2SDmitry Monakhov 		if (vfs_fl & S_IMMUTABLE)
386784a8dce2SDmitry Monakhov 			new_fl |= EXT4_IMMUTABLE_FL;
386884a8dce2SDmitry Monakhov 		if (vfs_fl & S_NOATIME)
386984a8dce2SDmitry Monakhov 			new_fl |= EXT4_NOATIME_FL;
387084a8dce2SDmitry Monakhov 		if (vfs_fl & S_DIRSYNC)
387184a8dce2SDmitry Monakhov 			new_fl |= EXT4_DIRSYNC_FL;
387284a8dce2SDmitry Monakhov 	} while (cmpxchg(&ei->i_flags, old_fl, new_fl) != old_fl);
3873ff9ddf7eSJan Kara }
3874de9a55b8STheodore Ts'o 
38750fc1b451SAneesh Kumar K.V static blkcnt_t ext4_inode_blocks(struct ext4_inode *raw_inode,
38760fc1b451SAneesh Kumar K.V 				  struct ext4_inode_info *ei)
38770fc1b451SAneesh Kumar K.V {
38780fc1b451SAneesh Kumar K.V 	blkcnt_t i_blocks ;
38798180a562SAneesh Kumar K.V 	struct inode *inode = &(ei->vfs_inode);
38808180a562SAneesh Kumar K.V 	struct super_block *sb = inode->i_sb;
38810fc1b451SAneesh Kumar K.V 
38820fc1b451SAneesh Kumar K.V 	if (EXT4_HAS_RO_COMPAT_FEATURE(sb,
38830fc1b451SAneesh Kumar K.V 				EXT4_FEATURE_RO_COMPAT_HUGE_FILE)) {
38840fc1b451SAneesh Kumar K.V 		/* we are using combined 48 bit field */
38850fc1b451SAneesh Kumar K.V 		i_blocks = ((u64)le16_to_cpu(raw_inode->i_blocks_high)) << 32 |
38860fc1b451SAneesh Kumar K.V 					le32_to_cpu(raw_inode->i_blocks_lo);
388707a03824STheodore Ts'o 		if (ext4_test_inode_flag(inode, EXT4_INODE_HUGE_FILE)) {
38888180a562SAneesh Kumar K.V 			/* i_blocks represent file system block size */
38898180a562SAneesh Kumar K.V 			return i_blocks  << (inode->i_blkbits - 9);
38908180a562SAneesh Kumar K.V 		} else {
38910fc1b451SAneesh Kumar K.V 			return i_blocks;
38928180a562SAneesh Kumar K.V 		}
38930fc1b451SAneesh Kumar K.V 	} else {
38940fc1b451SAneesh Kumar K.V 		return le32_to_cpu(raw_inode->i_blocks_lo);
38950fc1b451SAneesh Kumar K.V 	}
38960fc1b451SAneesh Kumar K.V }
3897ff9ddf7eSJan Kara 
3898152a7b0aSTao Ma static inline void ext4_iget_extra_inode(struct inode *inode,
3899152a7b0aSTao Ma 					 struct ext4_inode *raw_inode,
3900152a7b0aSTao Ma 					 struct ext4_inode_info *ei)
3901152a7b0aSTao Ma {
3902152a7b0aSTao Ma 	__le32 *magic = (void *)raw_inode +
3903152a7b0aSTao Ma 			EXT4_GOOD_OLD_INODE_SIZE + ei->i_extra_isize;
390467cf5b09STao Ma 	if (*magic == cpu_to_le32(EXT4_XATTR_MAGIC)) {
3905152a7b0aSTao Ma 		ext4_set_inode_state(inode, EXT4_STATE_XATTR);
390667cf5b09STao Ma 		ext4_find_inline_data_nolock(inode);
3907f19d5870STao Ma 	} else
3908f19d5870STao Ma 		EXT4_I(inode)->i_inline_off = 0;
3909152a7b0aSTao Ma }
3910152a7b0aSTao Ma 
39111d1fe1eeSDavid Howells struct inode *ext4_iget(struct super_block *sb, unsigned long ino)
3912ac27a0ecSDave Kleikamp {
3913617ba13bSMingming Cao 	struct ext4_iloc iloc;
3914617ba13bSMingming Cao 	struct ext4_inode *raw_inode;
39151d1fe1eeSDavid Howells 	struct ext4_inode_info *ei;
39161d1fe1eeSDavid Howells 	struct inode *inode;
3917b436b9beSJan Kara 	journal_t *journal = EXT4_SB(sb)->s_journal;
39181d1fe1eeSDavid Howells 	long ret;
3919ac27a0ecSDave Kleikamp 	int block;
392008cefc7aSEric W. Biederman 	uid_t i_uid;
392108cefc7aSEric W. Biederman 	gid_t i_gid;
3922ac27a0ecSDave Kleikamp 
39231d1fe1eeSDavid Howells 	inode = iget_locked(sb, ino);
39241d1fe1eeSDavid Howells 	if (!inode)
39251d1fe1eeSDavid Howells 		return ERR_PTR(-ENOMEM);
39261d1fe1eeSDavid Howells 	if (!(inode->i_state & I_NEW))
39271d1fe1eeSDavid Howells 		return inode;
39281d1fe1eeSDavid Howells 
39291d1fe1eeSDavid Howells 	ei = EXT4_I(inode);
39307dc57615SPeter Huewe 	iloc.bh = NULL;
3931ac27a0ecSDave Kleikamp 
39321d1fe1eeSDavid Howells 	ret = __ext4_get_inode_loc(inode, &iloc, 0);
39331d1fe1eeSDavid Howells 	if (ret < 0)
3934ac27a0ecSDave Kleikamp 		goto bad_inode;
3935617ba13bSMingming Cao 	raw_inode = ext4_raw_inode(&iloc);
3936814525f4SDarrick J. Wong 
3937814525f4SDarrick J. Wong 	if (EXT4_INODE_SIZE(inode->i_sb) > EXT4_GOOD_OLD_INODE_SIZE) {
3938814525f4SDarrick J. Wong 		ei->i_extra_isize = le16_to_cpu(raw_inode->i_extra_isize);
3939814525f4SDarrick J. Wong 		if (EXT4_GOOD_OLD_INODE_SIZE + ei->i_extra_isize >
3940814525f4SDarrick J. Wong 		    EXT4_INODE_SIZE(inode->i_sb)) {
3941814525f4SDarrick J. Wong 			EXT4_ERROR_INODE(inode, "bad extra_isize (%u != %u)",
3942814525f4SDarrick J. Wong 				EXT4_GOOD_OLD_INODE_SIZE + ei->i_extra_isize,
3943814525f4SDarrick J. Wong 				EXT4_INODE_SIZE(inode->i_sb));
3944814525f4SDarrick J. Wong 			ret = -EIO;
3945814525f4SDarrick J. Wong 			goto bad_inode;
3946814525f4SDarrick J. Wong 		}
3947814525f4SDarrick J. Wong 	} else
3948814525f4SDarrick J. Wong 		ei->i_extra_isize = 0;
3949814525f4SDarrick J. Wong 
3950814525f4SDarrick J. Wong 	/* Precompute checksum seed for inode metadata */
3951814525f4SDarrick J. Wong 	if (EXT4_HAS_RO_COMPAT_FEATURE(sb,
3952814525f4SDarrick J. Wong 			EXT4_FEATURE_RO_COMPAT_METADATA_CSUM)) {
3953814525f4SDarrick J. Wong 		struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb);
3954814525f4SDarrick J. Wong 		__u32 csum;
3955814525f4SDarrick J. Wong 		__le32 inum = cpu_to_le32(inode->i_ino);
3956814525f4SDarrick J. Wong 		__le32 gen = raw_inode->i_generation;
3957814525f4SDarrick J. Wong 		csum = ext4_chksum(sbi, sbi->s_csum_seed, (__u8 *)&inum,
3958814525f4SDarrick J. Wong 				   sizeof(inum));
3959814525f4SDarrick J. Wong 		ei->i_csum_seed = ext4_chksum(sbi, csum, (__u8 *)&gen,
3960814525f4SDarrick J. Wong 					      sizeof(gen));
3961814525f4SDarrick J. Wong 	}
3962814525f4SDarrick J. Wong 
3963814525f4SDarrick J. Wong 	if (!ext4_inode_csum_verify(inode, raw_inode, ei)) {
3964814525f4SDarrick J. Wong 		EXT4_ERROR_INODE(inode, "checksum invalid");
3965814525f4SDarrick J. Wong 		ret = -EIO;
3966814525f4SDarrick J. Wong 		goto bad_inode;
3967814525f4SDarrick J. Wong 	}
3968814525f4SDarrick J. Wong 
3969ac27a0ecSDave Kleikamp 	inode->i_mode = le16_to_cpu(raw_inode->i_mode);
397008cefc7aSEric W. Biederman 	i_uid = (uid_t)le16_to_cpu(raw_inode->i_uid_low);
397108cefc7aSEric W. Biederman 	i_gid = (gid_t)le16_to_cpu(raw_inode->i_gid_low);
3972ac27a0ecSDave Kleikamp 	if (!(test_opt(inode->i_sb, NO_UID32))) {
397308cefc7aSEric W. Biederman 		i_uid |= le16_to_cpu(raw_inode->i_uid_high) << 16;
397408cefc7aSEric W. Biederman 		i_gid |= le16_to_cpu(raw_inode->i_gid_high) << 16;
3975ac27a0ecSDave Kleikamp 	}
397608cefc7aSEric W. Biederman 	i_uid_write(inode, i_uid);
397708cefc7aSEric W. Biederman 	i_gid_write(inode, i_gid);
3978bfe86848SMiklos Szeredi 	set_nlink(inode, le16_to_cpu(raw_inode->i_links_count));
3979ac27a0ecSDave Kleikamp 
3980353eb83cSTheodore Ts'o 	ext4_clear_state_flags(ei);	/* Only relevant on 32-bit archs */
398167cf5b09STao Ma 	ei->i_inline_off = 0;
3982ac27a0ecSDave Kleikamp 	ei->i_dir_start_lookup = 0;
3983ac27a0ecSDave Kleikamp 	ei->i_dtime = le32_to_cpu(raw_inode->i_dtime);
3984ac27a0ecSDave Kleikamp 	/* We now have enough fields to check if the inode was active or not.
3985ac27a0ecSDave Kleikamp 	 * This is needed because nfsd might try to access dead inodes
3986ac27a0ecSDave Kleikamp 	 * the test is that same one that e2fsck uses
3987ac27a0ecSDave Kleikamp 	 * NeilBrown 1999oct15
3988ac27a0ecSDave Kleikamp 	 */
3989ac27a0ecSDave Kleikamp 	if (inode->i_nlink == 0) {
3990393d1d1dSDr. Tilmann Bubeck 		if ((inode->i_mode == 0 ||
3991393d1d1dSDr. Tilmann Bubeck 		     !(EXT4_SB(inode->i_sb)->s_mount_state & EXT4_ORPHAN_FS)) &&
3992393d1d1dSDr. Tilmann Bubeck 		    ino != EXT4_BOOT_LOADER_INO) {
3993ac27a0ecSDave Kleikamp 			/* this inode is deleted */
39941d1fe1eeSDavid Howells 			ret = -ESTALE;
3995ac27a0ecSDave Kleikamp 			goto bad_inode;
3996ac27a0ecSDave Kleikamp 		}
3997ac27a0ecSDave Kleikamp 		/* The only unlinked inodes we let through here have
3998ac27a0ecSDave Kleikamp 		 * valid i_mode and are being read by the orphan
3999ac27a0ecSDave Kleikamp 		 * recovery code: that's fine, we're about to complete
4000393d1d1dSDr. Tilmann Bubeck 		 * the process of deleting those.
4001393d1d1dSDr. Tilmann Bubeck 		 * OR it is the EXT4_BOOT_LOADER_INO which is
4002393d1d1dSDr. Tilmann Bubeck 		 * not initialized on a new filesystem. */
4003ac27a0ecSDave Kleikamp 	}
4004ac27a0ecSDave Kleikamp 	ei->i_flags = le32_to_cpu(raw_inode->i_flags);
40050fc1b451SAneesh Kumar K.V 	inode->i_blocks = ext4_inode_blocks(raw_inode, ei);
40067973c0c1SAneesh Kumar K.V 	ei->i_file_acl = le32_to_cpu(raw_inode->i_file_acl_lo);
4007a9e81742STheodore Ts'o 	if (EXT4_HAS_INCOMPAT_FEATURE(sb, EXT4_FEATURE_INCOMPAT_64BIT))
4008a1ddeb7eSBadari Pulavarty 		ei->i_file_acl |=
4009a1ddeb7eSBadari Pulavarty 			((__u64)le16_to_cpu(raw_inode->i_file_acl_high)) << 32;
4010a48380f7SAneesh Kumar K.V 	inode->i_size = ext4_isize(raw_inode);
4011ac27a0ecSDave Kleikamp 	ei->i_disksize = inode->i_size;
4012a9e7f447SDmitry Monakhov #ifdef CONFIG_QUOTA
4013a9e7f447SDmitry Monakhov 	ei->i_reserved_quota = 0;
4014a9e7f447SDmitry Monakhov #endif
4015ac27a0ecSDave Kleikamp 	inode->i_generation = le32_to_cpu(raw_inode->i_generation);
4016ac27a0ecSDave Kleikamp 	ei->i_block_group = iloc.block_group;
4017a4912123STheodore Ts'o 	ei->i_last_alloc_group = ~0;
4018ac27a0ecSDave Kleikamp 	/*
4019ac27a0ecSDave Kleikamp 	 * NOTE! The in-memory inode i_data array is in little-endian order
4020ac27a0ecSDave Kleikamp 	 * even on big-endian machines: we do NOT byteswap the block numbers!
4021ac27a0ecSDave Kleikamp 	 */
4022617ba13bSMingming Cao 	for (block = 0; block < EXT4_N_BLOCKS; block++)
4023ac27a0ecSDave Kleikamp 		ei->i_data[block] = raw_inode->i_block[block];
4024ac27a0ecSDave Kleikamp 	INIT_LIST_HEAD(&ei->i_orphan);
4025ac27a0ecSDave Kleikamp 
4026b436b9beSJan Kara 	/*
4027b436b9beSJan Kara 	 * Set transaction id's of transactions that have to be committed
4028b436b9beSJan Kara 	 * to finish f[data]sync. We set them to currently running transaction
4029b436b9beSJan Kara 	 * as we cannot be sure that the inode or some of its metadata isn't
4030b436b9beSJan Kara 	 * part of the transaction - the inode could have been reclaimed and
4031b436b9beSJan Kara 	 * now it is reread from disk.
4032b436b9beSJan Kara 	 */
4033b436b9beSJan Kara 	if (journal) {
4034b436b9beSJan Kara 		transaction_t *transaction;
4035b436b9beSJan Kara 		tid_t tid;
4036b436b9beSJan Kara 
4037a931da6aSTheodore Ts'o 		read_lock(&journal->j_state_lock);
4038b436b9beSJan Kara 		if (journal->j_running_transaction)
4039b436b9beSJan Kara 			transaction = journal->j_running_transaction;
4040b436b9beSJan Kara 		else
4041b436b9beSJan Kara 			transaction = journal->j_committing_transaction;
4042b436b9beSJan Kara 		if (transaction)
4043b436b9beSJan Kara 			tid = transaction->t_tid;
4044b436b9beSJan Kara 		else
4045b436b9beSJan Kara 			tid = journal->j_commit_sequence;
4046a931da6aSTheodore Ts'o 		read_unlock(&journal->j_state_lock);
4047b436b9beSJan Kara 		ei->i_sync_tid = tid;
4048b436b9beSJan Kara 		ei->i_datasync_tid = tid;
4049b436b9beSJan Kara 	}
4050b436b9beSJan Kara 
40510040d987SEric Sandeen 	if (EXT4_INODE_SIZE(inode->i_sb) > EXT4_GOOD_OLD_INODE_SIZE) {
4052ac27a0ecSDave Kleikamp 		if (ei->i_extra_isize == 0) {
4053ac27a0ecSDave Kleikamp 			/* The extra space is currently unused. Use it. */
4054617ba13bSMingming Cao 			ei->i_extra_isize = sizeof(struct ext4_inode) -
4055617ba13bSMingming Cao 					    EXT4_GOOD_OLD_INODE_SIZE;
4056ac27a0ecSDave Kleikamp 		} else {
4057152a7b0aSTao Ma 			ext4_iget_extra_inode(inode, raw_inode, ei);
4058ac27a0ecSDave Kleikamp 		}
4059814525f4SDarrick J. Wong 	}
4060ac27a0ecSDave Kleikamp 
4061ef7f3835SKalpak Shah 	EXT4_INODE_GET_XTIME(i_ctime, inode, raw_inode);
4062ef7f3835SKalpak Shah 	EXT4_INODE_GET_XTIME(i_mtime, inode, raw_inode);
4063ef7f3835SKalpak Shah 	EXT4_INODE_GET_XTIME(i_atime, inode, raw_inode);
4064ef7f3835SKalpak Shah 	EXT4_EINODE_GET_XTIME(i_crtime, ei, raw_inode);
4065ef7f3835SKalpak Shah 
4066ed3654ebSTheodore Ts'o 	if (likely(!test_opt2(inode->i_sb, HURD_COMPAT))) {
406725ec56b5SJean Noel Cordenner 		inode->i_version = le32_to_cpu(raw_inode->i_disk_version);
406825ec56b5SJean Noel Cordenner 		if (EXT4_INODE_SIZE(inode->i_sb) > EXT4_GOOD_OLD_INODE_SIZE) {
406925ec56b5SJean Noel Cordenner 			if (EXT4_FITS_IN_INODE(raw_inode, ei, i_version_hi))
407025ec56b5SJean Noel Cordenner 				inode->i_version |=
407125ec56b5SJean Noel Cordenner 		    (__u64)(le32_to_cpu(raw_inode->i_version_hi)) << 32;
407225ec56b5SJean Noel Cordenner 		}
4073c4f65706STheodore Ts'o 	}
407425ec56b5SJean Noel Cordenner 
4075c4b5a614STheodore Ts'o 	ret = 0;
4076485c26ecSTheodore Ts'o 	if (ei->i_file_acl &&
40771032988cSTheodore Ts'o 	    !ext4_data_block_valid(EXT4_SB(sb), ei->i_file_acl, 1)) {
407824676da4STheodore Ts'o 		EXT4_ERROR_INODE(inode, "bad extended attribute block %llu",
407924676da4STheodore Ts'o 				 ei->i_file_acl);
4080485c26ecSTheodore Ts'o 		ret = -EIO;
4081485c26ecSTheodore Ts'o 		goto bad_inode;
4082f19d5870STao Ma 	} else if (!ext4_has_inline_data(inode)) {
4083f19d5870STao Ma 		if (ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS)) {
4084f19d5870STao Ma 			if ((S_ISREG(inode->i_mode) || S_ISDIR(inode->i_mode) ||
4085c4b5a614STheodore Ts'o 			    (S_ISLNK(inode->i_mode) &&
4086f19d5870STao Ma 			     !ext4_inode_is_fast_symlink(inode))))
40877a262f7cSAneesh Kumar K.V 				/* Validate extent which is part of inode */
40887a262f7cSAneesh Kumar K.V 				ret = ext4_ext_check_inode(inode);
4089fe2c8191SThiemo Nagel 		} else if (S_ISREG(inode->i_mode) || S_ISDIR(inode->i_mode) ||
4090fe2c8191SThiemo Nagel 			   (S_ISLNK(inode->i_mode) &&
4091fe2c8191SThiemo Nagel 			    !ext4_inode_is_fast_symlink(inode))) {
4092fe2c8191SThiemo Nagel 			/* Validate block references which are part of inode */
40931f7d1e77STheodore Ts'o 			ret = ext4_ind_check_inode(inode);
4094fe2c8191SThiemo Nagel 		}
4095f19d5870STao Ma 	}
4096567f3e9aSTheodore Ts'o 	if (ret)
40977a262f7cSAneesh Kumar K.V 		goto bad_inode;
40987a262f7cSAneesh Kumar K.V 
4099ac27a0ecSDave Kleikamp 	if (S_ISREG(inode->i_mode)) {
4100617ba13bSMingming Cao 		inode->i_op = &ext4_file_inode_operations;
4101617ba13bSMingming Cao 		inode->i_fop = &ext4_file_operations;
4102617ba13bSMingming Cao 		ext4_set_aops(inode);
4103ac27a0ecSDave Kleikamp 	} else if (S_ISDIR(inode->i_mode)) {
4104617ba13bSMingming Cao 		inode->i_op = &ext4_dir_inode_operations;
4105617ba13bSMingming Cao 		inode->i_fop = &ext4_dir_operations;
4106ac27a0ecSDave Kleikamp 	} else if (S_ISLNK(inode->i_mode)) {
4107e83c1397SDuane Griffin 		if (ext4_inode_is_fast_symlink(inode)) {
4108617ba13bSMingming Cao 			inode->i_op = &ext4_fast_symlink_inode_operations;
4109e83c1397SDuane Griffin 			nd_terminate_link(ei->i_data, inode->i_size,
4110e83c1397SDuane Griffin 				sizeof(ei->i_data) - 1);
4111e83c1397SDuane Griffin 		} else {
4112617ba13bSMingming Cao 			inode->i_op = &ext4_symlink_inode_operations;
4113617ba13bSMingming Cao 			ext4_set_aops(inode);
4114ac27a0ecSDave Kleikamp 		}
4115563bdd61STheodore Ts'o 	} else if (S_ISCHR(inode->i_mode) || S_ISBLK(inode->i_mode) ||
4116563bdd61STheodore Ts'o 	      S_ISFIFO(inode->i_mode) || S_ISSOCK(inode->i_mode)) {
4117617ba13bSMingming Cao 		inode->i_op = &ext4_special_inode_operations;
4118ac27a0ecSDave Kleikamp 		if (raw_inode->i_block[0])
4119ac27a0ecSDave Kleikamp 			init_special_inode(inode, inode->i_mode,
4120ac27a0ecSDave Kleikamp 			   old_decode_dev(le32_to_cpu(raw_inode->i_block[0])));
4121ac27a0ecSDave Kleikamp 		else
4122ac27a0ecSDave Kleikamp 			init_special_inode(inode, inode->i_mode,
4123ac27a0ecSDave Kleikamp 			   new_decode_dev(le32_to_cpu(raw_inode->i_block[1])));
4124393d1d1dSDr. Tilmann Bubeck 	} else if (ino == EXT4_BOOT_LOADER_INO) {
4125393d1d1dSDr. Tilmann Bubeck 		make_bad_inode(inode);
4126563bdd61STheodore Ts'o 	} else {
4127563bdd61STheodore Ts'o 		ret = -EIO;
412824676da4STheodore Ts'o 		EXT4_ERROR_INODE(inode, "bogus i_mode (%o)", inode->i_mode);
4129563bdd61STheodore Ts'o 		goto bad_inode;
4130ac27a0ecSDave Kleikamp 	}
4131ac27a0ecSDave Kleikamp 	brelse(iloc.bh);
4132617ba13bSMingming Cao 	ext4_set_inode_flags(inode);
41331d1fe1eeSDavid Howells 	unlock_new_inode(inode);
41341d1fe1eeSDavid Howells 	return inode;
4135ac27a0ecSDave Kleikamp 
4136ac27a0ecSDave Kleikamp bad_inode:
4137567f3e9aSTheodore Ts'o 	brelse(iloc.bh);
41381d1fe1eeSDavid Howells 	iget_failed(inode);
41391d1fe1eeSDavid Howells 	return ERR_PTR(ret);
4140ac27a0ecSDave Kleikamp }
4141ac27a0ecSDave Kleikamp 
41420fc1b451SAneesh Kumar K.V static int ext4_inode_blocks_set(handle_t *handle,
41430fc1b451SAneesh Kumar K.V 				struct ext4_inode *raw_inode,
41440fc1b451SAneesh Kumar K.V 				struct ext4_inode_info *ei)
41450fc1b451SAneesh Kumar K.V {
41460fc1b451SAneesh Kumar K.V 	struct inode *inode = &(ei->vfs_inode);
41470fc1b451SAneesh Kumar K.V 	u64 i_blocks = inode->i_blocks;
41480fc1b451SAneesh Kumar K.V 	struct super_block *sb = inode->i_sb;
41490fc1b451SAneesh Kumar K.V 
41500fc1b451SAneesh Kumar K.V 	if (i_blocks <= ~0U) {
41510fc1b451SAneesh Kumar K.V 		/*
41524907cb7bSAnatol Pomozov 		 * i_blocks can be represented in a 32 bit variable
41530fc1b451SAneesh Kumar K.V 		 * as multiple of 512 bytes
41540fc1b451SAneesh Kumar K.V 		 */
41558180a562SAneesh Kumar K.V 		raw_inode->i_blocks_lo   = cpu_to_le32(i_blocks);
41560fc1b451SAneesh Kumar K.V 		raw_inode->i_blocks_high = 0;
415784a8dce2SDmitry Monakhov 		ext4_clear_inode_flag(inode, EXT4_INODE_HUGE_FILE);
4158f287a1a5STheodore Ts'o 		return 0;
4159f287a1a5STheodore Ts'o 	}
4160f287a1a5STheodore Ts'o 	if (!EXT4_HAS_RO_COMPAT_FEATURE(sb, EXT4_FEATURE_RO_COMPAT_HUGE_FILE))
4161f287a1a5STheodore Ts'o 		return -EFBIG;
4162f287a1a5STheodore Ts'o 
4163f287a1a5STheodore Ts'o 	if (i_blocks <= 0xffffffffffffULL) {
41640fc1b451SAneesh Kumar K.V 		/*
41650fc1b451SAneesh Kumar K.V 		 * i_blocks can be represented in a 48 bit variable
41660fc1b451SAneesh Kumar K.V 		 * as multiple of 512 bytes
41670fc1b451SAneesh Kumar K.V 		 */
41688180a562SAneesh Kumar K.V 		raw_inode->i_blocks_lo   = cpu_to_le32(i_blocks);
41690fc1b451SAneesh Kumar K.V 		raw_inode->i_blocks_high = cpu_to_le16(i_blocks >> 32);
417084a8dce2SDmitry Monakhov 		ext4_clear_inode_flag(inode, EXT4_INODE_HUGE_FILE);
41710fc1b451SAneesh Kumar K.V 	} else {
417284a8dce2SDmitry Monakhov 		ext4_set_inode_flag(inode, EXT4_INODE_HUGE_FILE);
41738180a562SAneesh Kumar K.V 		/* i_block is stored in file system block size */
41748180a562SAneesh Kumar K.V 		i_blocks = i_blocks >> (inode->i_blkbits - 9);
41758180a562SAneesh Kumar K.V 		raw_inode->i_blocks_lo   = cpu_to_le32(i_blocks);
41768180a562SAneesh Kumar K.V 		raw_inode->i_blocks_high = cpu_to_le16(i_blocks >> 32);
41770fc1b451SAneesh Kumar K.V 	}
4178f287a1a5STheodore Ts'o 	return 0;
41790fc1b451SAneesh Kumar K.V }
41800fc1b451SAneesh Kumar K.V 
4181ac27a0ecSDave Kleikamp /*
4182ac27a0ecSDave Kleikamp  * Post the struct inode info into an on-disk inode location in the
4183ac27a0ecSDave Kleikamp  * buffer-cache.  This gobbles the caller's reference to the
4184ac27a0ecSDave Kleikamp  * buffer_head in the inode location struct.
4185ac27a0ecSDave Kleikamp  *
4186ac27a0ecSDave Kleikamp  * The caller must have write access to iloc->bh.
4187ac27a0ecSDave Kleikamp  */
4188617ba13bSMingming Cao static int ext4_do_update_inode(handle_t *handle,
4189ac27a0ecSDave Kleikamp 				struct inode *inode,
4190830156c7SFrank Mayhar 				struct ext4_iloc *iloc)
4191ac27a0ecSDave Kleikamp {
4192617ba13bSMingming Cao 	struct ext4_inode *raw_inode = ext4_raw_inode(iloc);
4193617ba13bSMingming Cao 	struct ext4_inode_info *ei = EXT4_I(inode);
4194ac27a0ecSDave Kleikamp 	struct buffer_head *bh = iloc->bh;
4195202ee5dfSTheodore Ts'o 	struct super_block *sb = inode->i_sb;
4196ac27a0ecSDave Kleikamp 	int err = 0, rc, block;
4197202ee5dfSTheodore Ts'o 	int need_datasync = 0, set_large_file = 0;
419808cefc7aSEric W. Biederman 	uid_t i_uid;
419908cefc7aSEric W. Biederman 	gid_t i_gid;
4200ac27a0ecSDave Kleikamp 
4201202ee5dfSTheodore Ts'o 	spin_lock(&ei->i_raw_lock);
4202202ee5dfSTheodore Ts'o 
4203202ee5dfSTheodore Ts'o 	/* For fields not tracked in the in-memory inode,
4204ac27a0ecSDave Kleikamp 	 * initialise them to zero for new inodes. */
420519f5fb7aSTheodore Ts'o 	if (ext4_test_inode_state(inode, EXT4_STATE_NEW))
4206617ba13bSMingming Cao 		memset(raw_inode, 0, EXT4_SB(inode->i_sb)->s_inode_size);
4207ac27a0ecSDave Kleikamp 
4208ff9ddf7eSJan Kara 	ext4_get_inode_flags(ei);
4209ac27a0ecSDave Kleikamp 	raw_inode->i_mode = cpu_to_le16(inode->i_mode);
421008cefc7aSEric W. Biederman 	i_uid = i_uid_read(inode);
421108cefc7aSEric W. Biederman 	i_gid = i_gid_read(inode);
4212ac27a0ecSDave Kleikamp 	if (!(test_opt(inode->i_sb, NO_UID32))) {
421308cefc7aSEric W. Biederman 		raw_inode->i_uid_low = cpu_to_le16(low_16_bits(i_uid));
421408cefc7aSEric W. Biederman 		raw_inode->i_gid_low = cpu_to_le16(low_16_bits(i_gid));
4215ac27a0ecSDave Kleikamp /*
4216ac27a0ecSDave Kleikamp  * Fix up interoperability with old kernels. Otherwise, old inodes get
4217ac27a0ecSDave Kleikamp  * re-used with the upper 16 bits of the uid/gid intact
4218ac27a0ecSDave Kleikamp  */
4219ac27a0ecSDave Kleikamp 		if (!ei->i_dtime) {
4220ac27a0ecSDave Kleikamp 			raw_inode->i_uid_high =
422108cefc7aSEric W. Biederman 				cpu_to_le16(high_16_bits(i_uid));
4222ac27a0ecSDave Kleikamp 			raw_inode->i_gid_high =
422308cefc7aSEric W. Biederman 				cpu_to_le16(high_16_bits(i_gid));
4224ac27a0ecSDave Kleikamp 		} else {
4225ac27a0ecSDave Kleikamp 			raw_inode->i_uid_high = 0;
4226ac27a0ecSDave Kleikamp 			raw_inode->i_gid_high = 0;
4227ac27a0ecSDave Kleikamp 		}
4228ac27a0ecSDave Kleikamp 	} else {
422908cefc7aSEric W. Biederman 		raw_inode->i_uid_low = cpu_to_le16(fs_high2lowuid(i_uid));
423008cefc7aSEric W. Biederman 		raw_inode->i_gid_low = cpu_to_le16(fs_high2lowgid(i_gid));
4231ac27a0ecSDave Kleikamp 		raw_inode->i_uid_high = 0;
4232ac27a0ecSDave Kleikamp 		raw_inode->i_gid_high = 0;
4233ac27a0ecSDave Kleikamp 	}
4234ac27a0ecSDave Kleikamp 	raw_inode->i_links_count = cpu_to_le16(inode->i_nlink);
4235ef7f3835SKalpak Shah 
4236ef7f3835SKalpak Shah 	EXT4_INODE_SET_XTIME(i_ctime, inode, raw_inode);
4237ef7f3835SKalpak Shah 	EXT4_INODE_SET_XTIME(i_mtime, inode, raw_inode);
4238ef7f3835SKalpak Shah 	EXT4_INODE_SET_XTIME(i_atime, inode, raw_inode);
4239ef7f3835SKalpak Shah 	EXT4_EINODE_SET_XTIME(i_crtime, ei, raw_inode);
4240ef7f3835SKalpak Shah 
4241202ee5dfSTheodore Ts'o 	if (ext4_inode_blocks_set(handle, raw_inode, ei)) {
4242202ee5dfSTheodore Ts'o 		spin_unlock(&ei->i_raw_lock);
42430fc1b451SAneesh Kumar K.V 		goto out_brelse;
4244202ee5dfSTheodore Ts'o 	}
4245ac27a0ecSDave Kleikamp 	raw_inode->i_dtime = cpu_to_le32(ei->i_dtime);
4246353eb83cSTheodore Ts'o 	raw_inode->i_flags = cpu_to_le32(ei->i_flags & 0xFFFFFFFF);
4247ed3654ebSTheodore Ts'o 	if (likely(!test_opt2(inode->i_sb, HURD_COMPAT)))
4248a1ddeb7eSBadari Pulavarty 		raw_inode->i_file_acl_high =
4249a1ddeb7eSBadari Pulavarty 			cpu_to_le16(ei->i_file_acl >> 32);
42507973c0c1SAneesh Kumar K.V 	raw_inode->i_file_acl_lo = cpu_to_le32(ei->i_file_acl);
4251b71fc079SJan Kara 	if (ei->i_disksize != ext4_isize(raw_inode)) {
4252a48380f7SAneesh Kumar K.V 		ext4_isize_set(raw_inode, ei->i_disksize);
4253b71fc079SJan Kara 		need_datasync = 1;
4254b71fc079SJan Kara 	}
4255ac27a0ecSDave Kleikamp 	if (ei->i_disksize > 0x7fffffffULL) {
4256617ba13bSMingming Cao 		if (!EXT4_HAS_RO_COMPAT_FEATURE(sb,
4257617ba13bSMingming Cao 				EXT4_FEATURE_RO_COMPAT_LARGE_FILE) ||
4258617ba13bSMingming Cao 				EXT4_SB(sb)->s_es->s_rev_level ==
4259202ee5dfSTheodore Ts'o 		    cpu_to_le32(EXT4_GOOD_OLD_REV))
4260202ee5dfSTheodore Ts'o 			set_large_file = 1;
4261ac27a0ecSDave Kleikamp 	}
4262ac27a0ecSDave Kleikamp 	raw_inode->i_generation = cpu_to_le32(inode->i_generation);
4263ac27a0ecSDave Kleikamp 	if (S_ISCHR(inode->i_mode) || S_ISBLK(inode->i_mode)) {
4264ac27a0ecSDave Kleikamp 		if (old_valid_dev(inode->i_rdev)) {
4265ac27a0ecSDave Kleikamp 			raw_inode->i_block[0] =
4266ac27a0ecSDave Kleikamp 				cpu_to_le32(old_encode_dev(inode->i_rdev));
4267ac27a0ecSDave Kleikamp 			raw_inode->i_block[1] = 0;
4268ac27a0ecSDave Kleikamp 		} else {
4269ac27a0ecSDave Kleikamp 			raw_inode->i_block[0] = 0;
4270ac27a0ecSDave Kleikamp 			raw_inode->i_block[1] =
4271ac27a0ecSDave Kleikamp 				cpu_to_le32(new_encode_dev(inode->i_rdev));
4272ac27a0ecSDave Kleikamp 			raw_inode->i_block[2] = 0;
4273ac27a0ecSDave Kleikamp 		}
4274f19d5870STao Ma 	} else if (!ext4_has_inline_data(inode)) {
4275de9a55b8STheodore Ts'o 		for (block = 0; block < EXT4_N_BLOCKS; block++)
4276ac27a0ecSDave Kleikamp 			raw_inode->i_block[block] = ei->i_data[block];
4277f19d5870STao Ma 	}
4278ac27a0ecSDave Kleikamp 
4279ed3654ebSTheodore Ts'o 	if (likely(!test_opt2(inode->i_sb, HURD_COMPAT))) {
428025ec56b5SJean Noel Cordenner 		raw_inode->i_disk_version = cpu_to_le32(inode->i_version);
428125ec56b5SJean Noel Cordenner 		if (ei->i_extra_isize) {
428225ec56b5SJean Noel Cordenner 			if (EXT4_FITS_IN_INODE(raw_inode, ei, i_version_hi))
428325ec56b5SJean Noel Cordenner 				raw_inode->i_version_hi =
428425ec56b5SJean Noel Cordenner 					cpu_to_le32(inode->i_version >> 32);
4285c4f65706STheodore Ts'o 			raw_inode->i_extra_isize =
4286c4f65706STheodore Ts'o 				cpu_to_le16(ei->i_extra_isize);
4287c4f65706STheodore Ts'o 		}
428825ec56b5SJean Noel Cordenner 	}
428925ec56b5SJean Noel Cordenner 
4290814525f4SDarrick J. Wong 	ext4_inode_csum_set(inode, raw_inode, ei);
4291814525f4SDarrick J. Wong 
4292202ee5dfSTheodore Ts'o 	spin_unlock(&ei->i_raw_lock);
4293202ee5dfSTheodore Ts'o 
42940390131bSFrank Mayhar 	BUFFER_TRACE(bh, "call ext4_handle_dirty_metadata");
429573b50c1cSCurt Wohlgemuth 	rc = ext4_handle_dirty_metadata(handle, NULL, bh);
4296ac27a0ecSDave Kleikamp 	if (!err)
4297ac27a0ecSDave Kleikamp 		err = rc;
429819f5fb7aSTheodore Ts'o 	ext4_clear_inode_state(inode, EXT4_STATE_NEW);
4299202ee5dfSTheodore Ts'o 	if (set_large_file) {
43005d601255Sliang xie 		BUFFER_TRACE(EXT4_SB(sb)->s_sbh, "get write access");
4301202ee5dfSTheodore Ts'o 		err = ext4_journal_get_write_access(handle, EXT4_SB(sb)->s_sbh);
4302202ee5dfSTheodore Ts'o 		if (err)
4303202ee5dfSTheodore Ts'o 			goto out_brelse;
4304202ee5dfSTheodore Ts'o 		ext4_update_dynamic_rev(sb);
4305202ee5dfSTheodore Ts'o 		EXT4_SET_RO_COMPAT_FEATURE(sb,
4306202ee5dfSTheodore Ts'o 					   EXT4_FEATURE_RO_COMPAT_LARGE_FILE);
4307202ee5dfSTheodore Ts'o 		ext4_handle_sync(handle);
4308202ee5dfSTheodore Ts'o 		err = ext4_handle_dirty_super(handle, sb);
4309202ee5dfSTheodore Ts'o 	}
4310b71fc079SJan Kara 	ext4_update_inode_fsync_trans(handle, inode, need_datasync);
4311ac27a0ecSDave Kleikamp out_brelse:
4312ac27a0ecSDave Kleikamp 	brelse(bh);
4313617ba13bSMingming Cao 	ext4_std_error(inode->i_sb, err);
4314ac27a0ecSDave Kleikamp 	return err;
4315ac27a0ecSDave Kleikamp }
4316ac27a0ecSDave Kleikamp 
4317ac27a0ecSDave Kleikamp /*
4318617ba13bSMingming Cao  * ext4_write_inode()
4319ac27a0ecSDave Kleikamp  *
4320ac27a0ecSDave Kleikamp  * We are called from a few places:
4321ac27a0ecSDave Kleikamp  *
432287f7e416STheodore Ts'o  * - Within generic_file_aio_write() -> generic_write_sync() for O_SYNC files.
4323ac27a0ecSDave Kleikamp  *   Here, there will be no transaction running. We wait for any running
43244907cb7bSAnatol Pomozov  *   transaction to commit.
4325ac27a0ecSDave Kleikamp  *
432687f7e416STheodore Ts'o  * - Within flush work (sys_sync(), kupdate and such).
432787f7e416STheodore Ts'o  *   We wait on commit, if told to.
4328ac27a0ecSDave Kleikamp  *
432987f7e416STheodore Ts'o  * - Within iput_final() -> write_inode_now()
433087f7e416STheodore Ts'o  *   We wait on commit, if told to.
4331ac27a0ecSDave Kleikamp  *
4332ac27a0ecSDave Kleikamp  * In all cases it is actually safe for us to return without doing anything,
4333ac27a0ecSDave Kleikamp  * because the inode has been copied into a raw inode buffer in
433487f7e416STheodore Ts'o  * ext4_mark_inode_dirty().  This is a correctness thing for WB_SYNC_ALL
433587f7e416STheodore Ts'o  * writeback.
4336ac27a0ecSDave Kleikamp  *
4337ac27a0ecSDave Kleikamp  * Note that we are absolutely dependent upon all inode dirtiers doing the
4338ac27a0ecSDave Kleikamp  * right thing: they *must* call mark_inode_dirty() after dirtying info in
4339ac27a0ecSDave Kleikamp  * which we are interested.
4340ac27a0ecSDave Kleikamp  *
4341ac27a0ecSDave Kleikamp  * It would be a bug for them to not do this.  The code:
4342ac27a0ecSDave Kleikamp  *
4343ac27a0ecSDave Kleikamp  *	mark_inode_dirty(inode)
4344ac27a0ecSDave Kleikamp  *	stuff();
4345ac27a0ecSDave Kleikamp  *	inode->i_size = expr;
4346ac27a0ecSDave Kleikamp  *
434787f7e416STheodore Ts'o  * is in error because write_inode() could occur while `stuff()' is running,
434887f7e416STheodore Ts'o  * and the new i_size will be lost.  Plus the inode will no longer be on the
434987f7e416STheodore Ts'o  * superblock's dirty inode list.
4350ac27a0ecSDave Kleikamp  */
4351a9185b41SChristoph Hellwig int ext4_write_inode(struct inode *inode, struct writeback_control *wbc)
4352ac27a0ecSDave Kleikamp {
435391ac6f43SFrank Mayhar 	int err;
435491ac6f43SFrank Mayhar 
435587f7e416STheodore Ts'o 	if (WARN_ON_ONCE(current->flags & PF_MEMALLOC))
4356ac27a0ecSDave Kleikamp 		return 0;
4357ac27a0ecSDave Kleikamp 
435891ac6f43SFrank Mayhar 	if (EXT4_SB(inode->i_sb)->s_journal) {
4359617ba13bSMingming Cao 		if (ext4_journal_current_handle()) {
4360b38bd33aSMingming Cao 			jbd_debug(1, "called recursively, non-PF_MEMALLOC!\n");
4361ac27a0ecSDave Kleikamp 			dump_stack();
4362ac27a0ecSDave Kleikamp 			return -EIO;
4363ac27a0ecSDave Kleikamp 		}
4364ac27a0ecSDave Kleikamp 
436510542c22SJan Kara 		/*
436610542c22SJan Kara 		 * No need to force transaction in WB_SYNC_NONE mode. Also
436710542c22SJan Kara 		 * ext4_sync_fs() will force the commit after everything is
436810542c22SJan Kara 		 * written.
436910542c22SJan Kara 		 */
437010542c22SJan Kara 		if (wbc->sync_mode != WB_SYNC_ALL || wbc->for_sync)
4371ac27a0ecSDave Kleikamp 			return 0;
4372ac27a0ecSDave Kleikamp 
437391ac6f43SFrank Mayhar 		err = ext4_force_commit(inode->i_sb);
437491ac6f43SFrank Mayhar 	} else {
437591ac6f43SFrank Mayhar 		struct ext4_iloc iloc;
437691ac6f43SFrank Mayhar 
43778b472d73SCurt Wohlgemuth 		err = __ext4_get_inode_loc(inode, &iloc, 0);
437891ac6f43SFrank Mayhar 		if (err)
437991ac6f43SFrank Mayhar 			return err;
438010542c22SJan Kara 		/*
438110542c22SJan Kara 		 * sync(2) will flush the whole buffer cache. No need to do
438210542c22SJan Kara 		 * it here separately for each inode.
438310542c22SJan Kara 		 */
438410542c22SJan Kara 		if (wbc->sync_mode == WB_SYNC_ALL && !wbc->for_sync)
4385830156c7SFrank Mayhar 			sync_dirty_buffer(iloc.bh);
4386830156c7SFrank Mayhar 		if (buffer_req(iloc.bh) && !buffer_uptodate(iloc.bh)) {
4387c398eda0STheodore Ts'o 			EXT4_ERROR_INODE_BLOCK(inode, iloc.bh->b_blocknr,
4388c398eda0STheodore Ts'o 					 "IO error syncing inode");
4389830156c7SFrank Mayhar 			err = -EIO;
4390830156c7SFrank Mayhar 		}
4391fd2dd9fbSCurt Wohlgemuth 		brelse(iloc.bh);
439291ac6f43SFrank Mayhar 	}
439391ac6f43SFrank Mayhar 	return err;
4394ac27a0ecSDave Kleikamp }
4395ac27a0ecSDave Kleikamp 
4396ac27a0ecSDave Kleikamp /*
439753e87268SJan Kara  * In data=journal mode ext4_journalled_invalidatepage() may fail to invalidate
439853e87268SJan Kara  * buffers that are attached to a page stradding i_size and are undergoing
439953e87268SJan Kara  * commit. In that case we have to wait for commit to finish and try again.
440053e87268SJan Kara  */
440153e87268SJan Kara static void ext4_wait_for_tail_page_commit(struct inode *inode)
440253e87268SJan Kara {
440353e87268SJan Kara 	struct page *page;
440453e87268SJan Kara 	unsigned offset;
440553e87268SJan Kara 	journal_t *journal = EXT4_SB(inode->i_sb)->s_journal;
440653e87268SJan Kara 	tid_t commit_tid = 0;
440753e87268SJan Kara 	int ret;
440853e87268SJan Kara 
440953e87268SJan Kara 	offset = inode->i_size & (PAGE_CACHE_SIZE - 1);
441053e87268SJan Kara 	/*
441153e87268SJan Kara 	 * All buffers in the last page remain valid? Then there's nothing to
441253e87268SJan Kara 	 * do. We do the check mainly to optimize the common PAGE_CACHE_SIZE ==
441353e87268SJan Kara 	 * blocksize case
441453e87268SJan Kara 	 */
441553e87268SJan Kara 	if (offset > PAGE_CACHE_SIZE - (1 << inode->i_blkbits))
441653e87268SJan Kara 		return;
441753e87268SJan Kara 	while (1) {
441853e87268SJan Kara 		page = find_lock_page(inode->i_mapping,
441953e87268SJan Kara 				      inode->i_size >> PAGE_CACHE_SHIFT);
442053e87268SJan Kara 		if (!page)
442153e87268SJan Kara 			return;
4422ca99fdd2SLukas Czerner 		ret = __ext4_journalled_invalidatepage(page, offset,
4423ca99fdd2SLukas Czerner 						PAGE_CACHE_SIZE - offset);
442453e87268SJan Kara 		unlock_page(page);
442553e87268SJan Kara 		page_cache_release(page);
442653e87268SJan Kara 		if (ret != -EBUSY)
442753e87268SJan Kara 			return;
442853e87268SJan Kara 		commit_tid = 0;
442953e87268SJan Kara 		read_lock(&journal->j_state_lock);
443053e87268SJan Kara 		if (journal->j_committing_transaction)
443153e87268SJan Kara 			commit_tid = journal->j_committing_transaction->t_tid;
443253e87268SJan Kara 		read_unlock(&journal->j_state_lock);
443353e87268SJan Kara 		if (commit_tid)
443453e87268SJan Kara 			jbd2_log_wait_commit(journal, commit_tid);
443553e87268SJan Kara 	}
443653e87268SJan Kara }
443753e87268SJan Kara 
443853e87268SJan Kara /*
4439617ba13bSMingming Cao  * ext4_setattr()
4440ac27a0ecSDave Kleikamp  *
4441ac27a0ecSDave Kleikamp  * Called from notify_change.
4442ac27a0ecSDave Kleikamp  *
4443ac27a0ecSDave Kleikamp  * We want to trap VFS attempts to truncate the file as soon as
4444ac27a0ecSDave Kleikamp  * possible.  In particular, we want to make sure that when the VFS
4445ac27a0ecSDave Kleikamp  * shrinks i_size, we put the inode on the orphan list and modify
4446ac27a0ecSDave Kleikamp  * i_disksize immediately, so that during the subsequent flushing of
4447ac27a0ecSDave Kleikamp  * dirty pages and freeing of disk blocks, we can guarantee that any
4448ac27a0ecSDave Kleikamp  * commit will leave the blocks being flushed in an unused state on
4449ac27a0ecSDave Kleikamp  * disk.  (On recovery, the inode will get truncated and the blocks will
4450ac27a0ecSDave Kleikamp  * be freed, so we have a strong guarantee that no future commit will
4451ac27a0ecSDave Kleikamp  * leave these blocks visible to the user.)
4452ac27a0ecSDave Kleikamp  *
4453678aaf48SJan Kara  * Another thing we have to assure is that if we are in ordered mode
4454678aaf48SJan Kara  * and inode is still attached to the committing transaction, we must
4455678aaf48SJan Kara  * we start writeout of all the dirty pages which are being truncated.
4456678aaf48SJan Kara  * This way we are sure that all the data written in the previous
4457678aaf48SJan Kara  * transaction are already on disk (truncate waits for pages under
4458678aaf48SJan Kara  * writeback).
4459678aaf48SJan Kara  *
4460678aaf48SJan Kara  * Called with inode->i_mutex down.
4461ac27a0ecSDave Kleikamp  */
4462617ba13bSMingming Cao int ext4_setattr(struct dentry *dentry, struct iattr *attr)
4463ac27a0ecSDave Kleikamp {
4464ac27a0ecSDave Kleikamp 	struct inode *inode = dentry->d_inode;
4465ac27a0ecSDave Kleikamp 	int error, rc = 0;
44663d287de3SDmitry Monakhov 	int orphan = 0;
4467ac27a0ecSDave Kleikamp 	const unsigned int ia_valid = attr->ia_valid;
4468ac27a0ecSDave Kleikamp 
4469ac27a0ecSDave Kleikamp 	error = inode_change_ok(inode, attr);
4470ac27a0ecSDave Kleikamp 	if (error)
4471ac27a0ecSDave Kleikamp 		return error;
4472ac27a0ecSDave Kleikamp 
447312755627SDmitry Monakhov 	if (is_quota_modification(inode, attr))
4474871a2931SChristoph Hellwig 		dquot_initialize(inode);
447508cefc7aSEric W. Biederman 	if ((ia_valid & ATTR_UID && !uid_eq(attr->ia_uid, inode->i_uid)) ||
447608cefc7aSEric W. Biederman 	    (ia_valid & ATTR_GID && !gid_eq(attr->ia_gid, inode->i_gid))) {
4477ac27a0ecSDave Kleikamp 		handle_t *handle;
4478ac27a0ecSDave Kleikamp 
4479ac27a0ecSDave Kleikamp 		/* (user+group)*(old+new) structure, inode write (sb,
4480ac27a0ecSDave Kleikamp 		 * inode block, ? - but truncate inode update has it) */
44819924a92aSTheodore Ts'o 		handle = ext4_journal_start(inode, EXT4_HT_QUOTA,
44829924a92aSTheodore Ts'o 			(EXT4_MAXQUOTAS_INIT_BLOCKS(inode->i_sb) +
4483194074acSDmitry Monakhov 			 EXT4_MAXQUOTAS_DEL_BLOCKS(inode->i_sb)) + 3);
4484ac27a0ecSDave Kleikamp 		if (IS_ERR(handle)) {
4485ac27a0ecSDave Kleikamp 			error = PTR_ERR(handle);
4486ac27a0ecSDave Kleikamp 			goto err_out;
4487ac27a0ecSDave Kleikamp 		}
4488b43fa828SChristoph Hellwig 		error = dquot_transfer(inode, attr);
4489ac27a0ecSDave Kleikamp 		if (error) {
4490617ba13bSMingming Cao 			ext4_journal_stop(handle);
4491ac27a0ecSDave Kleikamp 			return error;
4492ac27a0ecSDave Kleikamp 		}
4493ac27a0ecSDave Kleikamp 		/* Update corresponding info in inode so that everything is in
4494ac27a0ecSDave Kleikamp 		 * one transaction */
4495ac27a0ecSDave Kleikamp 		if (attr->ia_valid & ATTR_UID)
4496ac27a0ecSDave Kleikamp 			inode->i_uid = attr->ia_uid;
4497ac27a0ecSDave Kleikamp 		if (attr->ia_valid & ATTR_GID)
4498ac27a0ecSDave Kleikamp 			inode->i_gid = attr->ia_gid;
4499617ba13bSMingming Cao 		error = ext4_mark_inode_dirty(handle, inode);
4500617ba13bSMingming Cao 		ext4_journal_stop(handle);
4501ac27a0ecSDave Kleikamp 	}
4502ac27a0ecSDave Kleikamp 
45035208386cSJan Kara 	if (attr->ia_valid & ATTR_SIZE && attr->ia_size != inode->i_size) {
45045208386cSJan Kara 		handle_t *handle;
4505562c72aaSChristoph Hellwig 
450612e9b892SDmitry Monakhov 		if (!(ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS))) {
4507e2b46574SEric Sandeen 			struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb);
4508e2b46574SEric Sandeen 
45090c095c7fSTheodore Ts'o 			if (attr->ia_size > sbi->s_bitmap_maxbytes)
45100c095c7fSTheodore Ts'o 				return -EFBIG;
4511e2b46574SEric Sandeen 		}
4512dff6efc3SChristoph Hellwig 
4513dff6efc3SChristoph Hellwig 		if (IS_I_VERSION(inode) && attr->ia_size != inode->i_size)
4514dff6efc3SChristoph Hellwig 			inode_inc_iversion(inode);
4515dff6efc3SChristoph Hellwig 
4516ac27a0ecSDave Kleikamp 		if (S_ISREG(inode->i_mode) &&
4517072bd7eaSTheodore Ts'o 		    (attr->ia_size < inode->i_size)) {
45185208386cSJan Kara 			if (ext4_should_order_data(inode)) {
45195208386cSJan Kara 				error = ext4_begin_ordered_truncate(inode,
45205208386cSJan Kara 							    attr->ia_size);
45215208386cSJan Kara 				if (error)
45225208386cSJan Kara 					goto err_out;
45235208386cSJan Kara 			}
45249924a92aSTheodore Ts'o 			handle = ext4_journal_start(inode, EXT4_HT_INODE, 3);
4525ac27a0ecSDave Kleikamp 			if (IS_ERR(handle)) {
4526ac27a0ecSDave Kleikamp 				error = PTR_ERR(handle);
4527ac27a0ecSDave Kleikamp 				goto err_out;
4528ac27a0ecSDave Kleikamp 			}
45293d287de3SDmitry Monakhov 			if (ext4_handle_valid(handle)) {
4530617ba13bSMingming Cao 				error = ext4_orphan_add(handle, inode);
45313d287de3SDmitry Monakhov 				orphan = 1;
45323d287de3SDmitry Monakhov 			}
453390e775b7SJan Kara 			down_write(&EXT4_I(inode)->i_data_sem);
4534617ba13bSMingming Cao 			EXT4_I(inode)->i_disksize = attr->ia_size;
4535617ba13bSMingming Cao 			rc = ext4_mark_inode_dirty(handle, inode);
4536ac27a0ecSDave Kleikamp 			if (!error)
4537ac27a0ecSDave Kleikamp 				error = rc;
453890e775b7SJan Kara 			/*
453990e775b7SJan Kara 			 * We have to update i_size under i_data_sem together
454090e775b7SJan Kara 			 * with i_disksize to avoid races with writeback code
454190e775b7SJan Kara 			 * running ext4_wb_update_i_disksize().
454290e775b7SJan Kara 			 */
454390e775b7SJan Kara 			if (!error)
454490e775b7SJan Kara 				i_size_write(inode, attr->ia_size);
454590e775b7SJan Kara 			up_write(&EXT4_I(inode)->i_data_sem);
4546617ba13bSMingming Cao 			ext4_journal_stop(handle);
4547678aaf48SJan Kara 			if (error) {
4548678aaf48SJan Kara 				ext4_orphan_del(NULL, inode);
4549678aaf48SJan Kara 				goto err_out;
4550678aaf48SJan Kara 			}
455190e775b7SJan Kara 		} else
455253e87268SJan Kara 			i_size_write(inode, attr->ia_size);
455390e775b7SJan Kara 
455453e87268SJan Kara 		/*
455553e87268SJan Kara 		 * Blocks are going to be removed from the inode. Wait
455653e87268SJan Kara 		 * for dio in flight.  Temporarily disable
455753e87268SJan Kara 		 * dioread_nolock to prevent livelock.
455853e87268SJan Kara 		 */
45591b65007eSDmitry Monakhov 		if (orphan) {
456053e87268SJan Kara 			if (!ext4_should_journal_data(inode)) {
45611b65007eSDmitry Monakhov 				ext4_inode_block_unlocked_dio(inode);
45621c9114f9SDmitry Monakhov 				inode_dio_wait(inode);
45631b65007eSDmitry Monakhov 				ext4_inode_resume_unlocked_dio(inode);
456453e87268SJan Kara 			} else
456553e87268SJan Kara 				ext4_wait_for_tail_page_commit(inode);
45661b65007eSDmitry Monakhov 		}
456753e87268SJan Kara 		/*
456853e87268SJan Kara 		 * Truncate pagecache after we've waited for commit
456953e87268SJan Kara 		 * in data=journal mode to make pages freeable.
457053e87268SJan Kara 		 */
45717caef267SKirill A. Shutemov 			truncate_pagecache(inode, inode->i_size);
45721c9114f9SDmitry Monakhov 	}
45735208386cSJan Kara 	/*
45745208386cSJan Kara 	 * We want to call ext4_truncate() even if attr->ia_size ==
45755208386cSJan Kara 	 * inode->i_size for cases like truncation of fallocated space
45765208386cSJan Kara 	 */
45775208386cSJan Kara 	if (attr->ia_valid & ATTR_SIZE)
4578072bd7eaSTheodore Ts'o 		ext4_truncate(inode);
4579ac27a0ecSDave Kleikamp 
45801025774cSChristoph Hellwig 	if (!rc) {
45811025774cSChristoph Hellwig 		setattr_copy(inode, attr);
45821025774cSChristoph Hellwig 		mark_inode_dirty(inode);
45831025774cSChristoph Hellwig 	}
45841025774cSChristoph Hellwig 
45851025774cSChristoph Hellwig 	/*
45861025774cSChristoph Hellwig 	 * If the call to ext4_truncate failed to get a transaction handle at
45871025774cSChristoph Hellwig 	 * all, we need to clean up the in-core orphan list manually.
45881025774cSChristoph Hellwig 	 */
45893d287de3SDmitry Monakhov 	if (orphan && inode->i_nlink)
4590617ba13bSMingming Cao 		ext4_orphan_del(NULL, inode);
4591ac27a0ecSDave Kleikamp 
4592ac27a0ecSDave Kleikamp 	if (!rc && (ia_valid & ATTR_MODE))
459364e178a7SChristoph Hellwig 		rc = posix_acl_chmod(inode, inode->i_mode);
4594ac27a0ecSDave Kleikamp 
4595ac27a0ecSDave Kleikamp err_out:
4596617ba13bSMingming Cao 	ext4_std_error(inode->i_sb, error);
4597ac27a0ecSDave Kleikamp 	if (!error)
4598ac27a0ecSDave Kleikamp 		error = rc;
4599ac27a0ecSDave Kleikamp 	return error;
4600ac27a0ecSDave Kleikamp }
4601ac27a0ecSDave Kleikamp 
46023e3398a0SMingming Cao int ext4_getattr(struct vfsmount *mnt, struct dentry *dentry,
46033e3398a0SMingming Cao 		 struct kstat *stat)
46043e3398a0SMingming Cao {
46053e3398a0SMingming Cao 	struct inode *inode;
46068af8eeccSJan Kara 	unsigned long long delalloc_blocks;
46073e3398a0SMingming Cao 
46083e3398a0SMingming Cao 	inode = dentry->d_inode;
46093e3398a0SMingming Cao 	generic_fillattr(inode, stat);
46103e3398a0SMingming Cao 
46113e3398a0SMingming Cao 	/*
46129206c561SAndreas Dilger 	 * If there is inline data in the inode, the inode will normally not
46139206c561SAndreas Dilger 	 * have data blocks allocated (it may have an external xattr block).
46149206c561SAndreas Dilger 	 * Report at least one sector for such files, so tools like tar, rsync,
46159206c561SAndreas Dilger 	 * others doen't incorrectly think the file is completely sparse.
46169206c561SAndreas Dilger 	 */
46179206c561SAndreas Dilger 	if (unlikely(ext4_has_inline_data(inode)))
46189206c561SAndreas Dilger 		stat->blocks += (stat->size + 511) >> 9;
46199206c561SAndreas Dilger 
46209206c561SAndreas Dilger 	/*
46213e3398a0SMingming Cao 	 * We can't update i_blocks if the block allocation is delayed
46223e3398a0SMingming Cao 	 * otherwise in the case of system crash before the real block
46233e3398a0SMingming Cao 	 * allocation is done, we will have i_blocks inconsistent with
46243e3398a0SMingming Cao 	 * on-disk file blocks.
46253e3398a0SMingming Cao 	 * We always keep i_blocks updated together with real
46263e3398a0SMingming Cao 	 * allocation. But to not confuse with user, stat
46273e3398a0SMingming Cao 	 * will return the blocks that include the delayed allocation
46283e3398a0SMingming Cao 	 * blocks for this file.
46293e3398a0SMingming Cao 	 */
463096607551STao Ma 	delalloc_blocks = EXT4_C2B(EXT4_SB(inode->i_sb),
463196607551STao Ma 				   EXT4_I(inode)->i_reserved_data_blocks);
46328af8eeccSJan Kara 	stat->blocks += delalloc_blocks << (inode->i_sb->s_blocksize_bits - 9);
46333e3398a0SMingming Cao 	return 0;
46343e3398a0SMingming Cao }
4635ac27a0ecSDave Kleikamp 
4636fffb2739SJan Kara static int ext4_index_trans_blocks(struct inode *inode, int lblocks,
4637fffb2739SJan Kara 				   int pextents)
4638a02908f1SMingming Cao {
463912e9b892SDmitry Monakhov 	if (!(ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS)))
4640fffb2739SJan Kara 		return ext4_ind_trans_blocks(inode, lblocks);
4641fffb2739SJan Kara 	return ext4_ext_index_trans_blocks(inode, pextents);
4642a02908f1SMingming Cao }
4643ac51d837STheodore Ts'o 
4644a02908f1SMingming Cao /*
4645a02908f1SMingming Cao  * Account for index blocks, block groups bitmaps and block group
4646a02908f1SMingming Cao  * descriptor blocks if modify datablocks and index blocks
4647a02908f1SMingming Cao  * worse case, the indexs blocks spread over different block groups
4648a02908f1SMingming Cao  *
4649a02908f1SMingming Cao  * If datablocks are discontiguous, they are possible to spread over
46504907cb7bSAnatol Pomozov  * different block groups too. If they are contiguous, with flexbg,
4651a02908f1SMingming Cao  * they could still across block group boundary.
4652a02908f1SMingming Cao  *
4653a02908f1SMingming Cao  * Also account for superblock, inode, quota and xattr blocks
4654a02908f1SMingming Cao  */
4655fffb2739SJan Kara static int ext4_meta_trans_blocks(struct inode *inode, int lblocks,
4656fffb2739SJan Kara 				  int pextents)
4657a02908f1SMingming Cao {
46588df9675fSTheodore Ts'o 	ext4_group_t groups, ngroups = ext4_get_groups_count(inode->i_sb);
46598df9675fSTheodore Ts'o 	int gdpblocks;
4660a02908f1SMingming Cao 	int idxblocks;
4661a02908f1SMingming Cao 	int ret = 0;
4662a02908f1SMingming Cao 
4663a02908f1SMingming Cao 	/*
4664fffb2739SJan Kara 	 * How many index blocks need to touch to map @lblocks logical blocks
4665fffb2739SJan Kara 	 * to @pextents physical extents?
4666a02908f1SMingming Cao 	 */
4667fffb2739SJan Kara 	idxblocks = ext4_index_trans_blocks(inode, lblocks, pextents);
4668a02908f1SMingming Cao 
4669a02908f1SMingming Cao 	ret = idxblocks;
4670a02908f1SMingming Cao 
4671a02908f1SMingming Cao 	/*
4672a02908f1SMingming Cao 	 * Now let's see how many group bitmaps and group descriptors need
4673a02908f1SMingming Cao 	 * to account
4674a02908f1SMingming Cao 	 */
4675fffb2739SJan Kara 	groups = idxblocks + pextents;
4676a02908f1SMingming Cao 	gdpblocks = groups;
46778df9675fSTheodore Ts'o 	if (groups > ngroups)
46788df9675fSTheodore Ts'o 		groups = ngroups;
4679a02908f1SMingming Cao 	if (groups > EXT4_SB(inode->i_sb)->s_gdb_count)
4680a02908f1SMingming Cao 		gdpblocks = EXT4_SB(inode->i_sb)->s_gdb_count;
4681a02908f1SMingming Cao 
4682a02908f1SMingming Cao 	/* bitmaps and block group descriptor blocks */
4683a02908f1SMingming Cao 	ret += groups + gdpblocks;
4684a02908f1SMingming Cao 
4685a02908f1SMingming Cao 	/* Blocks for super block, inode, quota and xattr blocks */
4686a02908f1SMingming Cao 	ret += EXT4_META_TRANS_BLOCKS(inode->i_sb);
4687ac27a0ecSDave Kleikamp 
4688ac27a0ecSDave Kleikamp 	return ret;
4689ac27a0ecSDave Kleikamp }
4690ac27a0ecSDave Kleikamp 
4691ac27a0ecSDave Kleikamp /*
469225985edcSLucas De Marchi  * Calculate the total number of credits to reserve to fit
4693f3bd1f3fSMingming Cao  * the modification of a single pages into a single transaction,
4694f3bd1f3fSMingming Cao  * which may include multiple chunks of block allocations.
4695a02908f1SMingming Cao  *
4696525f4ed8SMingming Cao  * This could be called via ext4_write_begin()
4697a02908f1SMingming Cao  *
4698525f4ed8SMingming Cao  * We need to consider the worse case, when
4699a02908f1SMingming Cao  * one new block per extent.
4700a02908f1SMingming Cao  */
4701a02908f1SMingming Cao int ext4_writepage_trans_blocks(struct inode *inode)
4702a02908f1SMingming Cao {
4703a02908f1SMingming Cao 	int bpp = ext4_journal_blocks_per_page(inode);
4704a02908f1SMingming Cao 	int ret;
4705a02908f1SMingming Cao 
4706fffb2739SJan Kara 	ret = ext4_meta_trans_blocks(inode, bpp, bpp);
4707a02908f1SMingming Cao 
4708a02908f1SMingming Cao 	/* Account for data blocks for journalled mode */
4709a02908f1SMingming Cao 	if (ext4_should_journal_data(inode))
4710a02908f1SMingming Cao 		ret += bpp;
4711a02908f1SMingming Cao 	return ret;
4712a02908f1SMingming Cao }
4713f3bd1f3fSMingming Cao 
4714f3bd1f3fSMingming Cao /*
4715f3bd1f3fSMingming Cao  * Calculate the journal credits for a chunk of data modification.
4716f3bd1f3fSMingming Cao  *
4717f3bd1f3fSMingming Cao  * This is called from DIO, fallocate or whoever calling
471879e83036SEric Sandeen  * ext4_map_blocks() to map/allocate a chunk of contiguous disk blocks.
4719f3bd1f3fSMingming Cao  *
4720f3bd1f3fSMingming Cao  * journal buffers for data blocks are not included here, as DIO
4721f3bd1f3fSMingming Cao  * and fallocate do no need to journal data buffers.
4722f3bd1f3fSMingming Cao  */
4723f3bd1f3fSMingming Cao int ext4_chunk_trans_blocks(struct inode *inode, int nrblocks)
4724f3bd1f3fSMingming Cao {
4725f3bd1f3fSMingming Cao 	return ext4_meta_trans_blocks(inode, nrblocks, 1);
4726f3bd1f3fSMingming Cao }
4727f3bd1f3fSMingming Cao 
4728a02908f1SMingming Cao /*
4729617ba13bSMingming Cao  * The caller must have previously called ext4_reserve_inode_write().
4730ac27a0ecSDave Kleikamp  * Give this, we know that the caller already has write access to iloc->bh.
4731ac27a0ecSDave Kleikamp  */
4732617ba13bSMingming Cao int ext4_mark_iloc_dirty(handle_t *handle,
4733617ba13bSMingming Cao 			 struct inode *inode, struct ext4_iloc *iloc)
4734ac27a0ecSDave Kleikamp {
4735ac27a0ecSDave Kleikamp 	int err = 0;
4736ac27a0ecSDave Kleikamp 
4737c64db50eSTheodore Ts'o 	if (IS_I_VERSION(inode))
473825ec56b5SJean Noel Cordenner 		inode_inc_iversion(inode);
473925ec56b5SJean Noel Cordenner 
4740ac27a0ecSDave Kleikamp 	/* the do_update_inode consumes one bh->b_count */
4741ac27a0ecSDave Kleikamp 	get_bh(iloc->bh);
4742ac27a0ecSDave Kleikamp 
4743dab291afSMingming Cao 	/* ext4_do_update_inode() does jbd2_journal_dirty_metadata */
4744830156c7SFrank Mayhar 	err = ext4_do_update_inode(handle, inode, iloc);
4745ac27a0ecSDave Kleikamp 	put_bh(iloc->bh);
4746ac27a0ecSDave Kleikamp 	return err;
4747ac27a0ecSDave Kleikamp }
4748ac27a0ecSDave Kleikamp 
4749ac27a0ecSDave Kleikamp /*
4750ac27a0ecSDave Kleikamp  * On success, We end up with an outstanding reference count against
4751ac27a0ecSDave Kleikamp  * iloc->bh.  This _must_ be cleaned up later.
4752ac27a0ecSDave Kleikamp  */
4753ac27a0ecSDave Kleikamp 
4754ac27a0ecSDave Kleikamp int
4755617ba13bSMingming Cao ext4_reserve_inode_write(handle_t *handle, struct inode *inode,
4756617ba13bSMingming Cao 			 struct ext4_iloc *iloc)
4757ac27a0ecSDave Kleikamp {
47580390131bSFrank Mayhar 	int err;
47590390131bSFrank Mayhar 
4760617ba13bSMingming Cao 	err = ext4_get_inode_loc(inode, iloc);
4761ac27a0ecSDave Kleikamp 	if (!err) {
4762ac27a0ecSDave Kleikamp 		BUFFER_TRACE(iloc->bh, "get_write_access");
4763617ba13bSMingming Cao 		err = ext4_journal_get_write_access(handle, iloc->bh);
4764ac27a0ecSDave Kleikamp 		if (err) {
4765ac27a0ecSDave Kleikamp 			brelse(iloc->bh);
4766ac27a0ecSDave Kleikamp 			iloc->bh = NULL;
4767ac27a0ecSDave Kleikamp 		}
4768ac27a0ecSDave Kleikamp 	}
4769617ba13bSMingming Cao 	ext4_std_error(inode->i_sb, err);
4770ac27a0ecSDave Kleikamp 	return err;
4771ac27a0ecSDave Kleikamp }
4772ac27a0ecSDave Kleikamp 
4773ac27a0ecSDave Kleikamp /*
47746dd4ee7cSKalpak Shah  * Expand an inode by new_extra_isize bytes.
47756dd4ee7cSKalpak Shah  * Returns 0 on success or negative error number on failure.
47766dd4ee7cSKalpak Shah  */
47771d03ec98SAneesh Kumar K.V static int ext4_expand_extra_isize(struct inode *inode,
47781d03ec98SAneesh Kumar K.V 				   unsigned int new_extra_isize,
47791d03ec98SAneesh Kumar K.V 				   struct ext4_iloc iloc,
47801d03ec98SAneesh Kumar K.V 				   handle_t *handle)
47816dd4ee7cSKalpak Shah {
47826dd4ee7cSKalpak Shah 	struct ext4_inode *raw_inode;
47836dd4ee7cSKalpak Shah 	struct ext4_xattr_ibody_header *header;
47846dd4ee7cSKalpak Shah 
47856dd4ee7cSKalpak Shah 	if (EXT4_I(inode)->i_extra_isize >= new_extra_isize)
47866dd4ee7cSKalpak Shah 		return 0;
47876dd4ee7cSKalpak Shah 
47886dd4ee7cSKalpak Shah 	raw_inode = ext4_raw_inode(&iloc);
47896dd4ee7cSKalpak Shah 
47906dd4ee7cSKalpak Shah 	header = IHDR(inode, raw_inode);
47916dd4ee7cSKalpak Shah 
47926dd4ee7cSKalpak Shah 	/* No extended attributes present */
479319f5fb7aSTheodore Ts'o 	if (!ext4_test_inode_state(inode, EXT4_STATE_XATTR) ||
47946dd4ee7cSKalpak Shah 	    header->h_magic != cpu_to_le32(EXT4_XATTR_MAGIC)) {
47956dd4ee7cSKalpak Shah 		memset((void *)raw_inode + EXT4_GOOD_OLD_INODE_SIZE, 0,
47966dd4ee7cSKalpak Shah 			new_extra_isize);
47976dd4ee7cSKalpak Shah 		EXT4_I(inode)->i_extra_isize = new_extra_isize;
47986dd4ee7cSKalpak Shah 		return 0;
47996dd4ee7cSKalpak Shah 	}
48006dd4ee7cSKalpak Shah 
48016dd4ee7cSKalpak Shah 	/* try to expand with EAs present */
48026dd4ee7cSKalpak Shah 	return ext4_expand_extra_isize_ea(inode, new_extra_isize,
48036dd4ee7cSKalpak Shah 					  raw_inode, handle);
48046dd4ee7cSKalpak Shah }
48056dd4ee7cSKalpak Shah 
48066dd4ee7cSKalpak Shah /*
4807ac27a0ecSDave Kleikamp  * What we do here is to mark the in-core inode as clean with respect to inode
4808ac27a0ecSDave Kleikamp  * dirtiness (it may still be data-dirty).
4809ac27a0ecSDave Kleikamp  * This means that the in-core inode may be reaped by prune_icache
4810ac27a0ecSDave Kleikamp  * without having to perform any I/O.  This is a very good thing,
4811ac27a0ecSDave Kleikamp  * because *any* task may call prune_icache - even ones which
4812ac27a0ecSDave Kleikamp  * have a transaction open against a different journal.
4813ac27a0ecSDave Kleikamp  *
4814ac27a0ecSDave Kleikamp  * Is this cheating?  Not really.  Sure, we haven't written the
4815ac27a0ecSDave Kleikamp  * inode out, but prune_icache isn't a user-visible syncing function.
4816ac27a0ecSDave Kleikamp  * Whenever the user wants stuff synced (sys_sync, sys_msync, sys_fsync)
4817ac27a0ecSDave Kleikamp  * we start and wait on commits.
4818ac27a0ecSDave Kleikamp  */
4819617ba13bSMingming Cao int ext4_mark_inode_dirty(handle_t *handle, struct inode *inode)
4820ac27a0ecSDave Kleikamp {
4821617ba13bSMingming Cao 	struct ext4_iloc iloc;
48226dd4ee7cSKalpak Shah 	struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb);
48236dd4ee7cSKalpak Shah 	static unsigned int mnt_count;
48246dd4ee7cSKalpak Shah 	int err, ret;
4825ac27a0ecSDave Kleikamp 
4826ac27a0ecSDave Kleikamp 	might_sleep();
48277ff9c073STheodore Ts'o 	trace_ext4_mark_inode_dirty(inode, _RET_IP_);
4828617ba13bSMingming Cao 	err = ext4_reserve_inode_write(handle, inode, &iloc);
48290390131bSFrank Mayhar 	if (ext4_handle_valid(handle) &&
48300390131bSFrank Mayhar 	    EXT4_I(inode)->i_extra_isize < sbi->s_want_extra_isize &&
483119f5fb7aSTheodore Ts'o 	    !ext4_test_inode_state(inode, EXT4_STATE_NO_EXPAND)) {
48326dd4ee7cSKalpak Shah 		/*
48336dd4ee7cSKalpak Shah 		 * We need extra buffer credits since we may write into EA block
48346dd4ee7cSKalpak Shah 		 * with this same handle. If journal_extend fails, then it will
48356dd4ee7cSKalpak Shah 		 * only result in a minor loss of functionality for that inode.
48366dd4ee7cSKalpak Shah 		 * If this is felt to be critical, then e2fsck should be run to
48376dd4ee7cSKalpak Shah 		 * force a large enough s_min_extra_isize.
48386dd4ee7cSKalpak Shah 		 */
48396dd4ee7cSKalpak Shah 		if ((jbd2_journal_extend(handle,
48406dd4ee7cSKalpak Shah 			     EXT4_DATA_TRANS_BLOCKS(inode->i_sb))) == 0) {
48416dd4ee7cSKalpak Shah 			ret = ext4_expand_extra_isize(inode,
48426dd4ee7cSKalpak Shah 						      sbi->s_want_extra_isize,
48436dd4ee7cSKalpak Shah 						      iloc, handle);
48446dd4ee7cSKalpak Shah 			if (ret) {
484519f5fb7aSTheodore Ts'o 				ext4_set_inode_state(inode,
484619f5fb7aSTheodore Ts'o 						     EXT4_STATE_NO_EXPAND);
4847c1bddad9SAneesh Kumar K.V 				if (mnt_count !=
4848c1bddad9SAneesh Kumar K.V 					le16_to_cpu(sbi->s_es->s_mnt_count)) {
484912062dddSEric Sandeen 					ext4_warning(inode->i_sb,
48506dd4ee7cSKalpak Shah 					"Unable to expand inode %lu. Delete"
48516dd4ee7cSKalpak Shah 					" some EAs or run e2fsck.",
48526dd4ee7cSKalpak Shah 					inode->i_ino);
4853c1bddad9SAneesh Kumar K.V 					mnt_count =
4854c1bddad9SAneesh Kumar K.V 					  le16_to_cpu(sbi->s_es->s_mnt_count);
48556dd4ee7cSKalpak Shah 				}
48566dd4ee7cSKalpak Shah 			}
48576dd4ee7cSKalpak Shah 		}
48586dd4ee7cSKalpak Shah 	}
4859ac27a0ecSDave Kleikamp 	if (!err)
4860617ba13bSMingming Cao 		err = ext4_mark_iloc_dirty(handle, inode, &iloc);
4861ac27a0ecSDave Kleikamp 	return err;
4862ac27a0ecSDave Kleikamp }
4863ac27a0ecSDave Kleikamp 
4864ac27a0ecSDave Kleikamp /*
4865617ba13bSMingming Cao  * ext4_dirty_inode() is called from __mark_inode_dirty()
4866ac27a0ecSDave Kleikamp  *
4867ac27a0ecSDave Kleikamp  * We're really interested in the case where a file is being extended.
4868ac27a0ecSDave Kleikamp  * i_size has been changed by generic_commit_write() and we thus need
4869ac27a0ecSDave Kleikamp  * to include the updated inode in the current transaction.
4870ac27a0ecSDave Kleikamp  *
48715dd4056dSChristoph Hellwig  * Also, dquot_alloc_block() will always dirty the inode when blocks
4872ac27a0ecSDave Kleikamp  * are allocated to the file.
4873ac27a0ecSDave Kleikamp  *
4874ac27a0ecSDave Kleikamp  * If the inode is marked synchronous, we don't honour that here - doing
4875ac27a0ecSDave Kleikamp  * so would cause a commit on atime updates, which we don't bother doing.
4876ac27a0ecSDave Kleikamp  * We handle synchronous inodes at the highest possible level.
4877ac27a0ecSDave Kleikamp  */
4878aa385729SChristoph Hellwig void ext4_dirty_inode(struct inode *inode, int flags)
4879ac27a0ecSDave Kleikamp {
4880ac27a0ecSDave Kleikamp 	handle_t *handle;
4881ac27a0ecSDave Kleikamp 
48829924a92aSTheodore Ts'o 	handle = ext4_journal_start(inode, EXT4_HT_INODE, 2);
4883ac27a0ecSDave Kleikamp 	if (IS_ERR(handle))
4884ac27a0ecSDave Kleikamp 		goto out;
4885f3dc272fSCurt Wohlgemuth 
4886617ba13bSMingming Cao 	ext4_mark_inode_dirty(handle, inode);
4887f3dc272fSCurt Wohlgemuth 
4888617ba13bSMingming Cao 	ext4_journal_stop(handle);
4889ac27a0ecSDave Kleikamp out:
4890ac27a0ecSDave Kleikamp 	return;
4891ac27a0ecSDave Kleikamp }
4892ac27a0ecSDave Kleikamp 
4893ac27a0ecSDave Kleikamp #if 0
4894ac27a0ecSDave Kleikamp /*
4895ac27a0ecSDave Kleikamp  * Bind an inode's backing buffer_head into this transaction, to prevent
4896ac27a0ecSDave Kleikamp  * it from being flushed to disk early.  Unlike
4897617ba13bSMingming Cao  * ext4_reserve_inode_write, this leaves behind no bh reference and
4898ac27a0ecSDave Kleikamp  * returns no iloc structure, so the caller needs to repeat the iloc
4899ac27a0ecSDave Kleikamp  * lookup to mark the inode dirty later.
4900ac27a0ecSDave Kleikamp  */
4901617ba13bSMingming Cao static int ext4_pin_inode(handle_t *handle, struct inode *inode)
4902ac27a0ecSDave Kleikamp {
4903617ba13bSMingming Cao 	struct ext4_iloc iloc;
4904ac27a0ecSDave Kleikamp 
4905ac27a0ecSDave Kleikamp 	int err = 0;
4906ac27a0ecSDave Kleikamp 	if (handle) {
4907617ba13bSMingming Cao 		err = ext4_get_inode_loc(inode, &iloc);
4908ac27a0ecSDave Kleikamp 		if (!err) {
4909ac27a0ecSDave Kleikamp 			BUFFER_TRACE(iloc.bh, "get_write_access");
4910dab291afSMingming Cao 			err = jbd2_journal_get_write_access(handle, iloc.bh);
4911ac27a0ecSDave Kleikamp 			if (!err)
49120390131bSFrank Mayhar 				err = ext4_handle_dirty_metadata(handle,
491373b50c1cSCurt Wohlgemuth 								 NULL,
4914ac27a0ecSDave Kleikamp 								 iloc.bh);
4915ac27a0ecSDave Kleikamp 			brelse(iloc.bh);
4916ac27a0ecSDave Kleikamp 		}
4917ac27a0ecSDave Kleikamp 	}
4918617ba13bSMingming Cao 	ext4_std_error(inode->i_sb, err);
4919ac27a0ecSDave Kleikamp 	return err;
4920ac27a0ecSDave Kleikamp }
4921ac27a0ecSDave Kleikamp #endif
4922ac27a0ecSDave Kleikamp 
4923617ba13bSMingming Cao int ext4_change_inode_journal_flag(struct inode *inode, int val)
4924ac27a0ecSDave Kleikamp {
4925ac27a0ecSDave Kleikamp 	journal_t *journal;
4926ac27a0ecSDave Kleikamp 	handle_t *handle;
4927ac27a0ecSDave Kleikamp 	int err;
4928ac27a0ecSDave Kleikamp 
4929ac27a0ecSDave Kleikamp 	/*
4930ac27a0ecSDave Kleikamp 	 * We have to be very careful here: changing a data block's
4931ac27a0ecSDave Kleikamp 	 * journaling status dynamically is dangerous.  If we write a
4932ac27a0ecSDave Kleikamp 	 * data block to the journal, change the status and then delete
4933ac27a0ecSDave Kleikamp 	 * that block, we risk forgetting to revoke the old log record
4934ac27a0ecSDave Kleikamp 	 * from the journal and so a subsequent replay can corrupt data.
4935ac27a0ecSDave Kleikamp 	 * So, first we make sure that the journal is empty and that
4936ac27a0ecSDave Kleikamp 	 * nobody is changing anything.
4937ac27a0ecSDave Kleikamp 	 */
4938ac27a0ecSDave Kleikamp 
4939617ba13bSMingming Cao 	journal = EXT4_JOURNAL(inode);
49400390131bSFrank Mayhar 	if (!journal)
49410390131bSFrank Mayhar 		return 0;
4942d699594dSDave Hansen 	if (is_journal_aborted(journal))
4943ac27a0ecSDave Kleikamp 		return -EROFS;
49442aff57b0SYongqiang Yang 	/* We have to allocate physical blocks for delalloc blocks
49452aff57b0SYongqiang Yang 	 * before flushing journal. otherwise delalloc blocks can not
49462aff57b0SYongqiang Yang 	 * be allocated any more. even more truncate on delalloc blocks
49472aff57b0SYongqiang Yang 	 * could trigger BUG by flushing delalloc blocks in journal.
49482aff57b0SYongqiang Yang 	 * There is no delalloc block in non-journal data mode.
49492aff57b0SYongqiang Yang 	 */
49502aff57b0SYongqiang Yang 	if (val && test_opt(inode->i_sb, DELALLOC)) {
49512aff57b0SYongqiang Yang 		err = ext4_alloc_da_blocks(inode);
49522aff57b0SYongqiang Yang 		if (err < 0)
49532aff57b0SYongqiang Yang 			return err;
49542aff57b0SYongqiang Yang 	}
4955ac27a0ecSDave Kleikamp 
495617335dccSDmitry Monakhov 	/* Wait for all existing dio workers */
495717335dccSDmitry Monakhov 	ext4_inode_block_unlocked_dio(inode);
495817335dccSDmitry Monakhov 	inode_dio_wait(inode);
495917335dccSDmitry Monakhov 
4960dab291afSMingming Cao 	jbd2_journal_lock_updates(journal);
4961ac27a0ecSDave Kleikamp 
4962ac27a0ecSDave Kleikamp 	/*
4963ac27a0ecSDave Kleikamp 	 * OK, there are no updates running now, and all cached data is
4964ac27a0ecSDave Kleikamp 	 * synced to disk.  We are now in a completely consistent state
4965ac27a0ecSDave Kleikamp 	 * which doesn't have anything in the journal, and we know that
4966ac27a0ecSDave Kleikamp 	 * no filesystem updates are running, so it is safe to modify
4967ac27a0ecSDave Kleikamp 	 * the inode's in-core data-journaling state flag now.
4968ac27a0ecSDave Kleikamp 	 */
4969ac27a0ecSDave Kleikamp 
4970ac27a0ecSDave Kleikamp 	if (val)
497112e9b892SDmitry Monakhov 		ext4_set_inode_flag(inode, EXT4_INODE_JOURNAL_DATA);
49725872ddaaSYongqiang Yang 	else {
49735872ddaaSYongqiang Yang 		jbd2_journal_flush(journal);
497412e9b892SDmitry Monakhov 		ext4_clear_inode_flag(inode, EXT4_INODE_JOURNAL_DATA);
49755872ddaaSYongqiang Yang 	}
4976617ba13bSMingming Cao 	ext4_set_aops(inode);
4977ac27a0ecSDave Kleikamp 
4978dab291afSMingming Cao 	jbd2_journal_unlock_updates(journal);
497917335dccSDmitry Monakhov 	ext4_inode_resume_unlocked_dio(inode);
4980ac27a0ecSDave Kleikamp 
4981ac27a0ecSDave Kleikamp 	/* Finally we can mark the inode as dirty. */
4982ac27a0ecSDave Kleikamp 
49839924a92aSTheodore Ts'o 	handle = ext4_journal_start(inode, EXT4_HT_INODE, 1);
4984ac27a0ecSDave Kleikamp 	if (IS_ERR(handle))
4985ac27a0ecSDave Kleikamp 		return PTR_ERR(handle);
4986ac27a0ecSDave Kleikamp 
4987617ba13bSMingming Cao 	err = ext4_mark_inode_dirty(handle, inode);
49880390131bSFrank Mayhar 	ext4_handle_sync(handle);
4989617ba13bSMingming Cao 	ext4_journal_stop(handle);
4990617ba13bSMingming Cao 	ext4_std_error(inode->i_sb, err);
4991ac27a0ecSDave Kleikamp 
4992ac27a0ecSDave Kleikamp 	return err;
4993ac27a0ecSDave Kleikamp }
49942e9ee850SAneesh Kumar K.V 
49952e9ee850SAneesh Kumar K.V static int ext4_bh_unmapped(handle_t *handle, struct buffer_head *bh)
49962e9ee850SAneesh Kumar K.V {
49972e9ee850SAneesh Kumar K.V 	return !buffer_mapped(bh);
49982e9ee850SAneesh Kumar K.V }
49992e9ee850SAneesh Kumar K.V 
5000c2ec175cSNick Piggin int ext4_page_mkwrite(struct vm_area_struct *vma, struct vm_fault *vmf)
50012e9ee850SAneesh Kumar K.V {
5002c2ec175cSNick Piggin 	struct page *page = vmf->page;
50032e9ee850SAneesh Kumar K.V 	loff_t size;
50042e9ee850SAneesh Kumar K.V 	unsigned long len;
50059ea7df53SJan Kara 	int ret;
50062e9ee850SAneesh Kumar K.V 	struct file *file = vma->vm_file;
5007496ad9aaSAl Viro 	struct inode *inode = file_inode(file);
50082e9ee850SAneesh Kumar K.V 	struct address_space *mapping = inode->i_mapping;
50099ea7df53SJan Kara 	handle_t *handle;
50109ea7df53SJan Kara 	get_block_t *get_block;
50119ea7df53SJan Kara 	int retries = 0;
50122e9ee850SAneesh Kumar K.V 
50138e8ad8a5SJan Kara 	sb_start_pagefault(inode->i_sb);
5014041bbb6dSTheodore Ts'o 	file_update_time(vma->vm_file);
50159ea7df53SJan Kara 	/* Delalloc case is easy... */
50169ea7df53SJan Kara 	if (test_opt(inode->i_sb, DELALLOC) &&
50179ea7df53SJan Kara 	    !ext4_should_journal_data(inode) &&
50189ea7df53SJan Kara 	    !ext4_nonda_switch(inode->i_sb)) {
50199ea7df53SJan Kara 		do {
50209ea7df53SJan Kara 			ret = __block_page_mkwrite(vma, vmf,
50219ea7df53SJan Kara 						   ext4_da_get_block_prep);
50229ea7df53SJan Kara 		} while (ret == -ENOSPC &&
50239ea7df53SJan Kara 		       ext4_should_retry_alloc(inode->i_sb, &retries));
50249ea7df53SJan Kara 		goto out_ret;
50252e9ee850SAneesh Kumar K.V 	}
50260e499890SDarrick J. Wong 
50270e499890SDarrick J. Wong 	lock_page(page);
50289ea7df53SJan Kara 	size = i_size_read(inode);
50299ea7df53SJan Kara 	/* Page got truncated from under us? */
50309ea7df53SJan Kara 	if (page->mapping != mapping || page_offset(page) > size) {
50319ea7df53SJan Kara 		unlock_page(page);
50329ea7df53SJan Kara 		ret = VM_FAULT_NOPAGE;
50339ea7df53SJan Kara 		goto out;
50340e499890SDarrick J. Wong 	}
50352e9ee850SAneesh Kumar K.V 
50362e9ee850SAneesh Kumar K.V 	if (page->index == size >> PAGE_CACHE_SHIFT)
50372e9ee850SAneesh Kumar K.V 		len = size & ~PAGE_CACHE_MASK;
50382e9ee850SAneesh Kumar K.V 	else
50392e9ee850SAneesh Kumar K.V 		len = PAGE_CACHE_SIZE;
5040a827eaffSAneesh Kumar K.V 	/*
50419ea7df53SJan Kara 	 * Return if we have all the buffers mapped. This avoids the need to do
50429ea7df53SJan Kara 	 * journal_start/journal_stop which can block and take a long time
5043a827eaffSAneesh Kumar K.V 	 */
50442e9ee850SAneesh Kumar K.V 	if (page_has_buffers(page)) {
5045f19d5870STao Ma 		if (!ext4_walk_page_buffers(NULL, page_buffers(page),
5046f19d5870STao Ma 					    0, len, NULL,
5047a827eaffSAneesh Kumar K.V 					    ext4_bh_unmapped)) {
50489ea7df53SJan Kara 			/* Wait so that we don't change page under IO */
50491d1d1a76SDarrick J. Wong 			wait_for_stable_page(page);
50509ea7df53SJan Kara 			ret = VM_FAULT_LOCKED;
50519ea7df53SJan Kara 			goto out;
50522e9ee850SAneesh Kumar K.V 		}
5053a827eaffSAneesh Kumar K.V 	}
5054a827eaffSAneesh Kumar K.V 	unlock_page(page);
50559ea7df53SJan Kara 	/* OK, we need to fill the hole... */
50569ea7df53SJan Kara 	if (ext4_should_dioread_nolock(inode))
50579ea7df53SJan Kara 		get_block = ext4_get_block_write;
50589ea7df53SJan Kara 	else
50599ea7df53SJan Kara 		get_block = ext4_get_block;
50609ea7df53SJan Kara retry_alloc:
50619924a92aSTheodore Ts'o 	handle = ext4_journal_start(inode, EXT4_HT_WRITE_PAGE,
50629924a92aSTheodore Ts'o 				    ext4_writepage_trans_blocks(inode));
50639ea7df53SJan Kara 	if (IS_ERR(handle)) {
5064c2ec175cSNick Piggin 		ret = VM_FAULT_SIGBUS;
50659ea7df53SJan Kara 		goto out;
50669ea7df53SJan Kara 	}
50679ea7df53SJan Kara 	ret = __block_page_mkwrite(vma, vmf, get_block);
50689ea7df53SJan Kara 	if (!ret && ext4_should_journal_data(inode)) {
5069f19d5870STao Ma 		if (ext4_walk_page_buffers(handle, page_buffers(page), 0,
50709ea7df53SJan Kara 			  PAGE_CACHE_SIZE, NULL, do_journal_get_write_access)) {
50719ea7df53SJan Kara 			unlock_page(page);
50729ea7df53SJan Kara 			ret = VM_FAULT_SIGBUS;
5073fcbb5515SYongqiang Yang 			ext4_journal_stop(handle);
50749ea7df53SJan Kara 			goto out;
50759ea7df53SJan Kara 		}
50769ea7df53SJan Kara 		ext4_set_inode_state(inode, EXT4_STATE_JDATA);
50779ea7df53SJan Kara 	}
50789ea7df53SJan Kara 	ext4_journal_stop(handle);
50799ea7df53SJan Kara 	if (ret == -ENOSPC && ext4_should_retry_alloc(inode->i_sb, &retries))
50809ea7df53SJan Kara 		goto retry_alloc;
50819ea7df53SJan Kara out_ret:
50829ea7df53SJan Kara 	ret = block_page_mkwrite_return(ret);
50839ea7df53SJan Kara out:
50848e8ad8a5SJan Kara 	sb_end_pagefault(inode->i_sb);
50852e9ee850SAneesh Kumar K.V 	return ret;
50862e9ee850SAneesh Kumar K.V }
5087