xref: /openbmc/linux/fs/ext4/inode.c (revision bd9db175dde14b606265e0d37e8319d96fe1a58f)
1ac27a0ecSDave Kleikamp /*
2617ba13bSMingming Cao  *  linux/fs/ext4/inode.c
3ac27a0ecSDave Kleikamp  *
4ac27a0ecSDave Kleikamp  * Copyright (C) 1992, 1993, 1994, 1995
5ac27a0ecSDave Kleikamp  * Remy Card (card@masi.ibp.fr)
6ac27a0ecSDave Kleikamp  * Laboratoire MASI - Institut Blaise Pascal
7ac27a0ecSDave Kleikamp  * Universite Pierre et Marie Curie (Paris VI)
8ac27a0ecSDave Kleikamp  *
9ac27a0ecSDave Kleikamp  *  from
10ac27a0ecSDave Kleikamp  *
11ac27a0ecSDave Kleikamp  *  linux/fs/minix/inode.c
12ac27a0ecSDave Kleikamp  *
13ac27a0ecSDave Kleikamp  *  Copyright (C) 1991, 1992  Linus Torvalds
14ac27a0ecSDave Kleikamp  *
15ac27a0ecSDave Kleikamp  *  64-bit file support on 64-bit platforms by Jakub Jelinek
16ac27a0ecSDave Kleikamp  *	(jj@sunsite.ms.mff.cuni.cz)
17ac27a0ecSDave Kleikamp  *
18617ba13bSMingming Cao  *  Assorted race fixes, rewrite of ext4_get_block() by Al Viro, 2000
19ac27a0ecSDave Kleikamp  */
20ac27a0ecSDave Kleikamp 
21ac27a0ecSDave Kleikamp #include <linux/fs.h>
22ac27a0ecSDave Kleikamp #include <linux/time.h>
23dab291afSMingming Cao #include <linux/jbd2.h>
24ac27a0ecSDave Kleikamp #include <linux/highuid.h>
25ac27a0ecSDave Kleikamp #include <linux/pagemap.h>
26ac27a0ecSDave Kleikamp #include <linux/quotaops.h>
27ac27a0ecSDave Kleikamp #include <linux/string.h>
28ac27a0ecSDave Kleikamp #include <linux/buffer_head.h>
29ac27a0ecSDave Kleikamp #include <linux/writeback.h>
3064769240SAlex Tomas #include <linux/pagevec.h>
31ac27a0ecSDave Kleikamp #include <linux/mpage.h>
32e83c1397SDuane Griffin #include <linux/namei.h>
33ac27a0ecSDave Kleikamp #include <linux/uio.h>
34ac27a0ecSDave Kleikamp #include <linux/bio.h>
354c0425ffSMingming Cao #include <linux/workqueue.h>
36744692dcSJiaying Zhang #include <linux/kernel.h>
376db26ffcSAndrew Morton #include <linux/printk.h>
385a0e3ad6STejun Heo #include <linux/slab.h>
39a8901d34STheodore Ts'o #include <linux/ratelimit.h>
40a27bb332SKent Overstreet #include <linux/aio.h>
4100a1a053STheodore Ts'o #include <linux/bitops.h>
429bffad1eSTheodore Ts'o 
433dcf5451SChristoph Hellwig #include "ext4_jbd2.h"
44ac27a0ecSDave Kleikamp #include "xattr.h"
45ac27a0ecSDave Kleikamp #include "acl.h"
469f125d64STheodore Ts'o #include "truncate.h"
47ac27a0ecSDave Kleikamp 
489bffad1eSTheodore Ts'o #include <trace/events/ext4.h>
499bffad1eSTheodore Ts'o 
50a1d6cc56SAneesh Kumar K.V #define MPAGE_DA_EXTENT_TAIL 0x01
51a1d6cc56SAneesh Kumar K.V 
52814525f4SDarrick J. Wong static __u32 ext4_inode_csum(struct inode *inode, struct ext4_inode *raw,
53814525f4SDarrick J. Wong 			      struct ext4_inode_info *ei)
54814525f4SDarrick J. Wong {
55814525f4SDarrick J. Wong 	struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb);
56814525f4SDarrick J. Wong 	__u16 csum_lo;
57814525f4SDarrick J. Wong 	__u16 csum_hi = 0;
58814525f4SDarrick J. Wong 	__u32 csum;
59814525f4SDarrick J. Wong 
60171a7f21SDmitry Monakhov 	csum_lo = le16_to_cpu(raw->i_checksum_lo);
61814525f4SDarrick J. Wong 	raw->i_checksum_lo = 0;
62814525f4SDarrick J. Wong 	if (EXT4_INODE_SIZE(inode->i_sb) > EXT4_GOOD_OLD_INODE_SIZE &&
63814525f4SDarrick J. Wong 	    EXT4_FITS_IN_INODE(raw, ei, i_checksum_hi)) {
64171a7f21SDmitry Monakhov 		csum_hi = le16_to_cpu(raw->i_checksum_hi);
65814525f4SDarrick J. Wong 		raw->i_checksum_hi = 0;
66814525f4SDarrick J. Wong 	}
67814525f4SDarrick J. Wong 
68814525f4SDarrick J. Wong 	csum = ext4_chksum(sbi, ei->i_csum_seed, (__u8 *)raw,
69814525f4SDarrick J. Wong 			   EXT4_INODE_SIZE(inode->i_sb));
70814525f4SDarrick J. Wong 
71171a7f21SDmitry Monakhov 	raw->i_checksum_lo = cpu_to_le16(csum_lo);
72814525f4SDarrick J. Wong 	if (EXT4_INODE_SIZE(inode->i_sb) > EXT4_GOOD_OLD_INODE_SIZE &&
73814525f4SDarrick J. Wong 	    EXT4_FITS_IN_INODE(raw, ei, i_checksum_hi))
74171a7f21SDmitry Monakhov 		raw->i_checksum_hi = cpu_to_le16(csum_hi);
75814525f4SDarrick J. Wong 
76814525f4SDarrick J. Wong 	return csum;
77814525f4SDarrick J. Wong }
78814525f4SDarrick J. Wong 
79814525f4SDarrick J. Wong static int ext4_inode_csum_verify(struct inode *inode, struct ext4_inode *raw,
80814525f4SDarrick J. Wong 				  struct ext4_inode_info *ei)
81814525f4SDarrick J. Wong {
82814525f4SDarrick J. Wong 	__u32 provided, calculated;
83814525f4SDarrick J. Wong 
84814525f4SDarrick J. Wong 	if (EXT4_SB(inode->i_sb)->s_es->s_creator_os !=
85814525f4SDarrick J. Wong 	    cpu_to_le32(EXT4_OS_LINUX) ||
86814525f4SDarrick J. Wong 	    !EXT4_HAS_RO_COMPAT_FEATURE(inode->i_sb,
87814525f4SDarrick J. Wong 		EXT4_FEATURE_RO_COMPAT_METADATA_CSUM))
88814525f4SDarrick J. Wong 		return 1;
89814525f4SDarrick J. Wong 
90814525f4SDarrick J. Wong 	provided = le16_to_cpu(raw->i_checksum_lo);
91814525f4SDarrick J. Wong 	calculated = ext4_inode_csum(inode, raw, ei);
92814525f4SDarrick J. Wong 	if (EXT4_INODE_SIZE(inode->i_sb) > EXT4_GOOD_OLD_INODE_SIZE &&
93814525f4SDarrick J. Wong 	    EXT4_FITS_IN_INODE(raw, ei, i_checksum_hi))
94814525f4SDarrick J. Wong 		provided |= ((__u32)le16_to_cpu(raw->i_checksum_hi)) << 16;
95814525f4SDarrick J. Wong 	else
96814525f4SDarrick J. Wong 		calculated &= 0xFFFF;
97814525f4SDarrick J. Wong 
98814525f4SDarrick J. Wong 	return provided == calculated;
99814525f4SDarrick J. Wong }
100814525f4SDarrick J. Wong 
101814525f4SDarrick J. Wong static void ext4_inode_csum_set(struct inode *inode, struct ext4_inode *raw,
102814525f4SDarrick J. Wong 				struct ext4_inode_info *ei)
103814525f4SDarrick J. Wong {
104814525f4SDarrick J. Wong 	__u32 csum;
105814525f4SDarrick J. Wong 
106814525f4SDarrick J. Wong 	if (EXT4_SB(inode->i_sb)->s_es->s_creator_os !=
107814525f4SDarrick J. Wong 	    cpu_to_le32(EXT4_OS_LINUX) ||
108814525f4SDarrick J. Wong 	    !EXT4_HAS_RO_COMPAT_FEATURE(inode->i_sb,
109814525f4SDarrick J. Wong 		EXT4_FEATURE_RO_COMPAT_METADATA_CSUM))
110814525f4SDarrick J. Wong 		return;
111814525f4SDarrick J. Wong 
112814525f4SDarrick J. Wong 	csum = ext4_inode_csum(inode, raw, ei);
113814525f4SDarrick J. Wong 	raw->i_checksum_lo = cpu_to_le16(csum & 0xFFFF);
114814525f4SDarrick J. Wong 	if (EXT4_INODE_SIZE(inode->i_sb) > EXT4_GOOD_OLD_INODE_SIZE &&
115814525f4SDarrick J. Wong 	    EXT4_FITS_IN_INODE(raw, ei, i_checksum_hi))
116814525f4SDarrick J. Wong 		raw->i_checksum_hi = cpu_to_le16(csum >> 16);
117814525f4SDarrick J. Wong }
118814525f4SDarrick J. Wong 
119678aaf48SJan Kara static inline int ext4_begin_ordered_truncate(struct inode *inode,
120678aaf48SJan Kara 					      loff_t new_size)
121678aaf48SJan Kara {
1227ff9c073STheodore Ts'o 	trace_ext4_begin_ordered_truncate(inode, new_size);
1238aefcd55STheodore Ts'o 	/*
1248aefcd55STheodore Ts'o 	 * If jinode is zero, then we never opened the file for
1258aefcd55STheodore Ts'o 	 * writing, so there's no need to call
1268aefcd55STheodore Ts'o 	 * jbd2_journal_begin_ordered_truncate() since there's no
1278aefcd55STheodore Ts'o 	 * outstanding writes we need to flush.
1288aefcd55STheodore Ts'o 	 */
1298aefcd55STheodore Ts'o 	if (!EXT4_I(inode)->jinode)
1308aefcd55STheodore Ts'o 		return 0;
1318aefcd55STheodore Ts'o 	return jbd2_journal_begin_ordered_truncate(EXT4_JOURNAL(inode),
1328aefcd55STheodore Ts'o 						   EXT4_I(inode)->jinode,
133678aaf48SJan Kara 						   new_size);
134678aaf48SJan Kara }
135678aaf48SJan Kara 
136d47992f8SLukas Czerner static void ext4_invalidatepage(struct page *page, unsigned int offset,
137d47992f8SLukas Czerner 				unsigned int length);
138cb20d518STheodore Ts'o static int __ext4_journalled_writepage(struct page *page, unsigned int len);
139cb20d518STheodore Ts'o static int ext4_bh_delay_or_unwritten(handle_t *handle, struct buffer_head *bh);
140fffb2739SJan Kara static int ext4_meta_trans_blocks(struct inode *inode, int lblocks,
141fffb2739SJan Kara 				  int pextents);
14264769240SAlex Tomas 
143ac27a0ecSDave Kleikamp /*
144ac27a0ecSDave Kleikamp  * Test whether an inode is a fast symlink.
145ac27a0ecSDave Kleikamp  */
146617ba13bSMingming Cao static int ext4_inode_is_fast_symlink(struct inode *inode)
147ac27a0ecSDave Kleikamp {
148617ba13bSMingming Cao         int ea_blocks = EXT4_I(inode)->i_file_acl ?
14965eddb56SYongqiang Yang 		EXT4_CLUSTER_SIZE(inode->i_sb) >> 9 : 0;
150ac27a0ecSDave Kleikamp 
151*bd9db175SZheng Liu 	if (ext4_has_inline_data(inode))
152*bd9db175SZheng Liu 		return 0;
153*bd9db175SZheng Liu 
154ac27a0ecSDave Kleikamp 	return (S_ISLNK(inode->i_mode) && inode->i_blocks - ea_blocks == 0);
155ac27a0ecSDave Kleikamp }
156ac27a0ecSDave Kleikamp 
157ac27a0ecSDave Kleikamp /*
158ac27a0ecSDave Kleikamp  * Restart the transaction associated with *handle.  This does a commit,
159ac27a0ecSDave Kleikamp  * so before we call here everything must be consistently dirtied against
160ac27a0ecSDave Kleikamp  * this transaction.
161ac27a0ecSDave Kleikamp  */
162487caeefSJan Kara int ext4_truncate_restart_trans(handle_t *handle, struct inode *inode,
163487caeefSJan Kara 				 int nblocks)
164ac27a0ecSDave Kleikamp {
165487caeefSJan Kara 	int ret;
166487caeefSJan Kara 
167487caeefSJan Kara 	/*
168e35fd660STheodore Ts'o 	 * Drop i_data_sem to avoid deadlock with ext4_map_blocks.  At this
169487caeefSJan Kara 	 * moment, get_block can be called only for blocks inside i_size since
170487caeefSJan Kara 	 * page cache has been already dropped and writes are blocked by
171487caeefSJan Kara 	 * i_mutex. So we can safely drop the i_data_sem here.
172487caeefSJan Kara 	 */
1730390131bSFrank Mayhar 	BUG_ON(EXT4_JOURNAL(inode) == NULL);
174ac27a0ecSDave Kleikamp 	jbd_debug(2, "restarting handle %p\n", handle);
175487caeefSJan Kara 	up_write(&EXT4_I(inode)->i_data_sem);
1768e8eaabeSAmir Goldstein 	ret = ext4_journal_restart(handle, nblocks);
177487caeefSJan Kara 	down_write(&EXT4_I(inode)->i_data_sem);
178fa5d1113SAneesh Kumar K.V 	ext4_discard_preallocations(inode);
179487caeefSJan Kara 
180487caeefSJan Kara 	return ret;
181ac27a0ecSDave Kleikamp }
182ac27a0ecSDave Kleikamp 
183ac27a0ecSDave Kleikamp /*
184ac27a0ecSDave Kleikamp  * Called at the last iput() if i_nlink is zero.
185ac27a0ecSDave Kleikamp  */
1860930fcc1SAl Viro void ext4_evict_inode(struct inode *inode)
187ac27a0ecSDave Kleikamp {
188ac27a0ecSDave Kleikamp 	handle_t *handle;
189bc965ab3STheodore Ts'o 	int err;
190ac27a0ecSDave Kleikamp 
1917ff9c073STheodore Ts'o 	trace_ext4_evict_inode(inode);
1922581fdc8SJiaying Zhang 
1930930fcc1SAl Viro 	if (inode->i_nlink) {
1942d859db3SJan Kara 		/*
1952d859db3SJan Kara 		 * When journalling data dirty buffers are tracked only in the
1962d859db3SJan Kara 		 * journal. So although mm thinks everything is clean and
1972d859db3SJan Kara 		 * ready for reaping the inode might still have some pages to
1982d859db3SJan Kara 		 * write in the running transaction or waiting to be
1992d859db3SJan Kara 		 * checkpointed. Thus calling jbd2_journal_invalidatepage()
2002d859db3SJan Kara 		 * (via truncate_inode_pages()) to discard these buffers can
2012d859db3SJan Kara 		 * cause data loss. Also even if we did not discard these
2022d859db3SJan Kara 		 * buffers, we would have no way to find them after the inode
2032d859db3SJan Kara 		 * is reaped and thus user could see stale data if he tries to
2042d859db3SJan Kara 		 * read them before the transaction is checkpointed. So be
2052d859db3SJan Kara 		 * careful and force everything to disk here... We use
2062d859db3SJan Kara 		 * ei->i_datasync_tid to store the newest transaction
2072d859db3SJan Kara 		 * containing inode's data.
2082d859db3SJan Kara 		 *
2092d859db3SJan Kara 		 * Note that directories do not have this problem because they
2102d859db3SJan Kara 		 * don't use page cache.
2112d859db3SJan Kara 		 */
2122d859db3SJan Kara 		if (ext4_should_journal_data(inode) &&
2132b405bfaSTheodore Ts'o 		    (S_ISLNK(inode->i_mode) || S_ISREG(inode->i_mode)) &&
2142b405bfaSTheodore Ts'o 		    inode->i_ino != EXT4_JOURNAL_INO) {
2152d859db3SJan Kara 			journal_t *journal = EXT4_SB(inode->i_sb)->s_journal;
2162d859db3SJan Kara 			tid_t commit_tid = EXT4_I(inode)->i_datasync_tid;
2172d859db3SJan Kara 
218d76a3a77STheodore Ts'o 			jbd2_complete_transaction(journal, commit_tid);
2192d859db3SJan Kara 			filemap_write_and_wait(&inode->i_data);
2202d859db3SJan Kara 		}
22191b0abe3SJohannes Weiner 		truncate_inode_pages_final(&inode->i_data);
2225dc23bddSJan Kara 
2235dc23bddSJan Kara 		WARN_ON(atomic_read(&EXT4_I(inode)->i_ioend_count));
2240930fcc1SAl Viro 		goto no_delete;
2250930fcc1SAl Viro 	}
2260930fcc1SAl Viro 
227907f4554SChristoph Hellwig 	if (!is_bad_inode(inode))
228871a2931SChristoph Hellwig 		dquot_initialize(inode);
229907f4554SChristoph Hellwig 
230678aaf48SJan Kara 	if (ext4_should_order_data(inode))
231678aaf48SJan Kara 		ext4_begin_ordered_truncate(inode, 0);
23291b0abe3SJohannes Weiner 	truncate_inode_pages_final(&inode->i_data);
233ac27a0ecSDave Kleikamp 
2345dc23bddSJan Kara 	WARN_ON(atomic_read(&EXT4_I(inode)->i_ioend_count));
235ac27a0ecSDave Kleikamp 	if (is_bad_inode(inode))
236ac27a0ecSDave Kleikamp 		goto no_delete;
237ac27a0ecSDave Kleikamp 
2388e8ad8a5SJan Kara 	/*
2398e8ad8a5SJan Kara 	 * Protect us against freezing - iput() caller didn't have to have any
2408e8ad8a5SJan Kara 	 * protection against it
2418e8ad8a5SJan Kara 	 */
2428e8ad8a5SJan Kara 	sb_start_intwrite(inode->i_sb);
2439924a92aSTheodore Ts'o 	handle = ext4_journal_start(inode, EXT4_HT_TRUNCATE,
2449924a92aSTheodore Ts'o 				    ext4_blocks_for_truncate(inode)+3);
245ac27a0ecSDave Kleikamp 	if (IS_ERR(handle)) {
246bc965ab3STheodore Ts'o 		ext4_std_error(inode->i_sb, PTR_ERR(handle));
247ac27a0ecSDave Kleikamp 		/*
248ac27a0ecSDave Kleikamp 		 * If we're going to skip the normal cleanup, we still need to
249ac27a0ecSDave Kleikamp 		 * make sure that the in-core orphan linked list is properly
250ac27a0ecSDave Kleikamp 		 * cleaned up.
251ac27a0ecSDave Kleikamp 		 */
252617ba13bSMingming Cao 		ext4_orphan_del(NULL, inode);
2538e8ad8a5SJan Kara 		sb_end_intwrite(inode->i_sb);
254ac27a0ecSDave Kleikamp 		goto no_delete;
255ac27a0ecSDave Kleikamp 	}
256ac27a0ecSDave Kleikamp 
257ac27a0ecSDave Kleikamp 	if (IS_SYNC(inode))
2580390131bSFrank Mayhar 		ext4_handle_sync(handle);
259ac27a0ecSDave Kleikamp 	inode->i_size = 0;
260bc965ab3STheodore Ts'o 	err = ext4_mark_inode_dirty(handle, inode);
261bc965ab3STheodore Ts'o 	if (err) {
26212062dddSEric Sandeen 		ext4_warning(inode->i_sb,
263bc965ab3STheodore Ts'o 			     "couldn't mark inode dirty (err %d)", err);
264bc965ab3STheodore Ts'o 		goto stop_handle;
265bc965ab3STheodore Ts'o 	}
266ac27a0ecSDave Kleikamp 	if (inode->i_blocks)
267617ba13bSMingming Cao 		ext4_truncate(inode);
268bc965ab3STheodore Ts'o 
269bc965ab3STheodore Ts'o 	/*
270bc965ab3STheodore Ts'o 	 * ext4_ext_truncate() doesn't reserve any slop when it
271bc965ab3STheodore Ts'o 	 * restarts journal transactions; therefore there may not be
272bc965ab3STheodore Ts'o 	 * enough credits left in the handle to remove the inode from
273bc965ab3STheodore Ts'o 	 * the orphan list and set the dtime field.
274bc965ab3STheodore Ts'o 	 */
2750390131bSFrank Mayhar 	if (!ext4_handle_has_enough_credits(handle, 3)) {
276bc965ab3STheodore Ts'o 		err = ext4_journal_extend(handle, 3);
277bc965ab3STheodore Ts'o 		if (err > 0)
278bc965ab3STheodore Ts'o 			err = ext4_journal_restart(handle, 3);
279bc965ab3STheodore Ts'o 		if (err != 0) {
28012062dddSEric Sandeen 			ext4_warning(inode->i_sb,
281bc965ab3STheodore Ts'o 				     "couldn't extend journal (err %d)", err);
282bc965ab3STheodore Ts'o 		stop_handle:
283bc965ab3STheodore Ts'o 			ext4_journal_stop(handle);
28445388219STheodore Ts'o 			ext4_orphan_del(NULL, inode);
2858e8ad8a5SJan Kara 			sb_end_intwrite(inode->i_sb);
286bc965ab3STheodore Ts'o 			goto no_delete;
287bc965ab3STheodore Ts'o 		}
288bc965ab3STheodore Ts'o 	}
289bc965ab3STheodore Ts'o 
290ac27a0ecSDave Kleikamp 	/*
291617ba13bSMingming Cao 	 * Kill off the orphan record which ext4_truncate created.
292ac27a0ecSDave Kleikamp 	 * AKPM: I think this can be inside the above `if'.
293617ba13bSMingming Cao 	 * Note that ext4_orphan_del() has to be able to cope with the
294ac27a0ecSDave Kleikamp 	 * deletion of a non-existent orphan - this is because we don't
295617ba13bSMingming Cao 	 * know if ext4_truncate() actually created an orphan record.
296ac27a0ecSDave Kleikamp 	 * (Well, we could do this if we need to, but heck - it works)
297ac27a0ecSDave Kleikamp 	 */
298617ba13bSMingming Cao 	ext4_orphan_del(handle, inode);
299617ba13bSMingming Cao 	EXT4_I(inode)->i_dtime	= get_seconds();
300ac27a0ecSDave Kleikamp 
301ac27a0ecSDave Kleikamp 	/*
302ac27a0ecSDave Kleikamp 	 * One subtle ordering requirement: if anything has gone wrong
303ac27a0ecSDave Kleikamp 	 * (transaction abort, IO errors, whatever), then we can still
304ac27a0ecSDave Kleikamp 	 * do these next steps (the fs will already have been marked as
305ac27a0ecSDave Kleikamp 	 * having errors), but we can't free the inode if the mark_dirty
306ac27a0ecSDave Kleikamp 	 * fails.
307ac27a0ecSDave Kleikamp 	 */
308617ba13bSMingming Cao 	if (ext4_mark_inode_dirty(handle, inode))
309ac27a0ecSDave Kleikamp 		/* If that failed, just do the required in-core inode clear. */
3100930fcc1SAl Viro 		ext4_clear_inode(inode);
311ac27a0ecSDave Kleikamp 	else
312617ba13bSMingming Cao 		ext4_free_inode(handle, inode);
313617ba13bSMingming Cao 	ext4_journal_stop(handle);
3148e8ad8a5SJan Kara 	sb_end_intwrite(inode->i_sb);
315ac27a0ecSDave Kleikamp 	return;
316ac27a0ecSDave Kleikamp no_delete:
3170930fcc1SAl Viro 	ext4_clear_inode(inode);	/* We must guarantee clearing of inode... */
318ac27a0ecSDave Kleikamp }
319ac27a0ecSDave Kleikamp 
320a9e7f447SDmitry Monakhov #ifdef CONFIG_QUOTA
321a9e7f447SDmitry Monakhov qsize_t *ext4_get_reserved_space(struct inode *inode)
32260e58e0fSMingming Cao {
323a9e7f447SDmitry Monakhov 	return &EXT4_I(inode)->i_reserved_quota;
32460e58e0fSMingming Cao }
325a9e7f447SDmitry Monakhov #endif
3269d0be502STheodore Ts'o 
32712219aeaSAneesh Kumar K.V /*
32812219aeaSAneesh Kumar K.V  * Calculate the number of metadata blocks need to reserve
3299d0be502STheodore Ts'o  * to allocate a block located at @lblock
33012219aeaSAneesh Kumar K.V  */
33101f49d0bSTheodore Ts'o static int ext4_calc_metadata_amount(struct inode *inode, ext4_lblk_t lblock)
33212219aeaSAneesh Kumar K.V {
33312e9b892SDmitry Monakhov 	if (ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS))
3349d0be502STheodore Ts'o 		return ext4_ext_calc_metadata_amount(inode, lblock);
33512219aeaSAneesh Kumar K.V 
3368bb2b247SAmir Goldstein 	return ext4_ind_calc_metadata_amount(inode, lblock);
33712219aeaSAneesh Kumar K.V }
33812219aeaSAneesh Kumar K.V 
3390637c6f4STheodore Ts'o /*
3400637c6f4STheodore Ts'o  * Called with i_data_sem down, which is important since we can call
3410637c6f4STheodore Ts'o  * ext4_discard_preallocations() from here.
3420637c6f4STheodore Ts'o  */
3435f634d06SAneesh Kumar K.V void ext4_da_update_reserve_space(struct inode *inode,
3445f634d06SAneesh Kumar K.V 					int used, int quota_claim)
34512219aeaSAneesh Kumar K.V {
34612219aeaSAneesh Kumar K.V 	struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb);
3470637c6f4STheodore Ts'o 	struct ext4_inode_info *ei = EXT4_I(inode);
34812219aeaSAneesh Kumar K.V 
3490637c6f4STheodore Ts'o 	spin_lock(&ei->i_block_reservation_lock);
350d8990240SAditya Kali 	trace_ext4_da_update_reserve_space(inode, used, quota_claim);
3510637c6f4STheodore Ts'o 	if (unlikely(used > ei->i_reserved_data_blocks)) {
3528de5c325STheodore Ts'o 		ext4_warning(inode->i_sb, "%s: ino %lu, used %d "
3531084f252STheodore Ts'o 			 "with only %d reserved data blocks",
3540637c6f4STheodore Ts'o 			 __func__, inode->i_ino, used,
3550637c6f4STheodore Ts'o 			 ei->i_reserved_data_blocks);
3560637c6f4STheodore Ts'o 		WARN_ON(1);
3570637c6f4STheodore Ts'o 		used = ei->i_reserved_data_blocks;
3586bc6e63fSAneesh Kumar K.V 	}
35912219aeaSAneesh Kumar K.V 
36097795d2aSBrian Foster 	if (unlikely(ei->i_allocated_meta_blocks > ei->i_reserved_meta_blocks)) {
36101a523ebSTheodore Ts'o 		ext4_warning(inode->i_sb, "ino %lu, allocated %d "
36201a523ebSTheodore Ts'o 			"with only %d reserved metadata blocks "
36301a523ebSTheodore Ts'o 			"(releasing %d blocks with reserved %d data blocks)",
36497795d2aSBrian Foster 			inode->i_ino, ei->i_allocated_meta_blocks,
36501a523ebSTheodore Ts'o 			     ei->i_reserved_meta_blocks, used,
36601a523ebSTheodore Ts'o 			     ei->i_reserved_data_blocks);
36797795d2aSBrian Foster 		WARN_ON(1);
36897795d2aSBrian Foster 		ei->i_allocated_meta_blocks = ei->i_reserved_meta_blocks;
36997795d2aSBrian Foster 	}
37097795d2aSBrian Foster 
3710637c6f4STheodore Ts'o 	/* Update per-inode reservations */
3720637c6f4STheodore Ts'o 	ei->i_reserved_data_blocks -= used;
3730637c6f4STheodore Ts'o 	ei->i_reserved_meta_blocks -= ei->i_allocated_meta_blocks;
37457042651STheodore Ts'o 	percpu_counter_sub(&sbi->s_dirtyclusters_counter,
37572b8ab9dSEric Sandeen 			   used + ei->i_allocated_meta_blocks);
3760637c6f4STheodore Ts'o 	ei->i_allocated_meta_blocks = 0;
3770637c6f4STheodore Ts'o 
3780637c6f4STheodore Ts'o 	if (ei->i_reserved_data_blocks == 0) {
3790637c6f4STheodore Ts'o 		/*
3800637c6f4STheodore Ts'o 		 * We can release all of the reserved metadata blocks
3810637c6f4STheodore Ts'o 		 * only when we have written all of the delayed
3820637c6f4STheodore Ts'o 		 * allocation blocks.
3830637c6f4STheodore Ts'o 		 */
38457042651STheodore Ts'o 		percpu_counter_sub(&sbi->s_dirtyclusters_counter,
38572b8ab9dSEric Sandeen 				   ei->i_reserved_meta_blocks);
386ee5f4d9cSTheodore Ts'o 		ei->i_reserved_meta_blocks = 0;
3879d0be502STheodore Ts'o 		ei->i_da_metadata_calc_len = 0;
3880637c6f4STheodore Ts'o 	}
38912219aeaSAneesh Kumar K.V 	spin_unlock(&EXT4_I(inode)->i_block_reservation_lock);
39060e58e0fSMingming Cao 
39172b8ab9dSEric Sandeen 	/* Update quota subsystem for data blocks */
39272b8ab9dSEric Sandeen 	if (quota_claim)
3937b415bf6SAditya Kali 		dquot_claim_block(inode, EXT4_C2B(sbi, used));
39472b8ab9dSEric Sandeen 	else {
3955f634d06SAneesh Kumar K.V 		/*
3965f634d06SAneesh Kumar K.V 		 * We did fallocate with an offset that is already delayed
3975f634d06SAneesh Kumar K.V 		 * allocated. So on delayed allocated writeback we should
39872b8ab9dSEric Sandeen 		 * not re-claim the quota for fallocated blocks.
3995f634d06SAneesh Kumar K.V 		 */
4007b415bf6SAditya Kali 		dquot_release_reservation_block(inode, EXT4_C2B(sbi, used));
4015f634d06SAneesh Kumar K.V 	}
402d6014301SAneesh Kumar K.V 
403d6014301SAneesh Kumar K.V 	/*
404d6014301SAneesh Kumar K.V 	 * If we have done all the pending block allocations and if
405d6014301SAneesh Kumar K.V 	 * there aren't any writers on the inode, we can discard the
406d6014301SAneesh Kumar K.V 	 * inode's preallocations.
407d6014301SAneesh Kumar K.V 	 */
4080637c6f4STheodore Ts'o 	if ((ei->i_reserved_data_blocks == 0) &&
4090637c6f4STheodore Ts'o 	    (atomic_read(&inode->i_writecount) == 0))
410d6014301SAneesh Kumar K.V 		ext4_discard_preallocations(inode);
41112219aeaSAneesh Kumar K.V }
41212219aeaSAneesh Kumar K.V 
413e29136f8STheodore Ts'o static int __check_block_validity(struct inode *inode, const char *func,
414c398eda0STheodore Ts'o 				unsigned int line,
41524676da4STheodore Ts'o 				struct ext4_map_blocks *map)
4166fd058f7STheodore Ts'o {
41724676da4STheodore Ts'o 	if (!ext4_data_block_valid(EXT4_SB(inode->i_sb), map->m_pblk,
41824676da4STheodore Ts'o 				   map->m_len)) {
419c398eda0STheodore Ts'o 		ext4_error_inode(inode, func, line, map->m_pblk,
420c398eda0STheodore Ts'o 				 "lblock %lu mapped to illegal pblock "
42124676da4STheodore Ts'o 				 "(length %d)", (unsigned long) map->m_lblk,
422c398eda0STheodore Ts'o 				 map->m_len);
4236fd058f7STheodore Ts'o 		return -EIO;
4246fd058f7STheodore Ts'o 	}
4256fd058f7STheodore Ts'o 	return 0;
4266fd058f7STheodore Ts'o }
4276fd058f7STheodore Ts'o 
428e29136f8STheodore Ts'o #define check_block_validity(inode, map)	\
429c398eda0STheodore Ts'o 	__check_block_validity((inode), __func__, __LINE__, (map))
430e29136f8STheodore Ts'o 
431921f266bSDmitry Monakhov #ifdef ES_AGGRESSIVE_TEST
432921f266bSDmitry Monakhov static void ext4_map_blocks_es_recheck(handle_t *handle,
433921f266bSDmitry Monakhov 				       struct inode *inode,
434921f266bSDmitry Monakhov 				       struct ext4_map_blocks *es_map,
435921f266bSDmitry Monakhov 				       struct ext4_map_blocks *map,
436921f266bSDmitry Monakhov 				       int flags)
437921f266bSDmitry Monakhov {
438921f266bSDmitry Monakhov 	int retval;
439921f266bSDmitry Monakhov 
440921f266bSDmitry Monakhov 	map->m_flags = 0;
441921f266bSDmitry Monakhov 	/*
442921f266bSDmitry Monakhov 	 * There is a race window that the result is not the same.
443921f266bSDmitry Monakhov 	 * e.g. xfstests #223 when dioread_nolock enables.  The reason
444921f266bSDmitry Monakhov 	 * is that we lookup a block mapping in extent status tree with
445921f266bSDmitry Monakhov 	 * out taking i_data_sem.  So at the time the unwritten extent
446921f266bSDmitry Monakhov 	 * could be converted.
447921f266bSDmitry Monakhov 	 */
448921f266bSDmitry Monakhov 	if (!(flags & EXT4_GET_BLOCKS_NO_LOCK))
449c8b459f4SLukas Czerner 		down_read(&EXT4_I(inode)->i_data_sem);
450921f266bSDmitry Monakhov 	if (ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS)) {
451921f266bSDmitry Monakhov 		retval = ext4_ext_map_blocks(handle, inode, map, flags &
452921f266bSDmitry Monakhov 					     EXT4_GET_BLOCKS_KEEP_SIZE);
453921f266bSDmitry Monakhov 	} else {
454921f266bSDmitry Monakhov 		retval = ext4_ind_map_blocks(handle, inode, map, flags &
455921f266bSDmitry Monakhov 					     EXT4_GET_BLOCKS_KEEP_SIZE);
456921f266bSDmitry Monakhov 	}
457921f266bSDmitry Monakhov 	if (!(flags & EXT4_GET_BLOCKS_NO_LOCK))
458921f266bSDmitry Monakhov 		up_read((&EXT4_I(inode)->i_data_sem));
459921f266bSDmitry Monakhov 	/*
460921f266bSDmitry Monakhov 	 * Clear EXT4_MAP_FROM_CLUSTER and EXT4_MAP_BOUNDARY flag
461921f266bSDmitry Monakhov 	 * because it shouldn't be marked in es_map->m_flags.
462921f266bSDmitry Monakhov 	 */
463921f266bSDmitry Monakhov 	map->m_flags &= ~(EXT4_MAP_FROM_CLUSTER | EXT4_MAP_BOUNDARY);
464921f266bSDmitry Monakhov 
465921f266bSDmitry Monakhov 	/*
466921f266bSDmitry Monakhov 	 * We don't check m_len because extent will be collpased in status
467921f266bSDmitry Monakhov 	 * tree.  So the m_len might not equal.
468921f266bSDmitry Monakhov 	 */
469921f266bSDmitry Monakhov 	if (es_map->m_lblk != map->m_lblk ||
470921f266bSDmitry Monakhov 	    es_map->m_flags != map->m_flags ||
471921f266bSDmitry Monakhov 	    es_map->m_pblk != map->m_pblk) {
472bdafe42aSTheodore Ts'o 		printk("ES cache assertion failed for inode: %lu "
473921f266bSDmitry Monakhov 		       "es_cached ex [%d/%d/%llu/%x] != "
474921f266bSDmitry Monakhov 		       "found ex [%d/%d/%llu/%x] retval %d flags %x\n",
475921f266bSDmitry Monakhov 		       inode->i_ino, es_map->m_lblk, es_map->m_len,
476921f266bSDmitry Monakhov 		       es_map->m_pblk, es_map->m_flags, map->m_lblk,
477921f266bSDmitry Monakhov 		       map->m_len, map->m_pblk, map->m_flags,
478921f266bSDmitry Monakhov 		       retval, flags);
479921f266bSDmitry Monakhov 	}
480921f266bSDmitry Monakhov }
481921f266bSDmitry Monakhov #endif /* ES_AGGRESSIVE_TEST */
482921f266bSDmitry Monakhov 
48355138e0bSTheodore Ts'o /*
484e35fd660STheodore Ts'o  * The ext4_map_blocks() function tries to look up the requested blocks,
4852b2d6d01STheodore Ts'o  * and returns if the blocks are already mapped.
486f5ab0d1fSMingming Cao  *
487f5ab0d1fSMingming Cao  * Otherwise it takes the write lock of the i_data_sem and allocate blocks
488f5ab0d1fSMingming Cao  * and store the allocated blocks in the result buffer head and mark it
489f5ab0d1fSMingming Cao  * mapped.
490f5ab0d1fSMingming Cao  *
491e35fd660STheodore Ts'o  * If file type is extents based, it will call ext4_ext_map_blocks(),
492e35fd660STheodore Ts'o  * Otherwise, call with ext4_ind_map_blocks() to handle indirect mapping
493f5ab0d1fSMingming Cao  * based files
494f5ab0d1fSMingming Cao  *
495556615dcSLukas Czerner  * On success, it returns the number of blocks being mapped or allocated.
496556615dcSLukas Czerner  * if create==0 and the blocks are pre-allocated and unwritten block,
497f5ab0d1fSMingming Cao  * the result buffer head is unmapped. If the create ==1, it will make sure
498f5ab0d1fSMingming Cao  * the buffer head is mapped.
499f5ab0d1fSMingming Cao  *
500f5ab0d1fSMingming Cao  * It returns 0 if plain look up failed (blocks have not been allocated), in
501df3ab170STao Ma  * that case, buffer head is unmapped
502f5ab0d1fSMingming Cao  *
503f5ab0d1fSMingming Cao  * It returns the error in case of allocation failure.
504f5ab0d1fSMingming Cao  */
505e35fd660STheodore Ts'o int ext4_map_blocks(handle_t *handle, struct inode *inode,
506e35fd660STheodore Ts'o 		    struct ext4_map_blocks *map, int flags)
5070e855ac8SAneesh Kumar K.V {
508d100eef2SZheng Liu 	struct extent_status es;
5090e855ac8SAneesh Kumar K.V 	int retval;
510b8a86845SLukas Czerner 	int ret = 0;
511921f266bSDmitry Monakhov #ifdef ES_AGGRESSIVE_TEST
512921f266bSDmitry Monakhov 	struct ext4_map_blocks orig_map;
513921f266bSDmitry Monakhov 
514921f266bSDmitry Monakhov 	memcpy(&orig_map, map, sizeof(*map));
515921f266bSDmitry Monakhov #endif
516f5ab0d1fSMingming Cao 
517e35fd660STheodore Ts'o 	map->m_flags = 0;
518e35fd660STheodore Ts'o 	ext_debug("ext4_map_blocks(): inode %lu, flag %d, max_blocks %u,"
519e35fd660STheodore Ts'o 		  "logical block %lu\n", inode->i_ino, flags, map->m_len,
520e35fd660STheodore Ts'o 		  (unsigned long) map->m_lblk);
521d100eef2SZheng Liu 
522e861b5e9STheodore Ts'o 	/*
523e861b5e9STheodore Ts'o 	 * ext4_map_blocks returns an int, and m_len is an unsigned int
524e861b5e9STheodore Ts'o 	 */
525e861b5e9STheodore Ts'o 	if (unlikely(map->m_len > INT_MAX))
526e861b5e9STheodore Ts'o 		map->m_len = INT_MAX;
527e861b5e9STheodore Ts'o 
5284adb6ab3SKazuya Mio 	/* We can handle the block number less than EXT_MAX_BLOCKS */
5294adb6ab3SKazuya Mio 	if (unlikely(map->m_lblk >= EXT_MAX_BLOCKS))
5304adb6ab3SKazuya Mio 		return -EIO;
5314adb6ab3SKazuya Mio 
532d100eef2SZheng Liu 	/* Lookup extent status tree firstly */
533d100eef2SZheng Liu 	if (ext4_es_lookup_extent(inode, map->m_lblk, &es)) {
53463b99968STheodore Ts'o 		ext4_es_lru_add(inode);
535d100eef2SZheng Liu 		if (ext4_es_is_written(&es) || ext4_es_is_unwritten(&es)) {
536d100eef2SZheng Liu 			map->m_pblk = ext4_es_pblock(&es) +
537d100eef2SZheng Liu 					map->m_lblk - es.es_lblk;
538d100eef2SZheng Liu 			map->m_flags |= ext4_es_is_written(&es) ?
539d100eef2SZheng Liu 					EXT4_MAP_MAPPED : EXT4_MAP_UNWRITTEN;
540d100eef2SZheng Liu 			retval = es.es_len - (map->m_lblk - es.es_lblk);
541d100eef2SZheng Liu 			if (retval > map->m_len)
542d100eef2SZheng Liu 				retval = map->m_len;
543d100eef2SZheng Liu 			map->m_len = retval;
544d100eef2SZheng Liu 		} else if (ext4_es_is_delayed(&es) || ext4_es_is_hole(&es)) {
545d100eef2SZheng Liu 			retval = 0;
546d100eef2SZheng Liu 		} else {
547d100eef2SZheng Liu 			BUG_ON(1);
548d100eef2SZheng Liu 		}
549921f266bSDmitry Monakhov #ifdef ES_AGGRESSIVE_TEST
550921f266bSDmitry Monakhov 		ext4_map_blocks_es_recheck(handle, inode, map,
551921f266bSDmitry Monakhov 					   &orig_map, flags);
552921f266bSDmitry Monakhov #endif
553d100eef2SZheng Liu 		goto found;
554d100eef2SZheng Liu 	}
555d100eef2SZheng Liu 
5564df3d265SAneesh Kumar K.V 	/*
557b920c755STheodore Ts'o 	 * Try to see if we can get the block without requesting a new
558b920c755STheodore Ts'o 	 * file system block.
5594df3d265SAneesh Kumar K.V 	 */
560729f52c6SZheng Liu 	if (!(flags & EXT4_GET_BLOCKS_NO_LOCK))
561c8b459f4SLukas Czerner 		down_read(&EXT4_I(inode)->i_data_sem);
56212e9b892SDmitry Monakhov 	if (ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS)) {
563a4e5d88bSDmitry Monakhov 		retval = ext4_ext_map_blocks(handle, inode, map, flags &
564a4e5d88bSDmitry Monakhov 					     EXT4_GET_BLOCKS_KEEP_SIZE);
5654df3d265SAneesh Kumar K.V 	} else {
566a4e5d88bSDmitry Monakhov 		retval = ext4_ind_map_blocks(handle, inode, map, flags &
567a4e5d88bSDmitry Monakhov 					     EXT4_GET_BLOCKS_KEEP_SIZE);
5680e855ac8SAneesh Kumar K.V 	}
569f7fec032SZheng Liu 	if (retval > 0) {
5703be78c73STheodore Ts'o 		unsigned int status;
571f7fec032SZheng Liu 
57244fb851dSZheng Liu 		if (unlikely(retval != map->m_len)) {
57344fb851dSZheng Liu 			ext4_warning(inode->i_sb,
57444fb851dSZheng Liu 				     "ES len assertion failed for inode "
57544fb851dSZheng Liu 				     "%lu: retval %d != map->m_len %d",
57644fb851dSZheng Liu 				     inode->i_ino, retval, map->m_len);
57744fb851dSZheng Liu 			WARN_ON(1);
578921f266bSDmitry Monakhov 		}
579921f266bSDmitry Monakhov 
580f7fec032SZheng Liu 		status = map->m_flags & EXT4_MAP_UNWRITTEN ?
581f7fec032SZheng Liu 				EXTENT_STATUS_UNWRITTEN : EXTENT_STATUS_WRITTEN;
582f7fec032SZheng Liu 		if (!(flags & EXT4_GET_BLOCKS_DELALLOC_RESERVE) &&
583f7fec032SZheng Liu 		    ext4_find_delalloc_range(inode, map->m_lblk,
584f7fec032SZheng Liu 					     map->m_lblk + map->m_len - 1))
585f7fec032SZheng Liu 			status |= EXTENT_STATUS_DELAYED;
586f7fec032SZheng Liu 		ret = ext4_es_insert_extent(inode, map->m_lblk,
587f7fec032SZheng Liu 					    map->m_len, map->m_pblk, status);
588f7fec032SZheng Liu 		if (ret < 0)
589f7fec032SZheng Liu 			retval = ret;
590f7fec032SZheng Liu 	}
591729f52c6SZheng Liu 	if (!(flags & EXT4_GET_BLOCKS_NO_LOCK))
5924df3d265SAneesh Kumar K.V 		up_read((&EXT4_I(inode)->i_data_sem));
593f5ab0d1fSMingming Cao 
594d100eef2SZheng Liu found:
595e35fd660STheodore Ts'o 	if (retval > 0 && map->m_flags & EXT4_MAP_MAPPED) {
596b8a86845SLukas Czerner 		ret = check_block_validity(inode, map);
5976fd058f7STheodore Ts'o 		if (ret != 0)
5986fd058f7STheodore Ts'o 			return ret;
5996fd058f7STheodore Ts'o 	}
6006fd058f7STheodore Ts'o 
601f5ab0d1fSMingming Cao 	/* If it is only a block(s) look up */
602c2177057STheodore Ts'o 	if ((flags & EXT4_GET_BLOCKS_CREATE) == 0)
6034df3d265SAneesh Kumar K.V 		return retval;
6044df3d265SAneesh Kumar K.V 
6054df3d265SAneesh Kumar K.V 	/*
606f5ab0d1fSMingming Cao 	 * Returns if the blocks have already allocated
607f5ab0d1fSMingming Cao 	 *
608f5ab0d1fSMingming Cao 	 * Note that if blocks have been preallocated
609df3ab170STao Ma 	 * ext4_ext_get_block() returns the create = 0
610f5ab0d1fSMingming Cao 	 * with buffer head unmapped.
611f5ab0d1fSMingming Cao 	 */
612e35fd660STheodore Ts'o 	if (retval > 0 && map->m_flags & EXT4_MAP_MAPPED)
613b8a86845SLukas Czerner 		/*
614b8a86845SLukas Czerner 		 * If we need to convert extent to unwritten
615b8a86845SLukas Czerner 		 * we continue and do the actual work in
616b8a86845SLukas Czerner 		 * ext4_ext_map_blocks()
617b8a86845SLukas Czerner 		 */
618b8a86845SLukas Czerner 		if (!(flags & EXT4_GET_BLOCKS_CONVERT_UNWRITTEN))
619f5ab0d1fSMingming Cao 			return retval;
620f5ab0d1fSMingming Cao 
621f5ab0d1fSMingming Cao 	/*
622a25a4e1aSZheng Liu 	 * Here we clear m_flags because after allocating an new extent,
623a25a4e1aSZheng Liu 	 * it will be set again.
6242a8964d6SAneesh Kumar K.V 	 */
625a25a4e1aSZheng Liu 	map->m_flags &= ~EXT4_MAP_FLAGS;
6262a8964d6SAneesh Kumar K.V 
6272a8964d6SAneesh Kumar K.V 	/*
628556615dcSLukas Czerner 	 * New blocks allocate and/or writing to unwritten extent
629f5ab0d1fSMingming Cao 	 * will possibly result in updating i_data, so we take
630f5ab0d1fSMingming Cao 	 * the write lock of i_data_sem, and call get_blocks()
631f5ab0d1fSMingming Cao 	 * with create == 1 flag.
6324df3d265SAneesh Kumar K.V 	 */
633c8b459f4SLukas Czerner 	down_write(&EXT4_I(inode)->i_data_sem);
634d2a17637SMingming Cao 
635d2a17637SMingming Cao 	/*
636d2a17637SMingming Cao 	 * if the caller is from delayed allocation writeout path
637d2a17637SMingming Cao 	 * we have already reserved fs blocks for allocation
638d2a17637SMingming Cao 	 * let the underlying get_block() function know to
639d2a17637SMingming Cao 	 * avoid double accounting
640d2a17637SMingming Cao 	 */
641c2177057STheodore Ts'o 	if (flags & EXT4_GET_BLOCKS_DELALLOC_RESERVE)
642f2321097STheodore Ts'o 		ext4_set_inode_state(inode, EXT4_STATE_DELALLOC_RESERVED);
6434df3d265SAneesh Kumar K.V 	/*
6444df3d265SAneesh Kumar K.V 	 * We need to check for EXT4 here because migrate
6454df3d265SAneesh Kumar K.V 	 * could have changed the inode type in between
6464df3d265SAneesh Kumar K.V 	 */
64712e9b892SDmitry Monakhov 	if (ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS)) {
648e35fd660STheodore Ts'o 		retval = ext4_ext_map_blocks(handle, inode, map, flags);
6490e855ac8SAneesh Kumar K.V 	} else {
650e35fd660STheodore Ts'o 		retval = ext4_ind_map_blocks(handle, inode, map, flags);
651267e4db9SAneesh Kumar K.V 
652e35fd660STheodore Ts'o 		if (retval > 0 && map->m_flags & EXT4_MAP_NEW) {
653267e4db9SAneesh Kumar K.V 			/*
654267e4db9SAneesh Kumar K.V 			 * We allocated new blocks which will result in
655267e4db9SAneesh Kumar K.V 			 * i_data's format changing.  Force the migrate
656267e4db9SAneesh Kumar K.V 			 * to fail by clearing migrate flags
657267e4db9SAneesh Kumar K.V 			 */
65819f5fb7aSTheodore Ts'o 			ext4_clear_inode_state(inode, EXT4_STATE_EXT_MIGRATE);
659267e4db9SAneesh Kumar K.V 		}
6602ac3b6e0STheodore Ts'o 
661d2a17637SMingming Cao 		/*
6622ac3b6e0STheodore Ts'o 		 * Update reserved blocks/metadata blocks after successful
6635f634d06SAneesh Kumar K.V 		 * block allocation which had been deferred till now. We don't
6645f634d06SAneesh Kumar K.V 		 * support fallocate for non extent files. So we can update
6655f634d06SAneesh Kumar K.V 		 * reserve space here.
666d2a17637SMingming Cao 		 */
6675f634d06SAneesh Kumar K.V 		if ((retval > 0) &&
6681296cc85SAneesh Kumar K.V 			(flags & EXT4_GET_BLOCKS_DELALLOC_RESERVE))
6695f634d06SAneesh Kumar K.V 			ext4_da_update_reserve_space(inode, retval, 1);
6705f634d06SAneesh Kumar K.V 	}
671f7fec032SZheng Liu 	if (flags & EXT4_GET_BLOCKS_DELALLOC_RESERVE)
672f2321097STheodore Ts'o 		ext4_clear_inode_state(inode, EXT4_STATE_DELALLOC_RESERVED);
673d2a17637SMingming Cao 
674f7fec032SZheng Liu 	if (retval > 0) {
6753be78c73STheodore Ts'o 		unsigned int status;
676f7fec032SZheng Liu 
67744fb851dSZheng Liu 		if (unlikely(retval != map->m_len)) {
67844fb851dSZheng Liu 			ext4_warning(inode->i_sb,
67944fb851dSZheng Liu 				     "ES len assertion failed for inode "
68044fb851dSZheng Liu 				     "%lu: retval %d != map->m_len %d",
68144fb851dSZheng Liu 				     inode->i_ino, retval, map->m_len);
68244fb851dSZheng Liu 			WARN_ON(1);
683921f266bSDmitry Monakhov 		}
684921f266bSDmitry Monakhov 
685adb23551SZheng Liu 		/*
686adb23551SZheng Liu 		 * If the extent has been zeroed out, we don't need to update
687adb23551SZheng Liu 		 * extent status tree.
688adb23551SZheng Liu 		 */
689adb23551SZheng Liu 		if ((flags & EXT4_GET_BLOCKS_PRE_IO) &&
690adb23551SZheng Liu 		    ext4_es_lookup_extent(inode, map->m_lblk, &es)) {
691adb23551SZheng Liu 			if (ext4_es_is_written(&es))
692adb23551SZheng Liu 				goto has_zeroout;
693adb23551SZheng Liu 		}
694f7fec032SZheng Liu 		status = map->m_flags & EXT4_MAP_UNWRITTEN ?
695f7fec032SZheng Liu 				EXTENT_STATUS_UNWRITTEN : EXTENT_STATUS_WRITTEN;
696f7fec032SZheng Liu 		if (!(flags & EXT4_GET_BLOCKS_DELALLOC_RESERVE) &&
697f7fec032SZheng Liu 		    ext4_find_delalloc_range(inode, map->m_lblk,
698f7fec032SZheng Liu 					     map->m_lblk + map->m_len - 1))
699f7fec032SZheng Liu 			status |= EXTENT_STATUS_DELAYED;
700f7fec032SZheng Liu 		ret = ext4_es_insert_extent(inode, map->m_lblk, map->m_len,
701f7fec032SZheng Liu 					    map->m_pblk, status);
70251865fdaSZheng Liu 		if (ret < 0)
70351865fdaSZheng Liu 			retval = ret;
70451865fdaSZheng Liu 	}
7055356f261SAditya Kali 
706adb23551SZheng Liu has_zeroout:
7070e855ac8SAneesh Kumar K.V 	up_write((&EXT4_I(inode)->i_data_sem));
708e35fd660STheodore Ts'o 	if (retval > 0 && map->m_flags & EXT4_MAP_MAPPED) {
709b8a86845SLukas Czerner 		ret = check_block_validity(inode, map);
7106fd058f7STheodore Ts'o 		if (ret != 0)
7116fd058f7STheodore Ts'o 			return ret;
7126fd058f7STheodore Ts'o 	}
7130e855ac8SAneesh Kumar K.V 	return retval;
7140e855ac8SAneesh Kumar K.V }
7150e855ac8SAneesh Kumar K.V 
716f3bd1f3fSMingming Cao /* Maximum number of blocks we map for direct IO at once. */
717f3bd1f3fSMingming Cao #define DIO_MAX_BLOCKS 4096
718f3bd1f3fSMingming Cao 
7192ed88685STheodore Ts'o static int _ext4_get_block(struct inode *inode, sector_t iblock,
7202ed88685STheodore Ts'o 			   struct buffer_head *bh, int flags)
721ac27a0ecSDave Kleikamp {
7223e4fdaf8SDmitriy Monakhov 	handle_t *handle = ext4_journal_current_handle();
7232ed88685STheodore Ts'o 	struct ext4_map_blocks map;
7247fb5409dSJan Kara 	int ret = 0, started = 0;
725f3bd1f3fSMingming Cao 	int dio_credits;
726ac27a0ecSDave Kleikamp 
72746c7f254STao Ma 	if (ext4_has_inline_data(inode))
72846c7f254STao Ma 		return -ERANGE;
72946c7f254STao Ma 
7302ed88685STheodore Ts'o 	map.m_lblk = iblock;
7312ed88685STheodore Ts'o 	map.m_len = bh->b_size >> inode->i_blkbits;
7322ed88685STheodore Ts'o 
7338b0f165fSAnatol Pomozov 	if (flags && !(flags & EXT4_GET_BLOCKS_NO_LOCK) && !handle) {
7347fb5409dSJan Kara 		/* Direct IO write... */
7352ed88685STheodore Ts'o 		if (map.m_len > DIO_MAX_BLOCKS)
7362ed88685STheodore Ts'o 			map.m_len = DIO_MAX_BLOCKS;
7372ed88685STheodore Ts'o 		dio_credits = ext4_chunk_trans_blocks(inode, map.m_len);
7389924a92aSTheodore Ts'o 		handle = ext4_journal_start(inode, EXT4_HT_MAP_BLOCKS,
7399924a92aSTheodore Ts'o 					    dio_credits);
7407fb5409dSJan Kara 		if (IS_ERR(handle)) {
741ac27a0ecSDave Kleikamp 			ret = PTR_ERR(handle);
7422ed88685STheodore Ts'o 			return ret;
7437fb5409dSJan Kara 		}
7447fb5409dSJan Kara 		started = 1;
745ac27a0ecSDave Kleikamp 	}
746ac27a0ecSDave Kleikamp 
7472ed88685STheodore Ts'o 	ret = ext4_map_blocks(handle, inode, &map, flags);
748ac27a0ecSDave Kleikamp 	if (ret > 0) {
7497b7a8665SChristoph Hellwig 		ext4_io_end_t *io_end = ext4_inode_aio(inode);
7507b7a8665SChristoph Hellwig 
7512ed88685STheodore Ts'o 		map_bh(bh, inode->i_sb, map.m_pblk);
7522ed88685STheodore Ts'o 		bh->b_state = (bh->b_state & ~EXT4_MAP_FLAGS) | map.m_flags;
7537b7a8665SChristoph Hellwig 		if (io_end && io_end->flag & EXT4_IO_END_UNWRITTEN)
7547b7a8665SChristoph Hellwig 			set_buffer_defer_completion(bh);
7552ed88685STheodore Ts'o 		bh->b_size = inode->i_sb->s_blocksize * map.m_len;
756ac27a0ecSDave Kleikamp 		ret = 0;
757ac27a0ecSDave Kleikamp 	}
7587fb5409dSJan Kara 	if (started)
7597fb5409dSJan Kara 		ext4_journal_stop(handle);
760ac27a0ecSDave Kleikamp 	return ret;
761ac27a0ecSDave Kleikamp }
762ac27a0ecSDave Kleikamp 
7632ed88685STheodore Ts'o int ext4_get_block(struct inode *inode, sector_t iblock,
7642ed88685STheodore Ts'o 		   struct buffer_head *bh, int create)
7652ed88685STheodore Ts'o {
7662ed88685STheodore Ts'o 	return _ext4_get_block(inode, iblock, bh,
7672ed88685STheodore Ts'o 			       create ? EXT4_GET_BLOCKS_CREATE : 0);
7682ed88685STheodore Ts'o }
7692ed88685STheodore Ts'o 
770ac27a0ecSDave Kleikamp /*
771ac27a0ecSDave Kleikamp  * `handle' can be NULL if create is zero
772ac27a0ecSDave Kleikamp  */
773617ba13bSMingming Cao struct buffer_head *ext4_getblk(handle_t *handle, struct inode *inode,
774725d26d3SAneesh Kumar K.V 				ext4_lblk_t block, int create, int *errp)
775ac27a0ecSDave Kleikamp {
7762ed88685STheodore Ts'o 	struct ext4_map_blocks map;
7772ed88685STheodore Ts'o 	struct buffer_head *bh;
778ac27a0ecSDave Kleikamp 	int fatal = 0, err;
779ac27a0ecSDave Kleikamp 
780ac27a0ecSDave Kleikamp 	J_ASSERT(handle != NULL || create == 0);
781ac27a0ecSDave Kleikamp 
7822ed88685STheodore Ts'o 	map.m_lblk = block;
7832ed88685STheodore Ts'o 	map.m_len = 1;
7842ed88685STheodore Ts'o 	err = ext4_map_blocks(handle, inode, &map,
7852ed88685STheodore Ts'o 			      create ? EXT4_GET_BLOCKS_CREATE : 0);
7862ed88685STheodore Ts'o 
78790b0a973SCarlos Maiolino 	/* ensure we send some value back into *errp */
78890b0a973SCarlos Maiolino 	*errp = 0;
78990b0a973SCarlos Maiolino 
7900f70b406STheodore Ts'o 	if (create && err == 0)
7910f70b406STheodore Ts'o 		err = -ENOSPC;	/* should never happen */
7922ed88685STheodore Ts'o 	if (err < 0)
793ac27a0ecSDave Kleikamp 		*errp = err;
7942ed88685STheodore Ts'o 	if (err <= 0)
7952ed88685STheodore Ts'o 		return NULL;
7962ed88685STheodore Ts'o 
7972ed88685STheodore Ts'o 	bh = sb_getblk(inode->i_sb, map.m_pblk);
798aebf0243SWang Shilong 	if (unlikely(!bh)) {
799860d21e2STheodore Ts'o 		*errp = -ENOMEM;
8002ed88685STheodore Ts'o 		return NULL;
801ac27a0ecSDave Kleikamp 	}
8022ed88685STheodore Ts'o 	if (map.m_flags & EXT4_MAP_NEW) {
803ac27a0ecSDave Kleikamp 		J_ASSERT(create != 0);
804ac39849dSAneesh Kumar K.V 		J_ASSERT(handle != NULL);
805ac27a0ecSDave Kleikamp 
806ac27a0ecSDave Kleikamp 		/*
807ac27a0ecSDave Kleikamp 		 * Now that we do not always journal data, we should
808ac27a0ecSDave Kleikamp 		 * keep in mind whether this should always journal the
809ac27a0ecSDave Kleikamp 		 * new buffer as metadata.  For now, regular file
810617ba13bSMingming Cao 		 * writes use ext4_get_block instead, so it's not a
811ac27a0ecSDave Kleikamp 		 * problem.
812ac27a0ecSDave Kleikamp 		 */
813ac27a0ecSDave Kleikamp 		lock_buffer(bh);
814ac27a0ecSDave Kleikamp 		BUFFER_TRACE(bh, "call get_create_access");
815617ba13bSMingming Cao 		fatal = ext4_journal_get_create_access(handle, bh);
816ac27a0ecSDave Kleikamp 		if (!fatal && !buffer_uptodate(bh)) {
817ac27a0ecSDave Kleikamp 			memset(bh->b_data, 0, inode->i_sb->s_blocksize);
818ac27a0ecSDave Kleikamp 			set_buffer_uptodate(bh);
819ac27a0ecSDave Kleikamp 		}
820ac27a0ecSDave Kleikamp 		unlock_buffer(bh);
8210390131bSFrank Mayhar 		BUFFER_TRACE(bh, "call ext4_handle_dirty_metadata");
8220390131bSFrank Mayhar 		err = ext4_handle_dirty_metadata(handle, inode, bh);
823ac27a0ecSDave Kleikamp 		if (!fatal)
824ac27a0ecSDave Kleikamp 			fatal = err;
825ac27a0ecSDave Kleikamp 	} else {
826ac27a0ecSDave Kleikamp 		BUFFER_TRACE(bh, "not a new buffer");
827ac27a0ecSDave Kleikamp 	}
828ac27a0ecSDave Kleikamp 	if (fatal) {
829ac27a0ecSDave Kleikamp 		*errp = fatal;
830ac27a0ecSDave Kleikamp 		brelse(bh);
831ac27a0ecSDave Kleikamp 		bh = NULL;
832ac27a0ecSDave Kleikamp 	}
833ac27a0ecSDave Kleikamp 	return bh;
834ac27a0ecSDave Kleikamp }
835ac27a0ecSDave Kleikamp 
836617ba13bSMingming Cao struct buffer_head *ext4_bread(handle_t *handle, struct inode *inode,
837725d26d3SAneesh Kumar K.V 			       ext4_lblk_t block, int create, int *err)
838ac27a0ecSDave Kleikamp {
839ac27a0ecSDave Kleikamp 	struct buffer_head *bh;
840ac27a0ecSDave Kleikamp 
841617ba13bSMingming Cao 	bh = ext4_getblk(handle, inode, block, create, err);
842ac27a0ecSDave Kleikamp 	if (!bh)
843ac27a0ecSDave Kleikamp 		return bh;
844ac27a0ecSDave Kleikamp 	if (buffer_uptodate(bh))
845ac27a0ecSDave Kleikamp 		return bh;
84665299a3bSChristoph Hellwig 	ll_rw_block(READ | REQ_META | REQ_PRIO, 1, &bh);
847ac27a0ecSDave Kleikamp 	wait_on_buffer(bh);
848ac27a0ecSDave Kleikamp 	if (buffer_uptodate(bh))
849ac27a0ecSDave Kleikamp 		return bh;
850ac27a0ecSDave Kleikamp 	put_bh(bh);
851ac27a0ecSDave Kleikamp 	*err = -EIO;
852ac27a0ecSDave Kleikamp 	return NULL;
853ac27a0ecSDave Kleikamp }
854ac27a0ecSDave Kleikamp 
855f19d5870STao Ma int ext4_walk_page_buffers(handle_t *handle,
856ac27a0ecSDave Kleikamp 			   struct buffer_head *head,
857ac27a0ecSDave Kleikamp 			   unsigned from,
858ac27a0ecSDave Kleikamp 			   unsigned to,
859ac27a0ecSDave Kleikamp 			   int *partial,
860ac27a0ecSDave Kleikamp 			   int (*fn)(handle_t *handle,
861ac27a0ecSDave Kleikamp 				     struct buffer_head *bh))
862ac27a0ecSDave Kleikamp {
863ac27a0ecSDave Kleikamp 	struct buffer_head *bh;
864ac27a0ecSDave Kleikamp 	unsigned block_start, block_end;
865ac27a0ecSDave Kleikamp 	unsigned blocksize = head->b_size;
866ac27a0ecSDave Kleikamp 	int err, ret = 0;
867ac27a0ecSDave Kleikamp 	struct buffer_head *next;
868ac27a0ecSDave Kleikamp 
869ac27a0ecSDave Kleikamp 	for (bh = head, block_start = 0;
870ac27a0ecSDave Kleikamp 	     ret == 0 && (bh != head || !block_start);
871de9a55b8STheodore Ts'o 	     block_start = block_end, bh = next) {
872ac27a0ecSDave Kleikamp 		next = bh->b_this_page;
873ac27a0ecSDave Kleikamp 		block_end = block_start + blocksize;
874ac27a0ecSDave Kleikamp 		if (block_end <= from || block_start >= to) {
875ac27a0ecSDave Kleikamp 			if (partial && !buffer_uptodate(bh))
876ac27a0ecSDave Kleikamp 				*partial = 1;
877ac27a0ecSDave Kleikamp 			continue;
878ac27a0ecSDave Kleikamp 		}
879ac27a0ecSDave Kleikamp 		err = (*fn)(handle, bh);
880ac27a0ecSDave Kleikamp 		if (!ret)
881ac27a0ecSDave Kleikamp 			ret = err;
882ac27a0ecSDave Kleikamp 	}
883ac27a0ecSDave Kleikamp 	return ret;
884ac27a0ecSDave Kleikamp }
885ac27a0ecSDave Kleikamp 
886ac27a0ecSDave Kleikamp /*
887ac27a0ecSDave Kleikamp  * To preserve ordering, it is essential that the hole instantiation and
888ac27a0ecSDave Kleikamp  * the data write be encapsulated in a single transaction.  We cannot
889617ba13bSMingming Cao  * close off a transaction and start a new one between the ext4_get_block()
890dab291afSMingming Cao  * and the commit_write().  So doing the jbd2_journal_start at the start of
891ac27a0ecSDave Kleikamp  * prepare_write() is the right place.
892ac27a0ecSDave Kleikamp  *
89336ade451SJan Kara  * Also, this function can nest inside ext4_writepage().  In that case, we
89436ade451SJan Kara  * *know* that ext4_writepage() has generated enough buffer credits to do the
89536ade451SJan Kara  * whole page.  So we won't block on the journal in that case, which is good,
89636ade451SJan Kara  * because the caller may be PF_MEMALLOC.
897ac27a0ecSDave Kleikamp  *
898617ba13bSMingming Cao  * By accident, ext4 can be reentered when a transaction is open via
899ac27a0ecSDave Kleikamp  * quota file writes.  If we were to commit the transaction while thus
900ac27a0ecSDave Kleikamp  * reentered, there can be a deadlock - we would be holding a quota
901ac27a0ecSDave Kleikamp  * lock, and the commit would never complete if another thread had a
902ac27a0ecSDave Kleikamp  * transaction open and was blocking on the quota lock - a ranking
903ac27a0ecSDave Kleikamp  * violation.
904ac27a0ecSDave Kleikamp  *
905dab291afSMingming Cao  * So what we do is to rely on the fact that jbd2_journal_stop/journal_start
906ac27a0ecSDave Kleikamp  * will _not_ run commit under these circumstances because handle->h_ref
907ac27a0ecSDave Kleikamp  * is elevated.  We'll still have enough credits for the tiny quotafile
908ac27a0ecSDave Kleikamp  * write.
909ac27a0ecSDave Kleikamp  */
910f19d5870STao Ma int do_journal_get_write_access(handle_t *handle,
911ac27a0ecSDave Kleikamp 				struct buffer_head *bh)
912ac27a0ecSDave Kleikamp {
91356d35a4cSJan Kara 	int dirty = buffer_dirty(bh);
91456d35a4cSJan Kara 	int ret;
91556d35a4cSJan Kara 
916ac27a0ecSDave Kleikamp 	if (!buffer_mapped(bh) || buffer_freed(bh))
917ac27a0ecSDave Kleikamp 		return 0;
91856d35a4cSJan Kara 	/*
919ebdec241SChristoph Hellwig 	 * __block_write_begin() could have dirtied some buffers. Clean
92056d35a4cSJan Kara 	 * the dirty bit as jbd2_journal_get_write_access() could complain
92156d35a4cSJan Kara 	 * otherwise about fs integrity issues. Setting of the dirty bit
922ebdec241SChristoph Hellwig 	 * by __block_write_begin() isn't a real problem here as we clear
92356d35a4cSJan Kara 	 * the bit before releasing a page lock and thus writeback cannot
92456d35a4cSJan Kara 	 * ever write the buffer.
92556d35a4cSJan Kara 	 */
92656d35a4cSJan Kara 	if (dirty)
92756d35a4cSJan Kara 		clear_buffer_dirty(bh);
9285d601255Sliang xie 	BUFFER_TRACE(bh, "get write access");
92956d35a4cSJan Kara 	ret = ext4_journal_get_write_access(handle, bh);
93056d35a4cSJan Kara 	if (!ret && dirty)
93156d35a4cSJan Kara 		ret = ext4_handle_dirty_metadata(handle, NULL, bh);
93256d35a4cSJan Kara 	return ret;
933ac27a0ecSDave Kleikamp }
934ac27a0ecSDave Kleikamp 
9358b0f165fSAnatol Pomozov static int ext4_get_block_write_nolock(struct inode *inode, sector_t iblock,
9368b0f165fSAnatol Pomozov 		   struct buffer_head *bh_result, int create);
937bfc1af65SNick Piggin static int ext4_write_begin(struct file *file, struct address_space *mapping,
938bfc1af65SNick Piggin 			    loff_t pos, unsigned len, unsigned flags,
939bfc1af65SNick Piggin 			    struct page **pagep, void **fsdata)
940ac27a0ecSDave Kleikamp {
941bfc1af65SNick Piggin 	struct inode *inode = mapping->host;
9421938a150SAneesh Kumar K.V 	int ret, needed_blocks;
943ac27a0ecSDave Kleikamp 	handle_t *handle;
944ac27a0ecSDave Kleikamp 	int retries = 0;
945bfc1af65SNick Piggin 	struct page *page;
946bfc1af65SNick Piggin 	pgoff_t index;
947bfc1af65SNick Piggin 	unsigned from, to;
948bfc1af65SNick Piggin 
9499bffad1eSTheodore Ts'o 	trace_ext4_write_begin(inode, pos, len, flags);
9501938a150SAneesh Kumar K.V 	/*
9511938a150SAneesh Kumar K.V 	 * Reserve one block more for addition to orphan list in case
9521938a150SAneesh Kumar K.V 	 * we allocate blocks but write fails for some reason
9531938a150SAneesh Kumar K.V 	 */
9541938a150SAneesh Kumar K.V 	needed_blocks = ext4_writepage_trans_blocks(inode) + 1;
955bfc1af65SNick Piggin 	index = pos >> PAGE_CACHE_SHIFT;
956bfc1af65SNick Piggin 	from = pos & (PAGE_CACHE_SIZE - 1);
957bfc1af65SNick Piggin 	to = from + len;
958ac27a0ecSDave Kleikamp 
959f19d5870STao Ma 	if (ext4_test_inode_state(inode, EXT4_STATE_MAY_INLINE_DATA)) {
960f19d5870STao Ma 		ret = ext4_try_to_write_inline_data(mapping, inode, pos, len,
961f19d5870STao Ma 						    flags, pagep);
962f19d5870STao Ma 		if (ret < 0)
96347564bfbSTheodore Ts'o 			return ret;
96447564bfbSTheodore Ts'o 		if (ret == 1)
96547564bfbSTheodore Ts'o 			return 0;
966f19d5870STao Ma 	}
967f19d5870STao Ma 
96847564bfbSTheodore Ts'o 	/*
96947564bfbSTheodore Ts'o 	 * grab_cache_page_write_begin() can take a long time if the
97047564bfbSTheodore Ts'o 	 * system is thrashing due to memory pressure, or if the page
97147564bfbSTheodore Ts'o 	 * is being written back.  So grab it first before we start
97247564bfbSTheodore Ts'o 	 * the transaction handle.  This also allows us to allocate
97347564bfbSTheodore Ts'o 	 * the page (if needed) without using GFP_NOFS.
97447564bfbSTheodore Ts'o 	 */
97547564bfbSTheodore Ts'o retry_grab:
97654566b2cSNick Piggin 	page = grab_cache_page_write_begin(mapping, index, flags);
97747564bfbSTheodore Ts'o 	if (!page)
97847564bfbSTheodore Ts'o 		return -ENOMEM;
97947564bfbSTheodore Ts'o 	unlock_page(page);
98047564bfbSTheodore Ts'o 
98147564bfbSTheodore Ts'o retry_journal:
9829924a92aSTheodore Ts'o 	handle = ext4_journal_start(inode, EXT4_HT_WRITE_PAGE, needed_blocks);
983ac27a0ecSDave Kleikamp 	if (IS_ERR(handle)) {
98447564bfbSTheodore Ts'o 		page_cache_release(page);
98547564bfbSTheodore Ts'o 		return PTR_ERR(handle);
986cf108bcaSJan Kara 	}
987f19d5870STao Ma 
98847564bfbSTheodore Ts'o 	lock_page(page);
98947564bfbSTheodore Ts'o 	if (page->mapping != mapping) {
99047564bfbSTheodore Ts'o 		/* The page got truncated from under us */
99147564bfbSTheodore Ts'o 		unlock_page(page);
99247564bfbSTheodore Ts'o 		page_cache_release(page);
993cf108bcaSJan Kara 		ext4_journal_stop(handle);
99447564bfbSTheodore Ts'o 		goto retry_grab;
995cf108bcaSJan Kara 	}
9967afe5aa5SDmitry Monakhov 	/* In case writeback began while the page was unlocked */
9977afe5aa5SDmitry Monakhov 	wait_for_stable_page(page);
998cf108bcaSJan Kara 
999744692dcSJiaying Zhang 	if (ext4_should_dioread_nolock(inode))
10006e1db88dSChristoph Hellwig 		ret = __block_write_begin(page, pos, len, ext4_get_block_write);
1001744692dcSJiaying Zhang 	else
10026e1db88dSChristoph Hellwig 		ret = __block_write_begin(page, pos, len, ext4_get_block);
1003bfc1af65SNick Piggin 
1004bfc1af65SNick Piggin 	if (!ret && ext4_should_journal_data(inode)) {
1005f19d5870STao Ma 		ret = ext4_walk_page_buffers(handle, page_buffers(page),
1006f19d5870STao Ma 					     from, to, NULL,
1007f19d5870STao Ma 					     do_journal_get_write_access);
1008b46be050SAndrey Savochkin 	}
1009bfc1af65SNick Piggin 
1010bfc1af65SNick Piggin 	if (ret) {
1011bfc1af65SNick Piggin 		unlock_page(page);
1012ae4d5372SAneesh Kumar K.V 		/*
10136e1db88dSChristoph Hellwig 		 * __block_write_begin may have instantiated a few blocks
1014ae4d5372SAneesh Kumar K.V 		 * outside i_size.  Trim these off again. Don't need
1015ae4d5372SAneesh Kumar K.V 		 * i_size_read because we hold i_mutex.
10161938a150SAneesh Kumar K.V 		 *
10171938a150SAneesh Kumar K.V 		 * Add inode to orphan list in case we crash before
10181938a150SAneesh Kumar K.V 		 * truncate finishes
1019ae4d5372SAneesh Kumar K.V 		 */
1020ffacfa7aSJan Kara 		if (pos + len > inode->i_size && ext4_can_truncate(inode))
10211938a150SAneesh Kumar K.V 			ext4_orphan_add(handle, inode);
10221938a150SAneesh Kumar K.V 
10231938a150SAneesh Kumar K.V 		ext4_journal_stop(handle);
10241938a150SAneesh Kumar K.V 		if (pos + len > inode->i_size) {
1025b9a4207dSJan Kara 			ext4_truncate_failed_write(inode);
10261938a150SAneesh Kumar K.V 			/*
1027ffacfa7aSJan Kara 			 * If truncate failed early the inode might
10281938a150SAneesh Kumar K.V 			 * still be on the orphan list; we need to
10291938a150SAneesh Kumar K.V 			 * make sure the inode is removed from the
10301938a150SAneesh Kumar K.V 			 * orphan list in that case.
10311938a150SAneesh Kumar K.V 			 */
10321938a150SAneesh Kumar K.V 			if (inode->i_nlink)
10331938a150SAneesh Kumar K.V 				ext4_orphan_del(NULL, inode);
10341938a150SAneesh Kumar K.V 		}
1035bfc1af65SNick Piggin 
103647564bfbSTheodore Ts'o 		if (ret == -ENOSPC &&
103747564bfbSTheodore Ts'o 		    ext4_should_retry_alloc(inode->i_sb, &retries))
103847564bfbSTheodore Ts'o 			goto retry_journal;
103947564bfbSTheodore Ts'o 		page_cache_release(page);
104047564bfbSTheodore Ts'o 		return ret;
104147564bfbSTheodore Ts'o 	}
104247564bfbSTheodore Ts'o 	*pagep = page;
1043ac27a0ecSDave Kleikamp 	return ret;
1044ac27a0ecSDave Kleikamp }
1045ac27a0ecSDave Kleikamp 
1046bfc1af65SNick Piggin /* For write_end() in data=journal mode */
1047bfc1af65SNick Piggin static int write_end_fn(handle_t *handle, struct buffer_head *bh)
1048ac27a0ecSDave Kleikamp {
104913fca323STheodore Ts'o 	int ret;
1050ac27a0ecSDave Kleikamp 	if (!buffer_mapped(bh) || buffer_freed(bh))
1051ac27a0ecSDave Kleikamp 		return 0;
1052ac27a0ecSDave Kleikamp 	set_buffer_uptodate(bh);
105313fca323STheodore Ts'o 	ret = ext4_handle_dirty_metadata(handle, NULL, bh);
105413fca323STheodore Ts'o 	clear_buffer_meta(bh);
105513fca323STheodore Ts'o 	clear_buffer_prio(bh);
105613fca323STheodore Ts'o 	return ret;
1057ac27a0ecSDave Kleikamp }
1058ac27a0ecSDave Kleikamp 
1059eed4333fSZheng Liu /*
1060eed4333fSZheng Liu  * We need to pick up the new inode size which generic_commit_write gave us
1061eed4333fSZheng Liu  * `file' can be NULL - eg, when called from page_symlink().
1062eed4333fSZheng Liu  *
1063eed4333fSZheng Liu  * ext4 never places buffers on inode->i_mapping->private_list.  metadata
1064eed4333fSZheng Liu  * buffers are managed internally.
1065eed4333fSZheng Liu  */
1066eed4333fSZheng Liu static int ext4_write_end(struct file *file,
1067f8514083SAneesh Kumar K.V 			  struct address_space *mapping,
1068f8514083SAneesh Kumar K.V 			  loff_t pos, unsigned len, unsigned copied,
1069f8514083SAneesh Kumar K.V 			  struct page *page, void *fsdata)
1070f8514083SAneesh Kumar K.V {
1071f8514083SAneesh Kumar K.V 	handle_t *handle = ext4_journal_current_handle();
1072eed4333fSZheng Liu 	struct inode *inode = mapping->host;
1073eed4333fSZheng Liu 	int ret = 0, ret2;
1074eed4333fSZheng Liu 	int i_size_changed = 0;
1075eed4333fSZheng Liu 
1076eed4333fSZheng Liu 	trace_ext4_write_end(inode, pos, len, copied);
1077eed4333fSZheng Liu 	if (ext4_test_inode_state(inode, EXT4_STATE_ORDERED_MODE)) {
1078eed4333fSZheng Liu 		ret = ext4_jbd2_file_inode(handle, inode);
1079eed4333fSZheng Liu 		if (ret) {
1080eed4333fSZheng Liu 			unlock_page(page);
1081eed4333fSZheng Liu 			page_cache_release(page);
1082eed4333fSZheng Liu 			goto errout;
1083eed4333fSZheng Liu 		}
1084eed4333fSZheng Liu 	}
1085f8514083SAneesh Kumar K.V 
108642c832deSTheodore Ts'o 	if (ext4_has_inline_data(inode)) {
108742c832deSTheodore Ts'o 		ret = ext4_write_inline_data_end(inode, pos, len,
1088f19d5870STao Ma 						 copied, page);
108942c832deSTheodore Ts'o 		if (ret < 0)
109042c832deSTheodore Ts'o 			goto errout;
109142c832deSTheodore Ts'o 		copied = ret;
109242c832deSTheodore Ts'o 	} else
1093f19d5870STao Ma 		copied = block_write_end(file, mapping, pos,
1094f19d5870STao Ma 					 len, copied, page, fsdata);
1095f8514083SAneesh Kumar K.V 
1096f8514083SAneesh Kumar K.V 	/*
1097f8514083SAneesh Kumar K.V 	 * No need to use i_size_read() here, the i_size
1098eed4333fSZheng Liu 	 * cannot change under us because we hole i_mutex.
1099f8514083SAneesh Kumar K.V 	 *
1100f8514083SAneesh Kumar K.V 	 * But it's important to update i_size while still holding page lock:
1101f8514083SAneesh Kumar K.V 	 * page writeout could otherwise come in and zero beyond i_size.
1102f8514083SAneesh Kumar K.V 	 */
1103f8514083SAneesh Kumar K.V 	if (pos + copied > inode->i_size) {
1104f8514083SAneesh Kumar K.V 		i_size_write(inode, pos + copied);
1105f8514083SAneesh Kumar K.V 		i_size_changed = 1;
1106f8514083SAneesh Kumar K.V 	}
1107f8514083SAneesh Kumar K.V 
1108f8514083SAneesh Kumar K.V 	if (pos + copied > EXT4_I(inode)->i_disksize) {
1109f8514083SAneesh Kumar K.V 		/* We need to mark inode dirty even if
1110f8514083SAneesh Kumar K.V 		 * new_i_size is less that inode->i_size
1111eed4333fSZheng Liu 		 * but greater than i_disksize. (hint delalloc)
1112f8514083SAneesh Kumar K.V 		 */
1113f8514083SAneesh Kumar K.V 		ext4_update_i_disksize(inode, (pos + copied));
1114f8514083SAneesh Kumar K.V 		i_size_changed = 1;
1115f8514083SAneesh Kumar K.V 	}
1116f8514083SAneesh Kumar K.V 	unlock_page(page);
1117f8514083SAneesh Kumar K.V 	page_cache_release(page);
1118f8514083SAneesh Kumar K.V 
1119f8514083SAneesh Kumar K.V 	/*
1120f8514083SAneesh Kumar K.V 	 * Don't mark the inode dirty under page lock. First, it unnecessarily
1121f8514083SAneesh Kumar K.V 	 * makes the holding time of page lock longer. Second, it forces lock
1122f8514083SAneesh Kumar K.V 	 * ordering of page lock and transaction start for journaling
1123f8514083SAneesh Kumar K.V 	 * filesystems.
1124f8514083SAneesh Kumar K.V 	 */
1125f8514083SAneesh Kumar K.V 	if (i_size_changed)
1126f8514083SAneesh Kumar K.V 		ext4_mark_inode_dirty(handle, inode);
1127f8514083SAneesh Kumar K.V 
1128ffacfa7aSJan Kara 	if (pos + len > inode->i_size && ext4_can_truncate(inode))
1129f8514083SAneesh Kumar K.V 		/* if we have allocated more blocks and copied
1130f8514083SAneesh Kumar K.V 		 * less. We will have blocks allocated outside
1131f8514083SAneesh Kumar K.V 		 * inode->i_size. So truncate them
1132f8514083SAneesh Kumar K.V 		 */
1133f8514083SAneesh Kumar K.V 		ext4_orphan_add(handle, inode);
113474d553aaSTheodore Ts'o errout:
1135617ba13bSMingming Cao 	ret2 = ext4_journal_stop(handle);
1136ac27a0ecSDave Kleikamp 	if (!ret)
1137ac27a0ecSDave Kleikamp 		ret = ret2;
1138bfc1af65SNick Piggin 
1139f8514083SAneesh Kumar K.V 	if (pos + len > inode->i_size) {
1140b9a4207dSJan Kara 		ext4_truncate_failed_write(inode);
1141f8514083SAneesh Kumar K.V 		/*
1142ffacfa7aSJan Kara 		 * If truncate failed early the inode might still be
1143f8514083SAneesh Kumar K.V 		 * on the orphan list; we need to make sure the inode
1144f8514083SAneesh Kumar K.V 		 * is removed from the orphan list in that case.
1145f8514083SAneesh Kumar K.V 		 */
1146f8514083SAneesh Kumar K.V 		if (inode->i_nlink)
1147f8514083SAneesh Kumar K.V 			ext4_orphan_del(NULL, inode);
1148f8514083SAneesh Kumar K.V 	}
1149f8514083SAneesh Kumar K.V 
1150bfc1af65SNick Piggin 	return ret ? ret : copied;
1151ac27a0ecSDave Kleikamp }
1152ac27a0ecSDave Kleikamp 
1153bfc1af65SNick Piggin static int ext4_journalled_write_end(struct file *file,
1154bfc1af65SNick Piggin 				     struct address_space *mapping,
1155bfc1af65SNick Piggin 				     loff_t pos, unsigned len, unsigned copied,
1156bfc1af65SNick Piggin 				     struct page *page, void *fsdata)
1157ac27a0ecSDave Kleikamp {
1158617ba13bSMingming Cao 	handle_t *handle = ext4_journal_current_handle();
1159bfc1af65SNick Piggin 	struct inode *inode = mapping->host;
1160ac27a0ecSDave Kleikamp 	int ret = 0, ret2;
1161ac27a0ecSDave Kleikamp 	int partial = 0;
1162bfc1af65SNick Piggin 	unsigned from, to;
1163cf17fea6SAneesh Kumar K.V 	loff_t new_i_size;
1164ac27a0ecSDave Kleikamp 
11659bffad1eSTheodore Ts'o 	trace_ext4_journalled_write_end(inode, pos, len, copied);
1166bfc1af65SNick Piggin 	from = pos & (PAGE_CACHE_SIZE - 1);
1167bfc1af65SNick Piggin 	to = from + len;
1168bfc1af65SNick Piggin 
1169441c8508SCurt Wohlgemuth 	BUG_ON(!ext4_handle_valid(handle));
1170441c8508SCurt Wohlgemuth 
11713fdcfb66STao Ma 	if (ext4_has_inline_data(inode))
11723fdcfb66STao Ma 		copied = ext4_write_inline_data_end(inode, pos, len,
11733fdcfb66STao Ma 						    copied, page);
11743fdcfb66STao Ma 	else {
1175bfc1af65SNick Piggin 		if (copied < len) {
1176bfc1af65SNick Piggin 			if (!PageUptodate(page))
1177bfc1af65SNick Piggin 				copied = 0;
1178bfc1af65SNick Piggin 			page_zero_new_buffers(page, from+copied, to);
1179bfc1af65SNick Piggin 		}
1180ac27a0ecSDave Kleikamp 
1181f19d5870STao Ma 		ret = ext4_walk_page_buffers(handle, page_buffers(page), from,
1182bfc1af65SNick Piggin 					     to, &partial, write_end_fn);
1183ac27a0ecSDave Kleikamp 		if (!partial)
1184ac27a0ecSDave Kleikamp 			SetPageUptodate(page);
11853fdcfb66STao Ma 	}
1186cf17fea6SAneesh Kumar K.V 	new_i_size = pos + copied;
1187cf17fea6SAneesh Kumar K.V 	if (new_i_size > inode->i_size)
1188bfc1af65SNick Piggin 		i_size_write(inode, pos+copied);
118919f5fb7aSTheodore Ts'o 	ext4_set_inode_state(inode, EXT4_STATE_JDATA);
11902d859db3SJan Kara 	EXT4_I(inode)->i_datasync_tid = handle->h_transaction->t_tid;
1191cf17fea6SAneesh Kumar K.V 	if (new_i_size > EXT4_I(inode)->i_disksize) {
1192cf17fea6SAneesh Kumar K.V 		ext4_update_i_disksize(inode, new_i_size);
1193617ba13bSMingming Cao 		ret2 = ext4_mark_inode_dirty(handle, inode);
1194ac27a0ecSDave Kleikamp 		if (!ret)
1195ac27a0ecSDave Kleikamp 			ret = ret2;
1196ac27a0ecSDave Kleikamp 	}
1197bfc1af65SNick Piggin 
1198cf108bcaSJan Kara 	unlock_page(page);
1199f8514083SAneesh Kumar K.V 	page_cache_release(page);
1200ffacfa7aSJan Kara 	if (pos + len > inode->i_size && ext4_can_truncate(inode))
1201f8514083SAneesh Kumar K.V 		/* if we have allocated more blocks and copied
1202f8514083SAneesh Kumar K.V 		 * less. We will have blocks allocated outside
1203f8514083SAneesh Kumar K.V 		 * inode->i_size. So truncate them
1204f8514083SAneesh Kumar K.V 		 */
1205f8514083SAneesh Kumar K.V 		ext4_orphan_add(handle, inode);
1206f8514083SAneesh Kumar K.V 
1207617ba13bSMingming Cao 	ret2 = ext4_journal_stop(handle);
1208ac27a0ecSDave Kleikamp 	if (!ret)
1209ac27a0ecSDave Kleikamp 		ret = ret2;
1210f8514083SAneesh Kumar K.V 	if (pos + len > inode->i_size) {
1211b9a4207dSJan Kara 		ext4_truncate_failed_write(inode);
1212f8514083SAneesh Kumar K.V 		/*
1213ffacfa7aSJan Kara 		 * If truncate failed early the inode might still be
1214f8514083SAneesh Kumar K.V 		 * on the orphan list; we need to make sure the inode
1215f8514083SAneesh Kumar K.V 		 * is removed from the orphan list in that case.
1216f8514083SAneesh Kumar K.V 		 */
1217f8514083SAneesh Kumar K.V 		if (inode->i_nlink)
1218f8514083SAneesh Kumar K.V 			ext4_orphan_del(NULL, inode);
1219f8514083SAneesh Kumar K.V 	}
1220bfc1af65SNick Piggin 
1221bfc1af65SNick Piggin 	return ret ? ret : copied;
1222ac27a0ecSDave Kleikamp }
1223d2a17637SMingming Cao 
12249d0be502STheodore Ts'o /*
1225386ad67cSLukas Czerner  * Reserve a metadata for a single block located at lblock
1226386ad67cSLukas Czerner  */
1227386ad67cSLukas Czerner static int ext4_da_reserve_metadata(struct inode *inode, ext4_lblk_t lblock)
1228386ad67cSLukas Czerner {
1229386ad67cSLukas Czerner 	struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb);
1230386ad67cSLukas Czerner 	struct ext4_inode_info *ei = EXT4_I(inode);
1231386ad67cSLukas Czerner 	unsigned int md_needed;
1232386ad67cSLukas Czerner 	ext4_lblk_t save_last_lblock;
1233386ad67cSLukas Czerner 	int save_len;
1234386ad67cSLukas Czerner 
1235386ad67cSLukas Czerner 	/*
1236386ad67cSLukas Czerner 	 * recalculate the amount of metadata blocks to reserve
1237386ad67cSLukas Czerner 	 * in order to allocate nrblocks
1238386ad67cSLukas Czerner 	 * worse case is one extent per block
1239386ad67cSLukas Czerner 	 */
1240386ad67cSLukas Czerner 	spin_lock(&ei->i_block_reservation_lock);
1241386ad67cSLukas Czerner 	/*
1242386ad67cSLukas Czerner 	 * ext4_calc_metadata_amount() has side effects, which we have
1243386ad67cSLukas Czerner 	 * to be prepared undo if we fail to claim space.
1244386ad67cSLukas Czerner 	 */
1245386ad67cSLukas Czerner 	save_len = ei->i_da_metadata_calc_len;
1246386ad67cSLukas Czerner 	save_last_lblock = ei->i_da_metadata_calc_last_lblock;
1247386ad67cSLukas Czerner 	md_needed = EXT4_NUM_B2C(sbi,
1248386ad67cSLukas Czerner 				 ext4_calc_metadata_amount(inode, lblock));
1249386ad67cSLukas Czerner 	trace_ext4_da_reserve_space(inode, md_needed);
1250386ad67cSLukas Czerner 
1251386ad67cSLukas Czerner 	/*
1252386ad67cSLukas Czerner 	 * We do still charge estimated metadata to the sb though;
1253386ad67cSLukas Czerner 	 * we cannot afford to run out of free blocks.
1254386ad67cSLukas Czerner 	 */
1255386ad67cSLukas Czerner 	if (ext4_claim_free_clusters(sbi, md_needed, 0)) {
1256386ad67cSLukas Czerner 		ei->i_da_metadata_calc_len = save_len;
1257386ad67cSLukas Czerner 		ei->i_da_metadata_calc_last_lblock = save_last_lblock;
1258386ad67cSLukas Czerner 		spin_unlock(&ei->i_block_reservation_lock);
1259386ad67cSLukas Czerner 		return -ENOSPC;
1260386ad67cSLukas Czerner 	}
1261386ad67cSLukas Czerner 	ei->i_reserved_meta_blocks += md_needed;
1262386ad67cSLukas Czerner 	spin_unlock(&ei->i_block_reservation_lock);
1263386ad67cSLukas Czerner 
1264386ad67cSLukas Czerner 	return 0;       /* success */
1265386ad67cSLukas Czerner }
1266386ad67cSLukas Czerner 
1267386ad67cSLukas Czerner /*
12687b415bf6SAditya Kali  * Reserve a single cluster located at lblock
12699d0be502STheodore Ts'o  */
127001f49d0bSTheodore Ts'o static int ext4_da_reserve_space(struct inode *inode, ext4_lblk_t lblock)
1271d2a17637SMingming Cao {
1272d2a17637SMingming Cao 	struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb);
12730637c6f4STheodore Ts'o 	struct ext4_inode_info *ei = EXT4_I(inode);
12747b415bf6SAditya Kali 	unsigned int md_needed;
12755dd4056dSChristoph Hellwig 	int ret;
127603179fe9STheodore Ts'o 	ext4_lblk_t save_last_lblock;
127703179fe9STheodore Ts'o 	int save_len;
1278d2a17637SMingming Cao 
127960e58e0fSMingming Cao 	/*
128072b8ab9dSEric Sandeen 	 * We will charge metadata quota at writeout time; this saves
128172b8ab9dSEric Sandeen 	 * us from metadata over-estimation, though we may go over by
128272b8ab9dSEric Sandeen 	 * a small amount in the end.  Here we just reserve for data.
128360e58e0fSMingming Cao 	 */
12847b415bf6SAditya Kali 	ret = dquot_reserve_block(inode, EXT4_C2B(sbi, 1));
12855dd4056dSChristoph Hellwig 	if (ret)
12865dd4056dSChristoph Hellwig 		return ret;
128703179fe9STheodore Ts'o 
128803179fe9STheodore Ts'o 	/*
128903179fe9STheodore Ts'o 	 * recalculate the amount of metadata blocks to reserve
129003179fe9STheodore Ts'o 	 * in order to allocate nrblocks
129103179fe9STheodore Ts'o 	 * worse case is one extent per block
129203179fe9STheodore Ts'o 	 */
129303179fe9STheodore Ts'o 	spin_lock(&ei->i_block_reservation_lock);
129403179fe9STheodore Ts'o 	/*
129503179fe9STheodore Ts'o 	 * ext4_calc_metadata_amount() has side effects, which we have
129603179fe9STheodore Ts'o 	 * to be prepared undo if we fail to claim space.
129703179fe9STheodore Ts'o 	 */
129803179fe9STheodore Ts'o 	save_len = ei->i_da_metadata_calc_len;
129903179fe9STheodore Ts'o 	save_last_lblock = ei->i_da_metadata_calc_last_lblock;
130003179fe9STheodore Ts'o 	md_needed = EXT4_NUM_B2C(sbi,
130103179fe9STheodore Ts'o 				 ext4_calc_metadata_amount(inode, lblock));
130203179fe9STheodore Ts'o 	trace_ext4_da_reserve_space(inode, md_needed);
130303179fe9STheodore Ts'o 
130472b8ab9dSEric Sandeen 	/*
130572b8ab9dSEric Sandeen 	 * We do still charge estimated metadata to the sb though;
130672b8ab9dSEric Sandeen 	 * we cannot afford to run out of free blocks.
130772b8ab9dSEric Sandeen 	 */
1308e7d5f315STheodore Ts'o 	if (ext4_claim_free_clusters(sbi, md_needed + 1, 0)) {
130903179fe9STheodore Ts'o 		ei->i_da_metadata_calc_len = save_len;
131003179fe9STheodore Ts'o 		ei->i_da_metadata_calc_last_lblock = save_last_lblock;
131103179fe9STheodore Ts'o 		spin_unlock(&ei->i_block_reservation_lock);
131203179fe9STheodore Ts'o 		dquot_release_reservation_block(inode, EXT4_C2B(sbi, 1));
1313d2a17637SMingming Cao 		return -ENOSPC;
1314d2a17637SMingming Cao 	}
13159d0be502STheodore Ts'o 	ei->i_reserved_data_blocks++;
13160637c6f4STheodore Ts'o 	ei->i_reserved_meta_blocks += md_needed;
13170637c6f4STheodore Ts'o 	spin_unlock(&ei->i_block_reservation_lock);
131839bc680aSDmitry Monakhov 
1319d2a17637SMingming Cao 	return 0;       /* success */
1320d2a17637SMingming Cao }
1321d2a17637SMingming Cao 
132212219aeaSAneesh Kumar K.V static void ext4_da_release_space(struct inode *inode, int to_free)
1323d2a17637SMingming Cao {
1324d2a17637SMingming Cao 	struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb);
13250637c6f4STheodore Ts'o 	struct ext4_inode_info *ei = EXT4_I(inode);
1326d2a17637SMingming Cao 
1327cd213226SMingming Cao 	if (!to_free)
1328cd213226SMingming Cao 		return;		/* Nothing to release, exit */
1329cd213226SMingming Cao 
1330d2a17637SMingming Cao 	spin_lock(&EXT4_I(inode)->i_block_reservation_lock);
1331cd213226SMingming Cao 
13325a58ec87SLi Zefan 	trace_ext4_da_release_space(inode, to_free);
13330637c6f4STheodore Ts'o 	if (unlikely(to_free > ei->i_reserved_data_blocks)) {
1334cd213226SMingming Cao 		/*
13350637c6f4STheodore Ts'o 		 * if there aren't enough reserved blocks, then the
13360637c6f4STheodore Ts'o 		 * counter is messed up somewhere.  Since this
13370637c6f4STheodore Ts'o 		 * function is called from invalidate page, it's
13380637c6f4STheodore Ts'o 		 * harmless to return without any action.
1339cd213226SMingming Cao 		 */
13408de5c325STheodore Ts'o 		ext4_warning(inode->i_sb, "ext4_da_release_space: "
13410637c6f4STheodore Ts'o 			 "ino %lu, to_free %d with only %d reserved "
13421084f252STheodore Ts'o 			 "data blocks", inode->i_ino, to_free,
13430637c6f4STheodore Ts'o 			 ei->i_reserved_data_blocks);
13440637c6f4STheodore Ts'o 		WARN_ON(1);
13450637c6f4STheodore Ts'o 		to_free = ei->i_reserved_data_blocks;
13460637c6f4STheodore Ts'o 	}
13470637c6f4STheodore Ts'o 	ei->i_reserved_data_blocks -= to_free;
13480637c6f4STheodore Ts'o 
13490637c6f4STheodore Ts'o 	if (ei->i_reserved_data_blocks == 0) {
13500637c6f4STheodore Ts'o 		/*
13510637c6f4STheodore Ts'o 		 * We can release all of the reserved metadata blocks
13520637c6f4STheodore Ts'o 		 * only when we have written all of the delayed
13530637c6f4STheodore Ts'o 		 * allocation blocks.
13547b415bf6SAditya Kali 		 * Note that in case of bigalloc, i_reserved_meta_blocks,
13557b415bf6SAditya Kali 		 * i_reserved_data_blocks, etc. refer to number of clusters.
13560637c6f4STheodore Ts'o 		 */
135757042651STheodore Ts'o 		percpu_counter_sub(&sbi->s_dirtyclusters_counter,
135872b8ab9dSEric Sandeen 				   ei->i_reserved_meta_blocks);
1359ee5f4d9cSTheodore Ts'o 		ei->i_reserved_meta_blocks = 0;
13609d0be502STheodore Ts'o 		ei->i_da_metadata_calc_len = 0;
1361cd213226SMingming Cao 	}
1362cd213226SMingming Cao 
136372b8ab9dSEric Sandeen 	/* update fs dirty data blocks counter */
136457042651STheodore Ts'o 	percpu_counter_sub(&sbi->s_dirtyclusters_counter, to_free);
1365d2a17637SMingming Cao 
1366d2a17637SMingming Cao 	spin_unlock(&EXT4_I(inode)->i_block_reservation_lock);
136760e58e0fSMingming Cao 
13687b415bf6SAditya Kali 	dquot_release_reservation_block(inode, EXT4_C2B(sbi, to_free));
1369d2a17637SMingming Cao }
1370d2a17637SMingming Cao 
1371d2a17637SMingming Cao static void ext4_da_page_release_reservation(struct page *page,
1372ca99fdd2SLukas Czerner 					     unsigned int offset,
1373ca99fdd2SLukas Czerner 					     unsigned int length)
1374d2a17637SMingming Cao {
1375d2a17637SMingming Cao 	int to_release = 0;
1376d2a17637SMingming Cao 	struct buffer_head *head, *bh;
1377d2a17637SMingming Cao 	unsigned int curr_off = 0;
13787b415bf6SAditya Kali 	struct inode *inode = page->mapping->host;
13797b415bf6SAditya Kali 	struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb);
1380ca99fdd2SLukas Czerner 	unsigned int stop = offset + length;
13817b415bf6SAditya Kali 	int num_clusters;
138251865fdaSZheng Liu 	ext4_fsblk_t lblk;
1383d2a17637SMingming Cao 
1384ca99fdd2SLukas Czerner 	BUG_ON(stop > PAGE_CACHE_SIZE || stop < length);
1385ca99fdd2SLukas Czerner 
1386d2a17637SMingming Cao 	head = page_buffers(page);
1387d2a17637SMingming Cao 	bh = head;
1388d2a17637SMingming Cao 	do {
1389d2a17637SMingming Cao 		unsigned int next_off = curr_off + bh->b_size;
1390d2a17637SMingming Cao 
1391ca99fdd2SLukas Czerner 		if (next_off > stop)
1392ca99fdd2SLukas Czerner 			break;
1393ca99fdd2SLukas Czerner 
1394d2a17637SMingming Cao 		if ((offset <= curr_off) && (buffer_delay(bh))) {
1395d2a17637SMingming Cao 			to_release++;
1396d2a17637SMingming Cao 			clear_buffer_delay(bh);
1397d2a17637SMingming Cao 		}
1398d2a17637SMingming Cao 		curr_off = next_off;
1399d2a17637SMingming Cao 	} while ((bh = bh->b_this_page) != head);
14007b415bf6SAditya Kali 
140151865fdaSZheng Liu 	if (to_release) {
140251865fdaSZheng Liu 		lblk = page->index << (PAGE_CACHE_SHIFT - inode->i_blkbits);
140351865fdaSZheng Liu 		ext4_es_remove_extent(inode, lblk, to_release);
140451865fdaSZheng Liu 	}
140551865fdaSZheng Liu 
14067b415bf6SAditya Kali 	/* If we have released all the blocks belonging to a cluster, then we
14077b415bf6SAditya Kali 	 * need to release the reserved space for that cluster. */
14087b415bf6SAditya Kali 	num_clusters = EXT4_NUM_B2C(sbi, to_release);
14097b415bf6SAditya Kali 	while (num_clusters > 0) {
14107b415bf6SAditya Kali 		lblk = (page->index << (PAGE_CACHE_SHIFT - inode->i_blkbits)) +
14117b415bf6SAditya Kali 			((num_clusters - 1) << sbi->s_cluster_bits);
14127b415bf6SAditya Kali 		if (sbi->s_cluster_ratio == 1 ||
14137d1b1fbcSZheng Liu 		    !ext4_find_delalloc_cluster(inode, lblk))
14147b415bf6SAditya Kali 			ext4_da_release_space(inode, 1);
14157b415bf6SAditya Kali 
14167b415bf6SAditya Kali 		num_clusters--;
14177b415bf6SAditya Kali 	}
1418d2a17637SMingming Cao }
1419ac27a0ecSDave Kleikamp 
1420ac27a0ecSDave Kleikamp /*
142164769240SAlex Tomas  * Delayed allocation stuff
142264769240SAlex Tomas  */
142364769240SAlex Tomas 
14244e7ea81dSJan Kara struct mpage_da_data {
14254e7ea81dSJan Kara 	struct inode *inode;
14264e7ea81dSJan Kara 	struct writeback_control *wbc;
14276b523df4SJan Kara 
14284e7ea81dSJan Kara 	pgoff_t first_page;	/* The first page to write */
14294e7ea81dSJan Kara 	pgoff_t next_page;	/* Current page to examine */
14304e7ea81dSJan Kara 	pgoff_t last_page;	/* Last page to examine */
143164769240SAlex Tomas 	/*
14324e7ea81dSJan Kara 	 * Extent to map - this can be after first_page because that can be
14334e7ea81dSJan Kara 	 * fully mapped. We somewhat abuse m_flags to store whether the extent
14344e7ea81dSJan Kara 	 * is delalloc or unwritten.
143564769240SAlex Tomas 	 */
14364e7ea81dSJan Kara 	struct ext4_map_blocks map;
14374e7ea81dSJan Kara 	struct ext4_io_submit io_submit;	/* IO submission data */
14384e7ea81dSJan Kara };
143964769240SAlex Tomas 
14404e7ea81dSJan Kara static void mpage_release_unused_pages(struct mpage_da_data *mpd,
14414e7ea81dSJan Kara 				       bool invalidate)
1442c4a0c46eSAneesh Kumar K.V {
1443c4a0c46eSAneesh Kumar K.V 	int nr_pages, i;
1444c4a0c46eSAneesh Kumar K.V 	pgoff_t index, end;
1445c4a0c46eSAneesh Kumar K.V 	struct pagevec pvec;
1446c4a0c46eSAneesh Kumar K.V 	struct inode *inode = mpd->inode;
1447c4a0c46eSAneesh Kumar K.V 	struct address_space *mapping = inode->i_mapping;
14484e7ea81dSJan Kara 
14494e7ea81dSJan Kara 	/* This is necessary when next_page == 0. */
14504e7ea81dSJan Kara 	if (mpd->first_page >= mpd->next_page)
14514e7ea81dSJan Kara 		return;
1452c4a0c46eSAneesh Kumar K.V 
1453c7f5938aSCurt Wohlgemuth 	index = mpd->first_page;
1454c7f5938aSCurt Wohlgemuth 	end   = mpd->next_page - 1;
14554e7ea81dSJan Kara 	if (invalidate) {
14564e7ea81dSJan Kara 		ext4_lblk_t start, last;
145751865fdaSZheng Liu 		start = index << (PAGE_CACHE_SHIFT - inode->i_blkbits);
145851865fdaSZheng Liu 		last = end << (PAGE_CACHE_SHIFT - inode->i_blkbits);
145951865fdaSZheng Liu 		ext4_es_remove_extent(inode, start, last - start + 1);
14604e7ea81dSJan Kara 	}
146151865fdaSZheng Liu 
146266bea92cSEric Sandeen 	pagevec_init(&pvec, 0);
1463c4a0c46eSAneesh Kumar K.V 	while (index <= end) {
1464c4a0c46eSAneesh Kumar K.V 		nr_pages = pagevec_lookup(&pvec, mapping, index, PAGEVEC_SIZE);
1465c4a0c46eSAneesh Kumar K.V 		if (nr_pages == 0)
1466c4a0c46eSAneesh Kumar K.V 			break;
1467c4a0c46eSAneesh Kumar K.V 		for (i = 0; i < nr_pages; i++) {
1468c4a0c46eSAneesh Kumar K.V 			struct page *page = pvec.pages[i];
14699b1d0998SJan Kara 			if (page->index > end)
1470c4a0c46eSAneesh Kumar K.V 				break;
1471c4a0c46eSAneesh Kumar K.V 			BUG_ON(!PageLocked(page));
1472c4a0c46eSAneesh Kumar K.V 			BUG_ON(PageWriteback(page));
14734e7ea81dSJan Kara 			if (invalidate) {
1474d47992f8SLukas Czerner 				block_invalidatepage(page, 0, PAGE_CACHE_SIZE);
1475c4a0c46eSAneesh Kumar K.V 				ClearPageUptodate(page);
14764e7ea81dSJan Kara 			}
1477c4a0c46eSAneesh Kumar K.V 			unlock_page(page);
1478c4a0c46eSAneesh Kumar K.V 		}
14799b1d0998SJan Kara 		index = pvec.pages[nr_pages - 1]->index + 1;
14809b1d0998SJan Kara 		pagevec_release(&pvec);
1481c4a0c46eSAneesh Kumar K.V 	}
1482c4a0c46eSAneesh Kumar K.V }
1483c4a0c46eSAneesh Kumar K.V 
1484df22291fSAneesh Kumar K.V static void ext4_print_free_blocks(struct inode *inode)
1485df22291fSAneesh Kumar K.V {
1486df22291fSAneesh Kumar K.V 	struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb);
148792b97816STheodore Ts'o 	struct super_block *sb = inode->i_sb;
1488f78ee70dSLukas Czerner 	struct ext4_inode_info *ei = EXT4_I(inode);
148992b97816STheodore Ts'o 
149092b97816STheodore Ts'o 	ext4_msg(sb, KERN_CRIT, "Total free blocks count %lld",
14915dee5437STheodore Ts'o 	       EXT4_C2B(EXT4_SB(inode->i_sb),
1492f78ee70dSLukas Czerner 			ext4_count_free_clusters(sb)));
149392b97816STheodore Ts'o 	ext4_msg(sb, KERN_CRIT, "Free/Dirty block details");
149492b97816STheodore Ts'o 	ext4_msg(sb, KERN_CRIT, "free_blocks=%lld",
1495f78ee70dSLukas Czerner 	       (long long) EXT4_C2B(EXT4_SB(sb),
149657042651STheodore Ts'o 		percpu_counter_sum(&sbi->s_freeclusters_counter)));
149792b97816STheodore Ts'o 	ext4_msg(sb, KERN_CRIT, "dirty_blocks=%lld",
1498f78ee70dSLukas Czerner 	       (long long) EXT4_C2B(EXT4_SB(sb),
14997b415bf6SAditya Kali 		percpu_counter_sum(&sbi->s_dirtyclusters_counter)));
150092b97816STheodore Ts'o 	ext4_msg(sb, KERN_CRIT, "Block reservation details");
150192b97816STheodore Ts'o 	ext4_msg(sb, KERN_CRIT, "i_reserved_data_blocks=%u",
1502f78ee70dSLukas Czerner 		 ei->i_reserved_data_blocks);
150392b97816STheodore Ts'o 	ext4_msg(sb, KERN_CRIT, "i_reserved_meta_blocks=%u",
1504f78ee70dSLukas Czerner 	       ei->i_reserved_meta_blocks);
1505f78ee70dSLukas Czerner 	ext4_msg(sb, KERN_CRIT, "i_allocated_meta_blocks=%u",
1506f78ee70dSLukas Czerner 	       ei->i_allocated_meta_blocks);
1507df22291fSAneesh Kumar K.V 	return;
1508df22291fSAneesh Kumar K.V }
1509df22291fSAneesh Kumar K.V 
1510c364b22cSAneesh Kumar K.V static int ext4_bh_delay_or_unwritten(handle_t *handle, struct buffer_head *bh)
151129fa89d0SAneesh Kumar K.V {
1512c364b22cSAneesh Kumar K.V 	return (buffer_delay(bh) || buffer_unwritten(bh)) && buffer_dirty(bh);
151329fa89d0SAneesh Kumar K.V }
151429fa89d0SAneesh Kumar K.V 
151564769240SAlex Tomas /*
15165356f261SAditya Kali  * This function is grabs code from the very beginning of
15175356f261SAditya Kali  * ext4_map_blocks, but assumes that the caller is from delayed write
15185356f261SAditya Kali  * time. This function looks up the requested blocks and sets the
15195356f261SAditya Kali  * buffer delay bit under the protection of i_data_sem.
15205356f261SAditya Kali  */
15215356f261SAditya Kali static int ext4_da_map_blocks(struct inode *inode, sector_t iblock,
15225356f261SAditya Kali 			      struct ext4_map_blocks *map,
15235356f261SAditya Kali 			      struct buffer_head *bh)
15245356f261SAditya Kali {
1525d100eef2SZheng Liu 	struct extent_status es;
15265356f261SAditya Kali 	int retval;
15275356f261SAditya Kali 	sector_t invalid_block = ~((sector_t) 0xffff);
1528921f266bSDmitry Monakhov #ifdef ES_AGGRESSIVE_TEST
1529921f266bSDmitry Monakhov 	struct ext4_map_blocks orig_map;
1530921f266bSDmitry Monakhov 
1531921f266bSDmitry Monakhov 	memcpy(&orig_map, map, sizeof(*map));
1532921f266bSDmitry Monakhov #endif
15335356f261SAditya Kali 
15345356f261SAditya Kali 	if (invalid_block < ext4_blocks_count(EXT4_SB(inode->i_sb)->s_es))
15355356f261SAditya Kali 		invalid_block = ~0;
15365356f261SAditya Kali 
15375356f261SAditya Kali 	map->m_flags = 0;
15385356f261SAditya Kali 	ext_debug("ext4_da_map_blocks(): inode %lu, max_blocks %u,"
15395356f261SAditya Kali 		  "logical block %lu\n", inode->i_ino, map->m_len,
15405356f261SAditya Kali 		  (unsigned long) map->m_lblk);
1541d100eef2SZheng Liu 
1542d100eef2SZheng Liu 	/* Lookup extent status tree firstly */
1543d100eef2SZheng Liu 	if (ext4_es_lookup_extent(inode, iblock, &es)) {
154463b99968STheodore Ts'o 		ext4_es_lru_add(inode);
1545d100eef2SZheng Liu 		if (ext4_es_is_hole(&es)) {
1546d100eef2SZheng Liu 			retval = 0;
1547c8b459f4SLukas Czerner 			down_read(&EXT4_I(inode)->i_data_sem);
1548d100eef2SZheng Liu 			goto add_delayed;
1549d100eef2SZheng Liu 		}
1550d100eef2SZheng Liu 
1551d100eef2SZheng Liu 		/*
1552d100eef2SZheng Liu 		 * Delayed extent could be allocated by fallocate.
1553d100eef2SZheng Liu 		 * So we need to check it.
1554d100eef2SZheng Liu 		 */
1555d100eef2SZheng Liu 		if (ext4_es_is_delayed(&es) && !ext4_es_is_unwritten(&es)) {
1556d100eef2SZheng Liu 			map_bh(bh, inode->i_sb, invalid_block);
1557d100eef2SZheng Liu 			set_buffer_new(bh);
1558d100eef2SZheng Liu 			set_buffer_delay(bh);
1559d100eef2SZheng Liu 			return 0;
1560d100eef2SZheng Liu 		}
1561d100eef2SZheng Liu 
1562d100eef2SZheng Liu 		map->m_pblk = ext4_es_pblock(&es) + iblock - es.es_lblk;
1563d100eef2SZheng Liu 		retval = es.es_len - (iblock - es.es_lblk);
1564d100eef2SZheng Liu 		if (retval > map->m_len)
1565d100eef2SZheng Liu 			retval = map->m_len;
1566d100eef2SZheng Liu 		map->m_len = retval;
1567d100eef2SZheng Liu 		if (ext4_es_is_written(&es))
1568d100eef2SZheng Liu 			map->m_flags |= EXT4_MAP_MAPPED;
1569d100eef2SZheng Liu 		else if (ext4_es_is_unwritten(&es))
1570d100eef2SZheng Liu 			map->m_flags |= EXT4_MAP_UNWRITTEN;
1571d100eef2SZheng Liu 		else
1572d100eef2SZheng Liu 			BUG_ON(1);
1573d100eef2SZheng Liu 
1574921f266bSDmitry Monakhov #ifdef ES_AGGRESSIVE_TEST
1575921f266bSDmitry Monakhov 		ext4_map_blocks_es_recheck(NULL, inode, map, &orig_map, 0);
1576921f266bSDmitry Monakhov #endif
1577d100eef2SZheng Liu 		return retval;
1578d100eef2SZheng Liu 	}
1579d100eef2SZheng Liu 
15805356f261SAditya Kali 	/*
15815356f261SAditya Kali 	 * Try to see if we can get the block without requesting a new
15825356f261SAditya Kali 	 * file system block.
15835356f261SAditya Kali 	 */
1584c8b459f4SLukas Czerner 	down_read(&EXT4_I(inode)->i_data_sem);
15859c3569b5STao Ma 	if (ext4_has_inline_data(inode)) {
15869c3569b5STao Ma 		/*
15879c3569b5STao Ma 		 * We will soon create blocks for this page, and let
15889c3569b5STao Ma 		 * us pretend as if the blocks aren't allocated yet.
15899c3569b5STao Ma 		 * In case of clusters, we have to handle the work
15909c3569b5STao Ma 		 * of mapping from cluster so that the reserved space
15919c3569b5STao Ma 		 * is calculated properly.
15929c3569b5STao Ma 		 */
15939c3569b5STao Ma 		if ((EXT4_SB(inode->i_sb)->s_cluster_ratio > 1) &&
15949c3569b5STao Ma 		    ext4_find_delalloc_cluster(inode, map->m_lblk))
15959c3569b5STao Ma 			map->m_flags |= EXT4_MAP_FROM_CLUSTER;
15969c3569b5STao Ma 		retval = 0;
15979c3569b5STao Ma 	} else if (ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS))
1598d100eef2SZheng Liu 		retval = ext4_ext_map_blocks(NULL, inode, map,
1599d100eef2SZheng Liu 					     EXT4_GET_BLOCKS_NO_PUT_HOLE);
16005356f261SAditya Kali 	else
1601d100eef2SZheng Liu 		retval = ext4_ind_map_blocks(NULL, inode, map,
1602d100eef2SZheng Liu 					     EXT4_GET_BLOCKS_NO_PUT_HOLE);
16035356f261SAditya Kali 
1604d100eef2SZheng Liu add_delayed:
16055356f261SAditya Kali 	if (retval == 0) {
1606f7fec032SZheng Liu 		int ret;
16075356f261SAditya Kali 		/*
16085356f261SAditya Kali 		 * XXX: __block_prepare_write() unmaps passed block,
16095356f261SAditya Kali 		 * is it OK?
16105356f261SAditya Kali 		 */
1611386ad67cSLukas Czerner 		/*
1612386ad67cSLukas Czerner 		 * If the block was allocated from previously allocated cluster,
1613386ad67cSLukas Czerner 		 * then we don't need to reserve it again. However we still need
1614386ad67cSLukas Czerner 		 * to reserve metadata for every block we're going to write.
1615386ad67cSLukas Czerner 		 */
16165356f261SAditya Kali 		if (!(map->m_flags & EXT4_MAP_FROM_CLUSTER)) {
1617f7fec032SZheng Liu 			ret = ext4_da_reserve_space(inode, iblock);
1618f7fec032SZheng Liu 			if (ret) {
16195356f261SAditya Kali 				/* not enough space to reserve */
1620f7fec032SZheng Liu 				retval = ret;
16215356f261SAditya Kali 				goto out_unlock;
16225356f261SAditya Kali 			}
1623386ad67cSLukas Czerner 		} else {
1624386ad67cSLukas Czerner 			ret = ext4_da_reserve_metadata(inode, iblock);
1625386ad67cSLukas Czerner 			if (ret) {
1626386ad67cSLukas Czerner 				/* not enough space to reserve */
1627386ad67cSLukas Czerner 				retval = ret;
1628386ad67cSLukas Czerner 				goto out_unlock;
1629386ad67cSLukas Czerner 			}
1630f7fec032SZheng Liu 		}
16315356f261SAditya Kali 
1632f7fec032SZheng Liu 		ret = ext4_es_insert_extent(inode, map->m_lblk, map->m_len,
1633fdc0212eSZheng Liu 					    ~0, EXTENT_STATUS_DELAYED);
1634f7fec032SZheng Liu 		if (ret) {
1635f7fec032SZheng Liu 			retval = ret;
163651865fdaSZheng Liu 			goto out_unlock;
1637f7fec032SZheng Liu 		}
163851865fdaSZheng Liu 
16395356f261SAditya Kali 		/* Clear EXT4_MAP_FROM_CLUSTER flag since its purpose is served
16405356f261SAditya Kali 		 * and it should not appear on the bh->b_state.
16415356f261SAditya Kali 		 */
16425356f261SAditya Kali 		map->m_flags &= ~EXT4_MAP_FROM_CLUSTER;
16435356f261SAditya Kali 
16445356f261SAditya Kali 		map_bh(bh, inode->i_sb, invalid_block);
16455356f261SAditya Kali 		set_buffer_new(bh);
16465356f261SAditya Kali 		set_buffer_delay(bh);
1647f7fec032SZheng Liu 	} else if (retval > 0) {
1648f7fec032SZheng Liu 		int ret;
16493be78c73STheodore Ts'o 		unsigned int status;
1650f7fec032SZheng Liu 
165144fb851dSZheng Liu 		if (unlikely(retval != map->m_len)) {
165244fb851dSZheng Liu 			ext4_warning(inode->i_sb,
165344fb851dSZheng Liu 				     "ES len assertion failed for inode "
165444fb851dSZheng Liu 				     "%lu: retval %d != map->m_len %d",
165544fb851dSZheng Liu 				     inode->i_ino, retval, map->m_len);
165644fb851dSZheng Liu 			WARN_ON(1);
1657921f266bSDmitry Monakhov 		}
1658921f266bSDmitry Monakhov 
1659f7fec032SZheng Liu 		status = map->m_flags & EXT4_MAP_UNWRITTEN ?
1660f7fec032SZheng Liu 				EXTENT_STATUS_UNWRITTEN : EXTENT_STATUS_WRITTEN;
1661f7fec032SZheng Liu 		ret = ext4_es_insert_extent(inode, map->m_lblk, map->m_len,
1662f7fec032SZheng Liu 					    map->m_pblk, status);
1663f7fec032SZheng Liu 		if (ret != 0)
1664f7fec032SZheng Liu 			retval = ret;
16655356f261SAditya Kali 	}
16665356f261SAditya Kali 
16675356f261SAditya Kali out_unlock:
16685356f261SAditya Kali 	up_read((&EXT4_I(inode)->i_data_sem));
16695356f261SAditya Kali 
16705356f261SAditya Kali 	return retval;
16715356f261SAditya Kali }
16725356f261SAditya Kali 
16735356f261SAditya Kali /*
1674b920c755STheodore Ts'o  * This is a special get_blocks_t callback which is used by
1675b920c755STheodore Ts'o  * ext4_da_write_begin().  It will either return mapped block or
1676b920c755STheodore Ts'o  * reserve space for a single block.
167729fa89d0SAneesh Kumar K.V  *
167829fa89d0SAneesh Kumar K.V  * For delayed buffer_head we have BH_Mapped, BH_New, BH_Delay set.
167929fa89d0SAneesh Kumar K.V  * We also have b_blocknr = -1 and b_bdev initialized properly
168029fa89d0SAneesh Kumar K.V  *
168129fa89d0SAneesh Kumar K.V  * For unwritten buffer_head we have BH_Mapped, BH_New, BH_Unwritten set.
168229fa89d0SAneesh Kumar K.V  * We also have b_blocknr = physicalblock mapping unwritten extent and b_bdev
168329fa89d0SAneesh Kumar K.V  * initialized properly.
168464769240SAlex Tomas  */
16859c3569b5STao Ma int ext4_da_get_block_prep(struct inode *inode, sector_t iblock,
16862ed88685STheodore Ts'o 			   struct buffer_head *bh, int create)
168764769240SAlex Tomas {
16882ed88685STheodore Ts'o 	struct ext4_map_blocks map;
168964769240SAlex Tomas 	int ret = 0;
169064769240SAlex Tomas 
169164769240SAlex Tomas 	BUG_ON(create == 0);
16922ed88685STheodore Ts'o 	BUG_ON(bh->b_size != inode->i_sb->s_blocksize);
16932ed88685STheodore Ts'o 
16942ed88685STheodore Ts'o 	map.m_lblk = iblock;
16952ed88685STheodore Ts'o 	map.m_len = 1;
169664769240SAlex Tomas 
169764769240SAlex Tomas 	/*
169864769240SAlex Tomas 	 * first, we need to know whether the block is allocated already
169964769240SAlex Tomas 	 * preallocated blocks are unmapped but should treated
170064769240SAlex Tomas 	 * the same as allocated blocks.
170164769240SAlex Tomas 	 */
17025356f261SAditya Kali 	ret = ext4_da_map_blocks(inode, iblock, &map, bh);
17035356f261SAditya Kali 	if (ret <= 0)
17042ed88685STheodore Ts'o 		return ret;
170564769240SAlex Tomas 
17062ed88685STheodore Ts'o 	map_bh(bh, inode->i_sb, map.m_pblk);
17072ed88685STheodore Ts'o 	bh->b_state = (bh->b_state & ~EXT4_MAP_FLAGS) | map.m_flags;
17082ed88685STheodore Ts'o 
17092ed88685STheodore Ts'o 	if (buffer_unwritten(bh)) {
17102ed88685STheodore Ts'o 		/* A delayed write to unwritten bh should be marked
17112ed88685STheodore Ts'o 		 * new and mapped.  Mapped ensures that we don't do
17122ed88685STheodore Ts'o 		 * get_block multiple times when we write to the same
17132ed88685STheodore Ts'o 		 * offset and new ensures that we do proper zero out
17142ed88685STheodore Ts'o 		 * for partial write.
17152ed88685STheodore Ts'o 		 */
17162ed88685STheodore Ts'o 		set_buffer_new(bh);
1717c8205636STheodore Ts'o 		set_buffer_mapped(bh);
17182ed88685STheodore Ts'o 	}
17192ed88685STheodore Ts'o 	return 0;
172064769240SAlex Tomas }
172161628a3fSMingming Cao 
172262e086beSAneesh Kumar K.V static int bget_one(handle_t *handle, struct buffer_head *bh)
172362e086beSAneesh Kumar K.V {
172462e086beSAneesh Kumar K.V 	get_bh(bh);
172562e086beSAneesh Kumar K.V 	return 0;
172662e086beSAneesh Kumar K.V }
172762e086beSAneesh Kumar K.V 
172862e086beSAneesh Kumar K.V static int bput_one(handle_t *handle, struct buffer_head *bh)
172962e086beSAneesh Kumar K.V {
173062e086beSAneesh Kumar K.V 	put_bh(bh);
173162e086beSAneesh Kumar K.V 	return 0;
173262e086beSAneesh Kumar K.V }
173362e086beSAneesh Kumar K.V 
173462e086beSAneesh Kumar K.V static int __ext4_journalled_writepage(struct page *page,
173562e086beSAneesh Kumar K.V 				       unsigned int len)
173662e086beSAneesh Kumar K.V {
173762e086beSAneesh Kumar K.V 	struct address_space *mapping = page->mapping;
173862e086beSAneesh Kumar K.V 	struct inode *inode = mapping->host;
17393fdcfb66STao Ma 	struct buffer_head *page_bufs = NULL;
174062e086beSAneesh Kumar K.V 	handle_t *handle = NULL;
17413fdcfb66STao Ma 	int ret = 0, err = 0;
17423fdcfb66STao Ma 	int inline_data = ext4_has_inline_data(inode);
17433fdcfb66STao Ma 	struct buffer_head *inode_bh = NULL;
174462e086beSAneesh Kumar K.V 
1745cb20d518STheodore Ts'o 	ClearPageChecked(page);
17463fdcfb66STao Ma 
17473fdcfb66STao Ma 	if (inline_data) {
17483fdcfb66STao Ma 		BUG_ON(page->index != 0);
17493fdcfb66STao Ma 		BUG_ON(len > ext4_get_max_inline_size(inode));
17503fdcfb66STao Ma 		inode_bh = ext4_journalled_write_inline_data(inode, len, page);
17513fdcfb66STao Ma 		if (inode_bh == NULL)
17523fdcfb66STao Ma 			goto out;
17533fdcfb66STao Ma 	} else {
175462e086beSAneesh Kumar K.V 		page_bufs = page_buffers(page);
17553fdcfb66STao Ma 		if (!page_bufs) {
17563fdcfb66STao Ma 			BUG();
17573fdcfb66STao Ma 			goto out;
17583fdcfb66STao Ma 		}
17593fdcfb66STao Ma 		ext4_walk_page_buffers(handle, page_bufs, 0, len,
17603fdcfb66STao Ma 				       NULL, bget_one);
17613fdcfb66STao Ma 	}
176262e086beSAneesh Kumar K.V 	/* As soon as we unlock the page, it can go away, but we have
176362e086beSAneesh Kumar K.V 	 * references to buffers so we are safe */
176462e086beSAneesh Kumar K.V 	unlock_page(page);
176562e086beSAneesh Kumar K.V 
17669924a92aSTheodore Ts'o 	handle = ext4_journal_start(inode, EXT4_HT_WRITE_PAGE,
17679924a92aSTheodore Ts'o 				    ext4_writepage_trans_blocks(inode));
176862e086beSAneesh Kumar K.V 	if (IS_ERR(handle)) {
176962e086beSAneesh Kumar K.V 		ret = PTR_ERR(handle);
177062e086beSAneesh Kumar K.V 		goto out;
177162e086beSAneesh Kumar K.V 	}
177262e086beSAneesh Kumar K.V 
1773441c8508SCurt Wohlgemuth 	BUG_ON(!ext4_handle_valid(handle));
1774441c8508SCurt Wohlgemuth 
17753fdcfb66STao Ma 	if (inline_data) {
17765d601255Sliang xie 		BUFFER_TRACE(inode_bh, "get write access");
17773fdcfb66STao Ma 		ret = ext4_journal_get_write_access(handle, inode_bh);
17783fdcfb66STao Ma 
17793fdcfb66STao Ma 		err = ext4_handle_dirty_metadata(handle, inode, inode_bh);
17803fdcfb66STao Ma 
17813fdcfb66STao Ma 	} else {
1782f19d5870STao Ma 		ret = ext4_walk_page_buffers(handle, page_bufs, 0, len, NULL,
178362e086beSAneesh Kumar K.V 					     do_journal_get_write_access);
178462e086beSAneesh Kumar K.V 
1785f19d5870STao Ma 		err = ext4_walk_page_buffers(handle, page_bufs, 0, len, NULL,
178662e086beSAneesh Kumar K.V 					     write_end_fn);
17873fdcfb66STao Ma 	}
178862e086beSAneesh Kumar K.V 	if (ret == 0)
178962e086beSAneesh Kumar K.V 		ret = err;
17902d859db3SJan Kara 	EXT4_I(inode)->i_datasync_tid = handle->h_transaction->t_tid;
179162e086beSAneesh Kumar K.V 	err = ext4_journal_stop(handle);
179262e086beSAneesh Kumar K.V 	if (!ret)
179362e086beSAneesh Kumar K.V 		ret = err;
179462e086beSAneesh Kumar K.V 
17953fdcfb66STao Ma 	if (!ext4_has_inline_data(inode))
17968c9367fdSTheodore Ts'o 		ext4_walk_page_buffers(NULL, page_bufs, 0, len,
17973fdcfb66STao Ma 				       NULL, bput_one);
179819f5fb7aSTheodore Ts'o 	ext4_set_inode_state(inode, EXT4_STATE_JDATA);
179962e086beSAneesh Kumar K.V out:
18003fdcfb66STao Ma 	brelse(inode_bh);
180162e086beSAneesh Kumar K.V 	return ret;
180262e086beSAneesh Kumar K.V }
180362e086beSAneesh Kumar K.V 
180461628a3fSMingming Cao /*
180543ce1d23SAneesh Kumar K.V  * Note that we don't need to start a transaction unless we're journaling data
180643ce1d23SAneesh Kumar K.V  * because we should have holes filled from ext4_page_mkwrite(). We even don't
180743ce1d23SAneesh Kumar K.V  * need to file the inode to the transaction's list in ordered mode because if
180843ce1d23SAneesh Kumar K.V  * we are writing back data added by write(), the inode is already there and if
180943ce1d23SAneesh Kumar K.V  * we are writing back data modified via mmap(), no one guarantees in which
181043ce1d23SAneesh Kumar K.V  * transaction the data will hit the disk. In case we are journaling data, we
181143ce1d23SAneesh Kumar K.V  * cannot start transaction directly because transaction start ranks above page
181243ce1d23SAneesh Kumar K.V  * lock so we have to do some magic.
181343ce1d23SAneesh Kumar K.V  *
1814b920c755STheodore Ts'o  * This function can get called via...
181520970ba6STheodore Ts'o  *   - ext4_writepages after taking page lock (have journal handle)
1816b920c755STheodore Ts'o  *   - journal_submit_inode_data_buffers (no journal handle)
1817f6463b0dSArtem Bityutskiy  *   - shrink_page_list via the kswapd/direct reclaim (no journal handle)
1818b920c755STheodore Ts'o  *   - grab_page_cache when doing write_begin (have journal handle)
181943ce1d23SAneesh Kumar K.V  *
182043ce1d23SAneesh Kumar K.V  * We don't do any block allocation in this function. If we have page with
182143ce1d23SAneesh Kumar K.V  * multiple blocks we need to write those buffer_heads that are mapped. This
182243ce1d23SAneesh Kumar K.V  * is important for mmaped based write. So if we do with blocksize 1K
182343ce1d23SAneesh Kumar K.V  * truncate(f, 1024);
182443ce1d23SAneesh Kumar K.V  * a = mmap(f, 0, 4096);
182543ce1d23SAneesh Kumar K.V  * a[0] = 'a';
182643ce1d23SAneesh Kumar K.V  * truncate(f, 4096);
182743ce1d23SAneesh Kumar K.V  * we have in the page first buffer_head mapped via page_mkwrite call back
182890802ed9SPaul Bolle  * but other buffer_heads would be unmapped but dirty (dirty done via the
182943ce1d23SAneesh Kumar K.V  * do_wp_page). So writepage should write the first block. If we modify
183043ce1d23SAneesh Kumar K.V  * the mmap area beyond 1024 we will again get a page_fault and the
183143ce1d23SAneesh Kumar K.V  * page_mkwrite callback will do the block allocation and mark the
183243ce1d23SAneesh Kumar K.V  * buffer_heads mapped.
183343ce1d23SAneesh Kumar K.V  *
183443ce1d23SAneesh Kumar K.V  * We redirty the page if we have any buffer_heads that is either delay or
183543ce1d23SAneesh Kumar K.V  * unwritten in the page.
183643ce1d23SAneesh Kumar K.V  *
183743ce1d23SAneesh Kumar K.V  * We can get recursively called as show below.
183843ce1d23SAneesh Kumar K.V  *
183943ce1d23SAneesh Kumar K.V  *	ext4_writepage() -> kmalloc() -> __alloc_pages() -> page_launder() ->
184043ce1d23SAneesh Kumar K.V  *		ext4_writepage()
184143ce1d23SAneesh Kumar K.V  *
184243ce1d23SAneesh Kumar K.V  * But since we don't do any block allocation we should not deadlock.
184343ce1d23SAneesh Kumar K.V  * Page also have the dirty flag cleared so we don't get recurive page_lock.
184461628a3fSMingming Cao  */
184543ce1d23SAneesh Kumar K.V static int ext4_writepage(struct page *page,
184664769240SAlex Tomas 			  struct writeback_control *wbc)
184764769240SAlex Tomas {
1848f8bec370SJan Kara 	int ret = 0;
184961628a3fSMingming Cao 	loff_t size;
1850498e5f24STheodore Ts'o 	unsigned int len;
1851744692dcSJiaying Zhang 	struct buffer_head *page_bufs = NULL;
185261628a3fSMingming Cao 	struct inode *inode = page->mapping->host;
185336ade451SJan Kara 	struct ext4_io_submit io_submit;
18541c8349a1SNamjae Jeon 	bool keep_towrite = false;
185564769240SAlex Tomas 
1856a9c667f8SLukas Czerner 	trace_ext4_writepage(page);
185761628a3fSMingming Cao 	size = i_size_read(inode);
185861628a3fSMingming Cao 	if (page->index == size >> PAGE_CACHE_SHIFT)
185961628a3fSMingming Cao 		len = size & ~PAGE_CACHE_MASK;
186061628a3fSMingming Cao 	else
186161628a3fSMingming Cao 		len = PAGE_CACHE_SIZE;
186261628a3fSMingming Cao 
1863f0e6c985SAneesh Kumar K.V 	page_bufs = page_buffers(page);
186464769240SAlex Tomas 	/*
1865fe386132SJan Kara 	 * We cannot do block allocation or other extent handling in this
1866fe386132SJan Kara 	 * function. If there are buffers needing that, we have to redirty
1867fe386132SJan Kara 	 * the page. But we may reach here when we do a journal commit via
1868fe386132SJan Kara 	 * journal_submit_inode_data_buffers() and in that case we must write
1869fe386132SJan Kara 	 * allocated buffers to achieve data=ordered mode guarantees.
187064769240SAlex Tomas 	 */
1871f19d5870STao Ma 	if (ext4_walk_page_buffers(NULL, page_bufs, 0, len, NULL,
1872c364b22cSAneesh Kumar K.V 				   ext4_bh_delay_or_unwritten)) {
187361628a3fSMingming Cao 		redirty_page_for_writepage(wbc, page);
1874fe386132SJan Kara 		if (current->flags & PF_MEMALLOC) {
1875fe386132SJan Kara 			/*
1876fe386132SJan Kara 			 * For memory cleaning there's no point in writing only
1877fe386132SJan Kara 			 * some buffers. So just bail out. Warn if we came here
1878fe386132SJan Kara 			 * from direct reclaim.
1879fe386132SJan Kara 			 */
1880fe386132SJan Kara 			WARN_ON_ONCE((current->flags & (PF_MEMALLOC|PF_KSWAPD))
1881fe386132SJan Kara 							== PF_MEMALLOC);
188261628a3fSMingming Cao 			unlock_page(page);
188361628a3fSMingming Cao 			return 0;
188461628a3fSMingming Cao 		}
18851c8349a1SNamjae Jeon 		keep_towrite = true;
1886f0e6c985SAneesh Kumar K.V 	}
188764769240SAlex Tomas 
1888cb20d518STheodore Ts'o 	if (PageChecked(page) && ext4_should_journal_data(inode))
188943ce1d23SAneesh Kumar K.V 		/*
189043ce1d23SAneesh Kumar K.V 		 * It's mmapped pagecache.  Add buffers and journal it.  There
189143ce1d23SAneesh Kumar K.V 		 * doesn't seem much point in redirtying the page here.
189243ce1d23SAneesh Kumar K.V 		 */
18933f0ca309SWu Fengguang 		return __ext4_journalled_writepage(page, len);
189443ce1d23SAneesh Kumar K.V 
189597a851edSJan Kara 	ext4_io_submit_init(&io_submit, wbc);
189697a851edSJan Kara 	io_submit.io_end = ext4_init_io_end(inode, GFP_NOFS);
189797a851edSJan Kara 	if (!io_submit.io_end) {
189897a851edSJan Kara 		redirty_page_for_writepage(wbc, page);
189997a851edSJan Kara 		unlock_page(page);
190097a851edSJan Kara 		return -ENOMEM;
190197a851edSJan Kara 	}
19021c8349a1SNamjae Jeon 	ret = ext4_bio_write_page(&io_submit, page, len, wbc, keep_towrite);
190336ade451SJan Kara 	ext4_io_submit(&io_submit);
190497a851edSJan Kara 	/* Drop io_end reference we got from init */
190597a851edSJan Kara 	ext4_put_io_end_defer(io_submit.io_end);
190664769240SAlex Tomas 	return ret;
190764769240SAlex Tomas }
190864769240SAlex Tomas 
19095f1132b2SJan Kara static int mpage_submit_page(struct mpage_da_data *mpd, struct page *page)
19105f1132b2SJan Kara {
19115f1132b2SJan Kara 	int len;
19125f1132b2SJan Kara 	loff_t size = i_size_read(mpd->inode);
19135f1132b2SJan Kara 	int err;
19145f1132b2SJan Kara 
19155f1132b2SJan Kara 	BUG_ON(page->index != mpd->first_page);
19165f1132b2SJan Kara 	if (page->index == size >> PAGE_CACHE_SHIFT)
19175f1132b2SJan Kara 		len = size & ~PAGE_CACHE_MASK;
19185f1132b2SJan Kara 	else
19195f1132b2SJan Kara 		len = PAGE_CACHE_SIZE;
19205f1132b2SJan Kara 	clear_page_dirty_for_io(page);
19211c8349a1SNamjae Jeon 	err = ext4_bio_write_page(&mpd->io_submit, page, len, mpd->wbc, false);
19225f1132b2SJan Kara 	if (!err)
19235f1132b2SJan Kara 		mpd->wbc->nr_to_write--;
19245f1132b2SJan Kara 	mpd->first_page++;
19255f1132b2SJan Kara 
19265f1132b2SJan Kara 	return err;
19275f1132b2SJan Kara }
19285f1132b2SJan Kara 
19294e7ea81dSJan Kara #define BH_FLAGS ((1 << BH_Unwritten) | (1 << BH_Delay))
19304e7ea81dSJan Kara 
193161628a3fSMingming Cao /*
1932fffb2739SJan Kara  * mballoc gives us at most this number of blocks...
1933fffb2739SJan Kara  * XXX: That seems to be only a limitation of ext4_mb_normalize_request().
1934fffb2739SJan Kara  * The rest of mballoc seems to handle chunks up to full group size.
193561628a3fSMingming Cao  */
1936fffb2739SJan Kara #define MAX_WRITEPAGES_EXTENT_LEN 2048
1937525f4ed8SMingming Cao 
1938525f4ed8SMingming Cao /*
19394e7ea81dSJan Kara  * mpage_add_bh_to_extent - try to add bh to extent of blocks to map
19404e7ea81dSJan Kara  *
19414e7ea81dSJan Kara  * @mpd - extent of blocks
19424e7ea81dSJan Kara  * @lblk - logical number of the block in the file
194309930042SJan Kara  * @bh - buffer head we want to add to the extent
19444e7ea81dSJan Kara  *
194509930042SJan Kara  * The function is used to collect contig. blocks in the same state. If the
194609930042SJan Kara  * buffer doesn't require mapping for writeback and we haven't started the
194709930042SJan Kara  * extent of buffers to map yet, the function returns 'true' immediately - the
194809930042SJan Kara  * caller can write the buffer right away. Otherwise the function returns true
194909930042SJan Kara  * if the block has been added to the extent, false if the block couldn't be
195009930042SJan Kara  * added.
19514e7ea81dSJan Kara  */
195209930042SJan Kara static bool mpage_add_bh_to_extent(struct mpage_da_data *mpd, ext4_lblk_t lblk,
195309930042SJan Kara 				   struct buffer_head *bh)
19544e7ea81dSJan Kara {
19554e7ea81dSJan Kara 	struct ext4_map_blocks *map = &mpd->map;
19564e7ea81dSJan Kara 
195709930042SJan Kara 	/* Buffer that doesn't need mapping for writeback? */
195809930042SJan Kara 	if (!buffer_dirty(bh) || !buffer_mapped(bh) ||
195909930042SJan Kara 	    (!buffer_delay(bh) && !buffer_unwritten(bh))) {
196009930042SJan Kara 		/* So far no extent to map => we write the buffer right away */
196109930042SJan Kara 		if (map->m_len == 0)
196209930042SJan Kara 			return true;
196309930042SJan Kara 		return false;
196409930042SJan Kara 	}
19654e7ea81dSJan Kara 
19664e7ea81dSJan Kara 	/* First block in the extent? */
19674e7ea81dSJan Kara 	if (map->m_len == 0) {
19684e7ea81dSJan Kara 		map->m_lblk = lblk;
19694e7ea81dSJan Kara 		map->m_len = 1;
197009930042SJan Kara 		map->m_flags = bh->b_state & BH_FLAGS;
197109930042SJan Kara 		return true;
19724e7ea81dSJan Kara 	}
19734e7ea81dSJan Kara 
197409930042SJan Kara 	/* Don't go larger than mballoc is willing to allocate */
197509930042SJan Kara 	if (map->m_len >= MAX_WRITEPAGES_EXTENT_LEN)
197609930042SJan Kara 		return false;
197709930042SJan Kara 
19784e7ea81dSJan Kara 	/* Can we merge the block to our big extent? */
19794e7ea81dSJan Kara 	if (lblk == map->m_lblk + map->m_len &&
198009930042SJan Kara 	    (bh->b_state & BH_FLAGS) == map->m_flags) {
19814e7ea81dSJan Kara 		map->m_len++;
198209930042SJan Kara 		return true;
19834e7ea81dSJan Kara 	}
198409930042SJan Kara 	return false;
19854e7ea81dSJan Kara }
19864e7ea81dSJan Kara 
19875f1132b2SJan Kara /*
19885f1132b2SJan Kara  * mpage_process_page_bufs - submit page buffers for IO or add them to extent
19895f1132b2SJan Kara  *
19905f1132b2SJan Kara  * @mpd - extent of blocks for mapping
19915f1132b2SJan Kara  * @head - the first buffer in the page
19925f1132b2SJan Kara  * @bh - buffer we should start processing from
19935f1132b2SJan Kara  * @lblk - logical number of the block in the file corresponding to @bh
19945f1132b2SJan Kara  *
19955f1132b2SJan Kara  * Walk through page buffers from @bh upto @head (exclusive) and either submit
19965f1132b2SJan Kara  * the page for IO if all buffers in this page were mapped and there's no
19975f1132b2SJan Kara  * accumulated extent of buffers to map or add buffers in the page to the
19985f1132b2SJan Kara  * extent of buffers to map. The function returns 1 if the caller can continue
19995f1132b2SJan Kara  * by processing the next page, 0 if it should stop adding buffers to the
20005f1132b2SJan Kara  * extent to map because we cannot extend it anymore. It can also return value
20015f1132b2SJan Kara  * < 0 in case of error during IO submission.
20025f1132b2SJan Kara  */
20035f1132b2SJan Kara static int mpage_process_page_bufs(struct mpage_da_data *mpd,
20044e7ea81dSJan Kara 				   struct buffer_head *head,
20054e7ea81dSJan Kara 				   struct buffer_head *bh,
20064e7ea81dSJan Kara 				   ext4_lblk_t lblk)
20074e7ea81dSJan Kara {
20084e7ea81dSJan Kara 	struct inode *inode = mpd->inode;
20095f1132b2SJan Kara 	int err;
20104e7ea81dSJan Kara 	ext4_lblk_t blocks = (i_size_read(inode) + (1 << inode->i_blkbits) - 1)
20114e7ea81dSJan Kara 							>> inode->i_blkbits;
20124e7ea81dSJan Kara 
20134e7ea81dSJan Kara 	do {
20144e7ea81dSJan Kara 		BUG_ON(buffer_locked(bh));
20154e7ea81dSJan Kara 
201609930042SJan Kara 		if (lblk >= blocks || !mpage_add_bh_to_extent(mpd, lblk, bh)) {
20174e7ea81dSJan Kara 			/* Found extent to map? */
20184e7ea81dSJan Kara 			if (mpd->map.m_len)
20195f1132b2SJan Kara 				return 0;
202009930042SJan Kara 			/* Everything mapped so far and we hit EOF */
20215f1132b2SJan Kara 			break;
20224e7ea81dSJan Kara 		}
20234e7ea81dSJan Kara 	} while (lblk++, (bh = bh->b_this_page) != head);
20245f1132b2SJan Kara 	/* So far everything mapped? Submit the page for IO. */
20255f1132b2SJan Kara 	if (mpd->map.m_len == 0) {
20265f1132b2SJan Kara 		err = mpage_submit_page(mpd, head->b_page);
20275f1132b2SJan Kara 		if (err < 0)
20284e7ea81dSJan Kara 			return err;
20294e7ea81dSJan Kara 	}
20305f1132b2SJan Kara 	return lblk < blocks;
20315f1132b2SJan Kara }
20324e7ea81dSJan Kara 
20334e7ea81dSJan Kara /*
20344e7ea81dSJan Kara  * mpage_map_buffers - update buffers corresponding to changed extent and
20354e7ea81dSJan Kara  *		       submit fully mapped pages for IO
20364e7ea81dSJan Kara  *
20374e7ea81dSJan Kara  * @mpd - description of extent to map, on return next extent to map
20384e7ea81dSJan Kara  *
20394e7ea81dSJan Kara  * Scan buffers corresponding to changed extent (we expect corresponding pages
20404e7ea81dSJan Kara  * to be already locked) and update buffer state according to new extent state.
20414e7ea81dSJan Kara  * We map delalloc buffers to their physical location, clear unwritten bits,
2042556615dcSLukas Czerner  * and mark buffers as uninit when we perform writes to unwritten extents
20434e7ea81dSJan Kara  * and do extent conversion after IO is finished. If the last page is not fully
20444e7ea81dSJan Kara  * mapped, we update @map to the next extent in the last page that needs
20454e7ea81dSJan Kara  * mapping. Otherwise we submit the page for IO.
20464e7ea81dSJan Kara  */
20474e7ea81dSJan Kara static int mpage_map_and_submit_buffers(struct mpage_da_data *mpd)
20484e7ea81dSJan Kara {
20494e7ea81dSJan Kara 	struct pagevec pvec;
20504e7ea81dSJan Kara 	int nr_pages, i;
20514e7ea81dSJan Kara 	struct inode *inode = mpd->inode;
20524e7ea81dSJan Kara 	struct buffer_head *head, *bh;
20534e7ea81dSJan Kara 	int bpp_bits = PAGE_CACHE_SHIFT - inode->i_blkbits;
20544e7ea81dSJan Kara 	pgoff_t start, end;
20554e7ea81dSJan Kara 	ext4_lblk_t lblk;
20564e7ea81dSJan Kara 	sector_t pblock;
20574e7ea81dSJan Kara 	int err;
20584e7ea81dSJan Kara 
20594e7ea81dSJan Kara 	start = mpd->map.m_lblk >> bpp_bits;
20604e7ea81dSJan Kara 	end = (mpd->map.m_lblk + mpd->map.m_len - 1) >> bpp_bits;
20614e7ea81dSJan Kara 	lblk = start << bpp_bits;
20624e7ea81dSJan Kara 	pblock = mpd->map.m_pblk;
20634e7ea81dSJan Kara 
20644e7ea81dSJan Kara 	pagevec_init(&pvec, 0);
20654e7ea81dSJan Kara 	while (start <= end) {
20664e7ea81dSJan Kara 		nr_pages = pagevec_lookup(&pvec, inode->i_mapping, start,
20674e7ea81dSJan Kara 					  PAGEVEC_SIZE);
20684e7ea81dSJan Kara 		if (nr_pages == 0)
20694e7ea81dSJan Kara 			break;
20704e7ea81dSJan Kara 		for (i = 0; i < nr_pages; i++) {
20714e7ea81dSJan Kara 			struct page *page = pvec.pages[i];
20724e7ea81dSJan Kara 
20734e7ea81dSJan Kara 			if (page->index > end)
20744e7ea81dSJan Kara 				break;
20754e7ea81dSJan Kara 			/* Up to 'end' pages must be contiguous */
20764e7ea81dSJan Kara 			BUG_ON(page->index != start);
20774e7ea81dSJan Kara 			bh = head = page_buffers(page);
20784e7ea81dSJan Kara 			do {
20794e7ea81dSJan Kara 				if (lblk < mpd->map.m_lblk)
20804e7ea81dSJan Kara 					continue;
20814e7ea81dSJan Kara 				if (lblk >= mpd->map.m_lblk + mpd->map.m_len) {
20824e7ea81dSJan Kara 					/*
20834e7ea81dSJan Kara 					 * Buffer after end of mapped extent.
20844e7ea81dSJan Kara 					 * Find next buffer in the page to map.
20854e7ea81dSJan Kara 					 */
20864e7ea81dSJan Kara 					mpd->map.m_len = 0;
20874e7ea81dSJan Kara 					mpd->map.m_flags = 0;
20885f1132b2SJan Kara 					/*
20895f1132b2SJan Kara 					 * FIXME: If dioread_nolock supports
20905f1132b2SJan Kara 					 * blocksize < pagesize, we need to make
20915f1132b2SJan Kara 					 * sure we add size mapped so far to
20925f1132b2SJan Kara 					 * io_end->size as the following call
20935f1132b2SJan Kara 					 * can submit the page for IO.
20945f1132b2SJan Kara 					 */
20955f1132b2SJan Kara 					err = mpage_process_page_bufs(mpd, head,
20965f1132b2SJan Kara 								      bh, lblk);
20974e7ea81dSJan Kara 					pagevec_release(&pvec);
20985f1132b2SJan Kara 					if (err > 0)
20995f1132b2SJan Kara 						err = 0;
21005f1132b2SJan Kara 					return err;
21014e7ea81dSJan Kara 				}
21024e7ea81dSJan Kara 				if (buffer_delay(bh)) {
21034e7ea81dSJan Kara 					clear_buffer_delay(bh);
21044e7ea81dSJan Kara 					bh->b_blocknr = pblock++;
21054e7ea81dSJan Kara 				}
21064e7ea81dSJan Kara 				clear_buffer_unwritten(bh);
21075f1132b2SJan Kara 			} while (lblk++, (bh = bh->b_this_page) != head);
21084e7ea81dSJan Kara 
21094e7ea81dSJan Kara 			/*
21104e7ea81dSJan Kara 			 * FIXME: This is going to break if dioread_nolock
21114e7ea81dSJan Kara 			 * supports blocksize < pagesize as we will try to
21124e7ea81dSJan Kara 			 * convert potentially unmapped parts of inode.
21134e7ea81dSJan Kara 			 */
21144e7ea81dSJan Kara 			mpd->io_submit.io_end->size += PAGE_CACHE_SIZE;
21154e7ea81dSJan Kara 			/* Page fully mapped - let IO run! */
21164e7ea81dSJan Kara 			err = mpage_submit_page(mpd, page);
21174e7ea81dSJan Kara 			if (err < 0) {
21184e7ea81dSJan Kara 				pagevec_release(&pvec);
21194e7ea81dSJan Kara 				return err;
21204e7ea81dSJan Kara 			}
21214e7ea81dSJan Kara 			start++;
21224e7ea81dSJan Kara 		}
21234e7ea81dSJan Kara 		pagevec_release(&pvec);
21244e7ea81dSJan Kara 	}
21254e7ea81dSJan Kara 	/* Extent fully mapped and matches with page boundary. We are done. */
21264e7ea81dSJan Kara 	mpd->map.m_len = 0;
21274e7ea81dSJan Kara 	mpd->map.m_flags = 0;
21284e7ea81dSJan Kara 	return 0;
21294e7ea81dSJan Kara }
21304e7ea81dSJan Kara 
21314e7ea81dSJan Kara static int mpage_map_one_extent(handle_t *handle, struct mpage_da_data *mpd)
21324e7ea81dSJan Kara {
21334e7ea81dSJan Kara 	struct inode *inode = mpd->inode;
21344e7ea81dSJan Kara 	struct ext4_map_blocks *map = &mpd->map;
21354e7ea81dSJan Kara 	int get_blocks_flags;
2136090f32eeSLukas Czerner 	int err, dioread_nolock;
21374e7ea81dSJan Kara 
21384e7ea81dSJan Kara 	trace_ext4_da_write_pages_extent(inode, map);
21394e7ea81dSJan Kara 	/*
21404e7ea81dSJan Kara 	 * Call ext4_map_blocks() to allocate any delayed allocation blocks, or
2141556615dcSLukas Czerner 	 * to convert an unwritten extent to be initialized (in the case
21424e7ea81dSJan Kara 	 * where we have written into one or more preallocated blocks).  It is
21434e7ea81dSJan Kara 	 * possible that we're going to need more metadata blocks than
21444e7ea81dSJan Kara 	 * previously reserved. However we must not fail because we're in
21454e7ea81dSJan Kara 	 * writeback and there is nothing we can do about it so it might result
21464e7ea81dSJan Kara 	 * in data loss.  So use reserved blocks to allocate metadata if
21474e7ea81dSJan Kara 	 * possible.
21484e7ea81dSJan Kara 	 *
21494e7ea81dSJan Kara 	 * We pass in the magic EXT4_GET_BLOCKS_DELALLOC_RESERVE if the blocks
21504e7ea81dSJan Kara 	 * in question are delalloc blocks.  This affects functions in many
21514e7ea81dSJan Kara 	 * different parts of the allocation call path.  This flag exists
21524e7ea81dSJan Kara 	 * primarily because we don't want to change *many* call functions, so
21534e7ea81dSJan Kara 	 * ext4_map_blocks() will set the EXT4_STATE_DELALLOC_RESERVED flag
21544e7ea81dSJan Kara 	 * once the inode's allocation semaphore is taken.
21554e7ea81dSJan Kara 	 */
21564e7ea81dSJan Kara 	get_blocks_flags = EXT4_GET_BLOCKS_CREATE |
21574e7ea81dSJan Kara 			   EXT4_GET_BLOCKS_METADATA_NOFAIL;
2158090f32eeSLukas Czerner 	dioread_nolock = ext4_should_dioread_nolock(inode);
2159090f32eeSLukas Czerner 	if (dioread_nolock)
21604e7ea81dSJan Kara 		get_blocks_flags |= EXT4_GET_BLOCKS_IO_CREATE_EXT;
21614e7ea81dSJan Kara 	if (map->m_flags & (1 << BH_Delay))
21624e7ea81dSJan Kara 		get_blocks_flags |= EXT4_GET_BLOCKS_DELALLOC_RESERVE;
21634e7ea81dSJan Kara 
21644e7ea81dSJan Kara 	err = ext4_map_blocks(handle, inode, map, get_blocks_flags);
21654e7ea81dSJan Kara 	if (err < 0)
21664e7ea81dSJan Kara 		return err;
2167090f32eeSLukas Czerner 	if (dioread_nolock && (map->m_flags & EXT4_MAP_UNWRITTEN)) {
21686b523df4SJan Kara 		if (!mpd->io_submit.io_end->handle &&
21696b523df4SJan Kara 		    ext4_handle_valid(handle)) {
21706b523df4SJan Kara 			mpd->io_submit.io_end->handle = handle->h_rsv_handle;
21716b523df4SJan Kara 			handle->h_rsv_handle = NULL;
21726b523df4SJan Kara 		}
21733613d228SJan Kara 		ext4_set_io_unwritten_flag(inode, mpd->io_submit.io_end);
21746b523df4SJan Kara 	}
21754e7ea81dSJan Kara 
21764e7ea81dSJan Kara 	BUG_ON(map->m_len == 0);
21774e7ea81dSJan Kara 	if (map->m_flags & EXT4_MAP_NEW) {
21784e7ea81dSJan Kara 		struct block_device *bdev = inode->i_sb->s_bdev;
21794e7ea81dSJan Kara 		int i;
21804e7ea81dSJan Kara 
21814e7ea81dSJan Kara 		for (i = 0; i < map->m_len; i++)
21824e7ea81dSJan Kara 			unmap_underlying_metadata(bdev, map->m_pblk + i);
21834e7ea81dSJan Kara 	}
21844e7ea81dSJan Kara 	return 0;
21854e7ea81dSJan Kara }
21864e7ea81dSJan Kara 
21874e7ea81dSJan Kara /*
21884e7ea81dSJan Kara  * mpage_map_and_submit_extent - map extent starting at mpd->lblk of length
21894e7ea81dSJan Kara  *				 mpd->len and submit pages underlying it for IO
21904e7ea81dSJan Kara  *
21914e7ea81dSJan Kara  * @handle - handle for journal operations
21924e7ea81dSJan Kara  * @mpd - extent to map
21937534e854SJan Kara  * @give_up_on_write - we set this to true iff there is a fatal error and there
21947534e854SJan Kara  *                     is no hope of writing the data. The caller should discard
21957534e854SJan Kara  *                     dirty pages to avoid infinite loops.
21964e7ea81dSJan Kara  *
21974e7ea81dSJan Kara  * The function maps extent starting at mpd->lblk of length mpd->len. If it is
21984e7ea81dSJan Kara  * delayed, blocks are allocated, if it is unwritten, we may need to convert
21994e7ea81dSJan Kara  * them to initialized or split the described range from larger unwritten
22004e7ea81dSJan Kara  * extent. Note that we need not map all the described range since allocation
22014e7ea81dSJan Kara  * can return less blocks or the range is covered by more unwritten extents. We
22024e7ea81dSJan Kara  * cannot map more because we are limited by reserved transaction credits. On
22034e7ea81dSJan Kara  * the other hand we always make sure that the last touched page is fully
22044e7ea81dSJan Kara  * mapped so that it can be written out (and thus forward progress is
22054e7ea81dSJan Kara  * guaranteed). After mapping we submit all mapped pages for IO.
22064e7ea81dSJan Kara  */
22074e7ea81dSJan Kara static int mpage_map_and_submit_extent(handle_t *handle,
2208cb530541STheodore Ts'o 				       struct mpage_da_data *mpd,
2209cb530541STheodore Ts'o 				       bool *give_up_on_write)
22104e7ea81dSJan Kara {
22114e7ea81dSJan Kara 	struct inode *inode = mpd->inode;
22124e7ea81dSJan Kara 	struct ext4_map_blocks *map = &mpd->map;
22134e7ea81dSJan Kara 	int err;
22144e7ea81dSJan Kara 	loff_t disksize;
22154e7ea81dSJan Kara 
22164e7ea81dSJan Kara 	mpd->io_submit.io_end->offset =
22174e7ea81dSJan Kara 				((loff_t)map->m_lblk) << inode->i_blkbits;
221827d7c4edSJan Kara 	do {
22194e7ea81dSJan Kara 		err = mpage_map_one_extent(handle, mpd);
22204e7ea81dSJan Kara 		if (err < 0) {
22214e7ea81dSJan Kara 			struct super_block *sb = inode->i_sb;
22224e7ea81dSJan Kara 
2223cb530541STheodore Ts'o 			if (EXT4_SB(sb)->s_mount_flags & EXT4_MF_FS_ABORTED)
2224cb530541STheodore Ts'o 				goto invalidate_dirty_pages;
22254e7ea81dSJan Kara 			/*
2226cb530541STheodore Ts'o 			 * Let the uper layers retry transient errors.
2227cb530541STheodore Ts'o 			 * In the case of ENOSPC, if ext4_count_free_blocks()
2228cb530541STheodore Ts'o 			 * is non-zero, a commit should free up blocks.
22294e7ea81dSJan Kara 			 */
2230cb530541STheodore Ts'o 			if ((err == -ENOMEM) ||
2231cb530541STheodore Ts'o 			    (err == -ENOSPC && ext4_count_free_clusters(sb)))
2232cb530541STheodore Ts'o 				return err;
22334e7ea81dSJan Kara 			ext4_msg(sb, KERN_CRIT,
22344e7ea81dSJan Kara 				 "Delayed block allocation failed for "
22354e7ea81dSJan Kara 				 "inode %lu at logical offset %llu with"
22364e7ea81dSJan Kara 				 " max blocks %u with error %d",
22374e7ea81dSJan Kara 				 inode->i_ino,
22384e7ea81dSJan Kara 				 (unsigned long long)map->m_lblk,
2239cb530541STheodore Ts'o 				 (unsigned)map->m_len, -err);
22404e7ea81dSJan Kara 			ext4_msg(sb, KERN_CRIT,
22414e7ea81dSJan Kara 				 "This should not happen!! Data will "
22424e7ea81dSJan Kara 				 "be lost\n");
22434e7ea81dSJan Kara 			if (err == -ENOSPC)
22444e7ea81dSJan Kara 				ext4_print_free_blocks(inode);
2245cb530541STheodore Ts'o 		invalidate_dirty_pages:
2246cb530541STheodore Ts'o 			*give_up_on_write = true;
22474e7ea81dSJan Kara 			return err;
22484e7ea81dSJan Kara 		}
22494e7ea81dSJan Kara 		/*
22504e7ea81dSJan Kara 		 * Update buffer state, submit mapped pages, and get us new
22514e7ea81dSJan Kara 		 * extent to map
22524e7ea81dSJan Kara 		 */
22534e7ea81dSJan Kara 		err = mpage_map_and_submit_buffers(mpd);
22544e7ea81dSJan Kara 		if (err < 0)
22554e7ea81dSJan Kara 			return err;
225627d7c4edSJan Kara 	} while (map->m_len);
22574e7ea81dSJan Kara 
2258622cad13STheodore Ts'o 	/*
2259622cad13STheodore Ts'o 	 * Update on-disk size after IO is submitted.  Races with
2260622cad13STheodore Ts'o 	 * truncate are avoided by checking i_size under i_data_sem.
2261622cad13STheodore Ts'o 	 */
22624e7ea81dSJan Kara 	disksize = ((loff_t)mpd->first_page) << PAGE_CACHE_SHIFT;
22634e7ea81dSJan Kara 	if (disksize > EXT4_I(inode)->i_disksize) {
22644e7ea81dSJan Kara 		int err2;
2265622cad13STheodore Ts'o 		loff_t i_size;
22664e7ea81dSJan Kara 
2267622cad13STheodore Ts'o 		down_write(&EXT4_I(inode)->i_data_sem);
2268622cad13STheodore Ts'o 		i_size = i_size_read(inode);
2269622cad13STheodore Ts'o 		if (disksize > i_size)
2270622cad13STheodore Ts'o 			disksize = i_size;
2271622cad13STheodore Ts'o 		if (disksize > EXT4_I(inode)->i_disksize)
2272622cad13STheodore Ts'o 			EXT4_I(inode)->i_disksize = disksize;
22734e7ea81dSJan Kara 		err2 = ext4_mark_inode_dirty(handle, inode);
2274622cad13STheodore Ts'o 		up_write(&EXT4_I(inode)->i_data_sem);
22754e7ea81dSJan Kara 		if (err2)
22764e7ea81dSJan Kara 			ext4_error(inode->i_sb,
22774e7ea81dSJan Kara 				   "Failed to mark inode %lu dirty",
22784e7ea81dSJan Kara 				   inode->i_ino);
22794e7ea81dSJan Kara 		if (!err)
22804e7ea81dSJan Kara 			err = err2;
22814e7ea81dSJan Kara 	}
22824e7ea81dSJan Kara 	return err;
22834e7ea81dSJan Kara }
22844e7ea81dSJan Kara 
22854e7ea81dSJan Kara /*
2286fffb2739SJan Kara  * Calculate the total number of credits to reserve for one writepages
228720970ba6STheodore Ts'o  * iteration. This is called from ext4_writepages(). We map an extent of
2288fffb2739SJan Kara  * up to MAX_WRITEPAGES_EXTENT_LEN blocks and then we go on and finish mapping
2289fffb2739SJan Kara  * the last partial page. So in total we can map MAX_WRITEPAGES_EXTENT_LEN +
2290fffb2739SJan Kara  * bpp - 1 blocks in bpp different extents.
2291525f4ed8SMingming Cao  */
2292fffb2739SJan Kara static int ext4_da_writepages_trans_blocks(struct inode *inode)
2293fffb2739SJan Kara {
2294fffb2739SJan Kara 	int bpp = ext4_journal_blocks_per_page(inode);
2295525f4ed8SMingming Cao 
2296fffb2739SJan Kara 	return ext4_meta_trans_blocks(inode,
2297fffb2739SJan Kara 				MAX_WRITEPAGES_EXTENT_LEN + bpp - 1, bpp);
2298525f4ed8SMingming Cao }
229961628a3fSMingming Cao 
23008e48dcfbSTheodore Ts'o /*
23014e7ea81dSJan Kara  * mpage_prepare_extent_to_map - find & lock contiguous range of dirty pages
23024e7ea81dSJan Kara  * 				 and underlying extent to map
23034e7ea81dSJan Kara  *
23044e7ea81dSJan Kara  * @mpd - where to look for pages
23054e7ea81dSJan Kara  *
23064e7ea81dSJan Kara  * Walk dirty pages in the mapping. If they are fully mapped, submit them for
23074e7ea81dSJan Kara  * IO immediately. When we find a page which isn't mapped we start accumulating
23084e7ea81dSJan Kara  * extent of buffers underlying these pages that needs mapping (formed by
23094e7ea81dSJan Kara  * either delayed or unwritten buffers). We also lock the pages containing
23104e7ea81dSJan Kara  * these buffers. The extent found is returned in @mpd structure (starting at
23114e7ea81dSJan Kara  * mpd->lblk with length mpd->len blocks).
23124e7ea81dSJan Kara  *
23134e7ea81dSJan Kara  * Note that this function can attach bios to one io_end structure which are
23144e7ea81dSJan Kara  * neither logically nor physically contiguous. Although it may seem as an
23154e7ea81dSJan Kara  * unnecessary complication, it is actually inevitable in blocksize < pagesize
23164e7ea81dSJan Kara  * case as we need to track IO to all buffers underlying a page in one io_end.
23178e48dcfbSTheodore Ts'o  */
23184e7ea81dSJan Kara static int mpage_prepare_extent_to_map(struct mpage_da_data *mpd)
23198e48dcfbSTheodore Ts'o {
23204e7ea81dSJan Kara 	struct address_space *mapping = mpd->inode->i_mapping;
23218e48dcfbSTheodore Ts'o 	struct pagevec pvec;
23224f01b02cSTheodore Ts'o 	unsigned int nr_pages;
2323aeac589aSMing Lei 	long left = mpd->wbc->nr_to_write;
23244e7ea81dSJan Kara 	pgoff_t index = mpd->first_page;
23254e7ea81dSJan Kara 	pgoff_t end = mpd->last_page;
23264e7ea81dSJan Kara 	int tag;
23274e7ea81dSJan Kara 	int i, err = 0;
23284e7ea81dSJan Kara 	int blkbits = mpd->inode->i_blkbits;
23294e7ea81dSJan Kara 	ext4_lblk_t lblk;
23304e7ea81dSJan Kara 	struct buffer_head *head;
23318e48dcfbSTheodore Ts'o 
23324e7ea81dSJan Kara 	if (mpd->wbc->sync_mode == WB_SYNC_ALL || mpd->wbc->tagged_writepages)
23335b41d924SEric Sandeen 		tag = PAGECACHE_TAG_TOWRITE;
23345b41d924SEric Sandeen 	else
23355b41d924SEric Sandeen 		tag = PAGECACHE_TAG_DIRTY;
23365b41d924SEric Sandeen 
23374e7ea81dSJan Kara 	pagevec_init(&pvec, 0);
23384e7ea81dSJan Kara 	mpd->map.m_len = 0;
23394e7ea81dSJan Kara 	mpd->next_page = index;
23404f01b02cSTheodore Ts'o 	while (index <= end) {
23415b41d924SEric Sandeen 		nr_pages = pagevec_lookup_tag(&pvec, mapping, &index, tag,
23428e48dcfbSTheodore Ts'o 			      min(end - index, (pgoff_t)PAGEVEC_SIZE-1) + 1);
23438e48dcfbSTheodore Ts'o 		if (nr_pages == 0)
23444e7ea81dSJan Kara 			goto out;
23458e48dcfbSTheodore Ts'o 
23468e48dcfbSTheodore Ts'o 		for (i = 0; i < nr_pages; i++) {
23478e48dcfbSTheodore Ts'o 			struct page *page = pvec.pages[i];
23488e48dcfbSTheodore Ts'o 
23498e48dcfbSTheodore Ts'o 			/*
23508e48dcfbSTheodore Ts'o 			 * At this point, the page may be truncated or
23518e48dcfbSTheodore Ts'o 			 * invalidated (changing page->mapping to NULL), or
23528e48dcfbSTheodore Ts'o 			 * even swizzled back from swapper_space to tmpfs file
23538e48dcfbSTheodore Ts'o 			 * mapping. However, page->index will not change
23548e48dcfbSTheodore Ts'o 			 * because we have a reference on the page.
23558e48dcfbSTheodore Ts'o 			 */
23564f01b02cSTheodore Ts'o 			if (page->index > end)
23574f01b02cSTheodore Ts'o 				goto out;
23588e48dcfbSTheodore Ts'o 
2359aeac589aSMing Lei 			/*
2360aeac589aSMing Lei 			 * Accumulated enough dirty pages? This doesn't apply
2361aeac589aSMing Lei 			 * to WB_SYNC_ALL mode. For integrity sync we have to
2362aeac589aSMing Lei 			 * keep going because someone may be concurrently
2363aeac589aSMing Lei 			 * dirtying pages, and we might have synced a lot of
2364aeac589aSMing Lei 			 * newly appeared dirty pages, but have not synced all
2365aeac589aSMing Lei 			 * of the old dirty pages.
2366aeac589aSMing Lei 			 */
2367aeac589aSMing Lei 			if (mpd->wbc->sync_mode == WB_SYNC_NONE && left <= 0)
2368aeac589aSMing Lei 				goto out;
2369aeac589aSMing Lei 
23704e7ea81dSJan Kara 			/* If we can't merge this page, we are done. */
23714e7ea81dSJan Kara 			if (mpd->map.m_len > 0 && mpd->next_page != page->index)
23724e7ea81dSJan Kara 				goto out;
237378aaced3STheodore Ts'o 
23748e48dcfbSTheodore Ts'o 			lock_page(page);
23758e48dcfbSTheodore Ts'o 			/*
23764e7ea81dSJan Kara 			 * If the page is no longer dirty, or its mapping no
23774e7ea81dSJan Kara 			 * longer corresponds to inode we are writing (which
23784e7ea81dSJan Kara 			 * means it has been truncated or invalidated), or the
23794e7ea81dSJan Kara 			 * page is already under writeback and we are not doing
23804e7ea81dSJan Kara 			 * a data integrity writeback, skip the page
23818e48dcfbSTheodore Ts'o 			 */
23824f01b02cSTheodore Ts'o 			if (!PageDirty(page) ||
23834f01b02cSTheodore Ts'o 			    (PageWriteback(page) &&
23844e7ea81dSJan Kara 			     (mpd->wbc->sync_mode == WB_SYNC_NONE)) ||
23854f01b02cSTheodore Ts'o 			    unlikely(page->mapping != mapping)) {
23868e48dcfbSTheodore Ts'o 				unlock_page(page);
23878e48dcfbSTheodore Ts'o 				continue;
23888e48dcfbSTheodore Ts'o 			}
23898e48dcfbSTheodore Ts'o 
23908e48dcfbSTheodore Ts'o 			wait_on_page_writeback(page);
23918e48dcfbSTheodore Ts'o 			BUG_ON(PageWriteback(page));
23928e48dcfbSTheodore Ts'o 
23934e7ea81dSJan Kara 			if (mpd->map.m_len == 0)
23948eb9e5ceSTheodore Ts'o 				mpd->first_page = page->index;
23958eb9e5ceSTheodore Ts'o 			mpd->next_page = page->index + 1;
2396f8bec370SJan Kara 			/* Add all dirty buffers to mpd */
23974e7ea81dSJan Kara 			lblk = ((ext4_lblk_t)page->index) <<
23984e7ea81dSJan Kara 				(PAGE_CACHE_SHIFT - blkbits);
23998eb9e5ceSTheodore Ts'o 			head = page_buffers(page);
24005f1132b2SJan Kara 			err = mpage_process_page_bufs(mpd, head, head, lblk);
24015f1132b2SJan Kara 			if (err <= 0)
24024e7ea81dSJan Kara 				goto out;
24035f1132b2SJan Kara 			err = 0;
2404aeac589aSMing Lei 			left--;
24058e48dcfbSTheodore Ts'o 		}
24068e48dcfbSTheodore Ts'o 		pagevec_release(&pvec);
24078e48dcfbSTheodore Ts'o 		cond_resched();
24088e48dcfbSTheodore Ts'o 	}
24094f01b02cSTheodore Ts'o 	return 0;
24108eb9e5ceSTheodore Ts'o out:
24118eb9e5ceSTheodore Ts'o 	pagevec_release(&pvec);
24124e7ea81dSJan Kara 	return err;
24138e48dcfbSTheodore Ts'o }
24148e48dcfbSTheodore Ts'o 
241520970ba6STheodore Ts'o static int __writepage(struct page *page, struct writeback_control *wbc,
241620970ba6STheodore Ts'o 		       void *data)
241720970ba6STheodore Ts'o {
241820970ba6STheodore Ts'o 	struct address_space *mapping = data;
241920970ba6STheodore Ts'o 	int ret = ext4_writepage(page, wbc);
242020970ba6STheodore Ts'o 	mapping_set_error(mapping, ret);
242120970ba6STheodore Ts'o 	return ret;
242220970ba6STheodore Ts'o }
242320970ba6STheodore Ts'o 
242420970ba6STheodore Ts'o static int ext4_writepages(struct address_space *mapping,
242564769240SAlex Tomas 			   struct writeback_control *wbc)
242664769240SAlex Tomas {
24274e7ea81dSJan Kara 	pgoff_t	writeback_index = 0;
24284e7ea81dSJan Kara 	long nr_to_write = wbc->nr_to_write;
242922208dedSAneesh Kumar K.V 	int range_whole = 0;
24304e7ea81dSJan Kara 	int cycled = 1;
243161628a3fSMingming Cao 	handle_t *handle = NULL;
2432df22291fSAneesh Kumar K.V 	struct mpage_da_data mpd;
24335e745b04SAneesh Kumar K.V 	struct inode *inode = mapping->host;
24346b523df4SJan Kara 	int needed_blocks, rsv_blocks = 0, ret = 0;
24355e745b04SAneesh Kumar K.V 	struct ext4_sb_info *sbi = EXT4_SB(mapping->host->i_sb);
24364e7ea81dSJan Kara 	bool done;
24371bce63d1SShaohua Li 	struct blk_plug plug;
2438cb530541STheodore Ts'o 	bool give_up_on_write = false;
243961628a3fSMingming Cao 
244020970ba6STheodore Ts'o 	trace_ext4_writepages(inode, wbc);
2441ba80b101STheodore Ts'o 
244261628a3fSMingming Cao 	/*
244361628a3fSMingming Cao 	 * No pages to write? This is mainly a kludge to avoid starting
244461628a3fSMingming Cao 	 * a transaction for special inodes like journal inode on last iput()
244561628a3fSMingming Cao 	 * because that could violate lock ordering on umount
244661628a3fSMingming Cao 	 */
2447a1d6cc56SAneesh Kumar K.V 	if (!mapping->nrpages || !mapping_tagged(mapping, PAGECACHE_TAG_DIRTY))
2448bbf023c7SMing Lei 		goto out_writepages;
24492a21e37eSTheodore Ts'o 
245020970ba6STheodore Ts'o 	if (ext4_should_journal_data(inode)) {
245120970ba6STheodore Ts'o 		struct blk_plug plug;
245220970ba6STheodore Ts'o 
245320970ba6STheodore Ts'o 		blk_start_plug(&plug);
245420970ba6STheodore Ts'o 		ret = write_cache_pages(mapping, wbc, __writepage, mapping);
245520970ba6STheodore Ts'o 		blk_finish_plug(&plug);
2456bbf023c7SMing Lei 		goto out_writepages;
245720970ba6STheodore Ts'o 	}
245820970ba6STheodore Ts'o 
24592a21e37eSTheodore Ts'o 	/*
24602a21e37eSTheodore Ts'o 	 * If the filesystem has aborted, it is read-only, so return
24612a21e37eSTheodore Ts'o 	 * right away instead of dumping stack traces later on that
24622a21e37eSTheodore Ts'o 	 * will obscure the real source of the problem.  We test
24634ab2f15bSTheodore Ts'o 	 * EXT4_MF_FS_ABORTED instead of sb->s_flag's MS_RDONLY because
24642a21e37eSTheodore Ts'o 	 * the latter could be true if the filesystem is mounted
246520970ba6STheodore Ts'o 	 * read-only, and in that case, ext4_writepages should
24662a21e37eSTheodore Ts'o 	 * *never* be called, so if that ever happens, we would want
24672a21e37eSTheodore Ts'o 	 * the stack trace.
24682a21e37eSTheodore Ts'o 	 */
2469bbf023c7SMing Lei 	if (unlikely(sbi->s_mount_flags & EXT4_MF_FS_ABORTED)) {
2470bbf023c7SMing Lei 		ret = -EROFS;
2471bbf023c7SMing Lei 		goto out_writepages;
2472bbf023c7SMing Lei 	}
24732a21e37eSTheodore Ts'o 
24746b523df4SJan Kara 	if (ext4_should_dioread_nolock(inode)) {
24756b523df4SJan Kara 		/*
24766b523df4SJan Kara 		 * We may need to convert up to one extent per block in
24776b523df4SJan Kara 		 * the page and we may dirty the inode.
24786b523df4SJan Kara 		 */
24796b523df4SJan Kara 		rsv_blocks = 1 + (PAGE_CACHE_SIZE >> inode->i_blkbits);
24806b523df4SJan Kara 	}
24816b523df4SJan Kara 
24824e7ea81dSJan Kara 	/*
24834e7ea81dSJan Kara 	 * If we have inline data and arrive here, it means that
24844e7ea81dSJan Kara 	 * we will soon create the block for the 1st page, so
24854e7ea81dSJan Kara 	 * we'd better clear the inline data here.
24864e7ea81dSJan Kara 	 */
24874e7ea81dSJan Kara 	if (ext4_has_inline_data(inode)) {
24884e7ea81dSJan Kara 		/* Just inode will be modified... */
24894e7ea81dSJan Kara 		handle = ext4_journal_start(inode, EXT4_HT_INODE, 1);
24904e7ea81dSJan Kara 		if (IS_ERR(handle)) {
24914e7ea81dSJan Kara 			ret = PTR_ERR(handle);
24924e7ea81dSJan Kara 			goto out_writepages;
24934e7ea81dSJan Kara 		}
24944e7ea81dSJan Kara 		BUG_ON(ext4_test_inode_state(inode,
24954e7ea81dSJan Kara 				EXT4_STATE_MAY_INLINE_DATA));
24964e7ea81dSJan Kara 		ext4_destroy_inline_data(handle, inode);
24974e7ea81dSJan Kara 		ext4_journal_stop(handle);
24984e7ea81dSJan Kara 	}
24994e7ea81dSJan Kara 
250022208dedSAneesh Kumar K.V 	if (wbc->range_start == 0 && wbc->range_end == LLONG_MAX)
250122208dedSAneesh Kumar K.V 		range_whole = 1;
250261628a3fSMingming Cao 
25032acf2c26SAneesh Kumar K.V 	if (wbc->range_cyclic) {
25044e7ea81dSJan Kara 		writeback_index = mapping->writeback_index;
25054e7ea81dSJan Kara 		if (writeback_index)
25062acf2c26SAneesh Kumar K.V 			cycled = 0;
25074e7ea81dSJan Kara 		mpd.first_page = writeback_index;
25084e7ea81dSJan Kara 		mpd.last_page = -1;
25095b41d924SEric Sandeen 	} else {
25104e7ea81dSJan Kara 		mpd.first_page = wbc->range_start >> PAGE_CACHE_SHIFT;
25114e7ea81dSJan Kara 		mpd.last_page = wbc->range_end >> PAGE_CACHE_SHIFT;
25125b41d924SEric Sandeen 	}
2513a1d6cc56SAneesh Kumar K.V 
25144e7ea81dSJan Kara 	mpd.inode = inode;
25154e7ea81dSJan Kara 	mpd.wbc = wbc;
25164e7ea81dSJan Kara 	ext4_io_submit_init(&mpd.io_submit, wbc);
25172acf2c26SAneesh Kumar K.V retry:
25186e6938b6SWu Fengguang 	if (wbc->sync_mode == WB_SYNC_ALL || wbc->tagged_writepages)
25194e7ea81dSJan Kara 		tag_pages_for_writeback(mapping, mpd.first_page, mpd.last_page);
25204e7ea81dSJan Kara 	done = false;
25211bce63d1SShaohua Li 	blk_start_plug(&plug);
25224e7ea81dSJan Kara 	while (!done && mpd.first_page <= mpd.last_page) {
25234e7ea81dSJan Kara 		/* For each extent of pages we use new io_end */
25244e7ea81dSJan Kara 		mpd.io_submit.io_end = ext4_init_io_end(inode, GFP_KERNEL);
25254e7ea81dSJan Kara 		if (!mpd.io_submit.io_end) {
25264e7ea81dSJan Kara 			ret = -ENOMEM;
25274e7ea81dSJan Kara 			break;
25284e7ea81dSJan Kara 		}
2529a1d6cc56SAneesh Kumar K.V 
2530a1d6cc56SAneesh Kumar K.V 		/*
25314e7ea81dSJan Kara 		 * We have two constraints: We find one extent to map and we
25324e7ea81dSJan Kara 		 * must always write out whole page (makes a difference when
25334e7ea81dSJan Kara 		 * blocksize < pagesize) so that we don't block on IO when we
25344e7ea81dSJan Kara 		 * try to write out the rest of the page. Journalled mode is
25354e7ea81dSJan Kara 		 * not supported by delalloc.
2536a1d6cc56SAneesh Kumar K.V 		 */
2537a1d6cc56SAneesh Kumar K.V 		BUG_ON(ext4_should_journal_data(inode));
2538525f4ed8SMingming Cao 		needed_blocks = ext4_da_writepages_trans_blocks(inode);
2539a1d6cc56SAneesh Kumar K.V 
254061628a3fSMingming Cao 		/* start a new transaction */
25416b523df4SJan Kara 		handle = ext4_journal_start_with_reserve(inode,
25426b523df4SJan Kara 				EXT4_HT_WRITE_PAGE, needed_blocks, rsv_blocks);
254361628a3fSMingming Cao 		if (IS_ERR(handle)) {
254461628a3fSMingming Cao 			ret = PTR_ERR(handle);
25451693918eSTheodore Ts'o 			ext4_msg(inode->i_sb, KERN_CRIT, "%s: jbd2_start: "
2546fbe845ddSCurt Wohlgemuth 			       "%ld pages, ino %lu; err %d", __func__,
2547a1d6cc56SAneesh Kumar K.V 				wbc->nr_to_write, inode->i_ino, ret);
25484e7ea81dSJan Kara 			/* Release allocated io_end */
25494e7ea81dSJan Kara 			ext4_put_io_end(mpd.io_submit.io_end);
25504e7ea81dSJan Kara 			break;
255161628a3fSMingming Cao 		}
2552f63e6005STheodore Ts'o 
25534e7ea81dSJan Kara 		trace_ext4_da_write_pages(inode, mpd.first_page, mpd.wbc);
25544e7ea81dSJan Kara 		ret = mpage_prepare_extent_to_map(&mpd);
25554e7ea81dSJan Kara 		if (!ret) {
25564e7ea81dSJan Kara 			if (mpd.map.m_len)
2557cb530541STheodore Ts'o 				ret = mpage_map_and_submit_extent(handle, &mpd,
2558cb530541STheodore Ts'o 					&give_up_on_write);
25594e7ea81dSJan Kara 			else {
2560f63e6005STheodore Ts'o 				/*
25614e7ea81dSJan Kara 				 * We scanned the whole range (or exhausted
25624e7ea81dSJan Kara 				 * nr_to_write), submitted what was mapped and
25634e7ea81dSJan Kara 				 * didn't find anything needing mapping. We are
25644e7ea81dSJan Kara 				 * done.
2565f63e6005STheodore Ts'o 				 */
25664e7ea81dSJan Kara 				done = true;
2567f63e6005STheodore Ts'o 			}
25684e7ea81dSJan Kara 		}
256961628a3fSMingming Cao 		ext4_journal_stop(handle);
25704e7ea81dSJan Kara 		/* Submit prepared bio */
25714e7ea81dSJan Kara 		ext4_io_submit(&mpd.io_submit);
25724e7ea81dSJan Kara 		/* Unlock pages we didn't use */
2573cb530541STheodore Ts'o 		mpage_release_unused_pages(&mpd, give_up_on_write);
25744e7ea81dSJan Kara 		/* Drop our io_end reference we got from init */
25754e7ea81dSJan Kara 		ext4_put_io_end(mpd.io_submit.io_end);
2576df22291fSAneesh Kumar K.V 
25774e7ea81dSJan Kara 		if (ret == -ENOSPC && sbi->s_journal) {
25784e7ea81dSJan Kara 			/*
25794e7ea81dSJan Kara 			 * Commit the transaction which would
258022208dedSAneesh Kumar K.V 			 * free blocks released in the transaction
258122208dedSAneesh Kumar K.V 			 * and try again
258222208dedSAneesh Kumar K.V 			 */
2583df22291fSAneesh Kumar K.V 			jbd2_journal_force_commit_nested(sbi->s_journal);
258422208dedSAneesh Kumar K.V 			ret = 0;
25854e7ea81dSJan Kara 			continue;
25864e7ea81dSJan Kara 		}
25874e7ea81dSJan Kara 		/* Fatal error - ENOMEM, EIO... */
25884e7ea81dSJan Kara 		if (ret)
258961628a3fSMingming Cao 			break;
259061628a3fSMingming Cao 	}
25911bce63d1SShaohua Li 	blk_finish_plug(&plug);
25929c12a831SJan Kara 	if (!ret && !cycled && wbc->nr_to_write > 0) {
25932acf2c26SAneesh Kumar K.V 		cycled = 1;
25944e7ea81dSJan Kara 		mpd.last_page = writeback_index - 1;
25954e7ea81dSJan Kara 		mpd.first_page = 0;
25962acf2c26SAneesh Kumar K.V 		goto retry;
25972acf2c26SAneesh Kumar K.V 	}
259861628a3fSMingming Cao 
259922208dedSAneesh Kumar K.V 	/* Update index */
260022208dedSAneesh Kumar K.V 	if (wbc->range_cyclic || (range_whole && wbc->nr_to_write > 0))
260122208dedSAneesh Kumar K.V 		/*
26024e7ea81dSJan Kara 		 * Set the writeback_index so that range_cyclic
260322208dedSAneesh Kumar K.V 		 * mode will write it back later
260422208dedSAneesh Kumar K.V 		 */
26054e7ea81dSJan Kara 		mapping->writeback_index = mpd.first_page;
2606a1d6cc56SAneesh Kumar K.V 
260761628a3fSMingming Cao out_writepages:
260820970ba6STheodore Ts'o 	trace_ext4_writepages_result(inode, wbc, ret,
26094e7ea81dSJan Kara 				     nr_to_write - wbc->nr_to_write);
261061628a3fSMingming Cao 	return ret;
261164769240SAlex Tomas }
261264769240SAlex Tomas 
261379f0be8dSAneesh Kumar K.V static int ext4_nonda_switch(struct super_block *sb)
261479f0be8dSAneesh Kumar K.V {
26155c1ff336SEric Whitney 	s64 free_clusters, dirty_clusters;
261679f0be8dSAneesh Kumar K.V 	struct ext4_sb_info *sbi = EXT4_SB(sb);
261779f0be8dSAneesh Kumar K.V 
261879f0be8dSAneesh Kumar K.V 	/*
261979f0be8dSAneesh Kumar K.V 	 * switch to non delalloc mode if we are running low
262079f0be8dSAneesh Kumar K.V 	 * on free block. The free block accounting via percpu
2621179f7ebfSEric Dumazet 	 * counters can get slightly wrong with percpu_counter_batch getting
262279f0be8dSAneesh Kumar K.V 	 * accumulated on each CPU without updating global counters
262379f0be8dSAneesh Kumar K.V 	 * Delalloc need an accurate free block accounting. So switch
262479f0be8dSAneesh Kumar K.V 	 * to non delalloc when we are near to error range.
262579f0be8dSAneesh Kumar K.V 	 */
26265c1ff336SEric Whitney 	free_clusters =
26275c1ff336SEric Whitney 		percpu_counter_read_positive(&sbi->s_freeclusters_counter);
26285c1ff336SEric Whitney 	dirty_clusters =
26295c1ff336SEric Whitney 		percpu_counter_read_positive(&sbi->s_dirtyclusters_counter);
263000d4e736STheodore Ts'o 	/*
263100d4e736STheodore Ts'o 	 * Start pushing delalloc when 1/2 of free blocks are dirty.
263200d4e736STheodore Ts'o 	 */
26335c1ff336SEric Whitney 	if (dirty_clusters && (free_clusters < 2 * dirty_clusters))
263410ee27a0SMiao Xie 		try_to_writeback_inodes_sb(sb, WB_REASON_FS_FREE_SPACE);
263500d4e736STheodore Ts'o 
26365c1ff336SEric Whitney 	if (2 * free_clusters < 3 * dirty_clusters ||
26375c1ff336SEric Whitney 	    free_clusters < (dirty_clusters + EXT4_FREECLUSTERS_WATERMARK)) {
263879f0be8dSAneesh Kumar K.V 		/*
2639c8afb446SEric Sandeen 		 * free block count is less than 150% of dirty blocks
2640c8afb446SEric Sandeen 		 * or free blocks is less than watermark
264179f0be8dSAneesh Kumar K.V 		 */
264279f0be8dSAneesh Kumar K.V 		return 1;
264379f0be8dSAneesh Kumar K.V 	}
264479f0be8dSAneesh Kumar K.V 	return 0;
264579f0be8dSAneesh Kumar K.V }
264679f0be8dSAneesh Kumar K.V 
264764769240SAlex Tomas static int ext4_da_write_begin(struct file *file, struct address_space *mapping,
264864769240SAlex Tomas 			       loff_t pos, unsigned len, unsigned flags,
264964769240SAlex Tomas 			       struct page **pagep, void **fsdata)
265064769240SAlex Tomas {
265172b8ab9dSEric Sandeen 	int ret, retries = 0;
265264769240SAlex Tomas 	struct page *page;
265364769240SAlex Tomas 	pgoff_t index;
265464769240SAlex Tomas 	struct inode *inode = mapping->host;
265564769240SAlex Tomas 	handle_t *handle;
265664769240SAlex Tomas 
265764769240SAlex Tomas 	index = pos >> PAGE_CACHE_SHIFT;
265879f0be8dSAneesh Kumar K.V 
265979f0be8dSAneesh Kumar K.V 	if (ext4_nonda_switch(inode->i_sb)) {
266079f0be8dSAneesh Kumar K.V 		*fsdata = (void *)FALL_BACK_TO_NONDELALLOC;
266179f0be8dSAneesh Kumar K.V 		return ext4_write_begin(file, mapping, pos,
266279f0be8dSAneesh Kumar K.V 					len, flags, pagep, fsdata);
266379f0be8dSAneesh Kumar K.V 	}
266479f0be8dSAneesh Kumar K.V 	*fsdata = (void *)0;
26659bffad1eSTheodore Ts'o 	trace_ext4_da_write_begin(inode, pos, len, flags);
26669c3569b5STao Ma 
26679c3569b5STao Ma 	if (ext4_test_inode_state(inode, EXT4_STATE_MAY_INLINE_DATA)) {
26689c3569b5STao Ma 		ret = ext4_da_write_inline_data_begin(mapping, inode,
26699c3569b5STao Ma 						      pos, len, flags,
26709c3569b5STao Ma 						      pagep, fsdata);
26719c3569b5STao Ma 		if (ret < 0)
267247564bfbSTheodore Ts'o 			return ret;
267347564bfbSTheodore Ts'o 		if (ret == 1)
267447564bfbSTheodore Ts'o 			return 0;
26759c3569b5STao Ma 	}
26769c3569b5STao Ma 
267747564bfbSTheodore Ts'o 	/*
267847564bfbSTheodore Ts'o 	 * grab_cache_page_write_begin() can take a long time if the
267947564bfbSTheodore Ts'o 	 * system is thrashing due to memory pressure, or if the page
268047564bfbSTheodore Ts'o 	 * is being written back.  So grab it first before we start
268147564bfbSTheodore Ts'o 	 * the transaction handle.  This also allows us to allocate
268247564bfbSTheodore Ts'o 	 * the page (if needed) without using GFP_NOFS.
268347564bfbSTheodore Ts'o 	 */
268447564bfbSTheodore Ts'o retry_grab:
268547564bfbSTheodore Ts'o 	page = grab_cache_page_write_begin(mapping, index, flags);
268647564bfbSTheodore Ts'o 	if (!page)
268747564bfbSTheodore Ts'o 		return -ENOMEM;
268847564bfbSTheodore Ts'o 	unlock_page(page);
268947564bfbSTheodore Ts'o 
269064769240SAlex Tomas 	/*
269164769240SAlex Tomas 	 * With delayed allocation, we don't log the i_disksize update
269264769240SAlex Tomas 	 * if there is delayed block allocation. But we still need
269364769240SAlex Tomas 	 * to journalling the i_disksize update if writes to the end
269464769240SAlex Tomas 	 * of file which has an already mapped buffer.
269564769240SAlex Tomas 	 */
269647564bfbSTheodore Ts'o retry_journal:
26979924a92aSTheodore Ts'o 	handle = ext4_journal_start(inode, EXT4_HT_WRITE_PAGE, 1);
269864769240SAlex Tomas 	if (IS_ERR(handle)) {
269947564bfbSTheodore Ts'o 		page_cache_release(page);
270047564bfbSTheodore Ts'o 		return PTR_ERR(handle);
270164769240SAlex Tomas 	}
270264769240SAlex Tomas 
270347564bfbSTheodore Ts'o 	lock_page(page);
270447564bfbSTheodore Ts'o 	if (page->mapping != mapping) {
270547564bfbSTheodore Ts'o 		/* The page got truncated from under us */
270647564bfbSTheodore Ts'o 		unlock_page(page);
270747564bfbSTheodore Ts'o 		page_cache_release(page);
2708d5a0d4f7SEric Sandeen 		ext4_journal_stop(handle);
270947564bfbSTheodore Ts'o 		goto retry_grab;
2710d5a0d4f7SEric Sandeen 	}
271147564bfbSTheodore Ts'o 	/* In case writeback began while the page was unlocked */
27127afe5aa5SDmitry Monakhov 	wait_for_stable_page(page);
271364769240SAlex Tomas 
27146e1db88dSChristoph Hellwig 	ret = __block_write_begin(page, pos, len, ext4_da_get_block_prep);
271564769240SAlex Tomas 	if (ret < 0) {
271664769240SAlex Tomas 		unlock_page(page);
271764769240SAlex Tomas 		ext4_journal_stop(handle);
2718ae4d5372SAneesh Kumar K.V 		/*
2719ae4d5372SAneesh Kumar K.V 		 * block_write_begin may have instantiated a few blocks
2720ae4d5372SAneesh Kumar K.V 		 * outside i_size.  Trim these off again. Don't need
2721ae4d5372SAneesh Kumar K.V 		 * i_size_read because we hold i_mutex.
2722ae4d5372SAneesh Kumar K.V 		 */
2723ae4d5372SAneesh Kumar K.V 		if (pos + len > inode->i_size)
2724b9a4207dSJan Kara 			ext4_truncate_failed_write(inode);
272547564bfbSTheodore Ts'o 
272647564bfbSTheodore Ts'o 		if (ret == -ENOSPC &&
272747564bfbSTheodore Ts'o 		    ext4_should_retry_alloc(inode->i_sb, &retries))
272847564bfbSTheodore Ts'o 			goto retry_journal;
272947564bfbSTheodore Ts'o 
273047564bfbSTheodore Ts'o 		page_cache_release(page);
273147564bfbSTheodore Ts'o 		return ret;
273264769240SAlex Tomas 	}
273364769240SAlex Tomas 
273447564bfbSTheodore Ts'o 	*pagep = page;
273564769240SAlex Tomas 	return ret;
273664769240SAlex Tomas }
273764769240SAlex Tomas 
2738632eaeabSMingming Cao /*
2739632eaeabSMingming Cao  * Check if we should update i_disksize
2740632eaeabSMingming Cao  * when write to the end of file but not require block allocation
2741632eaeabSMingming Cao  */
2742632eaeabSMingming Cao static int ext4_da_should_update_i_disksize(struct page *page,
2743632eaeabSMingming Cao 					    unsigned long offset)
2744632eaeabSMingming Cao {
2745632eaeabSMingming Cao 	struct buffer_head *bh;
2746632eaeabSMingming Cao 	struct inode *inode = page->mapping->host;
2747632eaeabSMingming Cao 	unsigned int idx;
2748632eaeabSMingming Cao 	int i;
2749632eaeabSMingming Cao 
2750632eaeabSMingming Cao 	bh = page_buffers(page);
2751632eaeabSMingming Cao 	idx = offset >> inode->i_blkbits;
2752632eaeabSMingming Cao 
2753632eaeabSMingming Cao 	for (i = 0; i < idx; i++)
2754632eaeabSMingming Cao 		bh = bh->b_this_page;
2755632eaeabSMingming Cao 
275629fa89d0SAneesh Kumar K.V 	if (!buffer_mapped(bh) || (buffer_delay(bh)) || buffer_unwritten(bh))
2757632eaeabSMingming Cao 		return 0;
2758632eaeabSMingming Cao 	return 1;
2759632eaeabSMingming Cao }
2760632eaeabSMingming Cao 
276164769240SAlex Tomas static int ext4_da_write_end(struct file *file,
276264769240SAlex Tomas 			     struct address_space *mapping,
276364769240SAlex Tomas 			     loff_t pos, unsigned len, unsigned copied,
276464769240SAlex Tomas 			     struct page *page, void *fsdata)
276564769240SAlex Tomas {
276664769240SAlex Tomas 	struct inode *inode = mapping->host;
276764769240SAlex Tomas 	int ret = 0, ret2;
276864769240SAlex Tomas 	handle_t *handle = ext4_journal_current_handle();
276964769240SAlex Tomas 	loff_t new_i_size;
2770632eaeabSMingming Cao 	unsigned long start, end;
277179f0be8dSAneesh Kumar K.V 	int write_mode = (int)(unsigned long)fsdata;
277279f0be8dSAneesh Kumar K.V 
277374d553aaSTheodore Ts'o 	if (write_mode == FALL_BACK_TO_NONDELALLOC)
277474d553aaSTheodore Ts'o 		return ext4_write_end(file, mapping, pos,
277579f0be8dSAneesh Kumar K.V 				      len, copied, page, fsdata);
2776632eaeabSMingming Cao 
27779bffad1eSTheodore Ts'o 	trace_ext4_da_write_end(inode, pos, len, copied);
2778632eaeabSMingming Cao 	start = pos & (PAGE_CACHE_SIZE - 1);
2779632eaeabSMingming Cao 	end = start + copied - 1;
278064769240SAlex Tomas 
278164769240SAlex Tomas 	/*
278264769240SAlex Tomas 	 * generic_write_end() will run mark_inode_dirty() if i_size
278364769240SAlex Tomas 	 * changes.  So let's piggyback the i_disksize mark_inode_dirty
278464769240SAlex Tomas 	 * into that.
278564769240SAlex Tomas 	 */
278664769240SAlex Tomas 	new_i_size = pos + copied;
2787ea51d132SAndrea Arcangeli 	if (copied && new_i_size > EXT4_I(inode)->i_disksize) {
27889c3569b5STao Ma 		if (ext4_has_inline_data(inode) ||
27899c3569b5STao Ma 		    ext4_da_should_update_i_disksize(page, end)) {
2790632eaeabSMingming Cao 			down_write(&EXT4_I(inode)->i_data_sem);
2791f3b59291STheodore Ts'o 			if (new_i_size > EXT4_I(inode)->i_disksize)
279264769240SAlex Tomas 				EXT4_I(inode)->i_disksize = new_i_size;
2793632eaeabSMingming Cao 			up_write(&EXT4_I(inode)->i_data_sem);
2794cf17fea6SAneesh Kumar K.V 			/* We need to mark inode dirty even if
2795cf17fea6SAneesh Kumar K.V 			 * new_i_size is less that inode->i_size
2796cf17fea6SAneesh Kumar K.V 			 * bu greater than i_disksize.(hint delalloc)
2797cf17fea6SAneesh Kumar K.V 			 */
2798cf17fea6SAneesh Kumar K.V 			ext4_mark_inode_dirty(handle, inode);
2799632eaeabSMingming Cao 		}
2800632eaeabSMingming Cao 	}
28019c3569b5STao Ma 
28029c3569b5STao Ma 	if (write_mode != CONVERT_INLINE_DATA &&
28039c3569b5STao Ma 	    ext4_test_inode_state(inode, EXT4_STATE_MAY_INLINE_DATA) &&
28049c3569b5STao Ma 	    ext4_has_inline_data(inode))
28059c3569b5STao Ma 		ret2 = ext4_da_write_inline_data_end(inode, pos, len, copied,
28069c3569b5STao Ma 						     page);
28079c3569b5STao Ma 	else
280864769240SAlex Tomas 		ret2 = generic_write_end(file, mapping, pos, len, copied,
280964769240SAlex Tomas 							page, fsdata);
28109c3569b5STao Ma 
281164769240SAlex Tomas 	copied = ret2;
281264769240SAlex Tomas 	if (ret2 < 0)
281364769240SAlex Tomas 		ret = ret2;
281464769240SAlex Tomas 	ret2 = ext4_journal_stop(handle);
281564769240SAlex Tomas 	if (!ret)
281664769240SAlex Tomas 		ret = ret2;
281764769240SAlex Tomas 
281864769240SAlex Tomas 	return ret ? ret : copied;
281964769240SAlex Tomas }
282064769240SAlex Tomas 
2821d47992f8SLukas Czerner static void ext4_da_invalidatepage(struct page *page, unsigned int offset,
2822d47992f8SLukas Czerner 				   unsigned int length)
282364769240SAlex Tomas {
282464769240SAlex Tomas 	/*
282564769240SAlex Tomas 	 * Drop reserved blocks
282664769240SAlex Tomas 	 */
282764769240SAlex Tomas 	BUG_ON(!PageLocked(page));
282864769240SAlex Tomas 	if (!page_has_buffers(page))
282964769240SAlex Tomas 		goto out;
283064769240SAlex Tomas 
2831ca99fdd2SLukas Czerner 	ext4_da_page_release_reservation(page, offset, length);
283264769240SAlex Tomas 
283364769240SAlex Tomas out:
2834d47992f8SLukas Czerner 	ext4_invalidatepage(page, offset, length);
283564769240SAlex Tomas 
283664769240SAlex Tomas 	return;
283764769240SAlex Tomas }
283864769240SAlex Tomas 
2839ccd2506bSTheodore Ts'o /*
2840ccd2506bSTheodore Ts'o  * Force all delayed allocation blocks to be allocated for a given inode.
2841ccd2506bSTheodore Ts'o  */
2842ccd2506bSTheodore Ts'o int ext4_alloc_da_blocks(struct inode *inode)
2843ccd2506bSTheodore Ts'o {
2844fb40ba0dSTheodore Ts'o 	trace_ext4_alloc_da_blocks(inode);
2845fb40ba0dSTheodore Ts'o 
2846ccd2506bSTheodore Ts'o 	if (!EXT4_I(inode)->i_reserved_data_blocks &&
2847ccd2506bSTheodore Ts'o 	    !EXT4_I(inode)->i_reserved_meta_blocks)
2848ccd2506bSTheodore Ts'o 		return 0;
2849ccd2506bSTheodore Ts'o 
2850ccd2506bSTheodore Ts'o 	/*
2851ccd2506bSTheodore Ts'o 	 * We do something simple for now.  The filemap_flush() will
2852ccd2506bSTheodore Ts'o 	 * also start triggering a write of the data blocks, which is
2853ccd2506bSTheodore Ts'o 	 * not strictly speaking necessary (and for users of
2854ccd2506bSTheodore Ts'o 	 * laptop_mode, not even desirable).  However, to do otherwise
2855ccd2506bSTheodore Ts'o 	 * would require replicating code paths in:
2856ccd2506bSTheodore Ts'o 	 *
285720970ba6STheodore Ts'o 	 * ext4_writepages() ->
2858ccd2506bSTheodore Ts'o 	 *    write_cache_pages() ---> (via passed in callback function)
2859ccd2506bSTheodore Ts'o 	 *        __mpage_da_writepage() -->
2860ccd2506bSTheodore Ts'o 	 *           mpage_add_bh_to_extent()
2861ccd2506bSTheodore Ts'o 	 *           mpage_da_map_blocks()
2862ccd2506bSTheodore Ts'o 	 *
2863ccd2506bSTheodore Ts'o 	 * The problem is that write_cache_pages(), located in
2864ccd2506bSTheodore Ts'o 	 * mm/page-writeback.c, marks pages clean in preparation for
2865ccd2506bSTheodore Ts'o 	 * doing I/O, which is not desirable if we're not planning on
2866ccd2506bSTheodore Ts'o 	 * doing I/O at all.
2867ccd2506bSTheodore Ts'o 	 *
2868ccd2506bSTheodore Ts'o 	 * We could call write_cache_pages(), and then redirty all of
2869380cf090SWu Fengguang 	 * the pages by calling redirty_page_for_writepage() but that
2870ccd2506bSTheodore Ts'o 	 * would be ugly in the extreme.  So instead we would need to
2871ccd2506bSTheodore Ts'o 	 * replicate parts of the code in the above functions,
287225985edcSLucas De Marchi 	 * simplifying them because we wouldn't actually intend to
2873ccd2506bSTheodore Ts'o 	 * write out the pages, but rather only collect contiguous
2874ccd2506bSTheodore Ts'o 	 * logical block extents, call the multi-block allocator, and
2875ccd2506bSTheodore Ts'o 	 * then update the buffer heads with the block allocations.
2876ccd2506bSTheodore Ts'o 	 *
2877ccd2506bSTheodore Ts'o 	 * For now, though, we'll cheat by calling filemap_flush(),
2878ccd2506bSTheodore Ts'o 	 * which will map the blocks, and start the I/O, but not
2879ccd2506bSTheodore Ts'o 	 * actually wait for the I/O to complete.
2880ccd2506bSTheodore Ts'o 	 */
2881ccd2506bSTheodore Ts'o 	return filemap_flush(inode->i_mapping);
2882ccd2506bSTheodore Ts'o }
288364769240SAlex Tomas 
288464769240SAlex Tomas /*
2885ac27a0ecSDave Kleikamp  * bmap() is special.  It gets used by applications such as lilo and by
2886ac27a0ecSDave Kleikamp  * the swapper to find the on-disk block of a specific piece of data.
2887ac27a0ecSDave Kleikamp  *
2888ac27a0ecSDave Kleikamp  * Naturally, this is dangerous if the block concerned is still in the
2889617ba13bSMingming Cao  * journal.  If somebody makes a swapfile on an ext4 data-journaling
2890ac27a0ecSDave Kleikamp  * filesystem and enables swap, then they may get a nasty shock when the
2891ac27a0ecSDave Kleikamp  * data getting swapped to that swapfile suddenly gets overwritten by
2892ac27a0ecSDave Kleikamp  * the original zero's written out previously to the journal and
2893ac27a0ecSDave Kleikamp  * awaiting writeback in the kernel's buffer cache.
2894ac27a0ecSDave Kleikamp  *
2895ac27a0ecSDave Kleikamp  * So, if we see any bmap calls here on a modified, data-journaled file,
2896ac27a0ecSDave Kleikamp  * take extra steps to flush any blocks which might be in the cache.
2897ac27a0ecSDave Kleikamp  */
2898617ba13bSMingming Cao static sector_t ext4_bmap(struct address_space *mapping, sector_t block)
2899ac27a0ecSDave Kleikamp {
2900ac27a0ecSDave Kleikamp 	struct inode *inode = mapping->host;
2901ac27a0ecSDave Kleikamp 	journal_t *journal;
2902ac27a0ecSDave Kleikamp 	int err;
2903ac27a0ecSDave Kleikamp 
290446c7f254STao Ma 	/*
290546c7f254STao Ma 	 * We can get here for an inline file via the FIBMAP ioctl
290646c7f254STao Ma 	 */
290746c7f254STao Ma 	if (ext4_has_inline_data(inode))
290846c7f254STao Ma 		return 0;
290946c7f254STao Ma 
291064769240SAlex Tomas 	if (mapping_tagged(mapping, PAGECACHE_TAG_DIRTY) &&
291164769240SAlex Tomas 			test_opt(inode->i_sb, DELALLOC)) {
291264769240SAlex Tomas 		/*
291364769240SAlex Tomas 		 * With delalloc we want to sync the file
291464769240SAlex Tomas 		 * so that we can make sure we allocate
291564769240SAlex Tomas 		 * blocks for file
291664769240SAlex Tomas 		 */
291764769240SAlex Tomas 		filemap_write_and_wait(mapping);
291864769240SAlex Tomas 	}
291964769240SAlex Tomas 
292019f5fb7aSTheodore Ts'o 	if (EXT4_JOURNAL(inode) &&
292119f5fb7aSTheodore Ts'o 	    ext4_test_inode_state(inode, EXT4_STATE_JDATA)) {
2922ac27a0ecSDave Kleikamp 		/*
2923ac27a0ecSDave Kleikamp 		 * This is a REALLY heavyweight approach, but the use of
2924ac27a0ecSDave Kleikamp 		 * bmap on dirty files is expected to be extremely rare:
2925ac27a0ecSDave Kleikamp 		 * only if we run lilo or swapon on a freshly made file
2926ac27a0ecSDave Kleikamp 		 * do we expect this to happen.
2927ac27a0ecSDave Kleikamp 		 *
2928ac27a0ecSDave Kleikamp 		 * (bmap requires CAP_SYS_RAWIO so this does not
2929ac27a0ecSDave Kleikamp 		 * represent an unprivileged user DOS attack --- we'd be
2930ac27a0ecSDave Kleikamp 		 * in trouble if mortal users could trigger this path at
2931ac27a0ecSDave Kleikamp 		 * will.)
2932ac27a0ecSDave Kleikamp 		 *
2933617ba13bSMingming Cao 		 * NB. EXT4_STATE_JDATA is not set on files other than
2934ac27a0ecSDave Kleikamp 		 * regular files.  If somebody wants to bmap a directory
2935ac27a0ecSDave Kleikamp 		 * or symlink and gets confused because the buffer
2936ac27a0ecSDave Kleikamp 		 * hasn't yet been flushed to disk, they deserve
2937ac27a0ecSDave Kleikamp 		 * everything they get.
2938ac27a0ecSDave Kleikamp 		 */
2939ac27a0ecSDave Kleikamp 
294019f5fb7aSTheodore Ts'o 		ext4_clear_inode_state(inode, EXT4_STATE_JDATA);
2941617ba13bSMingming Cao 		journal = EXT4_JOURNAL(inode);
2942dab291afSMingming Cao 		jbd2_journal_lock_updates(journal);
2943dab291afSMingming Cao 		err = jbd2_journal_flush(journal);
2944dab291afSMingming Cao 		jbd2_journal_unlock_updates(journal);
2945ac27a0ecSDave Kleikamp 
2946ac27a0ecSDave Kleikamp 		if (err)
2947ac27a0ecSDave Kleikamp 			return 0;
2948ac27a0ecSDave Kleikamp 	}
2949ac27a0ecSDave Kleikamp 
2950617ba13bSMingming Cao 	return generic_block_bmap(mapping, block, ext4_get_block);
2951ac27a0ecSDave Kleikamp }
2952ac27a0ecSDave Kleikamp 
2953617ba13bSMingming Cao static int ext4_readpage(struct file *file, struct page *page)
2954ac27a0ecSDave Kleikamp {
295546c7f254STao Ma 	int ret = -EAGAIN;
295646c7f254STao Ma 	struct inode *inode = page->mapping->host;
295746c7f254STao Ma 
29580562e0baSJiaying Zhang 	trace_ext4_readpage(page);
295946c7f254STao Ma 
296046c7f254STao Ma 	if (ext4_has_inline_data(inode))
296146c7f254STao Ma 		ret = ext4_readpage_inline(inode, page);
296246c7f254STao Ma 
296346c7f254STao Ma 	if (ret == -EAGAIN)
2964617ba13bSMingming Cao 		return mpage_readpage(page, ext4_get_block);
296546c7f254STao Ma 
296646c7f254STao Ma 	return ret;
2967ac27a0ecSDave Kleikamp }
2968ac27a0ecSDave Kleikamp 
2969ac27a0ecSDave Kleikamp static int
2970617ba13bSMingming Cao ext4_readpages(struct file *file, struct address_space *mapping,
2971ac27a0ecSDave Kleikamp 		struct list_head *pages, unsigned nr_pages)
2972ac27a0ecSDave Kleikamp {
297346c7f254STao Ma 	struct inode *inode = mapping->host;
297446c7f254STao Ma 
297546c7f254STao Ma 	/* If the file has inline data, no need to do readpages. */
297646c7f254STao Ma 	if (ext4_has_inline_data(inode))
297746c7f254STao Ma 		return 0;
297846c7f254STao Ma 
2979617ba13bSMingming Cao 	return mpage_readpages(mapping, pages, nr_pages, ext4_get_block);
2980ac27a0ecSDave Kleikamp }
2981ac27a0ecSDave Kleikamp 
2982d47992f8SLukas Czerner static void ext4_invalidatepage(struct page *page, unsigned int offset,
2983d47992f8SLukas Czerner 				unsigned int length)
2984ac27a0ecSDave Kleikamp {
2985ca99fdd2SLukas Czerner 	trace_ext4_invalidatepage(page, offset, length);
29860562e0baSJiaying Zhang 
29874520fb3cSJan Kara 	/* No journalling happens on data buffers when this function is used */
29884520fb3cSJan Kara 	WARN_ON(page_has_buffers(page) && buffer_jbd(page_buffers(page)));
29894520fb3cSJan Kara 
2990ca99fdd2SLukas Czerner 	block_invalidatepage(page, offset, length);
29914520fb3cSJan Kara }
29924520fb3cSJan Kara 
299353e87268SJan Kara static int __ext4_journalled_invalidatepage(struct page *page,
2994ca99fdd2SLukas Czerner 					    unsigned int offset,
2995ca99fdd2SLukas Czerner 					    unsigned int length)
29964520fb3cSJan Kara {
29974520fb3cSJan Kara 	journal_t *journal = EXT4_JOURNAL(page->mapping->host);
29984520fb3cSJan Kara 
2999ca99fdd2SLukas Czerner 	trace_ext4_journalled_invalidatepage(page, offset, length);
30004520fb3cSJan Kara 
3001744692dcSJiaying Zhang 	/*
3002ac27a0ecSDave Kleikamp 	 * If it's a full truncate we just forget about the pending dirtying
3003ac27a0ecSDave Kleikamp 	 */
3004ca99fdd2SLukas Czerner 	if (offset == 0 && length == PAGE_CACHE_SIZE)
3005ac27a0ecSDave Kleikamp 		ClearPageChecked(page);
3006ac27a0ecSDave Kleikamp 
3007ca99fdd2SLukas Czerner 	return jbd2_journal_invalidatepage(journal, page, offset, length);
300853e87268SJan Kara }
300953e87268SJan Kara 
301053e87268SJan Kara /* Wrapper for aops... */
301153e87268SJan Kara static void ext4_journalled_invalidatepage(struct page *page,
3012d47992f8SLukas Czerner 					   unsigned int offset,
3013d47992f8SLukas Czerner 					   unsigned int length)
301453e87268SJan Kara {
3015ca99fdd2SLukas Czerner 	WARN_ON(__ext4_journalled_invalidatepage(page, offset, length) < 0);
3016ac27a0ecSDave Kleikamp }
3017ac27a0ecSDave Kleikamp 
3018617ba13bSMingming Cao static int ext4_releasepage(struct page *page, gfp_t wait)
3019ac27a0ecSDave Kleikamp {
3020617ba13bSMingming Cao 	journal_t *journal = EXT4_JOURNAL(page->mapping->host);
3021ac27a0ecSDave Kleikamp 
30220562e0baSJiaying Zhang 	trace_ext4_releasepage(page);
30230562e0baSJiaying Zhang 
3024e1c36595SJan Kara 	/* Page has dirty journalled data -> cannot release */
3025e1c36595SJan Kara 	if (PageChecked(page))
3026ac27a0ecSDave Kleikamp 		return 0;
30270390131bSFrank Mayhar 	if (journal)
3028dab291afSMingming Cao 		return jbd2_journal_try_to_free_buffers(journal, page, wait);
30290390131bSFrank Mayhar 	else
30300390131bSFrank Mayhar 		return try_to_free_buffers(page);
3031ac27a0ecSDave Kleikamp }
3032ac27a0ecSDave Kleikamp 
3033ac27a0ecSDave Kleikamp /*
30342ed88685STheodore Ts'o  * ext4_get_block used when preparing for a DIO write or buffer write.
30352ed88685STheodore Ts'o  * We allocate an uinitialized extent if blocks haven't been allocated.
30362ed88685STheodore Ts'o  * The extent will be converted to initialized after the IO is complete.
30372ed88685STheodore Ts'o  */
3038f19d5870STao Ma int ext4_get_block_write(struct inode *inode, sector_t iblock,
30394c0425ffSMingming Cao 		   struct buffer_head *bh_result, int create)
30404c0425ffSMingming Cao {
3041c7064ef1SJiaying Zhang 	ext4_debug("ext4_get_block_write: inode %lu, create flag %d\n",
30428d5d02e6SMingming Cao 		   inode->i_ino, create);
30432ed88685STheodore Ts'o 	return _ext4_get_block(inode, iblock, bh_result,
30442ed88685STheodore Ts'o 			       EXT4_GET_BLOCKS_IO_CREATE_EXT);
30454c0425ffSMingming Cao }
30464c0425ffSMingming Cao 
3047729f52c6SZheng Liu static int ext4_get_block_write_nolock(struct inode *inode, sector_t iblock,
30488b0f165fSAnatol Pomozov 		   struct buffer_head *bh_result, int create)
3049729f52c6SZheng Liu {
30508b0f165fSAnatol Pomozov 	ext4_debug("ext4_get_block_write_nolock: inode %lu, create flag %d\n",
30518b0f165fSAnatol Pomozov 		   inode->i_ino, create);
30528b0f165fSAnatol Pomozov 	return _ext4_get_block(inode, iblock, bh_result,
30538b0f165fSAnatol Pomozov 			       EXT4_GET_BLOCKS_NO_LOCK);
3054729f52c6SZheng Liu }
3055729f52c6SZheng Liu 
30564c0425ffSMingming Cao static void ext4_end_io_dio(struct kiocb *iocb, loff_t offset,
30577b7a8665SChristoph Hellwig 			    ssize_t size, void *private)
30584c0425ffSMingming Cao {
30594c0425ffSMingming Cao         ext4_io_end_t *io_end = iocb->private;
30604c0425ffSMingming Cao 
306197a851edSJan Kara 	/* if not async direct IO just return */
30627b7a8665SChristoph Hellwig 	if (!io_end)
306397a851edSJan Kara 		return;
30644b70df18SMingming 
30658d5d02e6SMingming Cao 	ext_debug("ext4_end_io_dio(): io_end 0x%p "
3066ace36ad4SJoe Perches 		  "for inode %lu, iocb 0x%p, offset %llu, size %zd\n",
30678d5d02e6SMingming Cao  		  iocb->private, io_end->inode->i_ino, iocb, offset,
30688d5d02e6SMingming Cao 		  size);
30698d5d02e6SMingming Cao 
3070b5a7e970STheodore Ts'o 	iocb->private = NULL;
30714c0425ffSMingming Cao 	io_end->offset = offset;
30724c0425ffSMingming Cao 	io_end->size = size;
30737b7a8665SChristoph Hellwig 	ext4_put_io_end(io_end);
30744c0425ffSMingming Cao }
3075c7064ef1SJiaying Zhang 
30764c0425ffSMingming Cao /*
30774c0425ffSMingming Cao  * For ext4 extent files, ext4 will do direct-io write to holes,
30784c0425ffSMingming Cao  * preallocated extents, and those write extend the file, no need to
30794c0425ffSMingming Cao  * fall back to buffered IO.
30804c0425ffSMingming Cao  *
3081556615dcSLukas Czerner  * For holes, we fallocate those blocks, mark them as unwritten
308269c499d1STheodore Ts'o  * If those blocks were preallocated, we mark sure they are split, but
3083556615dcSLukas Czerner  * still keep the range to write as unwritten.
30844c0425ffSMingming Cao  *
308569c499d1STheodore Ts'o  * The unwritten extents will be converted to written when DIO is completed.
30868d5d02e6SMingming Cao  * For async direct IO, since the IO may still pending when return, we
308725985edcSLucas De Marchi  * set up an end_io call back function, which will do the conversion
30888d5d02e6SMingming Cao  * when async direct IO completed.
30894c0425ffSMingming Cao  *
30904c0425ffSMingming Cao  * If the O_DIRECT write will extend the file then add this inode to the
30914c0425ffSMingming Cao  * orphan list.  So recovery will truncate it back to the original size
30924c0425ffSMingming Cao  * if the machine crashes during the write.
30934c0425ffSMingming Cao  *
30944c0425ffSMingming Cao  */
30954c0425ffSMingming Cao static ssize_t ext4_ext_direct_IO(int rw, struct kiocb *iocb,
30964c0425ffSMingming Cao 			      const struct iovec *iov, loff_t offset,
30974c0425ffSMingming Cao 			      unsigned long nr_segs)
30984c0425ffSMingming Cao {
30994c0425ffSMingming Cao 	struct file *file = iocb->ki_filp;
31004c0425ffSMingming Cao 	struct inode *inode = file->f_mapping->host;
31014c0425ffSMingming Cao 	ssize_t ret;
31024c0425ffSMingming Cao 	size_t count = iov_length(iov, nr_segs);
3103729f52c6SZheng Liu 	int overwrite = 0;
31048b0f165fSAnatol Pomozov 	get_block_t *get_block_func = NULL;
31058b0f165fSAnatol Pomozov 	int dio_flags = 0;
310669c499d1STheodore Ts'o 	loff_t final_size = offset + count;
310797a851edSJan Kara 	ext4_io_end_t *io_end = NULL;
310869c499d1STheodore Ts'o 
310969c499d1STheodore Ts'o 	/* Use the old path for reads and writes beyond i_size. */
311069c499d1STheodore Ts'o 	if (rw != WRITE || final_size > inode->i_size)
311169c499d1STheodore Ts'o 		return ext4_ind_direct_IO(rw, iocb, iov, offset, nr_segs);
3112729f52c6SZheng Liu 
31134bd809dbSZheng Liu 	BUG_ON(iocb->private == NULL);
31144bd809dbSZheng Liu 
3115e8340395SJan Kara 	/*
3116e8340395SJan Kara 	 * Make all waiters for direct IO properly wait also for extent
3117e8340395SJan Kara 	 * conversion. This also disallows race between truncate() and
3118e8340395SJan Kara 	 * overwrite DIO as i_dio_count needs to be incremented under i_mutex.
3119e8340395SJan Kara 	 */
3120e8340395SJan Kara 	if (rw == WRITE)
3121e8340395SJan Kara 		atomic_inc(&inode->i_dio_count);
3122e8340395SJan Kara 
31234bd809dbSZheng Liu 	/* If we do a overwrite dio, i_mutex locking can be released */
31244bd809dbSZheng Liu 	overwrite = *((int *)iocb->private);
31254bd809dbSZheng Liu 
31264bd809dbSZheng Liu 	if (overwrite) {
31274bd809dbSZheng Liu 		down_read(&EXT4_I(inode)->i_data_sem);
31284bd809dbSZheng Liu 		mutex_unlock(&inode->i_mutex);
31294bd809dbSZheng Liu 	}
31304bd809dbSZheng Liu 
31314c0425ffSMingming Cao 	/*
31328d5d02e6SMingming Cao 	 * We could direct write to holes and fallocate.
31338d5d02e6SMingming Cao 	 *
313469c499d1STheodore Ts'o 	 * Allocated blocks to fill the hole are marked as
3135556615dcSLukas Czerner 	 * unwritten to prevent parallel buffered read to expose
313669c499d1STheodore Ts'o 	 * the stale data before DIO complete the data IO.
31378d5d02e6SMingming Cao 	 *
313869c499d1STheodore Ts'o 	 * As to previously fallocated extents, ext4 get_block will
313969c499d1STheodore Ts'o 	 * just simply mark the buffer mapped but still keep the
3140556615dcSLukas Czerner 	 * extents unwritten.
31414c0425ffSMingming Cao 	 *
314269c499d1STheodore Ts'o 	 * For non AIO case, we will convert those unwritten extents
31438d5d02e6SMingming Cao 	 * to written after return back from blockdev_direct_IO.
31444c0425ffSMingming Cao 	 *
314569c499d1STheodore Ts'o 	 * For async DIO, the conversion needs to be deferred when the
314669c499d1STheodore Ts'o 	 * IO is completed. The ext4 end_io callback function will be
314769c499d1STheodore Ts'o 	 * called to take care of the conversion work.  Here for async
314869c499d1STheodore Ts'o 	 * case, we allocate an io_end structure to hook to the iocb.
31494c0425ffSMingming Cao 	 */
31508d5d02e6SMingming Cao 	iocb->private = NULL;
3151f45ee3a1SDmitry Monakhov 	ext4_inode_aio_set(inode, NULL);
31528d5d02e6SMingming Cao 	if (!is_sync_kiocb(iocb)) {
315397a851edSJan Kara 		io_end = ext4_init_io_end(inode, GFP_NOFS);
31544bd809dbSZheng Liu 		if (!io_end) {
31554bd809dbSZheng Liu 			ret = -ENOMEM;
31564bd809dbSZheng Liu 			goto retake_lock;
31574bd809dbSZheng Liu 		}
315897a851edSJan Kara 		/*
315997a851edSJan Kara 		 * Grab reference for DIO. Will be dropped in ext4_end_io_dio()
316097a851edSJan Kara 		 */
316197a851edSJan Kara 		iocb->private = ext4_get_io_end(io_end);
31628d5d02e6SMingming Cao 		/*
316369c499d1STheodore Ts'o 		 * we save the io structure for current async direct
316469c499d1STheodore Ts'o 		 * IO, so that later ext4_map_blocks() could flag the
316569c499d1STheodore Ts'o 		 * io structure whether there is a unwritten extents
316669c499d1STheodore Ts'o 		 * needs to be converted when IO is completed.
31678d5d02e6SMingming Cao 		 */
3168f45ee3a1SDmitry Monakhov 		ext4_inode_aio_set(inode, io_end);
31698d5d02e6SMingming Cao 	}
31708d5d02e6SMingming Cao 
31718b0f165fSAnatol Pomozov 	if (overwrite) {
31728b0f165fSAnatol Pomozov 		get_block_func = ext4_get_block_write_nolock;
31738b0f165fSAnatol Pomozov 	} else {
31748b0f165fSAnatol Pomozov 		get_block_func = ext4_get_block_write;
31758b0f165fSAnatol Pomozov 		dio_flags = DIO_LOCKING;
31768b0f165fSAnatol Pomozov 	}
3177729f52c6SZheng Liu 	ret = __blockdev_direct_IO(rw, iocb, inode,
3178729f52c6SZheng Liu 				   inode->i_sb->s_bdev, iov,
3179729f52c6SZheng Liu 				   offset, nr_segs,
31808b0f165fSAnatol Pomozov 				   get_block_func,
3181729f52c6SZheng Liu 				   ext4_end_io_dio,
3182729f52c6SZheng Liu 				   NULL,
31838b0f165fSAnatol Pomozov 				   dio_flags);
31848b0f165fSAnatol Pomozov 
31854eec708dSJan Kara 	/*
318697a851edSJan Kara 	 * Put our reference to io_end. This can free the io_end structure e.g.
318797a851edSJan Kara 	 * in sync IO case or in case of error. It can even perform extent
318897a851edSJan Kara 	 * conversion if all bios we submitted finished before we got here.
318997a851edSJan Kara 	 * Note that in that case iocb->private can be already set to NULL
319097a851edSJan Kara 	 * here.
31914eec708dSJan Kara 	 */
319297a851edSJan Kara 	if (io_end) {
319397a851edSJan Kara 		ext4_inode_aio_set(inode, NULL);
319497a851edSJan Kara 		ext4_put_io_end(io_end);
319597a851edSJan Kara 		/*
319697a851edSJan Kara 		 * When no IO was submitted ext4_end_io_dio() was not
319797a851edSJan Kara 		 * called so we have to put iocb's reference.
319897a851edSJan Kara 		 */
319997a851edSJan Kara 		if (ret <= 0 && ret != -EIOCBQUEUED && iocb->private) {
320097a851edSJan Kara 			WARN_ON(iocb->private != io_end);
320197a851edSJan Kara 			WARN_ON(io_end->flag & EXT4_IO_END_UNWRITTEN);
320297a851edSJan Kara 			ext4_put_io_end(io_end);
32038d5d02e6SMingming Cao 			iocb->private = NULL;
320497a851edSJan Kara 		}
320597a851edSJan Kara 	}
320697a851edSJan Kara 	if (ret > 0 && !overwrite && ext4_test_inode_state(inode,
32075f524950SMingming 						EXT4_STATE_DIO_UNWRITTEN)) {
3208109f5565SMingming 		int err;
32098d5d02e6SMingming Cao 		/*
32108d5d02e6SMingming Cao 		 * for non AIO case, since the IO is already
321125985edcSLucas De Marchi 		 * completed, we could do the conversion right here
32128d5d02e6SMingming Cao 		 */
32136b523df4SJan Kara 		err = ext4_convert_unwritten_extents(NULL, inode,
32148d5d02e6SMingming Cao 						     offset, ret);
3215109f5565SMingming 		if (err < 0)
3216109f5565SMingming 			ret = err;
321719f5fb7aSTheodore Ts'o 		ext4_clear_inode_state(inode, EXT4_STATE_DIO_UNWRITTEN);
3218109f5565SMingming 	}
32194bd809dbSZheng Liu 
32204bd809dbSZheng Liu retake_lock:
3221e8340395SJan Kara 	if (rw == WRITE)
3222e8340395SJan Kara 		inode_dio_done(inode);
32234bd809dbSZheng Liu 	/* take i_mutex locking again if we do a ovewrite dio */
32244bd809dbSZheng Liu 	if (overwrite) {
32254bd809dbSZheng Liu 		up_read(&EXT4_I(inode)->i_data_sem);
32264bd809dbSZheng Liu 		mutex_lock(&inode->i_mutex);
32274bd809dbSZheng Liu 	}
32284bd809dbSZheng Liu 
32294c0425ffSMingming Cao 	return ret;
32304c0425ffSMingming Cao }
32318d5d02e6SMingming Cao 
32324c0425ffSMingming Cao static ssize_t ext4_direct_IO(int rw, struct kiocb *iocb,
32334c0425ffSMingming Cao 			      const struct iovec *iov, loff_t offset,
32344c0425ffSMingming Cao 			      unsigned long nr_segs)
32354c0425ffSMingming Cao {
32364c0425ffSMingming Cao 	struct file *file = iocb->ki_filp;
32374c0425ffSMingming Cao 	struct inode *inode = file->f_mapping->host;
32380562e0baSJiaying Zhang 	ssize_t ret;
32394c0425ffSMingming Cao 
324084ebd795STheodore Ts'o 	/*
324184ebd795STheodore Ts'o 	 * If we are doing data journalling we don't support O_DIRECT
324284ebd795STheodore Ts'o 	 */
324384ebd795STheodore Ts'o 	if (ext4_should_journal_data(inode))
324484ebd795STheodore Ts'o 		return 0;
324584ebd795STheodore Ts'o 
324646c7f254STao Ma 	/* Let buffer I/O handle the inline data case. */
324746c7f254STao Ma 	if (ext4_has_inline_data(inode))
324846c7f254STao Ma 		return 0;
324946c7f254STao Ma 
32500562e0baSJiaying Zhang 	trace_ext4_direct_IO_enter(inode, offset, iov_length(iov, nr_segs), rw);
325112e9b892SDmitry Monakhov 	if (ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS))
32520562e0baSJiaying Zhang 		ret = ext4_ext_direct_IO(rw, iocb, iov, offset, nr_segs);
32530562e0baSJiaying Zhang 	else
32540562e0baSJiaying Zhang 		ret = ext4_ind_direct_IO(rw, iocb, iov, offset, nr_segs);
32550562e0baSJiaying Zhang 	trace_ext4_direct_IO_exit(inode, offset,
32560562e0baSJiaying Zhang 				iov_length(iov, nr_segs), rw, ret);
32570562e0baSJiaying Zhang 	return ret;
32584c0425ffSMingming Cao }
32594c0425ffSMingming Cao 
3260ac27a0ecSDave Kleikamp /*
3261617ba13bSMingming Cao  * Pages can be marked dirty completely asynchronously from ext4's journalling
3262ac27a0ecSDave Kleikamp  * activity.  By filemap_sync_pte(), try_to_unmap_one(), etc.  We cannot do
3263ac27a0ecSDave Kleikamp  * much here because ->set_page_dirty is called under VFS locks.  The page is
3264ac27a0ecSDave Kleikamp  * not necessarily locked.
3265ac27a0ecSDave Kleikamp  *
3266ac27a0ecSDave Kleikamp  * We cannot just dirty the page and leave attached buffers clean, because the
3267ac27a0ecSDave Kleikamp  * buffers' dirty state is "definitive".  We cannot just set the buffers dirty
3268ac27a0ecSDave Kleikamp  * or jbddirty because all the journalling code will explode.
3269ac27a0ecSDave Kleikamp  *
3270ac27a0ecSDave Kleikamp  * So what we do is to mark the page "pending dirty" and next time writepage
3271ac27a0ecSDave Kleikamp  * is called, propagate that into the buffers appropriately.
3272ac27a0ecSDave Kleikamp  */
3273617ba13bSMingming Cao static int ext4_journalled_set_page_dirty(struct page *page)
3274ac27a0ecSDave Kleikamp {
3275ac27a0ecSDave Kleikamp 	SetPageChecked(page);
3276ac27a0ecSDave Kleikamp 	return __set_page_dirty_nobuffers(page);
3277ac27a0ecSDave Kleikamp }
3278ac27a0ecSDave Kleikamp 
327974d553aaSTheodore Ts'o static const struct address_space_operations ext4_aops = {
3280617ba13bSMingming Cao 	.readpage		= ext4_readpage,
3281617ba13bSMingming Cao 	.readpages		= ext4_readpages,
328243ce1d23SAneesh Kumar K.V 	.writepage		= ext4_writepage,
328320970ba6STheodore Ts'o 	.writepages		= ext4_writepages,
3284bfc1af65SNick Piggin 	.write_begin		= ext4_write_begin,
328574d553aaSTheodore Ts'o 	.write_end		= ext4_write_end,
3286617ba13bSMingming Cao 	.bmap			= ext4_bmap,
3287617ba13bSMingming Cao 	.invalidatepage		= ext4_invalidatepage,
3288617ba13bSMingming Cao 	.releasepage		= ext4_releasepage,
3289617ba13bSMingming Cao 	.direct_IO		= ext4_direct_IO,
3290ac27a0ecSDave Kleikamp 	.migratepage		= buffer_migrate_page,
32918ab22b9aSHisashi Hifumi 	.is_partially_uptodate  = block_is_partially_uptodate,
3292aa261f54SAndi Kleen 	.error_remove_page	= generic_error_remove_page,
3293ac27a0ecSDave Kleikamp };
3294ac27a0ecSDave Kleikamp 
3295617ba13bSMingming Cao static const struct address_space_operations ext4_journalled_aops = {
3296617ba13bSMingming Cao 	.readpage		= ext4_readpage,
3297617ba13bSMingming Cao 	.readpages		= ext4_readpages,
329843ce1d23SAneesh Kumar K.V 	.writepage		= ext4_writepage,
329920970ba6STheodore Ts'o 	.writepages		= ext4_writepages,
3300bfc1af65SNick Piggin 	.write_begin		= ext4_write_begin,
3301bfc1af65SNick Piggin 	.write_end		= ext4_journalled_write_end,
3302617ba13bSMingming Cao 	.set_page_dirty		= ext4_journalled_set_page_dirty,
3303617ba13bSMingming Cao 	.bmap			= ext4_bmap,
33044520fb3cSJan Kara 	.invalidatepage		= ext4_journalled_invalidatepage,
3305617ba13bSMingming Cao 	.releasepage		= ext4_releasepage,
330684ebd795STheodore Ts'o 	.direct_IO		= ext4_direct_IO,
33078ab22b9aSHisashi Hifumi 	.is_partially_uptodate  = block_is_partially_uptodate,
3308aa261f54SAndi Kleen 	.error_remove_page	= generic_error_remove_page,
3309ac27a0ecSDave Kleikamp };
3310ac27a0ecSDave Kleikamp 
331164769240SAlex Tomas static const struct address_space_operations ext4_da_aops = {
331264769240SAlex Tomas 	.readpage		= ext4_readpage,
331364769240SAlex Tomas 	.readpages		= ext4_readpages,
331443ce1d23SAneesh Kumar K.V 	.writepage		= ext4_writepage,
331520970ba6STheodore Ts'o 	.writepages		= ext4_writepages,
331664769240SAlex Tomas 	.write_begin		= ext4_da_write_begin,
331764769240SAlex Tomas 	.write_end		= ext4_da_write_end,
331864769240SAlex Tomas 	.bmap			= ext4_bmap,
331964769240SAlex Tomas 	.invalidatepage		= ext4_da_invalidatepage,
332064769240SAlex Tomas 	.releasepage		= ext4_releasepage,
332164769240SAlex Tomas 	.direct_IO		= ext4_direct_IO,
332264769240SAlex Tomas 	.migratepage		= buffer_migrate_page,
33238ab22b9aSHisashi Hifumi 	.is_partially_uptodate  = block_is_partially_uptodate,
3324aa261f54SAndi Kleen 	.error_remove_page	= generic_error_remove_page,
332564769240SAlex Tomas };
332664769240SAlex Tomas 
3327617ba13bSMingming Cao void ext4_set_aops(struct inode *inode)
3328ac27a0ecSDave Kleikamp {
33293d2b1582SLukas Czerner 	switch (ext4_inode_journal_mode(inode)) {
33303d2b1582SLukas Czerner 	case EXT4_INODE_ORDERED_DATA_MODE:
333174d553aaSTheodore Ts'o 		ext4_set_inode_state(inode, EXT4_STATE_ORDERED_MODE);
33323d2b1582SLukas Czerner 		break;
33333d2b1582SLukas Czerner 	case EXT4_INODE_WRITEBACK_DATA_MODE:
333474d553aaSTheodore Ts'o 		ext4_clear_inode_state(inode, EXT4_STATE_ORDERED_MODE);
33353d2b1582SLukas Czerner 		break;
33363d2b1582SLukas Czerner 	case EXT4_INODE_JOURNAL_DATA_MODE:
3337617ba13bSMingming Cao 		inode->i_mapping->a_ops = &ext4_journalled_aops;
333874d553aaSTheodore Ts'o 		return;
33393d2b1582SLukas Czerner 	default:
33403d2b1582SLukas Czerner 		BUG();
33413d2b1582SLukas Czerner 	}
334274d553aaSTheodore Ts'o 	if (test_opt(inode->i_sb, DELALLOC))
334374d553aaSTheodore Ts'o 		inode->i_mapping->a_ops = &ext4_da_aops;
334474d553aaSTheodore Ts'o 	else
334574d553aaSTheodore Ts'o 		inode->i_mapping->a_ops = &ext4_aops;
3346ac27a0ecSDave Kleikamp }
3347ac27a0ecSDave Kleikamp 
3348d863dc36SLukas Czerner /*
3349d863dc36SLukas Czerner  * ext4_block_zero_page_range() zeros out a mapping of length 'length'
3350d863dc36SLukas Czerner  * starting from file offset 'from'.  The range to be zero'd must
3351d863dc36SLukas Czerner  * be contained with in one block.  If the specified range exceeds
3352d863dc36SLukas Czerner  * the end of the block it will be shortened to end of the block
3353d863dc36SLukas Czerner  * that cooresponds to 'from'
3354d863dc36SLukas Czerner  */
335594350ab5SMatthew Wilcox static int ext4_block_zero_page_range(handle_t *handle,
3356d863dc36SLukas Czerner 		struct address_space *mapping, loff_t from, loff_t length)
3357d863dc36SLukas Czerner {
3358d863dc36SLukas Czerner 	ext4_fsblk_t index = from >> PAGE_CACHE_SHIFT;
3359d863dc36SLukas Czerner 	unsigned offset = from & (PAGE_CACHE_SIZE-1);
3360d863dc36SLukas Czerner 	unsigned blocksize, max, pos;
3361d863dc36SLukas Czerner 	ext4_lblk_t iblock;
3362d863dc36SLukas Czerner 	struct inode *inode = mapping->host;
3363d863dc36SLukas Czerner 	struct buffer_head *bh;
3364d863dc36SLukas Czerner 	struct page *page;
3365d863dc36SLukas Czerner 	int err = 0;
3366d863dc36SLukas Czerner 
3367d863dc36SLukas Czerner 	page = find_or_create_page(mapping, from >> PAGE_CACHE_SHIFT,
3368d863dc36SLukas Czerner 				   mapping_gfp_mask(mapping) & ~__GFP_FS);
3369d863dc36SLukas Czerner 	if (!page)
3370d863dc36SLukas Czerner 		return -ENOMEM;
3371d863dc36SLukas Czerner 
3372d863dc36SLukas Czerner 	blocksize = inode->i_sb->s_blocksize;
3373d863dc36SLukas Czerner 	max = blocksize - (offset & (blocksize - 1));
3374d863dc36SLukas Czerner 
3375d863dc36SLukas Czerner 	/*
3376d863dc36SLukas Czerner 	 * correct length if it does not fall between
3377d863dc36SLukas Czerner 	 * 'from' and the end of the block
3378d863dc36SLukas Czerner 	 */
3379d863dc36SLukas Czerner 	if (length > max || length < 0)
3380d863dc36SLukas Czerner 		length = max;
3381d863dc36SLukas Czerner 
3382d863dc36SLukas Czerner 	iblock = index << (PAGE_CACHE_SHIFT - inode->i_sb->s_blocksize_bits);
3383d863dc36SLukas Czerner 
3384d863dc36SLukas Czerner 	if (!page_has_buffers(page))
3385d863dc36SLukas Czerner 		create_empty_buffers(page, blocksize, 0);
3386d863dc36SLukas Czerner 
3387d863dc36SLukas Czerner 	/* Find the buffer that contains "offset" */
3388d863dc36SLukas Czerner 	bh = page_buffers(page);
3389d863dc36SLukas Czerner 	pos = blocksize;
3390d863dc36SLukas Czerner 	while (offset >= pos) {
3391d863dc36SLukas Czerner 		bh = bh->b_this_page;
3392d863dc36SLukas Czerner 		iblock++;
3393d863dc36SLukas Czerner 		pos += blocksize;
3394d863dc36SLukas Czerner 	}
3395d863dc36SLukas Czerner 	if (buffer_freed(bh)) {
3396d863dc36SLukas Czerner 		BUFFER_TRACE(bh, "freed: skip");
3397d863dc36SLukas Czerner 		goto unlock;
3398d863dc36SLukas Czerner 	}
3399d863dc36SLukas Czerner 	if (!buffer_mapped(bh)) {
3400d863dc36SLukas Czerner 		BUFFER_TRACE(bh, "unmapped");
3401d863dc36SLukas Czerner 		ext4_get_block(inode, iblock, bh, 0);
3402d863dc36SLukas Czerner 		/* unmapped? It's a hole - nothing to do */
3403d863dc36SLukas Czerner 		if (!buffer_mapped(bh)) {
3404d863dc36SLukas Czerner 			BUFFER_TRACE(bh, "still unmapped");
3405d863dc36SLukas Czerner 			goto unlock;
3406d863dc36SLukas Czerner 		}
3407d863dc36SLukas Czerner 	}
3408d863dc36SLukas Czerner 
3409d863dc36SLukas Czerner 	/* Ok, it's mapped. Make sure it's up-to-date */
3410d863dc36SLukas Czerner 	if (PageUptodate(page))
3411d863dc36SLukas Czerner 		set_buffer_uptodate(bh);
3412d863dc36SLukas Czerner 
3413d863dc36SLukas Czerner 	if (!buffer_uptodate(bh)) {
3414d863dc36SLukas Czerner 		err = -EIO;
3415d863dc36SLukas Czerner 		ll_rw_block(READ, 1, &bh);
3416d863dc36SLukas Czerner 		wait_on_buffer(bh);
3417d863dc36SLukas Czerner 		/* Uhhuh. Read error. Complain and punt. */
3418d863dc36SLukas Czerner 		if (!buffer_uptodate(bh))
3419d863dc36SLukas Czerner 			goto unlock;
3420d863dc36SLukas Czerner 	}
3421d863dc36SLukas Czerner 	if (ext4_should_journal_data(inode)) {
3422d863dc36SLukas Czerner 		BUFFER_TRACE(bh, "get write access");
3423d863dc36SLukas Czerner 		err = ext4_journal_get_write_access(handle, bh);
3424d863dc36SLukas Czerner 		if (err)
3425d863dc36SLukas Czerner 			goto unlock;
3426d863dc36SLukas Czerner 	}
3427d863dc36SLukas Czerner 	zero_user(page, offset, length);
3428d863dc36SLukas Czerner 	BUFFER_TRACE(bh, "zeroed end of block");
3429d863dc36SLukas Czerner 
3430d863dc36SLukas Czerner 	if (ext4_should_journal_data(inode)) {
3431d863dc36SLukas Czerner 		err = ext4_handle_dirty_metadata(handle, inode, bh);
34320713ed0cSLukas Czerner 	} else {
3433353eefd3Sjon ernst 		err = 0;
3434d863dc36SLukas Czerner 		mark_buffer_dirty(bh);
34350713ed0cSLukas Czerner 		if (ext4_test_inode_state(inode, EXT4_STATE_ORDERED_MODE))
34360713ed0cSLukas Czerner 			err = ext4_jbd2_file_inode(handle, inode);
34370713ed0cSLukas Czerner 	}
3438d863dc36SLukas Czerner 
3439d863dc36SLukas Czerner unlock:
3440d863dc36SLukas Czerner 	unlock_page(page);
3441d863dc36SLukas Czerner 	page_cache_release(page);
3442d863dc36SLukas Czerner 	return err;
3443d863dc36SLukas Czerner }
3444d863dc36SLukas Czerner 
344594350ab5SMatthew Wilcox /*
344694350ab5SMatthew Wilcox  * ext4_block_truncate_page() zeroes out a mapping from file offset `from'
344794350ab5SMatthew Wilcox  * up to the end of the block which corresponds to `from'.
344894350ab5SMatthew Wilcox  * This required during truncate. We need to physically zero the tail end
344994350ab5SMatthew Wilcox  * of that block so it doesn't yield old data if the file is later grown.
345094350ab5SMatthew Wilcox  */
3451c197855eSStephen Hemminger static int ext4_block_truncate_page(handle_t *handle,
345294350ab5SMatthew Wilcox 		struct address_space *mapping, loff_t from)
345394350ab5SMatthew Wilcox {
345494350ab5SMatthew Wilcox 	unsigned offset = from & (PAGE_CACHE_SIZE-1);
345594350ab5SMatthew Wilcox 	unsigned length;
345694350ab5SMatthew Wilcox 	unsigned blocksize;
345794350ab5SMatthew Wilcox 	struct inode *inode = mapping->host;
345894350ab5SMatthew Wilcox 
345994350ab5SMatthew Wilcox 	blocksize = inode->i_sb->s_blocksize;
346094350ab5SMatthew Wilcox 	length = blocksize - (offset & (blocksize - 1));
346194350ab5SMatthew Wilcox 
346294350ab5SMatthew Wilcox 	return ext4_block_zero_page_range(handle, mapping, from, length);
346394350ab5SMatthew Wilcox }
346494350ab5SMatthew Wilcox 
3465a87dd18cSLukas Czerner int ext4_zero_partial_blocks(handle_t *handle, struct inode *inode,
3466a87dd18cSLukas Czerner 			     loff_t lstart, loff_t length)
3467a87dd18cSLukas Czerner {
3468a87dd18cSLukas Czerner 	struct super_block *sb = inode->i_sb;
3469a87dd18cSLukas Czerner 	struct address_space *mapping = inode->i_mapping;
3470e1be3a92SLukas Czerner 	unsigned partial_start, partial_end;
3471a87dd18cSLukas Czerner 	ext4_fsblk_t start, end;
3472a87dd18cSLukas Czerner 	loff_t byte_end = (lstart + length - 1);
3473a87dd18cSLukas Czerner 	int err = 0;
3474a87dd18cSLukas Czerner 
3475e1be3a92SLukas Czerner 	partial_start = lstart & (sb->s_blocksize - 1);
3476e1be3a92SLukas Czerner 	partial_end = byte_end & (sb->s_blocksize - 1);
3477e1be3a92SLukas Czerner 
3478a87dd18cSLukas Czerner 	start = lstart >> sb->s_blocksize_bits;
3479a87dd18cSLukas Czerner 	end = byte_end >> sb->s_blocksize_bits;
3480a87dd18cSLukas Czerner 
3481a87dd18cSLukas Czerner 	/* Handle partial zero within the single block */
3482e1be3a92SLukas Czerner 	if (start == end &&
3483e1be3a92SLukas Czerner 	    (partial_start || (partial_end != sb->s_blocksize - 1))) {
3484a87dd18cSLukas Czerner 		err = ext4_block_zero_page_range(handle, mapping,
3485a87dd18cSLukas Czerner 						 lstart, length);
3486a87dd18cSLukas Czerner 		return err;
3487a87dd18cSLukas Czerner 	}
3488a87dd18cSLukas Czerner 	/* Handle partial zero out on the start of the range */
3489e1be3a92SLukas Czerner 	if (partial_start) {
3490a87dd18cSLukas Czerner 		err = ext4_block_zero_page_range(handle, mapping,
3491a87dd18cSLukas Czerner 						 lstart, sb->s_blocksize);
3492a87dd18cSLukas Czerner 		if (err)
3493a87dd18cSLukas Czerner 			return err;
3494a87dd18cSLukas Czerner 	}
3495a87dd18cSLukas Czerner 	/* Handle partial zero out on the end of the range */
3496e1be3a92SLukas Czerner 	if (partial_end != sb->s_blocksize - 1)
3497a87dd18cSLukas Czerner 		err = ext4_block_zero_page_range(handle, mapping,
3498e1be3a92SLukas Czerner 						 byte_end - partial_end,
3499e1be3a92SLukas Czerner 						 partial_end + 1);
3500a87dd18cSLukas Czerner 	return err;
3501a87dd18cSLukas Czerner }
3502a87dd18cSLukas Czerner 
350391ef4cafSDuane Griffin int ext4_can_truncate(struct inode *inode)
350491ef4cafSDuane Griffin {
350591ef4cafSDuane Griffin 	if (S_ISREG(inode->i_mode))
350691ef4cafSDuane Griffin 		return 1;
350791ef4cafSDuane Griffin 	if (S_ISDIR(inode->i_mode))
350891ef4cafSDuane Griffin 		return 1;
350991ef4cafSDuane Griffin 	if (S_ISLNK(inode->i_mode))
351091ef4cafSDuane Griffin 		return !ext4_inode_is_fast_symlink(inode);
351191ef4cafSDuane Griffin 	return 0;
351291ef4cafSDuane Griffin }
351391ef4cafSDuane Griffin 
3514ac27a0ecSDave Kleikamp /*
3515a4bb6b64SAllison Henderson  * ext4_punch_hole: punches a hole in a file by releaseing the blocks
3516a4bb6b64SAllison Henderson  * associated with the given offset and length
3517a4bb6b64SAllison Henderson  *
3518a4bb6b64SAllison Henderson  * @inode:  File inode
3519a4bb6b64SAllison Henderson  * @offset: The offset where the hole will begin
3520a4bb6b64SAllison Henderson  * @len:    The length of the hole
3521a4bb6b64SAllison Henderson  *
35224907cb7bSAnatol Pomozov  * Returns: 0 on success or negative on failure
3523a4bb6b64SAllison Henderson  */
3524a4bb6b64SAllison Henderson 
3525aeb2817aSAshish Sangwan int ext4_punch_hole(struct inode *inode, loff_t offset, loff_t length)
3526a4bb6b64SAllison Henderson {
352726a4c0c6STheodore Ts'o 	struct super_block *sb = inode->i_sb;
352826a4c0c6STheodore Ts'o 	ext4_lblk_t first_block, stop_block;
352926a4c0c6STheodore Ts'o 	struct address_space *mapping = inode->i_mapping;
3530a87dd18cSLukas Czerner 	loff_t first_block_offset, last_block_offset;
353126a4c0c6STheodore Ts'o 	handle_t *handle;
353226a4c0c6STheodore Ts'o 	unsigned int credits;
353326a4c0c6STheodore Ts'o 	int ret = 0;
353426a4c0c6STheodore Ts'o 
3535a4bb6b64SAllison Henderson 	if (!S_ISREG(inode->i_mode))
353673355192SAllison Henderson 		return -EOPNOTSUPP;
3537a4bb6b64SAllison Henderson 
3538b8a86845SLukas Czerner 	trace_ext4_punch_hole(inode, offset, length, 0);
3539aaddea81SZheng Liu 
354026a4c0c6STheodore Ts'o 	/*
354126a4c0c6STheodore Ts'o 	 * Write out all dirty pages to avoid race conditions
354226a4c0c6STheodore Ts'o 	 * Then release them.
354326a4c0c6STheodore Ts'o 	 */
354426a4c0c6STheodore Ts'o 	if (mapping->nrpages && mapping_tagged(mapping, PAGECACHE_TAG_DIRTY)) {
354526a4c0c6STheodore Ts'o 		ret = filemap_write_and_wait_range(mapping, offset,
354626a4c0c6STheodore Ts'o 						   offset + length - 1);
354726a4c0c6STheodore Ts'o 		if (ret)
354826a4c0c6STheodore Ts'o 			return ret;
354926a4c0c6STheodore Ts'o 	}
355026a4c0c6STheodore Ts'o 
355126a4c0c6STheodore Ts'o 	mutex_lock(&inode->i_mutex);
35529ef06cecSLukas Czerner 
355326a4c0c6STheodore Ts'o 	/* No need to punch hole beyond i_size */
355426a4c0c6STheodore Ts'o 	if (offset >= inode->i_size)
355526a4c0c6STheodore Ts'o 		goto out_mutex;
355626a4c0c6STheodore Ts'o 
355726a4c0c6STheodore Ts'o 	/*
355826a4c0c6STheodore Ts'o 	 * If the hole extends beyond i_size, set the hole
355926a4c0c6STheodore Ts'o 	 * to end after the page that contains i_size
356026a4c0c6STheodore Ts'o 	 */
356126a4c0c6STheodore Ts'o 	if (offset + length > inode->i_size) {
356226a4c0c6STheodore Ts'o 		length = inode->i_size +
356326a4c0c6STheodore Ts'o 		   PAGE_CACHE_SIZE - (inode->i_size & (PAGE_CACHE_SIZE - 1)) -
356426a4c0c6STheodore Ts'o 		   offset;
356526a4c0c6STheodore Ts'o 	}
356626a4c0c6STheodore Ts'o 
3567a361293fSJan Kara 	if (offset & (sb->s_blocksize - 1) ||
3568a361293fSJan Kara 	    (offset + length) & (sb->s_blocksize - 1)) {
3569a361293fSJan Kara 		/*
3570a361293fSJan Kara 		 * Attach jinode to inode for jbd2 if we do any zeroing of
3571a361293fSJan Kara 		 * partial block
3572a361293fSJan Kara 		 */
3573a361293fSJan Kara 		ret = ext4_inode_attach_jinode(inode);
3574a361293fSJan Kara 		if (ret < 0)
3575a361293fSJan Kara 			goto out_mutex;
3576a361293fSJan Kara 
3577a361293fSJan Kara 	}
3578a361293fSJan Kara 
3579a87dd18cSLukas Czerner 	first_block_offset = round_up(offset, sb->s_blocksize);
3580a87dd18cSLukas Czerner 	last_block_offset = round_down((offset + length), sb->s_blocksize) - 1;
358126a4c0c6STheodore Ts'o 
3582a87dd18cSLukas Czerner 	/* Now release the pages and zero block aligned part of pages*/
3583a87dd18cSLukas Czerner 	if (last_block_offset > first_block_offset)
3584a87dd18cSLukas Czerner 		truncate_pagecache_range(inode, first_block_offset,
3585a87dd18cSLukas Czerner 					 last_block_offset);
358626a4c0c6STheodore Ts'o 
358726a4c0c6STheodore Ts'o 	/* Wait all existing dio workers, newcomers will block on i_mutex */
358826a4c0c6STheodore Ts'o 	ext4_inode_block_unlocked_dio(inode);
358926a4c0c6STheodore Ts'o 	inode_dio_wait(inode);
359026a4c0c6STheodore Ts'o 
359126a4c0c6STheodore Ts'o 	if (ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS))
359226a4c0c6STheodore Ts'o 		credits = ext4_writepage_trans_blocks(inode);
359326a4c0c6STheodore Ts'o 	else
359426a4c0c6STheodore Ts'o 		credits = ext4_blocks_for_truncate(inode);
359526a4c0c6STheodore Ts'o 	handle = ext4_journal_start(inode, EXT4_HT_TRUNCATE, credits);
359626a4c0c6STheodore Ts'o 	if (IS_ERR(handle)) {
359726a4c0c6STheodore Ts'o 		ret = PTR_ERR(handle);
359826a4c0c6STheodore Ts'o 		ext4_std_error(sb, ret);
359926a4c0c6STheodore Ts'o 		goto out_dio;
360026a4c0c6STheodore Ts'o 	}
360126a4c0c6STheodore Ts'o 
3602a87dd18cSLukas Czerner 	ret = ext4_zero_partial_blocks(handle, inode, offset,
3603a87dd18cSLukas Czerner 				       length);
360426a4c0c6STheodore Ts'o 	if (ret)
360526a4c0c6STheodore Ts'o 		goto out_stop;
360626a4c0c6STheodore Ts'o 
360726a4c0c6STheodore Ts'o 	first_block = (offset + sb->s_blocksize - 1) >>
360826a4c0c6STheodore Ts'o 		EXT4_BLOCK_SIZE_BITS(sb);
360926a4c0c6STheodore Ts'o 	stop_block = (offset + length) >> EXT4_BLOCK_SIZE_BITS(sb);
361026a4c0c6STheodore Ts'o 
361126a4c0c6STheodore Ts'o 	/* If there are no blocks to remove, return now */
361226a4c0c6STheodore Ts'o 	if (first_block >= stop_block)
361326a4c0c6STheodore Ts'o 		goto out_stop;
361426a4c0c6STheodore Ts'o 
361526a4c0c6STheodore Ts'o 	down_write(&EXT4_I(inode)->i_data_sem);
361626a4c0c6STheodore Ts'o 	ext4_discard_preallocations(inode);
361726a4c0c6STheodore Ts'o 
361826a4c0c6STheodore Ts'o 	ret = ext4_es_remove_extent(inode, first_block,
361926a4c0c6STheodore Ts'o 				    stop_block - first_block);
362026a4c0c6STheodore Ts'o 	if (ret) {
362126a4c0c6STheodore Ts'o 		up_write(&EXT4_I(inode)->i_data_sem);
362226a4c0c6STheodore Ts'o 		goto out_stop;
362326a4c0c6STheodore Ts'o 	}
362426a4c0c6STheodore Ts'o 
362526a4c0c6STheodore Ts'o 	if (ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS))
362626a4c0c6STheodore Ts'o 		ret = ext4_ext_remove_space(inode, first_block,
362726a4c0c6STheodore Ts'o 					    stop_block - 1);
362826a4c0c6STheodore Ts'o 	else
362926a4c0c6STheodore Ts'o 		ret = ext4_free_hole_blocks(handle, inode, first_block,
363026a4c0c6STheodore Ts'o 					    stop_block);
363126a4c0c6STheodore Ts'o 
3632819c4920STheodore Ts'o 	up_write(&EXT4_I(inode)->i_data_sem);
363326a4c0c6STheodore Ts'o 	if (IS_SYNC(inode))
363426a4c0c6STheodore Ts'o 		ext4_handle_sync(handle);
3635e251f9bcSMaxim Patlasov 
3636e251f9bcSMaxim Patlasov 	/* Now release the pages again to reduce race window */
3637e251f9bcSMaxim Patlasov 	if (last_block_offset > first_block_offset)
3638e251f9bcSMaxim Patlasov 		truncate_pagecache_range(inode, first_block_offset,
3639e251f9bcSMaxim Patlasov 					 last_block_offset);
3640e251f9bcSMaxim Patlasov 
364126a4c0c6STheodore Ts'o 	inode->i_mtime = inode->i_ctime = ext4_current_time(inode);
364226a4c0c6STheodore Ts'o 	ext4_mark_inode_dirty(handle, inode);
364326a4c0c6STheodore Ts'o out_stop:
364426a4c0c6STheodore Ts'o 	ext4_journal_stop(handle);
364526a4c0c6STheodore Ts'o out_dio:
364626a4c0c6STheodore Ts'o 	ext4_inode_resume_unlocked_dio(inode);
364726a4c0c6STheodore Ts'o out_mutex:
364826a4c0c6STheodore Ts'o 	mutex_unlock(&inode->i_mutex);
364926a4c0c6STheodore Ts'o 	return ret;
3650a4bb6b64SAllison Henderson }
3651a4bb6b64SAllison Henderson 
3652a361293fSJan Kara int ext4_inode_attach_jinode(struct inode *inode)
3653a361293fSJan Kara {
3654a361293fSJan Kara 	struct ext4_inode_info *ei = EXT4_I(inode);
3655a361293fSJan Kara 	struct jbd2_inode *jinode;
3656a361293fSJan Kara 
3657a361293fSJan Kara 	if (ei->jinode || !EXT4_SB(inode->i_sb)->s_journal)
3658a361293fSJan Kara 		return 0;
3659a361293fSJan Kara 
3660a361293fSJan Kara 	jinode = jbd2_alloc_inode(GFP_KERNEL);
3661a361293fSJan Kara 	spin_lock(&inode->i_lock);
3662a361293fSJan Kara 	if (!ei->jinode) {
3663a361293fSJan Kara 		if (!jinode) {
3664a361293fSJan Kara 			spin_unlock(&inode->i_lock);
3665a361293fSJan Kara 			return -ENOMEM;
3666a361293fSJan Kara 		}
3667a361293fSJan Kara 		ei->jinode = jinode;
3668a361293fSJan Kara 		jbd2_journal_init_jbd_inode(ei->jinode, inode);
3669a361293fSJan Kara 		jinode = NULL;
3670a361293fSJan Kara 	}
3671a361293fSJan Kara 	spin_unlock(&inode->i_lock);
3672a361293fSJan Kara 	if (unlikely(jinode != NULL))
3673a361293fSJan Kara 		jbd2_free_inode(jinode);
3674a361293fSJan Kara 	return 0;
3675a361293fSJan Kara }
3676a361293fSJan Kara 
3677a4bb6b64SAllison Henderson /*
3678617ba13bSMingming Cao  * ext4_truncate()
3679ac27a0ecSDave Kleikamp  *
3680617ba13bSMingming Cao  * We block out ext4_get_block() block instantiations across the entire
3681617ba13bSMingming Cao  * transaction, and VFS/VM ensures that ext4_truncate() cannot run
3682ac27a0ecSDave Kleikamp  * simultaneously on behalf of the same inode.
3683ac27a0ecSDave Kleikamp  *
368442b2aa86SJustin P. Mattock  * As we work through the truncate and commit bits of it to the journal there
3685ac27a0ecSDave Kleikamp  * is one core, guiding principle: the file's tree must always be consistent on
3686ac27a0ecSDave Kleikamp  * disk.  We must be able to restart the truncate after a crash.
3687ac27a0ecSDave Kleikamp  *
3688ac27a0ecSDave Kleikamp  * The file's tree may be transiently inconsistent in memory (although it
3689ac27a0ecSDave Kleikamp  * probably isn't), but whenever we close off and commit a journal transaction,
3690ac27a0ecSDave Kleikamp  * the contents of (the filesystem + the journal) must be consistent and
3691ac27a0ecSDave Kleikamp  * restartable.  It's pretty simple, really: bottom up, right to left (although
3692ac27a0ecSDave Kleikamp  * left-to-right works OK too).
3693ac27a0ecSDave Kleikamp  *
3694ac27a0ecSDave Kleikamp  * Note that at recovery time, journal replay occurs *before* the restart of
3695ac27a0ecSDave Kleikamp  * truncate against the orphan inode list.
3696ac27a0ecSDave Kleikamp  *
3697ac27a0ecSDave Kleikamp  * The committed inode has the new, desired i_size (which is the same as
3698617ba13bSMingming Cao  * i_disksize in this case).  After a crash, ext4_orphan_cleanup() will see
3699ac27a0ecSDave Kleikamp  * that this inode's truncate did not complete and it will again call
3700617ba13bSMingming Cao  * ext4_truncate() to have another go.  So there will be instantiated blocks
3701617ba13bSMingming Cao  * to the right of the truncation point in a crashed ext4 filesystem.  But
3702ac27a0ecSDave Kleikamp  * that's fine - as long as they are linked from the inode, the post-crash
3703617ba13bSMingming Cao  * ext4_truncate() run will find them and release them.
3704ac27a0ecSDave Kleikamp  */
3705617ba13bSMingming Cao void ext4_truncate(struct inode *inode)
3706ac27a0ecSDave Kleikamp {
3707819c4920STheodore Ts'o 	struct ext4_inode_info *ei = EXT4_I(inode);
3708819c4920STheodore Ts'o 	unsigned int credits;
3709819c4920STheodore Ts'o 	handle_t *handle;
3710819c4920STheodore Ts'o 	struct address_space *mapping = inode->i_mapping;
3711819c4920STheodore Ts'o 
371219b5ef61STheodore Ts'o 	/*
371319b5ef61STheodore Ts'o 	 * There is a possibility that we're either freeing the inode
3714e04027e8SMatthew Wilcox 	 * or it's a completely new inode. In those cases we might not
371519b5ef61STheodore Ts'o 	 * have i_mutex locked because it's not necessary.
371619b5ef61STheodore Ts'o 	 */
371719b5ef61STheodore Ts'o 	if (!(inode->i_state & (I_NEW|I_FREEING)))
371819b5ef61STheodore Ts'o 		WARN_ON(!mutex_is_locked(&inode->i_mutex));
37190562e0baSJiaying Zhang 	trace_ext4_truncate_enter(inode);
37200562e0baSJiaying Zhang 
372191ef4cafSDuane Griffin 	if (!ext4_can_truncate(inode))
3722ac27a0ecSDave Kleikamp 		return;
3723ac27a0ecSDave Kleikamp 
372412e9b892SDmitry Monakhov 	ext4_clear_inode_flag(inode, EXT4_INODE_EOFBLOCKS);
3725c8d46e41SJiaying Zhang 
37265534fb5bSTheodore Ts'o 	if (inode->i_size == 0 && !test_opt(inode->i_sb, NO_AUTO_DA_ALLOC))
372719f5fb7aSTheodore Ts'o 		ext4_set_inode_state(inode, EXT4_STATE_DA_ALLOC_CLOSE);
37287d8f9f7dSTheodore Ts'o 
3729aef1c851STao Ma 	if (ext4_has_inline_data(inode)) {
3730aef1c851STao Ma 		int has_inline = 1;
3731aef1c851STao Ma 
3732aef1c851STao Ma 		ext4_inline_data_truncate(inode, &has_inline);
3733aef1c851STao Ma 		if (has_inline)
3734aef1c851STao Ma 			return;
3735aef1c851STao Ma 	}
3736aef1c851STao Ma 
3737a361293fSJan Kara 	/* If we zero-out tail of the page, we have to create jinode for jbd2 */
3738a361293fSJan Kara 	if (inode->i_size & (inode->i_sb->s_blocksize - 1)) {
3739a361293fSJan Kara 		if (ext4_inode_attach_jinode(inode) < 0)
3740a361293fSJan Kara 			return;
3741a361293fSJan Kara 	}
3742a361293fSJan Kara 
3743ff9893dcSAmir Goldstein 	if (ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS))
3744819c4920STheodore Ts'o 		credits = ext4_writepage_trans_blocks(inode);
3745ff9893dcSAmir Goldstein 	else
3746819c4920STheodore Ts'o 		credits = ext4_blocks_for_truncate(inode);
3747819c4920STheodore Ts'o 
3748819c4920STheodore Ts'o 	handle = ext4_journal_start(inode, EXT4_HT_TRUNCATE, credits);
3749819c4920STheodore Ts'o 	if (IS_ERR(handle)) {
3750819c4920STheodore Ts'o 		ext4_std_error(inode->i_sb, PTR_ERR(handle));
3751819c4920STheodore Ts'o 		return;
3752819c4920STheodore Ts'o 	}
3753819c4920STheodore Ts'o 
3754eb3544c6SLukas Czerner 	if (inode->i_size & (inode->i_sb->s_blocksize - 1))
3755eb3544c6SLukas Czerner 		ext4_block_truncate_page(handle, mapping, inode->i_size);
3756819c4920STheodore Ts'o 
3757819c4920STheodore Ts'o 	/*
3758819c4920STheodore Ts'o 	 * We add the inode to the orphan list, so that if this
3759819c4920STheodore Ts'o 	 * truncate spans multiple transactions, and we crash, we will
3760819c4920STheodore Ts'o 	 * resume the truncate when the filesystem recovers.  It also
3761819c4920STheodore Ts'o 	 * marks the inode dirty, to catch the new size.
3762819c4920STheodore Ts'o 	 *
3763819c4920STheodore Ts'o 	 * Implication: the file must always be in a sane, consistent
3764819c4920STheodore Ts'o 	 * truncatable state while each transaction commits.
3765819c4920STheodore Ts'o 	 */
3766819c4920STheodore Ts'o 	if (ext4_orphan_add(handle, inode))
3767819c4920STheodore Ts'o 		goto out_stop;
3768819c4920STheodore Ts'o 
3769819c4920STheodore Ts'o 	down_write(&EXT4_I(inode)->i_data_sem);
3770819c4920STheodore Ts'o 
3771819c4920STheodore Ts'o 	ext4_discard_preallocations(inode);
3772819c4920STheodore Ts'o 
3773819c4920STheodore Ts'o 	if (ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS))
3774819c4920STheodore Ts'o 		ext4_ext_truncate(handle, inode);
3775819c4920STheodore Ts'o 	else
3776819c4920STheodore Ts'o 		ext4_ind_truncate(handle, inode);
3777819c4920STheodore Ts'o 
3778819c4920STheodore Ts'o 	up_write(&ei->i_data_sem);
3779819c4920STheodore Ts'o 
3780819c4920STheodore Ts'o 	if (IS_SYNC(inode))
3781819c4920STheodore Ts'o 		ext4_handle_sync(handle);
3782819c4920STheodore Ts'o 
3783819c4920STheodore Ts'o out_stop:
3784819c4920STheodore Ts'o 	/*
3785819c4920STheodore Ts'o 	 * If this was a simple ftruncate() and the file will remain alive,
3786819c4920STheodore Ts'o 	 * then we need to clear up the orphan record which we created above.
3787819c4920STheodore Ts'o 	 * However, if this was a real unlink then we were called by
3788819c4920STheodore Ts'o 	 * ext4_delete_inode(), and we allow that function to clean up the
3789819c4920STheodore Ts'o 	 * orphan info for us.
3790819c4920STheodore Ts'o 	 */
3791819c4920STheodore Ts'o 	if (inode->i_nlink)
3792819c4920STheodore Ts'o 		ext4_orphan_del(handle, inode);
3793819c4920STheodore Ts'o 
3794819c4920STheodore Ts'o 	inode->i_mtime = inode->i_ctime = ext4_current_time(inode);
3795819c4920STheodore Ts'o 	ext4_mark_inode_dirty(handle, inode);
3796819c4920STheodore Ts'o 	ext4_journal_stop(handle);
3797a86c6181SAlex Tomas 
37980562e0baSJiaying Zhang 	trace_ext4_truncate_exit(inode);
3799ac27a0ecSDave Kleikamp }
3800ac27a0ecSDave Kleikamp 
3801ac27a0ecSDave Kleikamp /*
3802617ba13bSMingming Cao  * ext4_get_inode_loc returns with an extra refcount against the inode's
3803ac27a0ecSDave Kleikamp  * underlying buffer_head on success. If 'in_mem' is true, we have all
3804ac27a0ecSDave Kleikamp  * data in memory that is needed to recreate the on-disk version of this
3805ac27a0ecSDave Kleikamp  * inode.
3806ac27a0ecSDave Kleikamp  */
3807617ba13bSMingming Cao static int __ext4_get_inode_loc(struct inode *inode,
3808617ba13bSMingming Cao 				struct ext4_iloc *iloc, int in_mem)
3809ac27a0ecSDave Kleikamp {
3810240799cdSTheodore Ts'o 	struct ext4_group_desc	*gdp;
3811ac27a0ecSDave Kleikamp 	struct buffer_head	*bh;
3812240799cdSTheodore Ts'o 	struct super_block	*sb = inode->i_sb;
3813240799cdSTheodore Ts'o 	ext4_fsblk_t		block;
3814240799cdSTheodore Ts'o 	int			inodes_per_block, inode_offset;
3815ac27a0ecSDave Kleikamp 
38163a06d778SAneesh Kumar K.V 	iloc->bh = NULL;
3817240799cdSTheodore Ts'o 	if (!ext4_valid_inum(sb, inode->i_ino))
3818ac27a0ecSDave Kleikamp 		return -EIO;
3819ac27a0ecSDave Kleikamp 
3820240799cdSTheodore Ts'o 	iloc->block_group = (inode->i_ino - 1) / EXT4_INODES_PER_GROUP(sb);
3821240799cdSTheodore Ts'o 	gdp = ext4_get_group_desc(sb, iloc->block_group, NULL);
3822240799cdSTheodore Ts'o 	if (!gdp)
3823240799cdSTheodore Ts'o 		return -EIO;
3824240799cdSTheodore Ts'o 
3825240799cdSTheodore Ts'o 	/*
3826240799cdSTheodore Ts'o 	 * Figure out the offset within the block group inode table
3827240799cdSTheodore Ts'o 	 */
382800d09882STao Ma 	inodes_per_block = EXT4_SB(sb)->s_inodes_per_block;
3829240799cdSTheodore Ts'o 	inode_offset = ((inode->i_ino - 1) %
3830240799cdSTheodore Ts'o 			EXT4_INODES_PER_GROUP(sb));
3831240799cdSTheodore Ts'o 	block = ext4_inode_table(sb, gdp) + (inode_offset / inodes_per_block);
3832240799cdSTheodore Ts'o 	iloc->offset = (inode_offset % inodes_per_block) * EXT4_INODE_SIZE(sb);
3833240799cdSTheodore Ts'o 
3834240799cdSTheodore Ts'o 	bh = sb_getblk(sb, block);
3835aebf0243SWang Shilong 	if (unlikely(!bh))
3836860d21e2STheodore Ts'o 		return -ENOMEM;
3837ac27a0ecSDave Kleikamp 	if (!buffer_uptodate(bh)) {
3838ac27a0ecSDave Kleikamp 		lock_buffer(bh);
38399c83a923SHidehiro Kawai 
38409c83a923SHidehiro Kawai 		/*
38419c83a923SHidehiro Kawai 		 * If the buffer has the write error flag, we have failed
38429c83a923SHidehiro Kawai 		 * to write out another inode in the same block.  In this
38439c83a923SHidehiro Kawai 		 * case, we don't have to read the block because we may
38449c83a923SHidehiro Kawai 		 * read the old inode data successfully.
38459c83a923SHidehiro Kawai 		 */
38469c83a923SHidehiro Kawai 		if (buffer_write_io_error(bh) && !buffer_uptodate(bh))
38479c83a923SHidehiro Kawai 			set_buffer_uptodate(bh);
38489c83a923SHidehiro Kawai 
3849ac27a0ecSDave Kleikamp 		if (buffer_uptodate(bh)) {
3850ac27a0ecSDave Kleikamp 			/* someone brought it uptodate while we waited */
3851ac27a0ecSDave Kleikamp 			unlock_buffer(bh);
3852ac27a0ecSDave Kleikamp 			goto has_buffer;
3853ac27a0ecSDave Kleikamp 		}
3854ac27a0ecSDave Kleikamp 
3855ac27a0ecSDave Kleikamp 		/*
3856ac27a0ecSDave Kleikamp 		 * If we have all information of the inode in memory and this
3857ac27a0ecSDave Kleikamp 		 * is the only valid inode in the block, we need not read the
3858ac27a0ecSDave Kleikamp 		 * block.
3859ac27a0ecSDave Kleikamp 		 */
3860ac27a0ecSDave Kleikamp 		if (in_mem) {
3861ac27a0ecSDave Kleikamp 			struct buffer_head *bitmap_bh;
3862240799cdSTheodore Ts'o 			int i, start;
3863ac27a0ecSDave Kleikamp 
3864240799cdSTheodore Ts'o 			start = inode_offset & ~(inodes_per_block - 1);
3865ac27a0ecSDave Kleikamp 
3866ac27a0ecSDave Kleikamp 			/* Is the inode bitmap in cache? */
3867240799cdSTheodore Ts'o 			bitmap_bh = sb_getblk(sb, ext4_inode_bitmap(sb, gdp));
3868aebf0243SWang Shilong 			if (unlikely(!bitmap_bh))
3869ac27a0ecSDave Kleikamp 				goto make_io;
3870ac27a0ecSDave Kleikamp 
3871ac27a0ecSDave Kleikamp 			/*
3872ac27a0ecSDave Kleikamp 			 * If the inode bitmap isn't in cache then the
3873ac27a0ecSDave Kleikamp 			 * optimisation may end up performing two reads instead
3874ac27a0ecSDave Kleikamp 			 * of one, so skip it.
3875ac27a0ecSDave Kleikamp 			 */
3876ac27a0ecSDave Kleikamp 			if (!buffer_uptodate(bitmap_bh)) {
3877ac27a0ecSDave Kleikamp 				brelse(bitmap_bh);
3878ac27a0ecSDave Kleikamp 				goto make_io;
3879ac27a0ecSDave Kleikamp 			}
3880240799cdSTheodore Ts'o 			for (i = start; i < start + inodes_per_block; i++) {
3881ac27a0ecSDave Kleikamp 				if (i == inode_offset)
3882ac27a0ecSDave Kleikamp 					continue;
3883617ba13bSMingming Cao 				if (ext4_test_bit(i, bitmap_bh->b_data))
3884ac27a0ecSDave Kleikamp 					break;
3885ac27a0ecSDave Kleikamp 			}
3886ac27a0ecSDave Kleikamp 			brelse(bitmap_bh);
3887240799cdSTheodore Ts'o 			if (i == start + inodes_per_block) {
3888ac27a0ecSDave Kleikamp 				/* all other inodes are free, so skip I/O */
3889ac27a0ecSDave Kleikamp 				memset(bh->b_data, 0, bh->b_size);
3890ac27a0ecSDave Kleikamp 				set_buffer_uptodate(bh);
3891ac27a0ecSDave Kleikamp 				unlock_buffer(bh);
3892ac27a0ecSDave Kleikamp 				goto has_buffer;
3893ac27a0ecSDave Kleikamp 			}
3894ac27a0ecSDave Kleikamp 		}
3895ac27a0ecSDave Kleikamp 
3896ac27a0ecSDave Kleikamp make_io:
3897ac27a0ecSDave Kleikamp 		/*
3898240799cdSTheodore Ts'o 		 * If we need to do any I/O, try to pre-readahead extra
3899240799cdSTheodore Ts'o 		 * blocks from the inode table.
3900240799cdSTheodore Ts'o 		 */
3901240799cdSTheodore Ts'o 		if (EXT4_SB(sb)->s_inode_readahead_blks) {
3902240799cdSTheodore Ts'o 			ext4_fsblk_t b, end, table;
3903240799cdSTheodore Ts'o 			unsigned num;
39040d606e2cSTheodore Ts'o 			__u32 ra_blks = EXT4_SB(sb)->s_inode_readahead_blks;
3905240799cdSTheodore Ts'o 
3906240799cdSTheodore Ts'o 			table = ext4_inode_table(sb, gdp);
3907b713a5ecSTheodore Ts'o 			/* s_inode_readahead_blks is always a power of 2 */
39080d606e2cSTheodore Ts'o 			b = block & ~((ext4_fsblk_t) ra_blks - 1);
3909240799cdSTheodore Ts'o 			if (table > b)
3910240799cdSTheodore Ts'o 				b = table;
39110d606e2cSTheodore Ts'o 			end = b + ra_blks;
3912240799cdSTheodore Ts'o 			num = EXT4_INODES_PER_GROUP(sb);
3913feb0ab32SDarrick J. Wong 			if (ext4_has_group_desc_csum(sb))
3914560671a0SAneesh Kumar K.V 				num -= ext4_itable_unused_count(sb, gdp);
3915240799cdSTheodore Ts'o 			table += num / inodes_per_block;
3916240799cdSTheodore Ts'o 			if (end > table)
3917240799cdSTheodore Ts'o 				end = table;
3918240799cdSTheodore Ts'o 			while (b <= end)
3919240799cdSTheodore Ts'o 				sb_breadahead(sb, b++);
3920240799cdSTheodore Ts'o 		}
3921240799cdSTheodore Ts'o 
3922240799cdSTheodore Ts'o 		/*
3923ac27a0ecSDave Kleikamp 		 * There are other valid inodes in the buffer, this inode
3924ac27a0ecSDave Kleikamp 		 * has in-inode xattrs, or we don't have this inode in memory.
3925ac27a0ecSDave Kleikamp 		 * Read the block from disk.
3926ac27a0ecSDave Kleikamp 		 */
39270562e0baSJiaying Zhang 		trace_ext4_load_inode(inode);
3928ac27a0ecSDave Kleikamp 		get_bh(bh);
3929ac27a0ecSDave Kleikamp 		bh->b_end_io = end_buffer_read_sync;
393065299a3bSChristoph Hellwig 		submit_bh(READ | REQ_META | REQ_PRIO, bh);
3931ac27a0ecSDave Kleikamp 		wait_on_buffer(bh);
3932ac27a0ecSDave Kleikamp 		if (!buffer_uptodate(bh)) {
3933c398eda0STheodore Ts'o 			EXT4_ERROR_INODE_BLOCK(inode, block,
3934c398eda0STheodore Ts'o 					       "unable to read itable block");
3935ac27a0ecSDave Kleikamp 			brelse(bh);
3936ac27a0ecSDave Kleikamp 			return -EIO;
3937ac27a0ecSDave Kleikamp 		}
3938ac27a0ecSDave Kleikamp 	}
3939ac27a0ecSDave Kleikamp has_buffer:
3940ac27a0ecSDave Kleikamp 	iloc->bh = bh;
3941ac27a0ecSDave Kleikamp 	return 0;
3942ac27a0ecSDave Kleikamp }
3943ac27a0ecSDave Kleikamp 
3944617ba13bSMingming Cao int ext4_get_inode_loc(struct inode *inode, struct ext4_iloc *iloc)
3945ac27a0ecSDave Kleikamp {
3946ac27a0ecSDave Kleikamp 	/* We have all inode data except xattrs in memory here. */
3947617ba13bSMingming Cao 	return __ext4_get_inode_loc(inode, iloc,
394819f5fb7aSTheodore Ts'o 		!ext4_test_inode_state(inode, EXT4_STATE_XATTR));
3949ac27a0ecSDave Kleikamp }
3950ac27a0ecSDave Kleikamp 
3951617ba13bSMingming Cao void ext4_set_inode_flags(struct inode *inode)
3952ac27a0ecSDave Kleikamp {
3953617ba13bSMingming Cao 	unsigned int flags = EXT4_I(inode)->i_flags;
395400a1a053STheodore Ts'o 	unsigned int new_fl = 0;
3955ac27a0ecSDave Kleikamp 
3956617ba13bSMingming Cao 	if (flags & EXT4_SYNC_FL)
395700a1a053STheodore Ts'o 		new_fl |= S_SYNC;
3958617ba13bSMingming Cao 	if (flags & EXT4_APPEND_FL)
395900a1a053STheodore Ts'o 		new_fl |= S_APPEND;
3960617ba13bSMingming Cao 	if (flags & EXT4_IMMUTABLE_FL)
396100a1a053STheodore Ts'o 		new_fl |= S_IMMUTABLE;
3962617ba13bSMingming Cao 	if (flags & EXT4_NOATIME_FL)
396300a1a053STheodore Ts'o 		new_fl |= S_NOATIME;
3964617ba13bSMingming Cao 	if (flags & EXT4_DIRSYNC_FL)
396500a1a053STheodore Ts'o 		new_fl |= S_DIRSYNC;
39665f16f322STheodore Ts'o 	inode_set_flags(inode, new_fl,
39675f16f322STheodore Ts'o 			S_SYNC|S_APPEND|S_IMMUTABLE|S_NOATIME|S_DIRSYNC);
3968ac27a0ecSDave Kleikamp }
3969ac27a0ecSDave Kleikamp 
3970ff9ddf7eSJan Kara /* Propagate flags from i_flags to EXT4_I(inode)->i_flags */
3971ff9ddf7eSJan Kara void ext4_get_inode_flags(struct ext4_inode_info *ei)
3972ff9ddf7eSJan Kara {
397384a8dce2SDmitry Monakhov 	unsigned int vfs_fl;
397484a8dce2SDmitry Monakhov 	unsigned long old_fl, new_fl;
3975ff9ddf7eSJan Kara 
397684a8dce2SDmitry Monakhov 	do {
397784a8dce2SDmitry Monakhov 		vfs_fl = ei->vfs_inode.i_flags;
397884a8dce2SDmitry Monakhov 		old_fl = ei->i_flags;
397984a8dce2SDmitry Monakhov 		new_fl = old_fl & ~(EXT4_SYNC_FL|EXT4_APPEND_FL|
398084a8dce2SDmitry Monakhov 				EXT4_IMMUTABLE_FL|EXT4_NOATIME_FL|
398184a8dce2SDmitry Monakhov 				EXT4_DIRSYNC_FL);
398284a8dce2SDmitry Monakhov 		if (vfs_fl & S_SYNC)
398384a8dce2SDmitry Monakhov 			new_fl |= EXT4_SYNC_FL;
398484a8dce2SDmitry Monakhov 		if (vfs_fl & S_APPEND)
398584a8dce2SDmitry Monakhov 			new_fl |= EXT4_APPEND_FL;
398684a8dce2SDmitry Monakhov 		if (vfs_fl & S_IMMUTABLE)
398784a8dce2SDmitry Monakhov 			new_fl |= EXT4_IMMUTABLE_FL;
398884a8dce2SDmitry Monakhov 		if (vfs_fl & S_NOATIME)
398984a8dce2SDmitry Monakhov 			new_fl |= EXT4_NOATIME_FL;
399084a8dce2SDmitry Monakhov 		if (vfs_fl & S_DIRSYNC)
399184a8dce2SDmitry Monakhov 			new_fl |= EXT4_DIRSYNC_FL;
399284a8dce2SDmitry Monakhov 	} while (cmpxchg(&ei->i_flags, old_fl, new_fl) != old_fl);
3993ff9ddf7eSJan Kara }
3994de9a55b8STheodore Ts'o 
39950fc1b451SAneesh Kumar K.V static blkcnt_t ext4_inode_blocks(struct ext4_inode *raw_inode,
39960fc1b451SAneesh Kumar K.V 				  struct ext4_inode_info *ei)
39970fc1b451SAneesh Kumar K.V {
39980fc1b451SAneesh Kumar K.V 	blkcnt_t i_blocks ;
39998180a562SAneesh Kumar K.V 	struct inode *inode = &(ei->vfs_inode);
40008180a562SAneesh Kumar K.V 	struct super_block *sb = inode->i_sb;
40010fc1b451SAneesh Kumar K.V 
40020fc1b451SAneesh Kumar K.V 	if (EXT4_HAS_RO_COMPAT_FEATURE(sb,
40030fc1b451SAneesh Kumar K.V 				EXT4_FEATURE_RO_COMPAT_HUGE_FILE)) {
40040fc1b451SAneesh Kumar K.V 		/* we are using combined 48 bit field */
40050fc1b451SAneesh Kumar K.V 		i_blocks = ((u64)le16_to_cpu(raw_inode->i_blocks_high)) << 32 |
40060fc1b451SAneesh Kumar K.V 					le32_to_cpu(raw_inode->i_blocks_lo);
400707a03824STheodore Ts'o 		if (ext4_test_inode_flag(inode, EXT4_INODE_HUGE_FILE)) {
40088180a562SAneesh Kumar K.V 			/* i_blocks represent file system block size */
40098180a562SAneesh Kumar K.V 			return i_blocks  << (inode->i_blkbits - 9);
40108180a562SAneesh Kumar K.V 		} else {
40110fc1b451SAneesh Kumar K.V 			return i_blocks;
40128180a562SAneesh Kumar K.V 		}
40130fc1b451SAneesh Kumar K.V 	} else {
40140fc1b451SAneesh Kumar K.V 		return le32_to_cpu(raw_inode->i_blocks_lo);
40150fc1b451SAneesh Kumar K.V 	}
40160fc1b451SAneesh Kumar K.V }
4017ff9ddf7eSJan Kara 
4018152a7b0aSTao Ma static inline void ext4_iget_extra_inode(struct inode *inode,
4019152a7b0aSTao Ma 					 struct ext4_inode *raw_inode,
4020152a7b0aSTao Ma 					 struct ext4_inode_info *ei)
4021152a7b0aSTao Ma {
4022152a7b0aSTao Ma 	__le32 *magic = (void *)raw_inode +
4023152a7b0aSTao Ma 			EXT4_GOOD_OLD_INODE_SIZE + ei->i_extra_isize;
402467cf5b09STao Ma 	if (*magic == cpu_to_le32(EXT4_XATTR_MAGIC)) {
4025152a7b0aSTao Ma 		ext4_set_inode_state(inode, EXT4_STATE_XATTR);
402667cf5b09STao Ma 		ext4_find_inline_data_nolock(inode);
4027f19d5870STao Ma 	} else
4028f19d5870STao Ma 		EXT4_I(inode)->i_inline_off = 0;
4029152a7b0aSTao Ma }
4030152a7b0aSTao Ma 
40311d1fe1eeSDavid Howells struct inode *ext4_iget(struct super_block *sb, unsigned long ino)
4032ac27a0ecSDave Kleikamp {
4033617ba13bSMingming Cao 	struct ext4_iloc iloc;
4034617ba13bSMingming Cao 	struct ext4_inode *raw_inode;
40351d1fe1eeSDavid Howells 	struct ext4_inode_info *ei;
40361d1fe1eeSDavid Howells 	struct inode *inode;
4037b436b9beSJan Kara 	journal_t *journal = EXT4_SB(sb)->s_journal;
40381d1fe1eeSDavid Howells 	long ret;
4039ac27a0ecSDave Kleikamp 	int block;
404008cefc7aSEric W. Biederman 	uid_t i_uid;
404108cefc7aSEric W. Biederman 	gid_t i_gid;
4042ac27a0ecSDave Kleikamp 
40431d1fe1eeSDavid Howells 	inode = iget_locked(sb, ino);
40441d1fe1eeSDavid Howells 	if (!inode)
40451d1fe1eeSDavid Howells 		return ERR_PTR(-ENOMEM);
40461d1fe1eeSDavid Howells 	if (!(inode->i_state & I_NEW))
40471d1fe1eeSDavid Howells 		return inode;
40481d1fe1eeSDavid Howells 
40491d1fe1eeSDavid Howells 	ei = EXT4_I(inode);
40507dc57615SPeter Huewe 	iloc.bh = NULL;
4051ac27a0ecSDave Kleikamp 
40521d1fe1eeSDavid Howells 	ret = __ext4_get_inode_loc(inode, &iloc, 0);
40531d1fe1eeSDavid Howells 	if (ret < 0)
4054ac27a0ecSDave Kleikamp 		goto bad_inode;
4055617ba13bSMingming Cao 	raw_inode = ext4_raw_inode(&iloc);
4056814525f4SDarrick J. Wong 
4057814525f4SDarrick J. Wong 	if (EXT4_INODE_SIZE(inode->i_sb) > EXT4_GOOD_OLD_INODE_SIZE) {
4058814525f4SDarrick J. Wong 		ei->i_extra_isize = le16_to_cpu(raw_inode->i_extra_isize);
4059814525f4SDarrick J. Wong 		if (EXT4_GOOD_OLD_INODE_SIZE + ei->i_extra_isize >
4060814525f4SDarrick J. Wong 		    EXT4_INODE_SIZE(inode->i_sb)) {
4061814525f4SDarrick J. Wong 			EXT4_ERROR_INODE(inode, "bad extra_isize (%u != %u)",
4062814525f4SDarrick J. Wong 				EXT4_GOOD_OLD_INODE_SIZE + ei->i_extra_isize,
4063814525f4SDarrick J. Wong 				EXT4_INODE_SIZE(inode->i_sb));
4064814525f4SDarrick J. Wong 			ret = -EIO;
4065814525f4SDarrick J. Wong 			goto bad_inode;
4066814525f4SDarrick J. Wong 		}
4067814525f4SDarrick J. Wong 	} else
4068814525f4SDarrick J. Wong 		ei->i_extra_isize = 0;
4069814525f4SDarrick J. Wong 
4070814525f4SDarrick J. Wong 	/* Precompute checksum seed for inode metadata */
4071814525f4SDarrick J. Wong 	if (EXT4_HAS_RO_COMPAT_FEATURE(sb,
4072814525f4SDarrick J. Wong 			EXT4_FEATURE_RO_COMPAT_METADATA_CSUM)) {
4073814525f4SDarrick J. Wong 		struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb);
4074814525f4SDarrick J. Wong 		__u32 csum;
4075814525f4SDarrick J. Wong 		__le32 inum = cpu_to_le32(inode->i_ino);
4076814525f4SDarrick J. Wong 		__le32 gen = raw_inode->i_generation;
4077814525f4SDarrick J. Wong 		csum = ext4_chksum(sbi, sbi->s_csum_seed, (__u8 *)&inum,
4078814525f4SDarrick J. Wong 				   sizeof(inum));
4079814525f4SDarrick J. Wong 		ei->i_csum_seed = ext4_chksum(sbi, csum, (__u8 *)&gen,
4080814525f4SDarrick J. Wong 					      sizeof(gen));
4081814525f4SDarrick J. Wong 	}
4082814525f4SDarrick J. Wong 
4083814525f4SDarrick J. Wong 	if (!ext4_inode_csum_verify(inode, raw_inode, ei)) {
4084814525f4SDarrick J. Wong 		EXT4_ERROR_INODE(inode, "checksum invalid");
4085814525f4SDarrick J. Wong 		ret = -EIO;
4086814525f4SDarrick J. Wong 		goto bad_inode;
4087814525f4SDarrick J. Wong 	}
4088814525f4SDarrick J. Wong 
4089ac27a0ecSDave Kleikamp 	inode->i_mode = le16_to_cpu(raw_inode->i_mode);
409008cefc7aSEric W. Biederman 	i_uid = (uid_t)le16_to_cpu(raw_inode->i_uid_low);
409108cefc7aSEric W. Biederman 	i_gid = (gid_t)le16_to_cpu(raw_inode->i_gid_low);
4092ac27a0ecSDave Kleikamp 	if (!(test_opt(inode->i_sb, NO_UID32))) {
409308cefc7aSEric W. Biederman 		i_uid |= le16_to_cpu(raw_inode->i_uid_high) << 16;
409408cefc7aSEric W. Biederman 		i_gid |= le16_to_cpu(raw_inode->i_gid_high) << 16;
4095ac27a0ecSDave Kleikamp 	}
409608cefc7aSEric W. Biederman 	i_uid_write(inode, i_uid);
409708cefc7aSEric W. Biederman 	i_gid_write(inode, i_gid);
4098bfe86848SMiklos Szeredi 	set_nlink(inode, le16_to_cpu(raw_inode->i_links_count));
4099ac27a0ecSDave Kleikamp 
4100353eb83cSTheodore Ts'o 	ext4_clear_state_flags(ei);	/* Only relevant on 32-bit archs */
410167cf5b09STao Ma 	ei->i_inline_off = 0;
4102ac27a0ecSDave Kleikamp 	ei->i_dir_start_lookup = 0;
4103ac27a0ecSDave Kleikamp 	ei->i_dtime = le32_to_cpu(raw_inode->i_dtime);
4104ac27a0ecSDave Kleikamp 	/* We now have enough fields to check if the inode was active or not.
4105ac27a0ecSDave Kleikamp 	 * This is needed because nfsd might try to access dead inodes
4106ac27a0ecSDave Kleikamp 	 * the test is that same one that e2fsck uses
4107ac27a0ecSDave Kleikamp 	 * NeilBrown 1999oct15
4108ac27a0ecSDave Kleikamp 	 */
4109ac27a0ecSDave Kleikamp 	if (inode->i_nlink == 0) {
4110393d1d1dSDr. Tilmann Bubeck 		if ((inode->i_mode == 0 ||
4111393d1d1dSDr. Tilmann Bubeck 		     !(EXT4_SB(inode->i_sb)->s_mount_state & EXT4_ORPHAN_FS)) &&
4112393d1d1dSDr. Tilmann Bubeck 		    ino != EXT4_BOOT_LOADER_INO) {
4113ac27a0ecSDave Kleikamp 			/* this inode is deleted */
41141d1fe1eeSDavid Howells 			ret = -ESTALE;
4115ac27a0ecSDave Kleikamp 			goto bad_inode;
4116ac27a0ecSDave Kleikamp 		}
4117ac27a0ecSDave Kleikamp 		/* The only unlinked inodes we let through here have
4118ac27a0ecSDave Kleikamp 		 * valid i_mode and are being read by the orphan
4119ac27a0ecSDave Kleikamp 		 * recovery code: that's fine, we're about to complete
4120393d1d1dSDr. Tilmann Bubeck 		 * the process of deleting those.
4121393d1d1dSDr. Tilmann Bubeck 		 * OR it is the EXT4_BOOT_LOADER_INO which is
4122393d1d1dSDr. Tilmann Bubeck 		 * not initialized on a new filesystem. */
4123ac27a0ecSDave Kleikamp 	}
4124ac27a0ecSDave Kleikamp 	ei->i_flags = le32_to_cpu(raw_inode->i_flags);
41250fc1b451SAneesh Kumar K.V 	inode->i_blocks = ext4_inode_blocks(raw_inode, ei);
41267973c0c1SAneesh Kumar K.V 	ei->i_file_acl = le32_to_cpu(raw_inode->i_file_acl_lo);
4127a9e81742STheodore Ts'o 	if (EXT4_HAS_INCOMPAT_FEATURE(sb, EXT4_FEATURE_INCOMPAT_64BIT))
4128a1ddeb7eSBadari Pulavarty 		ei->i_file_acl |=
4129a1ddeb7eSBadari Pulavarty 			((__u64)le16_to_cpu(raw_inode->i_file_acl_high)) << 32;
4130a48380f7SAneesh Kumar K.V 	inode->i_size = ext4_isize(raw_inode);
4131ac27a0ecSDave Kleikamp 	ei->i_disksize = inode->i_size;
4132a9e7f447SDmitry Monakhov #ifdef CONFIG_QUOTA
4133a9e7f447SDmitry Monakhov 	ei->i_reserved_quota = 0;
4134a9e7f447SDmitry Monakhov #endif
4135ac27a0ecSDave Kleikamp 	inode->i_generation = le32_to_cpu(raw_inode->i_generation);
4136ac27a0ecSDave Kleikamp 	ei->i_block_group = iloc.block_group;
4137a4912123STheodore Ts'o 	ei->i_last_alloc_group = ~0;
4138ac27a0ecSDave Kleikamp 	/*
4139ac27a0ecSDave Kleikamp 	 * NOTE! The in-memory inode i_data array is in little-endian order
4140ac27a0ecSDave Kleikamp 	 * even on big-endian machines: we do NOT byteswap the block numbers!
4141ac27a0ecSDave Kleikamp 	 */
4142617ba13bSMingming Cao 	for (block = 0; block < EXT4_N_BLOCKS; block++)
4143ac27a0ecSDave Kleikamp 		ei->i_data[block] = raw_inode->i_block[block];
4144ac27a0ecSDave Kleikamp 	INIT_LIST_HEAD(&ei->i_orphan);
4145ac27a0ecSDave Kleikamp 
4146b436b9beSJan Kara 	/*
4147b436b9beSJan Kara 	 * Set transaction id's of transactions that have to be committed
4148b436b9beSJan Kara 	 * to finish f[data]sync. We set them to currently running transaction
4149b436b9beSJan Kara 	 * as we cannot be sure that the inode or some of its metadata isn't
4150b436b9beSJan Kara 	 * part of the transaction - the inode could have been reclaimed and
4151b436b9beSJan Kara 	 * now it is reread from disk.
4152b436b9beSJan Kara 	 */
4153b436b9beSJan Kara 	if (journal) {
4154b436b9beSJan Kara 		transaction_t *transaction;
4155b436b9beSJan Kara 		tid_t tid;
4156b436b9beSJan Kara 
4157a931da6aSTheodore Ts'o 		read_lock(&journal->j_state_lock);
4158b436b9beSJan Kara 		if (journal->j_running_transaction)
4159b436b9beSJan Kara 			transaction = journal->j_running_transaction;
4160b436b9beSJan Kara 		else
4161b436b9beSJan Kara 			transaction = journal->j_committing_transaction;
4162b436b9beSJan Kara 		if (transaction)
4163b436b9beSJan Kara 			tid = transaction->t_tid;
4164b436b9beSJan Kara 		else
4165b436b9beSJan Kara 			tid = journal->j_commit_sequence;
4166a931da6aSTheodore Ts'o 		read_unlock(&journal->j_state_lock);
4167b436b9beSJan Kara 		ei->i_sync_tid = tid;
4168b436b9beSJan Kara 		ei->i_datasync_tid = tid;
4169b436b9beSJan Kara 	}
4170b436b9beSJan Kara 
41710040d987SEric Sandeen 	if (EXT4_INODE_SIZE(inode->i_sb) > EXT4_GOOD_OLD_INODE_SIZE) {
4172ac27a0ecSDave Kleikamp 		if (ei->i_extra_isize == 0) {
4173ac27a0ecSDave Kleikamp 			/* The extra space is currently unused. Use it. */
4174617ba13bSMingming Cao 			ei->i_extra_isize = sizeof(struct ext4_inode) -
4175617ba13bSMingming Cao 					    EXT4_GOOD_OLD_INODE_SIZE;
4176ac27a0ecSDave Kleikamp 		} else {
4177152a7b0aSTao Ma 			ext4_iget_extra_inode(inode, raw_inode, ei);
4178ac27a0ecSDave Kleikamp 		}
4179814525f4SDarrick J. Wong 	}
4180ac27a0ecSDave Kleikamp 
4181ef7f3835SKalpak Shah 	EXT4_INODE_GET_XTIME(i_ctime, inode, raw_inode);
4182ef7f3835SKalpak Shah 	EXT4_INODE_GET_XTIME(i_mtime, inode, raw_inode);
4183ef7f3835SKalpak Shah 	EXT4_INODE_GET_XTIME(i_atime, inode, raw_inode);
4184ef7f3835SKalpak Shah 	EXT4_EINODE_GET_XTIME(i_crtime, ei, raw_inode);
4185ef7f3835SKalpak Shah 
4186ed3654ebSTheodore Ts'o 	if (likely(!test_opt2(inode->i_sb, HURD_COMPAT))) {
418725ec56b5SJean Noel Cordenner 		inode->i_version = le32_to_cpu(raw_inode->i_disk_version);
418825ec56b5SJean Noel Cordenner 		if (EXT4_INODE_SIZE(inode->i_sb) > EXT4_GOOD_OLD_INODE_SIZE) {
418925ec56b5SJean Noel Cordenner 			if (EXT4_FITS_IN_INODE(raw_inode, ei, i_version_hi))
419025ec56b5SJean Noel Cordenner 				inode->i_version |=
419125ec56b5SJean Noel Cordenner 		    (__u64)(le32_to_cpu(raw_inode->i_version_hi)) << 32;
419225ec56b5SJean Noel Cordenner 		}
4193c4f65706STheodore Ts'o 	}
419425ec56b5SJean Noel Cordenner 
4195c4b5a614STheodore Ts'o 	ret = 0;
4196485c26ecSTheodore Ts'o 	if (ei->i_file_acl &&
41971032988cSTheodore Ts'o 	    !ext4_data_block_valid(EXT4_SB(sb), ei->i_file_acl, 1)) {
419824676da4STheodore Ts'o 		EXT4_ERROR_INODE(inode, "bad extended attribute block %llu",
419924676da4STheodore Ts'o 				 ei->i_file_acl);
4200485c26ecSTheodore Ts'o 		ret = -EIO;
4201485c26ecSTheodore Ts'o 		goto bad_inode;
4202f19d5870STao Ma 	} else if (!ext4_has_inline_data(inode)) {
4203f19d5870STao Ma 		if (ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS)) {
4204f19d5870STao Ma 			if ((S_ISREG(inode->i_mode) || S_ISDIR(inode->i_mode) ||
4205c4b5a614STheodore Ts'o 			    (S_ISLNK(inode->i_mode) &&
4206f19d5870STao Ma 			     !ext4_inode_is_fast_symlink(inode))))
42077a262f7cSAneesh Kumar K.V 				/* Validate extent which is part of inode */
42087a262f7cSAneesh Kumar K.V 				ret = ext4_ext_check_inode(inode);
4209fe2c8191SThiemo Nagel 		} else if (S_ISREG(inode->i_mode) || S_ISDIR(inode->i_mode) ||
4210fe2c8191SThiemo Nagel 			   (S_ISLNK(inode->i_mode) &&
4211fe2c8191SThiemo Nagel 			    !ext4_inode_is_fast_symlink(inode))) {
4212fe2c8191SThiemo Nagel 			/* Validate block references which are part of inode */
42131f7d1e77STheodore Ts'o 			ret = ext4_ind_check_inode(inode);
4214fe2c8191SThiemo Nagel 		}
4215f19d5870STao Ma 	}
4216567f3e9aSTheodore Ts'o 	if (ret)
42177a262f7cSAneesh Kumar K.V 		goto bad_inode;
42187a262f7cSAneesh Kumar K.V 
4219ac27a0ecSDave Kleikamp 	if (S_ISREG(inode->i_mode)) {
4220617ba13bSMingming Cao 		inode->i_op = &ext4_file_inode_operations;
4221617ba13bSMingming Cao 		inode->i_fop = &ext4_file_operations;
4222617ba13bSMingming Cao 		ext4_set_aops(inode);
4223ac27a0ecSDave Kleikamp 	} else if (S_ISDIR(inode->i_mode)) {
4224617ba13bSMingming Cao 		inode->i_op = &ext4_dir_inode_operations;
4225617ba13bSMingming Cao 		inode->i_fop = &ext4_dir_operations;
4226ac27a0ecSDave Kleikamp 	} else if (S_ISLNK(inode->i_mode)) {
4227e83c1397SDuane Griffin 		if (ext4_inode_is_fast_symlink(inode)) {
4228617ba13bSMingming Cao 			inode->i_op = &ext4_fast_symlink_inode_operations;
4229e83c1397SDuane Griffin 			nd_terminate_link(ei->i_data, inode->i_size,
4230e83c1397SDuane Griffin 				sizeof(ei->i_data) - 1);
4231e83c1397SDuane Griffin 		} else {
4232617ba13bSMingming Cao 			inode->i_op = &ext4_symlink_inode_operations;
4233617ba13bSMingming Cao 			ext4_set_aops(inode);
4234ac27a0ecSDave Kleikamp 		}
4235563bdd61STheodore Ts'o 	} else if (S_ISCHR(inode->i_mode) || S_ISBLK(inode->i_mode) ||
4236563bdd61STheodore Ts'o 	      S_ISFIFO(inode->i_mode) || S_ISSOCK(inode->i_mode)) {
4237617ba13bSMingming Cao 		inode->i_op = &ext4_special_inode_operations;
4238ac27a0ecSDave Kleikamp 		if (raw_inode->i_block[0])
4239ac27a0ecSDave Kleikamp 			init_special_inode(inode, inode->i_mode,
4240ac27a0ecSDave Kleikamp 			   old_decode_dev(le32_to_cpu(raw_inode->i_block[0])));
4241ac27a0ecSDave Kleikamp 		else
4242ac27a0ecSDave Kleikamp 			init_special_inode(inode, inode->i_mode,
4243ac27a0ecSDave Kleikamp 			   new_decode_dev(le32_to_cpu(raw_inode->i_block[1])));
4244393d1d1dSDr. Tilmann Bubeck 	} else if (ino == EXT4_BOOT_LOADER_INO) {
4245393d1d1dSDr. Tilmann Bubeck 		make_bad_inode(inode);
4246563bdd61STheodore Ts'o 	} else {
4247563bdd61STheodore Ts'o 		ret = -EIO;
424824676da4STheodore Ts'o 		EXT4_ERROR_INODE(inode, "bogus i_mode (%o)", inode->i_mode);
4249563bdd61STheodore Ts'o 		goto bad_inode;
4250ac27a0ecSDave Kleikamp 	}
4251ac27a0ecSDave Kleikamp 	brelse(iloc.bh);
4252617ba13bSMingming Cao 	ext4_set_inode_flags(inode);
42531d1fe1eeSDavid Howells 	unlock_new_inode(inode);
42541d1fe1eeSDavid Howells 	return inode;
4255ac27a0ecSDave Kleikamp 
4256ac27a0ecSDave Kleikamp bad_inode:
4257567f3e9aSTheodore Ts'o 	brelse(iloc.bh);
42581d1fe1eeSDavid Howells 	iget_failed(inode);
42591d1fe1eeSDavid Howells 	return ERR_PTR(ret);
4260ac27a0ecSDave Kleikamp }
4261ac27a0ecSDave Kleikamp 
42620fc1b451SAneesh Kumar K.V static int ext4_inode_blocks_set(handle_t *handle,
42630fc1b451SAneesh Kumar K.V 				struct ext4_inode *raw_inode,
42640fc1b451SAneesh Kumar K.V 				struct ext4_inode_info *ei)
42650fc1b451SAneesh Kumar K.V {
42660fc1b451SAneesh Kumar K.V 	struct inode *inode = &(ei->vfs_inode);
42670fc1b451SAneesh Kumar K.V 	u64 i_blocks = inode->i_blocks;
42680fc1b451SAneesh Kumar K.V 	struct super_block *sb = inode->i_sb;
42690fc1b451SAneesh Kumar K.V 
42700fc1b451SAneesh Kumar K.V 	if (i_blocks <= ~0U) {
42710fc1b451SAneesh Kumar K.V 		/*
42724907cb7bSAnatol Pomozov 		 * i_blocks can be represented in a 32 bit variable
42730fc1b451SAneesh Kumar K.V 		 * as multiple of 512 bytes
42740fc1b451SAneesh Kumar K.V 		 */
42758180a562SAneesh Kumar K.V 		raw_inode->i_blocks_lo   = cpu_to_le32(i_blocks);
42760fc1b451SAneesh Kumar K.V 		raw_inode->i_blocks_high = 0;
427784a8dce2SDmitry Monakhov 		ext4_clear_inode_flag(inode, EXT4_INODE_HUGE_FILE);
4278f287a1a5STheodore Ts'o 		return 0;
4279f287a1a5STheodore Ts'o 	}
4280f287a1a5STheodore Ts'o 	if (!EXT4_HAS_RO_COMPAT_FEATURE(sb, EXT4_FEATURE_RO_COMPAT_HUGE_FILE))
4281f287a1a5STheodore Ts'o 		return -EFBIG;
4282f287a1a5STheodore Ts'o 
4283f287a1a5STheodore Ts'o 	if (i_blocks <= 0xffffffffffffULL) {
42840fc1b451SAneesh Kumar K.V 		/*
42850fc1b451SAneesh Kumar K.V 		 * i_blocks can be represented in a 48 bit variable
42860fc1b451SAneesh Kumar K.V 		 * as multiple of 512 bytes
42870fc1b451SAneesh Kumar K.V 		 */
42888180a562SAneesh Kumar K.V 		raw_inode->i_blocks_lo   = cpu_to_le32(i_blocks);
42890fc1b451SAneesh Kumar K.V 		raw_inode->i_blocks_high = cpu_to_le16(i_blocks >> 32);
429084a8dce2SDmitry Monakhov 		ext4_clear_inode_flag(inode, EXT4_INODE_HUGE_FILE);
42910fc1b451SAneesh Kumar K.V 	} else {
429284a8dce2SDmitry Monakhov 		ext4_set_inode_flag(inode, EXT4_INODE_HUGE_FILE);
42938180a562SAneesh Kumar K.V 		/* i_block is stored in file system block size */
42948180a562SAneesh Kumar K.V 		i_blocks = i_blocks >> (inode->i_blkbits - 9);
42958180a562SAneesh Kumar K.V 		raw_inode->i_blocks_lo   = cpu_to_le32(i_blocks);
42968180a562SAneesh Kumar K.V 		raw_inode->i_blocks_high = cpu_to_le16(i_blocks >> 32);
42970fc1b451SAneesh Kumar K.V 	}
4298f287a1a5STheodore Ts'o 	return 0;
42990fc1b451SAneesh Kumar K.V }
43000fc1b451SAneesh Kumar K.V 
4301ac27a0ecSDave Kleikamp /*
4302ac27a0ecSDave Kleikamp  * Post the struct inode info into an on-disk inode location in the
4303ac27a0ecSDave Kleikamp  * buffer-cache.  This gobbles the caller's reference to the
4304ac27a0ecSDave Kleikamp  * buffer_head in the inode location struct.
4305ac27a0ecSDave Kleikamp  *
4306ac27a0ecSDave Kleikamp  * The caller must have write access to iloc->bh.
4307ac27a0ecSDave Kleikamp  */
4308617ba13bSMingming Cao static int ext4_do_update_inode(handle_t *handle,
4309ac27a0ecSDave Kleikamp 				struct inode *inode,
4310830156c7SFrank Mayhar 				struct ext4_iloc *iloc)
4311ac27a0ecSDave Kleikamp {
4312617ba13bSMingming Cao 	struct ext4_inode *raw_inode = ext4_raw_inode(iloc);
4313617ba13bSMingming Cao 	struct ext4_inode_info *ei = EXT4_I(inode);
4314ac27a0ecSDave Kleikamp 	struct buffer_head *bh = iloc->bh;
4315202ee5dfSTheodore Ts'o 	struct super_block *sb = inode->i_sb;
4316ac27a0ecSDave Kleikamp 	int err = 0, rc, block;
4317202ee5dfSTheodore Ts'o 	int need_datasync = 0, set_large_file = 0;
431808cefc7aSEric W. Biederman 	uid_t i_uid;
431908cefc7aSEric W. Biederman 	gid_t i_gid;
4320ac27a0ecSDave Kleikamp 
4321202ee5dfSTheodore Ts'o 	spin_lock(&ei->i_raw_lock);
4322202ee5dfSTheodore Ts'o 
4323202ee5dfSTheodore Ts'o 	/* For fields not tracked in the in-memory inode,
4324ac27a0ecSDave Kleikamp 	 * initialise them to zero for new inodes. */
432519f5fb7aSTheodore Ts'o 	if (ext4_test_inode_state(inode, EXT4_STATE_NEW))
4326617ba13bSMingming Cao 		memset(raw_inode, 0, EXT4_SB(inode->i_sb)->s_inode_size);
4327ac27a0ecSDave Kleikamp 
4328ff9ddf7eSJan Kara 	ext4_get_inode_flags(ei);
4329ac27a0ecSDave Kleikamp 	raw_inode->i_mode = cpu_to_le16(inode->i_mode);
433008cefc7aSEric W. Biederman 	i_uid = i_uid_read(inode);
433108cefc7aSEric W. Biederman 	i_gid = i_gid_read(inode);
4332ac27a0ecSDave Kleikamp 	if (!(test_opt(inode->i_sb, NO_UID32))) {
433308cefc7aSEric W. Biederman 		raw_inode->i_uid_low = cpu_to_le16(low_16_bits(i_uid));
433408cefc7aSEric W. Biederman 		raw_inode->i_gid_low = cpu_to_le16(low_16_bits(i_gid));
4335ac27a0ecSDave Kleikamp /*
4336ac27a0ecSDave Kleikamp  * Fix up interoperability with old kernels. Otherwise, old inodes get
4337ac27a0ecSDave Kleikamp  * re-used with the upper 16 bits of the uid/gid intact
4338ac27a0ecSDave Kleikamp  */
4339ac27a0ecSDave Kleikamp 		if (!ei->i_dtime) {
4340ac27a0ecSDave Kleikamp 			raw_inode->i_uid_high =
434108cefc7aSEric W. Biederman 				cpu_to_le16(high_16_bits(i_uid));
4342ac27a0ecSDave Kleikamp 			raw_inode->i_gid_high =
434308cefc7aSEric W. Biederman 				cpu_to_le16(high_16_bits(i_gid));
4344ac27a0ecSDave Kleikamp 		} else {
4345ac27a0ecSDave Kleikamp 			raw_inode->i_uid_high = 0;
4346ac27a0ecSDave Kleikamp 			raw_inode->i_gid_high = 0;
4347ac27a0ecSDave Kleikamp 		}
4348ac27a0ecSDave Kleikamp 	} else {
434908cefc7aSEric W. Biederman 		raw_inode->i_uid_low = cpu_to_le16(fs_high2lowuid(i_uid));
435008cefc7aSEric W. Biederman 		raw_inode->i_gid_low = cpu_to_le16(fs_high2lowgid(i_gid));
4351ac27a0ecSDave Kleikamp 		raw_inode->i_uid_high = 0;
4352ac27a0ecSDave Kleikamp 		raw_inode->i_gid_high = 0;
4353ac27a0ecSDave Kleikamp 	}
4354ac27a0ecSDave Kleikamp 	raw_inode->i_links_count = cpu_to_le16(inode->i_nlink);
4355ef7f3835SKalpak Shah 
4356ef7f3835SKalpak Shah 	EXT4_INODE_SET_XTIME(i_ctime, inode, raw_inode);
4357ef7f3835SKalpak Shah 	EXT4_INODE_SET_XTIME(i_mtime, inode, raw_inode);
4358ef7f3835SKalpak Shah 	EXT4_INODE_SET_XTIME(i_atime, inode, raw_inode);
4359ef7f3835SKalpak Shah 	EXT4_EINODE_SET_XTIME(i_crtime, ei, raw_inode);
4360ef7f3835SKalpak Shah 
4361202ee5dfSTheodore Ts'o 	if (ext4_inode_blocks_set(handle, raw_inode, ei)) {
4362202ee5dfSTheodore Ts'o 		spin_unlock(&ei->i_raw_lock);
43630fc1b451SAneesh Kumar K.V 		goto out_brelse;
4364202ee5dfSTheodore Ts'o 	}
4365ac27a0ecSDave Kleikamp 	raw_inode->i_dtime = cpu_to_le32(ei->i_dtime);
4366353eb83cSTheodore Ts'o 	raw_inode->i_flags = cpu_to_le32(ei->i_flags & 0xFFFFFFFF);
4367ed3654ebSTheodore Ts'o 	if (likely(!test_opt2(inode->i_sb, HURD_COMPAT)))
4368a1ddeb7eSBadari Pulavarty 		raw_inode->i_file_acl_high =
4369a1ddeb7eSBadari Pulavarty 			cpu_to_le16(ei->i_file_acl >> 32);
43707973c0c1SAneesh Kumar K.V 	raw_inode->i_file_acl_lo = cpu_to_le32(ei->i_file_acl);
4371b71fc079SJan Kara 	if (ei->i_disksize != ext4_isize(raw_inode)) {
4372a48380f7SAneesh Kumar K.V 		ext4_isize_set(raw_inode, ei->i_disksize);
4373b71fc079SJan Kara 		need_datasync = 1;
4374b71fc079SJan Kara 	}
4375ac27a0ecSDave Kleikamp 	if (ei->i_disksize > 0x7fffffffULL) {
4376617ba13bSMingming Cao 		if (!EXT4_HAS_RO_COMPAT_FEATURE(sb,
4377617ba13bSMingming Cao 				EXT4_FEATURE_RO_COMPAT_LARGE_FILE) ||
4378617ba13bSMingming Cao 				EXT4_SB(sb)->s_es->s_rev_level ==
4379202ee5dfSTheodore Ts'o 		    cpu_to_le32(EXT4_GOOD_OLD_REV))
4380202ee5dfSTheodore Ts'o 			set_large_file = 1;
4381ac27a0ecSDave Kleikamp 	}
4382ac27a0ecSDave Kleikamp 	raw_inode->i_generation = cpu_to_le32(inode->i_generation);
4383ac27a0ecSDave Kleikamp 	if (S_ISCHR(inode->i_mode) || S_ISBLK(inode->i_mode)) {
4384ac27a0ecSDave Kleikamp 		if (old_valid_dev(inode->i_rdev)) {
4385ac27a0ecSDave Kleikamp 			raw_inode->i_block[0] =
4386ac27a0ecSDave Kleikamp 				cpu_to_le32(old_encode_dev(inode->i_rdev));
4387ac27a0ecSDave Kleikamp 			raw_inode->i_block[1] = 0;
4388ac27a0ecSDave Kleikamp 		} else {
4389ac27a0ecSDave Kleikamp 			raw_inode->i_block[0] = 0;
4390ac27a0ecSDave Kleikamp 			raw_inode->i_block[1] =
4391ac27a0ecSDave Kleikamp 				cpu_to_le32(new_encode_dev(inode->i_rdev));
4392ac27a0ecSDave Kleikamp 			raw_inode->i_block[2] = 0;
4393ac27a0ecSDave Kleikamp 		}
4394f19d5870STao Ma 	} else if (!ext4_has_inline_data(inode)) {
4395de9a55b8STheodore Ts'o 		for (block = 0; block < EXT4_N_BLOCKS; block++)
4396ac27a0ecSDave Kleikamp 			raw_inode->i_block[block] = ei->i_data[block];
4397f19d5870STao Ma 	}
4398ac27a0ecSDave Kleikamp 
4399ed3654ebSTheodore Ts'o 	if (likely(!test_opt2(inode->i_sb, HURD_COMPAT))) {
440025ec56b5SJean Noel Cordenner 		raw_inode->i_disk_version = cpu_to_le32(inode->i_version);
440125ec56b5SJean Noel Cordenner 		if (ei->i_extra_isize) {
440225ec56b5SJean Noel Cordenner 			if (EXT4_FITS_IN_INODE(raw_inode, ei, i_version_hi))
440325ec56b5SJean Noel Cordenner 				raw_inode->i_version_hi =
440425ec56b5SJean Noel Cordenner 					cpu_to_le32(inode->i_version >> 32);
4405c4f65706STheodore Ts'o 			raw_inode->i_extra_isize =
4406c4f65706STheodore Ts'o 				cpu_to_le16(ei->i_extra_isize);
4407c4f65706STheodore Ts'o 		}
440825ec56b5SJean Noel Cordenner 	}
440925ec56b5SJean Noel Cordenner 
4410814525f4SDarrick J. Wong 	ext4_inode_csum_set(inode, raw_inode, ei);
4411814525f4SDarrick J. Wong 
4412202ee5dfSTheodore Ts'o 	spin_unlock(&ei->i_raw_lock);
4413202ee5dfSTheodore Ts'o 
44140390131bSFrank Mayhar 	BUFFER_TRACE(bh, "call ext4_handle_dirty_metadata");
441573b50c1cSCurt Wohlgemuth 	rc = ext4_handle_dirty_metadata(handle, NULL, bh);
4416ac27a0ecSDave Kleikamp 	if (!err)
4417ac27a0ecSDave Kleikamp 		err = rc;
441819f5fb7aSTheodore Ts'o 	ext4_clear_inode_state(inode, EXT4_STATE_NEW);
4419202ee5dfSTheodore Ts'o 	if (set_large_file) {
44205d601255Sliang xie 		BUFFER_TRACE(EXT4_SB(sb)->s_sbh, "get write access");
4421202ee5dfSTheodore Ts'o 		err = ext4_journal_get_write_access(handle, EXT4_SB(sb)->s_sbh);
4422202ee5dfSTheodore Ts'o 		if (err)
4423202ee5dfSTheodore Ts'o 			goto out_brelse;
4424202ee5dfSTheodore Ts'o 		ext4_update_dynamic_rev(sb);
4425202ee5dfSTheodore Ts'o 		EXT4_SET_RO_COMPAT_FEATURE(sb,
4426202ee5dfSTheodore Ts'o 					   EXT4_FEATURE_RO_COMPAT_LARGE_FILE);
4427202ee5dfSTheodore Ts'o 		ext4_handle_sync(handle);
4428202ee5dfSTheodore Ts'o 		err = ext4_handle_dirty_super(handle, sb);
4429202ee5dfSTheodore Ts'o 	}
4430b71fc079SJan Kara 	ext4_update_inode_fsync_trans(handle, inode, need_datasync);
4431ac27a0ecSDave Kleikamp out_brelse:
4432ac27a0ecSDave Kleikamp 	brelse(bh);
4433617ba13bSMingming Cao 	ext4_std_error(inode->i_sb, err);
4434ac27a0ecSDave Kleikamp 	return err;
4435ac27a0ecSDave Kleikamp }
4436ac27a0ecSDave Kleikamp 
4437ac27a0ecSDave Kleikamp /*
4438617ba13bSMingming Cao  * ext4_write_inode()
4439ac27a0ecSDave Kleikamp  *
4440ac27a0ecSDave Kleikamp  * We are called from a few places:
4441ac27a0ecSDave Kleikamp  *
444287f7e416STheodore Ts'o  * - Within generic_file_aio_write() -> generic_write_sync() for O_SYNC files.
4443ac27a0ecSDave Kleikamp  *   Here, there will be no transaction running. We wait for any running
44444907cb7bSAnatol Pomozov  *   transaction to commit.
4445ac27a0ecSDave Kleikamp  *
444687f7e416STheodore Ts'o  * - Within flush work (sys_sync(), kupdate and such).
444787f7e416STheodore Ts'o  *   We wait on commit, if told to.
4448ac27a0ecSDave Kleikamp  *
444987f7e416STheodore Ts'o  * - Within iput_final() -> write_inode_now()
445087f7e416STheodore Ts'o  *   We wait on commit, if told to.
4451ac27a0ecSDave Kleikamp  *
4452ac27a0ecSDave Kleikamp  * In all cases it is actually safe for us to return without doing anything,
4453ac27a0ecSDave Kleikamp  * because the inode has been copied into a raw inode buffer in
445487f7e416STheodore Ts'o  * ext4_mark_inode_dirty().  This is a correctness thing for WB_SYNC_ALL
445587f7e416STheodore Ts'o  * writeback.
4456ac27a0ecSDave Kleikamp  *
4457ac27a0ecSDave Kleikamp  * Note that we are absolutely dependent upon all inode dirtiers doing the
4458ac27a0ecSDave Kleikamp  * right thing: they *must* call mark_inode_dirty() after dirtying info in
4459ac27a0ecSDave Kleikamp  * which we are interested.
4460ac27a0ecSDave Kleikamp  *
4461ac27a0ecSDave Kleikamp  * It would be a bug for them to not do this.  The code:
4462ac27a0ecSDave Kleikamp  *
4463ac27a0ecSDave Kleikamp  *	mark_inode_dirty(inode)
4464ac27a0ecSDave Kleikamp  *	stuff();
4465ac27a0ecSDave Kleikamp  *	inode->i_size = expr;
4466ac27a0ecSDave Kleikamp  *
446787f7e416STheodore Ts'o  * is in error because write_inode() could occur while `stuff()' is running,
446887f7e416STheodore Ts'o  * and the new i_size will be lost.  Plus the inode will no longer be on the
446987f7e416STheodore Ts'o  * superblock's dirty inode list.
4470ac27a0ecSDave Kleikamp  */
4471a9185b41SChristoph Hellwig int ext4_write_inode(struct inode *inode, struct writeback_control *wbc)
4472ac27a0ecSDave Kleikamp {
447391ac6f43SFrank Mayhar 	int err;
447491ac6f43SFrank Mayhar 
447587f7e416STheodore Ts'o 	if (WARN_ON_ONCE(current->flags & PF_MEMALLOC))
4476ac27a0ecSDave Kleikamp 		return 0;
4477ac27a0ecSDave Kleikamp 
447891ac6f43SFrank Mayhar 	if (EXT4_SB(inode->i_sb)->s_journal) {
4479617ba13bSMingming Cao 		if (ext4_journal_current_handle()) {
4480b38bd33aSMingming Cao 			jbd_debug(1, "called recursively, non-PF_MEMALLOC!\n");
4481ac27a0ecSDave Kleikamp 			dump_stack();
4482ac27a0ecSDave Kleikamp 			return -EIO;
4483ac27a0ecSDave Kleikamp 		}
4484ac27a0ecSDave Kleikamp 
448510542c22SJan Kara 		/*
448610542c22SJan Kara 		 * No need to force transaction in WB_SYNC_NONE mode. Also
448710542c22SJan Kara 		 * ext4_sync_fs() will force the commit after everything is
448810542c22SJan Kara 		 * written.
448910542c22SJan Kara 		 */
449010542c22SJan Kara 		if (wbc->sync_mode != WB_SYNC_ALL || wbc->for_sync)
4491ac27a0ecSDave Kleikamp 			return 0;
4492ac27a0ecSDave Kleikamp 
449391ac6f43SFrank Mayhar 		err = ext4_force_commit(inode->i_sb);
449491ac6f43SFrank Mayhar 	} else {
449591ac6f43SFrank Mayhar 		struct ext4_iloc iloc;
449691ac6f43SFrank Mayhar 
44978b472d73SCurt Wohlgemuth 		err = __ext4_get_inode_loc(inode, &iloc, 0);
449891ac6f43SFrank Mayhar 		if (err)
449991ac6f43SFrank Mayhar 			return err;
450010542c22SJan Kara 		/*
450110542c22SJan Kara 		 * sync(2) will flush the whole buffer cache. No need to do
450210542c22SJan Kara 		 * it here separately for each inode.
450310542c22SJan Kara 		 */
450410542c22SJan Kara 		if (wbc->sync_mode == WB_SYNC_ALL && !wbc->for_sync)
4505830156c7SFrank Mayhar 			sync_dirty_buffer(iloc.bh);
4506830156c7SFrank Mayhar 		if (buffer_req(iloc.bh) && !buffer_uptodate(iloc.bh)) {
4507c398eda0STheodore Ts'o 			EXT4_ERROR_INODE_BLOCK(inode, iloc.bh->b_blocknr,
4508c398eda0STheodore Ts'o 					 "IO error syncing inode");
4509830156c7SFrank Mayhar 			err = -EIO;
4510830156c7SFrank Mayhar 		}
4511fd2dd9fbSCurt Wohlgemuth 		brelse(iloc.bh);
451291ac6f43SFrank Mayhar 	}
451391ac6f43SFrank Mayhar 	return err;
4514ac27a0ecSDave Kleikamp }
4515ac27a0ecSDave Kleikamp 
4516ac27a0ecSDave Kleikamp /*
451753e87268SJan Kara  * In data=journal mode ext4_journalled_invalidatepage() may fail to invalidate
451853e87268SJan Kara  * buffers that are attached to a page stradding i_size and are undergoing
451953e87268SJan Kara  * commit. In that case we have to wait for commit to finish and try again.
452053e87268SJan Kara  */
452153e87268SJan Kara static void ext4_wait_for_tail_page_commit(struct inode *inode)
452253e87268SJan Kara {
452353e87268SJan Kara 	struct page *page;
452453e87268SJan Kara 	unsigned offset;
452553e87268SJan Kara 	journal_t *journal = EXT4_SB(inode->i_sb)->s_journal;
452653e87268SJan Kara 	tid_t commit_tid = 0;
452753e87268SJan Kara 	int ret;
452853e87268SJan Kara 
452953e87268SJan Kara 	offset = inode->i_size & (PAGE_CACHE_SIZE - 1);
453053e87268SJan Kara 	/*
453153e87268SJan Kara 	 * All buffers in the last page remain valid? Then there's nothing to
453253e87268SJan Kara 	 * do. We do the check mainly to optimize the common PAGE_CACHE_SIZE ==
453353e87268SJan Kara 	 * blocksize case
453453e87268SJan Kara 	 */
453553e87268SJan Kara 	if (offset > PAGE_CACHE_SIZE - (1 << inode->i_blkbits))
453653e87268SJan Kara 		return;
453753e87268SJan Kara 	while (1) {
453853e87268SJan Kara 		page = find_lock_page(inode->i_mapping,
453953e87268SJan Kara 				      inode->i_size >> PAGE_CACHE_SHIFT);
454053e87268SJan Kara 		if (!page)
454153e87268SJan Kara 			return;
4542ca99fdd2SLukas Czerner 		ret = __ext4_journalled_invalidatepage(page, offset,
4543ca99fdd2SLukas Czerner 						PAGE_CACHE_SIZE - offset);
454453e87268SJan Kara 		unlock_page(page);
454553e87268SJan Kara 		page_cache_release(page);
454653e87268SJan Kara 		if (ret != -EBUSY)
454753e87268SJan Kara 			return;
454853e87268SJan Kara 		commit_tid = 0;
454953e87268SJan Kara 		read_lock(&journal->j_state_lock);
455053e87268SJan Kara 		if (journal->j_committing_transaction)
455153e87268SJan Kara 			commit_tid = journal->j_committing_transaction->t_tid;
455253e87268SJan Kara 		read_unlock(&journal->j_state_lock);
455353e87268SJan Kara 		if (commit_tid)
455453e87268SJan Kara 			jbd2_log_wait_commit(journal, commit_tid);
455553e87268SJan Kara 	}
455653e87268SJan Kara }
455753e87268SJan Kara 
455853e87268SJan Kara /*
4559617ba13bSMingming Cao  * ext4_setattr()
4560ac27a0ecSDave Kleikamp  *
4561ac27a0ecSDave Kleikamp  * Called from notify_change.
4562ac27a0ecSDave Kleikamp  *
4563ac27a0ecSDave Kleikamp  * We want to trap VFS attempts to truncate the file as soon as
4564ac27a0ecSDave Kleikamp  * possible.  In particular, we want to make sure that when the VFS
4565ac27a0ecSDave Kleikamp  * shrinks i_size, we put the inode on the orphan list and modify
4566ac27a0ecSDave Kleikamp  * i_disksize immediately, so that during the subsequent flushing of
4567ac27a0ecSDave Kleikamp  * dirty pages and freeing of disk blocks, we can guarantee that any
4568ac27a0ecSDave Kleikamp  * commit will leave the blocks being flushed in an unused state on
4569ac27a0ecSDave Kleikamp  * disk.  (On recovery, the inode will get truncated and the blocks will
4570ac27a0ecSDave Kleikamp  * be freed, so we have a strong guarantee that no future commit will
4571ac27a0ecSDave Kleikamp  * leave these blocks visible to the user.)
4572ac27a0ecSDave Kleikamp  *
4573678aaf48SJan Kara  * Another thing we have to assure is that if we are in ordered mode
4574678aaf48SJan Kara  * and inode is still attached to the committing transaction, we must
4575678aaf48SJan Kara  * we start writeout of all the dirty pages which are being truncated.
4576678aaf48SJan Kara  * This way we are sure that all the data written in the previous
4577678aaf48SJan Kara  * transaction are already on disk (truncate waits for pages under
4578678aaf48SJan Kara  * writeback).
4579678aaf48SJan Kara  *
4580678aaf48SJan Kara  * Called with inode->i_mutex down.
4581ac27a0ecSDave Kleikamp  */
4582617ba13bSMingming Cao int ext4_setattr(struct dentry *dentry, struct iattr *attr)
4583ac27a0ecSDave Kleikamp {
4584ac27a0ecSDave Kleikamp 	struct inode *inode = dentry->d_inode;
4585ac27a0ecSDave Kleikamp 	int error, rc = 0;
45863d287de3SDmitry Monakhov 	int orphan = 0;
4587ac27a0ecSDave Kleikamp 	const unsigned int ia_valid = attr->ia_valid;
4588ac27a0ecSDave Kleikamp 
4589ac27a0ecSDave Kleikamp 	error = inode_change_ok(inode, attr);
4590ac27a0ecSDave Kleikamp 	if (error)
4591ac27a0ecSDave Kleikamp 		return error;
4592ac27a0ecSDave Kleikamp 
459312755627SDmitry Monakhov 	if (is_quota_modification(inode, attr))
4594871a2931SChristoph Hellwig 		dquot_initialize(inode);
459508cefc7aSEric W. Biederman 	if ((ia_valid & ATTR_UID && !uid_eq(attr->ia_uid, inode->i_uid)) ||
459608cefc7aSEric W. Biederman 	    (ia_valid & ATTR_GID && !gid_eq(attr->ia_gid, inode->i_gid))) {
4597ac27a0ecSDave Kleikamp 		handle_t *handle;
4598ac27a0ecSDave Kleikamp 
4599ac27a0ecSDave Kleikamp 		/* (user+group)*(old+new) structure, inode write (sb,
4600ac27a0ecSDave Kleikamp 		 * inode block, ? - but truncate inode update has it) */
46019924a92aSTheodore Ts'o 		handle = ext4_journal_start(inode, EXT4_HT_QUOTA,
46029924a92aSTheodore Ts'o 			(EXT4_MAXQUOTAS_INIT_BLOCKS(inode->i_sb) +
4603194074acSDmitry Monakhov 			 EXT4_MAXQUOTAS_DEL_BLOCKS(inode->i_sb)) + 3);
4604ac27a0ecSDave Kleikamp 		if (IS_ERR(handle)) {
4605ac27a0ecSDave Kleikamp 			error = PTR_ERR(handle);
4606ac27a0ecSDave Kleikamp 			goto err_out;
4607ac27a0ecSDave Kleikamp 		}
4608b43fa828SChristoph Hellwig 		error = dquot_transfer(inode, attr);
4609ac27a0ecSDave Kleikamp 		if (error) {
4610617ba13bSMingming Cao 			ext4_journal_stop(handle);
4611ac27a0ecSDave Kleikamp 			return error;
4612ac27a0ecSDave Kleikamp 		}
4613ac27a0ecSDave Kleikamp 		/* Update corresponding info in inode so that everything is in
4614ac27a0ecSDave Kleikamp 		 * one transaction */
4615ac27a0ecSDave Kleikamp 		if (attr->ia_valid & ATTR_UID)
4616ac27a0ecSDave Kleikamp 			inode->i_uid = attr->ia_uid;
4617ac27a0ecSDave Kleikamp 		if (attr->ia_valid & ATTR_GID)
4618ac27a0ecSDave Kleikamp 			inode->i_gid = attr->ia_gid;
4619617ba13bSMingming Cao 		error = ext4_mark_inode_dirty(handle, inode);
4620617ba13bSMingming Cao 		ext4_journal_stop(handle);
4621ac27a0ecSDave Kleikamp 	}
4622ac27a0ecSDave Kleikamp 
46235208386cSJan Kara 	if (attr->ia_valid & ATTR_SIZE && attr->ia_size != inode->i_size) {
46245208386cSJan Kara 		handle_t *handle;
4625562c72aaSChristoph Hellwig 
462612e9b892SDmitry Monakhov 		if (!(ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS))) {
4627e2b46574SEric Sandeen 			struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb);
4628e2b46574SEric Sandeen 
46290c095c7fSTheodore Ts'o 			if (attr->ia_size > sbi->s_bitmap_maxbytes)
46300c095c7fSTheodore Ts'o 				return -EFBIG;
4631e2b46574SEric Sandeen 		}
4632dff6efc3SChristoph Hellwig 
4633dff6efc3SChristoph Hellwig 		if (IS_I_VERSION(inode) && attr->ia_size != inode->i_size)
4634dff6efc3SChristoph Hellwig 			inode_inc_iversion(inode);
4635dff6efc3SChristoph Hellwig 
4636ac27a0ecSDave Kleikamp 		if (S_ISREG(inode->i_mode) &&
4637072bd7eaSTheodore Ts'o 		    (attr->ia_size < inode->i_size)) {
46385208386cSJan Kara 			if (ext4_should_order_data(inode)) {
46395208386cSJan Kara 				error = ext4_begin_ordered_truncate(inode,
46405208386cSJan Kara 							    attr->ia_size);
46415208386cSJan Kara 				if (error)
46425208386cSJan Kara 					goto err_out;
46435208386cSJan Kara 			}
46449924a92aSTheodore Ts'o 			handle = ext4_journal_start(inode, EXT4_HT_INODE, 3);
4645ac27a0ecSDave Kleikamp 			if (IS_ERR(handle)) {
4646ac27a0ecSDave Kleikamp 				error = PTR_ERR(handle);
4647ac27a0ecSDave Kleikamp 				goto err_out;
4648ac27a0ecSDave Kleikamp 			}
46493d287de3SDmitry Monakhov 			if (ext4_handle_valid(handle)) {
4650617ba13bSMingming Cao 				error = ext4_orphan_add(handle, inode);
46513d287de3SDmitry Monakhov 				orphan = 1;
46523d287de3SDmitry Monakhov 			}
465390e775b7SJan Kara 			down_write(&EXT4_I(inode)->i_data_sem);
4654617ba13bSMingming Cao 			EXT4_I(inode)->i_disksize = attr->ia_size;
4655617ba13bSMingming Cao 			rc = ext4_mark_inode_dirty(handle, inode);
4656ac27a0ecSDave Kleikamp 			if (!error)
4657ac27a0ecSDave Kleikamp 				error = rc;
465890e775b7SJan Kara 			/*
465990e775b7SJan Kara 			 * We have to update i_size under i_data_sem together
466090e775b7SJan Kara 			 * with i_disksize to avoid races with writeback code
466190e775b7SJan Kara 			 * running ext4_wb_update_i_disksize().
466290e775b7SJan Kara 			 */
466390e775b7SJan Kara 			if (!error)
466490e775b7SJan Kara 				i_size_write(inode, attr->ia_size);
466590e775b7SJan Kara 			up_write(&EXT4_I(inode)->i_data_sem);
4666617ba13bSMingming Cao 			ext4_journal_stop(handle);
4667678aaf48SJan Kara 			if (error) {
4668678aaf48SJan Kara 				ext4_orphan_del(NULL, inode);
4669678aaf48SJan Kara 				goto err_out;
4670678aaf48SJan Kara 			}
467190e775b7SJan Kara 		} else
467253e87268SJan Kara 			i_size_write(inode, attr->ia_size);
467390e775b7SJan Kara 
467453e87268SJan Kara 		/*
467553e87268SJan Kara 		 * Blocks are going to be removed from the inode. Wait
467653e87268SJan Kara 		 * for dio in flight.  Temporarily disable
467753e87268SJan Kara 		 * dioread_nolock to prevent livelock.
467853e87268SJan Kara 		 */
46791b65007eSDmitry Monakhov 		if (orphan) {
468053e87268SJan Kara 			if (!ext4_should_journal_data(inode)) {
46811b65007eSDmitry Monakhov 				ext4_inode_block_unlocked_dio(inode);
46821c9114f9SDmitry Monakhov 				inode_dio_wait(inode);
46831b65007eSDmitry Monakhov 				ext4_inode_resume_unlocked_dio(inode);
468453e87268SJan Kara 			} else
468553e87268SJan Kara 				ext4_wait_for_tail_page_commit(inode);
46861b65007eSDmitry Monakhov 		}
468753e87268SJan Kara 		/*
468853e87268SJan Kara 		 * Truncate pagecache after we've waited for commit
468953e87268SJan Kara 		 * in data=journal mode to make pages freeable.
469053e87268SJan Kara 		 */
46917caef267SKirill A. Shutemov 			truncate_pagecache(inode, inode->i_size);
46921c9114f9SDmitry Monakhov 	}
46935208386cSJan Kara 	/*
46945208386cSJan Kara 	 * We want to call ext4_truncate() even if attr->ia_size ==
46955208386cSJan Kara 	 * inode->i_size for cases like truncation of fallocated space
46965208386cSJan Kara 	 */
46975208386cSJan Kara 	if (attr->ia_valid & ATTR_SIZE)
4698072bd7eaSTheodore Ts'o 		ext4_truncate(inode);
4699ac27a0ecSDave Kleikamp 
47001025774cSChristoph Hellwig 	if (!rc) {
47011025774cSChristoph Hellwig 		setattr_copy(inode, attr);
47021025774cSChristoph Hellwig 		mark_inode_dirty(inode);
47031025774cSChristoph Hellwig 	}
47041025774cSChristoph Hellwig 
47051025774cSChristoph Hellwig 	/*
47061025774cSChristoph Hellwig 	 * If the call to ext4_truncate failed to get a transaction handle at
47071025774cSChristoph Hellwig 	 * all, we need to clean up the in-core orphan list manually.
47081025774cSChristoph Hellwig 	 */
47093d287de3SDmitry Monakhov 	if (orphan && inode->i_nlink)
4710617ba13bSMingming Cao 		ext4_orphan_del(NULL, inode);
4711ac27a0ecSDave Kleikamp 
4712ac27a0ecSDave Kleikamp 	if (!rc && (ia_valid & ATTR_MODE))
471364e178a7SChristoph Hellwig 		rc = posix_acl_chmod(inode, inode->i_mode);
4714ac27a0ecSDave Kleikamp 
4715ac27a0ecSDave Kleikamp err_out:
4716617ba13bSMingming Cao 	ext4_std_error(inode->i_sb, error);
4717ac27a0ecSDave Kleikamp 	if (!error)
4718ac27a0ecSDave Kleikamp 		error = rc;
4719ac27a0ecSDave Kleikamp 	return error;
4720ac27a0ecSDave Kleikamp }
4721ac27a0ecSDave Kleikamp 
47223e3398a0SMingming Cao int ext4_getattr(struct vfsmount *mnt, struct dentry *dentry,
47233e3398a0SMingming Cao 		 struct kstat *stat)
47243e3398a0SMingming Cao {
47253e3398a0SMingming Cao 	struct inode *inode;
47268af8eeccSJan Kara 	unsigned long long delalloc_blocks;
47273e3398a0SMingming Cao 
47283e3398a0SMingming Cao 	inode = dentry->d_inode;
47293e3398a0SMingming Cao 	generic_fillattr(inode, stat);
47303e3398a0SMingming Cao 
47313e3398a0SMingming Cao 	/*
47329206c561SAndreas Dilger 	 * If there is inline data in the inode, the inode will normally not
47339206c561SAndreas Dilger 	 * have data blocks allocated (it may have an external xattr block).
47349206c561SAndreas Dilger 	 * Report at least one sector for such files, so tools like tar, rsync,
47359206c561SAndreas Dilger 	 * others doen't incorrectly think the file is completely sparse.
47369206c561SAndreas Dilger 	 */
47379206c561SAndreas Dilger 	if (unlikely(ext4_has_inline_data(inode)))
47389206c561SAndreas Dilger 		stat->blocks += (stat->size + 511) >> 9;
47399206c561SAndreas Dilger 
47409206c561SAndreas Dilger 	/*
47413e3398a0SMingming Cao 	 * We can't update i_blocks if the block allocation is delayed
47423e3398a0SMingming Cao 	 * otherwise in the case of system crash before the real block
47433e3398a0SMingming Cao 	 * allocation is done, we will have i_blocks inconsistent with
47443e3398a0SMingming Cao 	 * on-disk file blocks.
47453e3398a0SMingming Cao 	 * We always keep i_blocks updated together with real
47463e3398a0SMingming Cao 	 * allocation. But to not confuse with user, stat
47473e3398a0SMingming Cao 	 * will return the blocks that include the delayed allocation
47483e3398a0SMingming Cao 	 * blocks for this file.
47493e3398a0SMingming Cao 	 */
475096607551STao Ma 	delalloc_blocks = EXT4_C2B(EXT4_SB(inode->i_sb),
475196607551STao Ma 				   EXT4_I(inode)->i_reserved_data_blocks);
47528af8eeccSJan Kara 	stat->blocks += delalloc_blocks << (inode->i_sb->s_blocksize_bits - 9);
47533e3398a0SMingming Cao 	return 0;
47543e3398a0SMingming Cao }
4755ac27a0ecSDave Kleikamp 
4756fffb2739SJan Kara static int ext4_index_trans_blocks(struct inode *inode, int lblocks,
4757fffb2739SJan Kara 				   int pextents)
4758a02908f1SMingming Cao {
475912e9b892SDmitry Monakhov 	if (!(ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS)))
4760fffb2739SJan Kara 		return ext4_ind_trans_blocks(inode, lblocks);
4761fffb2739SJan Kara 	return ext4_ext_index_trans_blocks(inode, pextents);
4762a02908f1SMingming Cao }
4763ac51d837STheodore Ts'o 
4764a02908f1SMingming Cao /*
4765a02908f1SMingming Cao  * Account for index blocks, block groups bitmaps and block group
4766a02908f1SMingming Cao  * descriptor blocks if modify datablocks and index blocks
4767a02908f1SMingming Cao  * worse case, the indexs blocks spread over different block groups
4768a02908f1SMingming Cao  *
4769a02908f1SMingming Cao  * If datablocks are discontiguous, they are possible to spread over
47704907cb7bSAnatol Pomozov  * different block groups too. If they are contiguous, with flexbg,
4771a02908f1SMingming Cao  * they could still across block group boundary.
4772a02908f1SMingming Cao  *
4773a02908f1SMingming Cao  * Also account for superblock, inode, quota and xattr blocks
4774a02908f1SMingming Cao  */
4775fffb2739SJan Kara static int ext4_meta_trans_blocks(struct inode *inode, int lblocks,
4776fffb2739SJan Kara 				  int pextents)
4777a02908f1SMingming Cao {
47788df9675fSTheodore Ts'o 	ext4_group_t groups, ngroups = ext4_get_groups_count(inode->i_sb);
47798df9675fSTheodore Ts'o 	int gdpblocks;
4780a02908f1SMingming Cao 	int idxblocks;
4781a02908f1SMingming Cao 	int ret = 0;
4782a02908f1SMingming Cao 
4783a02908f1SMingming Cao 	/*
4784fffb2739SJan Kara 	 * How many index blocks need to touch to map @lblocks logical blocks
4785fffb2739SJan Kara 	 * to @pextents physical extents?
4786a02908f1SMingming Cao 	 */
4787fffb2739SJan Kara 	idxblocks = ext4_index_trans_blocks(inode, lblocks, pextents);
4788a02908f1SMingming Cao 
4789a02908f1SMingming Cao 	ret = idxblocks;
4790a02908f1SMingming Cao 
4791a02908f1SMingming Cao 	/*
4792a02908f1SMingming Cao 	 * Now let's see how many group bitmaps and group descriptors need
4793a02908f1SMingming Cao 	 * to account
4794a02908f1SMingming Cao 	 */
4795fffb2739SJan Kara 	groups = idxblocks + pextents;
4796a02908f1SMingming Cao 	gdpblocks = groups;
47978df9675fSTheodore Ts'o 	if (groups > ngroups)
47988df9675fSTheodore Ts'o 		groups = ngroups;
4799a02908f1SMingming Cao 	if (groups > EXT4_SB(inode->i_sb)->s_gdb_count)
4800a02908f1SMingming Cao 		gdpblocks = EXT4_SB(inode->i_sb)->s_gdb_count;
4801a02908f1SMingming Cao 
4802a02908f1SMingming Cao 	/* bitmaps and block group descriptor blocks */
4803a02908f1SMingming Cao 	ret += groups + gdpblocks;
4804a02908f1SMingming Cao 
4805a02908f1SMingming Cao 	/* Blocks for super block, inode, quota and xattr blocks */
4806a02908f1SMingming Cao 	ret += EXT4_META_TRANS_BLOCKS(inode->i_sb);
4807ac27a0ecSDave Kleikamp 
4808ac27a0ecSDave Kleikamp 	return ret;
4809ac27a0ecSDave Kleikamp }
4810ac27a0ecSDave Kleikamp 
4811ac27a0ecSDave Kleikamp /*
481225985edcSLucas De Marchi  * Calculate the total number of credits to reserve to fit
4813f3bd1f3fSMingming Cao  * the modification of a single pages into a single transaction,
4814f3bd1f3fSMingming Cao  * which may include multiple chunks of block allocations.
4815a02908f1SMingming Cao  *
4816525f4ed8SMingming Cao  * This could be called via ext4_write_begin()
4817a02908f1SMingming Cao  *
4818525f4ed8SMingming Cao  * We need to consider the worse case, when
4819a02908f1SMingming Cao  * one new block per extent.
4820a02908f1SMingming Cao  */
4821a02908f1SMingming Cao int ext4_writepage_trans_blocks(struct inode *inode)
4822a02908f1SMingming Cao {
4823a02908f1SMingming Cao 	int bpp = ext4_journal_blocks_per_page(inode);
4824a02908f1SMingming Cao 	int ret;
4825a02908f1SMingming Cao 
4826fffb2739SJan Kara 	ret = ext4_meta_trans_blocks(inode, bpp, bpp);
4827a02908f1SMingming Cao 
4828a02908f1SMingming Cao 	/* Account for data blocks for journalled mode */
4829a02908f1SMingming Cao 	if (ext4_should_journal_data(inode))
4830a02908f1SMingming Cao 		ret += bpp;
4831a02908f1SMingming Cao 	return ret;
4832a02908f1SMingming Cao }
4833f3bd1f3fSMingming Cao 
4834f3bd1f3fSMingming Cao /*
4835f3bd1f3fSMingming Cao  * Calculate the journal credits for a chunk of data modification.
4836f3bd1f3fSMingming Cao  *
4837f3bd1f3fSMingming Cao  * This is called from DIO, fallocate or whoever calling
483879e83036SEric Sandeen  * ext4_map_blocks() to map/allocate a chunk of contiguous disk blocks.
4839f3bd1f3fSMingming Cao  *
4840f3bd1f3fSMingming Cao  * journal buffers for data blocks are not included here, as DIO
4841f3bd1f3fSMingming Cao  * and fallocate do no need to journal data buffers.
4842f3bd1f3fSMingming Cao  */
4843f3bd1f3fSMingming Cao int ext4_chunk_trans_blocks(struct inode *inode, int nrblocks)
4844f3bd1f3fSMingming Cao {
4845f3bd1f3fSMingming Cao 	return ext4_meta_trans_blocks(inode, nrblocks, 1);
4846f3bd1f3fSMingming Cao }
4847f3bd1f3fSMingming Cao 
4848a02908f1SMingming Cao /*
4849617ba13bSMingming Cao  * The caller must have previously called ext4_reserve_inode_write().
4850ac27a0ecSDave Kleikamp  * Give this, we know that the caller already has write access to iloc->bh.
4851ac27a0ecSDave Kleikamp  */
4852617ba13bSMingming Cao int ext4_mark_iloc_dirty(handle_t *handle,
4853617ba13bSMingming Cao 			 struct inode *inode, struct ext4_iloc *iloc)
4854ac27a0ecSDave Kleikamp {
4855ac27a0ecSDave Kleikamp 	int err = 0;
4856ac27a0ecSDave Kleikamp 
4857c64db50eSTheodore Ts'o 	if (IS_I_VERSION(inode))
485825ec56b5SJean Noel Cordenner 		inode_inc_iversion(inode);
485925ec56b5SJean Noel Cordenner 
4860ac27a0ecSDave Kleikamp 	/* the do_update_inode consumes one bh->b_count */
4861ac27a0ecSDave Kleikamp 	get_bh(iloc->bh);
4862ac27a0ecSDave Kleikamp 
4863dab291afSMingming Cao 	/* ext4_do_update_inode() does jbd2_journal_dirty_metadata */
4864830156c7SFrank Mayhar 	err = ext4_do_update_inode(handle, inode, iloc);
4865ac27a0ecSDave Kleikamp 	put_bh(iloc->bh);
4866ac27a0ecSDave Kleikamp 	return err;
4867ac27a0ecSDave Kleikamp }
4868ac27a0ecSDave Kleikamp 
4869ac27a0ecSDave Kleikamp /*
4870ac27a0ecSDave Kleikamp  * On success, We end up with an outstanding reference count against
4871ac27a0ecSDave Kleikamp  * iloc->bh.  This _must_ be cleaned up later.
4872ac27a0ecSDave Kleikamp  */
4873ac27a0ecSDave Kleikamp 
4874ac27a0ecSDave Kleikamp int
4875617ba13bSMingming Cao ext4_reserve_inode_write(handle_t *handle, struct inode *inode,
4876617ba13bSMingming Cao 			 struct ext4_iloc *iloc)
4877ac27a0ecSDave Kleikamp {
48780390131bSFrank Mayhar 	int err;
48790390131bSFrank Mayhar 
4880617ba13bSMingming Cao 	err = ext4_get_inode_loc(inode, iloc);
4881ac27a0ecSDave Kleikamp 	if (!err) {
4882ac27a0ecSDave Kleikamp 		BUFFER_TRACE(iloc->bh, "get_write_access");
4883617ba13bSMingming Cao 		err = ext4_journal_get_write_access(handle, iloc->bh);
4884ac27a0ecSDave Kleikamp 		if (err) {
4885ac27a0ecSDave Kleikamp 			brelse(iloc->bh);
4886ac27a0ecSDave Kleikamp 			iloc->bh = NULL;
4887ac27a0ecSDave Kleikamp 		}
4888ac27a0ecSDave Kleikamp 	}
4889617ba13bSMingming Cao 	ext4_std_error(inode->i_sb, err);
4890ac27a0ecSDave Kleikamp 	return err;
4891ac27a0ecSDave Kleikamp }
4892ac27a0ecSDave Kleikamp 
4893ac27a0ecSDave Kleikamp /*
48946dd4ee7cSKalpak Shah  * Expand an inode by new_extra_isize bytes.
48956dd4ee7cSKalpak Shah  * Returns 0 on success or negative error number on failure.
48966dd4ee7cSKalpak Shah  */
48971d03ec98SAneesh Kumar K.V static int ext4_expand_extra_isize(struct inode *inode,
48981d03ec98SAneesh Kumar K.V 				   unsigned int new_extra_isize,
48991d03ec98SAneesh Kumar K.V 				   struct ext4_iloc iloc,
49001d03ec98SAneesh Kumar K.V 				   handle_t *handle)
49016dd4ee7cSKalpak Shah {
49026dd4ee7cSKalpak Shah 	struct ext4_inode *raw_inode;
49036dd4ee7cSKalpak Shah 	struct ext4_xattr_ibody_header *header;
49046dd4ee7cSKalpak Shah 
49056dd4ee7cSKalpak Shah 	if (EXT4_I(inode)->i_extra_isize >= new_extra_isize)
49066dd4ee7cSKalpak Shah 		return 0;
49076dd4ee7cSKalpak Shah 
49086dd4ee7cSKalpak Shah 	raw_inode = ext4_raw_inode(&iloc);
49096dd4ee7cSKalpak Shah 
49106dd4ee7cSKalpak Shah 	header = IHDR(inode, raw_inode);
49116dd4ee7cSKalpak Shah 
49126dd4ee7cSKalpak Shah 	/* No extended attributes present */
491319f5fb7aSTheodore Ts'o 	if (!ext4_test_inode_state(inode, EXT4_STATE_XATTR) ||
49146dd4ee7cSKalpak Shah 	    header->h_magic != cpu_to_le32(EXT4_XATTR_MAGIC)) {
49156dd4ee7cSKalpak Shah 		memset((void *)raw_inode + EXT4_GOOD_OLD_INODE_SIZE, 0,
49166dd4ee7cSKalpak Shah 			new_extra_isize);
49176dd4ee7cSKalpak Shah 		EXT4_I(inode)->i_extra_isize = new_extra_isize;
49186dd4ee7cSKalpak Shah 		return 0;
49196dd4ee7cSKalpak Shah 	}
49206dd4ee7cSKalpak Shah 
49216dd4ee7cSKalpak Shah 	/* try to expand with EAs present */
49226dd4ee7cSKalpak Shah 	return ext4_expand_extra_isize_ea(inode, new_extra_isize,
49236dd4ee7cSKalpak Shah 					  raw_inode, handle);
49246dd4ee7cSKalpak Shah }
49256dd4ee7cSKalpak Shah 
49266dd4ee7cSKalpak Shah /*
4927ac27a0ecSDave Kleikamp  * What we do here is to mark the in-core inode as clean with respect to inode
4928ac27a0ecSDave Kleikamp  * dirtiness (it may still be data-dirty).
4929ac27a0ecSDave Kleikamp  * This means that the in-core inode may be reaped by prune_icache
4930ac27a0ecSDave Kleikamp  * without having to perform any I/O.  This is a very good thing,
4931ac27a0ecSDave Kleikamp  * because *any* task may call prune_icache - even ones which
4932ac27a0ecSDave Kleikamp  * have a transaction open against a different journal.
4933ac27a0ecSDave Kleikamp  *
4934ac27a0ecSDave Kleikamp  * Is this cheating?  Not really.  Sure, we haven't written the
4935ac27a0ecSDave Kleikamp  * inode out, but prune_icache isn't a user-visible syncing function.
4936ac27a0ecSDave Kleikamp  * Whenever the user wants stuff synced (sys_sync, sys_msync, sys_fsync)
4937ac27a0ecSDave Kleikamp  * we start and wait on commits.
4938ac27a0ecSDave Kleikamp  */
4939617ba13bSMingming Cao int ext4_mark_inode_dirty(handle_t *handle, struct inode *inode)
4940ac27a0ecSDave Kleikamp {
4941617ba13bSMingming Cao 	struct ext4_iloc iloc;
49426dd4ee7cSKalpak Shah 	struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb);
49436dd4ee7cSKalpak Shah 	static unsigned int mnt_count;
49446dd4ee7cSKalpak Shah 	int err, ret;
4945ac27a0ecSDave Kleikamp 
4946ac27a0ecSDave Kleikamp 	might_sleep();
49477ff9c073STheodore Ts'o 	trace_ext4_mark_inode_dirty(inode, _RET_IP_);
4948617ba13bSMingming Cao 	err = ext4_reserve_inode_write(handle, inode, &iloc);
49490390131bSFrank Mayhar 	if (ext4_handle_valid(handle) &&
49500390131bSFrank Mayhar 	    EXT4_I(inode)->i_extra_isize < sbi->s_want_extra_isize &&
495119f5fb7aSTheodore Ts'o 	    !ext4_test_inode_state(inode, EXT4_STATE_NO_EXPAND)) {
49526dd4ee7cSKalpak Shah 		/*
49536dd4ee7cSKalpak Shah 		 * We need extra buffer credits since we may write into EA block
49546dd4ee7cSKalpak Shah 		 * with this same handle. If journal_extend fails, then it will
49556dd4ee7cSKalpak Shah 		 * only result in a minor loss of functionality for that inode.
49566dd4ee7cSKalpak Shah 		 * If this is felt to be critical, then e2fsck should be run to
49576dd4ee7cSKalpak Shah 		 * force a large enough s_min_extra_isize.
49586dd4ee7cSKalpak Shah 		 */
49596dd4ee7cSKalpak Shah 		if ((jbd2_journal_extend(handle,
49606dd4ee7cSKalpak Shah 			     EXT4_DATA_TRANS_BLOCKS(inode->i_sb))) == 0) {
49616dd4ee7cSKalpak Shah 			ret = ext4_expand_extra_isize(inode,
49626dd4ee7cSKalpak Shah 						      sbi->s_want_extra_isize,
49636dd4ee7cSKalpak Shah 						      iloc, handle);
49646dd4ee7cSKalpak Shah 			if (ret) {
496519f5fb7aSTheodore Ts'o 				ext4_set_inode_state(inode,
496619f5fb7aSTheodore Ts'o 						     EXT4_STATE_NO_EXPAND);
4967c1bddad9SAneesh Kumar K.V 				if (mnt_count !=
4968c1bddad9SAneesh Kumar K.V 					le16_to_cpu(sbi->s_es->s_mnt_count)) {
496912062dddSEric Sandeen 					ext4_warning(inode->i_sb,
49706dd4ee7cSKalpak Shah 					"Unable to expand inode %lu. Delete"
49716dd4ee7cSKalpak Shah 					" some EAs or run e2fsck.",
49726dd4ee7cSKalpak Shah 					inode->i_ino);
4973c1bddad9SAneesh Kumar K.V 					mnt_count =
4974c1bddad9SAneesh Kumar K.V 					  le16_to_cpu(sbi->s_es->s_mnt_count);
49756dd4ee7cSKalpak Shah 				}
49766dd4ee7cSKalpak Shah 			}
49776dd4ee7cSKalpak Shah 		}
49786dd4ee7cSKalpak Shah 	}
4979ac27a0ecSDave Kleikamp 	if (!err)
4980617ba13bSMingming Cao 		err = ext4_mark_iloc_dirty(handle, inode, &iloc);
4981ac27a0ecSDave Kleikamp 	return err;
4982ac27a0ecSDave Kleikamp }
4983ac27a0ecSDave Kleikamp 
4984ac27a0ecSDave Kleikamp /*
4985617ba13bSMingming Cao  * ext4_dirty_inode() is called from __mark_inode_dirty()
4986ac27a0ecSDave Kleikamp  *
4987ac27a0ecSDave Kleikamp  * We're really interested in the case where a file is being extended.
4988ac27a0ecSDave Kleikamp  * i_size has been changed by generic_commit_write() and we thus need
4989ac27a0ecSDave Kleikamp  * to include the updated inode in the current transaction.
4990ac27a0ecSDave Kleikamp  *
49915dd4056dSChristoph Hellwig  * Also, dquot_alloc_block() will always dirty the inode when blocks
4992ac27a0ecSDave Kleikamp  * are allocated to the file.
4993ac27a0ecSDave Kleikamp  *
4994ac27a0ecSDave Kleikamp  * If the inode is marked synchronous, we don't honour that here - doing
4995ac27a0ecSDave Kleikamp  * so would cause a commit on atime updates, which we don't bother doing.
4996ac27a0ecSDave Kleikamp  * We handle synchronous inodes at the highest possible level.
4997ac27a0ecSDave Kleikamp  */
4998aa385729SChristoph Hellwig void ext4_dirty_inode(struct inode *inode, int flags)
4999ac27a0ecSDave Kleikamp {
5000ac27a0ecSDave Kleikamp 	handle_t *handle;
5001ac27a0ecSDave Kleikamp 
50029924a92aSTheodore Ts'o 	handle = ext4_journal_start(inode, EXT4_HT_INODE, 2);
5003ac27a0ecSDave Kleikamp 	if (IS_ERR(handle))
5004ac27a0ecSDave Kleikamp 		goto out;
5005f3dc272fSCurt Wohlgemuth 
5006617ba13bSMingming Cao 	ext4_mark_inode_dirty(handle, inode);
5007f3dc272fSCurt Wohlgemuth 
5008617ba13bSMingming Cao 	ext4_journal_stop(handle);
5009ac27a0ecSDave Kleikamp out:
5010ac27a0ecSDave Kleikamp 	return;
5011ac27a0ecSDave Kleikamp }
5012ac27a0ecSDave Kleikamp 
5013ac27a0ecSDave Kleikamp #if 0
5014ac27a0ecSDave Kleikamp /*
5015ac27a0ecSDave Kleikamp  * Bind an inode's backing buffer_head into this transaction, to prevent
5016ac27a0ecSDave Kleikamp  * it from being flushed to disk early.  Unlike
5017617ba13bSMingming Cao  * ext4_reserve_inode_write, this leaves behind no bh reference and
5018ac27a0ecSDave Kleikamp  * returns no iloc structure, so the caller needs to repeat the iloc
5019ac27a0ecSDave Kleikamp  * lookup to mark the inode dirty later.
5020ac27a0ecSDave Kleikamp  */
5021617ba13bSMingming Cao static int ext4_pin_inode(handle_t *handle, struct inode *inode)
5022ac27a0ecSDave Kleikamp {
5023617ba13bSMingming Cao 	struct ext4_iloc iloc;
5024ac27a0ecSDave Kleikamp 
5025ac27a0ecSDave Kleikamp 	int err = 0;
5026ac27a0ecSDave Kleikamp 	if (handle) {
5027617ba13bSMingming Cao 		err = ext4_get_inode_loc(inode, &iloc);
5028ac27a0ecSDave Kleikamp 		if (!err) {
5029ac27a0ecSDave Kleikamp 			BUFFER_TRACE(iloc.bh, "get_write_access");
5030dab291afSMingming Cao 			err = jbd2_journal_get_write_access(handle, iloc.bh);
5031ac27a0ecSDave Kleikamp 			if (!err)
50320390131bSFrank Mayhar 				err = ext4_handle_dirty_metadata(handle,
503373b50c1cSCurt Wohlgemuth 								 NULL,
5034ac27a0ecSDave Kleikamp 								 iloc.bh);
5035ac27a0ecSDave Kleikamp 			brelse(iloc.bh);
5036ac27a0ecSDave Kleikamp 		}
5037ac27a0ecSDave Kleikamp 	}
5038617ba13bSMingming Cao 	ext4_std_error(inode->i_sb, err);
5039ac27a0ecSDave Kleikamp 	return err;
5040ac27a0ecSDave Kleikamp }
5041ac27a0ecSDave Kleikamp #endif
5042ac27a0ecSDave Kleikamp 
5043617ba13bSMingming Cao int ext4_change_inode_journal_flag(struct inode *inode, int val)
5044ac27a0ecSDave Kleikamp {
5045ac27a0ecSDave Kleikamp 	journal_t *journal;
5046ac27a0ecSDave Kleikamp 	handle_t *handle;
5047ac27a0ecSDave Kleikamp 	int err;
5048ac27a0ecSDave Kleikamp 
5049ac27a0ecSDave Kleikamp 	/*
5050ac27a0ecSDave Kleikamp 	 * We have to be very careful here: changing a data block's
5051ac27a0ecSDave Kleikamp 	 * journaling status dynamically is dangerous.  If we write a
5052ac27a0ecSDave Kleikamp 	 * data block to the journal, change the status and then delete
5053ac27a0ecSDave Kleikamp 	 * that block, we risk forgetting to revoke the old log record
5054ac27a0ecSDave Kleikamp 	 * from the journal and so a subsequent replay can corrupt data.
5055ac27a0ecSDave Kleikamp 	 * So, first we make sure that the journal is empty and that
5056ac27a0ecSDave Kleikamp 	 * nobody is changing anything.
5057ac27a0ecSDave Kleikamp 	 */
5058ac27a0ecSDave Kleikamp 
5059617ba13bSMingming Cao 	journal = EXT4_JOURNAL(inode);
50600390131bSFrank Mayhar 	if (!journal)
50610390131bSFrank Mayhar 		return 0;
5062d699594dSDave Hansen 	if (is_journal_aborted(journal))
5063ac27a0ecSDave Kleikamp 		return -EROFS;
50642aff57b0SYongqiang Yang 	/* We have to allocate physical blocks for delalloc blocks
50652aff57b0SYongqiang Yang 	 * before flushing journal. otherwise delalloc blocks can not
50662aff57b0SYongqiang Yang 	 * be allocated any more. even more truncate on delalloc blocks
50672aff57b0SYongqiang Yang 	 * could trigger BUG by flushing delalloc blocks in journal.
50682aff57b0SYongqiang Yang 	 * There is no delalloc block in non-journal data mode.
50692aff57b0SYongqiang Yang 	 */
50702aff57b0SYongqiang Yang 	if (val && test_opt(inode->i_sb, DELALLOC)) {
50712aff57b0SYongqiang Yang 		err = ext4_alloc_da_blocks(inode);
50722aff57b0SYongqiang Yang 		if (err < 0)
50732aff57b0SYongqiang Yang 			return err;
50742aff57b0SYongqiang Yang 	}
5075ac27a0ecSDave Kleikamp 
507617335dccSDmitry Monakhov 	/* Wait for all existing dio workers */
507717335dccSDmitry Monakhov 	ext4_inode_block_unlocked_dio(inode);
507817335dccSDmitry Monakhov 	inode_dio_wait(inode);
507917335dccSDmitry Monakhov 
5080dab291afSMingming Cao 	jbd2_journal_lock_updates(journal);
5081ac27a0ecSDave Kleikamp 
5082ac27a0ecSDave Kleikamp 	/*
5083ac27a0ecSDave Kleikamp 	 * OK, there are no updates running now, and all cached data is
5084ac27a0ecSDave Kleikamp 	 * synced to disk.  We are now in a completely consistent state
5085ac27a0ecSDave Kleikamp 	 * which doesn't have anything in the journal, and we know that
5086ac27a0ecSDave Kleikamp 	 * no filesystem updates are running, so it is safe to modify
5087ac27a0ecSDave Kleikamp 	 * the inode's in-core data-journaling state flag now.
5088ac27a0ecSDave Kleikamp 	 */
5089ac27a0ecSDave Kleikamp 
5090ac27a0ecSDave Kleikamp 	if (val)
509112e9b892SDmitry Monakhov 		ext4_set_inode_flag(inode, EXT4_INODE_JOURNAL_DATA);
50925872ddaaSYongqiang Yang 	else {
50935872ddaaSYongqiang Yang 		jbd2_journal_flush(journal);
509412e9b892SDmitry Monakhov 		ext4_clear_inode_flag(inode, EXT4_INODE_JOURNAL_DATA);
50955872ddaaSYongqiang Yang 	}
5096617ba13bSMingming Cao 	ext4_set_aops(inode);
5097ac27a0ecSDave Kleikamp 
5098dab291afSMingming Cao 	jbd2_journal_unlock_updates(journal);
509917335dccSDmitry Monakhov 	ext4_inode_resume_unlocked_dio(inode);
5100ac27a0ecSDave Kleikamp 
5101ac27a0ecSDave Kleikamp 	/* Finally we can mark the inode as dirty. */
5102ac27a0ecSDave Kleikamp 
51039924a92aSTheodore Ts'o 	handle = ext4_journal_start(inode, EXT4_HT_INODE, 1);
5104ac27a0ecSDave Kleikamp 	if (IS_ERR(handle))
5105ac27a0ecSDave Kleikamp 		return PTR_ERR(handle);
5106ac27a0ecSDave Kleikamp 
5107617ba13bSMingming Cao 	err = ext4_mark_inode_dirty(handle, inode);
51080390131bSFrank Mayhar 	ext4_handle_sync(handle);
5109617ba13bSMingming Cao 	ext4_journal_stop(handle);
5110617ba13bSMingming Cao 	ext4_std_error(inode->i_sb, err);
5111ac27a0ecSDave Kleikamp 
5112ac27a0ecSDave Kleikamp 	return err;
5113ac27a0ecSDave Kleikamp }
51142e9ee850SAneesh Kumar K.V 
51152e9ee850SAneesh Kumar K.V static int ext4_bh_unmapped(handle_t *handle, struct buffer_head *bh)
51162e9ee850SAneesh Kumar K.V {
51172e9ee850SAneesh Kumar K.V 	return !buffer_mapped(bh);
51182e9ee850SAneesh Kumar K.V }
51192e9ee850SAneesh Kumar K.V 
5120c2ec175cSNick Piggin int ext4_page_mkwrite(struct vm_area_struct *vma, struct vm_fault *vmf)
51212e9ee850SAneesh Kumar K.V {
5122c2ec175cSNick Piggin 	struct page *page = vmf->page;
51232e9ee850SAneesh Kumar K.V 	loff_t size;
51242e9ee850SAneesh Kumar K.V 	unsigned long len;
51259ea7df53SJan Kara 	int ret;
51262e9ee850SAneesh Kumar K.V 	struct file *file = vma->vm_file;
5127496ad9aaSAl Viro 	struct inode *inode = file_inode(file);
51282e9ee850SAneesh Kumar K.V 	struct address_space *mapping = inode->i_mapping;
51299ea7df53SJan Kara 	handle_t *handle;
51309ea7df53SJan Kara 	get_block_t *get_block;
51319ea7df53SJan Kara 	int retries = 0;
51322e9ee850SAneesh Kumar K.V 
51338e8ad8a5SJan Kara 	sb_start_pagefault(inode->i_sb);
5134041bbb6dSTheodore Ts'o 	file_update_time(vma->vm_file);
51359ea7df53SJan Kara 	/* Delalloc case is easy... */
51369ea7df53SJan Kara 	if (test_opt(inode->i_sb, DELALLOC) &&
51379ea7df53SJan Kara 	    !ext4_should_journal_data(inode) &&
51389ea7df53SJan Kara 	    !ext4_nonda_switch(inode->i_sb)) {
51399ea7df53SJan Kara 		do {
51409ea7df53SJan Kara 			ret = __block_page_mkwrite(vma, vmf,
51419ea7df53SJan Kara 						   ext4_da_get_block_prep);
51429ea7df53SJan Kara 		} while (ret == -ENOSPC &&
51439ea7df53SJan Kara 		       ext4_should_retry_alloc(inode->i_sb, &retries));
51449ea7df53SJan Kara 		goto out_ret;
51452e9ee850SAneesh Kumar K.V 	}
51460e499890SDarrick J. Wong 
51470e499890SDarrick J. Wong 	lock_page(page);
51489ea7df53SJan Kara 	size = i_size_read(inode);
51499ea7df53SJan Kara 	/* Page got truncated from under us? */
51509ea7df53SJan Kara 	if (page->mapping != mapping || page_offset(page) > size) {
51519ea7df53SJan Kara 		unlock_page(page);
51529ea7df53SJan Kara 		ret = VM_FAULT_NOPAGE;
51539ea7df53SJan Kara 		goto out;
51540e499890SDarrick J. Wong 	}
51552e9ee850SAneesh Kumar K.V 
51562e9ee850SAneesh Kumar K.V 	if (page->index == size >> PAGE_CACHE_SHIFT)
51572e9ee850SAneesh Kumar K.V 		len = size & ~PAGE_CACHE_MASK;
51582e9ee850SAneesh Kumar K.V 	else
51592e9ee850SAneesh Kumar K.V 		len = PAGE_CACHE_SIZE;
5160a827eaffSAneesh Kumar K.V 	/*
51619ea7df53SJan Kara 	 * Return if we have all the buffers mapped. This avoids the need to do
51629ea7df53SJan Kara 	 * journal_start/journal_stop which can block and take a long time
5163a827eaffSAneesh Kumar K.V 	 */
51642e9ee850SAneesh Kumar K.V 	if (page_has_buffers(page)) {
5165f19d5870STao Ma 		if (!ext4_walk_page_buffers(NULL, page_buffers(page),
5166f19d5870STao Ma 					    0, len, NULL,
5167a827eaffSAneesh Kumar K.V 					    ext4_bh_unmapped)) {
51689ea7df53SJan Kara 			/* Wait so that we don't change page under IO */
51691d1d1a76SDarrick J. Wong 			wait_for_stable_page(page);
51709ea7df53SJan Kara 			ret = VM_FAULT_LOCKED;
51719ea7df53SJan Kara 			goto out;
51722e9ee850SAneesh Kumar K.V 		}
5173a827eaffSAneesh Kumar K.V 	}
5174a827eaffSAneesh Kumar K.V 	unlock_page(page);
51759ea7df53SJan Kara 	/* OK, we need to fill the hole... */
51769ea7df53SJan Kara 	if (ext4_should_dioread_nolock(inode))
51779ea7df53SJan Kara 		get_block = ext4_get_block_write;
51789ea7df53SJan Kara 	else
51799ea7df53SJan Kara 		get_block = ext4_get_block;
51809ea7df53SJan Kara retry_alloc:
51819924a92aSTheodore Ts'o 	handle = ext4_journal_start(inode, EXT4_HT_WRITE_PAGE,
51829924a92aSTheodore Ts'o 				    ext4_writepage_trans_blocks(inode));
51839ea7df53SJan Kara 	if (IS_ERR(handle)) {
5184c2ec175cSNick Piggin 		ret = VM_FAULT_SIGBUS;
51859ea7df53SJan Kara 		goto out;
51869ea7df53SJan Kara 	}
51879ea7df53SJan Kara 	ret = __block_page_mkwrite(vma, vmf, get_block);
51889ea7df53SJan Kara 	if (!ret && ext4_should_journal_data(inode)) {
5189f19d5870STao Ma 		if (ext4_walk_page_buffers(handle, page_buffers(page), 0,
51909ea7df53SJan Kara 			  PAGE_CACHE_SIZE, NULL, do_journal_get_write_access)) {
51919ea7df53SJan Kara 			unlock_page(page);
51929ea7df53SJan Kara 			ret = VM_FAULT_SIGBUS;
5193fcbb5515SYongqiang Yang 			ext4_journal_stop(handle);
51949ea7df53SJan Kara 			goto out;
51959ea7df53SJan Kara 		}
51969ea7df53SJan Kara 		ext4_set_inode_state(inode, EXT4_STATE_JDATA);
51979ea7df53SJan Kara 	}
51989ea7df53SJan Kara 	ext4_journal_stop(handle);
51999ea7df53SJan Kara 	if (ret == -ENOSPC && ext4_should_retry_alloc(inode->i_sb, &retries))
52009ea7df53SJan Kara 		goto retry_alloc;
52019ea7df53SJan Kara out_ret:
52029ea7df53SJan Kara 	ret = block_page_mkwrite_return(ret);
52039ea7df53SJan Kara out:
52048e8ad8a5SJan Kara 	sb_end_pagefault(inode->i_sb);
52052e9ee850SAneesh Kumar K.V 	return ret;
52062e9ee850SAneesh Kumar K.V }
5207