xref: /openbmc/linux/fs/ext4/inode.c (revision 0ae45f63d4ef8d8eeec49c7d8b44a1775fff13e8)
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) ||
869aa5d32bSDmitry Monakhov 	    !ext4_has_metadata_csum(inode->i_sb))
87814525f4SDarrick J. Wong 		return 1;
88814525f4SDarrick J. Wong 
89814525f4SDarrick J. Wong 	provided = le16_to_cpu(raw->i_checksum_lo);
90814525f4SDarrick J. Wong 	calculated = ext4_inode_csum(inode, raw, ei);
91814525f4SDarrick J. Wong 	if (EXT4_INODE_SIZE(inode->i_sb) > EXT4_GOOD_OLD_INODE_SIZE &&
92814525f4SDarrick J. Wong 	    EXT4_FITS_IN_INODE(raw, ei, i_checksum_hi))
93814525f4SDarrick J. Wong 		provided |= ((__u32)le16_to_cpu(raw->i_checksum_hi)) << 16;
94814525f4SDarrick J. Wong 	else
95814525f4SDarrick J. Wong 		calculated &= 0xFFFF;
96814525f4SDarrick J. Wong 
97814525f4SDarrick J. Wong 	return provided == calculated;
98814525f4SDarrick J. Wong }
99814525f4SDarrick J. Wong 
100814525f4SDarrick J. Wong static void ext4_inode_csum_set(struct inode *inode, struct ext4_inode *raw,
101814525f4SDarrick J. Wong 				struct ext4_inode_info *ei)
102814525f4SDarrick J. Wong {
103814525f4SDarrick J. Wong 	__u32 csum;
104814525f4SDarrick J. Wong 
105814525f4SDarrick J. Wong 	if (EXT4_SB(inode->i_sb)->s_es->s_creator_os !=
106814525f4SDarrick J. Wong 	    cpu_to_le32(EXT4_OS_LINUX) ||
1079aa5d32bSDmitry Monakhov 	    !ext4_has_metadata_csum(inode->i_sb))
108814525f4SDarrick J. Wong 		return;
109814525f4SDarrick J. Wong 
110814525f4SDarrick J. Wong 	csum = ext4_inode_csum(inode, raw, ei);
111814525f4SDarrick J. Wong 	raw->i_checksum_lo = cpu_to_le16(csum & 0xFFFF);
112814525f4SDarrick J. Wong 	if (EXT4_INODE_SIZE(inode->i_sb) > EXT4_GOOD_OLD_INODE_SIZE &&
113814525f4SDarrick J. Wong 	    EXT4_FITS_IN_INODE(raw, ei, i_checksum_hi))
114814525f4SDarrick J. Wong 		raw->i_checksum_hi = cpu_to_le16(csum >> 16);
115814525f4SDarrick J. Wong }
116814525f4SDarrick J. Wong 
117678aaf48SJan Kara static inline int ext4_begin_ordered_truncate(struct inode *inode,
118678aaf48SJan Kara 					      loff_t new_size)
119678aaf48SJan Kara {
1207ff9c073STheodore Ts'o 	trace_ext4_begin_ordered_truncate(inode, new_size);
1218aefcd55STheodore Ts'o 	/*
1228aefcd55STheodore Ts'o 	 * If jinode is zero, then we never opened the file for
1238aefcd55STheodore Ts'o 	 * writing, so there's no need to call
1248aefcd55STheodore Ts'o 	 * jbd2_journal_begin_ordered_truncate() since there's no
1258aefcd55STheodore Ts'o 	 * outstanding writes we need to flush.
1268aefcd55STheodore Ts'o 	 */
1278aefcd55STheodore Ts'o 	if (!EXT4_I(inode)->jinode)
1288aefcd55STheodore Ts'o 		return 0;
1298aefcd55STheodore Ts'o 	return jbd2_journal_begin_ordered_truncate(EXT4_JOURNAL(inode),
1308aefcd55STheodore Ts'o 						   EXT4_I(inode)->jinode,
131678aaf48SJan Kara 						   new_size);
132678aaf48SJan Kara }
133678aaf48SJan Kara 
134d47992f8SLukas Czerner static void ext4_invalidatepage(struct page *page, unsigned int offset,
135d47992f8SLukas Czerner 				unsigned int length);
136cb20d518STheodore Ts'o static int __ext4_journalled_writepage(struct page *page, unsigned int len);
137cb20d518STheodore Ts'o static int ext4_bh_delay_or_unwritten(handle_t *handle, struct buffer_head *bh);
138fffb2739SJan Kara static int ext4_meta_trans_blocks(struct inode *inode, int lblocks,
139fffb2739SJan Kara 				  int pextents);
14064769240SAlex Tomas 
141ac27a0ecSDave Kleikamp /*
142ac27a0ecSDave Kleikamp  * Test whether an inode is a fast symlink.
143ac27a0ecSDave Kleikamp  */
144617ba13bSMingming Cao static int ext4_inode_is_fast_symlink(struct inode *inode)
145ac27a0ecSDave Kleikamp {
146617ba13bSMingming Cao         int ea_blocks = EXT4_I(inode)->i_file_acl ?
14765eddb56SYongqiang Yang 		EXT4_CLUSTER_SIZE(inode->i_sb) >> 9 : 0;
148ac27a0ecSDave Kleikamp 
149bd9db175SZheng Liu 	if (ext4_has_inline_data(inode))
150bd9db175SZheng Liu 		return 0;
151bd9db175SZheng Liu 
152ac27a0ecSDave Kleikamp 	return (S_ISLNK(inode->i_mode) && inode->i_blocks - ea_blocks == 0);
153ac27a0ecSDave Kleikamp }
154ac27a0ecSDave Kleikamp 
155ac27a0ecSDave Kleikamp /*
156ac27a0ecSDave Kleikamp  * Restart the transaction associated with *handle.  This does a commit,
157ac27a0ecSDave Kleikamp  * so before we call here everything must be consistently dirtied against
158ac27a0ecSDave Kleikamp  * this transaction.
159ac27a0ecSDave Kleikamp  */
160487caeefSJan Kara int ext4_truncate_restart_trans(handle_t *handle, struct inode *inode,
161487caeefSJan Kara 				 int nblocks)
162ac27a0ecSDave Kleikamp {
163487caeefSJan Kara 	int ret;
164487caeefSJan Kara 
165487caeefSJan Kara 	/*
166e35fd660STheodore Ts'o 	 * Drop i_data_sem to avoid deadlock with ext4_map_blocks.  At this
167487caeefSJan Kara 	 * moment, get_block can be called only for blocks inside i_size since
168487caeefSJan Kara 	 * page cache has been already dropped and writes are blocked by
169487caeefSJan Kara 	 * i_mutex. So we can safely drop the i_data_sem here.
170487caeefSJan Kara 	 */
1710390131bSFrank Mayhar 	BUG_ON(EXT4_JOURNAL(inode) == NULL);
172ac27a0ecSDave Kleikamp 	jbd_debug(2, "restarting handle %p\n", handle);
173487caeefSJan Kara 	up_write(&EXT4_I(inode)->i_data_sem);
1748e8eaabeSAmir Goldstein 	ret = ext4_journal_restart(handle, nblocks);
175487caeefSJan Kara 	down_write(&EXT4_I(inode)->i_data_sem);
176fa5d1113SAneesh Kumar K.V 	ext4_discard_preallocations(inode);
177487caeefSJan Kara 
178487caeefSJan Kara 	return ret;
179ac27a0ecSDave Kleikamp }
180ac27a0ecSDave Kleikamp 
181ac27a0ecSDave Kleikamp /*
182ac27a0ecSDave Kleikamp  * Called at the last iput() if i_nlink is zero.
183ac27a0ecSDave Kleikamp  */
1840930fcc1SAl Viro void ext4_evict_inode(struct inode *inode)
185ac27a0ecSDave Kleikamp {
186ac27a0ecSDave Kleikamp 	handle_t *handle;
187bc965ab3STheodore Ts'o 	int err;
188ac27a0ecSDave Kleikamp 
1897ff9c073STheodore Ts'o 	trace_ext4_evict_inode(inode);
1902581fdc8SJiaying Zhang 
1910930fcc1SAl Viro 	if (inode->i_nlink) {
1922d859db3SJan Kara 		/*
1932d859db3SJan Kara 		 * When journalling data dirty buffers are tracked only in the
1942d859db3SJan Kara 		 * journal. So although mm thinks everything is clean and
1952d859db3SJan Kara 		 * ready for reaping the inode might still have some pages to
1962d859db3SJan Kara 		 * write in the running transaction or waiting to be
1972d859db3SJan Kara 		 * checkpointed. Thus calling jbd2_journal_invalidatepage()
1982d859db3SJan Kara 		 * (via truncate_inode_pages()) to discard these buffers can
1992d859db3SJan Kara 		 * cause data loss. Also even if we did not discard these
2002d859db3SJan Kara 		 * buffers, we would have no way to find them after the inode
2012d859db3SJan Kara 		 * is reaped and thus user could see stale data if he tries to
2022d859db3SJan Kara 		 * read them before the transaction is checkpointed. So be
2032d859db3SJan Kara 		 * careful and force everything to disk here... We use
2042d859db3SJan Kara 		 * ei->i_datasync_tid to store the newest transaction
2052d859db3SJan Kara 		 * containing inode's data.
2062d859db3SJan Kara 		 *
2072d859db3SJan Kara 		 * Note that directories do not have this problem because they
2082d859db3SJan Kara 		 * don't use page cache.
2092d859db3SJan Kara 		 */
2102d859db3SJan Kara 		if (ext4_should_journal_data(inode) &&
2112b405bfaSTheodore Ts'o 		    (S_ISLNK(inode->i_mode) || S_ISREG(inode->i_mode)) &&
2122b405bfaSTheodore Ts'o 		    inode->i_ino != EXT4_JOURNAL_INO) {
2132d859db3SJan Kara 			journal_t *journal = EXT4_SB(inode->i_sb)->s_journal;
2142d859db3SJan Kara 			tid_t commit_tid = EXT4_I(inode)->i_datasync_tid;
2152d859db3SJan Kara 
216d76a3a77STheodore Ts'o 			jbd2_complete_transaction(journal, commit_tid);
2172d859db3SJan Kara 			filemap_write_and_wait(&inode->i_data);
2182d859db3SJan Kara 		}
21991b0abe3SJohannes Weiner 		truncate_inode_pages_final(&inode->i_data);
2205dc23bddSJan Kara 
2215dc23bddSJan Kara 		WARN_ON(atomic_read(&EXT4_I(inode)->i_ioend_count));
2220930fcc1SAl Viro 		goto no_delete;
2230930fcc1SAl Viro 	}
2240930fcc1SAl Viro 
225e2bfb088STheodore Ts'o 	if (is_bad_inode(inode))
226e2bfb088STheodore Ts'o 		goto no_delete;
227871a2931SChristoph Hellwig 	dquot_initialize(inode);
228907f4554SChristoph Hellwig 
229678aaf48SJan Kara 	if (ext4_should_order_data(inode))
230678aaf48SJan Kara 		ext4_begin_ordered_truncate(inode, 0);
23191b0abe3SJohannes Weiner 	truncate_inode_pages_final(&inode->i_data);
232ac27a0ecSDave Kleikamp 
2335dc23bddSJan Kara 	WARN_ON(atomic_read(&EXT4_I(inode)->i_ioend_count));
234ac27a0ecSDave Kleikamp 
2358e8ad8a5SJan Kara 	/*
2368e8ad8a5SJan Kara 	 * Protect us against freezing - iput() caller didn't have to have any
2378e8ad8a5SJan Kara 	 * protection against it
2388e8ad8a5SJan Kara 	 */
2398e8ad8a5SJan Kara 	sb_start_intwrite(inode->i_sb);
2409924a92aSTheodore Ts'o 	handle = ext4_journal_start(inode, EXT4_HT_TRUNCATE,
2419924a92aSTheodore Ts'o 				    ext4_blocks_for_truncate(inode)+3);
242ac27a0ecSDave Kleikamp 	if (IS_ERR(handle)) {
243bc965ab3STheodore Ts'o 		ext4_std_error(inode->i_sb, PTR_ERR(handle));
244ac27a0ecSDave Kleikamp 		/*
245ac27a0ecSDave Kleikamp 		 * If we're going to skip the normal cleanup, we still need to
246ac27a0ecSDave Kleikamp 		 * make sure that the in-core orphan linked list is properly
247ac27a0ecSDave Kleikamp 		 * cleaned up.
248ac27a0ecSDave Kleikamp 		 */
249617ba13bSMingming Cao 		ext4_orphan_del(NULL, inode);
2508e8ad8a5SJan Kara 		sb_end_intwrite(inode->i_sb);
251ac27a0ecSDave Kleikamp 		goto no_delete;
252ac27a0ecSDave Kleikamp 	}
253ac27a0ecSDave Kleikamp 
254ac27a0ecSDave Kleikamp 	if (IS_SYNC(inode))
2550390131bSFrank Mayhar 		ext4_handle_sync(handle);
256ac27a0ecSDave Kleikamp 	inode->i_size = 0;
257bc965ab3STheodore Ts'o 	err = ext4_mark_inode_dirty(handle, inode);
258bc965ab3STheodore Ts'o 	if (err) {
25912062dddSEric Sandeen 		ext4_warning(inode->i_sb,
260bc965ab3STheodore Ts'o 			     "couldn't mark inode dirty (err %d)", err);
261bc965ab3STheodore Ts'o 		goto stop_handle;
262bc965ab3STheodore Ts'o 	}
263ac27a0ecSDave Kleikamp 	if (inode->i_blocks)
264617ba13bSMingming Cao 		ext4_truncate(inode);
265bc965ab3STheodore Ts'o 
266bc965ab3STheodore Ts'o 	/*
267bc965ab3STheodore Ts'o 	 * ext4_ext_truncate() doesn't reserve any slop when it
268bc965ab3STheodore Ts'o 	 * restarts journal transactions; therefore there may not be
269bc965ab3STheodore Ts'o 	 * enough credits left in the handle to remove the inode from
270bc965ab3STheodore Ts'o 	 * the orphan list and set the dtime field.
271bc965ab3STheodore Ts'o 	 */
2720390131bSFrank Mayhar 	if (!ext4_handle_has_enough_credits(handle, 3)) {
273bc965ab3STheodore Ts'o 		err = ext4_journal_extend(handle, 3);
274bc965ab3STheodore Ts'o 		if (err > 0)
275bc965ab3STheodore Ts'o 			err = ext4_journal_restart(handle, 3);
276bc965ab3STheodore Ts'o 		if (err != 0) {
27712062dddSEric Sandeen 			ext4_warning(inode->i_sb,
278bc965ab3STheodore Ts'o 				     "couldn't extend journal (err %d)", err);
279bc965ab3STheodore Ts'o 		stop_handle:
280bc965ab3STheodore Ts'o 			ext4_journal_stop(handle);
28145388219STheodore Ts'o 			ext4_orphan_del(NULL, inode);
2828e8ad8a5SJan Kara 			sb_end_intwrite(inode->i_sb);
283bc965ab3STheodore Ts'o 			goto no_delete;
284bc965ab3STheodore Ts'o 		}
285bc965ab3STheodore Ts'o 	}
286bc965ab3STheodore Ts'o 
287ac27a0ecSDave Kleikamp 	/*
288617ba13bSMingming Cao 	 * Kill off the orphan record which ext4_truncate created.
289ac27a0ecSDave Kleikamp 	 * AKPM: I think this can be inside the above `if'.
290617ba13bSMingming Cao 	 * Note that ext4_orphan_del() has to be able to cope with the
291ac27a0ecSDave Kleikamp 	 * deletion of a non-existent orphan - this is because we don't
292617ba13bSMingming Cao 	 * know if ext4_truncate() actually created an orphan record.
293ac27a0ecSDave Kleikamp 	 * (Well, we could do this if we need to, but heck - it works)
294ac27a0ecSDave Kleikamp 	 */
295617ba13bSMingming Cao 	ext4_orphan_del(handle, inode);
296617ba13bSMingming Cao 	EXT4_I(inode)->i_dtime	= get_seconds();
297ac27a0ecSDave Kleikamp 
298ac27a0ecSDave Kleikamp 	/*
299ac27a0ecSDave Kleikamp 	 * One subtle ordering requirement: if anything has gone wrong
300ac27a0ecSDave Kleikamp 	 * (transaction abort, IO errors, whatever), then we can still
301ac27a0ecSDave Kleikamp 	 * do these next steps (the fs will already have been marked as
302ac27a0ecSDave Kleikamp 	 * having errors), but we can't free the inode if the mark_dirty
303ac27a0ecSDave Kleikamp 	 * fails.
304ac27a0ecSDave Kleikamp 	 */
305617ba13bSMingming Cao 	if (ext4_mark_inode_dirty(handle, inode))
306ac27a0ecSDave Kleikamp 		/* If that failed, just do the required in-core inode clear. */
3070930fcc1SAl Viro 		ext4_clear_inode(inode);
308ac27a0ecSDave Kleikamp 	else
309617ba13bSMingming Cao 		ext4_free_inode(handle, inode);
310617ba13bSMingming Cao 	ext4_journal_stop(handle);
3118e8ad8a5SJan Kara 	sb_end_intwrite(inode->i_sb);
312ac27a0ecSDave Kleikamp 	return;
313ac27a0ecSDave Kleikamp no_delete:
3140930fcc1SAl Viro 	ext4_clear_inode(inode);	/* We must guarantee clearing of inode... */
315ac27a0ecSDave Kleikamp }
316ac27a0ecSDave Kleikamp 
317a9e7f447SDmitry Monakhov #ifdef CONFIG_QUOTA
318a9e7f447SDmitry Monakhov qsize_t *ext4_get_reserved_space(struct inode *inode)
31960e58e0fSMingming Cao {
320a9e7f447SDmitry Monakhov 	return &EXT4_I(inode)->i_reserved_quota;
32160e58e0fSMingming Cao }
322a9e7f447SDmitry Monakhov #endif
3239d0be502STheodore Ts'o 
32412219aeaSAneesh Kumar K.V /*
3250637c6f4STheodore Ts'o  * Called with i_data_sem down, which is important since we can call
3260637c6f4STheodore Ts'o  * ext4_discard_preallocations() from here.
3270637c6f4STheodore Ts'o  */
3285f634d06SAneesh Kumar K.V void ext4_da_update_reserve_space(struct inode *inode,
3295f634d06SAneesh Kumar K.V 					int used, int quota_claim)
33012219aeaSAneesh Kumar K.V {
33112219aeaSAneesh Kumar K.V 	struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb);
3320637c6f4STheodore Ts'o 	struct ext4_inode_info *ei = EXT4_I(inode);
33312219aeaSAneesh Kumar K.V 
3340637c6f4STheodore Ts'o 	spin_lock(&ei->i_block_reservation_lock);
335d8990240SAditya Kali 	trace_ext4_da_update_reserve_space(inode, used, quota_claim);
3360637c6f4STheodore Ts'o 	if (unlikely(used > ei->i_reserved_data_blocks)) {
3378de5c325STheodore Ts'o 		ext4_warning(inode->i_sb, "%s: ino %lu, used %d "
3381084f252STheodore Ts'o 			 "with only %d reserved data blocks",
3390637c6f4STheodore Ts'o 			 __func__, inode->i_ino, used,
3400637c6f4STheodore Ts'o 			 ei->i_reserved_data_blocks);
3410637c6f4STheodore Ts'o 		WARN_ON(1);
3420637c6f4STheodore Ts'o 		used = ei->i_reserved_data_blocks;
3436bc6e63fSAneesh Kumar K.V 	}
34412219aeaSAneesh Kumar K.V 
3450637c6f4STheodore Ts'o 	/* Update per-inode reservations */
3460637c6f4STheodore Ts'o 	ei->i_reserved_data_blocks -= used;
34771d4f7d0STheodore Ts'o 	percpu_counter_sub(&sbi->s_dirtyclusters_counter, used);
3480637c6f4STheodore Ts'o 
34912219aeaSAneesh Kumar K.V 	spin_unlock(&EXT4_I(inode)->i_block_reservation_lock);
35060e58e0fSMingming Cao 
35172b8ab9dSEric Sandeen 	/* Update quota subsystem for data blocks */
35272b8ab9dSEric Sandeen 	if (quota_claim)
3537b415bf6SAditya Kali 		dquot_claim_block(inode, EXT4_C2B(sbi, used));
35472b8ab9dSEric Sandeen 	else {
3555f634d06SAneesh Kumar K.V 		/*
3565f634d06SAneesh Kumar K.V 		 * We did fallocate with an offset that is already delayed
3575f634d06SAneesh Kumar K.V 		 * allocated. So on delayed allocated writeback we should
35872b8ab9dSEric Sandeen 		 * not re-claim the quota for fallocated blocks.
3595f634d06SAneesh Kumar K.V 		 */
3607b415bf6SAditya Kali 		dquot_release_reservation_block(inode, EXT4_C2B(sbi, used));
3615f634d06SAneesh Kumar K.V 	}
362d6014301SAneesh Kumar K.V 
363d6014301SAneesh Kumar K.V 	/*
364d6014301SAneesh Kumar K.V 	 * If we have done all the pending block allocations and if
365d6014301SAneesh Kumar K.V 	 * there aren't any writers on the inode, we can discard the
366d6014301SAneesh Kumar K.V 	 * inode's preallocations.
367d6014301SAneesh Kumar K.V 	 */
3680637c6f4STheodore Ts'o 	if ((ei->i_reserved_data_blocks == 0) &&
3690637c6f4STheodore Ts'o 	    (atomic_read(&inode->i_writecount) == 0))
370d6014301SAneesh Kumar K.V 		ext4_discard_preallocations(inode);
37112219aeaSAneesh Kumar K.V }
37212219aeaSAneesh Kumar K.V 
373e29136f8STheodore Ts'o static int __check_block_validity(struct inode *inode, const char *func,
374c398eda0STheodore Ts'o 				unsigned int line,
37524676da4STheodore Ts'o 				struct ext4_map_blocks *map)
3766fd058f7STheodore Ts'o {
37724676da4STheodore Ts'o 	if (!ext4_data_block_valid(EXT4_SB(inode->i_sb), map->m_pblk,
37824676da4STheodore Ts'o 				   map->m_len)) {
379c398eda0STheodore Ts'o 		ext4_error_inode(inode, func, line, map->m_pblk,
380c398eda0STheodore Ts'o 				 "lblock %lu mapped to illegal pblock "
38124676da4STheodore Ts'o 				 "(length %d)", (unsigned long) map->m_lblk,
382c398eda0STheodore Ts'o 				 map->m_len);
3836fd058f7STheodore Ts'o 		return -EIO;
3846fd058f7STheodore Ts'o 	}
3856fd058f7STheodore Ts'o 	return 0;
3866fd058f7STheodore Ts'o }
3876fd058f7STheodore Ts'o 
388e29136f8STheodore Ts'o #define check_block_validity(inode, map)	\
389c398eda0STheodore Ts'o 	__check_block_validity((inode), __func__, __LINE__, (map))
390e29136f8STheodore Ts'o 
391921f266bSDmitry Monakhov #ifdef ES_AGGRESSIVE_TEST
392921f266bSDmitry Monakhov static void ext4_map_blocks_es_recheck(handle_t *handle,
393921f266bSDmitry Monakhov 				       struct inode *inode,
394921f266bSDmitry Monakhov 				       struct ext4_map_blocks *es_map,
395921f266bSDmitry Monakhov 				       struct ext4_map_blocks *map,
396921f266bSDmitry Monakhov 				       int flags)
397921f266bSDmitry Monakhov {
398921f266bSDmitry Monakhov 	int retval;
399921f266bSDmitry Monakhov 
400921f266bSDmitry Monakhov 	map->m_flags = 0;
401921f266bSDmitry Monakhov 	/*
402921f266bSDmitry Monakhov 	 * There is a race window that the result is not the same.
403921f266bSDmitry Monakhov 	 * e.g. xfstests #223 when dioread_nolock enables.  The reason
404921f266bSDmitry Monakhov 	 * is that we lookup a block mapping in extent status tree with
405921f266bSDmitry Monakhov 	 * out taking i_data_sem.  So at the time the unwritten extent
406921f266bSDmitry Monakhov 	 * could be converted.
407921f266bSDmitry Monakhov 	 */
408921f266bSDmitry Monakhov 	if (!(flags & EXT4_GET_BLOCKS_NO_LOCK))
409c8b459f4SLukas Czerner 		down_read(&EXT4_I(inode)->i_data_sem);
410921f266bSDmitry Monakhov 	if (ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS)) {
411921f266bSDmitry Monakhov 		retval = ext4_ext_map_blocks(handle, inode, map, flags &
412921f266bSDmitry Monakhov 					     EXT4_GET_BLOCKS_KEEP_SIZE);
413921f266bSDmitry Monakhov 	} else {
414921f266bSDmitry Monakhov 		retval = ext4_ind_map_blocks(handle, inode, map, flags &
415921f266bSDmitry Monakhov 					     EXT4_GET_BLOCKS_KEEP_SIZE);
416921f266bSDmitry Monakhov 	}
417921f266bSDmitry Monakhov 	if (!(flags & EXT4_GET_BLOCKS_NO_LOCK))
418921f266bSDmitry Monakhov 		up_read((&EXT4_I(inode)->i_data_sem));
419921f266bSDmitry Monakhov 
420921f266bSDmitry Monakhov 	/*
421921f266bSDmitry Monakhov 	 * We don't check m_len because extent will be collpased in status
422921f266bSDmitry Monakhov 	 * tree.  So the m_len might not equal.
423921f266bSDmitry Monakhov 	 */
424921f266bSDmitry Monakhov 	if (es_map->m_lblk != map->m_lblk ||
425921f266bSDmitry Monakhov 	    es_map->m_flags != map->m_flags ||
426921f266bSDmitry Monakhov 	    es_map->m_pblk != map->m_pblk) {
427bdafe42aSTheodore Ts'o 		printk("ES cache assertion failed for inode: %lu "
428921f266bSDmitry Monakhov 		       "es_cached ex [%d/%d/%llu/%x] != "
429921f266bSDmitry Monakhov 		       "found ex [%d/%d/%llu/%x] retval %d flags %x\n",
430921f266bSDmitry Monakhov 		       inode->i_ino, es_map->m_lblk, es_map->m_len,
431921f266bSDmitry Monakhov 		       es_map->m_pblk, es_map->m_flags, map->m_lblk,
432921f266bSDmitry Monakhov 		       map->m_len, map->m_pblk, map->m_flags,
433921f266bSDmitry Monakhov 		       retval, flags);
434921f266bSDmitry Monakhov 	}
435921f266bSDmitry Monakhov }
436921f266bSDmitry Monakhov #endif /* ES_AGGRESSIVE_TEST */
437921f266bSDmitry Monakhov 
43855138e0bSTheodore Ts'o /*
439e35fd660STheodore Ts'o  * The ext4_map_blocks() function tries to look up the requested blocks,
4402b2d6d01STheodore Ts'o  * and returns if the blocks are already mapped.
441f5ab0d1fSMingming Cao  *
442f5ab0d1fSMingming Cao  * Otherwise it takes the write lock of the i_data_sem and allocate blocks
443f5ab0d1fSMingming Cao  * and store the allocated blocks in the result buffer head and mark it
444f5ab0d1fSMingming Cao  * mapped.
445f5ab0d1fSMingming Cao  *
446e35fd660STheodore Ts'o  * If file type is extents based, it will call ext4_ext_map_blocks(),
447e35fd660STheodore Ts'o  * Otherwise, call with ext4_ind_map_blocks() to handle indirect mapping
448f5ab0d1fSMingming Cao  * based files
449f5ab0d1fSMingming Cao  *
450556615dcSLukas Czerner  * On success, it returns the number of blocks being mapped or allocated.
451556615dcSLukas Czerner  * if create==0 and the blocks are pre-allocated and unwritten block,
452f5ab0d1fSMingming Cao  * the result buffer head is unmapped. If the create ==1, it will make sure
453f5ab0d1fSMingming Cao  * the buffer head is mapped.
454f5ab0d1fSMingming Cao  *
455f5ab0d1fSMingming Cao  * It returns 0 if plain look up failed (blocks have not been allocated), in
456df3ab170STao Ma  * that case, buffer head is unmapped
457f5ab0d1fSMingming Cao  *
458f5ab0d1fSMingming Cao  * It returns the error in case of allocation failure.
459f5ab0d1fSMingming Cao  */
460e35fd660STheodore Ts'o int ext4_map_blocks(handle_t *handle, struct inode *inode,
461e35fd660STheodore Ts'o 		    struct ext4_map_blocks *map, int flags)
4620e855ac8SAneesh Kumar K.V {
463d100eef2SZheng Liu 	struct extent_status es;
4640e855ac8SAneesh Kumar K.V 	int retval;
465b8a86845SLukas Czerner 	int ret = 0;
466921f266bSDmitry Monakhov #ifdef ES_AGGRESSIVE_TEST
467921f266bSDmitry Monakhov 	struct ext4_map_blocks orig_map;
468921f266bSDmitry Monakhov 
469921f266bSDmitry Monakhov 	memcpy(&orig_map, map, sizeof(*map));
470921f266bSDmitry Monakhov #endif
471f5ab0d1fSMingming Cao 
472e35fd660STheodore Ts'o 	map->m_flags = 0;
473e35fd660STheodore Ts'o 	ext_debug("ext4_map_blocks(): inode %lu, flag %d, max_blocks %u,"
474e35fd660STheodore Ts'o 		  "logical block %lu\n", inode->i_ino, flags, map->m_len,
475e35fd660STheodore Ts'o 		  (unsigned long) map->m_lblk);
476d100eef2SZheng Liu 
477e861b5e9STheodore Ts'o 	/*
478e861b5e9STheodore Ts'o 	 * ext4_map_blocks returns an int, and m_len is an unsigned int
479e861b5e9STheodore Ts'o 	 */
480e861b5e9STheodore Ts'o 	if (unlikely(map->m_len > INT_MAX))
481e861b5e9STheodore Ts'o 		map->m_len = INT_MAX;
482e861b5e9STheodore Ts'o 
4834adb6ab3SKazuya Mio 	/* We can handle the block number less than EXT_MAX_BLOCKS */
4844adb6ab3SKazuya Mio 	if (unlikely(map->m_lblk >= EXT_MAX_BLOCKS))
4854adb6ab3SKazuya Mio 		return -EIO;
4864adb6ab3SKazuya Mio 
487d100eef2SZheng Liu 	/* Lookup extent status tree firstly */
488d100eef2SZheng Liu 	if (ext4_es_lookup_extent(inode, map->m_lblk, &es)) {
489d100eef2SZheng Liu 		if (ext4_es_is_written(&es) || ext4_es_is_unwritten(&es)) {
490d100eef2SZheng Liu 			map->m_pblk = ext4_es_pblock(&es) +
491d100eef2SZheng Liu 					map->m_lblk - es.es_lblk;
492d100eef2SZheng Liu 			map->m_flags |= ext4_es_is_written(&es) ?
493d100eef2SZheng Liu 					EXT4_MAP_MAPPED : EXT4_MAP_UNWRITTEN;
494d100eef2SZheng Liu 			retval = es.es_len - (map->m_lblk - es.es_lblk);
495d100eef2SZheng Liu 			if (retval > map->m_len)
496d100eef2SZheng Liu 				retval = map->m_len;
497d100eef2SZheng Liu 			map->m_len = retval;
498d100eef2SZheng Liu 		} else if (ext4_es_is_delayed(&es) || ext4_es_is_hole(&es)) {
499d100eef2SZheng Liu 			retval = 0;
500d100eef2SZheng Liu 		} else {
501d100eef2SZheng Liu 			BUG_ON(1);
502d100eef2SZheng Liu 		}
503921f266bSDmitry Monakhov #ifdef ES_AGGRESSIVE_TEST
504921f266bSDmitry Monakhov 		ext4_map_blocks_es_recheck(handle, inode, map,
505921f266bSDmitry Monakhov 					   &orig_map, flags);
506921f266bSDmitry Monakhov #endif
507d100eef2SZheng Liu 		goto found;
508d100eef2SZheng Liu 	}
509d100eef2SZheng Liu 
5104df3d265SAneesh Kumar K.V 	/*
511b920c755STheodore Ts'o 	 * Try to see if we can get the block without requesting a new
512b920c755STheodore Ts'o 	 * file system block.
5134df3d265SAneesh Kumar K.V 	 */
514729f52c6SZheng Liu 	if (!(flags & EXT4_GET_BLOCKS_NO_LOCK))
515c8b459f4SLukas Czerner 		down_read(&EXT4_I(inode)->i_data_sem);
51612e9b892SDmitry Monakhov 	if (ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS)) {
517a4e5d88bSDmitry Monakhov 		retval = ext4_ext_map_blocks(handle, inode, map, flags &
518a4e5d88bSDmitry Monakhov 					     EXT4_GET_BLOCKS_KEEP_SIZE);
5194df3d265SAneesh Kumar K.V 	} else {
520a4e5d88bSDmitry Monakhov 		retval = ext4_ind_map_blocks(handle, inode, map, flags &
521a4e5d88bSDmitry Monakhov 					     EXT4_GET_BLOCKS_KEEP_SIZE);
5220e855ac8SAneesh Kumar K.V 	}
523f7fec032SZheng Liu 	if (retval > 0) {
5243be78c73STheodore Ts'o 		unsigned int status;
525f7fec032SZheng Liu 
52644fb851dSZheng Liu 		if (unlikely(retval != map->m_len)) {
52744fb851dSZheng Liu 			ext4_warning(inode->i_sb,
52844fb851dSZheng Liu 				     "ES len assertion failed for inode "
52944fb851dSZheng Liu 				     "%lu: retval %d != map->m_len %d",
53044fb851dSZheng Liu 				     inode->i_ino, retval, map->m_len);
53144fb851dSZheng Liu 			WARN_ON(1);
532921f266bSDmitry Monakhov 		}
533921f266bSDmitry Monakhov 
534f7fec032SZheng Liu 		status = map->m_flags & EXT4_MAP_UNWRITTEN ?
535f7fec032SZheng Liu 				EXTENT_STATUS_UNWRITTEN : EXTENT_STATUS_WRITTEN;
536f7fec032SZheng Liu 		if (!(flags & EXT4_GET_BLOCKS_DELALLOC_RESERVE) &&
537f7fec032SZheng Liu 		    ext4_find_delalloc_range(inode, map->m_lblk,
538f7fec032SZheng Liu 					     map->m_lblk + map->m_len - 1))
539f7fec032SZheng Liu 			status |= EXTENT_STATUS_DELAYED;
540f7fec032SZheng Liu 		ret = ext4_es_insert_extent(inode, map->m_lblk,
541f7fec032SZheng Liu 					    map->m_len, map->m_pblk, status);
542f7fec032SZheng Liu 		if (ret < 0)
543f7fec032SZheng Liu 			retval = ret;
544f7fec032SZheng Liu 	}
545729f52c6SZheng Liu 	if (!(flags & EXT4_GET_BLOCKS_NO_LOCK))
5464df3d265SAneesh Kumar K.V 		up_read((&EXT4_I(inode)->i_data_sem));
547f5ab0d1fSMingming Cao 
548d100eef2SZheng Liu found:
549e35fd660STheodore Ts'o 	if (retval > 0 && map->m_flags & EXT4_MAP_MAPPED) {
550b8a86845SLukas Czerner 		ret = check_block_validity(inode, map);
5516fd058f7STheodore Ts'o 		if (ret != 0)
5526fd058f7STheodore Ts'o 			return ret;
5536fd058f7STheodore Ts'o 	}
5546fd058f7STheodore Ts'o 
555f5ab0d1fSMingming Cao 	/* If it is only a block(s) look up */
556c2177057STheodore Ts'o 	if ((flags & EXT4_GET_BLOCKS_CREATE) == 0)
5574df3d265SAneesh Kumar K.V 		return retval;
5584df3d265SAneesh Kumar K.V 
5594df3d265SAneesh Kumar K.V 	/*
560f5ab0d1fSMingming Cao 	 * Returns if the blocks have already allocated
561f5ab0d1fSMingming Cao 	 *
562f5ab0d1fSMingming Cao 	 * Note that if blocks have been preallocated
563df3ab170STao Ma 	 * ext4_ext_get_block() returns the create = 0
564f5ab0d1fSMingming Cao 	 * with buffer head unmapped.
565f5ab0d1fSMingming Cao 	 */
566e35fd660STheodore Ts'o 	if (retval > 0 && map->m_flags & EXT4_MAP_MAPPED)
567b8a86845SLukas Czerner 		/*
568b8a86845SLukas Czerner 		 * If we need to convert extent to unwritten
569b8a86845SLukas Czerner 		 * we continue and do the actual work in
570b8a86845SLukas Czerner 		 * ext4_ext_map_blocks()
571b8a86845SLukas Czerner 		 */
572b8a86845SLukas Czerner 		if (!(flags & EXT4_GET_BLOCKS_CONVERT_UNWRITTEN))
573f5ab0d1fSMingming Cao 			return retval;
574f5ab0d1fSMingming Cao 
575f5ab0d1fSMingming Cao 	/*
576a25a4e1aSZheng Liu 	 * Here we clear m_flags because after allocating an new extent,
577a25a4e1aSZheng Liu 	 * it will be set again.
5782a8964d6SAneesh Kumar K.V 	 */
579a25a4e1aSZheng Liu 	map->m_flags &= ~EXT4_MAP_FLAGS;
5802a8964d6SAneesh Kumar K.V 
5812a8964d6SAneesh Kumar K.V 	/*
582556615dcSLukas Czerner 	 * New blocks allocate and/or writing to unwritten extent
583f5ab0d1fSMingming Cao 	 * will possibly result in updating i_data, so we take
584d91bd2c1SSeunghun Lee 	 * the write lock of i_data_sem, and call get_block()
585f5ab0d1fSMingming Cao 	 * with create == 1 flag.
5864df3d265SAneesh Kumar K.V 	 */
587c8b459f4SLukas Czerner 	down_write(&EXT4_I(inode)->i_data_sem);
588d2a17637SMingming Cao 
589d2a17637SMingming Cao 	/*
5904df3d265SAneesh Kumar K.V 	 * We need to check for EXT4 here because migrate
5914df3d265SAneesh Kumar K.V 	 * could have changed the inode type in between
5924df3d265SAneesh Kumar K.V 	 */
59312e9b892SDmitry Monakhov 	if (ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS)) {
594e35fd660STheodore Ts'o 		retval = ext4_ext_map_blocks(handle, inode, map, flags);
5950e855ac8SAneesh Kumar K.V 	} else {
596e35fd660STheodore Ts'o 		retval = ext4_ind_map_blocks(handle, inode, map, flags);
597267e4db9SAneesh Kumar K.V 
598e35fd660STheodore Ts'o 		if (retval > 0 && map->m_flags & EXT4_MAP_NEW) {
599267e4db9SAneesh Kumar K.V 			/*
600267e4db9SAneesh Kumar K.V 			 * We allocated new blocks which will result in
601267e4db9SAneesh Kumar K.V 			 * i_data's format changing.  Force the migrate
602267e4db9SAneesh Kumar K.V 			 * to fail by clearing migrate flags
603267e4db9SAneesh Kumar K.V 			 */
60419f5fb7aSTheodore Ts'o 			ext4_clear_inode_state(inode, EXT4_STATE_EXT_MIGRATE);
605267e4db9SAneesh Kumar K.V 		}
6062ac3b6e0STheodore Ts'o 
607d2a17637SMingming Cao 		/*
6082ac3b6e0STheodore Ts'o 		 * Update reserved blocks/metadata blocks after successful
6095f634d06SAneesh Kumar K.V 		 * block allocation which had been deferred till now. We don't
6105f634d06SAneesh Kumar K.V 		 * support fallocate for non extent files. So we can update
6115f634d06SAneesh Kumar K.V 		 * reserve space here.
612d2a17637SMingming Cao 		 */
6135f634d06SAneesh Kumar K.V 		if ((retval > 0) &&
6141296cc85SAneesh Kumar K.V 			(flags & EXT4_GET_BLOCKS_DELALLOC_RESERVE))
6155f634d06SAneesh Kumar K.V 			ext4_da_update_reserve_space(inode, retval, 1);
6165f634d06SAneesh Kumar K.V 	}
617d2a17637SMingming Cao 
618f7fec032SZheng Liu 	if (retval > 0) {
6193be78c73STheodore Ts'o 		unsigned int status;
620f7fec032SZheng Liu 
62144fb851dSZheng Liu 		if (unlikely(retval != map->m_len)) {
62244fb851dSZheng Liu 			ext4_warning(inode->i_sb,
62344fb851dSZheng Liu 				     "ES len assertion failed for inode "
62444fb851dSZheng Liu 				     "%lu: retval %d != map->m_len %d",
62544fb851dSZheng Liu 				     inode->i_ino, retval, map->m_len);
62644fb851dSZheng Liu 			WARN_ON(1);
627921f266bSDmitry Monakhov 		}
628921f266bSDmitry Monakhov 
629adb23551SZheng Liu 		/*
630adb23551SZheng Liu 		 * If the extent has been zeroed out, we don't need to update
631adb23551SZheng Liu 		 * extent status tree.
632adb23551SZheng Liu 		 */
633adb23551SZheng Liu 		if ((flags & EXT4_GET_BLOCKS_PRE_IO) &&
634adb23551SZheng Liu 		    ext4_es_lookup_extent(inode, map->m_lblk, &es)) {
635adb23551SZheng Liu 			if (ext4_es_is_written(&es))
636adb23551SZheng Liu 				goto has_zeroout;
637adb23551SZheng Liu 		}
638f7fec032SZheng Liu 		status = map->m_flags & EXT4_MAP_UNWRITTEN ?
639f7fec032SZheng Liu 				EXTENT_STATUS_UNWRITTEN : EXTENT_STATUS_WRITTEN;
640f7fec032SZheng Liu 		if (!(flags & EXT4_GET_BLOCKS_DELALLOC_RESERVE) &&
641f7fec032SZheng Liu 		    ext4_find_delalloc_range(inode, map->m_lblk,
642f7fec032SZheng Liu 					     map->m_lblk + map->m_len - 1))
643f7fec032SZheng Liu 			status |= EXTENT_STATUS_DELAYED;
644f7fec032SZheng Liu 		ret = ext4_es_insert_extent(inode, map->m_lblk, map->m_len,
645f7fec032SZheng Liu 					    map->m_pblk, status);
64651865fdaSZheng Liu 		if (ret < 0)
64751865fdaSZheng Liu 			retval = ret;
64851865fdaSZheng Liu 	}
6495356f261SAditya Kali 
650adb23551SZheng Liu has_zeroout:
6510e855ac8SAneesh Kumar K.V 	up_write((&EXT4_I(inode)->i_data_sem));
652e35fd660STheodore Ts'o 	if (retval > 0 && map->m_flags & EXT4_MAP_MAPPED) {
653b8a86845SLukas Czerner 		ret = check_block_validity(inode, map);
6546fd058f7STheodore Ts'o 		if (ret != 0)
6556fd058f7STheodore Ts'o 			return ret;
6566fd058f7STheodore Ts'o 	}
6570e855ac8SAneesh Kumar K.V 	return retval;
6580e855ac8SAneesh Kumar K.V }
6590e855ac8SAneesh Kumar K.V 
660f3bd1f3fSMingming Cao /* Maximum number of blocks we map for direct IO at once. */
661f3bd1f3fSMingming Cao #define DIO_MAX_BLOCKS 4096
662f3bd1f3fSMingming Cao 
6632ed88685STheodore Ts'o static int _ext4_get_block(struct inode *inode, sector_t iblock,
6642ed88685STheodore Ts'o 			   struct buffer_head *bh, int flags)
665ac27a0ecSDave Kleikamp {
6663e4fdaf8SDmitriy Monakhov 	handle_t *handle = ext4_journal_current_handle();
6672ed88685STheodore Ts'o 	struct ext4_map_blocks map;
6687fb5409dSJan Kara 	int ret = 0, started = 0;
669f3bd1f3fSMingming Cao 	int dio_credits;
670ac27a0ecSDave Kleikamp 
67146c7f254STao Ma 	if (ext4_has_inline_data(inode))
67246c7f254STao Ma 		return -ERANGE;
67346c7f254STao Ma 
6742ed88685STheodore Ts'o 	map.m_lblk = iblock;
6752ed88685STheodore Ts'o 	map.m_len = bh->b_size >> inode->i_blkbits;
6762ed88685STheodore Ts'o 
6778b0f165fSAnatol Pomozov 	if (flags && !(flags & EXT4_GET_BLOCKS_NO_LOCK) && !handle) {
6787fb5409dSJan Kara 		/* Direct IO write... */
6792ed88685STheodore Ts'o 		if (map.m_len > DIO_MAX_BLOCKS)
6802ed88685STheodore Ts'o 			map.m_len = DIO_MAX_BLOCKS;
6812ed88685STheodore Ts'o 		dio_credits = ext4_chunk_trans_blocks(inode, map.m_len);
6829924a92aSTheodore Ts'o 		handle = ext4_journal_start(inode, EXT4_HT_MAP_BLOCKS,
6839924a92aSTheodore Ts'o 					    dio_credits);
6847fb5409dSJan Kara 		if (IS_ERR(handle)) {
685ac27a0ecSDave Kleikamp 			ret = PTR_ERR(handle);
6862ed88685STheodore Ts'o 			return ret;
6877fb5409dSJan Kara 		}
6887fb5409dSJan Kara 		started = 1;
689ac27a0ecSDave Kleikamp 	}
690ac27a0ecSDave Kleikamp 
6912ed88685STheodore Ts'o 	ret = ext4_map_blocks(handle, inode, &map, flags);
692ac27a0ecSDave Kleikamp 	if (ret > 0) {
6937b7a8665SChristoph Hellwig 		ext4_io_end_t *io_end = ext4_inode_aio(inode);
6947b7a8665SChristoph Hellwig 
6952ed88685STheodore Ts'o 		map_bh(bh, inode->i_sb, map.m_pblk);
6962ed88685STheodore Ts'o 		bh->b_state = (bh->b_state & ~EXT4_MAP_FLAGS) | map.m_flags;
6977b7a8665SChristoph Hellwig 		if (io_end && io_end->flag & EXT4_IO_END_UNWRITTEN)
6987b7a8665SChristoph Hellwig 			set_buffer_defer_completion(bh);
6992ed88685STheodore Ts'o 		bh->b_size = inode->i_sb->s_blocksize * map.m_len;
700ac27a0ecSDave Kleikamp 		ret = 0;
701ac27a0ecSDave Kleikamp 	}
7027fb5409dSJan Kara 	if (started)
7037fb5409dSJan Kara 		ext4_journal_stop(handle);
704ac27a0ecSDave Kleikamp 	return ret;
705ac27a0ecSDave Kleikamp }
706ac27a0ecSDave Kleikamp 
7072ed88685STheodore Ts'o int ext4_get_block(struct inode *inode, sector_t iblock,
7082ed88685STheodore Ts'o 		   struct buffer_head *bh, int create)
7092ed88685STheodore Ts'o {
7102ed88685STheodore Ts'o 	return _ext4_get_block(inode, iblock, bh,
7112ed88685STheodore Ts'o 			       create ? EXT4_GET_BLOCKS_CREATE : 0);
7122ed88685STheodore Ts'o }
7132ed88685STheodore Ts'o 
714ac27a0ecSDave Kleikamp /*
715ac27a0ecSDave Kleikamp  * `handle' can be NULL if create is zero
716ac27a0ecSDave Kleikamp  */
717617ba13bSMingming Cao struct buffer_head *ext4_getblk(handle_t *handle, struct inode *inode,
71810560082STheodore Ts'o 				ext4_lblk_t block, int create)
719ac27a0ecSDave Kleikamp {
7202ed88685STheodore Ts'o 	struct ext4_map_blocks map;
7212ed88685STheodore Ts'o 	struct buffer_head *bh;
72210560082STheodore Ts'o 	int err;
723ac27a0ecSDave Kleikamp 
724ac27a0ecSDave Kleikamp 	J_ASSERT(handle != NULL || create == 0);
725ac27a0ecSDave Kleikamp 
7262ed88685STheodore Ts'o 	map.m_lblk = block;
7272ed88685STheodore Ts'o 	map.m_len = 1;
7282ed88685STheodore Ts'o 	err = ext4_map_blocks(handle, inode, &map,
7292ed88685STheodore Ts'o 			      create ? EXT4_GET_BLOCKS_CREATE : 0);
7302ed88685STheodore Ts'o 
73110560082STheodore Ts'o 	if (err == 0)
73210560082STheodore Ts'o 		return create ? ERR_PTR(-ENOSPC) : NULL;
7332ed88685STheodore Ts'o 	if (err < 0)
73410560082STheodore Ts'o 		return ERR_PTR(err);
7352ed88685STheodore Ts'o 
7362ed88685STheodore Ts'o 	bh = sb_getblk(inode->i_sb, map.m_pblk);
73710560082STheodore Ts'o 	if (unlikely(!bh))
73810560082STheodore Ts'o 		return ERR_PTR(-ENOMEM);
7392ed88685STheodore Ts'o 	if (map.m_flags & EXT4_MAP_NEW) {
740ac27a0ecSDave Kleikamp 		J_ASSERT(create != 0);
741ac39849dSAneesh Kumar K.V 		J_ASSERT(handle != NULL);
742ac27a0ecSDave Kleikamp 
743ac27a0ecSDave Kleikamp 		/*
744ac27a0ecSDave Kleikamp 		 * Now that we do not always journal data, we should
745ac27a0ecSDave Kleikamp 		 * keep in mind whether this should always journal the
746ac27a0ecSDave Kleikamp 		 * new buffer as metadata.  For now, regular file
747617ba13bSMingming Cao 		 * writes use ext4_get_block instead, so it's not a
748ac27a0ecSDave Kleikamp 		 * problem.
749ac27a0ecSDave Kleikamp 		 */
750ac27a0ecSDave Kleikamp 		lock_buffer(bh);
751ac27a0ecSDave Kleikamp 		BUFFER_TRACE(bh, "call get_create_access");
75210560082STheodore Ts'o 		err = ext4_journal_get_create_access(handle, bh);
75310560082STheodore Ts'o 		if (unlikely(err)) {
75410560082STheodore Ts'o 			unlock_buffer(bh);
75510560082STheodore Ts'o 			goto errout;
75610560082STheodore Ts'o 		}
75710560082STheodore Ts'o 		if (!buffer_uptodate(bh)) {
758ac27a0ecSDave Kleikamp 			memset(bh->b_data, 0, inode->i_sb->s_blocksize);
759ac27a0ecSDave Kleikamp 			set_buffer_uptodate(bh);
760ac27a0ecSDave Kleikamp 		}
761ac27a0ecSDave Kleikamp 		unlock_buffer(bh);
7620390131bSFrank Mayhar 		BUFFER_TRACE(bh, "call ext4_handle_dirty_metadata");
7630390131bSFrank Mayhar 		err = ext4_handle_dirty_metadata(handle, inode, bh);
76410560082STheodore Ts'o 		if (unlikely(err))
76510560082STheodore Ts'o 			goto errout;
76610560082STheodore Ts'o 	} else
767ac27a0ecSDave Kleikamp 		BUFFER_TRACE(bh, "not a new buffer");
768ac27a0ecSDave Kleikamp 	return bh;
76910560082STheodore Ts'o errout:
77010560082STheodore Ts'o 	brelse(bh);
77110560082STheodore Ts'o 	return ERR_PTR(err);
772ac27a0ecSDave Kleikamp }
773ac27a0ecSDave Kleikamp 
774617ba13bSMingming Cao struct buffer_head *ext4_bread(handle_t *handle, struct inode *inode,
7751c215028STheodore Ts'o 			       ext4_lblk_t block, int create)
776ac27a0ecSDave Kleikamp {
777ac27a0ecSDave Kleikamp 	struct buffer_head *bh;
778ac27a0ecSDave Kleikamp 
77910560082STheodore Ts'o 	bh = ext4_getblk(handle, inode, block, create);
7801c215028STheodore Ts'o 	if (IS_ERR(bh))
781ac27a0ecSDave Kleikamp 		return bh;
7821c215028STheodore Ts'o 	if (!bh || buffer_uptodate(bh))
783ac27a0ecSDave Kleikamp 		return bh;
78465299a3bSChristoph Hellwig 	ll_rw_block(READ | REQ_META | REQ_PRIO, 1, &bh);
785ac27a0ecSDave Kleikamp 	wait_on_buffer(bh);
786ac27a0ecSDave Kleikamp 	if (buffer_uptodate(bh))
787ac27a0ecSDave Kleikamp 		return bh;
788ac27a0ecSDave Kleikamp 	put_bh(bh);
7891c215028STheodore Ts'o 	return ERR_PTR(-EIO);
790ac27a0ecSDave Kleikamp }
791ac27a0ecSDave Kleikamp 
792f19d5870STao Ma int ext4_walk_page_buffers(handle_t *handle,
793ac27a0ecSDave Kleikamp 			   struct buffer_head *head,
794ac27a0ecSDave Kleikamp 			   unsigned from,
795ac27a0ecSDave Kleikamp 			   unsigned to,
796ac27a0ecSDave Kleikamp 			   int *partial,
797ac27a0ecSDave Kleikamp 			   int (*fn)(handle_t *handle,
798ac27a0ecSDave Kleikamp 				     struct buffer_head *bh))
799ac27a0ecSDave Kleikamp {
800ac27a0ecSDave Kleikamp 	struct buffer_head *bh;
801ac27a0ecSDave Kleikamp 	unsigned block_start, block_end;
802ac27a0ecSDave Kleikamp 	unsigned blocksize = head->b_size;
803ac27a0ecSDave Kleikamp 	int err, ret = 0;
804ac27a0ecSDave Kleikamp 	struct buffer_head *next;
805ac27a0ecSDave Kleikamp 
806ac27a0ecSDave Kleikamp 	for (bh = head, block_start = 0;
807ac27a0ecSDave Kleikamp 	     ret == 0 && (bh != head || !block_start);
808de9a55b8STheodore Ts'o 	     block_start = block_end, bh = next) {
809ac27a0ecSDave Kleikamp 		next = bh->b_this_page;
810ac27a0ecSDave Kleikamp 		block_end = block_start + blocksize;
811ac27a0ecSDave Kleikamp 		if (block_end <= from || block_start >= to) {
812ac27a0ecSDave Kleikamp 			if (partial && !buffer_uptodate(bh))
813ac27a0ecSDave Kleikamp 				*partial = 1;
814ac27a0ecSDave Kleikamp 			continue;
815ac27a0ecSDave Kleikamp 		}
816ac27a0ecSDave Kleikamp 		err = (*fn)(handle, bh);
817ac27a0ecSDave Kleikamp 		if (!ret)
818ac27a0ecSDave Kleikamp 			ret = err;
819ac27a0ecSDave Kleikamp 	}
820ac27a0ecSDave Kleikamp 	return ret;
821ac27a0ecSDave Kleikamp }
822ac27a0ecSDave Kleikamp 
823ac27a0ecSDave Kleikamp /*
824ac27a0ecSDave Kleikamp  * To preserve ordering, it is essential that the hole instantiation and
825ac27a0ecSDave Kleikamp  * the data write be encapsulated in a single transaction.  We cannot
826617ba13bSMingming Cao  * close off a transaction and start a new one between the ext4_get_block()
827dab291afSMingming Cao  * and the commit_write().  So doing the jbd2_journal_start at the start of
828ac27a0ecSDave Kleikamp  * prepare_write() is the right place.
829ac27a0ecSDave Kleikamp  *
83036ade451SJan Kara  * Also, this function can nest inside ext4_writepage().  In that case, we
83136ade451SJan Kara  * *know* that ext4_writepage() has generated enough buffer credits to do the
83236ade451SJan Kara  * whole page.  So we won't block on the journal in that case, which is good,
83336ade451SJan Kara  * because the caller may be PF_MEMALLOC.
834ac27a0ecSDave Kleikamp  *
835617ba13bSMingming Cao  * By accident, ext4 can be reentered when a transaction is open via
836ac27a0ecSDave Kleikamp  * quota file writes.  If we were to commit the transaction while thus
837ac27a0ecSDave Kleikamp  * reentered, there can be a deadlock - we would be holding a quota
838ac27a0ecSDave Kleikamp  * lock, and the commit would never complete if another thread had a
839ac27a0ecSDave Kleikamp  * transaction open and was blocking on the quota lock - a ranking
840ac27a0ecSDave Kleikamp  * violation.
841ac27a0ecSDave Kleikamp  *
842dab291afSMingming Cao  * So what we do is to rely on the fact that jbd2_journal_stop/journal_start
843ac27a0ecSDave Kleikamp  * will _not_ run commit under these circumstances because handle->h_ref
844ac27a0ecSDave Kleikamp  * is elevated.  We'll still have enough credits for the tiny quotafile
845ac27a0ecSDave Kleikamp  * write.
846ac27a0ecSDave Kleikamp  */
847f19d5870STao Ma int do_journal_get_write_access(handle_t *handle,
848ac27a0ecSDave Kleikamp 				struct buffer_head *bh)
849ac27a0ecSDave Kleikamp {
85056d35a4cSJan Kara 	int dirty = buffer_dirty(bh);
85156d35a4cSJan Kara 	int ret;
85256d35a4cSJan Kara 
853ac27a0ecSDave Kleikamp 	if (!buffer_mapped(bh) || buffer_freed(bh))
854ac27a0ecSDave Kleikamp 		return 0;
85556d35a4cSJan Kara 	/*
856ebdec241SChristoph Hellwig 	 * __block_write_begin() could have dirtied some buffers. Clean
85756d35a4cSJan Kara 	 * the dirty bit as jbd2_journal_get_write_access() could complain
85856d35a4cSJan Kara 	 * otherwise about fs integrity issues. Setting of the dirty bit
859ebdec241SChristoph Hellwig 	 * by __block_write_begin() isn't a real problem here as we clear
86056d35a4cSJan Kara 	 * the bit before releasing a page lock and thus writeback cannot
86156d35a4cSJan Kara 	 * ever write the buffer.
86256d35a4cSJan Kara 	 */
86356d35a4cSJan Kara 	if (dirty)
86456d35a4cSJan Kara 		clear_buffer_dirty(bh);
8655d601255Sliang xie 	BUFFER_TRACE(bh, "get write access");
86656d35a4cSJan Kara 	ret = ext4_journal_get_write_access(handle, bh);
86756d35a4cSJan Kara 	if (!ret && dirty)
86856d35a4cSJan Kara 		ret = ext4_handle_dirty_metadata(handle, NULL, bh);
86956d35a4cSJan Kara 	return ret;
870ac27a0ecSDave Kleikamp }
871ac27a0ecSDave Kleikamp 
8728b0f165fSAnatol Pomozov static int ext4_get_block_write_nolock(struct inode *inode, sector_t iblock,
8738b0f165fSAnatol Pomozov 		   struct buffer_head *bh_result, int create);
874bfc1af65SNick Piggin static int ext4_write_begin(struct file *file, struct address_space *mapping,
875bfc1af65SNick Piggin 			    loff_t pos, unsigned len, unsigned flags,
876bfc1af65SNick Piggin 			    struct page **pagep, void **fsdata)
877ac27a0ecSDave Kleikamp {
878bfc1af65SNick Piggin 	struct inode *inode = mapping->host;
8791938a150SAneesh Kumar K.V 	int ret, needed_blocks;
880ac27a0ecSDave Kleikamp 	handle_t *handle;
881ac27a0ecSDave Kleikamp 	int retries = 0;
882bfc1af65SNick Piggin 	struct page *page;
883bfc1af65SNick Piggin 	pgoff_t index;
884bfc1af65SNick Piggin 	unsigned from, to;
885bfc1af65SNick Piggin 
8869bffad1eSTheodore Ts'o 	trace_ext4_write_begin(inode, pos, len, flags);
8871938a150SAneesh Kumar K.V 	/*
8881938a150SAneesh Kumar K.V 	 * Reserve one block more for addition to orphan list in case
8891938a150SAneesh Kumar K.V 	 * we allocate blocks but write fails for some reason
8901938a150SAneesh Kumar K.V 	 */
8911938a150SAneesh Kumar K.V 	needed_blocks = ext4_writepage_trans_blocks(inode) + 1;
892bfc1af65SNick Piggin 	index = pos >> PAGE_CACHE_SHIFT;
893bfc1af65SNick Piggin 	from = pos & (PAGE_CACHE_SIZE - 1);
894bfc1af65SNick Piggin 	to = from + len;
895ac27a0ecSDave Kleikamp 
896f19d5870STao Ma 	if (ext4_test_inode_state(inode, EXT4_STATE_MAY_INLINE_DATA)) {
897f19d5870STao Ma 		ret = ext4_try_to_write_inline_data(mapping, inode, pos, len,
898f19d5870STao Ma 						    flags, pagep);
899f19d5870STao Ma 		if (ret < 0)
90047564bfbSTheodore Ts'o 			return ret;
90147564bfbSTheodore Ts'o 		if (ret == 1)
90247564bfbSTheodore Ts'o 			return 0;
903f19d5870STao Ma 	}
904f19d5870STao Ma 
90547564bfbSTheodore Ts'o 	/*
90647564bfbSTheodore Ts'o 	 * grab_cache_page_write_begin() can take a long time if the
90747564bfbSTheodore Ts'o 	 * system is thrashing due to memory pressure, or if the page
90847564bfbSTheodore Ts'o 	 * is being written back.  So grab it first before we start
90947564bfbSTheodore Ts'o 	 * the transaction handle.  This also allows us to allocate
91047564bfbSTheodore Ts'o 	 * the page (if needed) without using GFP_NOFS.
91147564bfbSTheodore Ts'o 	 */
91247564bfbSTheodore Ts'o retry_grab:
91354566b2cSNick Piggin 	page = grab_cache_page_write_begin(mapping, index, flags);
91447564bfbSTheodore Ts'o 	if (!page)
91547564bfbSTheodore Ts'o 		return -ENOMEM;
91647564bfbSTheodore Ts'o 	unlock_page(page);
91747564bfbSTheodore Ts'o 
91847564bfbSTheodore Ts'o retry_journal:
9199924a92aSTheodore Ts'o 	handle = ext4_journal_start(inode, EXT4_HT_WRITE_PAGE, needed_blocks);
920ac27a0ecSDave Kleikamp 	if (IS_ERR(handle)) {
92147564bfbSTheodore Ts'o 		page_cache_release(page);
92247564bfbSTheodore Ts'o 		return PTR_ERR(handle);
923cf108bcaSJan Kara 	}
924f19d5870STao Ma 
92547564bfbSTheodore Ts'o 	lock_page(page);
92647564bfbSTheodore Ts'o 	if (page->mapping != mapping) {
92747564bfbSTheodore Ts'o 		/* The page got truncated from under us */
92847564bfbSTheodore Ts'o 		unlock_page(page);
92947564bfbSTheodore Ts'o 		page_cache_release(page);
930cf108bcaSJan Kara 		ext4_journal_stop(handle);
93147564bfbSTheodore Ts'o 		goto retry_grab;
932cf108bcaSJan Kara 	}
9337afe5aa5SDmitry Monakhov 	/* In case writeback began while the page was unlocked */
9347afe5aa5SDmitry Monakhov 	wait_for_stable_page(page);
935cf108bcaSJan Kara 
936744692dcSJiaying Zhang 	if (ext4_should_dioread_nolock(inode))
9376e1db88dSChristoph Hellwig 		ret = __block_write_begin(page, pos, len, ext4_get_block_write);
938744692dcSJiaying Zhang 	else
9396e1db88dSChristoph Hellwig 		ret = __block_write_begin(page, pos, len, ext4_get_block);
940bfc1af65SNick Piggin 
941bfc1af65SNick Piggin 	if (!ret && ext4_should_journal_data(inode)) {
942f19d5870STao Ma 		ret = ext4_walk_page_buffers(handle, page_buffers(page),
943f19d5870STao Ma 					     from, to, NULL,
944f19d5870STao Ma 					     do_journal_get_write_access);
945b46be050SAndrey Savochkin 	}
946bfc1af65SNick Piggin 
947bfc1af65SNick Piggin 	if (ret) {
948bfc1af65SNick Piggin 		unlock_page(page);
949ae4d5372SAneesh Kumar K.V 		/*
9506e1db88dSChristoph Hellwig 		 * __block_write_begin may have instantiated a few blocks
951ae4d5372SAneesh Kumar K.V 		 * outside i_size.  Trim these off again. Don't need
952ae4d5372SAneesh Kumar K.V 		 * i_size_read because we hold i_mutex.
9531938a150SAneesh Kumar K.V 		 *
9541938a150SAneesh Kumar K.V 		 * Add inode to orphan list in case we crash before
9551938a150SAneesh Kumar K.V 		 * truncate finishes
956ae4d5372SAneesh Kumar K.V 		 */
957ffacfa7aSJan Kara 		if (pos + len > inode->i_size && ext4_can_truncate(inode))
9581938a150SAneesh Kumar K.V 			ext4_orphan_add(handle, inode);
9591938a150SAneesh Kumar K.V 
9601938a150SAneesh Kumar K.V 		ext4_journal_stop(handle);
9611938a150SAneesh Kumar K.V 		if (pos + len > inode->i_size) {
962b9a4207dSJan Kara 			ext4_truncate_failed_write(inode);
9631938a150SAneesh Kumar K.V 			/*
964ffacfa7aSJan Kara 			 * If truncate failed early the inode might
9651938a150SAneesh Kumar K.V 			 * still be on the orphan list; we need to
9661938a150SAneesh Kumar K.V 			 * make sure the inode is removed from the
9671938a150SAneesh Kumar K.V 			 * orphan list in that case.
9681938a150SAneesh Kumar K.V 			 */
9691938a150SAneesh Kumar K.V 			if (inode->i_nlink)
9701938a150SAneesh Kumar K.V 				ext4_orphan_del(NULL, inode);
9711938a150SAneesh Kumar K.V 		}
972bfc1af65SNick Piggin 
97347564bfbSTheodore Ts'o 		if (ret == -ENOSPC &&
97447564bfbSTheodore Ts'o 		    ext4_should_retry_alloc(inode->i_sb, &retries))
97547564bfbSTheodore Ts'o 			goto retry_journal;
97647564bfbSTheodore Ts'o 		page_cache_release(page);
97747564bfbSTheodore Ts'o 		return ret;
97847564bfbSTheodore Ts'o 	}
97947564bfbSTheodore Ts'o 	*pagep = page;
980ac27a0ecSDave Kleikamp 	return ret;
981ac27a0ecSDave Kleikamp }
982ac27a0ecSDave Kleikamp 
983bfc1af65SNick Piggin /* For write_end() in data=journal mode */
984bfc1af65SNick Piggin static int write_end_fn(handle_t *handle, struct buffer_head *bh)
985ac27a0ecSDave Kleikamp {
98613fca323STheodore Ts'o 	int ret;
987ac27a0ecSDave Kleikamp 	if (!buffer_mapped(bh) || buffer_freed(bh))
988ac27a0ecSDave Kleikamp 		return 0;
989ac27a0ecSDave Kleikamp 	set_buffer_uptodate(bh);
99013fca323STheodore Ts'o 	ret = ext4_handle_dirty_metadata(handle, NULL, bh);
99113fca323STheodore Ts'o 	clear_buffer_meta(bh);
99213fca323STheodore Ts'o 	clear_buffer_prio(bh);
99313fca323STheodore Ts'o 	return ret;
994ac27a0ecSDave Kleikamp }
995ac27a0ecSDave Kleikamp 
996eed4333fSZheng Liu /*
997eed4333fSZheng Liu  * We need to pick up the new inode size which generic_commit_write gave us
998eed4333fSZheng Liu  * `file' can be NULL - eg, when called from page_symlink().
999eed4333fSZheng Liu  *
1000eed4333fSZheng Liu  * ext4 never places buffers on inode->i_mapping->private_list.  metadata
1001eed4333fSZheng Liu  * buffers are managed internally.
1002eed4333fSZheng Liu  */
1003eed4333fSZheng Liu static int ext4_write_end(struct file *file,
1004f8514083SAneesh Kumar K.V 			  struct address_space *mapping,
1005f8514083SAneesh Kumar K.V 			  loff_t pos, unsigned len, unsigned copied,
1006f8514083SAneesh Kumar K.V 			  struct page *page, void *fsdata)
1007f8514083SAneesh Kumar K.V {
1008f8514083SAneesh Kumar K.V 	handle_t *handle = ext4_journal_current_handle();
1009eed4333fSZheng Liu 	struct inode *inode = mapping->host;
1010eed4333fSZheng Liu 	int ret = 0, ret2;
1011eed4333fSZheng Liu 	int i_size_changed = 0;
1012eed4333fSZheng Liu 
1013eed4333fSZheng Liu 	trace_ext4_write_end(inode, pos, len, copied);
1014eed4333fSZheng Liu 	if (ext4_test_inode_state(inode, EXT4_STATE_ORDERED_MODE)) {
1015eed4333fSZheng Liu 		ret = ext4_jbd2_file_inode(handle, inode);
1016eed4333fSZheng Liu 		if (ret) {
1017eed4333fSZheng Liu 			unlock_page(page);
1018eed4333fSZheng Liu 			page_cache_release(page);
1019eed4333fSZheng Liu 			goto errout;
1020eed4333fSZheng Liu 		}
1021eed4333fSZheng Liu 	}
1022f8514083SAneesh Kumar K.V 
102342c832deSTheodore Ts'o 	if (ext4_has_inline_data(inode)) {
102442c832deSTheodore Ts'o 		ret = ext4_write_inline_data_end(inode, pos, len,
1025f19d5870STao Ma 						 copied, page);
102642c832deSTheodore Ts'o 		if (ret < 0)
102742c832deSTheodore Ts'o 			goto errout;
102842c832deSTheodore Ts'o 		copied = ret;
102942c832deSTheodore Ts'o 	} else
1030f19d5870STao Ma 		copied = block_write_end(file, mapping, pos,
1031f19d5870STao Ma 					 len, copied, page, fsdata);
1032f8514083SAneesh Kumar K.V 	/*
10334631dbf6SDmitry Monakhov 	 * it's important to update i_size while still holding page lock:
1034f8514083SAneesh Kumar K.V 	 * page writeout could otherwise come in and zero beyond i_size.
1035f8514083SAneesh Kumar K.V 	 */
10364631dbf6SDmitry Monakhov 	i_size_changed = ext4_update_inode_size(inode, pos + copied);
1037f8514083SAneesh Kumar K.V 	unlock_page(page);
1038f8514083SAneesh Kumar K.V 	page_cache_release(page);
1039f8514083SAneesh Kumar K.V 
1040f8514083SAneesh Kumar K.V 	/*
1041f8514083SAneesh Kumar K.V 	 * Don't mark the inode dirty under page lock. First, it unnecessarily
1042f8514083SAneesh Kumar K.V 	 * makes the holding time of page lock longer. Second, it forces lock
1043f8514083SAneesh Kumar K.V 	 * ordering of page lock and transaction start for journaling
1044f8514083SAneesh Kumar K.V 	 * filesystems.
1045f8514083SAneesh Kumar K.V 	 */
1046f8514083SAneesh Kumar K.V 	if (i_size_changed)
1047f8514083SAneesh Kumar K.V 		ext4_mark_inode_dirty(handle, inode);
1048f8514083SAneesh Kumar K.V 
1049ffacfa7aSJan Kara 	if (pos + len > inode->i_size && ext4_can_truncate(inode))
1050f8514083SAneesh Kumar K.V 		/* if we have allocated more blocks and copied
1051f8514083SAneesh Kumar K.V 		 * less. We will have blocks allocated outside
1052f8514083SAneesh Kumar K.V 		 * inode->i_size. So truncate them
1053f8514083SAneesh Kumar K.V 		 */
1054f8514083SAneesh Kumar K.V 		ext4_orphan_add(handle, inode);
105574d553aaSTheodore Ts'o errout:
1056617ba13bSMingming Cao 	ret2 = ext4_journal_stop(handle);
1057ac27a0ecSDave Kleikamp 	if (!ret)
1058ac27a0ecSDave Kleikamp 		ret = ret2;
1059bfc1af65SNick Piggin 
1060f8514083SAneesh Kumar K.V 	if (pos + len > inode->i_size) {
1061b9a4207dSJan Kara 		ext4_truncate_failed_write(inode);
1062f8514083SAneesh Kumar K.V 		/*
1063ffacfa7aSJan Kara 		 * If truncate failed early the inode might still be
1064f8514083SAneesh Kumar K.V 		 * on the orphan list; we need to make sure the inode
1065f8514083SAneesh Kumar K.V 		 * is removed from the orphan list in that case.
1066f8514083SAneesh Kumar K.V 		 */
1067f8514083SAneesh Kumar K.V 		if (inode->i_nlink)
1068f8514083SAneesh Kumar K.V 			ext4_orphan_del(NULL, inode);
1069f8514083SAneesh Kumar K.V 	}
1070f8514083SAneesh Kumar K.V 
1071bfc1af65SNick Piggin 	return ret ? ret : copied;
1072ac27a0ecSDave Kleikamp }
1073ac27a0ecSDave Kleikamp 
1074bfc1af65SNick Piggin static int ext4_journalled_write_end(struct file *file,
1075bfc1af65SNick Piggin 				     struct address_space *mapping,
1076bfc1af65SNick Piggin 				     loff_t pos, unsigned len, unsigned copied,
1077bfc1af65SNick Piggin 				     struct page *page, void *fsdata)
1078ac27a0ecSDave Kleikamp {
1079617ba13bSMingming Cao 	handle_t *handle = ext4_journal_current_handle();
1080bfc1af65SNick Piggin 	struct inode *inode = mapping->host;
1081ac27a0ecSDave Kleikamp 	int ret = 0, ret2;
1082ac27a0ecSDave Kleikamp 	int partial = 0;
1083bfc1af65SNick Piggin 	unsigned from, to;
10844631dbf6SDmitry Monakhov 	int size_changed = 0;
1085ac27a0ecSDave Kleikamp 
10869bffad1eSTheodore Ts'o 	trace_ext4_journalled_write_end(inode, pos, len, copied);
1087bfc1af65SNick Piggin 	from = pos & (PAGE_CACHE_SIZE - 1);
1088bfc1af65SNick Piggin 	to = from + len;
1089bfc1af65SNick Piggin 
1090441c8508SCurt Wohlgemuth 	BUG_ON(!ext4_handle_valid(handle));
1091441c8508SCurt Wohlgemuth 
10923fdcfb66STao Ma 	if (ext4_has_inline_data(inode))
10933fdcfb66STao Ma 		copied = ext4_write_inline_data_end(inode, pos, len,
10943fdcfb66STao Ma 						    copied, page);
10953fdcfb66STao Ma 	else {
1096bfc1af65SNick Piggin 		if (copied < len) {
1097bfc1af65SNick Piggin 			if (!PageUptodate(page))
1098bfc1af65SNick Piggin 				copied = 0;
1099bfc1af65SNick Piggin 			page_zero_new_buffers(page, from+copied, to);
1100bfc1af65SNick Piggin 		}
1101ac27a0ecSDave Kleikamp 
1102f19d5870STao Ma 		ret = ext4_walk_page_buffers(handle, page_buffers(page), from,
1103bfc1af65SNick Piggin 					     to, &partial, write_end_fn);
1104ac27a0ecSDave Kleikamp 		if (!partial)
1105ac27a0ecSDave Kleikamp 			SetPageUptodate(page);
11063fdcfb66STao Ma 	}
11074631dbf6SDmitry Monakhov 	size_changed = ext4_update_inode_size(inode, pos + copied);
110819f5fb7aSTheodore Ts'o 	ext4_set_inode_state(inode, EXT4_STATE_JDATA);
11092d859db3SJan Kara 	EXT4_I(inode)->i_datasync_tid = handle->h_transaction->t_tid;
11104631dbf6SDmitry Monakhov 	unlock_page(page);
11114631dbf6SDmitry Monakhov 	page_cache_release(page);
11124631dbf6SDmitry Monakhov 
11134631dbf6SDmitry Monakhov 	if (size_changed) {
1114617ba13bSMingming Cao 		ret2 = ext4_mark_inode_dirty(handle, inode);
1115ac27a0ecSDave Kleikamp 		if (!ret)
1116ac27a0ecSDave Kleikamp 			ret = ret2;
1117ac27a0ecSDave Kleikamp 	}
1118bfc1af65SNick Piggin 
1119ffacfa7aSJan Kara 	if (pos + len > inode->i_size && ext4_can_truncate(inode))
1120f8514083SAneesh Kumar K.V 		/* if we have allocated more blocks and copied
1121f8514083SAneesh Kumar K.V 		 * less. We will have blocks allocated outside
1122f8514083SAneesh Kumar K.V 		 * inode->i_size. So truncate them
1123f8514083SAneesh Kumar K.V 		 */
1124f8514083SAneesh Kumar K.V 		ext4_orphan_add(handle, inode);
1125f8514083SAneesh Kumar K.V 
1126617ba13bSMingming Cao 	ret2 = ext4_journal_stop(handle);
1127ac27a0ecSDave Kleikamp 	if (!ret)
1128ac27a0ecSDave Kleikamp 		ret = ret2;
1129f8514083SAneesh Kumar K.V 	if (pos + len > inode->i_size) {
1130b9a4207dSJan Kara 		ext4_truncate_failed_write(inode);
1131f8514083SAneesh Kumar K.V 		/*
1132ffacfa7aSJan Kara 		 * If truncate failed early the inode might still be
1133f8514083SAneesh Kumar K.V 		 * on the orphan list; we need to make sure the inode
1134f8514083SAneesh Kumar K.V 		 * is removed from the orphan list in that case.
1135f8514083SAneesh Kumar K.V 		 */
1136f8514083SAneesh Kumar K.V 		if (inode->i_nlink)
1137f8514083SAneesh Kumar K.V 			ext4_orphan_del(NULL, inode);
1138f8514083SAneesh Kumar K.V 	}
1139bfc1af65SNick Piggin 
1140bfc1af65SNick Piggin 	return ret ? ret : copied;
1141ac27a0ecSDave Kleikamp }
1142d2a17637SMingming Cao 
11439d0be502STheodore Ts'o /*
11447b415bf6SAditya Kali  * Reserve a single cluster located at lblock
11459d0be502STheodore Ts'o  */
114601f49d0bSTheodore Ts'o static int ext4_da_reserve_space(struct inode *inode, ext4_lblk_t lblock)
1147d2a17637SMingming Cao {
1148d2a17637SMingming Cao 	struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb);
11490637c6f4STheodore Ts'o 	struct ext4_inode_info *ei = EXT4_I(inode);
11507b415bf6SAditya Kali 	unsigned int md_needed;
11515dd4056dSChristoph Hellwig 	int ret;
1152d2a17637SMingming Cao 
115360e58e0fSMingming Cao 	/*
115472b8ab9dSEric Sandeen 	 * We will charge metadata quota at writeout time; this saves
115572b8ab9dSEric Sandeen 	 * us from metadata over-estimation, though we may go over by
115672b8ab9dSEric Sandeen 	 * a small amount in the end.  Here we just reserve for data.
115760e58e0fSMingming Cao 	 */
11587b415bf6SAditya Kali 	ret = dquot_reserve_block(inode, EXT4_C2B(sbi, 1));
11595dd4056dSChristoph Hellwig 	if (ret)
11605dd4056dSChristoph Hellwig 		return ret;
116103179fe9STheodore Ts'o 
116203179fe9STheodore Ts'o 	/*
116303179fe9STheodore Ts'o 	 * recalculate the amount of metadata blocks to reserve
116403179fe9STheodore Ts'o 	 * in order to allocate nrblocks
116503179fe9STheodore Ts'o 	 * worse case is one extent per block
116603179fe9STheodore Ts'o 	 */
116703179fe9STheodore Ts'o 	spin_lock(&ei->i_block_reservation_lock);
116803179fe9STheodore Ts'o 	/*
116903179fe9STheodore Ts'o 	 * ext4_calc_metadata_amount() has side effects, which we have
117003179fe9STheodore Ts'o 	 * to be prepared undo if we fail to claim space.
117103179fe9STheodore Ts'o 	 */
117271d4f7d0STheodore Ts'o 	md_needed = 0;
117371d4f7d0STheodore Ts'o 	trace_ext4_da_reserve_space(inode, 0);
117403179fe9STheodore Ts'o 
117571d4f7d0STheodore Ts'o 	if (ext4_claim_free_clusters(sbi, 1, 0)) {
117603179fe9STheodore Ts'o 		spin_unlock(&ei->i_block_reservation_lock);
117703179fe9STheodore Ts'o 		dquot_release_reservation_block(inode, EXT4_C2B(sbi, 1));
1178d2a17637SMingming Cao 		return -ENOSPC;
1179d2a17637SMingming Cao 	}
11809d0be502STheodore Ts'o 	ei->i_reserved_data_blocks++;
11810637c6f4STheodore Ts'o 	spin_unlock(&ei->i_block_reservation_lock);
118239bc680aSDmitry Monakhov 
1183d2a17637SMingming Cao 	return 0;       /* success */
1184d2a17637SMingming Cao }
1185d2a17637SMingming Cao 
118612219aeaSAneesh Kumar K.V static void ext4_da_release_space(struct inode *inode, int to_free)
1187d2a17637SMingming Cao {
1188d2a17637SMingming Cao 	struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb);
11890637c6f4STheodore Ts'o 	struct ext4_inode_info *ei = EXT4_I(inode);
1190d2a17637SMingming Cao 
1191cd213226SMingming Cao 	if (!to_free)
1192cd213226SMingming Cao 		return;		/* Nothing to release, exit */
1193cd213226SMingming Cao 
1194d2a17637SMingming Cao 	spin_lock(&EXT4_I(inode)->i_block_reservation_lock);
1195cd213226SMingming Cao 
11965a58ec87SLi Zefan 	trace_ext4_da_release_space(inode, to_free);
11970637c6f4STheodore Ts'o 	if (unlikely(to_free > ei->i_reserved_data_blocks)) {
1198cd213226SMingming Cao 		/*
11990637c6f4STheodore Ts'o 		 * if there aren't enough reserved blocks, then the
12000637c6f4STheodore Ts'o 		 * counter is messed up somewhere.  Since this
12010637c6f4STheodore Ts'o 		 * function is called from invalidate page, it's
12020637c6f4STheodore Ts'o 		 * harmless to return without any action.
1203cd213226SMingming Cao 		 */
12048de5c325STheodore Ts'o 		ext4_warning(inode->i_sb, "ext4_da_release_space: "
12050637c6f4STheodore Ts'o 			 "ino %lu, to_free %d with only %d reserved "
12061084f252STheodore Ts'o 			 "data blocks", inode->i_ino, to_free,
12070637c6f4STheodore Ts'o 			 ei->i_reserved_data_blocks);
12080637c6f4STheodore Ts'o 		WARN_ON(1);
12090637c6f4STheodore Ts'o 		to_free = ei->i_reserved_data_blocks;
12100637c6f4STheodore Ts'o 	}
12110637c6f4STheodore Ts'o 	ei->i_reserved_data_blocks -= to_free;
12120637c6f4STheodore Ts'o 
121372b8ab9dSEric Sandeen 	/* update fs dirty data blocks counter */
121457042651STheodore Ts'o 	percpu_counter_sub(&sbi->s_dirtyclusters_counter, to_free);
1215d2a17637SMingming Cao 
1216d2a17637SMingming Cao 	spin_unlock(&EXT4_I(inode)->i_block_reservation_lock);
121760e58e0fSMingming Cao 
12187b415bf6SAditya Kali 	dquot_release_reservation_block(inode, EXT4_C2B(sbi, to_free));
1219d2a17637SMingming Cao }
1220d2a17637SMingming Cao 
1221d2a17637SMingming Cao static void ext4_da_page_release_reservation(struct page *page,
1222ca99fdd2SLukas Czerner 					     unsigned int offset,
1223ca99fdd2SLukas Czerner 					     unsigned int length)
1224d2a17637SMingming Cao {
1225d2a17637SMingming Cao 	int to_release = 0;
1226d2a17637SMingming Cao 	struct buffer_head *head, *bh;
1227d2a17637SMingming Cao 	unsigned int curr_off = 0;
12287b415bf6SAditya Kali 	struct inode *inode = page->mapping->host;
12297b415bf6SAditya Kali 	struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb);
1230ca99fdd2SLukas Czerner 	unsigned int stop = offset + length;
12317b415bf6SAditya Kali 	int num_clusters;
123251865fdaSZheng Liu 	ext4_fsblk_t lblk;
1233d2a17637SMingming Cao 
1234ca99fdd2SLukas Czerner 	BUG_ON(stop > PAGE_CACHE_SIZE || stop < length);
1235ca99fdd2SLukas Czerner 
1236d2a17637SMingming Cao 	head = page_buffers(page);
1237d2a17637SMingming Cao 	bh = head;
1238d2a17637SMingming Cao 	do {
1239d2a17637SMingming Cao 		unsigned int next_off = curr_off + bh->b_size;
1240d2a17637SMingming Cao 
1241ca99fdd2SLukas Czerner 		if (next_off > stop)
1242ca99fdd2SLukas Czerner 			break;
1243ca99fdd2SLukas Czerner 
1244d2a17637SMingming Cao 		if ((offset <= curr_off) && (buffer_delay(bh))) {
1245d2a17637SMingming Cao 			to_release++;
1246d2a17637SMingming Cao 			clear_buffer_delay(bh);
1247d2a17637SMingming Cao 		}
1248d2a17637SMingming Cao 		curr_off = next_off;
1249d2a17637SMingming Cao 	} while ((bh = bh->b_this_page) != head);
12507b415bf6SAditya Kali 
125151865fdaSZheng Liu 	if (to_release) {
125251865fdaSZheng Liu 		lblk = page->index << (PAGE_CACHE_SHIFT - inode->i_blkbits);
125351865fdaSZheng Liu 		ext4_es_remove_extent(inode, lblk, to_release);
125451865fdaSZheng Liu 	}
125551865fdaSZheng Liu 
12567b415bf6SAditya Kali 	/* If we have released all the blocks belonging to a cluster, then we
12577b415bf6SAditya Kali 	 * need to release the reserved space for that cluster. */
12587b415bf6SAditya Kali 	num_clusters = EXT4_NUM_B2C(sbi, to_release);
12597b415bf6SAditya Kali 	while (num_clusters > 0) {
12607b415bf6SAditya Kali 		lblk = (page->index << (PAGE_CACHE_SHIFT - inode->i_blkbits)) +
12617b415bf6SAditya Kali 			((num_clusters - 1) << sbi->s_cluster_bits);
12627b415bf6SAditya Kali 		if (sbi->s_cluster_ratio == 1 ||
12637d1b1fbcSZheng Liu 		    !ext4_find_delalloc_cluster(inode, lblk))
12647b415bf6SAditya Kali 			ext4_da_release_space(inode, 1);
12657b415bf6SAditya Kali 
12667b415bf6SAditya Kali 		num_clusters--;
12677b415bf6SAditya Kali 	}
1268d2a17637SMingming Cao }
1269ac27a0ecSDave Kleikamp 
1270ac27a0ecSDave Kleikamp /*
127164769240SAlex Tomas  * Delayed allocation stuff
127264769240SAlex Tomas  */
127364769240SAlex Tomas 
12744e7ea81dSJan Kara struct mpage_da_data {
12754e7ea81dSJan Kara 	struct inode *inode;
12764e7ea81dSJan Kara 	struct writeback_control *wbc;
12776b523df4SJan Kara 
12784e7ea81dSJan Kara 	pgoff_t first_page;	/* The first page to write */
12794e7ea81dSJan Kara 	pgoff_t next_page;	/* Current page to examine */
12804e7ea81dSJan Kara 	pgoff_t last_page;	/* Last page to examine */
128164769240SAlex Tomas 	/*
12824e7ea81dSJan Kara 	 * Extent to map - this can be after first_page because that can be
12834e7ea81dSJan Kara 	 * fully mapped. We somewhat abuse m_flags to store whether the extent
12844e7ea81dSJan Kara 	 * is delalloc or unwritten.
128564769240SAlex Tomas 	 */
12864e7ea81dSJan Kara 	struct ext4_map_blocks map;
12874e7ea81dSJan Kara 	struct ext4_io_submit io_submit;	/* IO submission data */
12884e7ea81dSJan Kara };
128964769240SAlex Tomas 
12904e7ea81dSJan Kara static void mpage_release_unused_pages(struct mpage_da_data *mpd,
12914e7ea81dSJan Kara 				       bool invalidate)
1292c4a0c46eSAneesh Kumar K.V {
1293c4a0c46eSAneesh Kumar K.V 	int nr_pages, i;
1294c4a0c46eSAneesh Kumar K.V 	pgoff_t index, end;
1295c4a0c46eSAneesh Kumar K.V 	struct pagevec pvec;
1296c4a0c46eSAneesh Kumar K.V 	struct inode *inode = mpd->inode;
1297c4a0c46eSAneesh Kumar K.V 	struct address_space *mapping = inode->i_mapping;
12984e7ea81dSJan Kara 
12994e7ea81dSJan Kara 	/* This is necessary when next_page == 0. */
13004e7ea81dSJan Kara 	if (mpd->first_page >= mpd->next_page)
13014e7ea81dSJan Kara 		return;
1302c4a0c46eSAneesh Kumar K.V 
1303c7f5938aSCurt Wohlgemuth 	index = mpd->first_page;
1304c7f5938aSCurt Wohlgemuth 	end   = mpd->next_page - 1;
13054e7ea81dSJan Kara 	if (invalidate) {
13064e7ea81dSJan Kara 		ext4_lblk_t start, last;
130751865fdaSZheng Liu 		start = index << (PAGE_CACHE_SHIFT - inode->i_blkbits);
130851865fdaSZheng Liu 		last = end << (PAGE_CACHE_SHIFT - inode->i_blkbits);
130951865fdaSZheng Liu 		ext4_es_remove_extent(inode, start, last - start + 1);
13104e7ea81dSJan Kara 	}
131151865fdaSZheng Liu 
131266bea92cSEric Sandeen 	pagevec_init(&pvec, 0);
1313c4a0c46eSAneesh Kumar K.V 	while (index <= end) {
1314c4a0c46eSAneesh Kumar K.V 		nr_pages = pagevec_lookup(&pvec, mapping, index, PAGEVEC_SIZE);
1315c4a0c46eSAneesh Kumar K.V 		if (nr_pages == 0)
1316c4a0c46eSAneesh Kumar K.V 			break;
1317c4a0c46eSAneesh Kumar K.V 		for (i = 0; i < nr_pages; i++) {
1318c4a0c46eSAneesh Kumar K.V 			struct page *page = pvec.pages[i];
13199b1d0998SJan Kara 			if (page->index > end)
1320c4a0c46eSAneesh Kumar K.V 				break;
1321c4a0c46eSAneesh Kumar K.V 			BUG_ON(!PageLocked(page));
1322c4a0c46eSAneesh Kumar K.V 			BUG_ON(PageWriteback(page));
13234e7ea81dSJan Kara 			if (invalidate) {
1324d47992f8SLukas Czerner 				block_invalidatepage(page, 0, PAGE_CACHE_SIZE);
1325c4a0c46eSAneesh Kumar K.V 				ClearPageUptodate(page);
13264e7ea81dSJan Kara 			}
1327c4a0c46eSAneesh Kumar K.V 			unlock_page(page);
1328c4a0c46eSAneesh Kumar K.V 		}
13299b1d0998SJan Kara 		index = pvec.pages[nr_pages - 1]->index + 1;
13309b1d0998SJan Kara 		pagevec_release(&pvec);
1331c4a0c46eSAneesh Kumar K.V 	}
1332c4a0c46eSAneesh Kumar K.V }
1333c4a0c46eSAneesh Kumar K.V 
1334df22291fSAneesh Kumar K.V static void ext4_print_free_blocks(struct inode *inode)
1335df22291fSAneesh Kumar K.V {
1336df22291fSAneesh Kumar K.V 	struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb);
133792b97816STheodore Ts'o 	struct super_block *sb = inode->i_sb;
1338f78ee70dSLukas Czerner 	struct ext4_inode_info *ei = EXT4_I(inode);
133992b97816STheodore Ts'o 
134092b97816STheodore Ts'o 	ext4_msg(sb, KERN_CRIT, "Total free blocks count %lld",
13415dee5437STheodore Ts'o 	       EXT4_C2B(EXT4_SB(inode->i_sb),
1342f78ee70dSLukas Czerner 			ext4_count_free_clusters(sb)));
134392b97816STheodore Ts'o 	ext4_msg(sb, KERN_CRIT, "Free/Dirty block details");
134492b97816STheodore Ts'o 	ext4_msg(sb, KERN_CRIT, "free_blocks=%lld",
1345f78ee70dSLukas Czerner 	       (long long) EXT4_C2B(EXT4_SB(sb),
134657042651STheodore Ts'o 		percpu_counter_sum(&sbi->s_freeclusters_counter)));
134792b97816STheodore Ts'o 	ext4_msg(sb, KERN_CRIT, "dirty_blocks=%lld",
1348f78ee70dSLukas Czerner 	       (long long) EXT4_C2B(EXT4_SB(sb),
13497b415bf6SAditya Kali 		percpu_counter_sum(&sbi->s_dirtyclusters_counter)));
135092b97816STheodore Ts'o 	ext4_msg(sb, KERN_CRIT, "Block reservation details");
135192b97816STheodore Ts'o 	ext4_msg(sb, KERN_CRIT, "i_reserved_data_blocks=%u",
1352f78ee70dSLukas Czerner 		 ei->i_reserved_data_blocks);
1353df22291fSAneesh Kumar K.V 	return;
1354df22291fSAneesh Kumar K.V }
1355df22291fSAneesh Kumar K.V 
1356c364b22cSAneesh Kumar K.V static int ext4_bh_delay_or_unwritten(handle_t *handle, struct buffer_head *bh)
135729fa89d0SAneesh Kumar K.V {
1358c364b22cSAneesh Kumar K.V 	return (buffer_delay(bh) || buffer_unwritten(bh)) && buffer_dirty(bh);
135929fa89d0SAneesh Kumar K.V }
136029fa89d0SAneesh Kumar K.V 
136164769240SAlex Tomas /*
13625356f261SAditya Kali  * This function is grabs code from the very beginning of
13635356f261SAditya Kali  * ext4_map_blocks, but assumes that the caller is from delayed write
13645356f261SAditya Kali  * time. This function looks up the requested blocks and sets the
13655356f261SAditya Kali  * buffer delay bit under the protection of i_data_sem.
13665356f261SAditya Kali  */
13675356f261SAditya Kali static int ext4_da_map_blocks(struct inode *inode, sector_t iblock,
13685356f261SAditya Kali 			      struct ext4_map_blocks *map,
13695356f261SAditya Kali 			      struct buffer_head *bh)
13705356f261SAditya Kali {
1371d100eef2SZheng Liu 	struct extent_status es;
13725356f261SAditya Kali 	int retval;
13735356f261SAditya Kali 	sector_t invalid_block = ~((sector_t) 0xffff);
1374921f266bSDmitry Monakhov #ifdef ES_AGGRESSIVE_TEST
1375921f266bSDmitry Monakhov 	struct ext4_map_blocks orig_map;
1376921f266bSDmitry Monakhov 
1377921f266bSDmitry Monakhov 	memcpy(&orig_map, map, sizeof(*map));
1378921f266bSDmitry Monakhov #endif
13795356f261SAditya Kali 
13805356f261SAditya Kali 	if (invalid_block < ext4_blocks_count(EXT4_SB(inode->i_sb)->s_es))
13815356f261SAditya Kali 		invalid_block = ~0;
13825356f261SAditya Kali 
13835356f261SAditya Kali 	map->m_flags = 0;
13845356f261SAditya Kali 	ext_debug("ext4_da_map_blocks(): inode %lu, max_blocks %u,"
13855356f261SAditya Kali 		  "logical block %lu\n", inode->i_ino, map->m_len,
13865356f261SAditya Kali 		  (unsigned long) map->m_lblk);
1387d100eef2SZheng Liu 
1388d100eef2SZheng Liu 	/* Lookup extent status tree firstly */
1389d100eef2SZheng Liu 	if (ext4_es_lookup_extent(inode, iblock, &es)) {
1390d100eef2SZheng Liu 		if (ext4_es_is_hole(&es)) {
1391d100eef2SZheng Liu 			retval = 0;
1392c8b459f4SLukas Czerner 			down_read(&EXT4_I(inode)->i_data_sem);
1393d100eef2SZheng Liu 			goto add_delayed;
1394d100eef2SZheng Liu 		}
1395d100eef2SZheng Liu 
1396d100eef2SZheng Liu 		/*
1397d100eef2SZheng Liu 		 * Delayed extent could be allocated by fallocate.
1398d100eef2SZheng Liu 		 * So we need to check it.
1399d100eef2SZheng Liu 		 */
1400d100eef2SZheng Liu 		if (ext4_es_is_delayed(&es) && !ext4_es_is_unwritten(&es)) {
1401d100eef2SZheng Liu 			map_bh(bh, inode->i_sb, invalid_block);
1402d100eef2SZheng Liu 			set_buffer_new(bh);
1403d100eef2SZheng Liu 			set_buffer_delay(bh);
1404d100eef2SZheng Liu 			return 0;
1405d100eef2SZheng Liu 		}
1406d100eef2SZheng Liu 
1407d100eef2SZheng Liu 		map->m_pblk = ext4_es_pblock(&es) + iblock - es.es_lblk;
1408d100eef2SZheng Liu 		retval = es.es_len - (iblock - es.es_lblk);
1409d100eef2SZheng Liu 		if (retval > map->m_len)
1410d100eef2SZheng Liu 			retval = map->m_len;
1411d100eef2SZheng Liu 		map->m_len = retval;
1412d100eef2SZheng Liu 		if (ext4_es_is_written(&es))
1413d100eef2SZheng Liu 			map->m_flags |= EXT4_MAP_MAPPED;
1414d100eef2SZheng Liu 		else if (ext4_es_is_unwritten(&es))
1415d100eef2SZheng Liu 			map->m_flags |= EXT4_MAP_UNWRITTEN;
1416d100eef2SZheng Liu 		else
1417d100eef2SZheng Liu 			BUG_ON(1);
1418d100eef2SZheng Liu 
1419921f266bSDmitry Monakhov #ifdef ES_AGGRESSIVE_TEST
1420921f266bSDmitry Monakhov 		ext4_map_blocks_es_recheck(NULL, inode, map, &orig_map, 0);
1421921f266bSDmitry Monakhov #endif
1422d100eef2SZheng Liu 		return retval;
1423d100eef2SZheng Liu 	}
1424d100eef2SZheng Liu 
14255356f261SAditya Kali 	/*
14265356f261SAditya Kali 	 * Try to see if we can get the block without requesting a new
14275356f261SAditya Kali 	 * file system block.
14285356f261SAditya Kali 	 */
1429c8b459f4SLukas Czerner 	down_read(&EXT4_I(inode)->i_data_sem);
1430cbd7584eSJan Kara 	if (ext4_has_inline_data(inode))
14319c3569b5STao Ma 		retval = 0;
1432cbd7584eSJan Kara 	else if (ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS))
14332f8e0a7cSZheng Liu 		retval = ext4_ext_map_blocks(NULL, inode, map, 0);
14345356f261SAditya Kali 	else
14352f8e0a7cSZheng Liu 		retval = ext4_ind_map_blocks(NULL, inode, map, 0);
14365356f261SAditya Kali 
1437d100eef2SZheng Liu add_delayed:
14385356f261SAditya Kali 	if (retval == 0) {
1439f7fec032SZheng Liu 		int ret;
14405356f261SAditya Kali 		/*
14415356f261SAditya Kali 		 * XXX: __block_prepare_write() unmaps passed block,
14425356f261SAditya Kali 		 * is it OK?
14435356f261SAditya Kali 		 */
1444386ad67cSLukas Czerner 		/*
1445386ad67cSLukas Czerner 		 * If the block was allocated from previously allocated cluster,
1446386ad67cSLukas Czerner 		 * then we don't need to reserve it again. However we still need
1447386ad67cSLukas Czerner 		 * to reserve metadata for every block we're going to write.
1448386ad67cSLukas Czerner 		 */
1449cbd7584eSJan Kara 		if (EXT4_SB(inode->i_sb)->s_cluster_ratio <= 1 ||
1450cbd7584eSJan Kara 		    !ext4_find_delalloc_cluster(inode, map->m_lblk)) {
1451f7fec032SZheng Liu 			ret = ext4_da_reserve_space(inode, iblock);
1452f7fec032SZheng Liu 			if (ret) {
14535356f261SAditya Kali 				/* not enough space to reserve */
1454f7fec032SZheng Liu 				retval = ret;
14555356f261SAditya Kali 				goto out_unlock;
14565356f261SAditya Kali 			}
1457f7fec032SZheng Liu 		}
14585356f261SAditya Kali 
1459f7fec032SZheng Liu 		ret = ext4_es_insert_extent(inode, map->m_lblk, map->m_len,
1460fdc0212eSZheng Liu 					    ~0, EXTENT_STATUS_DELAYED);
1461f7fec032SZheng Liu 		if (ret) {
1462f7fec032SZheng Liu 			retval = ret;
146351865fdaSZheng Liu 			goto out_unlock;
1464f7fec032SZheng Liu 		}
146551865fdaSZheng Liu 
14665356f261SAditya Kali 		map_bh(bh, inode->i_sb, invalid_block);
14675356f261SAditya Kali 		set_buffer_new(bh);
14685356f261SAditya Kali 		set_buffer_delay(bh);
1469f7fec032SZheng Liu 	} else if (retval > 0) {
1470f7fec032SZheng Liu 		int ret;
14713be78c73STheodore Ts'o 		unsigned int status;
1472f7fec032SZheng Liu 
147344fb851dSZheng Liu 		if (unlikely(retval != map->m_len)) {
147444fb851dSZheng Liu 			ext4_warning(inode->i_sb,
147544fb851dSZheng Liu 				     "ES len assertion failed for inode "
147644fb851dSZheng Liu 				     "%lu: retval %d != map->m_len %d",
147744fb851dSZheng Liu 				     inode->i_ino, retval, map->m_len);
147844fb851dSZheng Liu 			WARN_ON(1);
1479921f266bSDmitry Monakhov 		}
1480921f266bSDmitry Monakhov 
1481f7fec032SZheng Liu 		status = map->m_flags & EXT4_MAP_UNWRITTEN ?
1482f7fec032SZheng Liu 				EXTENT_STATUS_UNWRITTEN : EXTENT_STATUS_WRITTEN;
1483f7fec032SZheng Liu 		ret = ext4_es_insert_extent(inode, map->m_lblk, map->m_len,
1484f7fec032SZheng Liu 					    map->m_pblk, status);
1485f7fec032SZheng Liu 		if (ret != 0)
1486f7fec032SZheng Liu 			retval = ret;
14875356f261SAditya Kali 	}
14885356f261SAditya Kali 
14895356f261SAditya Kali out_unlock:
14905356f261SAditya Kali 	up_read((&EXT4_I(inode)->i_data_sem));
14915356f261SAditya Kali 
14925356f261SAditya Kali 	return retval;
14935356f261SAditya Kali }
14945356f261SAditya Kali 
14955356f261SAditya Kali /*
1496d91bd2c1SSeunghun Lee  * This is a special get_block_t callback which is used by
1497b920c755STheodore Ts'o  * ext4_da_write_begin().  It will either return mapped block or
1498b920c755STheodore Ts'o  * reserve space for a single block.
149929fa89d0SAneesh Kumar K.V  *
150029fa89d0SAneesh Kumar K.V  * For delayed buffer_head we have BH_Mapped, BH_New, BH_Delay set.
150129fa89d0SAneesh Kumar K.V  * We also have b_blocknr = -1 and b_bdev initialized properly
150229fa89d0SAneesh Kumar K.V  *
150329fa89d0SAneesh Kumar K.V  * For unwritten buffer_head we have BH_Mapped, BH_New, BH_Unwritten set.
150429fa89d0SAneesh Kumar K.V  * We also have b_blocknr = physicalblock mapping unwritten extent and b_bdev
150529fa89d0SAneesh Kumar K.V  * initialized properly.
150664769240SAlex Tomas  */
15079c3569b5STao Ma int ext4_da_get_block_prep(struct inode *inode, sector_t iblock,
15082ed88685STheodore Ts'o 			   struct buffer_head *bh, int create)
150964769240SAlex Tomas {
15102ed88685STheodore Ts'o 	struct ext4_map_blocks map;
151164769240SAlex Tomas 	int ret = 0;
151264769240SAlex Tomas 
151364769240SAlex Tomas 	BUG_ON(create == 0);
15142ed88685STheodore Ts'o 	BUG_ON(bh->b_size != inode->i_sb->s_blocksize);
15152ed88685STheodore Ts'o 
15162ed88685STheodore Ts'o 	map.m_lblk = iblock;
15172ed88685STheodore Ts'o 	map.m_len = 1;
151864769240SAlex Tomas 
151964769240SAlex Tomas 	/*
152064769240SAlex Tomas 	 * first, we need to know whether the block is allocated already
152164769240SAlex Tomas 	 * preallocated blocks are unmapped but should treated
152264769240SAlex Tomas 	 * the same as allocated blocks.
152364769240SAlex Tomas 	 */
15245356f261SAditya Kali 	ret = ext4_da_map_blocks(inode, iblock, &map, bh);
15255356f261SAditya Kali 	if (ret <= 0)
15262ed88685STheodore Ts'o 		return ret;
152764769240SAlex Tomas 
15282ed88685STheodore Ts'o 	map_bh(bh, inode->i_sb, map.m_pblk);
15292ed88685STheodore Ts'o 	bh->b_state = (bh->b_state & ~EXT4_MAP_FLAGS) | map.m_flags;
15302ed88685STheodore Ts'o 
15312ed88685STheodore Ts'o 	if (buffer_unwritten(bh)) {
15322ed88685STheodore Ts'o 		/* A delayed write to unwritten bh should be marked
15332ed88685STheodore Ts'o 		 * new and mapped.  Mapped ensures that we don't do
15342ed88685STheodore Ts'o 		 * get_block multiple times when we write to the same
15352ed88685STheodore Ts'o 		 * offset and new ensures that we do proper zero out
15362ed88685STheodore Ts'o 		 * for partial write.
15372ed88685STheodore Ts'o 		 */
15382ed88685STheodore Ts'o 		set_buffer_new(bh);
1539c8205636STheodore Ts'o 		set_buffer_mapped(bh);
15402ed88685STheodore Ts'o 	}
15412ed88685STheodore Ts'o 	return 0;
154264769240SAlex Tomas }
154361628a3fSMingming Cao 
154462e086beSAneesh Kumar K.V static int bget_one(handle_t *handle, struct buffer_head *bh)
154562e086beSAneesh Kumar K.V {
154662e086beSAneesh Kumar K.V 	get_bh(bh);
154762e086beSAneesh Kumar K.V 	return 0;
154862e086beSAneesh Kumar K.V }
154962e086beSAneesh Kumar K.V 
155062e086beSAneesh Kumar K.V static int bput_one(handle_t *handle, struct buffer_head *bh)
155162e086beSAneesh Kumar K.V {
155262e086beSAneesh Kumar K.V 	put_bh(bh);
155362e086beSAneesh Kumar K.V 	return 0;
155462e086beSAneesh Kumar K.V }
155562e086beSAneesh Kumar K.V 
155662e086beSAneesh Kumar K.V static int __ext4_journalled_writepage(struct page *page,
155762e086beSAneesh Kumar K.V 				       unsigned int len)
155862e086beSAneesh Kumar K.V {
155962e086beSAneesh Kumar K.V 	struct address_space *mapping = page->mapping;
156062e086beSAneesh Kumar K.V 	struct inode *inode = mapping->host;
15613fdcfb66STao Ma 	struct buffer_head *page_bufs = NULL;
156262e086beSAneesh Kumar K.V 	handle_t *handle = NULL;
15633fdcfb66STao Ma 	int ret = 0, err = 0;
15643fdcfb66STao Ma 	int inline_data = ext4_has_inline_data(inode);
15653fdcfb66STao Ma 	struct buffer_head *inode_bh = NULL;
156662e086beSAneesh Kumar K.V 
1567cb20d518STheodore Ts'o 	ClearPageChecked(page);
15683fdcfb66STao Ma 
15693fdcfb66STao Ma 	if (inline_data) {
15703fdcfb66STao Ma 		BUG_ON(page->index != 0);
15713fdcfb66STao Ma 		BUG_ON(len > ext4_get_max_inline_size(inode));
15723fdcfb66STao Ma 		inode_bh = ext4_journalled_write_inline_data(inode, len, page);
15733fdcfb66STao Ma 		if (inode_bh == NULL)
15743fdcfb66STao Ma 			goto out;
15753fdcfb66STao Ma 	} else {
157662e086beSAneesh Kumar K.V 		page_bufs = page_buffers(page);
15773fdcfb66STao Ma 		if (!page_bufs) {
15783fdcfb66STao Ma 			BUG();
15793fdcfb66STao Ma 			goto out;
15803fdcfb66STao Ma 		}
15813fdcfb66STao Ma 		ext4_walk_page_buffers(handle, page_bufs, 0, len,
15823fdcfb66STao Ma 				       NULL, bget_one);
15833fdcfb66STao Ma 	}
158462e086beSAneesh Kumar K.V 	/* As soon as we unlock the page, it can go away, but we have
158562e086beSAneesh Kumar K.V 	 * references to buffers so we are safe */
158662e086beSAneesh Kumar K.V 	unlock_page(page);
158762e086beSAneesh Kumar K.V 
15889924a92aSTheodore Ts'o 	handle = ext4_journal_start(inode, EXT4_HT_WRITE_PAGE,
15899924a92aSTheodore Ts'o 				    ext4_writepage_trans_blocks(inode));
159062e086beSAneesh Kumar K.V 	if (IS_ERR(handle)) {
159162e086beSAneesh Kumar K.V 		ret = PTR_ERR(handle);
159262e086beSAneesh Kumar K.V 		goto out;
159362e086beSAneesh Kumar K.V 	}
159462e086beSAneesh Kumar K.V 
1595441c8508SCurt Wohlgemuth 	BUG_ON(!ext4_handle_valid(handle));
1596441c8508SCurt Wohlgemuth 
15973fdcfb66STao Ma 	if (inline_data) {
15985d601255Sliang xie 		BUFFER_TRACE(inode_bh, "get write access");
15993fdcfb66STao Ma 		ret = ext4_journal_get_write_access(handle, inode_bh);
16003fdcfb66STao Ma 
16013fdcfb66STao Ma 		err = ext4_handle_dirty_metadata(handle, inode, inode_bh);
16023fdcfb66STao Ma 
16033fdcfb66STao Ma 	} else {
1604f19d5870STao Ma 		ret = ext4_walk_page_buffers(handle, page_bufs, 0, len, NULL,
160562e086beSAneesh Kumar K.V 					     do_journal_get_write_access);
160662e086beSAneesh Kumar K.V 
1607f19d5870STao Ma 		err = ext4_walk_page_buffers(handle, page_bufs, 0, len, NULL,
160862e086beSAneesh Kumar K.V 					     write_end_fn);
16093fdcfb66STao Ma 	}
161062e086beSAneesh Kumar K.V 	if (ret == 0)
161162e086beSAneesh Kumar K.V 		ret = err;
16122d859db3SJan Kara 	EXT4_I(inode)->i_datasync_tid = handle->h_transaction->t_tid;
161362e086beSAneesh Kumar K.V 	err = ext4_journal_stop(handle);
161462e086beSAneesh Kumar K.V 	if (!ret)
161562e086beSAneesh Kumar K.V 		ret = err;
161662e086beSAneesh Kumar K.V 
16173fdcfb66STao Ma 	if (!ext4_has_inline_data(inode))
16188c9367fdSTheodore Ts'o 		ext4_walk_page_buffers(NULL, page_bufs, 0, len,
16193fdcfb66STao Ma 				       NULL, bput_one);
162019f5fb7aSTheodore Ts'o 	ext4_set_inode_state(inode, EXT4_STATE_JDATA);
162162e086beSAneesh Kumar K.V out:
16223fdcfb66STao Ma 	brelse(inode_bh);
162362e086beSAneesh Kumar K.V 	return ret;
162462e086beSAneesh Kumar K.V }
162562e086beSAneesh Kumar K.V 
162661628a3fSMingming Cao /*
162743ce1d23SAneesh Kumar K.V  * Note that we don't need to start a transaction unless we're journaling data
162843ce1d23SAneesh Kumar K.V  * because we should have holes filled from ext4_page_mkwrite(). We even don't
162943ce1d23SAneesh Kumar K.V  * need to file the inode to the transaction's list in ordered mode because if
163043ce1d23SAneesh Kumar K.V  * we are writing back data added by write(), the inode is already there and if
163143ce1d23SAneesh Kumar K.V  * we are writing back data modified via mmap(), no one guarantees in which
163243ce1d23SAneesh Kumar K.V  * transaction the data will hit the disk. In case we are journaling data, we
163343ce1d23SAneesh Kumar K.V  * cannot start transaction directly because transaction start ranks above page
163443ce1d23SAneesh Kumar K.V  * lock so we have to do some magic.
163543ce1d23SAneesh Kumar K.V  *
1636b920c755STheodore Ts'o  * This function can get called via...
163720970ba6STheodore Ts'o  *   - ext4_writepages after taking page lock (have journal handle)
1638b920c755STheodore Ts'o  *   - journal_submit_inode_data_buffers (no journal handle)
1639f6463b0dSArtem Bityutskiy  *   - shrink_page_list via the kswapd/direct reclaim (no journal handle)
1640b920c755STheodore Ts'o  *   - grab_page_cache when doing write_begin (have journal handle)
164143ce1d23SAneesh Kumar K.V  *
164243ce1d23SAneesh Kumar K.V  * We don't do any block allocation in this function. If we have page with
164343ce1d23SAneesh Kumar K.V  * multiple blocks we need to write those buffer_heads that are mapped. This
164443ce1d23SAneesh Kumar K.V  * is important for mmaped based write. So if we do with blocksize 1K
164543ce1d23SAneesh Kumar K.V  * truncate(f, 1024);
164643ce1d23SAneesh Kumar K.V  * a = mmap(f, 0, 4096);
164743ce1d23SAneesh Kumar K.V  * a[0] = 'a';
164843ce1d23SAneesh Kumar K.V  * truncate(f, 4096);
164943ce1d23SAneesh Kumar K.V  * we have in the page first buffer_head mapped via page_mkwrite call back
165090802ed9SPaul Bolle  * but other buffer_heads would be unmapped but dirty (dirty done via the
165143ce1d23SAneesh Kumar K.V  * do_wp_page). So writepage should write the first block. If we modify
165243ce1d23SAneesh Kumar K.V  * the mmap area beyond 1024 we will again get a page_fault and the
165343ce1d23SAneesh Kumar K.V  * page_mkwrite callback will do the block allocation and mark the
165443ce1d23SAneesh Kumar K.V  * buffer_heads mapped.
165543ce1d23SAneesh Kumar K.V  *
165643ce1d23SAneesh Kumar K.V  * We redirty the page if we have any buffer_heads that is either delay or
165743ce1d23SAneesh Kumar K.V  * unwritten in the page.
165843ce1d23SAneesh Kumar K.V  *
165943ce1d23SAneesh Kumar K.V  * We can get recursively called as show below.
166043ce1d23SAneesh Kumar K.V  *
166143ce1d23SAneesh Kumar K.V  *	ext4_writepage() -> kmalloc() -> __alloc_pages() -> page_launder() ->
166243ce1d23SAneesh Kumar K.V  *		ext4_writepage()
166343ce1d23SAneesh Kumar K.V  *
166443ce1d23SAneesh Kumar K.V  * But since we don't do any block allocation we should not deadlock.
166543ce1d23SAneesh Kumar K.V  * Page also have the dirty flag cleared so we don't get recurive page_lock.
166661628a3fSMingming Cao  */
166743ce1d23SAneesh Kumar K.V static int ext4_writepage(struct page *page,
166864769240SAlex Tomas 			  struct writeback_control *wbc)
166964769240SAlex Tomas {
1670f8bec370SJan Kara 	int ret = 0;
167161628a3fSMingming Cao 	loff_t size;
1672498e5f24STheodore Ts'o 	unsigned int len;
1673744692dcSJiaying Zhang 	struct buffer_head *page_bufs = NULL;
167461628a3fSMingming Cao 	struct inode *inode = page->mapping->host;
167536ade451SJan Kara 	struct ext4_io_submit io_submit;
16761c8349a1SNamjae Jeon 	bool keep_towrite = false;
167764769240SAlex Tomas 
1678a9c667f8SLukas Czerner 	trace_ext4_writepage(page);
167961628a3fSMingming Cao 	size = i_size_read(inode);
168061628a3fSMingming Cao 	if (page->index == size >> PAGE_CACHE_SHIFT)
168161628a3fSMingming Cao 		len = size & ~PAGE_CACHE_MASK;
168261628a3fSMingming Cao 	else
168361628a3fSMingming Cao 		len = PAGE_CACHE_SIZE;
168461628a3fSMingming Cao 
1685f0e6c985SAneesh Kumar K.V 	page_bufs = page_buffers(page);
168664769240SAlex Tomas 	/*
1687fe386132SJan Kara 	 * We cannot do block allocation or other extent handling in this
1688fe386132SJan Kara 	 * function. If there are buffers needing that, we have to redirty
1689fe386132SJan Kara 	 * the page. But we may reach here when we do a journal commit via
1690fe386132SJan Kara 	 * journal_submit_inode_data_buffers() and in that case we must write
1691fe386132SJan Kara 	 * allocated buffers to achieve data=ordered mode guarantees.
169264769240SAlex Tomas 	 */
1693f19d5870STao Ma 	if (ext4_walk_page_buffers(NULL, page_bufs, 0, len, NULL,
1694c364b22cSAneesh Kumar K.V 				   ext4_bh_delay_or_unwritten)) {
169561628a3fSMingming Cao 		redirty_page_for_writepage(wbc, page);
1696fe386132SJan Kara 		if (current->flags & PF_MEMALLOC) {
1697fe386132SJan Kara 			/*
1698fe386132SJan Kara 			 * For memory cleaning there's no point in writing only
1699fe386132SJan Kara 			 * some buffers. So just bail out. Warn if we came here
1700fe386132SJan Kara 			 * from direct reclaim.
1701fe386132SJan Kara 			 */
1702fe386132SJan Kara 			WARN_ON_ONCE((current->flags & (PF_MEMALLOC|PF_KSWAPD))
1703fe386132SJan Kara 							== PF_MEMALLOC);
170461628a3fSMingming Cao 			unlock_page(page);
170561628a3fSMingming Cao 			return 0;
170661628a3fSMingming Cao 		}
17071c8349a1SNamjae Jeon 		keep_towrite = true;
1708f0e6c985SAneesh Kumar K.V 	}
170964769240SAlex Tomas 
1710cb20d518STheodore Ts'o 	if (PageChecked(page) && ext4_should_journal_data(inode))
171143ce1d23SAneesh Kumar K.V 		/*
171243ce1d23SAneesh Kumar K.V 		 * It's mmapped pagecache.  Add buffers and journal it.  There
171343ce1d23SAneesh Kumar K.V 		 * doesn't seem much point in redirtying the page here.
171443ce1d23SAneesh Kumar K.V 		 */
17153f0ca309SWu Fengguang 		return __ext4_journalled_writepage(page, len);
171643ce1d23SAneesh Kumar K.V 
171797a851edSJan Kara 	ext4_io_submit_init(&io_submit, wbc);
171897a851edSJan Kara 	io_submit.io_end = ext4_init_io_end(inode, GFP_NOFS);
171997a851edSJan Kara 	if (!io_submit.io_end) {
172097a851edSJan Kara 		redirty_page_for_writepage(wbc, page);
172197a851edSJan Kara 		unlock_page(page);
172297a851edSJan Kara 		return -ENOMEM;
172397a851edSJan Kara 	}
17241c8349a1SNamjae Jeon 	ret = ext4_bio_write_page(&io_submit, page, len, wbc, keep_towrite);
172536ade451SJan Kara 	ext4_io_submit(&io_submit);
172697a851edSJan Kara 	/* Drop io_end reference we got from init */
172797a851edSJan Kara 	ext4_put_io_end_defer(io_submit.io_end);
172864769240SAlex Tomas 	return ret;
172964769240SAlex Tomas }
173064769240SAlex Tomas 
17315f1132b2SJan Kara static int mpage_submit_page(struct mpage_da_data *mpd, struct page *page)
17325f1132b2SJan Kara {
17335f1132b2SJan Kara 	int len;
17345f1132b2SJan Kara 	loff_t size = i_size_read(mpd->inode);
17355f1132b2SJan Kara 	int err;
17365f1132b2SJan Kara 
17375f1132b2SJan Kara 	BUG_ON(page->index != mpd->first_page);
17385f1132b2SJan Kara 	if (page->index == size >> PAGE_CACHE_SHIFT)
17395f1132b2SJan Kara 		len = size & ~PAGE_CACHE_MASK;
17405f1132b2SJan Kara 	else
17415f1132b2SJan Kara 		len = PAGE_CACHE_SIZE;
17425f1132b2SJan Kara 	clear_page_dirty_for_io(page);
17431c8349a1SNamjae Jeon 	err = ext4_bio_write_page(&mpd->io_submit, page, len, mpd->wbc, false);
17445f1132b2SJan Kara 	if (!err)
17455f1132b2SJan Kara 		mpd->wbc->nr_to_write--;
17465f1132b2SJan Kara 	mpd->first_page++;
17475f1132b2SJan Kara 
17485f1132b2SJan Kara 	return err;
17495f1132b2SJan Kara }
17505f1132b2SJan Kara 
17514e7ea81dSJan Kara #define BH_FLAGS ((1 << BH_Unwritten) | (1 << BH_Delay))
17524e7ea81dSJan Kara 
175361628a3fSMingming Cao /*
1754fffb2739SJan Kara  * mballoc gives us at most this number of blocks...
1755fffb2739SJan Kara  * XXX: That seems to be only a limitation of ext4_mb_normalize_request().
1756fffb2739SJan Kara  * The rest of mballoc seems to handle chunks up to full group size.
175761628a3fSMingming Cao  */
1758fffb2739SJan Kara #define MAX_WRITEPAGES_EXTENT_LEN 2048
1759525f4ed8SMingming Cao 
1760525f4ed8SMingming Cao /*
17614e7ea81dSJan Kara  * mpage_add_bh_to_extent - try to add bh to extent of blocks to map
17624e7ea81dSJan Kara  *
17634e7ea81dSJan Kara  * @mpd - extent of blocks
17644e7ea81dSJan Kara  * @lblk - logical number of the block in the file
176509930042SJan Kara  * @bh - buffer head we want to add to the extent
17664e7ea81dSJan Kara  *
176709930042SJan Kara  * The function is used to collect contig. blocks in the same state. If the
176809930042SJan Kara  * buffer doesn't require mapping for writeback and we haven't started the
176909930042SJan Kara  * extent of buffers to map yet, the function returns 'true' immediately - the
177009930042SJan Kara  * caller can write the buffer right away. Otherwise the function returns true
177109930042SJan Kara  * if the block has been added to the extent, false if the block couldn't be
177209930042SJan Kara  * added.
17734e7ea81dSJan Kara  */
177409930042SJan Kara static bool mpage_add_bh_to_extent(struct mpage_da_data *mpd, ext4_lblk_t lblk,
177509930042SJan Kara 				   struct buffer_head *bh)
17764e7ea81dSJan Kara {
17774e7ea81dSJan Kara 	struct ext4_map_blocks *map = &mpd->map;
17784e7ea81dSJan Kara 
177909930042SJan Kara 	/* Buffer that doesn't need mapping for writeback? */
178009930042SJan Kara 	if (!buffer_dirty(bh) || !buffer_mapped(bh) ||
178109930042SJan Kara 	    (!buffer_delay(bh) && !buffer_unwritten(bh))) {
178209930042SJan Kara 		/* So far no extent to map => we write the buffer right away */
178309930042SJan Kara 		if (map->m_len == 0)
178409930042SJan Kara 			return true;
178509930042SJan Kara 		return false;
178609930042SJan Kara 	}
17874e7ea81dSJan Kara 
17884e7ea81dSJan Kara 	/* First block in the extent? */
17894e7ea81dSJan Kara 	if (map->m_len == 0) {
17904e7ea81dSJan Kara 		map->m_lblk = lblk;
17914e7ea81dSJan Kara 		map->m_len = 1;
179209930042SJan Kara 		map->m_flags = bh->b_state & BH_FLAGS;
179309930042SJan Kara 		return true;
17944e7ea81dSJan Kara 	}
17954e7ea81dSJan Kara 
179609930042SJan Kara 	/* Don't go larger than mballoc is willing to allocate */
179709930042SJan Kara 	if (map->m_len >= MAX_WRITEPAGES_EXTENT_LEN)
179809930042SJan Kara 		return false;
179909930042SJan Kara 
18004e7ea81dSJan Kara 	/* Can we merge the block to our big extent? */
18014e7ea81dSJan Kara 	if (lblk == map->m_lblk + map->m_len &&
180209930042SJan Kara 	    (bh->b_state & BH_FLAGS) == map->m_flags) {
18034e7ea81dSJan Kara 		map->m_len++;
180409930042SJan Kara 		return true;
18054e7ea81dSJan Kara 	}
180609930042SJan Kara 	return false;
18074e7ea81dSJan Kara }
18084e7ea81dSJan Kara 
18095f1132b2SJan Kara /*
18105f1132b2SJan Kara  * mpage_process_page_bufs - submit page buffers for IO or add them to extent
18115f1132b2SJan Kara  *
18125f1132b2SJan Kara  * @mpd - extent of blocks for mapping
18135f1132b2SJan Kara  * @head - the first buffer in the page
18145f1132b2SJan Kara  * @bh - buffer we should start processing from
18155f1132b2SJan Kara  * @lblk - logical number of the block in the file corresponding to @bh
18165f1132b2SJan Kara  *
18175f1132b2SJan Kara  * Walk through page buffers from @bh upto @head (exclusive) and either submit
18185f1132b2SJan Kara  * the page for IO if all buffers in this page were mapped and there's no
18195f1132b2SJan Kara  * accumulated extent of buffers to map or add buffers in the page to the
18205f1132b2SJan Kara  * extent of buffers to map. The function returns 1 if the caller can continue
18215f1132b2SJan Kara  * by processing the next page, 0 if it should stop adding buffers to the
18225f1132b2SJan Kara  * extent to map because we cannot extend it anymore. It can also return value
18235f1132b2SJan Kara  * < 0 in case of error during IO submission.
18245f1132b2SJan Kara  */
18255f1132b2SJan Kara static int mpage_process_page_bufs(struct mpage_da_data *mpd,
18264e7ea81dSJan Kara 				   struct buffer_head *head,
18274e7ea81dSJan Kara 				   struct buffer_head *bh,
18284e7ea81dSJan Kara 				   ext4_lblk_t lblk)
18294e7ea81dSJan Kara {
18304e7ea81dSJan Kara 	struct inode *inode = mpd->inode;
18315f1132b2SJan Kara 	int err;
18324e7ea81dSJan Kara 	ext4_lblk_t blocks = (i_size_read(inode) + (1 << inode->i_blkbits) - 1)
18334e7ea81dSJan Kara 							>> inode->i_blkbits;
18344e7ea81dSJan Kara 
18354e7ea81dSJan Kara 	do {
18364e7ea81dSJan Kara 		BUG_ON(buffer_locked(bh));
18374e7ea81dSJan Kara 
183809930042SJan Kara 		if (lblk >= blocks || !mpage_add_bh_to_extent(mpd, lblk, bh)) {
18394e7ea81dSJan Kara 			/* Found extent to map? */
18404e7ea81dSJan Kara 			if (mpd->map.m_len)
18415f1132b2SJan Kara 				return 0;
184209930042SJan Kara 			/* Everything mapped so far and we hit EOF */
18435f1132b2SJan Kara 			break;
18444e7ea81dSJan Kara 		}
18454e7ea81dSJan Kara 	} while (lblk++, (bh = bh->b_this_page) != head);
18465f1132b2SJan Kara 	/* So far everything mapped? Submit the page for IO. */
18475f1132b2SJan Kara 	if (mpd->map.m_len == 0) {
18485f1132b2SJan Kara 		err = mpage_submit_page(mpd, head->b_page);
18495f1132b2SJan Kara 		if (err < 0)
18504e7ea81dSJan Kara 			return err;
18514e7ea81dSJan Kara 	}
18525f1132b2SJan Kara 	return lblk < blocks;
18535f1132b2SJan Kara }
18544e7ea81dSJan Kara 
18554e7ea81dSJan Kara /*
18564e7ea81dSJan Kara  * mpage_map_buffers - update buffers corresponding to changed extent and
18574e7ea81dSJan Kara  *		       submit fully mapped pages for IO
18584e7ea81dSJan Kara  *
18594e7ea81dSJan Kara  * @mpd - description of extent to map, on return next extent to map
18604e7ea81dSJan Kara  *
18614e7ea81dSJan Kara  * Scan buffers corresponding to changed extent (we expect corresponding pages
18624e7ea81dSJan Kara  * to be already locked) and update buffer state according to new extent state.
18634e7ea81dSJan Kara  * We map delalloc buffers to their physical location, clear unwritten bits,
1864556615dcSLukas Czerner  * and mark buffers as uninit when we perform writes to unwritten extents
18654e7ea81dSJan Kara  * and do extent conversion after IO is finished. If the last page is not fully
18664e7ea81dSJan Kara  * mapped, we update @map to the next extent in the last page that needs
18674e7ea81dSJan Kara  * mapping. Otherwise we submit the page for IO.
18684e7ea81dSJan Kara  */
18694e7ea81dSJan Kara static int mpage_map_and_submit_buffers(struct mpage_da_data *mpd)
18704e7ea81dSJan Kara {
18714e7ea81dSJan Kara 	struct pagevec pvec;
18724e7ea81dSJan Kara 	int nr_pages, i;
18734e7ea81dSJan Kara 	struct inode *inode = mpd->inode;
18744e7ea81dSJan Kara 	struct buffer_head *head, *bh;
18754e7ea81dSJan Kara 	int bpp_bits = PAGE_CACHE_SHIFT - inode->i_blkbits;
18764e7ea81dSJan Kara 	pgoff_t start, end;
18774e7ea81dSJan Kara 	ext4_lblk_t lblk;
18784e7ea81dSJan Kara 	sector_t pblock;
18794e7ea81dSJan Kara 	int err;
18804e7ea81dSJan Kara 
18814e7ea81dSJan Kara 	start = mpd->map.m_lblk >> bpp_bits;
18824e7ea81dSJan Kara 	end = (mpd->map.m_lblk + mpd->map.m_len - 1) >> bpp_bits;
18834e7ea81dSJan Kara 	lblk = start << bpp_bits;
18844e7ea81dSJan Kara 	pblock = mpd->map.m_pblk;
18854e7ea81dSJan Kara 
18864e7ea81dSJan Kara 	pagevec_init(&pvec, 0);
18874e7ea81dSJan Kara 	while (start <= end) {
18884e7ea81dSJan Kara 		nr_pages = pagevec_lookup(&pvec, inode->i_mapping, start,
18894e7ea81dSJan Kara 					  PAGEVEC_SIZE);
18904e7ea81dSJan Kara 		if (nr_pages == 0)
18914e7ea81dSJan Kara 			break;
18924e7ea81dSJan Kara 		for (i = 0; i < nr_pages; i++) {
18934e7ea81dSJan Kara 			struct page *page = pvec.pages[i];
18944e7ea81dSJan Kara 
18954e7ea81dSJan Kara 			if (page->index > end)
18964e7ea81dSJan Kara 				break;
18974e7ea81dSJan Kara 			/* Up to 'end' pages must be contiguous */
18984e7ea81dSJan Kara 			BUG_ON(page->index != start);
18994e7ea81dSJan Kara 			bh = head = page_buffers(page);
19004e7ea81dSJan Kara 			do {
19014e7ea81dSJan Kara 				if (lblk < mpd->map.m_lblk)
19024e7ea81dSJan Kara 					continue;
19034e7ea81dSJan Kara 				if (lblk >= mpd->map.m_lblk + mpd->map.m_len) {
19044e7ea81dSJan Kara 					/*
19054e7ea81dSJan Kara 					 * Buffer after end of mapped extent.
19064e7ea81dSJan Kara 					 * Find next buffer in the page to map.
19074e7ea81dSJan Kara 					 */
19084e7ea81dSJan Kara 					mpd->map.m_len = 0;
19094e7ea81dSJan Kara 					mpd->map.m_flags = 0;
19105f1132b2SJan Kara 					/*
19115f1132b2SJan Kara 					 * FIXME: If dioread_nolock supports
19125f1132b2SJan Kara 					 * blocksize < pagesize, we need to make
19135f1132b2SJan Kara 					 * sure we add size mapped so far to
19145f1132b2SJan Kara 					 * io_end->size as the following call
19155f1132b2SJan Kara 					 * can submit the page for IO.
19165f1132b2SJan Kara 					 */
19175f1132b2SJan Kara 					err = mpage_process_page_bufs(mpd, head,
19185f1132b2SJan Kara 								      bh, lblk);
19194e7ea81dSJan Kara 					pagevec_release(&pvec);
19205f1132b2SJan Kara 					if (err > 0)
19215f1132b2SJan Kara 						err = 0;
19225f1132b2SJan Kara 					return err;
19234e7ea81dSJan Kara 				}
19244e7ea81dSJan Kara 				if (buffer_delay(bh)) {
19254e7ea81dSJan Kara 					clear_buffer_delay(bh);
19264e7ea81dSJan Kara 					bh->b_blocknr = pblock++;
19274e7ea81dSJan Kara 				}
19284e7ea81dSJan Kara 				clear_buffer_unwritten(bh);
19295f1132b2SJan Kara 			} while (lblk++, (bh = bh->b_this_page) != head);
19304e7ea81dSJan Kara 
19314e7ea81dSJan Kara 			/*
19324e7ea81dSJan Kara 			 * FIXME: This is going to break if dioread_nolock
19334e7ea81dSJan Kara 			 * supports blocksize < pagesize as we will try to
19344e7ea81dSJan Kara 			 * convert potentially unmapped parts of inode.
19354e7ea81dSJan Kara 			 */
19364e7ea81dSJan Kara 			mpd->io_submit.io_end->size += PAGE_CACHE_SIZE;
19374e7ea81dSJan Kara 			/* Page fully mapped - let IO run! */
19384e7ea81dSJan Kara 			err = mpage_submit_page(mpd, page);
19394e7ea81dSJan Kara 			if (err < 0) {
19404e7ea81dSJan Kara 				pagevec_release(&pvec);
19414e7ea81dSJan Kara 				return err;
19424e7ea81dSJan Kara 			}
19434e7ea81dSJan Kara 			start++;
19444e7ea81dSJan Kara 		}
19454e7ea81dSJan Kara 		pagevec_release(&pvec);
19464e7ea81dSJan Kara 	}
19474e7ea81dSJan Kara 	/* Extent fully mapped and matches with page boundary. We are done. */
19484e7ea81dSJan Kara 	mpd->map.m_len = 0;
19494e7ea81dSJan Kara 	mpd->map.m_flags = 0;
19504e7ea81dSJan Kara 	return 0;
19514e7ea81dSJan Kara }
19524e7ea81dSJan Kara 
19534e7ea81dSJan Kara static int mpage_map_one_extent(handle_t *handle, struct mpage_da_data *mpd)
19544e7ea81dSJan Kara {
19554e7ea81dSJan Kara 	struct inode *inode = mpd->inode;
19564e7ea81dSJan Kara 	struct ext4_map_blocks *map = &mpd->map;
19574e7ea81dSJan Kara 	int get_blocks_flags;
1958090f32eeSLukas Czerner 	int err, dioread_nolock;
19594e7ea81dSJan Kara 
19604e7ea81dSJan Kara 	trace_ext4_da_write_pages_extent(inode, map);
19614e7ea81dSJan Kara 	/*
19624e7ea81dSJan Kara 	 * Call ext4_map_blocks() to allocate any delayed allocation blocks, or
1963556615dcSLukas Czerner 	 * to convert an unwritten extent to be initialized (in the case
19644e7ea81dSJan Kara 	 * where we have written into one or more preallocated blocks).  It is
19654e7ea81dSJan Kara 	 * possible that we're going to need more metadata blocks than
19664e7ea81dSJan Kara 	 * previously reserved. However we must not fail because we're in
19674e7ea81dSJan Kara 	 * writeback and there is nothing we can do about it so it might result
19684e7ea81dSJan Kara 	 * in data loss.  So use reserved blocks to allocate metadata if
19694e7ea81dSJan Kara 	 * possible.
19704e7ea81dSJan Kara 	 *
1971754cfed6STheodore Ts'o 	 * We pass in the magic EXT4_GET_BLOCKS_DELALLOC_RESERVE if
1972754cfed6STheodore Ts'o 	 * the blocks in question are delalloc blocks.  This indicates
1973754cfed6STheodore Ts'o 	 * that the blocks and quotas has already been checked when
1974754cfed6STheodore Ts'o 	 * the data was copied into the page cache.
19754e7ea81dSJan Kara 	 */
19764e7ea81dSJan Kara 	get_blocks_flags = EXT4_GET_BLOCKS_CREATE |
19774e7ea81dSJan Kara 			   EXT4_GET_BLOCKS_METADATA_NOFAIL;
1978090f32eeSLukas Czerner 	dioread_nolock = ext4_should_dioread_nolock(inode);
1979090f32eeSLukas Czerner 	if (dioread_nolock)
19804e7ea81dSJan Kara 		get_blocks_flags |= EXT4_GET_BLOCKS_IO_CREATE_EXT;
19814e7ea81dSJan Kara 	if (map->m_flags & (1 << BH_Delay))
19824e7ea81dSJan Kara 		get_blocks_flags |= EXT4_GET_BLOCKS_DELALLOC_RESERVE;
19834e7ea81dSJan Kara 
19844e7ea81dSJan Kara 	err = ext4_map_blocks(handle, inode, map, get_blocks_flags);
19854e7ea81dSJan Kara 	if (err < 0)
19864e7ea81dSJan Kara 		return err;
1987090f32eeSLukas Czerner 	if (dioread_nolock && (map->m_flags & EXT4_MAP_UNWRITTEN)) {
19886b523df4SJan Kara 		if (!mpd->io_submit.io_end->handle &&
19896b523df4SJan Kara 		    ext4_handle_valid(handle)) {
19906b523df4SJan Kara 			mpd->io_submit.io_end->handle = handle->h_rsv_handle;
19916b523df4SJan Kara 			handle->h_rsv_handle = NULL;
19926b523df4SJan Kara 		}
19933613d228SJan Kara 		ext4_set_io_unwritten_flag(inode, mpd->io_submit.io_end);
19946b523df4SJan Kara 	}
19954e7ea81dSJan Kara 
19964e7ea81dSJan Kara 	BUG_ON(map->m_len == 0);
19974e7ea81dSJan Kara 	if (map->m_flags & EXT4_MAP_NEW) {
19984e7ea81dSJan Kara 		struct block_device *bdev = inode->i_sb->s_bdev;
19994e7ea81dSJan Kara 		int i;
20004e7ea81dSJan Kara 
20014e7ea81dSJan Kara 		for (i = 0; i < map->m_len; i++)
20024e7ea81dSJan Kara 			unmap_underlying_metadata(bdev, map->m_pblk + i);
20034e7ea81dSJan Kara 	}
20044e7ea81dSJan Kara 	return 0;
20054e7ea81dSJan Kara }
20064e7ea81dSJan Kara 
20074e7ea81dSJan Kara /*
20084e7ea81dSJan Kara  * mpage_map_and_submit_extent - map extent starting at mpd->lblk of length
20094e7ea81dSJan Kara  *				 mpd->len and submit pages underlying it for IO
20104e7ea81dSJan Kara  *
20114e7ea81dSJan Kara  * @handle - handle for journal operations
20124e7ea81dSJan Kara  * @mpd - extent to map
20137534e854SJan Kara  * @give_up_on_write - we set this to true iff there is a fatal error and there
20147534e854SJan Kara  *                     is no hope of writing the data. The caller should discard
20157534e854SJan Kara  *                     dirty pages to avoid infinite loops.
20164e7ea81dSJan Kara  *
20174e7ea81dSJan Kara  * The function maps extent starting at mpd->lblk of length mpd->len. If it is
20184e7ea81dSJan Kara  * delayed, blocks are allocated, if it is unwritten, we may need to convert
20194e7ea81dSJan Kara  * them to initialized or split the described range from larger unwritten
20204e7ea81dSJan Kara  * extent. Note that we need not map all the described range since allocation
20214e7ea81dSJan Kara  * can return less blocks or the range is covered by more unwritten extents. We
20224e7ea81dSJan Kara  * cannot map more because we are limited by reserved transaction credits. On
20234e7ea81dSJan Kara  * the other hand we always make sure that the last touched page is fully
20244e7ea81dSJan Kara  * mapped so that it can be written out (and thus forward progress is
20254e7ea81dSJan Kara  * guaranteed). After mapping we submit all mapped pages for IO.
20264e7ea81dSJan Kara  */
20274e7ea81dSJan Kara static int mpage_map_and_submit_extent(handle_t *handle,
2028cb530541STheodore Ts'o 				       struct mpage_da_data *mpd,
2029cb530541STheodore Ts'o 				       bool *give_up_on_write)
20304e7ea81dSJan Kara {
20314e7ea81dSJan Kara 	struct inode *inode = mpd->inode;
20324e7ea81dSJan Kara 	struct ext4_map_blocks *map = &mpd->map;
20334e7ea81dSJan Kara 	int err;
20344e7ea81dSJan Kara 	loff_t disksize;
20356603120eSDmitry Monakhov 	int progress = 0;
20364e7ea81dSJan Kara 
20374e7ea81dSJan Kara 	mpd->io_submit.io_end->offset =
20384e7ea81dSJan Kara 				((loff_t)map->m_lblk) << inode->i_blkbits;
203927d7c4edSJan Kara 	do {
20404e7ea81dSJan Kara 		err = mpage_map_one_extent(handle, mpd);
20414e7ea81dSJan Kara 		if (err < 0) {
20424e7ea81dSJan Kara 			struct super_block *sb = inode->i_sb;
20434e7ea81dSJan Kara 
2044cb530541STheodore Ts'o 			if (EXT4_SB(sb)->s_mount_flags & EXT4_MF_FS_ABORTED)
2045cb530541STheodore Ts'o 				goto invalidate_dirty_pages;
20464e7ea81dSJan Kara 			/*
2047cb530541STheodore Ts'o 			 * Let the uper layers retry transient errors.
2048cb530541STheodore Ts'o 			 * In the case of ENOSPC, if ext4_count_free_blocks()
2049cb530541STheodore Ts'o 			 * is non-zero, a commit should free up blocks.
20504e7ea81dSJan Kara 			 */
2051cb530541STheodore Ts'o 			if ((err == -ENOMEM) ||
20526603120eSDmitry Monakhov 			    (err == -ENOSPC && ext4_count_free_clusters(sb))) {
20536603120eSDmitry Monakhov 				if (progress)
20546603120eSDmitry Monakhov 					goto update_disksize;
2055cb530541STheodore Ts'o 				return err;
20566603120eSDmitry Monakhov 			}
20574e7ea81dSJan Kara 			ext4_msg(sb, KERN_CRIT,
20584e7ea81dSJan Kara 				 "Delayed block allocation failed for "
20594e7ea81dSJan Kara 				 "inode %lu at logical offset %llu with"
20604e7ea81dSJan Kara 				 " max blocks %u with error %d",
20614e7ea81dSJan Kara 				 inode->i_ino,
20624e7ea81dSJan Kara 				 (unsigned long long)map->m_lblk,
2063cb530541STheodore Ts'o 				 (unsigned)map->m_len, -err);
20644e7ea81dSJan Kara 			ext4_msg(sb, KERN_CRIT,
20654e7ea81dSJan Kara 				 "This should not happen!! Data will "
20664e7ea81dSJan Kara 				 "be lost\n");
20674e7ea81dSJan Kara 			if (err == -ENOSPC)
20684e7ea81dSJan Kara 				ext4_print_free_blocks(inode);
2069cb530541STheodore Ts'o 		invalidate_dirty_pages:
2070cb530541STheodore Ts'o 			*give_up_on_write = true;
20714e7ea81dSJan Kara 			return err;
20724e7ea81dSJan Kara 		}
20736603120eSDmitry Monakhov 		progress = 1;
20744e7ea81dSJan Kara 		/*
20754e7ea81dSJan Kara 		 * Update buffer state, submit mapped pages, and get us new
20764e7ea81dSJan Kara 		 * extent to map
20774e7ea81dSJan Kara 		 */
20784e7ea81dSJan Kara 		err = mpage_map_and_submit_buffers(mpd);
20794e7ea81dSJan Kara 		if (err < 0)
20806603120eSDmitry Monakhov 			goto update_disksize;
208127d7c4edSJan Kara 	} while (map->m_len);
20824e7ea81dSJan Kara 
20836603120eSDmitry Monakhov update_disksize:
2084622cad13STheodore Ts'o 	/*
2085622cad13STheodore Ts'o 	 * Update on-disk size after IO is submitted.  Races with
2086622cad13STheodore Ts'o 	 * truncate are avoided by checking i_size under i_data_sem.
2087622cad13STheodore Ts'o 	 */
20884e7ea81dSJan Kara 	disksize = ((loff_t)mpd->first_page) << PAGE_CACHE_SHIFT;
20894e7ea81dSJan Kara 	if (disksize > EXT4_I(inode)->i_disksize) {
20904e7ea81dSJan Kara 		int err2;
2091622cad13STheodore Ts'o 		loff_t i_size;
20924e7ea81dSJan Kara 
2093622cad13STheodore Ts'o 		down_write(&EXT4_I(inode)->i_data_sem);
2094622cad13STheodore Ts'o 		i_size = i_size_read(inode);
2095622cad13STheodore Ts'o 		if (disksize > i_size)
2096622cad13STheodore Ts'o 			disksize = i_size;
2097622cad13STheodore Ts'o 		if (disksize > EXT4_I(inode)->i_disksize)
2098622cad13STheodore Ts'o 			EXT4_I(inode)->i_disksize = disksize;
20994e7ea81dSJan Kara 		err2 = ext4_mark_inode_dirty(handle, inode);
2100622cad13STheodore Ts'o 		up_write(&EXT4_I(inode)->i_data_sem);
21014e7ea81dSJan Kara 		if (err2)
21024e7ea81dSJan Kara 			ext4_error(inode->i_sb,
21034e7ea81dSJan Kara 				   "Failed to mark inode %lu dirty",
21044e7ea81dSJan Kara 				   inode->i_ino);
21054e7ea81dSJan Kara 		if (!err)
21064e7ea81dSJan Kara 			err = err2;
21074e7ea81dSJan Kara 	}
21084e7ea81dSJan Kara 	return err;
21094e7ea81dSJan Kara }
21104e7ea81dSJan Kara 
21114e7ea81dSJan Kara /*
2112fffb2739SJan Kara  * Calculate the total number of credits to reserve for one writepages
211320970ba6STheodore Ts'o  * iteration. This is called from ext4_writepages(). We map an extent of
2114fffb2739SJan Kara  * up to MAX_WRITEPAGES_EXTENT_LEN blocks and then we go on and finish mapping
2115fffb2739SJan Kara  * the last partial page. So in total we can map MAX_WRITEPAGES_EXTENT_LEN +
2116fffb2739SJan Kara  * bpp - 1 blocks in bpp different extents.
2117525f4ed8SMingming Cao  */
2118fffb2739SJan Kara static int ext4_da_writepages_trans_blocks(struct inode *inode)
2119fffb2739SJan Kara {
2120fffb2739SJan Kara 	int bpp = ext4_journal_blocks_per_page(inode);
2121525f4ed8SMingming Cao 
2122fffb2739SJan Kara 	return ext4_meta_trans_blocks(inode,
2123fffb2739SJan Kara 				MAX_WRITEPAGES_EXTENT_LEN + bpp - 1, bpp);
2124525f4ed8SMingming Cao }
212561628a3fSMingming Cao 
21268e48dcfbSTheodore Ts'o /*
21274e7ea81dSJan Kara  * mpage_prepare_extent_to_map - find & lock contiguous range of dirty pages
21284e7ea81dSJan Kara  * 				 and underlying extent to map
21294e7ea81dSJan Kara  *
21304e7ea81dSJan Kara  * @mpd - where to look for pages
21314e7ea81dSJan Kara  *
21324e7ea81dSJan Kara  * Walk dirty pages in the mapping. If they are fully mapped, submit them for
21334e7ea81dSJan Kara  * IO immediately. When we find a page which isn't mapped we start accumulating
21344e7ea81dSJan Kara  * extent of buffers underlying these pages that needs mapping (formed by
21354e7ea81dSJan Kara  * either delayed or unwritten buffers). We also lock the pages containing
21364e7ea81dSJan Kara  * these buffers. The extent found is returned in @mpd structure (starting at
21374e7ea81dSJan Kara  * mpd->lblk with length mpd->len blocks).
21384e7ea81dSJan Kara  *
21394e7ea81dSJan Kara  * Note that this function can attach bios to one io_end structure which are
21404e7ea81dSJan Kara  * neither logically nor physically contiguous. Although it may seem as an
21414e7ea81dSJan Kara  * unnecessary complication, it is actually inevitable in blocksize < pagesize
21424e7ea81dSJan Kara  * case as we need to track IO to all buffers underlying a page in one io_end.
21438e48dcfbSTheodore Ts'o  */
21444e7ea81dSJan Kara static int mpage_prepare_extent_to_map(struct mpage_da_data *mpd)
21458e48dcfbSTheodore Ts'o {
21464e7ea81dSJan Kara 	struct address_space *mapping = mpd->inode->i_mapping;
21478e48dcfbSTheodore Ts'o 	struct pagevec pvec;
21484f01b02cSTheodore Ts'o 	unsigned int nr_pages;
2149aeac589aSMing Lei 	long left = mpd->wbc->nr_to_write;
21504e7ea81dSJan Kara 	pgoff_t index = mpd->first_page;
21514e7ea81dSJan Kara 	pgoff_t end = mpd->last_page;
21524e7ea81dSJan Kara 	int tag;
21534e7ea81dSJan Kara 	int i, err = 0;
21544e7ea81dSJan Kara 	int blkbits = mpd->inode->i_blkbits;
21554e7ea81dSJan Kara 	ext4_lblk_t lblk;
21564e7ea81dSJan Kara 	struct buffer_head *head;
21578e48dcfbSTheodore Ts'o 
21584e7ea81dSJan Kara 	if (mpd->wbc->sync_mode == WB_SYNC_ALL || mpd->wbc->tagged_writepages)
21595b41d924SEric Sandeen 		tag = PAGECACHE_TAG_TOWRITE;
21605b41d924SEric Sandeen 	else
21615b41d924SEric Sandeen 		tag = PAGECACHE_TAG_DIRTY;
21625b41d924SEric Sandeen 
21634e7ea81dSJan Kara 	pagevec_init(&pvec, 0);
21644e7ea81dSJan Kara 	mpd->map.m_len = 0;
21654e7ea81dSJan Kara 	mpd->next_page = index;
21664f01b02cSTheodore Ts'o 	while (index <= end) {
21675b41d924SEric Sandeen 		nr_pages = pagevec_lookup_tag(&pvec, mapping, &index, tag,
21688e48dcfbSTheodore Ts'o 			      min(end - index, (pgoff_t)PAGEVEC_SIZE-1) + 1);
21698e48dcfbSTheodore Ts'o 		if (nr_pages == 0)
21704e7ea81dSJan Kara 			goto out;
21718e48dcfbSTheodore Ts'o 
21728e48dcfbSTheodore Ts'o 		for (i = 0; i < nr_pages; i++) {
21738e48dcfbSTheodore Ts'o 			struct page *page = pvec.pages[i];
21748e48dcfbSTheodore Ts'o 
21758e48dcfbSTheodore Ts'o 			/*
21768e48dcfbSTheodore Ts'o 			 * At this point, the page may be truncated or
21778e48dcfbSTheodore Ts'o 			 * invalidated (changing page->mapping to NULL), or
21788e48dcfbSTheodore Ts'o 			 * even swizzled back from swapper_space to tmpfs file
21798e48dcfbSTheodore Ts'o 			 * mapping. However, page->index will not change
21808e48dcfbSTheodore Ts'o 			 * because we have a reference on the page.
21818e48dcfbSTheodore Ts'o 			 */
21824f01b02cSTheodore Ts'o 			if (page->index > end)
21834f01b02cSTheodore Ts'o 				goto out;
21848e48dcfbSTheodore Ts'o 
2185aeac589aSMing Lei 			/*
2186aeac589aSMing Lei 			 * Accumulated enough dirty pages? This doesn't apply
2187aeac589aSMing Lei 			 * to WB_SYNC_ALL mode. For integrity sync we have to
2188aeac589aSMing Lei 			 * keep going because someone may be concurrently
2189aeac589aSMing Lei 			 * dirtying pages, and we might have synced a lot of
2190aeac589aSMing Lei 			 * newly appeared dirty pages, but have not synced all
2191aeac589aSMing Lei 			 * of the old dirty pages.
2192aeac589aSMing Lei 			 */
2193aeac589aSMing Lei 			if (mpd->wbc->sync_mode == WB_SYNC_NONE && left <= 0)
2194aeac589aSMing Lei 				goto out;
2195aeac589aSMing Lei 
21964e7ea81dSJan Kara 			/* If we can't merge this page, we are done. */
21974e7ea81dSJan Kara 			if (mpd->map.m_len > 0 && mpd->next_page != page->index)
21984e7ea81dSJan Kara 				goto out;
219978aaced3STheodore Ts'o 
22008e48dcfbSTheodore Ts'o 			lock_page(page);
22018e48dcfbSTheodore Ts'o 			/*
22024e7ea81dSJan Kara 			 * If the page is no longer dirty, or its mapping no
22034e7ea81dSJan Kara 			 * longer corresponds to inode we are writing (which
22044e7ea81dSJan Kara 			 * means it has been truncated or invalidated), or the
22054e7ea81dSJan Kara 			 * page is already under writeback and we are not doing
22064e7ea81dSJan Kara 			 * a data integrity writeback, skip the page
22078e48dcfbSTheodore Ts'o 			 */
22084f01b02cSTheodore Ts'o 			if (!PageDirty(page) ||
22094f01b02cSTheodore Ts'o 			    (PageWriteback(page) &&
22104e7ea81dSJan Kara 			     (mpd->wbc->sync_mode == WB_SYNC_NONE)) ||
22114f01b02cSTheodore Ts'o 			    unlikely(page->mapping != mapping)) {
22128e48dcfbSTheodore Ts'o 				unlock_page(page);
22138e48dcfbSTheodore Ts'o 				continue;
22148e48dcfbSTheodore Ts'o 			}
22158e48dcfbSTheodore Ts'o 
22168e48dcfbSTheodore Ts'o 			wait_on_page_writeback(page);
22178e48dcfbSTheodore Ts'o 			BUG_ON(PageWriteback(page));
22188e48dcfbSTheodore Ts'o 
22194e7ea81dSJan Kara 			if (mpd->map.m_len == 0)
22208eb9e5ceSTheodore Ts'o 				mpd->first_page = page->index;
22218eb9e5ceSTheodore Ts'o 			mpd->next_page = page->index + 1;
2222f8bec370SJan Kara 			/* Add all dirty buffers to mpd */
22234e7ea81dSJan Kara 			lblk = ((ext4_lblk_t)page->index) <<
22244e7ea81dSJan Kara 				(PAGE_CACHE_SHIFT - blkbits);
22258eb9e5ceSTheodore Ts'o 			head = page_buffers(page);
22265f1132b2SJan Kara 			err = mpage_process_page_bufs(mpd, head, head, lblk);
22275f1132b2SJan Kara 			if (err <= 0)
22284e7ea81dSJan Kara 				goto out;
22295f1132b2SJan Kara 			err = 0;
2230aeac589aSMing Lei 			left--;
22318e48dcfbSTheodore Ts'o 		}
22328e48dcfbSTheodore Ts'o 		pagevec_release(&pvec);
22338e48dcfbSTheodore Ts'o 		cond_resched();
22348e48dcfbSTheodore Ts'o 	}
22354f01b02cSTheodore Ts'o 	return 0;
22368eb9e5ceSTheodore Ts'o out:
22378eb9e5ceSTheodore Ts'o 	pagevec_release(&pvec);
22384e7ea81dSJan Kara 	return err;
22398e48dcfbSTheodore Ts'o }
22408e48dcfbSTheodore Ts'o 
224120970ba6STheodore Ts'o static int __writepage(struct page *page, struct writeback_control *wbc,
224220970ba6STheodore Ts'o 		       void *data)
224320970ba6STheodore Ts'o {
224420970ba6STheodore Ts'o 	struct address_space *mapping = data;
224520970ba6STheodore Ts'o 	int ret = ext4_writepage(page, wbc);
224620970ba6STheodore Ts'o 	mapping_set_error(mapping, ret);
224720970ba6STheodore Ts'o 	return ret;
224820970ba6STheodore Ts'o }
224920970ba6STheodore Ts'o 
225020970ba6STheodore Ts'o static int ext4_writepages(struct address_space *mapping,
225164769240SAlex Tomas 			   struct writeback_control *wbc)
225264769240SAlex Tomas {
22534e7ea81dSJan Kara 	pgoff_t	writeback_index = 0;
22544e7ea81dSJan Kara 	long nr_to_write = wbc->nr_to_write;
225522208dedSAneesh Kumar K.V 	int range_whole = 0;
22564e7ea81dSJan Kara 	int cycled = 1;
225761628a3fSMingming Cao 	handle_t *handle = NULL;
2258df22291fSAneesh Kumar K.V 	struct mpage_da_data mpd;
22595e745b04SAneesh Kumar K.V 	struct inode *inode = mapping->host;
22606b523df4SJan Kara 	int needed_blocks, rsv_blocks = 0, ret = 0;
22615e745b04SAneesh Kumar K.V 	struct ext4_sb_info *sbi = EXT4_SB(mapping->host->i_sb);
22624e7ea81dSJan Kara 	bool done;
22631bce63d1SShaohua Li 	struct blk_plug plug;
2264cb530541STheodore Ts'o 	bool give_up_on_write = false;
226561628a3fSMingming Cao 
226620970ba6STheodore Ts'o 	trace_ext4_writepages(inode, wbc);
2267ba80b101STheodore Ts'o 
226861628a3fSMingming Cao 	/*
226961628a3fSMingming Cao 	 * No pages to write? This is mainly a kludge to avoid starting
227061628a3fSMingming Cao 	 * a transaction for special inodes like journal inode on last iput()
227161628a3fSMingming Cao 	 * because that could violate lock ordering on umount
227261628a3fSMingming Cao 	 */
2273a1d6cc56SAneesh Kumar K.V 	if (!mapping->nrpages || !mapping_tagged(mapping, PAGECACHE_TAG_DIRTY))
2274bbf023c7SMing Lei 		goto out_writepages;
22752a21e37eSTheodore Ts'o 
227620970ba6STheodore Ts'o 	if (ext4_should_journal_data(inode)) {
227720970ba6STheodore Ts'o 		struct blk_plug plug;
227820970ba6STheodore Ts'o 
227920970ba6STheodore Ts'o 		blk_start_plug(&plug);
228020970ba6STheodore Ts'o 		ret = write_cache_pages(mapping, wbc, __writepage, mapping);
228120970ba6STheodore Ts'o 		blk_finish_plug(&plug);
2282bbf023c7SMing Lei 		goto out_writepages;
228320970ba6STheodore Ts'o 	}
228420970ba6STheodore Ts'o 
22852a21e37eSTheodore Ts'o 	/*
22862a21e37eSTheodore Ts'o 	 * If the filesystem has aborted, it is read-only, so return
22872a21e37eSTheodore Ts'o 	 * right away instead of dumping stack traces later on that
22882a21e37eSTheodore Ts'o 	 * will obscure the real source of the problem.  We test
22894ab2f15bSTheodore Ts'o 	 * EXT4_MF_FS_ABORTED instead of sb->s_flag's MS_RDONLY because
22902a21e37eSTheodore Ts'o 	 * the latter could be true if the filesystem is mounted
229120970ba6STheodore Ts'o 	 * read-only, and in that case, ext4_writepages should
22922a21e37eSTheodore Ts'o 	 * *never* be called, so if that ever happens, we would want
22932a21e37eSTheodore Ts'o 	 * the stack trace.
22942a21e37eSTheodore Ts'o 	 */
2295bbf023c7SMing Lei 	if (unlikely(sbi->s_mount_flags & EXT4_MF_FS_ABORTED)) {
2296bbf023c7SMing Lei 		ret = -EROFS;
2297bbf023c7SMing Lei 		goto out_writepages;
2298bbf023c7SMing Lei 	}
22992a21e37eSTheodore Ts'o 
23006b523df4SJan Kara 	if (ext4_should_dioread_nolock(inode)) {
23016b523df4SJan Kara 		/*
23026b523df4SJan Kara 		 * We may need to convert up to one extent per block in
23036b523df4SJan Kara 		 * the page and we may dirty the inode.
23046b523df4SJan Kara 		 */
23056b523df4SJan Kara 		rsv_blocks = 1 + (PAGE_CACHE_SIZE >> inode->i_blkbits);
23066b523df4SJan Kara 	}
23076b523df4SJan Kara 
23084e7ea81dSJan Kara 	/*
23094e7ea81dSJan Kara 	 * If we have inline data and arrive here, it means that
23104e7ea81dSJan Kara 	 * we will soon create the block for the 1st page, so
23114e7ea81dSJan Kara 	 * we'd better clear the inline data here.
23124e7ea81dSJan Kara 	 */
23134e7ea81dSJan Kara 	if (ext4_has_inline_data(inode)) {
23144e7ea81dSJan Kara 		/* Just inode will be modified... */
23154e7ea81dSJan Kara 		handle = ext4_journal_start(inode, EXT4_HT_INODE, 1);
23164e7ea81dSJan Kara 		if (IS_ERR(handle)) {
23174e7ea81dSJan Kara 			ret = PTR_ERR(handle);
23184e7ea81dSJan Kara 			goto out_writepages;
23194e7ea81dSJan Kara 		}
23204e7ea81dSJan Kara 		BUG_ON(ext4_test_inode_state(inode,
23214e7ea81dSJan Kara 				EXT4_STATE_MAY_INLINE_DATA));
23224e7ea81dSJan Kara 		ext4_destroy_inline_data(handle, inode);
23234e7ea81dSJan Kara 		ext4_journal_stop(handle);
23244e7ea81dSJan Kara 	}
23254e7ea81dSJan Kara 
232622208dedSAneesh Kumar K.V 	if (wbc->range_start == 0 && wbc->range_end == LLONG_MAX)
232722208dedSAneesh Kumar K.V 		range_whole = 1;
232861628a3fSMingming Cao 
23292acf2c26SAneesh Kumar K.V 	if (wbc->range_cyclic) {
23304e7ea81dSJan Kara 		writeback_index = mapping->writeback_index;
23314e7ea81dSJan Kara 		if (writeback_index)
23322acf2c26SAneesh Kumar K.V 			cycled = 0;
23334e7ea81dSJan Kara 		mpd.first_page = writeback_index;
23344e7ea81dSJan Kara 		mpd.last_page = -1;
23355b41d924SEric Sandeen 	} else {
23364e7ea81dSJan Kara 		mpd.first_page = wbc->range_start >> PAGE_CACHE_SHIFT;
23374e7ea81dSJan Kara 		mpd.last_page = wbc->range_end >> PAGE_CACHE_SHIFT;
23385b41d924SEric Sandeen 	}
2339a1d6cc56SAneesh Kumar K.V 
23404e7ea81dSJan Kara 	mpd.inode = inode;
23414e7ea81dSJan Kara 	mpd.wbc = wbc;
23424e7ea81dSJan Kara 	ext4_io_submit_init(&mpd.io_submit, wbc);
23432acf2c26SAneesh Kumar K.V retry:
23446e6938b6SWu Fengguang 	if (wbc->sync_mode == WB_SYNC_ALL || wbc->tagged_writepages)
23454e7ea81dSJan Kara 		tag_pages_for_writeback(mapping, mpd.first_page, mpd.last_page);
23464e7ea81dSJan Kara 	done = false;
23471bce63d1SShaohua Li 	blk_start_plug(&plug);
23484e7ea81dSJan Kara 	while (!done && mpd.first_page <= mpd.last_page) {
23494e7ea81dSJan Kara 		/* For each extent of pages we use new io_end */
23504e7ea81dSJan Kara 		mpd.io_submit.io_end = ext4_init_io_end(inode, GFP_KERNEL);
23514e7ea81dSJan Kara 		if (!mpd.io_submit.io_end) {
23524e7ea81dSJan Kara 			ret = -ENOMEM;
23534e7ea81dSJan Kara 			break;
23544e7ea81dSJan Kara 		}
2355a1d6cc56SAneesh Kumar K.V 
2356a1d6cc56SAneesh Kumar K.V 		/*
23574e7ea81dSJan Kara 		 * We have two constraints: We find one extent to map and we
23584e7ea81dSJan Kara 		 * must always write out whole page (makes a difference when
23594e7ea81dSJan Kara 		 * blocksize < pagesize) so that we don't block on IO when we
23604e7ea81dSJan Kara 		 * try to write out the rest of the page. Journalled mode is
23614e7ea81dSJan Kara 		 * not supported by delalloc.
2362a1d6cc56SAneesh Kumar K.V 		 */
2363a1d6cc56SAneesh Kumar K.V 		BUG_ON(ext4_should_journal_data(inode));
2364525f4ed8SMingming Cao 		needed_blocks = ext4_da_writepages_trans_blocks(inode);
2365a1d6cc56SAneesh Kumar K.V 
236661628a3fSMingming Cao 		/* start a new transaction */
23676b523df4SJan Kara 		handle = ext4_journal_start_with_reserve(inode,
23686b523df4SJan Kara 				EXT4_HT_WRITE_PAGE, needed_blocks, rsv_blocks);
236961628a3fSMingming Cao 		if (IS_ERR(handle)) {
237061628a3fSMingming Cao 			ret = PTR_ERR(handle);
23711693918eSTheodore Ts'o 			ext4_msg(inode->i_sb, KERN_CRIT, "%s: jbd2_start: "
2372fbe845ddSCurt Wohlgemuth 			       "%ld pages, ino %lu; err %d", __func__,
2373a1d6cc56SAneesh Kumar K.V 				wbc->nr_to_write, inode->i_ino, ret);
23744e7ea81dSJan Kara 			/* Release allocated io_end */
23754e7ea81dSJan Kara 			ext4_put_io_end(mpd.io_submit.io_end);
23764e7ea81dSJan Kara 			break;
237761628a3fSMingming Cao 		}
2378f63e6005STheodore Ts'o 
23794e7ea81dSJan Kara 		trace_ext4_da_write_pages(inode, mpd.first_page, mpd.wbc);
23804e7ea81dSJan Kara 		ret = mpage_prepare_extent_to_map(&mpd);
23814e7ea81dSJan Kara 		if (!ret) {
23824e7ea81dSJan Kara 			if (mpd.map.m_len)
2383cb530541STheodore Ts'o 				ret = mpage_map_and_submit_extent(handle, &mpd,
2384cb530541STheodore Ts'o 					&give_up_on_write);
23854e7ea81dSJan Kara 			else {
2386f63e6005STheodore Ts'o 				/*
23874e7ea81dSJan Kara 				 * We scanned the whole range (or exhausted
23884e7ea81dSJan Kara 				 * nr_to_write), submitted what was mapped and
23894e7ea81dSJan Kara 				 * didn't find anything needing mapping. We are
23904e7ea81dSJan Kara 				 * done.
2391f63e6005STheodore Ts'o 				 */
23924e7ea81dSJan Kara 				done = true;
2393f63e6005STheodore Ts'o 			}
23944e7ea81dSJan Kara 		}
239561628a3fSMingming Cao 		ext4_journal_stop(handle);
23964e7ea81dSJan Kara 		/* Submit prepared bio */
23974e7ea81dSJan Kara 		ext4_io_submit(&mpd.io_submit);
23984e7ea81dSJan Kara 		/* Unlock pages we didn't use */
2399cb530541STheodore Ts'o 		mpage_release_unused_pages(&mpd, give_up_on_write);
24004e7ea81dSJan Kara 		/* Drop our io_end reference we got from init */
24014e7ea81dSJan Kara 		ext4_put_io_end(mpd.io_submit.io_end);
2402df22291fSAneesh Kumar K.V 
24034e7ea81dSJan Kara 		if (ret == -ENOSPC && sbi->s_journal) {
24044e7ea81dSJan Kara 			/*
24054e7ea81dSJan Kara 			 * Commit the transaction which would
240622208dedSAneesh Kumar K.V 			 * free blocks released in the transaction
240722208dedSAneesh Kumar K.V 			 * and try again
240822208dedSAneesh Kumar K.V 			 */
2409df22291fSAneesh Kumar K.V 			jbd2_journal_force_commit_nested(sbi->s_journal);
241022208dedSAneesh Kumar K.V 			ret = 0;
24114e7ea81dSJan Kara 			continue;
24124e7ea81dSJan Kara 		}
24134e7ea81dSJan Kara 		/* Fatal error - ENOMEM, EIO... */
24144e7ea81dSJan Kara 		if (ret)
241561628a3fSMingming Cao 			break;
241661628a3fSMingming Cao 	}
24171bce63d1SShaohua Li 	blk_finish_plug(&plug);
24189c12a831SJan Kara 	if (!ret && !cycled && wbc->nr_to_write > 0) {
24192acf2c26SAneesh Kumar K.V 		cycled = 1;
24204e7ea81dSJan Kara 		mpd.last_page = writeback_index - 1;
24214e7ea81dSJan Kara 		mpd.first_page = 0;
24222acf2c26SAneesh Kumar K.V 		goto retry;
24232acf2c26SAneesh Kumar K.V 	}
242461628a3fSMingming Cao 
242522208dedSAneesh Kumar K.V 	/* Update index */
242622208dedSAneesh Kumar K.V 	if (wbc->range_cyclic || (range_whole && wbc->nr_to_write > 0))
242722208dedSAneesh Kumar K.V 		/*
24284e7ea81dSJan Kara 		 * Set the writeback_index so that range_cyclic
242922208dedSAneesh Kumar K.V 		 * mode will write it back later
243022208dedSAneesh Kumar K.V 		 */
24314e7ea81dSJan Kara 		mapping->writeback_index = mpd.first_page;
2432a1d6cc56SAneesh Kumar K.V 
243361628a3fSMingming Cao out_writepages:
243420970ba6STheodore Ts'o 	trace_ext4_writepages_result(inode, wbc, ret,
24354e7ea81dSJan Kara 				     nr_to_write - wbc->nr_to_write);
243661628a3fSMingming Cao 	return ret;
243764769240SAlex Tomas }
243864769240SAlex Tomas 
243979f0be8dSAneesh Kumar K.V static int ext4_nonda_switch(struct super_block *sb)
244079f0be8dSAneesh Kumar K.V {
24415c1ff336SEric Whitney 	s64 free_clusters, dirty_clusters;
244279f0be8dSAneesh Kumar K.V 	struct ext4_sb_info *sbi = EXT4_SB(sb);
244379f0be8dSAneesh Kumar K.V 
244479f0be8dSAneesh Kumar K.V 	/*
244579f0be8dSAneesh Kumar K.V 	 * switch to non delalloc mode if we are running low
244679f0be8dSAneesh Kumar K.V 	 * on free block. The free block accounting via percpu
2447179f7ebfSEric Dumazet 	 * counters can get slightly wrong with percpu_counter_batch getting
244879f0be8dSAneesh Kumar K.V 	 * accumulated on each CPU without updating global counters
244979f0be8dSAneesh Kumar K.V 	 * Delalloc need an accurate free block accounting. So switch
245079f0be8dSAneesh Kumar K.V 	 * to non delalloc when we are near to error range.
245179f0be8dSAneesh Kumar K.V 	 */
24525c1ff336SEric Whitney 	free_clusters =
24535c1ff336SEric Whitney 		percpu_counter_read_positive(&sbi->s_freeclusters_counter);
24545c1ff336SEric Whitney 	dirty_clusters =
24555c1ff336SEric Whitney 		percpu_counter_read_positive(&sbi->s_dirtyclusters_counter);
245600d4e736STheodore Ts'o 	/*
245700d4e736STheodore Ts'o 	 * Start pushing delalloc when 1/2 of free blocks are dirty.
245800d4e736STheodore Ts'o 	 */
24595c1ff336SEric Whitney 	if (dirty_clusters && (free_clusters < 2 * dirty_clusters))
246010ee27a0SMiao Xie 		try_to_writeback_inodes_sb(sb, WB_REASON_FS_FREE_SPACE);
246100d4e736STheodore Ts'o 
24625c1ff336SEric Whitney 	if (2 * free_clusters < 3 * dirty_clusters ||
24635c1ff336SEric Whitney 	    free_clusters < (dirty_clusters + EXT4_FREECLUSTERS_WATERMARK)) {
246479f0be8dSAneesh Kumar K.V 		/*
2465c8afb446SEric Sandeen 		 * free block count is less than 150% of dirty blocks
2466c8afb446SEric Sandeen 		 * or free blocks is less than watermark
246779f0be8dSAneesh Kumar K.V 		 */
246879f0be8dSAneesh Kumar K.V 		return 1;
246979f0be8dSAneesh Kumar K.V 	}
247079f0be8dSAneesh Kumar K.V 	return 0;
247179f0be8dSAneesh Kumar K.V }
247279f0be8dSAneesh Kumar K.V 
24730ff8947fSEric Sandeen /* We always reserve for an inode update; the superblock could be there too */
24740ff8947fSEric Sandeen static int ext4_da_write_credits(struct inode *inode, loff_t pos, unsigned len)
24750ff8947fSEric Sandeen {
24760ff8947fSEric Sandeen 	if (likely(EXT4_HAS_RO_COMPAT_FEATURE(inode->i_sb,
24770ff8947fSEric Sandeen 				EXT4_FEATURE_RO_COMPAT_LARGE_FILE)))
24780ff8947fSEric Sandeen 		return 1;
24790ff8947fSEric Sandeen 
24800ff8947fSEric Sandeen 	if (pos + len <= 0x7fffffffULL)
24810ff8947fSEric Sandeen 		return 1;
24820ff8947fSEric Sandeen 
24830ff8947fSEric Sandeen 	/* We might need to update the superblock to set LARGE_FILE */
24840ff8947fSEric Sandeen 	return 2;
24850ff8947fSEric Sandeen }
24860ff8947fSEric Sandeen 
248764769240SAlex Tomas static int ext4_da_write_begin(struct file *file, struct address_space *mapping,
248864769240SAlex Tomas 			       loff_t pos, unsigned len, unsigned flags,
248964769240SAlex Tomas 			       struct page **pagep, void **fsdata)
249064769240SAlex Tomas {
249172b8ab9dSEric Sandeen 	int ret, retries = 0;
249264769240SAlex Tomas 	struct page *page;
249364769240SAlex Tomas 	pgoff_t index;
249464769240SAlex Tomas 	struct inode *inode = mapping->host;
249564769240SAlex Tomas 	handle_t *handle;
249664769240SAlex Tomas 
249764769240SAlex Tomas 	index = pos >> PAGE_CACHE_SHIFT;
249879f0be8dSAneesh Kumar K.V 
249979f0be8dSAneesh Kumar K.V 	if (ext4_nonda_switch(inode->i_sb)) {
250079f0be8dSAneesh Kumar K.V 		*fsdata = (void *)FALL_BACK_TO_NONDELALLOC;
250179f0be8dSAneesh Kumar K.V 		return ext4_write_begin(file, mapping, pos,
250279f0be8dSAneesh Kumar K.V 					len, flags, pagep, fsdata);
250379f0be8dSAneesh Kumar K.V 	}
250479f0be8dSAneesh Kumar K.V 	*fsdata = (void *)0;
25059bffad1eSTheodore Ts'o 	trace_ext4_da_write_begin(inode, pos, len, flags);
25069c3569b5STao Ma 
25079c3569b5STao Ma 	if (ext4_test_inode_state(inode, EXT4_STATE_MAY_INLINE_DATA)) {
25089c3569b5STao Ma 		ret = ext4_da_write_inline_data_begin(mapping, inode,
25099c3569b5STao Ma 						      pos, len, flags,
25109c3569b5STao Ma 						      pagep, fsdata);
25119c3569b5STao Ma 		if (ret < 0)
251247564bfbSTheodore Ts'o 			return ret;
251347564bfbSTheodore Ts'o 		if (ret == 1)
251447564bfbSTheodore Ts'o 			return 0;
25159c3569b5STao Ma 	}
25169c3569b5STao Ma 
251747564bfbSTheodore Ts'o 	/*
251847564bfbSTheodore Ts'o 	 * grab_cache_page_write_begin() can take a long time if the
251947564bfbSTheodore Ts'o 	 * system is thrashing due to memory pressure, or if the page
252047564bfbSTheodore Ts'o 	 * is being written back.  So grab it first before we start
252147564bfbSTheodore Ts'o 	 * the transaction handle.  This also allows us to allocate
252247564bfbSTheodore Ts'o 	 * the page (if needed) without using GFP_NOFS.
252347564bfbSTheodore Ts'o 	 */
252447564bfbSTheodore Ts'o retry_grab:
252547564bfbSTheodore Ts'o 	page = grab_cache_page_write_begin(mapping, index, flags);
252647564bfbSTheodore Ts'o 	if (!page)
252747564bfbSTheodore Ts'o 		return -ENOMEM;
252847564bfbSTheodore Ts'o 	unlock_page(page);
252947564bfbSTheodore Ts'o 
253064769240SAlex Tomas 	/*
253164769240SAlex Tomas 	 * With delayed allocation, we don't log the i_disksize update
253264769240SAlex Tomas 	 * if there is delayed block allocation. But we still need
253364769240SAlex Tomas 	 * to journalling the i_disksize update if writes to the end
253464769240SAlex Tomas 	 * of file which has an already mapped buffer.
253564769240SAlex Tomas 	 */
253647564bfbSTheodore Ts'o retry_journal:
25370ff8947fSEric Sandeen 	handle = ext4_journal_start(inode, EXT4_HT_WRITE_PAGE,
25380ff8947fSEric Sandeen 				ext4_da_write_credits(inode, pos, len));
253964769240SAlex Tomas 	if (IS_ERR(handle)) {
254047564bfbSTheodore Ts'o 		page_cache_release(page);
254147564bfbSTheodore Ts'o 		return PTR_ERR(handle);
254264769240SAlex Tomas 	}
254364769240SAlex Tomas 
254447564bfbSTheodore Ts'o 	lock_page(page);
254547564bfbSTheodore Ts'o 	if (page->mapping != mapping) {
254647564bfbSTheodore Ts'o 		/* The page got truncated from under us */
254747564bfbSTheodore Ts'o 		unlock_page(page);
254847564bfbSTheodore Ts'o 		page_cache_release(page);
2549d5a0d4f7SEric Sandeen 		ext4_journal_stop(handle);
255047564bfbSTheodore Ts'o 		goto retry_grab;
2551d5a0d4f7SEric Sandeen 	}
255247564bfbSTheodore Ts'o 	/* In case writeback began while the page was unlocked */
25537afe5aa5SDmitry Monakhov 	wait_for_stable_page(page);
255464769240SAlex Tomas 
25556e1db88dSChristoph Hellwig 	ret = __block_write_begin(page, pos, len, ext4_da_get_block_prep);
255664769240SAlex Tomas 	if (ret < 0) {
255764769240SAlex Tomas 		unlock_page(page);
255864769240SAlex Tomas 		ext4_journal_stop(handle);
2559ae4d5372SAneesh Kumar K.V 		/*
2560ae4d5372SAneesh Kumar K.V 		 * block_write_begin may have instantiated a few blocks
2561ae4d5372SAneesh Kumar K.V 		 * outside i_size.  Trim these off again. Don't need
2562ae4d5372SAneesh Kumar K.V 		 * i_size_read because we hold i_mutex.
2563ae4d5372SAneesh Kumar K.V 		 */
2564ae4d5372SAneesh Kumar K.V 		if (pos + len > inode->i_size)
2565b9a4207dSJan Kara 			ext4_truncate_failed_write(inode);
256647564bfbSTheodore Ts'o 
256747564bfbSTheodore Ts'o 		if (ret == -ENOSPC &&
256847564bfbSTheodore Ts'o 		    ext4_should_retry_alloc(inode->i_sb, &retries))
256947564bfbSTheodore Ts'o 			goto retry_journal;
257047564bfbSTheodore Ts'o 
257147564bfbSTheodore Ts'o 		page_cache_release(page);
257247564bfbSTheodore Ts'o 		return ret;
257364769240SAlex Tomas 	}
257464769240SAlex Tomas 
257547564bfbSTheodore Ts'o 	*pagep = page;
257664769240SAlex Tomas 	return ret;
257764769240SAlex Tomas }
257864769240SAlex Tomas 
2579632eaeabSMingming Cao /*
2580632eaeabSMingming Cao  * Check if we should update i_disksize
2581632eaeabSMingming Cao  * when write to the end of file but not require block allocation
2582632eaeabSMingming Cao  */
2583632eaeabSMingming Cao static int ext4_da_should_update_i_disksize(struct page *page,
2584632eaeabSMingming Cao 					    unsigned long offset)
2585632eaeabSMingming Cao {
2586632eaeabSMingming Cao 	struct buffer_head *bh;
2587632eaeabSMingming Cao 	struct inode *inode = page->mapping->host;
2588632eaeabSMingming Cao 	unsigned int idx;
2589632eaeabSMingming Cao 	int i;
2590632eaeabSMingming Cao 
2591632eaeabSMingming Cao 	bh = page_buffers(page);
2592632eaeabSMingming Cao 	idx = offset >> inode->i_blkbits;
2593632eaeabSMingming Cao 
2594632eaeabSMingming Cao 	for (i = 0; i < idx; i++)
2595632eaeabSMingming Cao 		bh = bh->b_this_page;
2596632eaeabSMingming Cao 
259729fa89d0SAneesh Kumar K.V 	if (!buffer_mapped(bh) || (buffer_delay(bh)) || buffer_unwritten(bh))
2598632eaeabSMingming Cao 		return 0;
2599632eaeabSMingming Cao 	return 1;
2600632eaeabSMingming Cao }
2601632eaeabSMingming Cao 
260264769240SAlex Tomas static int ext4_da_write_end(struct file *file,
260364769240SAlex Tomas 			     struct address_space *mapping,
260464769240SAlex Tomas 			     loff_t pos, unsigned len, unsigned copied,
260564769240SAlex Tomas 			     struct page *page, void *fsdata)
260664769240SAlex Tomas {
260764769240SAlex Tomas 	struct inode *inode = mapping->host;
260864769240SAlex Tomas 	int ret = 0, ret2;
260964769240SAlex Tomas 	handle_t *handle = ext4_journal_current_handle();
261064769240SAlex Tomas 	loff_t new_i_size;
2611632eaeabSMingming Cao 	unsigned long start, end;
261279f0be8dSAneesh Kumar K.V 	int write_mode = (int)(unsigned long)fsdata;
261379f0be8dSAneesh Kumar K.V 
261474d553aaSTheodore Ts'o 	if (write_mode == FALL_BACK_TO_NONDELALLOC)
261574d553aaSTheodore Ts'o 		return ext4_write_end(file, mapping, pos,
261679f0be8dSAneesh Kumar K.V 				      len, copied, page, fsdata);
2617632eaeabSMingming Cao 
26189bffad1eSTheodore Ts'o 	trace_ext4_da_write_end(inode, pos, len, copied);
2619632eaeabSMingming Cao 	start = pos & (PAGE_CACHE_SIZE - 1);
2620632eaeabSMingming Cao 	end = start + copied - 1;
262164769240SAlex Tomas 
262264769240SAlex Tomas 	/*
262364769240SAlex Tomas 	 * generic_write_end() will run mark_inode_dirty() if i_size
262464769240SAlex Tomas 	 * changes.  So let's piggyback the i_disksize mark_inode_dirty
262564769240SAlex Tomas 	 * into that.
262664769240SAlex Tomas 	 */
262764769240SAlex Tomas 	new_i_size = pos + copied;
2628ea51d132SAndrea Arcangeli 	if (copied && new_i_size > EXT4_I(inode)->i_disksize) {
26299c3569b5STao Ma 		if (ext4_has_inline_data(inode) ||
26309c3569b5STao Ma 		    ext4_da_should_update_i_disksize(page, end)) {
2631ee124d27SDmitry Monakhov 			ext4_update_i_disksize(inode, new_i_size);
2632cf17fea6SAneesh Kumar K.V 			/* We need to mark inode dirty even if
2633cf17fea6SAneesh Kumar K.V 			 * new_i_size is less that inode->i_size
2634cf17fea6SAneesh Kumar K.V 			 * bu greater than i_disksize.(hint delalloc)
2635cf17fea6SAneesh Kumar K.V 			 */
2636cf17fea6SAneesh Kumar K.V 			ext4_mark_inode_dirty(handle, inode);
2637632eaeabSMingming Cao 		}
2638632eaeabSMingming Cao 	}
26399c3569b5STao Ma 
26409c3569b5STao Ma 	if (write_mode != CONVERT_INLINE_DATA &&
26419c3569b5STao Ma 	    ext4_test_inode_state(inode, EXT4_STATE_MAY_INLINE_DATA) &&
26429c3569b5STao Ma 	    ext4_has_inline_data(inode))
26439c3569b5STao Ma 		ret2 = ext4_da_write_inline_data_end(inode, pos, len, copied,
26449c3569b5STao Ma 						     page);
26459c3569b5STao Ma 	else
264664769240SAlex Tomas 		ret2 = generic_write_end(file, mapping, pos, len, copied,
264764769240SAlex Tomas 							page, fsdata);
26489c3569b5STao Ma 
264964769240SAlex Tomas 	copied = ret2;
265064769240SAlex Tomas 	if (ret2 < 0)
265164769240SAlex Tomas 		ret = ret2;
265264769240SAlex Tomas 	ret2 = ext4_journal_stop(handle);
265364769240SAlex Tomas 	if (!ret)
265464769240SAlex Tomas 		ret = ret2;
265564769240SAlex Tomas 
265664769240SAlex Tomas 	return ret ? ret : copied;
265764769240SAlex Tomas }
265864769240SAlex Tomas 
2659d47992f8SLukas Czerner static void ext4_da_invalidatepage(struct page *page, unsigned int offset,
2660d47992f8SLukas Czerner 				   unsigned int length)
266164769240SAlex Tomas {
266264769240SAlex Tomas 	/*
266364769240SAlex Tomas 	 * Drop reserved blocks
266464769240SAlex Tomas 	 */
266564769240SAlex Tomas 	BUG_ON(!PageLocked(page));
266664769240SAlex Tomas 	if (!page_has_buffers(page))
266764769240SAlex Tomas 		goto out;
266864769240SAlex Tomas 
2669ca99fdd2SLukas Czerner 	ext4_da_page_release_reservation(page, offset, length);
267064769240SAlex Tomas 
267164769240SAlex Tomas out:
2672d47992f8SLukas Czerner 	ext4_invalidatepage(page, offset, length);
267364769240SAlex Tomas 
267464769240SAlex Tomas 	return;
267564769240SAlex Tomas }
267664769240SAlex Tomas 
2677ccd2506bSTheodore Ts'o /*
2678ccd2506bSTheodore Ts'o  * Force all delayed allocation blocks to be allocated for a given inode.
2679ccd2506bSTheodore Ts'o  */
2680ccd2506bSTheodore Ts'o int ext4_alloc_da_blocks(struct inode *inode)
2681ccd2506bSTheodore Ts'o {
2682fb40ba0dSTheodore Ts'o 	trace_ext4_alloc_da_blocks(inode);
2683fb40ba0dSTheodore Ts'o 
268471d4f7d0STheodore Ts'o 	if (!EXT4_I(inode)->i_reserved_data_blocks)
2685ccd2506bSTheodore Ts'o 		return 0;
2686ccd2506bSTheodore Ts'o 
2687ccd2506bSTheodore Ts'o 	/*
2688ccd2506bSTheodore Ts'o 	 * We do something simple for now.  The filemap_flush() will
2689ccd2506bSTheodore Ts'o 	 * also start triggering a write of the data blocks, which is
2690ccd2506bSTheodore Ts'o 	 * not strictly speaking necessary (and for users of
2691ccd2506bSTheodore Ts'o 	 * laptop_mode, not even desirable).  However, to do otherwise
2692ccd2506bSTheodore Ts'o 	 * would require replicating code paths in:
2693ccd2506bSTheodore Ts'o 	 *
269420970ba6STheodore Ts'o 	 * ext4_writepages() ->
2695ccd2506bSTheodore Ts'o 	 *    write_cache_pages() ---> (via passed in callback function)
2696ccd2506bSTheodore Ts'o 	 *        __mpage_da_writepage() -->
2697ccd2506bSTheodore Ts'o 	 *           mpage_add_bh_to_extent()
2698ccd2506bSTheodore Ts'o 	 *           mpage_da_map_blocks()
2699ccd2506bSTheodore Ts'o 	 *
2700ccd2506bSTheodore Ts'o 	 * The problem is that write_cache_pages(), located in
2701ccd2506bSTheodore Ts'o 	 * mm/page-writeback.c, marks pages clean in preparation for
2702ccd2506bSTheodore Ts'o 	 * doing I/O, which is not desirable if we're not planning on
2703ccd2506bSTheodore Ts'o 	 * doing I/O at all.
2704ccd2506bSTheodore Ts'o 	 *
2705ccd2506bSTheodore Ts'o 	 * We could call write_cache_pages(), and then redirty all of
2706380cf090SWu Fengguang 	 * the pages by calling redirty_page_for_writepage() but that
2707ccd2506bSTheodore Ts'o 	 * would be ugly in the extreme.  So instead we would need to
2708ccd2506bSTheodore Ts'o 	 * replicate parts of the code in the above functions,
270925985edcSLucas De Marchi 	 * simplifying them because we wouldn't actually intend to
2710ccd2506bSTheodore Ts'o 	 * write out the pages, but rather only collect contiguous
2711ccd2506bSTheodore Ts'o 	 * logical block extents, call the multi-block allocator, and
2712ccd2506bSTheodore Ts'o 	 * then update the buffer heads with the block allocations.
2713ccd2506bSTheodore Ts'o 	 *
2714ccd2506bSTheodore Ts'o 	 * For now, though, we'll cheat by calling filemap_flush(),
2715ccd2506bSTheodore Ts'o 	 * which will map the blocks, and start the I/O, but not
2716ccd2506bSTheodore Ts'o 	 * actually wait for the I/O to complete.
2717ccd2506bSTheodore Ts'o 	 */
2718ccd2506bSTheodore Ts'o 	return filemap_flush(inode->i_mapping);
2719ccd2506bSTheodore Ts'o }
272064769240SAlex Tomas 
272164769240SAlex Tomas /*
2722ac27a0ecSDave Kleikamp  * bmap() is special.  It gets used by applications such as lilo and by
2723ac27a0ecSDave Kleikamp  * the swapper to find the on-disk block of a specific piece of data.
2724ac27a0ecSDave Kleikamp  *
2725ac27a0ecSDave Kleikamp  * Naturally, this is dangerous if the block concerned is still in the
2726617ba13bSMingming Cao  * journal.  If somebody makes a swapfile on an ext4 data-journaling
2727ac27a0ecSDave Kleikamp  * filesystem and enables swap, then they may get a nasty shock when the
2728ac27a0ecSDave Kleikamp  * data getting swapped to that swapfile suddenly gets overwritten by
2729ac27a0ecSDave Kleikamp  * the original zero's written out previously to the journal and
2730ac27a0ecSDave Kleikamp  * awaiting writeback in the kernel's buffer cache.
2731ac27a0ecSDave Kleikamp  *
2732ac27a0ecSDave Kleikamp  * So, if we see any bmap calls here on a modified, data-journaled file,
2733ac27a0ecSDave Kleikamp  * take extra steps to flush any blocks which might be in the cache.
2734ac27a0ecSDave Kleikamp  */
2735617ba13bSMingming Cao static sector_t ext4_bmap(struct address_space *mapping, sector_t block)
2736ac27a0ecSDave Kleikamp {
2737ac27a0ecSDave Kleikamp 	struct inode *inode = mapping->host;
2738ac27a0ecSDave Kleikamp 	journal_t *journal;
2739ac27a0ecSDave Kleikamp 	int err;
2740ac27a0ecSDave Kleikamp 
274146c7f254STao Ma 	/*
274246c7f254STao Ma 	 * We can get here for an inline file via the FIBMAP ioctl
274346c7f254STao Ma 	 */
274446c7f254STao Ma 	if (ext4_has_inline_data(inode))
274546c7f254STao Ma 		return 0;
274646c7f254STao Ma 
274764769240SAlex Tomas 	if (mapping_tagged(mapping, PAGECACHE_TAG_DIRTY) &&
274864769240SAlex Tomas 			test_opt(inode->i_sb, DELALLOC)) {
274964769240SAlex Tomas 		/*
275064769240SAlex Tomas 		 * With delalloc we want to sync the file
275164769240SAlex Tomas 		 * so that we can make sure we allocate
275264769240SAlex Tomas 		 * blocks for file
275364769240SAlex Tomas 		 */
275464769240SAlex Tomas 		filemap_write_and_wait(mapping);
275564769240SAlex Tomas 	}
275664769240SAlex Tomas 
275719f5fb7aSTheodore Ts'o 	if (EXT4_JOURNAL(inode) &&
275819f5fb7aSTheodore Ts'o 	    ext4_test_inode_state(inode, EXT4_STATE_JDATA)) {
2759ac27a0ecSDave Kleikamp 		/*
2760ac27a0ecSDave Kleikamp 		 * This is a REALLY heavyweight approach, but the use of
2761ac27a0ecSDave Kleikamp 		 * bmap on dirty files is expected to be extremely rare:
2762ac27a0ecSDave Kleikamp 		 * only if we run lilo or swapon on a freshly made file
2763ac27a0ecSDave Kleikamp 		 * do we expect this to happen.
2764ac27a0ecSDave Kleikamp 		 *
2765ac27a0ecSDave Kleikamp 		 * (bmap requires CAP_SYS_RAWIO so this does not
2766ac27a0ecSDave Kleikamp 		 * represent an unprivileged user DOS attack --- we'd be
2767ac27a0ecSDave Kleikamp 		 * in trouble if mortal users could trigger this path at
2768ac27a0ecSDave Kleikamp 		 * will.)
2769ac27a0ecSDave Kleikamp 		 *
2770617ba13bSMingming Cao 		 * NB. EXT4_STATE_JDATA is not set on files other than
2771ac27a0ecSDave Kleikamp 		 * regular files.  If somebody wants to bmap a directory
2772ac27a0ecSDave Kleikamp 		 * or symlink and gets confused because the buffer
2773ac27a0ecSDave Kleikamp 		 * hasn't yet been flushed to disk, they deserve
2774ac27a0ecSDave Kleikamp 		 * everything they get.
2775ac27a0ecSDave Kleikamp 		 */
2776ac27a0ecSDave Kleikamp 
277719f5fb7aSTheodore Ts'o 		ext4_clear_inode_state(inode, EXT4_STATE_JDATA);
2778617ba13bSMingming Cao 		journal = EXT4_JOURNAL(inode);
2779dab291afSMingming Cao 		jbd2_journal_lock_updates(journal);
2780dab291afSMingming Cao 		err = jbd2_journal_flush(journal);
2781dab291afSMingming Cao 		jbd2_journal_unlock_updates(journal);
2782ac27a0ecSDave Kleikamp 
2783ac27a0ecSDave Kleikamp 		if (err)
2784ac27a0ecSDave Kleikamp 			return 0;
2785ac27a0ecSDave Kleikamp 	}
2786ac27a0ecSDave Kleikamp 
2787617ba13bSMingming Cao 	return generic_block_bmap(mapping, block, ext4_get_block);
2788ac27a0ecSDave Kleikamp }
2789ac27a0ecSDave Kleikamp 
2790617ba13bSMingming Cao static int ext4_readpage(struct file *file, struct page *page)
2791ac27a0ecSDave Kleikamp {
279246c7f254STao Ma 	int ret = -EAGAIN;
279346c7f254STao Ma 	struct inode *inode = page->mapping->host;
279446c7f254STao Ma 
27950562e0baSJiaying Zhang 	trace_ext4_readpage(page);
279646c7f254STao Ma 
279746c7f254STao Ma 	if (ext4_has_inline_data(inode))
279846c7f254STao Ma 		ret = ext4_readpage_inline(inode, page);
279946c7f254STao Ma 
280046c7f254STao Ma 	if (ret == -EAGAIN)
2801617ba13bSMingming Cao 		return mpage_readpage(page, ext4_get_block);
280246c7f254STao Ma 
280346c7f254STao Ma 	return ret;
2804ac27a0ecSDave Kleikamp }
2805ac27a0ecSDave Kleikamp 
2806ac27a0ecSDave Kleikamp static int
2807617ba13bSMingming Cao ext4_readpages(struct file *file, struct address_space *mapping,
2808ac27a0ecSDave Kleikamp 		struct list_head *pages, unsigned nr_pages)
2809ac27a0ecSDave Kleikamp {
281046c7f254STao Ma 	struct inode *inode = mapping->host;
281146c7f254STao Ma 
281246c7f254STao Ma 	/* If the file has inline data, no need to do readpages. */
281346c7f254STao Ma 	if (ext4_has_inline_data(inode))
281446c7f254STao Ma 		return 0;
281546c7f254STao Ma 
2816617ba13bSMingming Cao 	return mpage_readpages(mapping, pages, nr_pages, ext4_get_block);
2817ac27a0ecSDave Kleikamp }
2818ac27a0ecSDave Kleikamp 
2819d47992f8SLukas Czerner static void ext4_invalidatepage(struct page *page, unsigned int offset,
2820d47992f8SLukas Czerner 				unsigned int length)
2821ac27a0ecSDave Kleikamp {
2822ca99fdd2SLukas Czerner 	trace_ext4_invalidatepage(page, offset, length);
28230562e0baSJiaying Zhang 
28244520fb3cSJan Kara 	/* No journalling happens on data buffers when this function is used */
28254520fb3cSJan Kara 	WARN_ON(page_has_buffers(page) && buffer_jbd(page_buffers(page)));
28264520fb3cSJan Kara 
2827ca99fdd2SLukas Czerner 	block_invalidatepage(page, offset, length);
28284520fb3cSJan Kara }
28294520fb3cSJan Kara 
283053e87268SJan Kara static int __ext4_journalled_invalidatepage(struct page *page,
2831ca99fdd2SLukas Czerner 					    unsigned int offset,
2832ca99fdd2SLukas Czerner 					    unsigned int length)
28334520fb3cSJan Kara {
28344520fb3cSJan Kara 	journal_t *journal = EXT4_JOURNAL(page->mapping->host);
28354520fb3cSJan Kara 
2836ca99fdd2SLukas Czerner 	trace_ext4_journalled_invalidatepage(page, offset, length);
28374520fb3cSJan Kara 
2838744692dcSJiaying Zhang 	/*
2839ac27a0ecSDave Kleikamp 	 * If it's a full truncate we just forget about the pending dirtying
2840ac27a0ecSDave Kleikamp 	 */
2841ca99fdd2SLukas Czerner 	if (offset == 0 && length == PAGE_CACHE_SIZE)
2842ac27a0ecSDave Kleikamp 		ClearPageChecked(page);
2843ac27a0ecSDave Kleikamp 
2844ca99fdd2SLukas Czerner 	return jbd2_journal_invalidatepage(journal, page, offset, length);
284553e87268SJan Kara }
284653e87268SJan Kara 
284753e87268SJan Kara /* Wrapper for aops... */
284853e87268SJan Kara static void ext4_journalled_invalidatepage(struct page *page,
2849d47992f8SLukas Czerner 					   unsigned int offset,
2850d47992f8SLukas Czerner 					   unsigned int length)
285153e87268SJan Kara {
2852ca99fdd2SLukas Czerner 	WARN_ON(__ext4_journalled_invalidatepage(page, offset, length) < 0);
2853ac27a0ecSDave Kleikamp }
2854ac27a0ecSDave Kleikamp 
2855617ba13bSMingming Cao static int ext4_releasepage(struct page *page, gfp_t wait)
2856ac27a0ecSDave Kleikamp {
2857617ba13bSMingming Cao 	journal_t *journal = EXT4_JOURNAL(page->mapping->host);
2858ac27a0ecSDave Kleikamp 
28590562e0baSJiaying Zhang 	trace_ext4_releasepage(page);
28600562e0baSJiaying Zhang 
2861e1c36595SJan Kara 	/* Page has dirty journalled data -> cannot release */
2862e1c36595SJan Kara 	if (PageChecked(page))
2863ac27a0ecSDave Kleikamp 		return 0;
28640390131bSFrank Mayhar 	if (journal)
2865dab291afSMingming Cao 		return jbd2_journal_try_to_free_buffers(journal, page, wait);
28660390131bSFrank Mayhar 	else
28670390131bSFrank Mayhar 		return try_to_free_buffers(page);
2868ac27a0ecSDave Kleikamp }
2869ac27a0ecSDave Kleikamp 
2870ac27a0ecSDave Kleikamp /*
28712ed88685STheodore Ts'o  * ext4_get_block used when preparing for a DIO write or buffer write.
28722ed88685STheodore Ts'o  * We allocate an uinitialized extent if blocks haven't been allocated.
28732ed88685STheodore Ts'o  * The extent will be converted to initialized after the IO is complete.
28742ed88685STheodore Ts'o  */
2875f19d5870STao Ma int ext4_get_block_write(struct inode *inode, sector_t iblock,
28764c0425ffSMingming Cao 		   struct buffer_head *bh_result, int create)
28774c0425ffSMingming Cao {
2878c7064ef1SJiaying Zhang 	ext4_debug("ext4_get_block_write: inode %lu, create flag %d\n",
28798d5d02e6SMingming Cao 		   inode->i_ino, create);
28802ed88685STheodore Ts'o 	return _ext4_get_block(inode, iblock, bh_result,
28812ed88685STheodore Ts'o 			       EXT4_GET_BLOCKS_IO_CREATE_EXT);
28824c0425ffSMingming Cao }
28834c0425ffSMingming Cao 
2884729f52c6SZheng Liu static int ext4_get_block_write_nolock(struct inode *inode, sector_t iblock,
28858b0f165fSAnatol Pomozov 		   struct buffer_head *bh_result, int create)
2886729f52c6SZheng Liu {
28878b0f165fSAnatol Pomozov 	ext4_debug("ext4_get_block_write_nolock: inode %lu, create flag %d\n",
28888b0f165fSAnatol Pomozov 		   inode->i_ino, create);
28898b0f165fSAnatol Pomozov 	return _ext4_get_block(inode, iblock, bh_result,
28908b0f165fSAnatol Pomozov 			       EXT4_GET_BLOCKS_NO_LOCK);
2891729f52c6SZheng Liu }
2892729f52c6SZheng Liu 
28934c0425ffSMingming Cao static void ext4_end_io_dio(struct kiocb *iocb, loff_t offset,
28947b7a8665SChristoph Hellwig 			    ssize_t size, void *private)
28954c0425ffSMingming Cao {
28964c0425ffSMingming Cao         ext4_io_end_t *io_end = iocb->private;
28974c0425ffSMingming Cao 
289897a851edSJan Kara 	/* if not async direct IO just return */
28997b7a8665SChristoph Hellwig 	if (!io_end)
290097a851edSJan Kara 		return;
29014b70df18SMingming 
29028d5d02e6SMingming Cao 	ext_debug("ext4_end_io_dio(): io_end 0x%p "
2903ace36ad4SJoe Perches 		  "for inode %lu, iocb 0x%p, offset %llu, size %zd\n",
29048d5d02e6SMingming Cao  		  iocb->private, io_end->inode->i_ino, iocb, offset,
29058d5d02e6SMingming Cao 		  size);
29068d5d02e6SMingming Cao 
2907b5a7e970STheodore Ts'o 	iocb->private = NULL;
29084c0425ffSMingming Cao 	io_end->offset = offset;
29094c0425ffSMingming Cao 	io_end->size = size;
29107b7a8665SChristoph Hellwig 	ext4_put_io_end(io_end);
29114c0425ffSMingming Cao }
2912c7064ef1SJiaying Zhang 
29134c0425ffSMingming Cao /*
29144c0425ffSMingming Cao  * For ext4 extent files, ext4 will do direct-io write to holes,
29154c0425ffSMingming Cao  * preallocated extents, and those write extend the file, no need to
29164c0425ffSMingming Cao  * fall back to buffered IO.
29174c0425ffSMingming Cao  *
2918556615dcSLukas Czerner  * For holes, we fallocate those blocks, mark them as unwritten
291969c499d1STheodore Ts'o  * If those blocks were preallocated, we mark sure they are split, but
2920556615dcSLukas Czerner  * still keep the range to write as unwritten.
29214c0425ffSMingming Cao  *
292269c499d1STheodore Ts'o  * The unwritten extents will be converted to written when DIO is completed.
29238d5d02e6SMingming Cao  * For async direct IO, since the IO may still pending when return, we
292425985edcSLucas De Marchi  * set up an end_io call back function, which will do the conversion
29258d5d02e6SMingming Cao  * when async direct IO completed.
29264c0425ffSMingming Cao  *
29274c0425ffSMingming Cao  * If the O_DIRECT write will extend the file then add this inode to the
29284c0425ffSMingming Cao  * orphan list.  So recovery will truncate it back to the original size
29294c0425ffSMingming Cao  * if the machine crashes during the write.
29304c0425ffSMingming Cao  *
29314c0425ffSMingming Cao  */
29324c0425ffSMingming Cao static ssize_t ext4_ext_direct_IO(int rw, struct kiocb *iocb,
293316b1f05dSAl Viro 			      struct iov_iter *iter, loff_t offset)
29344c0425ffSMingming Cao {
29354c0425ffSMingming Cao 	struct file *file = iocb->ki_filp;
29364c0425ffSMingming Cao 	struct inode *inode = file->f_mapping->host;
29374c0425ffSMingming Cao 	ssize_t ret;
2938a6cbcd4aSAl Viro 	size_t count = iov_iter_count(iter);
2939729f52c6SZheng Liu 	int overwrite = 0;
29408b0f165fSAnatol Pomozov 	get_block_t *get_block_func = NULL;
29418b0f165fSAnatol Pomozov 	int dio_flags = 0;
294269c499d1STheodore Ts'o 	loff_t final_size = offset + count;
294397a851edSJan Kara 	ext4_io_end_t *io_end = NULL;
294469c499d1STheodore Ts'o 
294569c499d1STheodore Ts'o 	/* Use the old path for reads and writes beyond i_size. */
294669c499d1STheodore Ts'o 	if (rw != WRITE || final_size > inode->i_size)
294716b1f05dSAl Viro 		return ext4_ind_direct_IO(rw, iocb, iter, offset);
2948729f52c6SZheng Liu 
29494bd809dbSZheng Liu 	BUG_ON(iocb->private == NULL);
29504bd809dbSZheng Liu 
2951e8340395SJan Kara 	/*
2952e8340395SJan Kara 	 * Make all waiters for direct IO properly wait also for extent
2953e8340395SJan Kara 	 * conversion. This also disallows race between truncate() and
2954e8340395SJan Kara 	 * overwrite DIO as i_dio_count needs to be incremented under i_mutex.
2955e8340395SJan Kara 	 */
2956e8340395SJan Kara 	if (rw == WRITE)
2957e8340395SJan Kara 		atomic_inc(&inode->i_dio_count);
2958e8340395SJan Kara 
29594bd809dbSZheng Liu 	/* If we do a overwrite dio, i_mutex locking can be released */
29604bd809dbSZheng Liu 	overwrite = *((int *)iocb->private);
29614bd809dbSZheng Liu 
29624bd809dbSZheng Liu 	if (overwrite) {
29634bd809dbSZheng Liu 		down_read(&EXT4_I(inode)->i_data_sem);
29644bd809dbSZheng Liu 		mutex_unlock(&inode->i_mutex);
29654bd809dbSZheng Liu 	}
29664bd809dbSZheng Liu 
29674c0425ffSMingming Cao 	/*
29688d5d02e6SMingming Cao 	 * We could direct write to holes and fallocate.
29698d5d02e6SMingming Cao 	 *
297069c499d1STheodore Ts'o 	 * Allocated blocks to fill the hole are marked as
2971556615dcSLukas Czerner 	 * unwritten to prevent parallel buffered read to expose
297269c499d1STheodore Ts'o 	 * the stale data before DIO complete the data IO.
29738d5d02e6SMingming Cao 	 *
297469c499d1STheodore Ts'o 	 * As to previously fallocated extents, ext4 get_block will
297569c499d1STheodore Ts'o 	 * just simply mark the buffer mapped but still keep the
2976556615dcSLukas Czerner 	 * extents unwritten.
29774c0425ffSMingming Cao 	 *
297869c499d1STheodore Ts'o 	 * For non AIO case, we will convert those unwritten extents
29798d5d02e6SMingming Cao 	 * to written after return back from blockdev_direct_IO.
29804c0425ffSMingming Cao 	 *
298169c499d1STheodore Ts'o 	 * For async DIO, the conversion needs to be deferred when the
298269c499d1STheodore Ts'o 	 * IO is completed. The ext4 end_io callback function will be
298369c499d1STheodore Ts'o 	 * called to take care of the conversion work.  Here for async
298469c499d1STheodore Ts'o 	 * case, we allocate an io_end structure to hook to the iocb.
29854c0425ffSMingming Cao 	 */
29868d5d02e6SMingming Cao 	iocb->private = NULL;
2987f45ee3a1SDmitry Monakhov 	ext4_inode_aio_set(inode, NULL);
29888d5d02e6SMingming Cao 	if (!is_sync_kiocb(iocb)) {
298997a851edSJan Kara 		io_end = ext4_init_io_end(inode, GFP_NOFS);
29904bd809dbSZheng Liu 		if (!io_end) {
29914bd809dbSZheng Liu 			ret = -ENOMEM;
29924bd809dbSZheng Liu 			goto retake_lock;
29934bd809dbSZheng Liu 		}
299497a851edSJan Kara 		/*
299597a851edSJan Kara 		 * Grab reference for DIO. Will be dropped in ext4_end_io_dio()
299697a851edSJan Kara 		 */
299797a851edSJan Kara 		iocb->private = ext4_get_io_end(io_end);
29988d5d02e6SMingming Cao 		/*
299969c499d1STheodore Ts'o 		 * we save the io structure for current async direct
300069c499d1STheodore Ts'o 		 * IO, so that later ext4_map_blocks() could flag the
300169c499d1STheodore Ts'o 		 * io structure whether there is a unwritten extents
300269c499d1STheodore Ts'o 		 * needs to be converted when IO is completed.
30038d5d02e6SMingming Cao 		 */
3004f45ee3a1SDmitry Monakhov 		ext4_inode_aio_set(inode, io_end);
30058d5d02e6SMingming Cao 	}
30068d5d02e6SMingming Cao 
30078b0f165fSAnatol Pomozov 	if (overwrite) {
30088b0f165fSAnatol Pomozov 		get_block_func = ext4_get_block_write_nolock;
30098b0f165fSAnatol Pomozov 	} else {
30108b0f165fSAnatol Pomozov 		get_block_func = ext4_get_block_write;
30118b0f165fSAnatol Pomozov 		dio_flags = DIO_LOCKING;
30128b0f165fSAnatol Pomozov 	}
3013729f52c6SZheng Liu 	ret = __blockdev_direct_IO(rw, iocb, inode,
301431b14039SAl Viro 				   inode->i_sb->s_bdev, iter,
301531b14039SAl Viro 				   offset,
30168b0f165fSAnatol Pomozov 				   get_block_func,
3017729f52c6SZheng Liu 				   ext4_end_io_dio,
3018729f52c6SZheng Liu 				   NULL,
30198b0f165fSAnatol Pomozov 				   dio_flags);
30208b0f165fSAnatol Pomozov 
30214eec708dSJan Kara 	/*
302297a851edSJan Kara 	 * Put our reference to io_end. This can free the io_end structure e.g.
302397a851edSJan Kara 	 * in sync IO case or in case of error. It can even perform extent
302497a851edSJan Kara 	 * conversion if all bios we submitted finished before we got here.
302597a851edSJan Kara 	 * Note that in that case iocb->private can be already set to NULL
302697a851edSJan Kara 	 * here.
30274eec708dSJan Kara 	 */
302897a851edSJan Kara 	if (io_end) {
302997a851edSJan Kara 		ext4_inode_aio_set(inode, NULL);
303097a851edSJan Kara 		ext4_put_io_end(io_end);
303197a851edSJan Kara 		/*
303297a851edSJan Kara 		 * When no IO was submitted ext4_end_io_dio() was not
303397a851edSJan Kara 		 * called so we have to put iocb's reference.
303497a851edSJan Kara 		 */
303597a851edSJan Kara 		if (ret <= 0 && ret != -EIOCBQUEUED && iocb->private) {
303697a851edSJan Kara 			WARN_ON(iocb->private != io_end);
303797a851edSJan Kara 			WARN_ON(io_end->flag & EXT4_IO_END_UNWRITTEN);
303897a851edSJan Kara 			ext4_put_io_end(io_end);
30398d5d02e6SMingming Cao 			iocb->private = NULL;
304097a851edSJan Kara 		}
304197a851edSJan Kara 	}
304297a851edSJan Kara 	if (ret > 0 && !overwrite && ext4_test_inode_state(inode,
30435f524950SMingming 						EXT4_STATE_DIO_UNWRITTEN)) {
3044109f5565SMingming 		int err;
30458d5d02e6SMingming Cao 		/*
30468d5d02e6SMingming Cao 		 * for non AIO case, since the IO is already
304725985edcSLucas De Marchi 		 * completed, we could do the conversion right here
30488d5d02e6SMingming Cao 		 */
30496b523df4SJan Kara 		err = ext4_convert_unwritten_extents(NULL, inode,
30508d5d02e6SMingming Cao 						     offset, ret);
3051109f5565SMingming 		if (err < 0)
3052109f5565SMingming 			ret = err;
305319f5fb7aSTheodore Ts'o 		ext4_clear_inode_state(inode, EXT4_STATE_DIO_UNWRITTEN);
3054109f5565SMingming 	}
30554bd809dbSZheng Liu 
30564bd809dbSZheng Liu retake_lock:
3057e8340395SJan Kara 	if (rw == WRITE)
3058e8340395SJan Kara 		inode_dio_done(inode);
30594bd809dbSZheng Liu 	/* take i_mutex locking again if we do a ovewrite dio */
30604bd809dbSZheng Liu 	if (overwrite) {
30614bd809dbSZheng Liu 		up_read(&EXT4_I(inode)->i_data_sem);
30624bd809dbSZheng Liu 		mutex_lock(&inode->i_mutex);
30634bd809dbSZheng Liu 	}
30644bd809dbSZheng Liu 
30654c0425ffSMingming Cao 	return ret;
30664c0425ffSMingming Cao }
30678d5d02e6SMingming Cao 
30684c0425ffSMingming Cao static ssize_t ext4_direct_IO(int rw, struct kiocb *iocb,
3069d8d3d94bSAl Viro 			      struct iov_iter *iter, loff_t offset)
30704c0425ffSMingming Cao {
30714c0425ffSMingming Cao 	struct file *file = iocb->ki_filp;
30724c0425ffSMingming Cao 	struct inode *inode = file->f_mapping->host;
3073a6cbcd4aSAl Viro 	size_t count = iov_iter_count(iter);
30740562e0baSJiaying Zhang 	ssize_t ret;
30754c0425ffSMingming Cao 
307684ebd795STheodore Ts'o 	/*
307784ebd795STheodore Ts'o 	 * If we are doing data journalling we don't support O_DIRECT
307884ebd795STheodore Ts'o 	 */
307984ebd795STheodore Ts'o 	if (ext4_should_journal_data(inode))
308084ebd795STheodore Ts'o 		return 0;
308184ebd795STheodore Ts'o 
308246c7f254STao Ma 	/* Let buffer I/O handle the inline data case. */
308346c7f254STao Ma 	if (ext4_has_inline_data(inode))
308446c7f254STao Ma 		return 0;
308546c7f254STao Ma 
3086a6cbcd4aSAl Viro 	trace_ext4_direct_IO_enter(inode, offset, count, rw);
308712e9b892SDmitry Monakhov 	if (ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS))
308816b1f05dSAl Viro 		ret = ext4_ext_direct_IO(rw, iocb, iter, offset);
30890562e0baSJiaying Zhang 	else
309016b1f05dSAl Viro 		ret = ext4_ind_direct_IO(rw, iocb, iter, offset);
3091a6cbcd4aSAl Viro 	trace_ext4_direct_IO_exit(inode, offset, count, rw, ret);
30920562e0baSJiaying Zhang 	return ret;
30934c0425ffSMingming Cao }
30944c0425ffSMingming Cao 
3095ac27a0ecSDave Kleikamp /*
3096617ba13bSMingming Cao  * Pages can be marked dirty completely asynchronously from ext4's journalling
3097ac27a0ecSDave Kleikamp  * activity.  By filemap_sync_pte(), try_to_unmap_one(), etc.  We cannot do
3098ac27a0ecSDave Kleikamp  * much here because ->set_page_dirty is called under VFS locks.  The page is
3099ac27a0ecSDave Kleikamp  * not necessarily locked.
3100ac27a0ecSDave Kleikamp  *
3101ac27a0ecSDave Kleikamp  * We cannot just dirty the page and leave attached buffers clean, because the
3102ac27a0ecSDave Kleikamp  * buffers' dirty state is "definitive".  We cannot just set the buffers dirty
3103ac27a0ecSDave Kleikamp  * or jbddirty because all the journalling code will explode.
3104ac27a0ecSDave Kleikamp  *
3105ac27a0ecSDave Kleikamp  * So what we do is to mark the page "pending dirty" and next time writepage
3106ac27a0ecSDave Kleikamp  * is called, propagate that into the buffers appropriately.
3107ac27a0ecSDave Kleikamp  */
3108617ba13bSMingming Cao static int ext4_journalled_set_page_dirty(struct page *page)
3109ac27a0ecSDave Kleikamp {
3110ac27a0ecSDave Kleikamp 	SetPageChecked(page);
3111ac27a0ecSDave Kleikamp 	return __set_page_dirty_nobuffers(page);
3112ac27a0ecSDave Kleikamp }
3113ac27a0ecSDave Kleikamp 
311474d553aaSTheodore Ts'o static const struct address_space_operations ext4_aops = {
3115617ba13bSMingming Cao 	.readpage		= ext4_readpage,
3116617ba13bSMingming Cao 	.readpages		= ext4_readpages,
311743ce1d23SAneesh Kumar K.V 	.writepage		= ext4_writepage,
311820970ba6STheodore Ts'o 	.writepages		= ext4_writepages,
3119bfc1af65SNick Piggin 	.write_begin		= ext4_write_begin,
312074d553aaSTheodore Ts'o 	.write_end		= ext4_write_end,
3121617ba13bSMingming Cao 	.bmap			= ext4_bmap,
3122617ba13bSMingming Cao 	.invalidatepage		= ext4_invalidatepage,
3123617ba13bSMingming Cao 	.releasepage		= ext4_releasepage,
3124617ba13bSMingming Cao 	.direct_IO		= ext4_direct_IO,
3125ac27a0ecSDave Kleikamp 	.migratepage		= buffer_migrate_page,
31268ab22b9aSHisashi Hifumi 	.is_partially_uptodate  = block_is_partially_uptodate,
3127aa261f54SAndi Kleen 	.error_remove_page	= generic_error_remove_page,
3128ac27a0ecSDave Kleikamp };
3129ac27a0ecSDave Kleikamp 
3130617ba13bSMingming Cao static const struct address_space_operations ext4_journalled_aops = {
3131617ba13bSMingming Cao 	.readpage		= ext4_readpage,
3132617ba13bSMingming Cao 	.readpages		= ext4_readpages,
313343ce1d23SAneesh Kumar K.V 	.writepage		= ext4_writepage,
313420970ba6STheodore Ts'o 	.writepages		= ext4_writepages,
3135bfc1af65SNick Piggin 	.write_begin		= ext4_write_begin,
3136bfc1af65SNick Piggin 	.write_end		= ext4_journalled_write_end,
3137617ba13bSMingming Cao 	.set_page_dirty		= ext4_journalled_set_page_dirty,
3138617ba13bSMingming Cao 	.bmap			= ext4_bmap,
31394520fb3cSJan Kara 	.invalidatepage		= ext4_journalled_invalidatepage,
3140617ba13bSMingming Cao 	.releasepage		= ext4_releasepage,
314184ebd795STheodore Ts'o 	.direct_IO		= ext4_direct_IO,
31428ab22b9aSHisashi Hifumi 	.is_partially_uptodate  = block_is_partially_uptodate,
3143aa261f54SAndi Kleen 	.error_remove_page	= generic_error_remove_page,
3144ac27a0ecSDave Kleikamp };
3145ac27a0ecSDave Kleikamp 
314664769240SAlex Tomas static const struct address_space_operations ext4_da_aops = {
314764769240SAlex Tomas 	.readpage		= ext4_readpage,
314864769240SAlex Tomas 	.readpages		= ext4_readpages,
314943ce1d23SAneesh Kumar K.V 	.writepage		= ext4_writepage,
315020970ba6STheodore Ts'o 	.writepages		= ext4_writepages,
315164769240SAlex Tomas 	.write_begin		= ext4_da_write_begin,
315264769240SAlex Tomas 	.write_end		= ext4_da_write_end,
315364769240SAlex Tomas 	.bmap			= ext4_bmap,
315464769240SAlex Tomas 	.invalidatepage		= ext4_da_invalidatepage,
315564769240SAlex Tomas 	.releasepage		= ext4_releasepage,
315664769240SAlex Tomas 	.direct_IO		= ext4_direct_IO,
315764769240SAlex Tomas 	.migratepage		= buffer_migrate_page,
31588ab22b9aSHisashi Hifumi 	.is_partially_uptodate  = block_is_partially_uptodate,
3159aa261f54SAndi Kleen 	.error_remove_page	= generic_error_remove_page,
316064769240SAlex Tomas };
316164769240SAlex Tomas 
3162617ba13bSMingming Cao void ext4_set_aops(struct inode *inode)
3163ac27a0ecSDave Kleikamp {
31643d2b1582SLukas Czerner 	switch (ext4_inode_journal_mode(inode)) {
31653d2b1582SLukas Czerner 	case EXT4_INODE_ORDERED_DATA_MODE:
316674d553aaSTheodore Ts'o 		ext4_set_inode_state(inode, EXT4_STATE_ORDERED_MODE);
31673d2b1582SLukas Czerner 		break;
31683d2b1582SLukas Czerner 	case EXT4_INODE_WRITEBACK_DATA_MODE:
316974d553aaSTheodore Ts'o 		ext4_clear_inode_state(inode, EXT4_STATE_ORDERED_MODE);
31703d2b1582SLukas Czerner 		break;
31713d2b1582SLukas Czerner 	case EXT4_INODE_JOURNAL_DATA_MODE:
3172617ba13bSMingming Cao 		inode->i_mapping->a_ops = &ext4_journalled_aops;
317374d553aaSTheodore Ts'o 		return;
31743d2b1582SLukas Czerner 	default:
31753d2b1582SLukas Czerner 		BUG();
31763d2b1582SLukas Czerner 	}
317774d553aaSTheodore Ts'o 	if (test_opt(inode->i_sb, DELALLOC))
317874d553aaSTheodore Ts'o 		inode->i_mapping->a_ops = &ext4_da_aops;
317974d553aaSTheodore Ts'o 	else
318074d553aaSTheodore Ts'o 		inode->i_mapping->a_ops = &ext4_aops;
3181ac27a0ecSDave Kleikamp }
3182ac27a0ecSDave Kleikamp 
3183d863dc36SLukas Czerner /*
3184d863dc36SLukas Czerner  * ext4_block_zero_page_range() zeros out a mapping of length 'length'
3185d863dc36SLukas Czerner  * starting from file offset 'from'.  The range to be zero'd must
3186d863dc36SLukas Czerner  * be contained with in one block.  If the specified range exceeds
3187d863dc36SLukas Czerner  * the end of the block it will be shortened to end of the block
3188d863dc36SLukas Czerner  * that cooresponds to 'from'
3189d863dc36SLukas Czerner  */
319094350ab5SMatthew Wilcox static int ext4_block_zero_page_range(handle_t *handle,
3191d863dc36SLukas Czerner 		struct address_space *mapping, loff_t from, loff_t length)
3192d863dc36SLukas Czerner {
3193d863dc36SLukas Czerner 	ext4_fsblk_t index = from >> PAGE_CACHE_SHIFT;
3194d863dc36SLukas Czerner 	unsigned offset = from & (PAGE_CACHE_SIZE-1);
3195d863dc36SLukas Czerner 	unsigned blocksize, max, pos;
3196d863dc36SLukas Czerner 	ext4_lblk_t iblock;
3197d863dc36SLukas Czerner 	struct inode *inode = mapping->host;
3198d863dc36SLukas Czerner 	struct buffer_head *bh;
3199d863dc36SLukas Czerner 	struct page *page;
3200d863dc36SLukas Czerner 	int err = 0;
3201d863dc36SLukas Czerner 
3202d863dc36SLukas Czerner 	page = find_or_create_page(mapping, from >> PAGE_CACHE_SHIFT,
3203d863dc36SLukas Czerner 				   mapping_gfp_mask(mapping) & ~__GFP_FS);
3204d863dc36SLukas Czerner 	if (!page)
3205d863dc36SLukas Czerner 		return -ENOMEM;
3206d863dc36SLukas Czerner 
3207d863dc36SLukas Czerner 	blocksize = inode->i_sb->s_blocksize;
3208d863dc36SLukas Czerner 	max = blocksize - (offset & (blocksize - 1));
3209d863dc36SLukas Czerner 
3210d863dc36SLukas Czerner 	/*
3211d863dc36SLukas Czerner 	 * correct length if it does not fall between
3212d863dc36SLukas Czerner 	 * 'from' and the end of the block
3213d863dc36SLukas Czerner 	 */
3214d863dc36SLukas Czerner 	if (length > max || length < 0)
3215d863dc36SLukas Czerner 		length = max;
3216d863dc36SLukas Czerner 
3217d863dc36SLukas Czerner 	iblock = index << (PAGE_CACHE_SHIFT - inode->i_sb->s_blocksize_bits);
3218d863dc36SLukas Czerner 
3219d863dc36SLukas Czerner 	if (!page_has_buffers(page))
3220d863dc36SLukas Czerner 		create_empty_buffers(page, blocksize, 0);
3221d863dc36SLukas Czerner 
3222d863dc36SLukas Czerner 	/* Find the buffer that contains "offset" */
3223d863dc36SLukas Czerner 	bh = page_buffers(page);
3224d863dc36SLukas Czerner 	pos = blocksize;
3225d863dc36SLukas Czerner 	while (offset >= pos) {
3226d863dc36SLukas Czerner 		bh = bh->b_this_page;
3227d863dc36SLukas Czerner 		iblock++;
3228d863dc36SLukas Czerner 		pos += blocksize;
3229d863dc36SLukas Czerner 	}
3230d863dc36SLukas Czerner 	if (buffer_freed(bh)) {
3231d863dc36SLukas Czerner 		BUFFER_TRACE(bh, "freed: skip");
3232d863dc36SLukas Czerner 		goto unlock;
3233d863dc36SLukas Czerner 	}
3234d863dc36SLukas Czerner 	if (!buffer_mapped(bh)) {
3235d863dc36SLukas Czerner 		BUFFER_TRACE(bh, "unmapped");
3236d863dc36SLukas Czerner 		ext4_get_block(inode, iblock, bh, 0);
3237d863dc36SLukas Czerner 		/* unmapped? It's a hole - nothing to do */
3238d863dc36SLukas Czerner 		if (!buffer_mapped(bh)) {
3239d863dc36SLukas Czerner 			BUFFER_TRACE(bh, "still unmapped");
3240d863dc36SLukas Czerner 			goto unlock;
3241d863dc36SLukas Czerner 		}
3242d863dc36SLukas Czerner 	}
3243d863dc36SLukas Czerner 
3244d863dc36SLukas Czerner 	/* Ok, it's mapped. Make sure it's up-to-date */
3245d863dc36SLukas Czerner 	if (PageUptodate(page))
3246d863dc36SLukas Czerner 		set_buffer_uptodate(bh);
3247d863dc36SLukas Czerner 
3248d863dc36SLukas Czerner 	if (!buffer_uptodate(bh)) {
3249d863dc36SLukas Czerner 		err = -EIO;
3250d863dc36SLukas Czerner 		ll_rw_block(READ, 1, &bh);
3251d863dc36SLukas Czerner 		wait_on_buffer(bh);
3252d863dc36SLukas Czerner 		/* Uhhuh. Read error. Complain and punt. */
3253d863dc36SLukas Czerner 		if (!buffer_uptodate(bh))
3254d863dc36SLukas Czerner 			goto unlock;
3255d863dc36SLukas Czerner 	}
3256d863dc36SLukas Czerner 	if (ext4_should_journal_data(inode)) {
3257d863dc36SLukas Czerner 		BUFFER_TRACE(bh, "get write access");
3258d863dc36SLukas Czerner 		err = ext4_journal_get_write_access(handle, bh);
3259d863dc36SLukas Czerner 		if (err)
3260d863dc36SLukas Czerner 			goto unlock;
3261d863dc36SLukas Czerner 	}
3262d863dc36SLukas Czerner 	zero_user(page, offset, length);
3263d863dc36SLukas Czerner 	BUFFER_TRACE(bh, "zeroed end of block");
3264d863dc36SLukas Czerner 
3265d863dc36SLukas Czerner 	if (ext4_should_journal_data(inode)) {
3266d863dc36SLukas Czerner 		err = ext4_handle_dirty_metadata(handle, inode, bh);
32670713ed0cSLukas Czerner 	} else {
3268353eefd3Sjon ernst 		err = 0;
3269d863dc36SLukas Czerner 		mark_buffer_dirty(bh);
32700713ed0cSLukas Czerner 		if (ext4_test_inode_state(inode, EXT4_STATE_ORDERED_MODE))
32710713ed0cSLukas Czerner 			err = ext4_jbd2_file_inode(handle, inode);
32720713ed0cSLukas Czerner 	}
3273d863dc36SLukas Czerner 
3274d863dc36SLukas Czerner unlock:
3275d863dc36SLukas Czerner 	unlock_page(page);
3276d863dc36SLukas Czerner 	page_cache_release(page);
3277d863dc36SLukas Czerner 	return err;
3278d863dc36SLukas Czerner }
3279d863dc36SLukas Czerner 
328094350ab5SMatthew Wilcox /*
328194350ab5SMatthew Wilcox  * ext4_block_truncate_page() zeroes out a mapping from file offset `from'
328294350ab5SMatthew Wilcox  * up to the end of the block which corresponds to `from'.
328394350ab5SMatthew Wilcox  * This required during truncate. We need to physically zero the tail end
328494350ab5SMatthew Wilcox  * of that block so it doesn't yield old data if the file is later grown.
328594350ab5SMatthew Wilcox  */
3286c197855eSStephen Hemminger static int ext4_block_truncate_page(handle_t *handle,
328794350ab5SMatthew Wilcox 		struct address_space *mapping, loff_t from)
328894350ab5SMatthew Wilcox {
328994350ab5SMatthew Wilcox 	unsigned offset = from & (PAGE_CACHE_SIZE-1);
329094350ab5SMatthew Wilcox 	unsigned length;
329194350ab5SMatthew Wilcox 	unsigned blocksize;
329294350ab5SMatthew Wilcox 	struct inode *inode = mapping->host;
329394350ab5SMatthew Wilcox 
329494350ab5SMatthew Wilcox 	blocksize = inode->i_sb->s_blocksize;
329594350ab5SMatthew Wilcox 	length = blocksize - (offset & (blocksize - 1));
329694350ab5SMatthew Wilcox 
329794350ab5SMatthew Wilcox 	return ext4_block_zero_page_range(handle, mapping, from, length);
329894350ab5SMatthew Wilcox }
329994350ab5SMatthew Wilcox 
3300a87dd18cSLukas Czerner int ext4_zero_partial_blocks(handle_t *handle, struct inode *inode,
3301a87dd18cSLukas Czerner 			     loff_t lstart, loff_t length)
3302a87dd18cSLukas Czerner {
3303a87dd18cSLukas Czerner 	struct super_block *sb = inode->i_sb;
3304a87dd18cSLukas Czerner 	struct address_space *mapping = inode->i_mapping;
3305e1be3a92SLukas Czerner 	unsigned partial_start, partial_end;
3306a87dd18cSLukas Czerner 	ext4_fsblk_t start, end;
3307a87dd18cSLukas Czerner 	loff_t byte_end = (lstart + length - 1);
3308a87dd18cSLukas Czerner 	int err = 0;
3309a87dd18cSLukas Czerner 
3310e1be3a92SLukas Czerner 	partial_start = lstart & (sb->s_blocksize - 1);
3311e1be3a92SLukas Czerner 	partial_end = byte_end & (sb->s_blocksize - 1);
3312e1be3a92SLukas Czerner 
3313a87dd18cSLukas Czerner 	start = lstart >> sb->s_blocksize_bits;
3314a87dd18cSLukas Czerner 	end = byte_end >> sb->s_blocksize_bits;
3315a87dd18cSLukas Czerner 
3316a87dd18cSLukas Czerner 	/* Handle partial zero within the single block */
3317e1be3a92SLukas Czerner 	if (start == end &&
3318e1be3a92SLukas Czerner 	    (partial_start || (partial_end != sb->s_blocksize - 1))) {
3319a87dd18cSLukas Czerner 		err = ext4_block_zero_page_range(handle, mapping,
3320a87dd18cSLukas Czerner 						 lstart, length);
3321a87dd18cSLukas Czerner 		return err;
3322a87dd18cSLukas Czerner 	}
3323a87dd18cSLukas Czerner 	/* Handle partial zero out on the start of the range */
3324e1be3a92SLukas Czerner 	if (partial_start) {
3325a87dd18cSLukas Czerner 		err = ext4_block_zero_page_range(handle, mapping,
3326a87dd18cSLukas Czerner 						 lstart, sb->s_blocksize);
3327a87dd18cSLukas Czerner 		if (err)
3328a87dd18cSLukas Czerner 			return err;
3329a87dd18cSLukas Czerner 	}
3330a87dd18cSLukas Czerner 	/* Handle partial zero out on the end of the range */
3331e1be3a92SLukas Czerner 	if (partial_end != sb->s_blocksize - 1)
3332a87dd18cSLukas Czerner 		err = ext4_block_zero_page_range(handle, mapping,
3333e1be3a92SLukas Czerner 						 byte_end - partial_end,
3334e1be3a92SLukas Czerner 						 partial_end + 1);
3335a87dd18cSLukas Czerner 	return err;
3336a87dd18cSLukas Czerner }
3337a87dd18cSLukas Czerner 
333891ef4cafSDuane Griffin int ext4_can_truncate(struct inode *inode)
333991ef4cafSDuane Griffin {
334091ef4cafSDuane Griffin 	if (S_ISREG(inode->i_mode))
334191ef4cafSDuane Griffin 		return 1;
334291ef4cafSDuane Griffin 	if (S_ISDIR(inode->i_mode))
334391ef4cafSDuane Griffin 		return 1;
334491ef4cafSDuane Griffin 	if (S_ISLNK(inode->i_mode))
334591ef4cafSDuane Griffin 		return !ext4_inode_is_fast_symlink(inode);
334691ef4cafSDuane Griffin 	return 0;
334791ef4cafSDuane Griffin }
334891ef4cafSDuane Griffin 
3349ac27a0ecSDave Kleikamp /*
3350a4bb6b64SAllison Henderson  * ext4_punch_hole: punches a hole in a file by releaseing the blocks
3351a4bb6b64SAllison Henderson  * associated with the given offset and length
3352a4bb6b64SAllison Henderson  *
3353a4bb6b64SAllison Henderson  * @inode:  File inode
3354a4bb6b64SAllison Henderson  * @offset: The offset where the hole will begin
3355a4bb6b64SAllison Henderson  * @len:    The length of the hole
3356a4bb6b64SAllison Henderson  *
33574907cb7bSAnatol Pomozov  * Returns: 0 on success or negative on failure
3358a4bb6b64SAllison Henderson  */
3359a4bb6b64SAllison Henderson 
3360aeb2817aSAshish Sangwan int ext4_punch_hole(struct inode *inode, loff_t offset, loff_t length)
3361a4bb6b64SAllison Henderson {
336226a4c0c6STheodore Ts'o 	struct super_block *sb = inode->i_sb;
336326a4c0c6STheodore Ts'o 	ext4_lblk_t first_block, stop_block;
336426a4c0c6STheodore Ts'o 	struct address_space *mapping = inode->i_mapping;
3365a87dd18cSLukas Czerner 	loff_t first_block_offset, last_block_offset;
336626a4c0c6STheodore Ts'o 	handle_t *handle;
336726a4c0c6STheodore Ts'o 	unsigned int credits;
336826a4c0c6STheodore Ts'o 	int ret = 0;
336926a4c0c6STheodore Ts'o 
3370a4bb6b64SAllison Henderson 	if (!S_ISREG(inode->i_mode))
337173355192SAllison Henderson 		return -EOPNOTSUPP;
3372a4bb6b64SAllison Henderson 
3373b8a86845SLukas Czerner 	trace_ext4_punch_hole(inode, offset, length, 0);
3374aaddea81SZheng Liu 
337526a4c0c6STheodore Ts'o 	/*
337626a4c0c6STheodore Ts'o 	 * Write out all dirty pages to avoid race conditions
337726a4c0c6STheodore Ts'o 	 * Then release them.
337826a4c0c6STheodore Ts'o 	 */
337926a4c0c6STheodore Ts'o 	if (mapping->nrpages && mapping_tagged(mapping, PAGECACHE_TAG_DIRTY)) {
338026a4c0c6STheodore Ts'o 		ret = filemap_write_and_wait_range(mapping, offset,
338126a4c0c6STheodore Ts'o 						   offset + length - 1);
338226a4c0c6STheodore Ts'o 		if (ret)
338326a4c0c6STheodore Ts'o 			return ret;
338426a4c0c6STheodore Ts'o 	}
338526a4c0c6STheodore Ts'o 
338626a4c0c6STheodore Ts'o 	mutex_lock(&inode->i_mutex);
33879ef06cecSLukas Czerner 
338826a4c0c6STheodore Ts'o 	/* No need to punch hole beyond i_size */
338926a4c0c6STheodore Ts'o 	if (offset >= inode->i_size)
339026a4c0c6STheodore Ts'o 		goto out_mutex;
339126a4c0c6STheodore Ts'o 
339226a4c0c6STheodore Ts'o 	/*
339326a4c0c6STheodore Ts'o 	 * If the hole extends beyond i_size, set the hole
339426a4c0c6STheodore Ts'o 	 * to end after the page that contains i_size
339526a4c0c6STheodore Ts'o 	 */
339626a4c0c6STheodore Ts'o 	if (offset + length > inode->i_size) {
339726a4c0c6STheodore Ts'o 		length = inode->i_size +
339826a4c0c6STheodore Ts'o 		   PAGE_CACHE_SIZE - (inode->i_size & (PAGE_CACHE_SIZE - 1)) -
339926a4c0c6STheodore Ts'o 		   offset;
340026a4c0c6STheodore Ts'o 	}
340126a4c0c6STheodore Ts'o 
3402a361293fSJan Kara 	if (offset & (sb->s_blocksize - 1) ||
3403a361293fSJan Kara 	    (offset + length) & (sb->s_blocksize - 1)) {
3404a361293fSJan Kara 		/*
3405a361293fSJan Kara 		 * Attach jinode to inode for jbd2 if we do any zeroing of
3406a361293fSJan Kara 		 * partial block
3407a361293fSJan Kara 		 */
3408a361293fSJan Kara 		ret = ext4_inode_attach_jinode(inode);
3409a361293fSJan Kara 		if (ret < 0)
3410a361293fSJan Kara 			goto out_mutex;
3411a361293fSJan Kara 
3412a361293fSJan Kara 	}
3413a361293fSJan Kara 
3414a87dd18cSLukas Czerner 	first_block_offset = round_up(offset, sb->s_blocksize);
3415a87dd18cSLukas Czerner 	last_block_offset = round_down((offset + length), sb->s_blocksize) - 1;
341626a4c0c6STheodore Ts'o 
3417a87dd18cSLukas Czerner 	/* Now release the pages and zero block aligned part of pages*/
3418a87dd18cSLukas Czerner 	if (last_block_offset > first_block_offset)
3419a87dd18cSLukas Czerner 		truncate_pagecache_range(inode, first_block_offset,
3420a87dd18cSLukas Czerner 					 last_block_offset);
342126a4c0c6STheodore Ts'o 
342226a4c0c6STheodore Ts'o 	/* Wait all existing dio workers, newcomers will block on i_mutex */
342326a4c0c6STheodore Ts'o 	ext4_inode_block_unlocked_dio(inode);
342426a4c0c6STheodore Ts'o 	inode_dio_wait(inode);
342526a4c0c6STheodore Ts'o 
342626a4c0c6STheodore Ts'o 	if (ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS))
342726a4c0c6STheodore Ts'o 		credits = ext4_writepage_trans_blocks(inode);
342826a4c0c6STheodore Ts'o 	else
342926a4c0c6STheodore Ts'o 		credits = ext4_blocks_for_truncate(inode);
343026a4c0c6STheodore Ts'o 	handle = ext4_journal_start(inode, EXT4_HT_TRUNCATE, credits);
343126a4c0c6STheodore Ts'o 	if (IS_ERR(handle)) {
343226a4c0c6STheodore Ts'o 		ret = PTR_ERR(handle);
343326a4c0c6STheodore Ts'o 		ext4_std_error(sb, ret);
343426a4c0c6STheodore Ts'o 		goto out_dio;
343526a4c0c6STheodore Ts'o 	}
343626a4c0c6STheodore Ts'o 
3437a87dd18cSLukas Czerner 	ret = ext4_zero_partial_blocks(handle, inode, offset,
3438a87dd18cSLukas Czerner 				       length);
343926a4c0c6STheodore Ts'o 	if (ret)
344026a4c0c6STheodore Ts'o 		goto out_stop;
344126a4c0c6STheodore Ts'o 
344226a4c0c6STheodore Ts'o 	first_block = (offset + sb->s_blocksize - 1) >>
344326a4c0c6STheodore Ts'o 		EXT4_BLOCK_SIZE_BITS(sb);
344426a4c0c6STheodore Ts'o 	stop_block = (offset + length) >> EXT4_BLOCK_SIZE_BITS(sb);
344526a4c0c6STheodore Ts'o 
344626a4c0c6STheodore Ts'o 	/* If there are no blocks to remove, return now */
344726a4c0c6STheodore Ts'o 	if (first_block >= stop_block)
344826a4c0c6STheodore Ts'o 		goto out_stop;
344926a4c0c6STheodore Ts'o 
345026a4c0c6STheodore Ts'o 	down_write(&EXT4_I(inode)->i_data_sem);
345126a4c0c6STheodore Ts'o 	ext4_discard_preallocations(inode);
345226a4c0c6STheodore Ts'o 
345326a4c0c6STheodore Ts'o 	ret = ext4_es_remove_extent(inode, first_block,
345426a4c0c6STheodore Ts'o 				    stop_block - first_block);
345526a4c0c6STheodore Ts'o 	if (ret) {
345626a4c0c6STheodore Ts'o 		up_write(&EXT4_I(inode)->i_data_sem);
345726a4c0c6STheodore Ts'o 		goto out_stop;
345826a4c0c6STheodore Ts'o 	}
345926a4c0c6STheodore Ts'o 
346026a4c0c6STheodore Ts'o 	if (ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS))
346126a4c0c6STheodore Ts'o 		ret = ext4_ext_remove_space(inode, first_block,
346226a4c0c6STheodore Ts'o 					    stop_block - 1);
346326a4c0c6STheodore Ts'o 	else
34644f579ae7SLukas Czerner 		ret = ext4_ind_remove_space(handle, inode, first_block,
346526a4c0c6STheodore Ts'o 					    stop_block);
346626a4c0c6STheodore Ts'o 
3467819c4920STheodore Ts'o 	up_write(&EXT4_I(inode)->i_data_sem);
346826a4c0c6STheodore Ts'o 	if (IS_SYNC(inode))
346926a4c0c6STheodore Ts'o 		ext4_handle_sync(handle);
3470e251f9bcSMaxim Patlasov 
3471e251f9bcSMaxim Patlasov 	/* Now release the pages again to reduce race window */
3472e251f9bcSMaxim Patlasov 	if (last_block_offset > first_block_offset)
3473e251f9bcSMaxim Patlasov 		truncate_pagecache_range(inode, first_block_offset,
3474e251f9bcSMaxim Patlasov 					 last_block_offset);
3475e251f9bcSMaxim Patlasov 
347626a4c0c6STheodore Ts'o 	inode->i_mtime = inode->i_ctime = ext4_current_time(inode);
347726a4c0c6STheodore Ts'o 	ext4_mark_inode_dirty(handle, inode);
347826a4c0c6STheodore Ts'o out_stop:
347926a4c0c6STheodore Ts'o 	ext4_journal_stop(handle);
348026a4c0c6STheodore Ts'o out_dio:
348126a4c0c6STheodore Ts'o 	ext4_inode_resume_unlocked_dio(inode);
348226a4c0c6STheodore Ts'o out_mutex:
348326a4c0c6STheodore Ts'o 	mutex_unlock(&inode->i_mutex);
348426a4c0c6STheodore Ts'o 	return ret;
3485a4bb6b64SAllison Henderson }
3486a4bb6b64SAllison Henderson 
3487a361293fSJan Kara int ext4_inode_attach_jinode(struct inode *inode)
3488a361293fSJan Kara {
3489a361293fSJan Kara 	struct ext4_inode_info *ei = EXT4_I(inode);
3490a361293fSJan Kara 	struct jbd2_inode *jinode;
3491a361293fSJan Kara 
3492a361293fSJan Kara 	if (ei->jinode || !EXT4_SB(inode->i_sb)->s_journal)
3493a361293fSJan Kara 		return 0;
3494a361293fSJan Kara 
3495a361293fSJan Kara 	jinode = jbd2_alloc_inode(GFP_KERNEL);
3496a361293fSJan Kara 	spin_lock(&inode->i_lock);
3497a361293fSJan Kara 	if (!ei->jinode) {
3498a361293fSJan Kara 		if (!jinode) {
3499a361293fSJan Kara 			spin_unlock(&inode->i_lock);
3500a361293fSJan Kara 			return -ENOMEM;
3501a361293fSJan Kara 		}
3502a361293fSJan Kara 		ei->jinode = jinode;
3503a361293fSJan Kara 		jbd2_journal_init_jbd_inode(ei->jinode, inode);
3504a361293fSJan Kara 		jinode = NULL;
3505a361293fSJan Kara 	}
3506a361293fSJan Kara 	spin_unlock(&inode->i_lock);
3507a361293fSJan Kara 	if (unlikely(jinode != NULL))
3508a361293fSJan Kara 		jbd2_free_inode(jinode);
3509a361293fSJan Kara 	return 0;
3510a361293fSJan Kara }
3511a361293fSJan Kara 
3512a4bb6b64SAllison Henderson /*
3513617ba13bSMingming Cao  * ext4_truncate()
3514ac27a0ecSDave Kleikamp  *
3515617ba13bSMingming Cao  * We block out ext4_get_block() block instantiations across the entire
3516617ba13bSMingming Cao  * transaction, and VFS/VM ensures that ext4_truncate() cannot run
3517ac27a0ecSDave Kleikamp  * simultaneously on behalf of the same inode.
3518ac27a0ecSDave Kleikamp  *
351942b2aa86SJustin P. Mattock  * As we work through the truncate and commit bits of it to the journal there
3520ac27a0ecSDave Kleikamp  * is one core, guiding principle: the file's tree must always be consistent on
3521ac27a0ecSDave Kleikamp  * disk.  We must be able to restart the truncate after a crash.
3522ac27a0ecSDave Kleikamp  *
3523ac27a0ecSDave Kleikamp  * The file's tree may be transiently inconsistent in memory (although it
3524ac27a0ecSDave Kleikamp  * probably isn't), but whenever we close off and commit a journal transaction,
3525ac27a0ecSDave Kleikamp  * the contents of (the filesystem + the journal) must be consistent and
3526ac27a0ecSDave Kleikamp  * restartable.  It's pretty simple, really: bottom up, right to left (although
3527ac27a0ecSDave Kleikamp  * left-to-right works OK too).
3528ac27a0ecSDave Kleikamp  *
3529ac27a0ecSDave Kleikamp  * Note that at recovery time, journal replay occurs *before* the restart of
3530ac27a0ecSDave Kleikamp  * truncate against the orphan inode list.
3531ac27a0ecSDave Kleikamp  *
3532ac27a0ecSDave Kleikamp  * The committed inode has the new, desired i_size (which is the same as
3533617ba13bSMingming Cao  * i_disksize in this case).  After a crash, ext4_orphan_cleanup() will see
3534ac27a0ecSDave Kleikamp  * that this inode's truncate did not complete and it will again call
3535617ba13bSMingming Cao  * ext4_truncate() to have another go.  So there will be instantiated blocks
3536617ba13bSMingming Cao  * to the right of the truncation point in a crashed ext4 filesystem.  But
3537ac27a0ecSDave Kleikamp  * that's fine - as long as they are linked from the inode, the post-crash
3538617ba13bSMingming Cao  * ext4_truncate() run will find them and release them.
3539ac27a0ecSDave Kleikamp  */
3540617ba13bSMingming Cao void ext4_truncate(struct inode *inode)
3541ac27a0ecSDave Kleikamp {
3542819c4920STheodore Ts'o 	struct ext4_inode_info *ei = EXT4_I(inode);
3543819c4920STheodore Ts'o 	unsigned int credits;
3544819c4920STheodore Ts'o 	handle_t *handle;
3545819c4920STheodore Ts'o 	struct address_space *mapping = inode->i_mapping;
3546819c4920STheodore Ts'o 
354719b5ef61STheodore Ts'o 	/*
354819b5ef61STheodore Ts'o 	 * There is a possibility that we're either freeing the inode
3549e04027e8SMatthew Wilcox 	 * or it's a completely new inode. In those cases we might not
355019b5ef61STheodore Ts'o 	 * have i_mutex locked because it's not necessary.
355119b5ef61STheodore Ts'o 	 */
355219b5ef61STheodore Ts'o 	if (!(inode->i_state & (I_NEW|I_FREEING)))
355319b5ef61STheodore Ts'o 		WARN_ON(!mutex_is_locked(&inode->i_mutex));
35540562e0baSJiaying Zhang 	trace_ext4_truncate_enter(inode);
35550562e0baSJiaying Zhang 
355691ef4cafSDuane Griffin 	if (!ext4_can_truncate(inode))
3557ac27a0ecSDave Kleikamp 		return;
3558ac27a0ecSDave Kleikamp 
355912e9b892SDmitry Monakhov 	ext4_clear_inode_flag(inode, EXT4_INODE_EOFBLOCKS);
3560c8d46e41SJiaying Zhang 
35615534fb5bSTheodore Ts'o 	if (inode->i_size == 0 && !test_opt(inode->i_sb, NO_AUTO_DA_ALLOC))
356219f5fb7aSTheodore Ts'o 		ext4_set_inode_state(inode, EXT4_STATE_DA_ALLOC_CLOSE);
35637d8f9f7dSTheodore Ts'o 
3564aef1c851STao Ma 	if (ext4_has_inline_data(inode)) {
3565aef1c851STao Ma 		int has_inline = 1;
3566aef1c851STao Ma 
3567aef1c851STao Ma 		ext4_inline_data_truncate(inode, &has_inline);
3568aef1c851STao Ma 		if (has_inline)
3569aef1c851STao Ma 			return;
3570aef1c851STao Ma 	}
3571aef1c851STao Ma 
3572a361293fSJan Kara 	/* If we zero-out tail of the page, we have to create jinode for jbd2 */
3573a361293fSJan Kara 	if (inode->i_size & (inode->i_sb->s_blocksize - 1)) {
3574a361293fSJan Kara 		if (ext4_inode_attach_jinode(inode) < 0)
3575a361293fSJan Kara 			return;
3576a361293fSJan Kara 	}
3577a361293fSJan Kara 
3578ff9893dcSAmir Goldstein 	if (ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS))
3579819c4920STheodore Ts'o 		credits = ext4_writepage_trans_blocks(inode);
3580ff9893dcSAmir Goldstein 	else
3581819c4920STheodore Ts'o 		credits = ext4_blocks_for_truncate(inode);
3582819c4920STheodore Ts'o 
3583819c4920STheodore Ts'o 	handle = ext4_journal_start(inode, EXT4_HT_TRUNCATE, credits);
3584819c4920STheodore Ts'o 	if (IS_ERR(handle)) {
3585819c4920STheodore Ts'o 		ext4_std_error(inode->i_sb, PTR_ERR(handle));
3586819c4920STheodore Ts'o 		return;
3587819c4920STheodore Ts'o 	}
3588819c4920STheodore Ts'o 
3589eb3544c6SLukas Czerner 	if (inode->i_size & (inode->i_sb->s_blocksize - 1))
3590eb3544c6SLukas Czerner 		ext4_block_truncate_page(handle, mapping, inode->i_size);
3591819c4920STheodore Ts'o 
3592819c4920STheodore Ts'o 	/*
3593819c4920STheodore Ts'o 	 * We add the inode to the orphan list, so that if this
3594819c4920STheodore Ts'o 	 * truncate spans multiple transactions, and we crash, we will
3595819c4920STheodore Ts'o 	 * resume the truncate when the filesystem recovers.  It also
3596819c4920STheodore Ts'o 	 * marks the inode dirty, to catch the new size.
3597819c4920STheodore Ts'o 	 *
3598819c4920STheodore Ts'o 	 * Implication: the file must always be in a sane, consistent
3599819c4920STheodore Ts'o 	 * truncatable state while each transaction commits.
3600819c4920STheodore Ts'o 	 */
3601819c4920STheodore Ts'o 	if (ext4_orphan_add(handle, inode))
3602819c4920STheodore Ts'o 		goto out_stop;
3603819c4920STheodore Ts'o 
3604819c4920STheodore Ts'o 	down_write(&EXT4_I(inode)->i_data_sem);
3605819c4920STheodore Ts'o 
3606819c4920STheodore Ts'o 	ext4_discard_preallocations(inode);
3607819c4920STheodore Ts'o 
3608819c4920STheodore Ts'o 	if (ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS))
3609819c4920STheodore Ts'o 		ext4_ext_truncate(handle, inode);
3610819c4920STheodore Ts'o 	else
3611819c4920STheodore Ts'o 		ext4_ind_truncate(handle, inode);
3612819c4920STheodore Ts'o 
3613819c4920STheodore Ts'o 	up_write(&ei->i_data_sem);
3614819c4920STheodore Ts'o 
3615819c4920STheodore Ts'o 	if (IS_SYNC(inode))
3616819c4920STheodore Ts'o 		ext4_handle_sync(handle);
3617819c4920STheodore Ts'o 
3618819c4920STheodore Ts'o out_stop:
3619819c4920STheodore Ts'o 	/*
3620819c4920STheodore Ts'o 	 * If this was a simple ftruncate() and the file will remain alive,
3621819c4920STheodore Ts'o 	 * then we need to clear up the orphan record which we created above.
3622819c4920STheodore Ts'o 	 * However, if this was a real unlink then we were called by
362358d86a50SWang Shilong 	 * ext4_evict_inode(), and we allow that function to clean up the
3624819c4920STheodore Ts'o 	 * orphan info for us.
3625819c4920STheodore Ts'o 	 */
3626819c4920STheodore Ts'o 	if (inode->i_nlink)
3627819c4920STheodore Ts'o 		ext4_orphan_del(handle, inode);
3628819c4920STheodore Ts'o 
3629819c4920STheodore Ts'o 	inode->i_mtime = inode->i_ctime = ext4_current_time(inode);
3630819c4920STheodore Ts'o 	ext4_mark_inode_dirty(handle, inode);
3631819c4920STheodore Ts'o 	ext4_journal_stop(handle);
3632a86c6181SAlex Tomas 
36330562e0baSJiaying Zhang 	trace_ext4_truncate_exit(inode);
3634ac27a0ecSDave Kleikamp }
3635ac27a0ecSDave Kleikamp 
3636ac27a0ecSDave Kleikamp /*
3637617ba13bSMingming Cao  * ext4_get_inode_loc returns with an extra refcount against the inode's
3638ac27a0ecSDave Kleikamp  * underlying buffer_head on success. If 'in_mem' is true, we have all
3639ac27a0ecSDave Kleikamp  * data in memory that is needed to recreate the on-disk version of this
3640ac27a0ecSDave Kleikamp  * inode.
3641ac27a0ecSDave Kleikamp  */
3642617ba13bSMingming Cao static int __ext4_get_inode_loc(struct inode *inode,
3643617ba13bSMingming Cao 				struct ext4_iloc *iloc, int in_mem)
3644ac27a0ecSDave Kleikamp {
3645240799cdSTheodore Ts'o 	struct ext4_group_desc	*gdp;
3646ac27a0ecSDave Kleikamp 	struct buffer_head	*bh;
3647240799cdSTheodore Ts'o 	struct super_block	*sb = inode->i_sb;
3648240799cdSTheodore Ts'o 	ext4_fsblk_t		block;
3649240799cdSTheodore Ts'o 	int			inodes_per_block, inode_offset;
3650ac27a0ecSDave Kleikamp 
36513a06d778SAneesh Kumar K.V 	iloc->bh = NULL;
3652240799cdSTheodore Ts'o 	if (!ext4_valid_inum(sb, inode->i_ino))
3653ac27a0ecSDave Kleikamp 		return -EIO;
3654ac27a0ecSDave Kleikamp 
3655240799cdSTheodore Ts'o 	iloc->block_group = (inode->i_ino - 1) / EXT4_INODES_PER_GROUP(sb);
3656240799cdSTheodore Ts'o 	gdp = ext4_get_group_desc(sb, iloc->block_group, NULL);
3657240799cdSTheodore Ts'o 	if (!gdp)
3658240799cdSTheodore Ts'o 		return -EIO;
3659240799cdSTheodore Ts'o 
3660240799cdSTheodore Ts'o 	/*
3661240799cdSTheodore Ts'o 	 * Figure out the offset within the block group inode table
3662240799cdSTheodore Ts'o 	 */
366300d09882STao Ma 	inodes_per_block = EXT4_SB(sb)->s_inodes_per_block;
3664240799cdSTheodore Ts'o 	inode_offset = ((inode->i_ino - 1) %
3665240799cdSTheodore Ts'o 			EXT4_INODES_PER_GROUP(sb));
3666240799cdSTheodore Ts'o 	block = ext4_inode_table(sb, gdp) + (inode_offset / inodes_per_block);
3667240799cdSTheodore Ts'o 	iloc->offset = (inode_offset % inodes_per_block) * EXT4_INODE_SIZE(sb);
3668240799cdSTheodore Ts'o 
3669240799cdSTheodore Ts'o 	bh = sb_getblk(sb, block);
3670aebf0243SWang Shilong 	if (unlikely(!bh))
3671860d21e2STheodore Ts'o 		return -ENOMEM;
3672ac27a0ecSDave Kleikamp 	if (!buffer_uptodate(bh)) {
3673ac27a0ecSDave Kleikamp 		lock_buffer(bh);
36749c83a923SHidehiro Kawai 
36759c83a923SHidehiro Kawai 		/*
36769c83a923SHidehiro Kawai 		 * If the buffer has the write error flag, we have failed
36779c83a923SHidehiro Kawai 		 * to write out another inode in the same block.  In this
36789c83a923SHidehiro Kawai 		 * case, we don't have to read the block because we may
36799c83a923SHidehiro Kawai 		 * read the old inode data successfully.
36809c83a923SHidehiro Kawai 		 */
36819c83a923SHidehiro Kawai 		if (buffer_write_io_error(bh) && !buffer_uptodate(bh))
36829c83a923SHidehiro Kawai 			set_buffer_uptodate(bh);
36839c83a923SHidehiro Kawai 
3684ac27a0ecSDave Kleikamp 		if (buffer_uptodate(bh)) {
3685ac27a0ecSDave Kleikamp 			/* someone brought it uptodate while we waited */
3686ac27a0ecSDave Kleikamp 			unlock_buffer(bh);
3687ac27a0ecSDave Kleikamp 			goto has_buffer;
3688ac27a0ecSDave Kleikamp 		}
3689ac27a0ecSDave Kleikamp 
3690ac27a0ecSDave Kleikamp 		/*
3691ac27a0ecSDave Kleikamp 		 * If we have all information of the inode in memory and this
3692ac27a0ecSDave Kleikamp 		 * is the only valid inode in the block, we need not read the
3693ac27a0ecSDave Kleikamp 		 * block.
3694ac27a0ecSDave Kleikamp 		 */
3695ac27a0ecSDave Kleikamp 		if (in_mem) {
3696ac27a0ecSDave Kleikamp 			struct buffer_head *bitmap_bh;
3697240799cdSTheodore Ts'o 			int i, start;
3698ac27a0ecSDave Kleikamp 
3699240799cdSTheodore Ts'o 			start = inode_offset & ~(inodes_per_block - 1);
3700ac27a0ecSDave Kleikamp 
3701ac27a0ecSDave Kleikamp 			/* Is the inode bitmap in cache? */
3702240799cdSTheodore Ts'o 			bitmap_bh = sb_getblk(sb, ext4_inode_bitmap(sb, gdp));
3703aebf0243SWang Shilong 			if (unlikely(!bitmap_bh))
3704ac27a0ecSDave Kleikamp 				goto make_io;
3705ac27a0ecSDave Kleikamp 
3706ac27a0ecSDave Kleikamp 			/*
3707ac27a0ecSDave Kleikamp 			 * If the inode bitmap isn't in cache then the
3708ac27a0ecSDave Kleikamp 			 * optimisation may end up performing two reads instead
3709ac27a0ecSDave Kleikamp 			 * of one, so skip it.
3710ac27a0ecSDave Kleikamp 			 */
3711ac27a0ecSDave Kleikamp 			if (!buffer_uptodate(bitmap_bh)) {
3712ac27a0ecSDave Kleikamp 				brelse(bitmap_bh);
3713ac27a0ecSDave Kleikamp 				goto make_io;
3714ac27a0ecSDave Kleikamp 			}
3715240799cdSTheodore Ts'o 			for (i = start; i < start + inodes_per_block; i++) {
3716ac27a0ecSDave Kleikamp 				if (i == inode_offset)
3717ac27a0ecSDave Kleikamp 					continue;
3718617ba13bSMingming Cao 				if (ext4_test_bit(i, bitmap_bh->b_data))
3719ac27a0ecSDave Kleikamp 					break;
3720ac27a0ecSDave Kleikamp 			}
3721ac27a0ecSDave Kleikamp 			brelse(bitmap_bh);
3722240799cdSTheodore Ts'o 			if (i == start + inodes_per_block) {
3723ac27a0ecSDave Kleikamp 				/* all other inodes are free, so skip I/O */
3724ac27a0ecSDave Kleikamp 				memset(bh->b_data, 0, bh->b_size);
3725ac27a0ecSDave Kleikamp 				set_buffer_uptodate(bh);
3726ac27a0ecSDave Kleikamp 				unlock_buffer(bh);
3727ac27a0ecSDave Kleikamp 				goto has_buffer;
3728ac27a0ecSDave Kleikamp 			}
3729ac27a0ecSDave Kleikamp 		}
3730ac27a0ecSDave Kleikamp 
3731ac27a0ecSDave Kleikamp make_io:
3732ac27a0ecSDave Kleikamp 		/*
3733240799cdSTheodore Ts'o 		 * If we need to do any I/O, try to pre-readahead extra
3734240799cdSTheodore Ts'o 		 * blocks from the inode table.
3735240799cdSTheodore Ts'o 		 */
3736240799cdSTheodore Ts'o 		if (EXT4_SB(sb)->s_inode_readahead_blks) {
3737240799cdSTheodore Ts'o 			ext4_fsblk_t b, end, table;
3738240799cdSTheodore Ts'o 			unsigned num;
37390d606e2cSTheodore Ts'o 			__u32 ra_blks = EXT4_SB(sb)->s_inode_readahead_blks;
3740240799cdSTheodore Ts'o 
3741240799cdSTheodore Ts'o 			table = ext4_inode_table(sb, gdp);
3742b713a5ecSTheodore Ts'o 			/* s_inode_readahead_blks is always a power of 2 */
37430d606e2cSTheodore Ts'o 			b = block & ~((ext4_fsblk_t) ra_blks - 1);
3744240799cdSTheodore Ts'o 			if (table > b)
3745240799cdSTheodore Ts'o 				b = table;
37460d606e2cSTheodore Ts'o 			end = b + ra_blks;
3747240799cdSTheodore Ts'o 			num = EXT4_INODES_PER_GROUP(sb);
3748feb0ab32SDarrick J. Wong 			if (ext4_has_group_desc_csum(sb))
3749560671a0SAneesh Kumar K.V 				num -= ext4_itable_unused_count(sb, gdp);
3750240799cdSTheodore Ts'o 			table += num / inodes_per_block;
3751240799cdSTheodore Ts'o 			if (end > table)
3752240799cdSTheodore Ts'o 				end = table;
3753240799cdSTheodore Ts'o 			while (b <= end)
3754240799cdSTheodore Ts'o 				sb_breadahead(sb, b++);
3755240799cdSTheodore Ts'o 		}
3756240799cdSTheodore Ts'o 
3757240799cdSTheodore Ts'o 		/*
3758ac27a0ecSDave Kleikamp 		 * There are other valid inodes in the buffer, this inode
3759ac27a0ecSDave Kleikamp 		 * has in-inode xattrs, or we don't have this inode in memory.
3760ac27a0ecSDave Kleikamp 		 * Read the block from disk.
3761ac27a0ecSDave Kleikamp 		 */
37620562e0baSJiaying Zhang 		trace_ext4_load_inode(inode);
3763ac27a0ecSDave Kleikamp 		get_bh(bh);
3764ac27a0ecSDave Kleikamp 		bh->b_end_io = end_buffer_read_sync;
376565299a3bSChristoph Hellwig 		submit_bh(READ | REQ_META | REQ_PRIO, bh);
3766ac27a0ecSDave Kleikamp 		wait_on_buffer(bh);
3767ac27a0ecSDave Kleikamp 		if (!buffer_uptodate(bh)) {
3768c398eda0STheodore Ts'o 			EXT4_ERROR_INODE_BLOCK(inode, block,
3769c398eda0STheodore Ts'o 					       "unable to read itable block");
3770ac27a0ecSDave Kleikamp 			brelse(bh);
3771ac27a0ecSDave Kleikamp 			return -EIO;
3772ac27a0ecSDave Kleikamp 		}
3773ac27a0ecSDave Kleikamp 	}
3774ac27a0ecSDave Kleikamp has_buffer:
3775ac27a0ecSDave Kleikamp 	iloc->bh = bh;
3776ac27a0ecSDave Kleikamp 	return 0;
3777ac27a0ecSDave Kleikamp }
3778ac27a0ecSDave Kleikamp 
3779617ba13bSMingming Cao int ext4_get_inode_loc(struct inode *inode, struct ext4_iloc *iloc)
3780ac27a0ecSDave Kleikamp {
3781ac27a0ecSDave Kleikamp 	/* We have all inode data except xattrs in memory here. */
3782617ba13bSMingming Cao 	return __ext4_get_inode_loc(inode, iloc,
378319f5fb7aSTheodore Ts'o 		!ext4_test_inode_state(inode, EXT4_STATE_XATTR));
3784ac27a0ecSDave Kleikamp }
3785ac27a0ecSDave Kleikamp 
3786617ba13bSMingming Cao void ext4_set_inode_flags(struct inode *inode)
3787ac27a0ecSDave Kleikamp {
3788617ba13bSMingming Cao 	unsigned int flags = EXT4_I(inode)->i_flags;
378900a1a053STheodore Ts'o 	unsigned int new_fl = 0;
3790ac27a0ecSDave Kleikamp 
3791617ba13bSMingming Cao 	if (flags & EXT4_SYNC_FL)
379200a1a053STheodore Ts'o 		new_fl |= S_SYNC;
3793617ba13bSMingming Cao 	if (flags & EXT4_APPEND_FL)
379400a1a053STheodore Ts'o 		new_fl |= S_APPEND;
3795617ba13bSMingming Cao 	if (flags & EXT4_IMMUTABLE_FL)
379600a1a053STheodore Ts'o 		new_fl |= S_IMMUTABLE;
3797617ba13bSMingming Cao 	if (flags & EXT4_NOATIME_FL)
379800a1a053STheodore Ts'o 		new_fl |= S_NOATIME;
3799617ba13bSMingming Cao 	if (flags & EXT4_DIRSYNC_FL)
380000a1a053STheodore Ts'o 		new_fl |= S_DIRSYNC;
38015f16f322STheodore Ts'o 	inode_set_flags(inode, new_fl,
38025f16f322STheodore Ts'o 			S_SYNC|S_APPEND|S_IMMUTABLE|S_NOATIME|S_DIRSYNC);
3803ac27a0ecSDave Kleikamp }
3804ac27a0ecSDave Kleikamp 
3805ff9ddf7eSJan Kara /* Propagate flags from i_flags to EXT4_I(inode)->i_flags */
3806ff9ddf7eSJan Kara void ext4_get_inode_flags(struct ext4_inode_info *ei)
3807ff9ddf7eSJan Kara {
380884a8dce2SDmitry Monakhov 	unsigned int vfs_fl;
380984a8dce2SDmitry Monakhov 	unsigned long old_fl, new_fl;
3810ff9ddf7eSJan Kara 
381184a8dce2SDmitry Monakhov 	do {
381284a8dce2SDmitry Monakhov 		vfs_fl = ei->vfs_inode.i_flags;
381384a8dce2SDmitry Monakhov 		old_fl = ei->i_flags;
381484a8dce2SDmitry Monakhov 		new_fl = old_fl & ~(EXT4_SYNC_FL|EXT4_APPEND_FL|
381584a8dce2SDmitry Monakhov 				EXT4_IMMUTABLE_FL|EXT4_NOATIME_FL|
381684a8dce2SDmitry Monakhov 				EXT4_DIRSYNC_FL);
381784a8dce2SDmitry Monakhov 		if (vfs_fl & S_SYNC)
381884a8dce2SDmitry Monakhov 			new_fl |= EXT4_SYNC_FL;
381984a8dce2SDmitry Monakhov 		if (vfs_fl & S_APPEND)
382084a8dce2SDmitry Monakhov 			new_fl |= EXT4_APPEND_FL;
382184a8dce2SDmitry Monakhov 		if (vfs_fl & S_IMMUTABLE)
382284a8dce2SDmitry Monakhov 			new_fl |= EXT4_IMMUTABLE_FL;
382384a8dce2SDmitry Monakhov 		if (vfs_fl & S_NOATIME)
382484a8dce2SDmitry Monakhov 			new_fl |= EXT4_NOATIME_FL;
382584a8dce2SDmitry Monakhov 		if (vfs_fl & S_DIRSYNC)
382684a8dce2SDmitry Monakhov 			new_fl |= EXT4_DIRSYNC_FL;
382784a8dce2SDmitry Monakhov 	} while (cmpxchg(&ei->i_flags, old_fl, new_fl) != old_fl);
3828ff9ddf7eSJan Kara }
3829de9a55b8STheodore Ts'o 
38300fc1b451SAneesh Kumar K.V static blkcnt_t ext4_inode_blocks(struct ext4_inode *raw_inode,
38310fc1b451SAneesh Kumar K.V 				  struct ext4_inode_info *ei)
38320fc1b451SAneesh Kumar K.V {
38330fc1b451SAneesh Kumar K.V 	blkcnt_t i_blocks ;
38348180a562SAneesh Kumar K.V 	struct inode *inode = &(ei->vfs_inode);
38358180a562SAneesh Kumar K.V 	struct super_block *sb = inode->i_sb;
38360fc1b451SAneesh Kumar K.V 
38370fc1b451SAneesh Kumar K.V 	if (EXT4_HAS_RO_COMPAT_FEATURE(sb,
38380fc1b451SAneesh Kumar K.V 				EXT4_FEATURE_RO_COMPAT_HUGE_FILE)) {
38390fc1b451SAneesh Kumar K.V 		/* we are using combined 48 bit field */
38400fc1b451SAneesh Kumar K.V 		i_blocks = ((u64)le16_to_cpu(raw_inode->i_blocks_high)) << 32 |
38410fc1b451SAneesh Kumar K.V 					le32_to_cpu(raw_inode->i_blocks_lo);
384207a03824STheodore Ts'o 		if (ext4_test_inode_flag(inode, EXT4_INODE_HUGE_FILE)) {
38438180a562SAneesh Kumar K.V 			/* i_blocks represent file system block size */
38448180a562SAneesh Kumar K.V 			return i_blocks  << (inode->i_blkbits - 9);
38458180a562SAneesh Kumar K.V 		} else {
38460fc1b451SAneesh Kumar K.V 			return i_blocks;
38478180a562SAneesh Kumar K.V 		}
38480fc1b451SAneesh Kumar K.V 	} else {
38490fc1b451SAneesh Kumar K.V 		return le32_to_cpu(raw_inode->i_blocks_lo);
38500fc1b451SAneesh Kumar K.V 	}
38510fc1b451SAneesh Kumar K.V }
3852ff9ddf7eSJan Kara 
3853152a7b0aSTao Ma static inline void ext4_iget_extra_inode(struct inode *inode,
3854152a7b0aSTao Ma 					 struct ext4_inode *raw_inode,
3855152a7b0aSTao Ma 					 struct ext4_inode_info *ei)
3856152a7b0aSTao Ma {
3857152a7b0aSTao Ma 	__le32 *magic = (void *)raw_inode +
3858152a7b0aSTao Ma 			EXT4_GOOD_OLD_INODE_SIZE + ei->i_extra_isize;
385967cf5b09STao Ma 	if (*magic == cpu_to_le32(EXT4_XATTR_MAGIC)) {
3860152a7b0aSTao Ma 		ext4_set_inode_state(inode, EXT4_STATE_XATTR);
386167cf5b09STao Ma 		ext4_find_inline_data_nolock(inode);
3862f19d5870STao Ma 	} else
3863f19d5870STao Ma 		EXT4_I(inode)->i_inline_off = 0;
3864152a7b0aSTao Ma }
3865152a7b0aSTao Ma 
38661d1fe1eeSDavid Howells struct inode *ext4_iget(struct super_block *sb, unsigned long ino)
3867ac27a0ecSDave Kleikamp {
3868617ba13bSMingming Cao 	struct ext4_iloc iloc;
3869617ba13bSMingming Cao 	struct ext4_inode *raw_inode;
38701d1fe1eeSDavid Howells 	struct ext4_inode_info *ei;
38711d1fe1eeSDavid Howells 	struct inode *inode;
3872b436b9beSJan Kara 	journal_t *journal = EXT4_SB(sb)->s_journal;
38731d1fe1eeSDavid Howells 	long ret;
3874ac27a0ecSDave Kleikamp 	int block;
387508cefc7aSEric W. Biederman 	uid_t i_uid;
387608cefc7aSEric W. Biederman 	gid_t i_gid;
3877ac27a0ecSDave Kleikamp 
38781d1fe1eeSDavid Howells 	inode = iget_locked(sb, ino);
38791d1fe1eeSDavid Howells 	if (!inode)
38801d1fe1eeSDavid Howells 		return ERR_PTR(-ENOMEM);
38811d1fe1eeSDavid Howells 	if (!(inode->i_state & I_NEW))
38821d1fe1eeSDavid Howells 		return inode;
38831d1fe1eeSDavid Howells 
38841d1fe1eeSDavid Howells 	ei = EXT4_I(inode);
38857dc57615SPeter Huewe 	iloc.bh = NULL;
3886ac27a0ecSDave Kleikamp 
38871d1fe1eeSDavid Howells 	ret = __ext4_get_inode_loc(inode, &iloc, 0);
38881d1fe1eeSDavid Howells 	if (ret < 0)
3889ac27a0ecSDave Kleikamp 		goto bad_inode;
3890617ba13bSMingming Cao 	raw_inode = ext4_raw_inode(&iloc);
3891814525f4SDarrick J. Wong 
3892814525f4SDarrick J. Wong 	if (EXT4_INODE_SIZE(inode->i_sb) > EXT4_GOOD_OLD_INODE_SIZE) {
3893814525f4SDarrick J. Wong 		ei->i_extra_isize = le16_to_cpu(raw_inode->i_extra_isize);
3894814525f4SDarrick J. Wong 		if (EXT4_GOOD_OLD_INODE_SIZE + ei->i_extra_isize >
3895814525f4SDarrick J. Wong 		    EXT4_INODE_SIZE(inode->i_sb)) {
3896814525f4SDarrick J. Wong 			EXT4_ERROR_INODE(inode, "bad extra_isize (%u != %u)",
3897814525f4SDarrick J. Wong 				EXT4_GOOD_OLD_INODE_SIZE + ei->i_extra_isize,
3898814525f4SDarrick J. Wong 				EXT4_INODE_SIZE(inode->i_sb));
3899814525f4SDarrick J. Wong 			ret = -EIO;
3900814525f4SDarrick J. Wong 			goto bad_inode;
3901814525f4SDarrick J. Wong 		}
3902814525f4SDarrick J. Wong 	} else
3903814525f4SDarrick J. Wong 		ei->i_extra_isize = 0;
3904814525f4SDarrick J. Wong 
3905814525f4SDarrick J. Wong 	/* Precompute checksum seed for inode metadata */
39069aa5d32bSDmitry Monakhov 	if (ext4_has_metadata_csum(sb)) {
3907814525f4SDarrick J. Wong 		struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb);
3908814525f4SDarrick J. Wong 		__u32 csum;
3909814525f4SDarrick J. Wong 		__le32 inum = cpu_to_le32(inode->i_ino);
3910814525f4SDarrick J. Wong 		__le32 gen = raw_inode->i_generation;
3911814525f4SDarrick J. Wong 		csum = ext4_chksum(sbi, sbi->s_csum_seed, (__u8 *)&inum,
3912814525f4SDarrick J. Wong 				   sizeof(inum));
3913814525f4SDarrick J. Wong 		ei->i_csum_seed = ext4_chksum(sbi, csum, (__u8 *)&gen,
3914814525f4SDarrick J. Wong 					      sizeof(gen));
3915814525f4SDarrick J. Wong 	}
3916814525f4SDarrick J. Wong 
3917814525f4SDarrick J. Wong 	if (!ext4_inode_csum_verify(inode, raw_inode, ei)) {
3918814525f4SDarrick J. Wong 		EXT4_ERROR_INODE(inode, "checksum invalid");
3919814525f4SDarrick J. Wong 		ret = -EIO;
3920814525f4SDarrick J. Wong 		goto bad_inode;
3921814525f4SDarrick J. Wong 	}
3922814525f4SDarrick J. Wong 
3923ac27a0ecSDave Kleikamp 	inode->i_mode = le16_to_cpu(raw_inode->i_mode);
392408cefc7aSEric W. Biederman 	i_uid = (uid_t)le16_to_cpu(raw_inode->i_uid_low);
392508cefc7aSEric W. Biederman 	i_gid = (gid_t)le16_to_cpu(raw_inode->i_gid_low);
3926ac27a0ecSDave Kleikamp 	if (!(test_opt(inode->i_sb, NO_UID32))) {
392708cefc7aSEric W. Biederman 		i_uid |= le16_to_cpu(raw_inode->i_uid_high) << 16;
392808cefc7aSEric W. Biederman 		i_gid |= le16_to_cpu(raw_inode->i_gid_high) << 16;
3929ac27a0ecSDave Kleikamp 	}
393008cefc7aSEric W. Biederman 	i_uid_write(inode, i_uid);
393108cefc7aSEric W. Biederman 	i_gid_write(inode, i_gid);
3932bfe86848SMiklos Szeredi 	set_nlink(inode, le16_to_cpu(raw_inode->i_links_count));
3933ac27a0ecSDave Kleikamp 
3934353eb83cSTheodore Ts'o 	ext4_clear_state_flags(ei);	/* Only relevant on 32-bit archs */
393567cf5b09STao Ma 	ei->i_inline_off = 0;
3936ac27a0ecSDave Kleikamp 	ei->i_dir_start_lookup = 0;
3937ac27a0ecSDave Kleikamp 	ei->i_dtime = le32_to_cpu(raw_inode->i_dtime);
3938ac27a0ecSDave Kleikamp 	/* We now have enough fields to check if the inode was active or not.
3939ac27a0ecSDave Kleikamp 	 * This is needed because nfsd might try to access dead inodes
3940ac27a0ecSDave Kleikamp 	 * the test is that same one that e2fsck uses
3941ac27a0ecSDave Kleikamp 	 * NeilBrown 1999oct15
3942ac27a0ecSDave Kleikamp 	 */
3943ac27a0ecSDave Kleikamp 	if (inode->i_nlink == 0) {
3944393d1d1dSDr. Tilmann Bubeck 		if ((inode->i_mode == 0 ||
3945393d1d1dSDr. Tilmann Bubeck 		     !(EXT4_SB(inode->i_sb)->s_mount_state & EXT4_ORPHAN_FS)) &&
3946393d1d1dSDr. Tilmann Bubeck 		    ino != EXT4_BOOT_LOADER_INO) {
3947ac27a0ecSDave Kleikamp 			/* this inode is deleted */
39481d1fe1eeSDavid Howells 			ret = -ESTALE;
3949ac27a0ecSDave Kleikamp 			goto bad_inode;
3950ac27a0ecSDave Kleikamp 		}
3951ac27a0ecSDave Kleikamp 		/* The only unlinked inodes we let through here have
3952ac27a0ecSDave Kleikamp 		 * valid i_mode and are being read by the orphan
3953ac27a0ecSDave Kleikamp 		 * recovery code: that's fine, we're about to complete
3954393d1d1dSDr. Tilmann Bubeck 		 * the process of deleting those.
3955393d1d1dSDr. Tilmann Bubeck 		 * OR it is the EXT4_BOOT_LOADER_INO which is
3956393d1d1dSDr. Tilmann Bubeck 		 * not initialized on a new filesystem. */
3957ac27a0ecSDave Kleikamp 	}
3958ac27a0ecSDave Kleikamp 	ei->i_flags = le32_to_cpu(raw_inode->i_flags);
39590fc1b451SAneesh Kumar K.V 	inode->i_blocks = ext4_inode_blocks(raw_inode, ei);
39607973c0c1SAneesh Kumar K.V 	ei->i_file_acl = le32_to_cpu(raw_inode->i_file_acl_lo);
3961a9e81742STheodore Ts'o 	if (EXT4_HAS_INCOMPAT_FEATURE(sb, EXT4_FEATURE_INCOMPAT_64BIT))
3962a1ddeb7eSBadari Pulavarty 		ei->i_file_acl |=
3963a1ddeb7eSBadari Pulavarty 			((__u64)le16_to_cpu(raw_inode->i_file_acl_high)) << 32;
3964a48380f7SAneesh Kumar K.V 	inode->i_size = ext4_isize(raw_inode);
3965ac27a0ecSDave Kleikamp 	ei->i_disksize = inode->i_size;
3966a9e7f447SDmitry Monakhov #ifdef CONFIG_QUOTA
3967a9e7f447SDmitry Monakhov 	ei->i_reserved_quota = 0;
3968a9e7f447SDmitry Monakhov #endif
3969ac27a0ecSDave Kleikamp 	inode->i_generation = le32_to_cpu(raw_inode->i_generation);
3970ac27a0ecSDave Kleikamp 	ei->i_block_group = iloc.block_group;
3971a4912123STheodore Ts'o 	ei->i_last_alloc_group = ~0;
3972ac27a0ecSDave Kleikamp 	/*
3973ac27a0ecSDave Kleikamp 	 * NOTE! The in-memory inode i_data array is in little-endian order
3974ac27a0ecSDave Kleikamp 	 * even on big-endian machines: we do NOT byteswap the block numbers!
3975ac27a0ecSDave Kleikamp 	 */
3976617ba13bSMingming Cao 	for (block = 0; block < EXT4_N_BLOCKS; block++)
3977ac27a0ecSDave Kleikamp 		ei->i_data[block] = raw_inode->i_block[block];
3978ac27a0ecSDave Kleikamp 	INIT_LIST_HEAD(&ei->i_orphan);
3979ac27a0ecSDave Kleikamp 
3980b436b9beSJan Kara 	/*
3981b436b9beSJan Kara 	 * Set transaction id's of transactions that have to be committed
3982b436b9beSJan Kara 	 * to finish f[data]sync. We set them to currently running transaction
3983b436b9beSJan Kara 	 * as we cannot be sure that the inode or some of its metadata isn't
3984b436b9beSJan Kara 	 * part of the transaction - the inode could have been reclaimed and
3985b436b9beSJan Kara 	 * now it is reread from disk.
3986b436b9beSJan Kara 	 */
3987b436b9beSJan Kara 	if (journal) {
3988b436b9beSJan Kara 		transaction_t *transaction;
3989b436b9beSJan Kara 		tid_t tid;
3990b436b9beSJan Kara 
3991a931da6aSTheodore Ts'o 		read_lock(&journal->j_state_lock);
3992b436b9beSJan Kara 		if (journal->j_running_transaction)
3993b436b9beSJan Kara 			transaction = journal->j_running_transaction;
3994b436b9beSJan Kara 		else
3995b436b9beSJan Kara 			transaction = journal->j_committing_transaction;
3996b436b9beSJan Kara 		if (transaction)
3997b436b9beSJan Kara 			tid = transaction->t_tid;
3998b436b9beSJan Kara 		else
3999b436b9beSJan Kara 			tid = journal->j_commit_sequence;
4000a931da6aSTheodore Ts'o 		read_unlock(&journal->j_state_lock);
4001b436b9beSJan Kara 		ei->i_sync_tid = tid;
4002b436b9beSJan Kara 		ei->i_datasync_tid = tid;
4003b436b9beSJan Kara 	}
4004b436b9beSJan Kara 
40050040d987SEric Sandeen 	if (EXT4_INODE_SIZE(inode->i_sb) > EXT4_GOOD_OLD_INODE_SIZE) {
4006ac27a0ecSDave Kleikamp 		if (ei->i_extra_isize == 0) {
4007ac27a0ecSDave Kleikamp 			/* The extra space is currently unused. Use it. */
4008617ba13bSMingming Cao 			ei->i_extra_isize = sizeof(struct ext4_inode) -
4009617ba13bSMingming Cao 					    EXT4_GOOD_OLD_INODE_SIZE;
4010ac27a0ecSDave Kleikamp 		} else {
4011152a7b0aSTao Ma 			ext4_iget_extra_inode(inode, raw_inode, ei);
4012ac27a0ecSDave Kleikamp 		}
4013814525f4SDarrick J. Wong 	}
4014ac27a0ecSDave Kleikamp 
4015ef7f3835SKalpak Shah 	EXT4_INODE_GET_XTIME(i_ctime, inode, raw_inode);
4016ef7f3835SKalpak Shah 	EXT4_INODE_GET_XTIME(i_mtime, inode, raw_inode);
4017ef7f3835SKalpak Shah 	EXT4_INODE_GET_XTIME(i_atime, inode, raw_inode);
4018ef7f3835SKalpak Shah 	EXT4_EINODE_GET_XTIME(i_crtime, ei, raw_inode);
4019ef7f3835SKalpak Shah 
4020ed3654ebSTheodore Ts'o 	if (likely(!test_opt2(inode->i_sb, HURD_COMPAT))) {
402125ec56b5SJean Noel Cordenner 		inode->i_version = le32_to_cpu(raw_inode->i_disk_version);
402225ec56b5SJean Noel Cordenner 		if (EXT4_INODE_SIZE(inode->i_sb) > EXT4_GOOD_OLD_INODE_SIZE) {
402325ec56b5SJean Noel Cordenner 			if (EXT4_FITS_IN_INODE(raw_inode, ei, i_version_hi))
402425ec56b5SJean Noel Cordenner 				inode->i_version |=
402525ec56b5SJean Noel Cordenner 		    (__u64)(le32_to_cpu(raw_inode->i_version_hi)) << 32;
402625ec56b5SJean Noel Cordenner 		}
4027c4f65706STheodore Ts'o 	}
402825ec56b5SJean Noel Cordenner 
4029c4b5a614STheodore Ts'o 	ret = 0;
4030485c26ecSTheodore Ts'o 	if (ei->i_file_acl &&
40311032988cSTheodore Ts'o 	    !ext4_data_block_valid(EXT4_SB(sb), ei->i_file_acl, 1)) {
403224676da4STheodore Ts'o 		EXT4_ERROR_INODE(inode, "bad extended attribute block %llu",
403324676da4STheodore Ts'o 				 ei->i_file_acl);
4034485c26ecSTheodore Ts'o 		ret = -EIO;
4035485c26ecSTheodore Ts'o 		goto bad_inode;
4036f19d5870STao Ma 	} else if (!ext4_has_inline_data(inode)) {
4037f19d5870STao Ma 		if (ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS)) {
4038f19d5870STao Ma 			if ((S_ISREG(inode->i_mode) || S_ISDIR(inode->i_mode) ||
4039c4b5a614STheodore Ts'o 			    (S_ISLNK(inode->i_mode) &&
4040f19d5870STao Ma 			     !ext4_inode_is_fast_symlink(inode))))
40417a262f7cSAneesh Kumar K.V 				/* Validate extent which is part of inode */
40427a262f7cSAneesh Kumar K.V 				ret = ext4_ext_check_inode(inode);
4043fe2c8191SThiemo Nagel 		} else if (S_ISREG(inode->i_mode) || S_ISDIR(inode->i_mode) ||
4044fe2c8191SThiemo Nagel 			   (S_ISLNK(inode->i_mode) &&
4045fe2c8191SThiemo Nagel 			    !ext4_inode_is_fast_symlink(inode))) {
4046fe2c8191SThiemo Nagel 			/* Validate block references which are part of inode */
40471f7d1e77STheodore Ts'o 			ret = ext4_ind_check_inode(inode);
4048fe2c8191SThiemo Nagel 		}
4049f19d5870STao Ma 	}
4050567f3e9aSTheodore Ts'o 	if (ret)
40517a262f7cSAneesh Kumar K.V 		goto bad_inode;
40527a262f7cSAneesh Kumar K.V 
4053ac27a0ecSDave Kleikamp 	if (S_ISREG(inode->i_mode)) {
4054617ba13bSMingming Cao 		inode->i_op = &ext4_file_inode_operations;
4055617ba13bSMingming Cao 		inode->i_fop = &ext4_file_operations;
4056617ba13bSMingming Cao 		ext4_set_aops(inode);
4057ac27a0ecSDave Kleikamp 	} else if (S_ISDIR(inode->i_mode)) {
4058617ba13bSMingming Cao 		inode->i_op = &ext4_dir_inode_operations;
4059617ba13bSMingming Cao 		inode->i_fop = &ext4_dir_operations;
4060ac27a0ecSDave Kleikamp 	} else if (S_ISLNK(inode->i_mode)) {
4061e83c1397SDuane Griffin 		if (ext4_inode_is_fast_symlink(inode)) {
4062617ba13bSMingming Cao 			inode->i_op = &ext4_fast_symlink_inode_operations;
4063e83c1397SDuane Griffin 			nd_terminate_link(ei->i_data, inode->i_size,
4064e83c1397SDuane Griffin 				sizeof(ei->i_data) - 1);
4065e83c1397SDuane Griffin 		} else {
4066617ba13bSMingming Cao 			inode->i_op = &ext4_symlink_inode_operations;
4067617ba13bSMingming Cao 			ext4_set_aops(inode);
4068ac27a0ecSDave Kleikamp 		}
4069563bdd61STheodore Ts'o 	} else if (S_ISCHR(inode->i_mode) || S_ISBLK(inode->i_mode) ||
4070563bdd61STheodore Ts'o 	      S_ISFIFO(inode->i_mode) || S_ISSOCK(inode->i_mode)) {
4071617ba13bSMingming Cao 		inode->i_op = &ext4_special_inode_operations;
4072ac27a0ecSDave Kleikamp 		if (raw_inode->i_block[0])
4073ac27a0ecSDave Kleikamp 			init_special_inode(inode, inode->i_mode,
4074ac27a0ecSDave Kleikamp 			   old_decode_dev(le32_to_cpu(raw_inode->i_block[0])));
4075ac27a0ecSDave Kleikamp 		else
4076ac27a0ecSDave Kleikamp 			init_special_inode(inode, inode->i_mode,
4077ac27a0ecSDave Kleikamp 			   new_decode_dev(le32_to_cpu(raw_inode->i_block[1])));
4078393d1d1dSDr. Tilmann Bubeck 	} else if (ino == EXT4_BOOT_LOADER_INO) {
4079393d1d1dSDr. Tilmann Bubeck 		make_bad_inode(inode);
4080563bdd61STheodore Ts'o 	} else {
4081563bdd61STheodore Ts'o 		ret = -EIO;
408224676da4STheodore Ts'o 		EXT4_ERROR_INODE(inode, "bogus i_mode (%o)", inode->i_mode);
4083563bdd61STheodore Ts'o 		goto bad_inode;
4084ac27a0ecSDave Kleikamp 	}
4085ac27a0ecSDave Kleikamp 	brelse(iloc.bh);
4086617ba13bSMingming Cao 	ext4_set_inode_flags(inode);
40871d1fe1eeSDavid Howells 	unlock_new_inode(inode);
40881d1fe1eeSDavid Howells 	return inode;
4089ac27a0ecSDave Kleikamp 
4090ac27a0ecSDave Kleikamp bad_inode:
4091567f3e9aSTheodore Ts'o 	brelse(iloc.bh);
40921d1fe1eeSDavid Howells 	iget_failed(inode);
40931d1fe1eeSDavid Howells 	return ERR_PTR(ret);
4094ac27a0ecSDave Kleikamp }
4095ac27a0ecSDave Kleikamp 
4096f4bb2981STheodore Ts'o struct inode *ext4_iget_normal(struct super_block *sb, unsigned long ino)
4097f4bb2981STheodore Ts'o {
4098f4bb2981STheodore Ts'o 	if (ino < EXT4_FIRST_INO(sb) && ino != EXT4_ROOT_INO)
4099f4bb2981STheodore Ts'o 		return ERR_PTR(-EIO);
4100f4bb2981STheodore Ts'o 	return ext4_iget(sb, ino);
4101f4bb2981STheodore Ts'o }
4102f4bb2981STheodore Ts'o 
41030fc1b451SAneesh Kumar K.V static int ext4_inode_blocks_set(handle_t *handle,
41040fc1b451SAneesh Kumar K.V 				struct ext4_inode *raw_inode,
41050fc1b451SAneesh Kumar K.V 				struct ext4_inode_info *ei)
41060fc1b451SAneesh Kumar K.V {
41070fc1b451SAneesh Kumar K.V 	struct inode *inode = &(ei->vfs_inode);
41080fc1b451SAneesh Kumar K.V 	u64 i_blocks = inode->i_blocks;
41090fc1b451SAneesh Kumar K.V 	struct super_block *sb = inode->i_sb;
41100fc1b451SAneesh Kumar K.V 
41110fc1b451SAneesh Kumar K.V 	if (i_blocks <= ~0U) {
41120fc1b451SAneesh Kumar K.V 		/*
41134907cb7bSAnatol Pomozov 		 * i_blocks can be represented in a 32 bit variable
41140fc1b451SAneesh Kumar K.V 		 * as multiple of 512 bytes
41150fc1b451SAneesh Kumar K.V 		 */
41168180a562SAneesh Kumar K.V 		raw_inode->i_blocks_lo   = cpu_to_le32(i_blocks);
41170fc1b451SAneesh Kumar K.V 		raw_inode->i_blocks_high = 0;
411884a8dce2SDmitry Monakhov 		ext4_clear_inode_flag(inode, EXT4_INODE_HUGE_FILE);
4119f287a1a5STheodore Ts'o 		return 0;
4120f287a1a5STheodore Ts'o 	}
4121f287a1a5STheodore Ts'o 	if (!EXT4_HAS_RO_COMPAT_FEATURE(sb, EXT4_FEATURE_RO_COMPAT_HUGE_FILE))
4122f287a1a5STheodore Ts'o 		return -EFBIG;
4123f287a1a5STheodore Ts'o 
4124f287a1a5STheodore Ts'o 	if (i_blocks <= 0xffffffffffffULL) {
41250fc1b451SAneesh Kumar K.V 		/*
41260fc1b451SAneesh Kumar K.V 		 * i_blocks can be represented in a 48 bit variable
41270fc1b451SAneesh Kumar K.V 		 * as multiple of 512 bytes
41280fc1b451SAneesh Kumar K.V 		 */
41298180a562SAneesh Kumar K.V 		raw_inode->i_blocks_lo   = cpu_to_le32(i_blocks);
41300fc1b451SAneesh Kumar K.V 		raw_inode->i_blocks_high = cpu_to_le16(i_blocks >> 32);
413184a8dce2SDmitry Monakhov 		ext4_clear_inode_flag(inode, EXT4_INODE_HUGE_FILE);
41320fc1b451SAneesh Kumar K.V 	} else {
413384a8dce2SDmitry Monakhov 		ext4_set_inode_flag(inode, EXT4_INODE_HUGE_FILE);
41348180a562SAneesh Kumar K.V 		/* i_block is stored in file system block size */
41358180a562SAneesh Kumar K.V 		i_blocks = i_blocks >> (inode->i_blkbits - 9);
41368180a562SAneesh Kumar K.V 		raw_inode->i_blocks_lo   = cpu_to_le32(i_blocks);
41378180a562SAneesh Kumar K.V 		raw_inode->i_blocks_high = cpu_to_le16(i_blocks >> 32);
41380fc1b451SAneesh Kumar K.V 	}
4139f287a1a5STheodore Ts'o 	return 0;
41400fc1b451SAneesh Kumar K.V }
41410fc1b451SAneesh Kumar K.V 
4142ac27a0ecSDave Kleikamp /*
4143ac27a0ecSDave Kleikamp  * Post the struct inode info into an on-disk inode location in the
4144ac27a0ecSDave Kleikamp  * buffer-cache.  This gobbles the caller's reference to the
4145ac27a0ecSDave Kleikamp  * buffer_head in the inode location struct.
4146ac27a0ecSDave Kleikamp  *
4147ac27a0ecSDave Kleikamp  * The caller must have write access to iloc->bh.
4148ac27a0ecSDave Kleikamp  */
4149617ba13bSMingming Cao static int ext4_do_update_inode(handle_t *handle,
4150ac27a0ecSDave Kleikamp 				struct inode *inode,
4151830156c7SFrank Mayhar 				struct ext4_iloc *iloc)
4152ac27a0ecSDave Kleikamp {
4153617ba13bSMingming Cao 	struct ext4_inode *raw_inode = ext4_raw_inode(iloc);
4154617ba13bSMingming Cao 	struct ext4_inode_info *ei = EXT4_I(inode);
4155ac27a0ecSDave Kleikamp 	struct buffer_head *bh = iloc->bh;
4156202ee5dfSTheodore Ts'o 	struct super_block *sb = inode->i_sb;
4157ac27a0ecSDave Kleikamp 	int err = 0, rc, block;
4158202ee5dfSTheodore Ts'o 	int need_datasync = 0, set_large_file = 0;
415908cefc7aSEric W. Biederman 	uid_t i_uid;
416008cefc7aSEric W. Biederman 	gid_t i_gid;
4161ac27a0ecSDave Kleikamp 
4162202ee5dfSTheodore Ts'o 	spin_lock(&ei->i_raw_lock);
4163202ee5dfSTheodore Ts'o 
4164202ee5dfSTheodore Ts'o 	/* For fields not tracked in the in-memory inode,
4165ac27a0ecSDave Kleikamp 	 * initialise them to zero for new inodes. */
416619f5fb7aSTheodore Ts'o 	if (ext4_test_inode_state(inode, EXT4_STATE_NEW))
4167617ba13bSMingming Cao 		memset(raw_inode, 0, EXT4_SB(inode->i_sb)->s_inode_size);
4168ac27a0ecSDave Kleikamp 
4169ff9ddf7eSJan Kara 	ext4_get_inode_flags(ei);
4170ac27a0ecSDave Kleikamp 	raw_inode->i_mode = cpu_to_le16(inode->i_mode);
417108cefc7aSEric W. Biederman 	i_uid = i_uid_read(inode);
417208cefc7aSEric W. Biederman 	i_gid = i_gid_read(inode);
4173ac27a0ecSDave Kleikamp 	if (!(test_opt(inode->i_sb, NO_UID32))) {
417408cefc7aSEric W. Biederman 		raw_inode->i_uid_low = cpu_to_le16(low_16_bits(i_uid));
417508cefc7aSEric W. Biederman 		raw_inode->i_gid_low = cpu_to_le16(low_16_bits(i_gid));
4176ac27a0ecSDave Kleikamp /*
4177ac27a0ecSDave Kleikamp  * Fix up interoperability with old kernels. Otherwise, old inodes get
4178ac27a0ecSDave Kleikamp  * re-used with the upper 16 bits of the uid/gid intact
4179ac27a0ecSDave Kleikamp  */
4180ac27a0ecSDave Kleikamp 		if (!ei->i_dtime) {
4181ac27a0ecSDave Kleikamp 			raw_inode->i_uid_high =
418208cefc7aSEric W. Biederman 				cpu_to_le16(high_16_bits(i_uid));
4183ac27a0ecSDave Kleikamp 			raw_inode->i_gid_high =
418408cefc7aSEric W. Biederman 				cpu_to_le16(high_16_bits(i_gid));
4185ac27a0ecSDave Kleikamp 		} else {
4186ac27a0ecSDave Kleikamp 			raw_inode->i_uid_high = 0;
4187ac27a0ecSDave Kleikamp 			raw_inode->i_gid_high = 0;
4188ac27a0ecSDave Kleikamp 		}
4189ac27a0ecSDave Kleikamp 	} else {
419008cefc7aSEric W. Biederman 		raw_inode->i_uid_low = cpu_to_le16(fs_high2lowuid(i_uid));
419108cefc7aSEric W. Biederman 		raw_inode->i_gid_low = cpu_to_le16(fs_high2lowgid(i_gid));
4192ac27a0ecSDave Kleikamp 		raw_inode->i_uid_high = 0;
4193ac27a0ecSDave Kleikamp 		raw_inode->i_gid_high = 0;
4194ac27a0ecSDave Kleikamp 	}
4195ac27a0ecSDave Kleikamp 	raw_inode->i_links_count = cpu_to_le16(inode->i_nlink);
4196ef7f3835SKalpak Shah 
4197ef7f3835SKalpak Shah 	EXT4_INODE_SET_XTIME(i_ctime, inode, raw_inode);
4198ef7f3835SKalpak Shah 	EXT4_INODE_SET_XTIME(i_mtime, inode, raw_inode);
4199ef7f3835SKalpak Shah 	EXT4_INODE_SET_XTIME(i_atime, inode, raw_inode);
4200ef7f3835SKalpak Shah 	EXT4_EINODE_SET_XTIME(i_crtime, ei, raw_inode);
4201ef7f3835SKalpak Shah 
4202bce92d56SLi Xi 	err = ext4_inode_blocks_set(handle, raw_inode, ei);
4203bce92d56SLi Xi 	if (err) {
4204202ee5dfSTheodore Ts'o 		spin_unlock(&ei->i_raw_lock);
42050fc1b451SAneesh Kumar K.V 		goto out_brelse;
4206202ee5dfSTheodore Ts'o 	}
4207ac27a0ecSDave Kleikamp 	raw_inode->i_dtime = cpu_to_le32(ei->i_dtime);
4208353eb83cSTheodore Ts'o 	raw_inode->i_flags = cpu_to_le32(ei->i_flags & 0xFFFFFFFF);
4209ed3654ebSTheodore Ts'o 	if (likely(!test_opt2(inode->i_sb, HURD_COMPAT)))
4210a1ddeb7eSBadari Pulavarty 		raw_inode->i_file_acl_high =
4211a1ddeb7eSBadari Pulavarty 			cpu_to_le16(ei->i_file_acl >> 32);
42127973c0c1SAneesh Kumar K.V 	raw_inode->i_file_acl_lo = cpu_to_le32(ei->i_file_acl);
4213b71fc079SJan Kara 	if (ei->i_disksize != ext4_isize(raw_inode)) {
4214a48380f7SAneesh Kumar K.V 		ext4_isize_set(raw_inode, ei->i_disksize);
4215b71fc079SJan Kara 		need_datasync = 1;
4216b71fc079SJan Kara 	}
4217ac27a0ecSDave Kleikamp 	if (ei->i_disksize > 0x7fffffffULL) {
4218617ba13bSMingming Cao 		if (!EXT4_HAS_RO_COMPAT_FEATURE(sb,
4219617ba13bSMingming Cao 				EXT4_FEATURE_RO_COMPAT_LARGE_FILE) ||
4220617ba13bSMingming Cao 				EXT4_SB(sb)->s_es->s_rev_level ==
4221202ee5dfSTheodore Ts'o 		    cpu_to_le32(EXT4_GOOD_OLD_REV))
4222202ee5dfSTheodore Ts'o 			set_large_file = 1;
4223ac27a0ecSDave Kleikamp 	}
4224ac27a0ecSDave Kleikamp 	raw_inode->i_generation = cpu_to_le32(inode->i_generation);
4225ac27a0ecSDave Kleikamp 	if (S_ISCHR(inode->i_mode) || S_ISBLK(inode->i_mode)) {
4226ac27a0ecSDave Kleikamp 		if (old_valid_dev(inode->i_rdev)) {
4227ac27a0ecSDave Kleikamp 			raw_inode->i_block[0] =
4228ac27a0ecSDave Kleikamp 				cpu_to_le32(old_encode_dev(inode->i_rdev));
4229ac27a0ecSDave Kleikamp 			raw_inode->i_block[1] = 0;
4230ac27a0ecSDave Kleikamp 		} else {
4231ac27a0ecSDave Kleikamp 			raw_inode->i_block[0] = 0;
4232ac27a0ecSDave Kleikamp 			raw_inode->i_block[1] =
4233ac27a0ecSDave Kleikamp 				cpu_to_le32(new_encode_dev(inode->i_rdev));
4234ac27a0ecSDave Kleikamp 			raw_inode->i_block[2] = 0;
4235ac27a0ecSDave Kleikamp 		}
4236f19d5870STao Ma 	} else if (!ext4_has_inline_data(inode)) {
4237de9a55b8STheodore Ts'o 		for (block = 0; block < EXT4_N_BLOCKS; block++)
4238ac27a0ecSDave Kleikamp 			raw_inode->i_block[block] = ei->i_data[block];
4239f19d5870STao Ma 	}
4240ac27a0ecSDave Kleikamp 
4241ed3654ebSTheodore Ts'o 	if (likely(!test_opt2(inode->i_sb, HURD_COMPAT))) {
424225ec56b5SJean Noel Cordenner 		raw_inode->i_disk_version = cpu_to_le32(inode->i_version);
424325ec56b5SJean Noel Cordenner 		if (ei->i_extra_isize) {
424425ec56b5SJean Noel Cordenner 			if (EXT4_FITS_IN_INODE(raw_inode, ei, i_version_hi))
424525ec56b5SJean Noel Cordenner 				raw_inode->i_version_hi =
424625ec56b5SJean Noel Cordenner 					cpu_to_le32(inode->i_version >> 32);
4247c4f65706STheodore Ts'o 			raw_inode->i_extra_isize =
4248c4f65706STheodore Ts'o 				cpu_to_le16(ei->i_extra_isize);
4249c4f65706STheodore Ts'o 		}
425025ec56b5SJean Noel Cordenner 	}
425125ec56b5SJean Noel Cordenner 
4252814525f4SDarrick J. Wong 	ext4_inode_csum_set(inode, raw_inode, ei);
4253814525f4SDarrick J. Wong 
4254202ee5dfSTheodore Ts'o 	spin_unlock(&ei->i_raw_lock);
4255202ee5dfSTheodore Ts'o 
42560390131bSFrank Mayhar 	BUFFER_TRACE(bh, "call ext4_handle_dirty_metadata");
425773b50c1cSCurt Wohlgemuth 	rc = ext4_handle_dirty_metadata(handle, NULL, bh);
4258ac27a0ecSDave Kleikamp 	if (!err)
4259ac27a0ecSDave Kleikamp 		err = rc;
426019f5fb7aSTheodore Ts'o 	ext4_clear_inode_state(inode, EXT4_STATE_NEW);
4261202ee5dfSTheodore Ts'o 	if (set_large_file) {
42625d601255Sliang xie 		BUFFER_TRACE(EXT4_SB(sb)->s_sbh, "get write access");
4263202ee5dfSTheodore Ts'o 		err = ext4_journal_get_write_access(handle, EXT4_SB(sb)->s_sbh);
4264202ee5dfSTheodore Ts'o 		if (err)
4265202ee5dfSTheodore Ts'o 			goto out_brelse;
4266202ee5dfSTheodore Ts'o 		ext4_update_dynamic_rev(sb);
4267202ee5dfSTheodore Ts'o 		EXT4_SET_RO_COMPAT_FEATURE(sb,
4268202ee5dfSTheodore Ts'o 					   EXT4_FEATURE_RO_COMPAT_LARGE_FILE);
4269202ee5dfSTheodore Ts'o 		ext4_handle_sync(handle);
4270202ee5dfSTheodore Ts'o 		err = ext4_handle_dirty_super(handle, sb);
4271202ee5dfSTheodore Ts'o 	}
4272b71fc079SJan Kara 	ext4_update_inode_fsync_trans(handle, inode, need_datasync);
4273ac27a0ecSDave Kleikamp out_brelse:
4274ac27a0ecSDave Kleikamp 	brelse(bh);
4275617ba13bSMingming Cao 	ext4_std_error(inode->i_sb, err);
4276ac27a0ecSDave Kleikamp 	return err;
4277ac27a0ecSDave Kleikamp }
4278ac27a0ecSDave Kleikamp 
4279ac27a0ecSDave Kleikamp /*
4280617ba13bSMingming Cao  * ext4_write_inode()
4281ac27a0ecSDave Kleikamp  *
4282ac27a0ecSDave Kleikamp  * We are called from a few places:
4283ac27a0ecSDave Kleikamp  *
428487f7e416STheodore Ts'o  * - Within generic_file_aio_write() -> generic_write_sync() for O_SYNC files.
4285ac27a0ecSDave Kleikamp  *   Here, there will be no transaction running. We wait for any running
42864907cb7bSAnatol Pomozov  *   transaction to commit.
4287ac27a0ecSDave Kleikamp  *
428887f7e416STheodore Ts'o  * - Within flush work (sys_sync(), kupdate and such).
428987f7e416STheodore Ts'o  *   We wait on commit, if told to.
4290ac27a0ecSDave Kleikamp  *
429187f7e416STheodore Ts'o  * - Within iput_final() -> write_inode_now()
429287f7e416STheodore Ts'o  *   We wait on commit, if told to.
4293ac27a0ecSDave Kleikamp  *
4294ac27a0ecSDave Kleikamp  * In all cases it is actually safe for us to return without doing anything,
4295ac27a0ecSDave Kleikamp  * because the inode has been copied into a raw inode buffer in
429687f7e416STheodore Ts'o  * ext4_mark_inode_dirty().  This is a correctness thing for WB_SYNC_ALL
429787f7e416STheodore Ts'o  * writeback.
4298ac27a0ecSDave Kleikamp  *
4299ac27a0ecSDave Kleikamp  * Note that we are absolutely dependent upon all inode dirtiers doing the
4300ac27a0ecSDave Kleikamp  * right thing: they *must* call mark_inode_dirty() after dirtying info in
4301ac27a0ecSDave Kleikamp  * which we are interested.
4302ac27a0ecSDave Kleikamp  *
4303ac27a0ecSDave Kleikamp  * It would be a bug for them to not do this.  The code:
4304ac27a0ecSDave Kleikamp  *
4305ac27a0ecSDave Kleikamp  *	mark_inode_dirty(inode)
4306ac27a0ecSDave Kleikamp  *	stuff();
4307ac27a0ecSDave Kleikamp  *	inode->i_size = expr;
4308ac27a0ecSDave Kleikamp  *
430987f7e416STheodore Ts'o  * is in error because write_inode() could occur while `stuff()' is running,
431087f7e416STheodore Ts'o  * and the new i_size will be lost.  Plus the inode will no longer be on the
431187f7e416STheodore Ts'o  * superblock's dirty inode list.
4312ac27a0ecSDave Kleikamp  */
4313a9185b41SChristoph Hellwig int ext4_write_inode(struct inode *inode, struct writeback_control *wbc)
4314ac27a0ecSDave Kleikamp {
431591ac6f43SFrank Mayhar 	int err;
431691ac6f43SFrank Mayhar 
431787f7e416STheodore Ts'o 	if (WARN_ON_ONCE(current->flags & PF_MEMALLOC))
4318ac27a0ecSDave Kleikamp 		return 0;
4319ac27a0ecSDave Kleikamp 
432091ac6f43SFrank Mayhar 	if (EXT4_SB(inode->i_sb)->s_journal) {
4321617ba13bSMingming Cao 		if (ext4_journal_current_handle()) {
4322b38bd33aSMingming Cao 			jbd_debug(1, "called recursively, non-PF_MEMALLOC!\n");
4323ac27a0ecSDave Kleikamp 			dump_stack();
4324ac27a0ecSDave Kleikamp 			return -EIO;
4325ac27a0ecSDave Kleikamp 		}
4326ac27a0ecSDave Kleikamp 
432710542c22SJan Kara 		/*
432810542c22SJan Kara 		 * No need to force transaction in WB_SYNC_NONE mode. Also
432910542c22SJan Kara 		 * ext4_sync_fs() will force the commit after everything is
433010542c22SJan Kara 		 * written.
433110542c22SJan Kara 		 */
433210542c22SJan Kara 		if (wbc->sync_mode != WB_SYNC_ALL || wbc->for_sync)
4333ac27a0ecSDave Kleikamp 			return 0;
4334ac27a0ecSDave Kleikamp 
433591ac6f43SFrank Mayhar 		err = ext4_force_commit(inode->i_sb);
433691ac6f43SFrank Mayhar 	} else {
433791ac6f43SFrank Mayhar 		struct ext4_iloc iloc;
433891ac6f43SFrank Mayhar 
43398b472d73SCurt Wohlgemuth 		err = __ext4_get_inode_loc(inode, &iloc, 0);
434091ac6f43SFrank Mayhar 		if (err)
434191ac6f43SFrank Mayhar 			return err;
434210542c22SJan Kara 		/*
434310542c22SJan Kara 		 * sync(2) will flush the whole buffer cache. No need to do
434410542c22SJan Kara 		 * it here separately for each inode.
434510542c22SJan Kara 		 */
434610542c22SJan Kara 		if (wbc->sync_mode == WB_SYNC_ALL && !wbc->for_sync)
4347830156c7SFrank Mayhar 			sync_dirty_buffer(iloc.bh);
4348830156c7SFrank Mayhar 		if (buffer_req(iloc.bh) && !buffer_uptodate(iloc.bh)) {
4349c398eda0STheodore Ts'o 			EXT4_ERROR_INODE_BLOCK(inode, iloc.bh->b_blocknr,
4350c398eda0STheodore Ts'o 					 "IO error syncing inode");
4351830156c7SFrank Mayhar 			err = -EIO;
4352830156c7SFrank Mayhar 		}
4353fd2dd9fbSCurt Wohlgemuth 		brelse(iloc.bh);
435491ac6f43SFrank Mayhar 	}
435591ac6f43SFrank Mayhar 	return err;
4356ac27a0ecSDave Kleikamp }
4357ac27a0ecSDave Kleikamp 
4358ac27a0ecSDave Kleikamp /*
435953e87268SJan Kara  * In data=journal mode ext4_journalled_invalidatepage() may fail to invalidate
436053e87268SJan Kara  * buffers that are attached to a page stradding i_size and are undergoing
436153e87268SJan Kara  * commit. In that case we have to wait for commit to finish and try again.
436253e87268SJan Kara  */
436353e87268SJan Kara static void ext4_wait_for_tail_page_commit(struct inode *inode)
436453e87268SJan Kara {
436553e87268SJan Kara 	struct page *page;
436653e87268SJan Kara 	unsigned offset;
436753e87268SJan Kara 	journal_t *journal = EXT4_SB(inode->i_sb)->s_journal;
436853e87268SJan Kara 	tid_t commit_tid = 0;
436953e87268SJan Kara 	int ret;
437053e87268SJan Kara 
437153e87268SJan Kara 	offset = inode->i_size & (PAGE_CACHE_SIZE - 1);
437253e87268SJan Kara 	/*
437353e87268SJan Kara 	 * All buffers in the last page remain valid? Then there's nothing to
437453e87268SJan Kara 	 * do. We do the check mainly to optimize the common PAGE_CACHE_SIZE ==
437553e87268SJan Kara 	 * blocksize case
437653e87268SJan Kara 	 */
437753e87268SJan Kara 	if (offset > PAGE_CACHE_SIZE - (1 << inode->i_blkbits))
437853e87268SJan Kara 		return;
437953e87268SJan Kara 	while (1) {
438053e87268SJan Kara 		page = find_lock_page(inode->i_mapping,
438153e87268SJan Kara 				      inode->i_size >> PAGE_CACHE_SHIFT);
438253e87268SJan Kara 		if (!page)
438353e87268SJan Kara 			return;
4384ca99fdd2SLukas Czerner 		ret = __ext4_journalled_invalidatepage(page, offset,
4385ca99fdd2SLukas Czerner 						PAGE_CACHE_SIZE - offset);
438653e87268SJan Kara 		unlock_page(page);
438753e87268SJan Kara 		page_cache_release(page);
438853e87268SJan Kara 		if (ret != -EBUSY)
438953e87268SJan Kara 			return;
439053e87268SJan Kara 		commit_tid = 0;
439153e87268SJan Kara 		read_lock(&journal->j_state_lock);
439253e87268SJan Kara 		if (journal->j_committing_transaction)
439353e87268SJan Kara 			commit_tid = journal->j_committing_transaction->t_tid;
439453e87268SJan Kara 		read_unlock(&journal->j_state_lock);
439553e87268SJan Kara 		if (commit_tid)
439653e87268SJan Kara 			jbd2_log_wait_commit(journal, commit_tid);
439753e87268SJan Kara 	}
439853e87268SJan Kara }
439953e87268SJan Kara 
440053e87268SJan Kara /*
4401617ba13bSMingming Cao  * ext4_setattr()
4402ac27a0ecSDave Kleikamp  *
4403ac27a0ecSDave Kleikamp  * Called from notify_change.
4404ac27a0ecSDave Kleikamp  *
4405ac27a0ecSDave Kleikamp  * We want to trap VFS attempts to truncate the file as soon as
4406ac27a0ecSDave Kleikamp  * possible.  In particular, we want to make sure that when the VFS
4407ac27a0ecSDave Kleikamp  * shrinks i_size, we put the inode on the orphan list and modify
4408ac27a0ecSDave Kleikamp  * i_disksize immediately, so that during the subsequent flushing of
4409ac27a0ecSDave Kleikamp  * dirty pages and freeing of disk blocks, we can guarantee that any
4410ac27a0ecSDave Kleikamp  * commit will leave the blocks being flushed in an unused state on
4411ac27a0ecSDave Kleikamp  * disk.  (On recovery, the inode will get truncated and the blocks will
4412ac27a0ecSDave Kleikamp  * be freed, so we have a strong guarantee that no future commit will
4413ac27a0ecSDave Kleikamp  * leave these blocks visible to the user.)
4414ac27a0ecSDave Kleikamp  *
4415678aaf48SJan Kara  * Another thing we have to assure is that if we are in ordered mode
4416678aaf48SJan Kara  * and inode is still attached to the committing transaction, we must
4417678aaf48SJan Kara  * we start writeout of all the dirty pages which are being truncated.
4418678aaf48SJan Kara  * This way we are sure that all the data written in the previous
4419678aaf48SJan Kara  * transaction are already on disk (truncate waits for pages under
4420678aaf48SJan Kara  * writeback).
4421678aaf48SJan Kara  *
4422678aaf48SJan Kara  * Called with inode->i_mutex down.
4423ac27a0ecSDave Kleikamp  */
4424617ba13bSMingming Cao int ext4_setattr(struct dentry *dentry, struct iattr *attr)
4425ac27a0ecSDave Kleikamp {
4426ac27a0ecSDave Kleikamp 	struct inode *inode = dentry->d_inode;
4427ac27a0ecSDave Kleikamp 	int error, rc = 0;
44283d287de3SDmitry Monakhov 	int orphan = 0;
4429ac27a0ecSDave Kleikamp 	const unsigned int ia_valid = attr->ia_valid;
4430ac27a0ecSDave Kleikamp 
4431ac27a0ecSDave Kleikamp 	error = inode_change_ok(inode, attr);
4432ac27a0ecSDave Kleikamp 	if (error)
4433ac27a0ecSDave Kleikamp 		return error;
4434ac27a0ecSDave Kleikamp 
443512755627SDmitry Monakhov 	if (is_quota_modification(inode, attr))
4436871a2931SChristoph Hellwig 		dquot_initialize(inode);
443708cefc7aSEric W. Biederman 	if ((ia_valid & ATTR_UID && !uid_eq(attr->ia_uid, inode->i_uid)) ||
443808cefc7aSEric W. Biederman 	    (ia_valid & ATTR_GID && !gid_eq(attr->ia_gid, inode->i_gid))) {
4439ac27a0ecSDave Kleikamp 		handle_t *handle;
4440ac27a0ecSDave Kleikamp 
4441ac27a0ecSDave Kleikamp 		/* (user+group)*(old+new) structure, inode write (sb,
4442ac27a0ecSDave Kleikamp 		 * inode block, ? - but truncate inode update has it) */
44439924a92aSTheodore Ts'o 		handle = ext4_journal_start(inode, EXT4_HT_QUOTA,
44449924a92aSTheodore Ts'o 			(EXT4_MAXQUOTAS_INIT_BLOCKS(inode->i_sb) +
4445194074acSDmitry Monakhov 			 EXT4_MAXQUOTAS_DEL_BLOCKS(inode->i_sb)) + 3);
4446ac27a0ecSDave Kleikamp 		if (IS_ERR(handle)) {
4447ac27a0ecSDave Kleikamp 			error = PTR_ERR(handle);
4448ac27a0ecSDave Kleikamp 			goto err_out;
4449ac27a0ecSDave Kleikamp 		}
4450b43fa828SChristoph Hellwig 		error = dquot_transfer(inode, attr);
4451ac27a0ecSDave Kleikamp 		if (error) {
4452617ba13bSMingming Cao 			ext4_journal_stop(handle);
4453ac27a0ecSDave Kleikamp 			return error;
4454ac27a0ecSDave Kleikamp 		}
4455ac27a0ecSDave Kleikamp 		/* Update corresponding info in inode so that everything is in
4456ac27a0ecSDave Kleikamp 		 * one transaction */
4457ac27a0ecSDave Kleikamp 		if (attr->ia_valid & ATTR_UID)
4458ac27a0ecSDave Kleikamp 			inode->i_uid = attr->ia_uid;
4459ac27a0ecSDave Kleikamp 		if (attr->ia_valid & ATTR_GID)
4460ac27a0ecSDave Kleikamp 			inode->i_gid = attr->ia_gid;
4461617ba13bSMingming Cao 		error = ext4_mark_inode_dirty(handle, inode);
4462617ba13bSMingming Cao 		ext4_journal_stop(handle);
4463ac27a0ecSDave Kleikamp 	}
4464ac27a0ecSDave Kleikamp 
44655208386cSJan Kara 	if (attr->ia_valid & ATTR_SIZE && attr->ia_size != inode->i_size) {
44665208386cSJan Kara 		handle_t *handle;
4467562c72aaSChristoph Hellwig 
446812e9b892SDmitry Monakhov 		if (!(ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS))) {
4469e2b46574SEric Sandeen 			struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb);
4470e2b46574SEric Sandeen 
44710c095c7fSTheodore Ts'o 			if (attr->ia_size > sbi->s_bitmap_maxbytes)
44720c095c7fSTheodore Ts'o 				return -EFBIG;
4473e2b46574SEric Sandeen 		}
4474dff6efc3SChristoph Hellwig 
4475dff6efc3SChristoph Hellwig 		if (IS_I_VERSION(inode) && attr->ia_size != inode->i_size)
4476dff6efc3SChristoph Hellwig 			inode_inc_iversion(inode);
4477dff6efc3SChristoph Hellwig 
4478ac27a0ecSDave Kleikamp 		if (S_ISREG(inode->i_mode) &&
4479072bd7eaSTheodore Ts'o 		    (attr->ia_size < inode->i_size)) {
44805208386cSJan Kara 			if (ext4_should_order_data(inode)) {
44815208386cSJan Kara 				error = ext4_begin_ordered_truncate(inode,
44825208386cSJan Kara 							    attr->ia_size);
44835208386cSJan Kara 				if (error)
44845208386cSJan Kara 					goto err_out;
44855208386cSJan Kara 			}
44869924a92aSTheodore Ts'o 			handle = ext4_journal_start(inode, EXT4_HT_INODE, 3);
4487ac27a0ecSDave Kleikamp 			if (IS_ERR(handle)) {
4488ac27a0ecSDave Kleikamp 				error = PTR_ERR(handle);
4489ac27a0ecSDave Kleikamp 				goto err_out;
4490ac27a0ecSDave Kleikamp 			}
44913d287de3SDmitry Monakhov 			if (ext4_handle_valid(handle)) {
4492617ba13bSMingming Cao 				error = ext4_orphan_add(handle, inode);
44933d287de3SDmitry Monakhov 				orphan = 1;
44943d287de3SDmitry Monakhov 			}
449590e775b7SJan Kara 			down_write(&EXT4_I(inode)->i_data_sem);
4496617ba13bSMingming Cao 			EXT4_I(inode)->i_disksize = attr->ia_size;
4497617ba13bSMingming Cao 			rc = ext4_mark_inode_dirty(handle, inode);
4498ac27a0ecSDave Kleikamp 			if (!error)
4499ac27a0ecSDave Kleikamp 				error = rc;
450090e775b7SJan Kara 			/*
450190e775b7SJan Kara 			 * We have to update i_size under i_data_sem together
450290e775b7SJan Kara 			 * with i_disksize to avoid races with writeback code
450390e775b7SJan Kara 			 * running ext4_wb_update_i_disksize().
450490e775b7SJan Kara 			 */
450590e775b7SJan Kara 			if (!error)
450690e775b7SJan Kara 				i_size_write(inode, attr->ia_size);
450790e775b7SJan Kara 			up_write(&EXT4_I(inode)->i_data_sem);
4508617ba13bSMingming Cao 			ext4_journal_stop(handle);
4509678aaf48SJan Kara 			if (error) {
4510678aaf48SJan Kara 				ext4_orphan_del(NULL, inode);
4511678aaf48SJan Kara 				goto err_out;
4512678aaf48SJan Kara 			}
4513d6320cbfSJan Kara 		} else {
4514d6320cbfSJan Kara 			loff_t oldsize = inode->i_size;
4515d6320cbfSJan Kara 
451653e87268SJan Kara 			i_size_write(inode, attr->ia_size);
4517d6320cbfSJan Kara 			pagecache_isize_extended(inode, oldsize, inode->i_size);
4518d6320cbfSJan Kara 		}
451990e775b7SJan Kara 
452053e87268SJan Kara 		/*
452153e87268SJan Kara 		 * Blocks are going to be removed from the inode. Wait
452253e87268SJan Kara 		 * for dio in flight.  Temporarily disable
452353e87268SJan Kara 		 * dioread_nolock to prevent livelock.
452453e87268SJan Kara 		 */
45251b65007eSDmitry Monakhov 		if (orphan) {
452653e87268SJan Kara 			if (!ext4_should_journal_data(inode)) {
45271b65007eSDmitry Monakhov 				ext4_inode_block_unlocked_dio(inode);
45281c9114f9SDmitry Monakhov 				inode_dio_wait(inode);
45291b65007eSDmitry Monakhov 				ext4_inode_resume_unlocked_dio(inode);
453053e87268SJan Kara 			} else
453153e87268SJan Kara 				ext4_wait_for_tail_page_commit(inode);
45321b65007eSDmitry Monakhov 		}
453353e87268SJan Kara 		/*
453453e87268SJan Kara 		 * Truncate pagecache after we've waited for commit
453553e87268SJan Kara 		 * in data=journal mode to make pages freeable.
453653e87268SJan Kara 		 */
45377caef267SKirill A. Shutemov 			truncate_pagecache(inode, inode->i_size);
45381c9114f9SDmitry Monakhov 	}
45395208386cSJan Kara 	/*
45405208386cSJan Kara 	 * We want to call ext4_truncate() even if attr->ia_size ==
45415208386cSJan Kara 	 * inode->i_size for cases like truncation of fallocated space
45425208386cSJan Kara 	 */
45435208386cSJan Kara 	if (attr->ia_valid & ATTR_SIZE)
4544072bd7eaSTheodore Ts'o 		ext4_truncate(inode);
4545ac27a0ecSDave Kleikamp 
45461025774cSChristoph Hellwig 	if (!rc) {
45471025774cSChristoph Hellwig 		setattr_copy(inode, attr);
45481025774cSChristoph Hellwig 		mark_inode_dirty(inode);
45491025774cSChristoph Hellwig 	}
45501025774cSChristoph Hellwig 
45511025774cSChristoph Hellwig 	/*
45521025774cSChristoph Hellwig 	 * If the call to ext4_truncate failed to get a transaction handle at
45531025774cSChristoph Hellwig 	 * all, we need to clean up the in-core orphan list manually.
45541025774cSChristoph Hellwig 	 */
45553d287de3SDmitry Monakhov 	if (orphan && inode->i_nlink)
4556617ba13bSMingming Cao 		ext4_orphan_del(NULL, inode);
4557ac27a0ecSDave Kleikamp 
4558ac27a0ecSDave Kleikamp 	if (!rc && (ia_valid & ATTR_MODE))
455964e178a7SChristoph Hellwig 		rc = posix_acl_chmod(inode, inode->i_mode);
4560ac27a0ecSDave Kleikamp 
4561ac27a0ecSDave Kleikamp err_out:
4562617ba13bSMingming Cao 	ext4_std_error(inode->i_sb, error);
4563ac27a0ecSDave Kleikamp 	if (!error)
4564ac27a0ecSDave Kleikamp 		error = rc;
4565ac27a0ecSDave Kleikamp 	return error;
4566ac27a0ecSDave Kleikamp }
4567ac27a0ecSDave Kleikamp 
45683e3398a0SMingming Cao int ext4_getattr(struct vfsmount *mnt, struct dentry *dentry,
45693e3398a0SMingming Cao 		 struct kstat *stat)
45703e3398a0SMingming Cao {
45713e3398a0SMingming Cao 	struct inode *inode;
45728af8eeccSJan Kara 	unsigned long long delalloc_blocks;
45733e3398a0SMingming Cao 
45743e3398a0SMingming Cao 	inode = dentry->d_inode;
45753e3398a0SMingming Cao 	generic_fillattr(inode, stat);
45763e3398a0SMingming Cao 
45773e3398a0SMingming Cao 	/*
45789206c561SAndreas Dilger 	 * If there is inline data in the inode, the inode will normally not
45799206c561SAndreas Dilger 	 * have data blocks allocated (it may have an external xattr block).
45809206c561SAndreas Dilger 	 * Report at least one sector for such files, so tools like tar, rsync,
45819206c561SAndreas Dilger 	 * others doen't incorrectly think the file is completely sparse.
45829206c561SAndreas Dilger 	 */
45839206c561SAndreas Dilger 	if (unlikely(ext4_has_inline_data(inode)))
45849206c561SAndreas Dilger 		stat->blocks += (stat->size + 511) >> 9;
45859206c561SAndreas Dilger 
45869206c561SAndreas Dilger 	/*
45873e3398a0SMingming Cao 	 * We can't update i_blocks if the block allocation is delayed
45883e3398a0SMingming Cao 	 * otherwise in the case of system crash before the real block
45893e3398a0SMingming Cao 	 * allocation is done, we will have i_blocks inconsistent with
45903e3398a0SMingming Cao 	 * on-disk file blocks.
45913e3398a0SMingming Cao 	 * We always keep i_blocks updated together with real
45923e3398a0SMingming Cao 	 * allocation. But to not confuse with user, stat
45933e3398a0SMingming Cao 	 * will return the blocks that include the delayed allocation
45943e3398a0SMingming Cao 	 * blocks for this file.
45953e3398a0SMingming Cao 	 */
459696607551STao Ma 	delalloc_blocks = EXT4_C2B(EXT4_SB(inode->i_sb),
459796607551STao Ma 				   EXT4_I(inode)->i_reserved_data_blocks);
45988af8eeccSJan Kara 	stat->blocks += delalloc_blocks << (inode->i_sb->s_blocksize_bits - 9);
45993e3398a0SMingming Cao 	return 0;
46003e3398a0SMingming Cao }
4601ac27a0ecSDave Kleikamp 
4602fffb2739SJan Kara static int ext4_index_trans_blocks(struct inode *inode, int lblocks,
4603fffb2739SJan Kara 				   int pextents)
4604a02908f1SMingming Cao {
460512e9b892SDmitry Monakhov 	if (!(ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS)))
4606fffb2739SJan Kara 		return ext4_ind_trans_blocks(inode, lblocks);
4607fffb2739SJan Kara 	return ext4_ext_index_trans_blocks(inode, pextents);
4608a02908f1SMingming Cao }
4609ac51d837STheodore Ts'o 
4610a02908f1SMingming Cao /*
4611a02908f1SMingming Cao  * Account for index blocks, block groups bitmaps and block group
4612a02908f1SMingming Cao  * descriptor blocks if modify datablocks and index blocks
4613a02908f1SMingming Cao  * worse case, the indexs blocks spread over different block groups
4614a02908f1SMingming Cao  *
4615a02908f1SMingming Cao  * If datablocks are discontiguous, they are possible to spread over
46164907cb7bSAnatol Pomozov  * different block groups too. If they are contiguous, with flexbg,
4617a02908f1SMingming Cao  * they could still across block group boundary.
4618a02908f1SMingming Cao  *
4619a02908f1SMingming Cao  * Also account for superblock, inode, quota and xattr blocks
4620a02908f1SMingming Cao  */
4621fffb2739SJan Kara static int ext4_meta_trans_blocks(struct inode *inode, int lblocks,
4622fffb2739SJan Kara 				  int pextents)
4623a02908f1SMingming Cao {
46248df9675fSTheodore Ts'o 	ext4_group_t groups, ngroups = ext4_get_groups_count(inode->i_sb);
46258df9675fSTheodore Ts'o 	int gdpblocks;
4626a02908f1SMingming Cao 	int idxblocks;
4627a02908f1SMingming Cao 	int ret = 0;
4628a02908f1SMingming Cao 
4629a02908f1SMingming Cao 	/*
4630fffb2739SJan Kara 	 * How many index blocks need to touch to map @lblocks logical blocks
4631fffb2739SJan Kara 	 * to @pextents physical extents?
4632a02908f1SMingming Cao 	 */
4633fffb2739SJan Kara 	idxblocks = ext4_index_trans_blocks(inode, lblocks, pextents);
4634a02908f1SMingming Cao 
4635a02908f1SMingming Cao 	ret = idxblocks;
4636a02908f1SMingming Cao 
4637a02908f1SMingming Cao 	/*
4638a02908f1SMingming Cao 	 * Now let's see how many group bitmaps and group descriptors need
4639a02908f1SMingming Cao 	 * to account
4640a02908f1SMingming Cao 	 */
4641fffb2739SJan Kara 	groups = idxblocks + pextents;
4642a02908f1SMingming Cao 	gdpblocks = groups;
46438df9675fSTheodore Ts'o 	if (groups > ngroups)
46448df9675fSTheodore Ts'o 		groups = ngroups;
4645a02908f1SMingming Cao 	if (groups > EXT4_SB(inode->i_sb)->s_gdb_count)
4646a02908f1SMingming Cao 		gdpblocks = EXT4_SB(inode->i_sb)->s_gdb_count;
4647a02908f1SMingming Cao 
4648a02908f1SMingming Cao 	/* bitmaps and block group descriptor blocks */
4649a02908f1SMingming Cao 	ret += groups + gdpblocks;
4650a02908f1SMingming Cao 
4651a02908f1SMingming Cao 	/* Blocks for super block, inode, quota and xattr blocks */
4652a02908f1SMingming Cao 	ret += EXT4_META_TRANS_BLOCKS(inode->i_sb);
4653ac27a0ecSDave Kleikamp 
4654ac27a0ecSDave Kleikamp 	return ret;
4655ac27a0ecSDave Kleikamp }
4656ac27a0ecSDave Kleikamp 
4657ac27a0ecSDave Kleikamp /*
465825985edcSLucas De Marchi  * Calculate the total number of credits to reserve to fit
4659f3bd1f3fSMingming Cao  * the modification of a single pages into a single transaction,
4660f3bd1f3fSMingming Cao  * which may include multiple chunks of block allocations.
4661a02908f1SMingming Cao  *
4662525f4ed8SMingming Cao  * This could be called via ext4_write_begin()
4663a02908f1SMingming Cao  *
4664525f4ed8SMingming Cao  * We need to consider the worse case, when
4665a02908f1SMingming Cao  * one new block per extent.
4666a02908f1SMingming Cao  */
4667a02908f1SMingming Cao int ext4_writepage_trans_blocks(struct inode *inode)
4668a02908f1SMingming Cao {
4669a02908f1SMingming Cao 	int bpp = ext4_journal_blocks_per_page(inode);
4670a02908f1SMingming Cao 	int ret;
4671a02908f1SMingming Cao 
4672fffb2739SJan Kara 	ret = ext4_meta_trans_blocks(inode, bpp, bpp);
4673a02908f1SMingming Cao 
4674a02908f1SMingming Cao 	/* Account for data blocks for journalled mode */
4675a02908f1SMingming Cao 	if (ext4_should_journal_data(inode))
4676a02908f1SMingming Cao 		ret += bpp;
4677a02908f1SMingming Cao 	return ret;
4678a02908f1SMingming Cao }
4679f3bd1f3fSMingming Cao 
4680f3bd1f3fSMingming Cao /*
4681f3bd1f3fSMingming Cao  * Calculate the journal credits for a chunk of data modification.
4682f3bd1f3fSMingming Cao  *
4683f3bd1f3fSMingming Cao  * This is called from DIO, fallocate or whoever calling
468479e83036SEric Sandeen  * ext4_map_blocks() to map/allocate a chunk of contiguous disk blocks.
4685f3bd1f3fSMingming Cao  *
4686f3bd1f3fSMingming Cao  * journal buffers for data blocks are not included here, as DIO
4687f3bd1f3fSMingming Cao  * and fallocate do no need to journal data buffers.
4688f3bd1f3fSMingming Cao  */
4689f3bd1f3fSMingming Cao int ext4_chunk_trans_blocks(struct inode *inode, int nrblocks)
4690f3bd1f3fSMingming Cao {
4691f3bd1f3fSMingming Cao 	return ext4_meta_trans_blocks(inode, nrblocks, 1);
4692f3bd1f3fSMingming Cao }
4693f3bd1f3fSMingming Cao 
4694a02908f1SMingming Cao /*
4695617ba13bSMingming Cao  * The caller must have previously called ext4_reserve_inode_write().
4696ac27a0ecSDave Kleikamp  * Give this, we know that the caller already has write access to iloc->bh.
4697ac27a0ecSDave Kleikamp  */
4698617ba13bSMingming Cao int ext4_mark_iloc_dirty(handle_t *handle,
4699617ba13bSMingming Cao 			 struct inode *inode, struct ext4_iloc *iloc)
4700ac27a0ecSDave Kleikamp {
4701ac27a0ecSDave Kleikamp 	int err = 0;
4702ac27a0ecSDave Kleikamp 
4703c64db50eSTheodore Ts'o 	if (IS_I_VERSION(inode))
470425ec56b5SJean Noel Cordenner 		inode_inc_iversion(inode);
470525ec56b5SJean Noel Cordenner 
4706ac27a0ecSDave Kleikamp 	/* the do_update_inode consumes one bh->b_count */
4707ac27a0ecSDave Kleikamp 	get_bh(iloc->bh);
4708ac27a0ecSDave Kleikamp 
4709dab291afSMingming Cao 	/* ext4_do_update_inode() does jbd2_journal_dirty_metadata */
4710830156c7SFrank Mayhar 	err = ext4_do_update_inode(handle, inode, iloc);
4711ac27a0ecSDave Kleikamp 	put_bh(iloc->bh);
4712ac27a0ecSDave Kleikamp 	return err;
4713ac27a0ecSDave Kleikamp }
4714ac27a0ecSDave Kleikamp 
4715ac27a0ecSDave Kleikamp /*
4716ac27a0ecSDave Kleikamp  * On success, We end up with an outstanding reference count against
4717ac27a0ecSDave Kleikamp  * iloc->bh.  This _must_ be cleaned up later.
4718ac27a0ecSDave Kleikamp  */
4719ac27a0ecSDave Kleikamp 
4720ac27a0ecSDave Kleikamp int
4721617ba13bSMingming Cao ext4_reserve_inode_write(handle_t *handle, struct inode *inode,
4722617ba13bSMingming Cao 			 struct ext4_iloc *iloc)
4723ac27a0ecSDave Kleikamp {
47240390131bSFrank Mayhar 	int err;
47250390131bSFrank Mayhar 
4726617ba13bSMingming Cao 	err = ext4_get_inode_loc(inode, iloc);
4727ac27a0ecSDave Kleikamp 	if (!err) {
4728ac27a0ecSDave Kleikamp 		BUFFER_TRACE(iloc->bh, "get_write_access");
4729617ba13bSMingming Cao 		err = ext4_journal_get_write_access(handle, iloc->bh);
4730ac27a0ecSDave Kleikamp 		if (err) {
4731ac27a0ecSDave Kleikamp 			brelse(iloc->bh);
4732ac27a0ecSDave Kleikamp 			iloc->bh = NULL;
4733ac27a0ecSDave Kleikamp 		}
4734ac27a0ecSDave Kleikamp 	}
4735617ba13bSMingming Cao 	ext4_std_error(inode->i_sb, err);
4736ac27a0ecSDave Kleikamp 	return err;
4737ac27a0ecSDave Kleikamp }
4738ac27a0ecSDave Kleikamp 
4739ac27a0ecSDave Kleikamp /*
47406dd4ee7cSKalpak Shah  * Expand an inode by new_extra_isize bytes.
47416dd4ee7cSKalpak Shah  * Returns 0 on success or negative error number on failure.
47426dd4ee7cSKalpak Shah  */
47431d03ec98SAneesh Kumar K.V static int ext4_expand_extra_isize(struct inode *inode,
47441d03ec98SAneesh Kumar K.V 				   unsigned int new_extra_isize,
47451d03ec98SAneesh Kumar K.V 				   struct ext4_iloc iloc,
47461d03ec98SAneesh Kumar K.V 				   handle_t *handle)
47476dd4ee7cSKalpak Shah {
47486dd4ee7cSKalpak Shah 	struct ext4_inode *raw_inode;
47496dd4ee7cSKalpak Shah 	struct ext4_xattr_ibody_header *header;
47506dd4ee7cSKalpak Shah 
47516dd4ee7cSKalpak Shah 	if (EXT4_I(inode)->i_extra_isize >= new_extra_isize)
47526dd4ee7cSKalpak Shah 		return 0;
47536dd4ee7cSKalpak Shah 
47546dd4ee7cSKalpak Shah 	raw_inode = ext4_raw_inode(&iloc);
47556dd4ee7cSKalpak Shah 
47566dd4ee7cSKalpak Shah 	header = IHDR(inode, raw_inode);
47576dd4ee7cSKalpak Shah 
47586dd4ee7cSKalpak Shah 	/* No extended attributes present */
475919f5fb7aSTheodore Ts'o 	if (!ext4_test_inode_state(inode, EXT4_STATE_XATTR) ||
47606dd4ee7cSKalpak Shah 	    header->h_magic != cpu_to_le32(EXT4_XATTR_MAGIC)) {
47616dd4ee7cSKalpak Shah 		memset((void *)raw_inode + EXT4_GOOD_OLD_INODE_SIZE, 0,
47626dd4ee7cSKalpak Shah 			new_extra_isize);
47636dd4ee7cSKalpak Shah 		EXT4_I(inode)->i_extra_isize = new_extra_isize;
47646dd4ee7cSKalpak Shah 		return 0;
47656dd4ee7cSKalpak Shah 	}
47666dd4ee7cSKalpak Shah 
47676dd4ee7cSKalpak Shah 	/* try to expand with EAs present */
47686dd4ee7cSKalpak Shah 	return ext4_expand_extra_isize_ea(inode, new_extra_isize,
47696dd4ee7cSKalpak Shah 					  raw_inode, handle);
47706dd4ee7cSKalpak Shah }
47716dd4ee7cSKalpak Shah 
47726dd4ee7cSKalpak Shah /*
4773ac27a0ecSDave Kleikamp  * What we do here is to mark the in-core inode as clean with respect to inode
4774ac27a0ecSDave Kleikamp  * dirtiness (it may still be data-dirty).
4775ac27a0ecSDave Kleikamp  * This means that the in-core inode may be reaped by prune_icache
4776ac27a0ecSDave Kleikamp  * without having to perform any I/O.  This is a very good thing,
4777ac27a0ecSDave Kleikamp  * because *any* task may call prune_icache - even ones which
4778ac27a0ecSDave Kleikamp  * have a transaction open against a different journal.
4779ac27a0ecSDave Kleikamp  *
4780ac27a0ecSDave Kleikamp  * Is this cheating?  Not really.  Sure, we haven't written the
4781ac27a0ecSDave Kleikamp  * inode out, but prune_icache isn't a user-visible syncing function.
4782ac27a0ecSDave Kleikamp  * Whenever the user wants stuff synced (sys_sync, sys_msync, sys_fsync)
4783ac27a0ecSDave Kleikamp  * we start and wait on commits.
4784ac27a0ecSDave Kleikamp  */
4785617ba13bSMingming Cao int ext4_mark_inode_dirty(handle_t *handle, struct inode *inode)
4786ac27a0ecSDave Kleikamp {
4787617ba13bSMingming Cao 	struct ext4_iloc iloc;
47886dd4ee7cSKalpak Shah 	struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb);
47896dd4ee7cSKalpak Shah 	static unsigned int mnt_count;
47906dd4ee7cSKalpak Shah 	int err, ret;
4791ac27a0ecSDave Kleikamp 
4792ac27a0ecSDave Kleikamp 	might_sleep();
47937ff9c073STheodore Ts'o 	trace_ext4_mark_inode_dirty(inode, _RET_IP_);
4794617ba13bSMingming Cao 	err = ext4_reserve_inode_write(handle, inode, &iloc);
47950390131bSFrank Mayhar 	if (ext4_handle_valid(handle) &&
47960390131bSFrank Mayhar 	    EXT4_I(inode)->i_extra_isize < sbi->s_want_extra_isize &&
479719f5fb7aSTheodore Ts'o 	    !ext4_test_inode_state(inode, EXT4_STATE_NO_EXPAND)) {
47986dd4ee7cSKalpak Shah 		/*
47996dd4ee7cSKalpak Shah 		 * We need extra buffer credits since we may write into EA block
48006dd4ee7cSKalpak Shah 		 * with this same handle. If journal_extend fails, then it will
48016dd4ee7cSKalpak Shah 		 * only result in a minor loss of functionality for that inode.
48026dd4ee7cSKalpak Shah 		 * If this is felt to be critical, then e2fsck should be run to
48036dd4ee7cSKalpak Shah 		 * force a large enough s_min_extra_isize.
48046dd4ee7cSKalpak Shah 		 */
48056dd4ee7cSKalpak Shah 		if ((jbd2_journal_extend(handle,
48066dd4ee7cSKalpak Shah 			     EXT4_DATA_TRANS_BLOCKS(inode->i_sb))) == 0) {
48076dd4ee7cSKalpak Shah 			ret = ext4_expand_extra_isize(inode,
48086dd4ee7cSKalpak Shah 						      sbi->s_want_extra_isize,
48096dd4ee7cSKalpak Shah 						      iloc, handle);
48106dd4ee7cSKalpak Shah 			if (ret) {
481119f5fb7aSTheodore Ts'o 				ext4_set_inode_state(inode,
481219f5fb7aSTheodore Ts'o 						     EXT4_STATE_NO_EXPAND);
4813c1bddad9SAneesh Kumar K.V 				if (mnt_count !=
4814c1bddad9SAneesh Kumar K.V 					le16_to_cpu(sbi->s_es->s_mnt_count)) {
481512062dddSEric Sandeen 					ext4_warning(inode->i_sb,
48166dd4ee7cSKalpak Shah 					"Unable to expand inode %lu. Delete"
48176dd4ee7cSKalpak Shah 					" some EAs or run e2fsck.",
48186dd4ee7cSKalpak Shah 					inode->i_ino);
4819c1bddad9SAneesh Kumar K.V 					mnt_count =
4820c1bddad9SAneesh Kumar K.V 					  le16_to_cpu(sbi->s_es->s_mnt_count);
48216dd4ee7cSKalpak Shah 				}
48226dd4ee7cSKalpak Shah 			}
48236dd4ee7cSKalpak Shah 		}
48246dd4ee7cSKalpak Shah 	}
4825ac27a0ecSDave Kleikamp 	if (!err)
4826617ba13bSMingming Cao 		err = ext4_mark_iloc_dirty(handle, inode, &iloc);
4827ac27a0ecSDave Kleikamp 	return err;
4828ac27a0ecSDave Kleikamp }
4829ac27a0ecSDave Kleikamp 
4830ac27a0ecSDave Kleikamp /*
4831617ba13bSMingming Cao  * ext4_dirty_inode() is called from __mark_inode_dirty()
4832ac27a0ecSDave Kleikamp  *
4833ac27a0ecSDave Kleikamp  * We're really interested in the case where a file is being extended.
4834ac27a0ecSDave Kleikamp  * i_size has been changed by generic_commit_write() and we thus need
4835ac27a0ecSDave Kleikamp  * to include the updated inode in the current transaction.
4836ac27a0ecSDave Kleikamp  *
48375dd4056dSChristoph Hellwig  * Also, dquot_alloc_block() will always dirty the inode when blocks
4838ac27a0ecSDave Kleikamp  * are allocated to the file.
4839ac27a0ecSDave Kleikamp  *
4840ac27a0ecSDave Kleikamp  * If the inode is marked synchronous, we don't honour that here - doing
4841ac27a0ecSDave Kleikamp  * so would cause a commit on atime updates, which we don't bother doing.
4842ac27a0ecSDave Kleikamp  * We handle synchronous inodes at the highest possible level.
4843*0ae45f63STheodore Ts'o  *
4844*0ae45f63STheodore Ts'o  * If only the I_DIRTY_TIME flag is set, we can skip everything.  If
4845*0ae45f63STheodore Ts'o  * I_DIRTY_TIME and I_DIRTY_SYNC is set, the only inode fields we need
4846*0ae45f63STheodore Ts'o  * to copy into the on-disk inode structure are the timestamp files.
4847ac27a0ecSDave Kleikamp  */
4848aa385729SChristoph Hellwig void ext4_dirty_inode(struct inode *inode, int flags)
4849ac27a0ecSDave Kleikamp {
4850ac27a0ecSDave Kleikamp 	handle_t *handle;
4851ac27a0ecSDave Kleikamp 
4852*0ae45f63STheodore Ts'o 	if (flags == I_DIRTY_TIME)
4853*0ae45f63STheodore Ts'o 		return;
48549924a92aSTheodore Ts'o 	handle = ext4_journal_start(inode, EXT4_HT_INODE, 2);
4855ac27a0ecSDave Kleikamp 	if (IS_ERR(handle))
4856ac27a0ecSDave Kleikamp 		goto out;
4857f3dc272fSCurt Wohlgemuth 
4858617ba13bSMingming Cao 	ext4_mark_inode_dirty(handle, inode);
4859f3dc272fSCurt Wohlgemuth 
4860617ba13bSMingming Cao 	ext4_journal_stop(handle);
4861ac27a0ecSDave Kleikamp out:
4862ac27a0ecSDave Kleikamp 	return;
4863ac27a0ecSDave Kleikamp }
4864ac27a0ecSDave Kleikamp 
4865ac27a0ecSDave Kleikamp #if 0
4866ac27a0ecSDave Kleikamp /*
4867ac27a0ecSDave Kleikamp  * Bind an inode's backing buffer_head into this transaction, to prevent
4868ac27a0ecSDave Kleikamp  * it from being flushed to disk early.  Unlike
4869617ba13bSMingming Cao  * ext4_reserve_inode_write, this leaves behind no bh reference and
4870ac27a0ecSDave Kleikamp  * returns no iloc structure, so the caller needs to repeat the iloc
4871ac27a0ecSDave Kleikamp  * lookup to mark the inode dirty later.
4872ac27a0ecSDave Kleikamp  */
4873617ba13bSMingming Cao static int ext4_pin_inode(handle_t *handle, struct inode *inode)
4874ac27a0ecSDave Kleikamp {
4875617ba13bSMingming Cao 	struct ext4_iloc iloc;
4876ac27a0ecSDave Kleikamp 
4877ac27a0ecSDave Kleikamp 	int err = 0;
4878ac27a0ecSDave Kleikamp 	if (handle) {
4879617ba13bSMingming Cao 		err = ext4_get_inode_loc(inode, &iloc);
4880ac27a0ecSDave Kleikamp 		if (!err) {
4881ac27a0ecSDave Kleikamp 			BUFFER_TRACE(iloc.bh, "get_write_access");
4882dab291afSMingming Cao 			err = jbd2_journal_get_write_access(handle, iloc.bh);
4883ac27a0ecSDave Kleikamp 			if (!err)
48840390131bSFrank Mayhar 				err = ext4_handle_dirty_metadata(handle,
488573b50c1cSCurt Wohlgemuth 								 NULL,
4886ac27a0ecSDave Kleikamp 								 iloc.bh);
4887ac27a0ecSDave Kleikamp 			brelse(iloc.bh);
4888ac27a0ecSDave Kleikamp 		}
4889ac27a0ecSDave Kleikamp 	}
4890617ba13bSMingming Cao 	ext4_std_error(inode->i_sb, err);
4891ac27a0ecSDave Kleikamp 	return err;
4892ac27a0ecSDave Kleikamp }
4893ac27a0ecSDave Kleikamp #endif
4894ac27a0ecSDave Kleikamp 
4895617ba13bSMingming Cao int ext4_change_inode_journal_flag(struct inode *inode, int val)
4896ac27a0ecSDave Kleikamp {
4897ac27a0ecSDave Kleikamp 	journal_t *journal;
4898ac27a0ecSDave Kleikamp 	handle_t *handle;
4899ac27a0ecSDave Kleikamp 	int err;
4900ac27a0ecSDave Kleikamp 
4901ac27a0ecSDave Kleikamp 	/*
4902ac27a0ecSDave Kleikamp 	 * We have to be very careful here: changing a data block's
4903ac27a0ecSDave Kleikamp 	 * journaling status dynamically is dangerous.  If we write a
4904ac27a0ecSDave Kleikamp 	 * data block to the journal, change the status and then delete
4905ac27a0ecSDave Kleikamp 	 * that block, we risk forgetting to revoke the old log record
4906ac27a0ecSDave Kleikamp 	 * from the journal and so a subsequent replay can corrupt data.
4907ac27a0ecSDave Kleikamp 	 * So, first we make sure that the journal is empty and that
4908ac27a0ecSDave Kleikamp 	 * nobody is changing anything.
4909ac27a0ecSDave Kleikamp 	 */
4910ac27a0ecSDave Kleikamp 
4911617ba13bSMingming Cao 	journal = EXT4_JOURNAL(inode);
49120390131bSFrank Mayhar 	if (!journal)
49130390131bSFrank Mayhar 		return 0;
4914d699594dSDave Hansen 	if (is_journal_aborted(journal))
4915ac27a0ecSDave Kleikamp 		return -EROFS;
49162aff57b0SYongqiang Yang 	/* We have to allocate physical blocks for delalloc blocks
49172aff57b0SYongqiang Yang 	 * before flushing journal. otherwise delalloc blocks can not
49182aff57b0SYongqiang Yang 	 * be allocated any more. even more truncate on delalloc blocks
49192aff57b0SYongqiang Yang 	 * could trigger BUG by flushing delalloc blocks in journal.
49202aff57b0SYongqiang Yang 	 * There is no delalloc block in non-journal data mode.
49212aff57b0SYongqiang Yang 	 */
49222aff57b0SYongqiang Yang 	if (val && test_opt(inode->i_sb, DELALLOC)) {
49232aff57b0SYongqiang Yang 		err = ext4_alloc_da_blocks(inode);
49242aff57b0SYongqiang Yang 		if (err < 0)
49252aff57b0SYongqiang Yang 			return err;
49262aff57b0SYongqiang Yang 	}
4927ac27a0ecSDave Kleikamp 
492817335dccSDmitry Monakhov 	/* Wait for all existing dio workers */
492917335dccSDmitry Monakhov 	ext4_inode_block_unlocked_dio(inode);
493017335dccSDmitry Monakhov 	inode_dio_wait(inode);
493117335dccSDmitry Monakhov 
4932dab291afSMingming Cao 	jbd2_journal_lock_updates(journal);
4933ac27a0ecSDave Kleikamp 
4934ac27a0ecSDave Kleikamp 	/*
4935ac27a0ecSDave Kleikamp 	 * OK, there are no updates running now, and all cached data is
4936ac27a0ecSDave Kleikamp 	 * synced to disk.  We are now in a completely consistent state
4937ac27a0ecSDave Kleikamp 	 * which doesn't have anything in the journal, and we know that
4938ac27a0ecSDave Kleikamp 	 * no filesystem updates are running, so it is safe to modify
4939ac27a0ecSDave Kleikamp 	 * the inode's in-core data-journaling state flag now.
4940ac27a0ecSDave Kleikamp 	 */
4941ac27a0ecSDave Kleikamp 
4942ac27a0ecSDave Kleikamp 	if (val)
494312e9b892SDmitry Monakhov 		ext4_set_inode_flag(inode, EXT4_INODE_JOURNAL_DATA);
49445872ddaaSYongqiang Yang 	else {
49454f879ca6SJan Kara 		err = jbd2_journal_flush(journal);
49464f879ca6SJan Kara 		if (err < 0) {
49474f879ca6SJan Kara 			jbd2_journal_unlock_updates(journal);
49484f879ca6SJan Kara 			ext4_inode_resume_unlocked_dio(inode);
49494f879ca6SJan Kara 			return err;
49504f879ca6SJan Kara 		}
495112e9b892SDmitry Monakhov 		ext4_clear_inode_flag(inode, EXT4_INODE_JOURNAL_DATA);
49525872ddaaSYongqiang Yang 	}
4953617ba13bSMingming Cao 	ext4_set_aops(inode);
4954ac27a0ecSDave Kleikamp 
4955dab291afSMingming Cao 	jbd2_journal_unlock_updates(journal);
495617335dccSDmitry Monakhov 	ext4_inode_resume_unlocked_dio(inode);
4957ac27a0ecSDave Kleikamp 
4958ac27a0ecSDave Kleikamp 	/* Finally we can mark the inode as dirty. */
4959ac27a0ecSDave Kleikamp 
49609924a92aSTheodore Ts'o 	handle = ext4_journal_start(inode, EXT4_HT_INODE, 1);
4961ac27a0ecSDave Kleikamp 	if (IS_ERR(handle))
4962ac27a0ecSDave Kleikamp 		return PTR_ERR(handle);
4963ac27a0ecSDave Kleikamp 
4964617ba13bSMingming Cao 	err = ext4_mark_inode_dirty(handle, inode);
49650390131bSFrank Mayhar 	ext4_handle_sync(handle);
4966617ba13bSMingming Cao 	ext4_journal_stop(handle);
4967617ba13bSMingming Cao 	ext4_std_error(inode->i_sb, err);
4968ac27a0ecSDave Kleikamp 
4969ac27a0ecSDave Kleikamp 	return err;
4970ac27a0ecSDave Kleikamp }
49712e9ee850SAneesh Kumar K.V 
49722e9ee850SAneesh Kumar K.V static int ext4_bh_unmapped(handle_t *handle, struct buffer_head *bh)
49732e9ee850SAneesh Kumar K.V {
49742e9ee850SAneesh Kumar K.V 	return !buffer_mapped(bh);
49752e9ee850SAneesh Kumar K.V }
49762e9ee850SAneesh Kumar K.V 
4977c2ec175cSNick Piggin int ext4_page_mkwrite(struct vm_area_struct *vma, struct vm_fault *vmf)
49782e9ee850SAneesh Kumar K.V {
4979c2ec175cSNick Piggin 	struct page *page = vmf->page;
49802e9ee850SAneesh Kumar K.V 	loff_t size;
49812e9ee850SAneesh Kumar K.V 	unsigned long len;
49829ea7df53SJan Kara 	int ret;
49832e9ee850SAneesh Kumar K.V 	struct file *file = vma->vm_file;
4984496ad9aaSAl Viro 	struct inode *inode = file_inode(file);
49852e9ee850SAneesh Kumar K.V 	struct address_space *mapping = inode->i_mapping;
49869ea7df53SJan Kara 	handle_t *handle;
49879ea7df53SJan Kara 	get_block_t *get_block;
49889ea7df53SJan Kara 	int retries = 0;
49892e9ee850SAneesh Kumar K.V 
49908e8ad8a5SJan Kara 	sb_start_pagefault(inode->i_sb);
4991041bbb6dSTheodore Ts'o 	file_update_time(vma->vm_file);
49929ea7df53SJan Kara 	/* Delalloc case is easy... */
49939ea7df53SJan Kara 	if (test_opt(inode->i_sb, DELALLOC) &&
49949ea7df53SJan Kara 	    !ext4_should_journal_data(inode) &&
49959ea7df53SJan Kara 	    !ext4_nonda_switch(inode->i_sb)) {
49969ea7df53SJan Kara 		do {
49979ea7df53SJan Kara 			ret = __block_page_mkwrite(vma, vmf,
49989ea7df53SJan Kara 						   ext4_da_get_block_prep);
49999ea7df53SJan Kara 		} while (ret == -ENOSPC &&
50009ea7df53SJan Kara 		       ext4_should_retry_alloc(inode->i_sb, &retries));
50019ea7df53SJan Kara 		goto out_ret;
50022e9ee850SAneesh Kumar K.V 	}
50030e499890SDarrick J. Wong 
50040e499890SDarrick J. Wong 	lock_page(page);
50059ea7df53SJan Kara 	size = i_size_read(inode);
50069ea7df53SJan Kara 	/* Page got truncated from under us? */
50079ea7df53SJan Kara 	if (page->mapping != mapping || page_offset(page) > size) {
50089ea7df53SJan Kara 		unlock_page(page);
50099ea7df53SJan Kara 		ret = VM_FAULT_NOPAGE;
50109ea7df53SJan Kara 		goto out;
50110e499890SDarrick J. Wong 	}
50122e9ee850SAneesh Kumar K.V 
50132e9ee850SAneesh Kumar K.V 	if (page->index == size >> PAGE_CACHE_SHIFT)
50142e9ee850SAneesh Kumar K.V 		len = size & ~PAGE_CACHE_MASK;
50152e9ee850SAneesh Kumar K.V 	else
50162e9ee850SAneesh Kumar K.V 		len = PAGE_CACHE_SIZE;
5017a827eaffSAneesh Kumar K.V 	/*
50189ea7df53SJan Kara 	 * Return if we have all the buffers mapped. This avoids the need to do
50199ea7df53SJan Kara 	 * journal_start/journal_stop which can block and take a long time
5020a827eaffSAneesh Kumar K.V 	 */
50212e9ee850SAneesh Kumar K.V 	if (page_has_buffers(page)) {
5022f19d5870STao Ma 		if (!ext4_walk_page_buffers(NULL, page_buffers(page),
5023f19d5870STao Ma 					    0, len, NULL,
5024a827eaffSAneesh Kumar K.V 					    ext4_bh_unmapped)) {
50259ea7df53SJan Kara 			/* Wait so that we don't change page under IO */
50261d1d1a76SDarrick J. Wong 			wait_for_stable_page(page);
50279ea7df53SJan Kara 			ret = VM_FAULT_LOCKED;
50289ea7df53SJan Kara 			goto out;
50292e9ee850SAneesh Kumar K.V 		}
5030a827eaffSAneesh Kumar K.V 	}
5031a827eaffSAneesh Kumar K.V 	unlock_page(page);
50329ea7df53SJan Kara 	/* OK, we need to fill the hole... */
50339ea7df53SJan Kara 	if (ext4_should_dioread_nolock(inode))
50349ea7df53SJan Kara 		get_block = ext4_get_block_write;
50359ea7df53SJan Kara 	else
50369ea7df53SJan Kara 		get_block = ext4_get_block;
50379ea7df53SJan Kara retry_alloc:
50389924a92aSTheodore Ts'o 	handle = ext4_journal_start(inode, EXT4_HT_WRITE_PAGE,
50399924a92aSTheodore Ts'o 				    ext4_writepage_trans_blocks(inode));
50409ea7df53SJan Kara 	if (IS_ERR(handle)) {
5041c2ec175cSNick Piggin 		ret = VM_FAULT_SIGBUS;
50429ea7df53SJan Kara 		goto out;
50439ea7df53SJan Kara 	}
50449ea7df53SJan Kara 	ret = __block_page_mkwrite(vma, vmf, get_block);
50459ea7df53SJan Kara 	if (!ret && ext4_should_journal_data(inode)) {
5046f19d5870STao Ma 		if (ext4_walk_page_buffers(handle, page_buffers(page), 0,
50479ea7df53SJan Kara 			  PAGE_CACHE_SIZE, NULL, do_journal_get_write_access)) {
50489ea7df53SJan Kara 			unlock_page(page);
50499ea7df53SJan Kara 			ret = VM_FAULT_SIGBUS;
5050fcbb5515SYongqiang Yang 			ext4_journal_stop(handle);
50519ea7df53SJan Kara 			goto out;
50529ea7df53SJan Kara 		}
50539ea7df53SJan Kara 		ext4_set_inode_state(inode, EXT4_STATE_JDATA);
50549ea7df53SJan Kara 	}
50559ea7df53SJan Kara 	ext4_journal_stop(handle);
50569ea7df53SJan Kara 	if (ret == -ENOSPC && ext4_should_retry_alloc(inode->i_sb, &retries))
50579ea7df53SJan Kara 		goto retry_alloc;
50589ea7df53SJan Kara out_ret:
50599ea7df53SJan Kara 	ret = block_page_mkwrite_return(ret);
50609ea7df53SJan Kara out:
50618e8ad8a5SJan Kara 	sb_end_pagefault(inode->i_sb);
50622e9ee850SAneesh Kumar K.V 	return ret;
50632e9ee850SAneesh Kumar K.V }
5064