xref: /openbmc/linux/fs/ext4/inode.c (revision 2058f83a728adffbe00bded4f804b37a5ee58cbe)
1ac27a0ecSDave Kleikamp /*
2617ba13bSMingming Cao  *  linux/fs/ext4/inode.c
3ac27a0ecSDave Kleikamp  *
4ac27a0ecSDave Kleikamp  * Copyright (C) 1992, 1993, 1994, 1995
5ac27a0ecSDave Kleikamp  * Remy Card (card@masi.ibp.fr)
6ac27a0ecSDave Kleikamp  * Laboratoire MASI - Institut Blaise Pascal
7ac27a0ecSDave Kleikamp  * Universite Pierre et Marie Curie (Paris VI)
8ac27a0ecSDave Kleikamp  *
9ac27a0ecSDave Kleikamp  *  from
10ac27a0ecSDave Kleikamp  *
11ac27a0ecSDave Kleikamp  *  linux/fs/minix/inode.c
12ac27a0ecSDave Kleikamp  *
13ac27a0ecSDave Kleikamp  *  Copyright (C) 1991, 1992  Linus Torvalds
14ac27a0ecSDave Kleikamp  *
15ac27a0ecSDave Kleikamp  *  64-bit file support on 64-bit platforms by Jakub Jelinek
16ac27a0ecSDave Kleikamp  *	(jj@sunsite.ms.mff.cuni.cz)
17ac27a0ecSDave Kleikamp  *
18617ba13bSMingming Cao  *  Assorted race fixes, rewrite of ext4_get_block() by Al Viro, 2000
19ac27a0ecSDave Kleikamp  */
20ac27a0ecSDave Kleikamp 
21ac27a0ecSDave Kleikamp #include <linux/fs.h>
22ac27a0ecSDave Kleikamp #include <linux/time.h>
23ac27a0ecSDave Kleikamp #include <linux/highuid.h>
24ac27a0ecSDave Kleikamp #include <linux/pagemap.h>
25ac27a0ecSDave Kleikamp #include <linux/quotaops.h>
26ac27a0ecSDave Kleikamp #include <linux/string.h>
27ac27a0ecSDave Kleikamp #include <linux/buffer_head.h>
28ac27a0ecSDave Kleikamp #include <linux/writeback.h>
2964769240SAlex Tomas #include <linux/pagevec.h>
30ac27a0ecSDave Kleikamp #include <linux/mpage.h>
31e83c1397SDuane Griffin #include <linux/namei.h>
32ac27a0ecSDave Kleikamp #include <linux/uio.h>
33ac27a0ecSDave Kleikamp #include <linux/bio.h>
344c0425ffSMingming Cao #include <linux/workqueue.h>
35744692dcSJiaying Zhang #include <linux/kernel.h>
366db26ffcSAndrew Morton #include <linux/printk.h>
375a0e3ad6STejun Heo #include <linux/slab.h>
38a27bb332SKent Overstreet #include <linux/aio.h>
3900a1a053STheodore Ts'o #include <linux/bitops.h>
409bffad1eSTheodore Ts'o 
413dcf5451SChristoph Hellwig #include "ext4_jbd2.h"
42ac27a0ecSDave Kleikamp #include "xattr.h"
43ac27a0ecSDave Kleikamp #include "acl.h"
449f125d64STheodore Ts'o #include "truncate.h"
45ac27a0ecSDave Kleikamp 
469bffad1eSTheodore Ts'o #include <trace/events/ext4.h>
479bffad1eSTheodore Ts'o 
48a1d6cc56SAneesh Kumar K.V #define MPAGE_DA_EXTENT_TAIL 0x01
49a1d6cc56SAneesh Kumar K.V 
50814525f4SDarrick J. Wong static __u32 ext4_inode_csum(struct inode *inode, struct ext4_inode *raw,
51814525f4SDarrick J. Wong 			      struct ext4_inode_info *ei)
52814525f4SDarrick J. Wong {
53814525f4SDarrick J. Wong 	struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb);
54814525f4SDarrick J. Wong 	__u16 csum_lo;
55814525f4SDarrick J. Wong 	__u16 csum_hi = 0;
56814525f4SDarrick J. Wong 	__u32 csum;
57814525f4SDarrick J. Wong 
58171a7f21SDmitry Monakhov 	csum_lo = le16_to_cpu(raw->i_checksum_lo);
59814525f4SDarrick J. Wong 	raw->i_checksum_lo = 0;
60814525f4SDarrick J. Wong 	if (EXT4_INODE_SIZE(inode->i_sb) > EXT4_GOOD_OLD_INODE_SIZE &&
61814525f4SDarrick J. Wong 	    EXT4_FITS_IN_INODE(raw, ei, i_checksum_hi)) {
62171a7f21SDmitry Monakhov 		csum_hi = le16_to_cpu(raw->i_checksum_hi);
63814525f4SDarrick J. Wong 		raw->i_checksum_hi = 0;
64814525f4SDarrick J. Wong 	}
65814525f4SDarrick J. Wong 
66814525f4SDarrick J. Wong 	csum = ext4_chksum(sbi, ei->i_csum_seed, (__u8 *)raw,
67814525f4SDarrick J. Wong 			   EXT4_INODE_SIZE(inode->i_sb));
68814525f4SDarrick J. Wong 
69171a7f21SDmitry Monakhov 	raw->i_checksum_lo = cpu_to_le16(csum_lo);
70814525f4SDarrick J. Wong 	if (EXT4_INODE_SIZE(inode->i_sb) > EXT4_GOOD_OLD_INODE_SIZE &&
71814525f4SDarrick J. Wong 	    EXT4_FITS_IN_INODE(raw, ei, i_checksum_hi))
72171a7f21SDmitry Monakhov 		raw->i_checksum_hi = cpu_to_le16(csum_hi);
73814525f4SDarrick J. Wong 
74814525f4SDarrick J. Wong 	return csum;
75814525f4SDarrick J. Wong }
76814525f4SDarrick J. Wong 
77814525f4SDarrick J. Wong static int ext4_inode_csum_verify(struct inode *inode, struct ext4_inode *raw,
78814525f4SDarrick J. Wong 				  struct ext4_inode_info *ei)
79814525f4SDarrick J. Wong {
80814525f4SDarrick J. Wong 	__u32 provided, calculated;
81814525f4SDarrick J. Wong 
82814525f4SDarrick J. Wong 	if (EXT4_SB(inode->i_sb)->s_es->s_creator_os !=
83814525f4SDarrick J. Wong 	    cpu_to_le32(EXT4_OS_LINUX) ||
849aa5d32bSDmitry Monakhov 	    !ext4_has_metadata_csum(inode->i_sb))
85814525f4SDarrick J. Wong 		return 1;
86814525f4SDarrick J. Wong 
87814525f4SDarrick J. Wong 	provided = le16_to_cpu(raw->i_checksum_lo);
88814525f4SDarrick J. Wong 	calculated = ext4_inode_csum(inode, raw, ei);
89814525f4SDarrick J. Wong 	if (EXT4_INODE_SIZE(inode->i_sb) > EXT4_GOOD_OLD_INODE_SIZE &&
90814525f4SDarrick J. Wong 	    EXT4_FITS_IN_INODE(raw, ei, i_checksum_hi))
91814525f4SDarrick J. Wong 		provided |= ((__u32)le16_to_cpu(raw->i_checksum_hi)) << 16;
92814525f4SDarrick J. Wong 	else
93814525f4SDarrick J. Wong 		calculated &= 0xFFFF;
94814525f4SDarrick J. Wong 
95814525f4SDarrick J. Wong 	return provided == calculated;
96814525f4SDarrick J. Wong }
97814525f4SDarrick J. Wong 
98814525f4SDarrick J. Wong static void ext4_inode_csum_set(struct inode *inode, struct ext4_inode *raw,
99814525f4SDarrick J. Wong 				struct ext4_inode_info *ei)
100814525f4SDarrick J. Wong {
101814525f4SDarrick J. Wong 	__u32 csum;
102814525f4SDarrick J. Wong 
103814525f4SDarrick J. Wong 	if (EXT4_SB(inode->i_sb)->s_es->s_creator_os !=
104814525f4SDarrick J. Wong 	    cpu_to_le32(EXT4_OS_LINUX) ||
1059aa5d32bSDmitry Monakhov 	    !ext4_has_metadata_csum(inode->i_sb))
106814525f4SDarrick J. Wong 		return;
107814525f4SDarrick J. Wong 
108814525f4SDarrick J. Wong 	csum = ext4_inode_csum(inode, raw, ei);
109814525f4SDarrick J. Wong 	raw->i_checksum_lo = cpu_to_le16(csum & 0xFFFF);
110814525f4SDarrick J. Wong 	if (EXT4_INODE_SIZE(inode->i_sb) > EXT4_GOOD_OLD_INODE_SIZE &&
111814525f4SDarrick J. Wong 	    EXT4_FITS_IN_INODE(raw, ei, i_checksum_hi))
112814525f4SDarrick J. Wong 		raw->i_checksum_hi = cpu_to_le16(csum >> 16);
113814525f4SDarrick J. Wong }
114814525f4SDarrick J. Wong 
115678aaf48SJan Kara static inline int ext4_begin_ordered_truncate(struct inode *inode,
116678aaf48SJan Kara 					      loff_t new_size)
117678aaf48SJan Kara {
1187ff9c073STheodore Ts'o 	trace_ext4_begin_ordered_truncate(inode, new_size);
1198aefcd55STheodore Ts'o 	/*
1208aefcd55STheodore Ts'o 	 * If jinode is zero, then we never opened the file for
1218aefcd55STheodore Ts'o 	 * writing, so there's no need to call
1228aefcd55STheodore Ts'o 	 * jbd2_journal_begin_ordered_truncate() since there's no
1238aefcd55STheodore Ts'o 	 * outstanding writes we need to flush.
1248aefcd55STheodore Ts'o 	 */
1258aefcd55STheodore Ts'o 	if (!EXT4_I(inode)->jinode)
1268aefcd55STheodore Ts'o 		return 0;
1278aefcd55STheodore Ts'o 	return jbd2_journal_begin_ordered_truncate(EXT4_JOURNAL(inode),
1288aefcd55STheodore Ts'o 						   EXT4_I(inode)->jinode,
129678aaf48SJan Kara 						   new_size);
130678aaf48SJan Kara }
131678aaf48SJan Kara 
132d47992f8SLukas Czerner static void ext4_invalidatepage(struct page *page, unsigned int offset,
133d47992f8SLukas Czerner 				unsigned int length);
134cb20d518STheodore Ts'o static int __ext4_journalled_writepage(struct page *page, unsigned int len);
135cb20d518STheodore Ts'o static int ext4_bh_delay_or_unwritten(handle_t *handle, struct buffer_head *bh);
136fffb2739SJan Kara static int ext4_meta_trans_blocks(struct inode *inode, int lblocks,
137fffb2739SJan Kara 				  int pextents);
13864769240SAlex Tomas 
139ac27a0ecSDave Kleikamp /*
140ac27a0ecSDave Kleikamp  * Test whether an inode is a fast symlink.
141ac27a0ecSDave Kleikamp  */
142617ba13bSMingming Cao static int ext4_inode_is_fast_symlink(struct inode *inode)
143ac27a0ecSDave Kleikamp {
144617ba13bSMingming Cao         int ea_blocks = EXT4_I(inode)->i_file_acl ?
14565eddb56SYongqiang Yang 		EXT4_CLUSTER_SIZE(inode->i_sb) >> 9 : 0;
146ac27a0ecSDave Kleikamp 
147bd9db175SZheng Liu 	if (ext4_has_inline_data(inode))
148bd9db175SZheng Liu 		return 0;
149bd9db175SZheng Liu 
150ac27a0ecSDave Kleikamp 	return (S_ISLNK(inode->i_mode) && inode->i_blocks - ea_blocks == 0);
151ac27a0ecSDave Kleikamp }
152ac27a0ecSDave Kleikamp 
153ac27a0ecSDave Kleikamp /*
154ac27a0ecSDave Kleikamp  * Restart the transaction associated with *handle.  This does a commit,
155ac27a0ecSDave Kleikamp  * so before we call here everything must be consistently dirtied against
156ac27a0ecSDave Kleikamp  * this transaction.
157ac27a0ecSDave Kleikamp  */
158487caeefSJan Kara int ext4_truncate_restart_trans(handle_t *handle, struct inode *inode,
159487caeefSJan Kara 				 int nblocks)
160ac27a0ecSDave Kleikamp {
161487caeefSJan Kara 	int ret;
162487caeefSJan Kara 
163487caeefSJan Kara 	/*
164e35fd660STheodore Ts'o 	 * Drop i_data_sem to avoid deadlock with ext4_map_blocks.  At this
165487caeefSJan Kara 	 * moment, get_block can be called only for blocks inside i_size since
166487caeefSJan Kara 	 * page cache has been already dropped and writes are blocked by
167487caeefSJan Kara 	 * i_mutex. So we can safely drop the i_data_sem here.
168487caeefSJan Kara 	 */
1690390131bSFrank Mayhar 	BUG_ON(EXT4_JOURNAL(inode) == NULL);
170ac27a0ecSDave Kleikamp 	jbd_debug(2, "restarting handle %p\n", handle);
171487caeefSJan Kara 	up_write(&EXT4_I(inode)->i_data_sem);
1728e8eaabeSAmir Goldstein 	ret = ext4_journal_restart(handle, nblocks);
173487caeefSJan Kara 	down_write(&EXT4_I(inode)->i_data_sem);
174fa5d1113SAneesh Kumar K.V 	ext4_discard_preallocations(inode);
175487caeefSJan Kara 
176487caeefSJan Kara 	return ret;
177ac27a0ecSDave Kleikamp }
178ac27a0ecSDave Kleikamp 
179ac27a0ecSDave Kleikamp /*
180ac27a0ecSDave Kleikamp  * Called at the last iput() if i_nlink is zero.
181ac27a0ecSDave Kleikamp  */
1820930fcc1SAl Viro void ext4_evict_inode(struct inode *inode)
183ac27a0ecSDave Kleikamp {
184ac27a0ecSDave Kleikamp 	handle_t *handle;
185bc965ab3STheodore Ts'o 	int err;
186ac27a0ecSDave Kleikamp 
1877ff9c073STheodore Ts'o 	trace_ext4_evict_inode(inode);
1882581fdc8SJiaying Zhang 
1890930fcc1SAl Viro 	if (inode->i_nlink) {
1902d859db3SJan Kara 		/*
1912d859db3SJan Kara 		 * When journalling data dirty buffers are tracked only in the
1922d859db3SJan Kara 		 * journal. So although mm thinks everything is clean and
1932d859db3SJan Kara 		 * ready for reaping the inode might still have some pages to
1942d859db3SJan Kara 		 * write in the running transaction or waiting to be
1952d859db3SJan Kara 		 * checkpointed. Thus calling jbd2_journal_invalidatepage()
1962d859db3SJan Kara 		 * (via truncate_inode_pages()) to discard these buffers can
1972d859db3SJan Kara 		 * cause data loss. Also even if we did not discard these
1982d859db3SJan Kara 		 * buffers, we would have no way to find them after the inode
1992d859db3SJan Kara 		 * is reaped and thus user could see stale data if he tries to
2002d859db3SJan Kara 		 * read them before the transaction is checkpointed. So be
2012d859db3SJan Kara 		 * careful and force everything to disk here... We use
2022d859db3SJan Kara 		 * ei->i_datasync_tid to store the newest transaction
2032d859db3SJan Kara 		 * containing inode's data.
2042d859db3SJan Kara 		 *
2052d859db3SJan Kara 		 * Note that directories do not have this problem because they
2062d859db3SJan Kara 		 * don't use page cache.
2072d859db3SJan Kara 		 */
2082d859db3SJan Kara 		if (ext4_should_journal_data(inode) &&
2092b405bfaSTheodore Ts'o 		    (S_ISLNK(inode->i_mode) || S_ISREG(inode->i_mode)) &&
2102b405bfaSTheodore Ts'o 		    inode->i_ino != EXT4_JOURNAL_INO) {
2112d859db3SJan Kara 			journal_t *journal = EXT4_SB(inode->i_sb)->s_journal;
2122d859db3SJan Kara 			tid_t commit_tid = EXT4_I(inode)->i_datasync_tid;
2132d859db3SJan Kara 
214d76a3a77STheodore Ts'o 			jbd2_complete_transaction(journal, commit_tid);
2152d859db3SJan Kara 			filemap_write_and_wait(&inode->i_data);
2162d859db3SJan Kara 		}
21791b0abe3SJohannes Weiner 		truncate_inode_pages_final(&inode->i_data);
2185dc23bddSJan Kara 
2195dc23bddSJan Kara 		WARN_ON(atomic_read(&EXT4_I(inode)->i_ioend_count));
2200930fcc1SAl Viro 		goto no_delete;
2210930fcc1SAl Viro 	}
2220930fcc1SAl Viro 
223e2bfb088STheodore Ts'o 	if (is_bad_inode(inode))
224e2bfb088STheodore Ts'o 		goto no_delete;
225871a2931SChristoph Hellwig 	dquot_initialize(inode);
226907f4554SChristoph Hellwig 
227678aaf48SJan Kara 	if (ext4_should_order_data(inode))
228678aaf48SJan Kara 		ext4_begin_ordered_truncate(inode, 0);
22991b0abe3SJohannes Weiner 	truncate_inode_pages_final(&inode->i_data);
230ac27a0ecSDave Kleikamp 
2315dc23bddSJan Kara 	WARN_ON(atomic_read(&EXT4_I(inode)->i_ioend_count));
232ac27a0ecSDave Kleikamp 
2338e8ad8a5SJan Kara 	/*
2348e8ad8a5SJan Kara 	 * Protect us against freezing - iput() caller didn't have to have any
2358e8ad8a5SJan Kara 	 * protection against it
2368e8ad8a5SJan Kara 	 */
2378e8ad8a5SJan Kara 	sb_start_intwrite(inode->i_sb);
2389924a92aSTheodore Ts'o 	handle = ext4_journal_start(inode, EXT4_HT_TRUNCATE,
2399924a92aSTheodore Ts'o 				    ext4_blocks_for_truncate(inode)+3);
240ac27a0ecSDave Kleikamp 	if (IS_ERR(handle)) {
241bc965ab3STheodore Ts'o 		ext4_std_error(inode->i_sb, PTR_ERR(handle));
242ac27a0ecSDave Kleikamp 		/*
243ac27a0ecSDave Kleikamp 		 * If we're going to skip the normal cleanup, we still need to
244ac27a0ecSDave Kleikamp 		 * make sure that the in-core orphan linked list is properly
245ac27a0ecSDave Kleikamp 		 * cleaned up.
246ac27a0ecSDave Kleikamp 		 */
247617ba13bSMingming Cao 		ext4_orphan_del(NULL, inode);
2488e8ad8a5SJan Kara 		sb_end_intwrite(inode->i_sb);
249ac27a0ecSDave Kleikamp 		goto no_delete;
250ac27a0ecSDave Kleikamp 	}
251ac27a0ecSDave Kleikamp 
252ac27a0ecSDave Kleikamp 	if (IS_SYNC(inode))
2530390131bSFrank Mayhar 		ext4_handle_sync(handle);
254ac27a0ecSDave Kleikamp 	inode->i_size = 0;
255bc965ab3STheodore Ts'o 	err = ext4_mark_inode_dirty(handle, inode);
256bc965ab3STheodore Ts'o 	if (err) {
25712062dddSEric Sandeen 		ext4_warning(inode->i_sb,
258bc965ab3STheodore Ts'o 			     "couldn't mark inode dirty (err %d)", err);
259bc965ab3STheodore Ts'o 		goto stop_handle;
260bc965ab3STheodore Ts'o 	}
261ac27a0ecSDave Kleikamp 	if (inode->i_blocks)
262617ba13bSMingming Cao 		ext4_truncate(inode);
263bc965ab3STheodore Ts'o 
264bc965ab3STheodore Ts'o 	/*
265bc965ab3STheodore Ts'o 	 * ext4_ext_truncate() doesn't reserve any slop when it
266bc965ab3STheodore Ts'o 	 * restarts journal transactions; therefore there may not be
267bc965ab3STheodore Ts'o 	 * enough credits left in the handle to remove the inode from
268bc965ab3STheodore Ts'o 	 * the orphan list and set the dtime field.
269bc965ab3STheodore Ts'o 	 */
2700390131bSFrank Mayhar 	if (!ext4_handle_has_enough_credits(handle, 3)) {
271bc965ab3STheodore Ts'o 		err = ext4_journal_extend(handle, 3);
272bc965ab3STheodore Ts'o 		if (err > 0)
273bc965ab3STheodore Ts'o 			err = ext4_journal_restart(handle, 3);
274bc965ab3STheodore Ts'o 		if (err != 0) {
27512062dddSEric Sandeen 			ext4_warning(inode->i_sb,
276bc965ab3STheodore Ts'o 				     "couldn't extend journal (err %d)", err);
277bc965ab3STheodore Ts'o 		stop_handle:
278bc965ab3STheodore Ts'o 			ext4_journal_stop(handle);
27945388219STheodore Ts'o 			ext4_orphan_del(NULL, inode);
2808e8ad8a5SJan Kara 			sb_end_intwrite(inode->i_sb);
281bc965ab3STheodore Ts'o 			goto no_delete;
282bc965ab3STheodore Ts'o 		}
283bc965ab3STheodore Ts'o 	}
284bc965ab3STheodore Ts'o 
285ac27a0ecSDave Kleikamp 	/*
286617ba13bSMingming Cao 	 * Kill off the orphan record which ext4_truncate created.
287ac27a0ecSDave Kleikamp 	 * AKPM: I think this can be inside the above `if'.
288617ba13bSMingming Cao 	 * Note that ext4_orphan_del() has to be able to cope with the
289ac27a0ecSDave Kleikamp 	 * deletion of a non-existent orphan - this is because we don't
290617ba13bSMingming Cao 	 * know if ext4_truncate() actually created an orphan record.
291ac27a0ecSDave Kleikamp 	 * (Well, we could do this if we need to, but heck - it works)
292ac27a0ecSDave Kleikamp 	 */
293617ba13bSMingming Cao 	ext4_orphan_del(handle, inode);
294617ba13bSMingming Cao 	EXT4_I(inode)->i_dtime	= get_seconds();
295ac27a0ecSDave Kleikamp 
296ac27a0ecSDave Kleikamp 	/*
297ac27a0ecSDave Kleikamp 	 * One subtle ordering requirement: if anything has gone wrong
298ac27a0ecSDave Kleikamp 	 * (transaction abort, IO errors, whatever), then we can still
299ac27a0ecSDave Kleikamp 	 * do these next steps (the fs will already have been marked as
300ac27a0ecSDave Kleikamp 	 * having errors), but we can't free the inode if the mark_dirty
301ac27a0ecSDave Kleikamp 	 * fails.
302ac27a0ecSDave Kleikamp 	 */
303617ba13bSMingming Cao 	if (ext4_mark_inode_dirty(handle, inode))
304ac27a0ecSDave Kleikamp 		/* If that failed, just do the required in-core inode clear. */
3050930fcc1SAl Viro 		ext4_clear_inode(inode);
306ac27a0ecSDave Kleikamp 	else
307617ba13bSMingming Cao 		ext4_free_inode(handle, inode);
308617ba13bSMingming Cao 	ext4_journal_stop(handle);
3098e8ad8a5SJan Kara 	sb_end_intwrite(inode->i_sb);
310ac27a0ecSDave Kleikamp 	return;
311ac27a0ecSDave Kleikamp no_delete:
3120930fcc1SAl Viro 	ext4_clear_inode(inode);	/* We must guarantee clearing of inode... */
313ac27a0ecSDave Kleikamp }
314ac27a0ecSDave Kleikamp 
315a9e7f447SDmitry Monakhov #ifdef CONFIG_QUOTA
316a9e7f447SDmitry Monakhov qsize_t *ext4_get_reserved_space(struct inode *inode)
31760e58e0fSMingming Cao {
318a9e7f447SDmitry Monakhov 	return &EXT4_I(inode)->i_reserved_quota;
31960e58e0fSMingming Cao }
320a9e7f447SDmitry Monakhov #endif
3219d0be502STheodore Ts'o 
32212219aeaSAneesh Kumar K.V /*
3230637c6f4STheodore Ts'o  * Called with i_data_sem down, which is important since we can call
3240637c6f4STheodore Ts'o  * ext4_discard_preallocations() from here.
3250637c6f4STheodore Ts'o  */
3265f634d06SAneesh Kumar K.V void ext4_da_update_reserve_space(struct inode *inode,
3275f634d06SAneesh Kumar K.V 					int used, int quota_claim)
32812219aeaSAneesh Kumar K.V {
32912219aeaSAneesh Kumar K.V 	struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb);
3300637c6f4STheodore Ts'o 	struct ext4_inode_info *ei = EXT4_I(inode);
33112219aeaSAneesh Kumar K.V 
3320637c6f4STheodore Ts'o 	spin_lock(&ei->i_block_reservation_lock);
333d8990240SAditya Kali 	trace_ext4_da_update_reserve_space(inode, used, quota_claim);
3340637c6f4STheodore Ts'o 	if (unlikely(used > ei->i_reserved_data_blocks)) {
3358de5c325STheodore Ts'o 		ext4_warning(inode->i_sb, "%s: ino %lu, used %d "
3361084f252STheodore Ts'o 			 "with only %d reserved data blocks",
3370637c6f4STheodore Ts'o 			 __func__, inode->i_ino, used,
3380637c6f4STheodore Ts'o 			 ei->i_reserved_data_blocks);
3390637c6f4STheodore Ts'o 		WARN_ON(1);
3400637c6f4STheodore Ts'o 		used = ei->i_reserved_data_blocks;
3416bc6e63fSAneesh Kumar K.V 	}
34212219aeaSAneesh Kumar K.V 
3430637c6f4STheodore Ts'o 	/* Update per-inode reservations */
3440637c6f4STheodore Ts'o 	ei->i_reserved_data_blocks -= used;
34571d4f7d0STheodore Ts'o 	percpu_counter_sub(&sbi->s_dirtyclusters_counter, used);
3460637c6f4STheodore Ts'o 
34712219aeaSAneesh Kumar K.V 	spin_unlock(&EXT4_I(inode)->i_block_reservation_lock);
34860e58e0fSMingming Cao 
34972b8ab9dSEric Sandeen 	/* Update quota subsystem for data blocks */
35072b8ab9dSEric Sandeen 	if (quota_claim)
3517b415bf6SAditya Kali 		dquot_claim_block(inode, EXT4_C2B(sbi, used));
35272b8ab9dSEric Sandeen 	else {
3535f634d06SAneesh Kumar K.V 		/*
3545f634d06SAneesh Kumar K.V 		 * We did fallocate with an offset that is already delayed
3555f634d06SAneesh Kumar K.V 		 * allocated. So on delayed allocated writeback we should
35672b8ab9dSEric Sandeen 		 * not re-claim the quota for fallocated blocks.
3575f634d06SAneesh Kumar K.V 		 */
3587b415bf6SAditya Kali 		dquot_release_reservation_block(inode, EXT4_C2B(sbi, used));
3595f634d06SAneesh Kumar K.V 	}
360d6014301SAneesh Kumar K.V 
361d6014301SAneesh Kumar K.V 	/*
362d6014301SAneesh Kumar K.V 	 * If we have done all the pending block allocations and if
363d6014301SAneesh Kumar K.V 	 * there aren't any writers on the inode, we can discard the
364d6014301SAneesh Kumar K.V 	 * inode's preallocations.
365d6014301SAneesh Kumar K.V 	 */
3660637c6f4STheodore Ts'o 	if ((ei->i_reserved_data_blocks == 0) &&
3670637c6f4STheodore Ts'o 	    (atomic_read(&inode->i_writecount) == 0))
368d6014301SAneesh Kumar K.V 		ext4_discard_preallocations(inode);
36912219aeaSAneesh Kumar K.V }
37012219aeaSAneesh Kumar K.V 
371e29136f8STheodore Ts'o static int __check_block_validity(struct inode *inode, const char *func,
372c398eda0STheodore Ts'o 				unsigned int line,
37324676da4STheodore Ts'o 				struct ext4_map_blocks *map)
3746fd058f7STheodore Ts'o {
37524676da4STheodore Ts'o 	if (!ext4_data_block_valid(EXT4_SB(inode->i_sb), map->m_pblk,
37624676da4STheodore Ts'o 				   map->m_len)) {
377c398eda0STheodore Ts'o 		ext4_error_inode(inode, func, line, map->m_pblk,
378c398eda0STheodore Ts'o 				 "lblock %lu mapped to illegal pblock "
37924676da4STheodore Ts'o 				 "(length %d)", (unsigned long) map->m_lblk,
380c398eda0STheodore Ts'o 				 map->m_len);
3816fd058f7STheodore Ts'o 		return -EIO;
3826fd058f7STheodore Ts'o 	}
3836fd058f7STheodore Ts'o 	return 0;
3846fd058f7STheodore Ts'o }
3856fd058f7STheodore Ts'o 
386e29136f8STheodore Ts'o #define check_block_validity(inode, map)	\
387c398eda0STheodore Ts'o 	__check_block_validity((inode), __func__, __LINE__, (map))
388e29136f8STheodore Ts'o 
389921f266bSDmitry Monakhov #ifdef ES_AGGRESSIVE_TEST
390921f266bSDmitry Monakhov static void ext4_map_blocks_es_recheck(handle_t *handle,
391921f266bSDmitry Monakhov 				       struct inode *inode,
392921f266bSDmitry Monakhov 				       struct ext4_map_blocks *es_map,
393921f266bSDmitry Monakhov 				       struct ext4_map_blocks *map,
394921f266bSDmitry Monakhov 				       int flags)
395921f266bSDmitry Monakhov {
396921f266bSDmitry Monakhov 	int retval;
397921f266bSDmitry Monakhov 
398921f266bSDmitry Monakhov 	map->m_flags = 0;
399921f266bSDmitry Monakhov 	/*
400921f266bSDmitry Monakhov 	 * There is a race window that the result is not the same.
401921f266bSDmitry Monakhov 	 * e.g. xfstests #223 when dioread_nolock enables.  The reason
402921f266bSDmitry Monakhov 	 * is that we lookup a block mapping in extent status tree with
403921f266bSDmitry Monakhov 	 * out taking i_data_sem.  So at the time the unwritten extent
404921f266bSDmitry Monakhov 	 * could be converted.
405921f266bSDmitry Monakhov 	 */
406921f266bSDmitry Monakhov 	if (!(flags & EXT4_GET_BLOCKS_NO_LOCK))
407c8b459f4SLukas Czerner 		down_read(&EXT4_I(inode)->i_data_sem);
408921f266bSDmitry Monakhov 	if (ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS)) {
409921f266bSDmitry Monakhov 		retval = ext4_ext_map_blocks(handle, inode, map, flags &
410921f266bSDmitry Monakhov 					     EXT4_GET_BLOCKS_KEEP_SIZE);
411921f266bSDmitry Monakhov 	} else {
412921f266bSDmitry Monakhov 		retval = ext4_ind_map_blocks(handle, inode, map, flags &
413921f266bSDmitry Monakhov 					     EXT4_GET_BLOCKS_KEEP_SIZE);
414921f266bSDmitry Monakhov 	}
415921f266bSDmitry Monakhov 	if (!(flags & EXT4_GET_BLOCKS_NO_LOCK))
416921f266bSDmitry Monakhov 		up_read((&EXT4_I(inode)->i_data_sem));
417921f266bSDmitry Monakhov 
418921f266bSDmitry Monakhov 	/*
419921f266bSDmitry Monakhov 	 * We don't check m_len because extent will be collpased in status
420921f266bSDmitry Monakhov 	 * tree.  So the m_len might not equal.
421921f266bSDmitry Monakhov 	 */
422921f266bSDmitry Monakhov 	if (es_map->m_lblk != map->m_lblk ||
423921f266bSDmitry Monakhov 	    es_map->m_flags != map->m_flags ||
424921f266bSDmitry Monakhov 	    es_map->m_pblk != map->m_pblk) {
425bdafe42aSTheodore Ts'o 		printk("ES cache assertion failed for inode: %lu "
426921f266bSDmitry Monakhov 		       "es_cached ex [%d/%d/%llu/%x] != "
427921f266bSDmitry Monakhov 		       "found ex [%d/%d/%llu/%x] retval %d flags %x\n",
428921f266bSDmitry Monakhov 		       inode->i_ino, es_map->m_lblk, es_map->m_len,
429921f266bSDmitry Monakhov 		       es_map->m_pblk, es_map->m_flags, map->m_lblk,
430921f266bSDmitry Monakhov 		       map->m_len, map->m_pblk, map->m_flags,
431921f266bSDmitry Monakhov 		       retval, flags);
432921f266bSDmitry Monakhov 	}
433921f266bSDmitry Monakhov }
434921f266bSDmitry Monakhov #endif /* ES_AGGRESSIVE_TEST */
435921f266bSDmitry Monakhov 
43655138e0bSTheodore Ts'o /*
437e35fd660STheodore Ts'o  * The ext4_map_blocks() function tries to look up the requested blocks,
4382b2d6d01STheodore Ts'o  * and returns if the blocks are already mapped.
439f5ab0d1fSMingming Cao  *
440f5ab0d1fSMingming Cao  * Otherwise it takes the write lock of the i_data_sem and allocate blocks
441f5ab0d1fSMingming Cao  * and store the allocated blocks in the result buffer head and mark it
442f5ab0d1fSMingming Cao  * mapped.
443f5ab0d1fSMingming Cao  *
444e35fd660STheodore Ts'o  * If file type is extents based, it will call ext4_ext_map_blocks(),
445e35fd660STheodore Ts'o  * Otherwise, call with ext4_ind_map_blocks() to handle indirect mapping
446f5ab0d1fSMingming Cao  * based files
447f5ab0d1fSMingming Cao  *
448556615dcSLukas Czerner  * On success, it returns the number of blocks being mapped or allocated.
449556615dcSLukas Czerner  * if create==0 and the blocks are pre-allocated and unwritten block,
450f5ab0d1fSMingming Cao  * the result buffer head is unmapped. If the create ==1, it will make sure
451f5ab0d1fSMingming Cao  * the buffer head is mapped.
452f5ab0d1fSMingming Cao  *
453f5ab0d1fSMingming Cao  * It returns 0 if plain look up failed (blocks have not been allocated), in
454df3ab170STao Ma  * that case, buffer head is unmapped
455f5ab0d1fSMingming Cao  *
456f5ab0d1fSMingming Cao  * It returns the error in case of allocation failure.
457f5ab0d1fSMingming Cao  */
458e35fd660STheodore Ts'o int ext4_map_blocks(handle_t *handle, struct inode *inode,
459e35fd660STheodore Ts'o 		    struct ext4_map_blocks *map, int flags)
4600e855ac8SAneesh Kumar K.V {
461d100eef2SZheng Liu 	struct extent_status es;
4620e855ac8SAneesh Kumar K.V 	int retval;
463b8a86845SLukas Czerner 	int ret = 0;
464921f266bSDmitry Monakhov #ifdef ES_AGGRESSIVE_TEST
465921f266bSDmitry Monakhov 	struct ext4_map_blocks orig_map;
466921f266bSDmitry Monakhov 
467921f266bSDmitry Monakhov 	memcpy(&orig_map, map, sizeof(*map));
468921f266bSDmitry Monakhov #endif
469f5ab0d1fSMingming Cao 
470e35fd660STheodore Ts'o 	map->m_flags = 0;
471e35fd660STheodore Ts'o 	ext_debug("ext4_map_blocks(): inode %lu, flag %d, max_blocks %u,"
472e35fd660STheodore Ts'o 		  "logical block %lu\n", inode->i_ino, flags, map->m_len,
473e35fd660STheodore Ts'o 		  (unsigned long) map->m_lblk);
474d100eef2SZheng Liu 
475e861b5e9STheodore Ts'o 	/*
476e861b5e9STheodore Ts'o 	 * ext4_map_blocks returns an int, and m_len is an unsigned int
477e861b5e9STheodore Ts'o 	 */
478e861b5e9STheodore Ts'o 	if (unlikely(map->m_len > INT_MAX))
479e861b5e9STheodore Ts'o 		map->m_len = INT_MAX;
480e861b5e9STheodore Ts'o 
4814adb6ab3SKazuya Mio 	/* We can handle the block number less than EXT_MAX_BLOCKS */
4824adb6ab3SKazuya Mio 	if (unlikely(map->m_lblk >= EXT_MAX_BLOCKS))
4834adb6ab3SKazuya Mio 		return -EIO;
4844adb6ab3SKazuya Mio 
485d100eef2SZheng Liu 	/* Lookup extent status tree firstly */
486d100eef2SZheng Liu 	if (ext4_es_lookup_extent(inode, map->m_lblk, &es)) {
487d100eef2SZheng Liu 		if (ext4_es_is_written(&es) || ext4_es_is_unwritten(&es)) {
488d100eef2SZheng Liu 			map->m_pblk = ext4_es_pblock(&es) +
489d100eef2SZheng Liu 					map->m_lblk - es.es_lblk;
490d100eef2SZheng Liu 			map->m_flags |= ext4_es_is_written(&es) ?
491d100eef2SZheng Liu 					EXT4_MAP_MAPPED : EXT4_MAP_UNWRITTEN;
492d100eef2SZheng Liu 			retval = es.es_len - (map->m_lblk - es.es_lblk);
493d100eef2SZheng Liu 			if (retval > map->m_len)
494d100eef2SZheng Liu 				retval = map->m_len;
495d100eef2SZheng Liu 			map->m_len = retval;
496d100eef2SZheng Liu 		} else if (ext4_es_is_delayed(&es) || ext4_es_is_hole(&es)) {
497d100eef2SZheng Liu 			retval = 0;
498d100eef2SZheng Liu 		} else {
499d100eef2SZheng Liu 			BUG_ON(1);
500d100eef2SZheng Liu 		}
501921f266bSDmitry Monakhov #ifdef ES_AGGRESSIVE_TEST
502921f266bSDmitry Monakhov 		ext4_map_blocks_es_recheck(handle, inode, map,
503921f266bSDmitry Monakhov 					   &orig_map, flags);
504921f266bSDmitry Monakhov #endif
505d100eef2SZheng Liu 		goto found;
506d100eef2SZheng Liu 	}
507d100eef2SZheng Liu 
5084df3d265SAneesh Kumar K.V 	/*
509b920c755STheodore Ts'o 	 * Try to see if we can get the block without requesting a new
510b920c755STheodore Ts'o 	 * file system block.
5114df3d265SAneesh Kumar K.V 	 */
512729f52c6SZheng Liu 	if (!(flags & EXT4_GET_BLOCKS_NO_LOCK))
513c8b459f4SLukas Czerner 		down_read(&EXT4_I(inode)->i_data_sem);
51412e9b892SDmitry Monakhov 	if (ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS)) {
515a4e5d88bSDmitry Monakhov 		retval = ext4_ext_map_blocks(handle, inode, map, flags &
516a4e5d88bSDmitry Monakhov 					     EXT4_GET_BLOCKS_KEEP_SIZE);
5174df3d265SAneesh Kumar K.V 	} else {
518a4e5d88bSDmitry Monakhov 		retval = ext4_ind_map_blocks(handle, inode, map, flags &
519a4e5d88bSDmitry Monakhov 					     EXT4_GET_BLOCKS_KEEP_SIZE);
5200e855ac8SAneesh Kumar K.V 	}
521f7fec032SZheng Liu 	if (retval > 0) {
5223be78c73STheodore Ts'o 		unsigned int status;
523f7fec032SZheng Liu 
52444fb851dSZheng Liu 		if (unlikely(retval != map->m_len)) {
52544fb851dSZheng Liu 			ext4_warning(inode->i_sb,
52644fb851dSZheng Liu 				     "ES len assertion failed for inode "
52744fb851dSZheng Liu 				     "%lu: retval %d != map->m_len %d",
52844fb851dSZheng Liu 				     inode->i_ino, retval, map->m_len);
52944fb851dSZheng Liu 			WARN_ON(1);
530921f266bSDmitry Monakhov 		}
531921f266bSDmitry Monakhov 
532f7fec032SZheng Liu 		status = map->m_flags & EXT4_MAP_UNWRITTEN ?
533f7fec032SZheng Liu 				EXTENT_STATUS_UNWRITTEN : EXTENT_STATUS_WRITTEN;
534f7fec032SZheng Liu 		if (!(flags & EXT4_GET_BLOCKS_DELALLOC_RESERVE) &&
535f7fec032SZheng Liu 		    ext4_find_delalloc_range(inode, map->m_lblk,
536f7fec032SZheng Liu 					     map->m_lblk + map->m_len - 1))
537f7fec032SZheng Liu 			status |= EXTENT_STATUS_DELAYED;
538f7fec032SZheng Liu 		ret = ext4_es_insert_extent(inode, map->m_lblk,
539f7fec032SZheng Liu 					    map->m_len, map->m_pblk, status);
540f7fec032SZheng Liu 		if (ret < 0)
541f7fec032SZheng Liu 			retval = ret;
542f7fec032SZheng Liu 	}
543729f52c6SZheng Liu 	if (!(flags & EXT4_GET_BLOCKS_NO_LOCK))
5444df3d265SAneesh Kumar K.V 		up_read((&EXT4_I(inode)->i_data_sem));
545f5ab0d1fSMingming Cao 
546d100eef2SZheng Liu found:
547e35fd660STheodore Ts'o 	if (retval > 0 && map->m_flags & EXT4_MAP_MAPPED) {
548b8a86845SLukas Czerner 		ret = check_block_validity(inode, map);
5496fd058f7STheodore Ts'o 		if (ret != 0)
5506fd058f7STheodore Ts'o 			return ret;
5516fd058f7STheodore Ts'o 	}
5526fd058f7STheodore Ts'o 
553f5ab0d1fSMingming Cao 	/* If it is only a block(s) look up */
554c2177057STheodore Ts'o 	if ((flags & EXT4_GET_BLOCKS_CREATE) == 0)
5554df3d265SAneesh Kumar K.V 		return retval;
5564df3d265SAneesh Kumar K.V 
5574df3d265SAneesh Kumar K.V 	/*
558f5ab0d1fSMingming Cao 	 * Returns if the blocks have already allocated
559f5ab0d1fSMingming Cao 	 *
560f5ab0d1fSMingming Cao 	 * Note that if blocks have been preallocated
561df3ab170STao Ma 	 * ext4_ext_get_block() returns the create = 0
562f5ab0d1fSMingming Cao 	 * with buffer head unmapped.
563f5ab0d1fSMingming Cao 	 */
564e35fd660STheodore Ts'o 	if (retval > 0 && map->m_flags & EXT4_MAP_MAPPED)
565b8a86845SLukas Czerner 		/*
566b8a86845SLukas Czerner 		 * If we need to convert extent to unwritten
567b8a86845SLukas Czerner 		 * we continue and do the actual work in
568b8a86845SLukas Czerner 		 * ext4_ext_map_blocks()
569b8a86845SLukas Czerner 		 */
570b8a86845SLukas Czerner 		if (!(flags & EXT4_GET_BLOCKS_CONVERT_UNWRITTEN))
571f5ab0d1fSMingming Cao 			return retval;
572f5ab0d1fSMingming Cao 
573f5ab0d1fSMingming Cao 	/*
574a25a4e1aSZheng Liu 	 * Here we clear m_flags because after allocating an new extent,
575a25a4e1aSZheng Liu 	 * it will be set again.
5762a8964d6SAneesh Kumar K.V 	 */
577a25a4e1aSZheng Liu 	map->m_flags &= ~EXT4_MAP_FLAGS;
5782a8964d6SAneesh Kumar K.V 
5792a8964d6SAneesh Kumar K.V 	/*
580556615dcSLukas Czerner 	 * New blocks allocate and/or writing to unwritten extent
581f5ab0d1fSMingming Cao 	 * will possibly result in updating i_data, so we take
582d91bd2c1SSeunghun Lee 	 * the write lock of i_data_sem, and call get_block()
583f5ab0d1fSMingming Cao 	 * with create == 1 flag.
5844df3d265SAneesh Kumar K.V 	 */
585c8b459f4SLukas Czerner 	down_write(&EXT4_I(inode)->i_data_sem);
586d2a17637SMingming Cao 
587d2a17637SMingming Cao 	/*
5884df3d265SAneesh Kumar K.V 	 * We need to check for EXT4 here because migrate
5894df3d265SAneesh Kumar K.V 	 * could have changed the inode type in between
5904df3d265SAneesh Kumar K.V 	 */
59112e9b892SDmitry Monakhov 	if (ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS)) {
592e35fd660STheodore Ts'o 		retval = ext4_ext_map_blocks(handle, inode, map, flags);
5930e855ac8SAneesh Kumar K.V 	} else {
594e35fd660STheodore Ts'o 		retval = ext4_ind_map_blocks(handle, inode, map, flags);
595267e4db9SAneesh Kumar K.V 
596e35fd660STheodore Ts'o 		if (retval > 0 && map->m_flags & EXT4_MAP_NEW) {
597267e4db9SAneesh Kumar K.V 			/*
598267e4db9SAneesh Kumar K.V 			 * We allocated new blocks which will result in
599267e4db9SAneesh Kumar K.V 			 * i_data's format changing.  Force the migrate
600267e4db9SAneesh Kumar K.V 			 * to fail by clearing migrate flags
601267e4db9SAneesh Kumar K.V 			 */
60219f5fb7aSTheodore Ts'o 			ext4_clear_inode_state(inode, EXT4_STATE_EXT_MIGRATE);
603267e4db9SAneesh Kumar K.V 		}
6042ac3b6e0STheodore Ts'o 
605d2a17637SMingming Cao 		/*
6062ac3b6e0STheodore Ts'o 		 * Update reserved blocks/metadata blocks after successful
6075f634d06SAneesh Kumar K.V 		 * block allocation which had been deferred till now. We don't
6085f634d06SAneesh Kumar K.V 		 * support fallocate for non extent files. So we can update
6095f634d06SAneesh Kumar K.V 		 * reserve space here.
610d2a17637SMingming Cao 		 */
6115f634d06SAneesh Kumar K.V 		if ((retval > 0) &&
6121296cc85SAneesh Kumar K.V 			(flags & EXT4_GET_BLOCKS_DELALLOC_RESERVE))
6135f634d06SAneesh Kumar K.V 			ext4_da_update_reserve_space(inode, retval, 1);
6145f634d06SAneesh Kumar K.V 	}
615d2a17637SMingming Cao 
616f7fec032SZheng Liu 	if (retval > 0) {
6173be78c73STheodore Ts'o 		unsigned int status;
618f7fec032SZheng Liu 
61944fb851dSZheng Liu 		if (unlikely(retval != map->m_len)) {
62044fb851dSZheng Liu 			ext4_warning(inode->i_sb,
62144fb851dSZheng Liu 				     "ES len assertion failed for inode "
62244fb851dSZheng Liu 				     "%lu: retval %d != map->m_len %d",
62344fb851dSZheng Liu 				     inode->i_ino, retval, map->m_len);
62444fb851dSZheng Liu 			WARN_ON(1);
625921f266bSDmitry Monakhov 		}
626921f266bSDmitry Monakhov 
627adb23551SZheng Liu 		/*
628adb23551SZheng Liu 		 * If the extent has been zeroed out, we don't need to update
629adb23551SZheng Liu 		 * extent status tree.
630adb23551SZheng Liu 		 */
631adb23551SZheng Liu 		if ((flags & EXT4_GET_BLOCKS_PRE_IO) &&
632adb23551SZheng Liu 		    ext4_es_lookup_extent(inode, map->m_lblk, &es)) {
633adb23551SZheng Liu 			if (ext4_es_is_written(&es))
634adb23551SZheng Liu 				goto has_zeroout;
635adb23551SZheng Liu 		}
636f7fec032SZheng Liu 		status = map->m_flags & EXT4_MAP_UNWRITTEN ?
637f7fec032SZheng Liu 				EXTENT_STATUS_UNWRITTEN : EXTENT_STATUS_WRITTEN;
638f7fec032SZheng Liu 		if (!(flags & EXT4_GET_BLOCKS_DELALLOC_RESERVE) &&
639f7fec032SZheng Liu 		    ext4_find_delalloc_range(inode, map->m_lblk,
640f7fec032SZheng Liu 					     map->m_lblk + map->m_len - 1))
641f7fec032SZheng Liu 			status |= EXTENT_STATUS_DELAYED;
642f7fec032SZheng Liu 		ret = ext4_es_insert_extent(inode, map->m_lblk, map->m_len,
643f7fec032SZheng Liu 					    map->m_pblk, status);
64451865fdaSZheng Liu 		if (ret < 0)
64551865fdaSZheng Liu 			retval = ret;
64651865fdaSZheng Liu 	}
6475356f261SAditya Kali 
648adb23551SZheng Liu has_zeroout:
6490e855ac8SAneesh Kumar K.V 	up_write((&EXT4_I(inode)->i_data_sem));
650e35fd660STheodore Ts'o 	if (retval > 0 && map->m_flags & EXT4_MAP_MAPPED) {
651b8a86845SLukas Czerner 		ret = check_block_validity(inode, map);
6526fd058f7STheodore Ts'o 		if (ret != 0)
6536fd058f7STheodore Ts'o 			return ret;
6546fd058f7STheodore Ts'o 	}
6550e855ac8SAneesh Kumar K.V 	return retval;
6560e855ac8SAneesh Kumar K.V }
6570e855ac8SAneesh Kumar K.V 
658923ae0ffSRoss Zwisler static void ext4_end_io_unwritten(struct buffer_head *bh, int uptodate)
659923ae0ffSRoss Zwisler {
660923ae0ffSRoss Zwisler 	struct inode *inode = bh->b_assoc_map->host;
661923ae0ffSRoss Zwisler 	/* XXX: breaks on 32-bit > 16GB. Is that even supported? */
662923ae0ffSRoss Zwisler 	loff_t offset = (loff_t)(uintptr_t)bh->b_private << inode->i_blkbits;
663923ae0ffSRoss Zwisler 	int err;
664923ae0ffSRoss Zwisler 	if (!uptodate)
665923ae0ffSRoss Zwisler 		return;
666923ae0ffSRoss Zwisler 	WARN_ON(!buffer_unwritten(bh));
667923ae0ffSRoss Zwisler 	err = ext4_convert_unwritten_extents(NULL, inode, offset, bh->b_size);
668923ae0ffSRoss Zwisler }
669923ae0ffSRoss Zwisler 
670f3bd1f3fSMingming Cao /* Maximum number of blocks we map for direct IO at once. */
671f3bd1f3fSMingming Cao #define DIO_MAX_BLOCKS 4096
672f3bd1f3fSMingming Cao 
6732ed88685STheodore Ts'o static int _ext4_get_block(struct inode *inode, sector_t iblock,
6742ed88685STheodore Ts'o 			   struct buffer_head *bh, int flags)
675ac27a0ecSDave Kleikamp {
6763e4fdaf8SDmitriy Monakhov 	handle_t *handle = ext4_journal_current_handle();
6772ed88685STheodore Ts'o 	struct ext4_map_blocks map;
6787fb5409dSJan Kara 	int ret = 0, started = 0;
679f3bd1f3fSMingming Cao 	int dio_credits;
680ac27a0ecSDave Kleikamp 
68146c7f254STao Ma 	if (ext4_has_inline_data(inode))
68246c7f254STao Ma 		return -ERANGE;
68346c7f254STao Ma 
6842ed88685STheodore Ts'o 	map.m_lblk = iblock;
6852ed88685STheodore Ts'o 	map.m_len = bh->b_size >> inode->i_blkbits;
6862ed88685STheodore Ts'o 
6878b0f165fSAnatol Pomozov 	if (flags && !(flags & EXT4_GET_BLOCKS_NO_LOCK) && !handle) {
6887fb5409dSJan Kara 		/* Direct IO write... */
6892ed88685STheodore Ts'o 		if (map.m_len > DIO_MAX_BLOCKS)
6902ed88685STheodore Ts'o 			map.m_len = DIO_MAX_BLOCKS;
6912ed88685STheodore Ts'o 		dio_credits = ext4_chunk_trans_blocks(inode, map.m_len);
6929924a92aSTheodore Ts'o 		handle = ext4_journal_start(inode, EXT4_HT_MAP_BLOCKS,
6939924a92aSTheodore Ts'o 					    dio_credits);
6947fb5409dSJan Kara 		if (IS_ERR(handle)) {
695ac27a0ecSDave Kleikamp 			ret = PTR_ERR(handle);
6962ed88685STheodore Ts'o 			return ret;
6977fb5409dSJan Kara 		}
6987fb5409dSJan Kara 		started = 1;
699ac27a0ecSDave Kleikamp 	}
700ac27a0ecSDave Kleikamp 
7012ed88685STheodore Ts'o 	ret = ext4_map_blocks(handle, inode, &map, flags);
702ac27a0ecSDave Kleikamp 	if (ret > 0) {
7037b7a8665SChristoph Hellwig 		ext4_io_end_t *io_end = ext4_inode_aio(inode);
7047b7a8665SChristoph Hellwig 
7052ed88685STheodore Ts'o 		map_bh(bh, inode->i_sb, map.m_pblk);
7062ed88685STheodore Ts'o 		bh->b_state = (bh->b_state & ~EXT4_MAP_FLAGS) | map.m_flags;
707923ae0ffSRoss Zwisler 		if (IS_DAX(inode) && buffer_unwritten(bh) && !io_end) {
708923ae0ffSRoss Zwisler 			bh->b_assoc_map = inode->i_mapping;
709923ae0ffSRoss Zwisler 			bh->b_private = (void *)(unsigned long)iblock;
710923ae0ffSRoss Zwisler 			bh->b_end_io = ext4_end_io_unwritten;
711923ae0ffSRoss Zwisler 		}
7127b7a8665SChristoph Hellwig 		if (io_end && io_end->flag & EXT4_IO_END_UNWRITTEN)
7137b7a8665SChristoph Hellwig 			set_buffer_defer_completion(bh);
7142ed88685STheodore Ts'o 		bh->b_size = inode->i_sb->s_blocksize * map.m_len;
715ac27a0ecSDave Kleikamp 		ret = 0;
716ac27a0ecSDave Kleikamp 	}
7177fb5409dSJan Kara 	if (started)
7187fb5409dSJan Kara 		ext4_journal_stop(handle);
719ac27a0ecSDave Kleikamp 	return ret;
720ac27a0ecSDave Kleikamp }
721ac27a0ecSDave Kleikamp 
7222ed88685STheodore Ts'o int ext4_get_block(struct inode *inode, sector_t iblock,
7232ed88685STheodore Ts'o 		   struct buffer_head *bh, int create)
7242ed88685STheodore Ts'o {
7252ed88685STheodore Ts'o 	return _ext4_get_block(inode, iblock, bh,
7262ed88685STheodore Ts'o 			       create ? EXT4_GET_BLOCKS_CREATE : 0);
7272ed88685STheodore Ts'o }
7282ed88685STheodore Ts'o 
729ac27a0ecSDave Kleikamp /*
730ac27a0ecSDave Kleikamp  * `handle' can be NULL if create is zero
731ac27a0ecSDave Kleikamp  */
732617ba13bSMingming Cao struct buffer_head *ext4_getblk(handle_t *handle, struct inode *inode,
73310560082STheodore Ts'o 				ext4_lblk_t block, int create)
734ac27a0ecSDave Kleikamp {
7352ed88685STheodore Ts'o 	struct ext4_map_blocks map;
7362ed88685STheodore Ts'o 	struct buffer_head *bh;
73710560082STheodore Ts'o 	int err;
738ac27a0ecSDave Kleikamp 
739ac27a0ecSDave Kleikamp 	J_ASSERT(handle != NULL || create == 0);
740ac27a0ecSDave Kleikamp 
7412ed88685STheodore Ts'o 	map.m_lblk = block;
7422ed88685STheodore Ts'o 	map.m_len = 1;
7432ed88685STheodore Ts'o 	err = ext4_map_blocks(handle, inode, &map,
7442ed88685STheodore Ts'o 			      create ? EXT4_GET_BLOCKS_CREATE : 0);
7452ed88685STheodore Ts'o 
74610560082STheodore Ts'o 	if (err == 0)
74710560082STheodore Ts'o 		return create ? ERR_PTR(-ENOSPC) : NULL;
7482ed88685STheodore Ts'o 	if (err < 0)
74910560082STheodore Ts'o 		return ERR_PTR(err);
7502ed88685STheodore Ts'o 
7512ed88685STheodore Ts'o 	bh = sb_getblk(inode->i_sb, map.m_pblk);
75210560082STheodore Ts'o 	if (unlikely(!bh))
75310560082STheodore Ts'o 		return ERR_PTR(-ENOMEM);
7542ed88685STheodore Ts'o 	if (map.m_flags & EXT4_MAP_NEW) {
755ac27a0ecSDave Kleikamp 		J_ASSERT(create != 0);
756ac39849dSAneesh Kumar K.V 		J_ASSERT(handle != NULL);
757ac27a0ecSDave Kleikamp 
758ac27a0ecSDave Kleikamp 		/*
759ac27a0ecSDave Kleikamp 		 * Now that we do not always journal data, we should
760ac27a0ecSDave Kleikamp 		 * keep in mind whether this should always journal the
761ac27a0ecSDave Kleikamp 		 * new buffer as metadata.  For now, regular file
762617ba13bSMingming Cao 		 * writes use ext4_get_block instead, so it's not a
763ac27a0ecSDave Kleikamp 		 * problem.
764ac27a0ecSDave Kleikamp 		 */
765ac27a0ecSDave Kleikamp 		lock_buffer(bh);
766ac27a0ecSDave Kleikamp 		BUFFER_TRACE(bh, "call get_create_access");
76710560082STheodore Ts'o 		err = ext4_journal_get_create_access(handle, bh);
76810560082STheodore Ts'o 		if (unlikely(err)) {
76910560082STheodore Ts'o 			unlock_buffer(bh);
77010560082STheodore Ts'o 			goto errout;
77110560082STheodore Ts'o 		}
77210560082STheodore Ts'o 		if (!buffer_uptodate(bh)) {
773ac27a0ecSDave Kleikamp 			memset(bh->b_data, 0, inode->i_sb->s_blocksize);
774ac27a0ecSDave Kleikamp 			set_buffer_uptodate(bh);
775ac27a0ecSDave Kleikamp 		}
776ac27a0ecSDave Kleikamp 		unlock_buffer(bh);
7770390131bSFrank Mayhar 		BUFFER_TRACE(bh, "call ext4_handle_dirty_metadata");
7780390131bSFrank Mayhar 		err = ext4_handle_dirty_metadata(handle, inode, bh);
77910560082STheodore Ts'o 		if (unlikely(err))
78010560082STheodore Ts'o 			goto errout;
78110560082STheodore Ts'o 	} else
782ac27a0ecSDave Kleikamp 		BUFFER_TRACE(bh, "not a new buffer");
783ac27a0ecSDave Kleikamp 	return bh;
78410560082STheodore Ts'o errout:
78510560082STheodore Ts'o 	brelse(bh);
78610560082STheodore Ts'o 	return ERR_PTR(err);
787ac27a0ecSDave Kleikamp }
788ac27a0ecSDave Kleikamp 
789617ba13bSMingming Cao struct buffer_head *ext4_bread(handle_t *handle, struct inode *inode,
7901c215028STheodore Ts'o 			       ext4_lblk_t block, int create)
791ac27a0ecSDave Kleikamp {
792ac27a0ecSDave Kleikamp 	struct buffer_head *bh;
793ac27a0ecSDave Kleikamp 
79410560082STheodore Ts'o 	bh = ext4_getblk(handle, inode, block, create);
7951c215028STheodore Ts'o 	if (IS_ERR(bh))
796ac27a0ecSDave Kleikamp 		return bh;
7971c215028STheodore Ts'o 	if (!bh || buffer_uptodate(bh))
798ac27a0ecSDave Kleikamp 		return bh;
79965299a3bSChristoph Hellwig 	ll_rw_block(READ | REQ_META | REQ_PRIO, 1, &bh);
800ac27a0ecSDave Kleikamp 	wait_on_buffer(bh);
801ac27a0ecSDave Kleikamp 	if (buffer_uptodate(bh))
802ac27a0ecSDave Kleikamp 		return bh;
803ac27a0ecSDave Kleikamp 	put_bh(bh);
8041c215028STheodore Ts'o 	return ERR_PTR(-EIO);
805ac27a0ecSDave Kleikamp }
806ac27a0ecSDave Kleikamp 
807f19d5870STao Ma int ext4_walk_page_buffers(handle_t *handle,
808ac27a0ecSDave Kleikamp 			   struct buffer_head *head,
809ac27a0ecSDave Kleikamp 			   unsigned from,
810ac27a0ecSDave Kleikamp 			   unsigned to,
811ac27a0ecSDave Kleikamp 			   int *partial,
812ac27a0ecSDave Kleikamp 			   int (*fn)(handle_t *handle,
813ac27a0ecSDave Kleikamp 				     struct buffer_head *bh))
814ac27a0ecSDave Kleikamp {
815ac27a0ecSDave Kleikamp 	struct buffer_head *bh;
816ac27a0ecSDave Kleikamp 	unsigned block_start, block_end;
817ac27a0ecSDave Kleikamp 	unsigned blocksize = head->b_size;
818ac27a0ecSDave Kleikamp 	int err, ret = 0;
819ac27a0ecSDave Kleikamp 	struct buffer_head *next;
820ac27a0ecSDave Kleikamp 
821ac27a0ecSDave Kleikamp 	for (bh = head, block_start = 0;
822ac27a0ecSDave Kleikamp 	     ret == 0 && (bh != head || !block_start);
823de9a55b8STheodore Ts'o 	     block_start = block_end, bh = next) {
824ac27a0ecSDave Kleikamp 		next = bh->b_this_page;
825ac27a0ecSDave Kleikamp 		block_end = block_start + blocksize;
826ac27a0ecSDave Kleikamp 		if (block_end <= from || block_start >= to) {
827ac27a0ecSDave Kleikamp 			if (partial && !buffer_uptodate(bh))
828ac27a0ecSDave Kleikamp 				*partial = 1;
829ac27a0ecSDave Kleikamp 			continue;
830ac27a0ecSDave Kleikamp 		}
831ac27a0ecSDave Kleikamp 		err = (*fn)(handle, bh);
832ac27a0ecSDave Kleikamp 		if (!ret)
833ac27a0ecSDave Kleikamp 			ret = err;
834ac27a0ecSDave Kleikamp 	}
835ac27a0ecSDave Kleikamp 	return ret;
836ac27a0ecSDave Kleikamp }
837ac27a0ecSDave Kleikamp 
838ac27a0ecSDave Kleikamp /*
839ac27a0ecSDave Kleikamp  * To preserve ordering, it is essential that the hole instantiation and
840ac27a0ecSDave Kleikamp  * the data write be encapsulated in a single transaction.  We cannot
841617ba13bSMingming Cao  * close off a transaction and start a new one between the ext4_get_block()
842dab291afSMingming Cao  * and the commit_write().  So doing the jbd2_journal_start at the start of
843ac27a0ecSDave Kleikamp  * prepare_write() is the right place.
844ac27a0ecSDave Kleikamp  *
84536ade451SJan Kara  * Also, this function can nest inside ext4_writepage().  In that case, we
84636ade451SJan Kara  * *know* that ext4_writepage() has generated enough buffer credits to do the
84736ade451SJan Kara  * whole page.  So we won't block on the journal in that case, which is good,
84836ade451SJan Kara  * because the caller may be PF_MEMALLOC.
849ac27a0ecSDave Kleikamp  *
850617ba13bSMingming Cao  * By accident, ext4 can be reentered when a transaction is open via
851ac27a0ecSDave Kleikamp  * quota file writes.  If we were to commit the transaction while thus
852ac27a0ecSDave Kleikamp  * reentered, there can be a deadlock - we would be holding a quota
853ac27a0ecSDave Kleikamp  * lock, and the commit would never complete if another thread had a
854ac27a0ecSDave Kleikamp  * transaction open and was blocking on the quota lock - a ranking
855ac27a0ecSDave Kleikamp  * violation.
856ac27a0ecSDave Kleikamp  *
857dab291afSMingming Cao  * So what we do is to rely on the fact that jbd2_journal_stop/journal_start
858ac27a0ecSDave Kleikamp  * will _not_ run commit under these circumstances because handle->h_ref
859ac27a0ecSDave Kleikamp  * is elevated.  We'll still have enough credits for the tiny quotafile
860ac27a0ecSDave Kleikamp  * write.
861ac27a0ecSDave Kleikamp  */
862f19d5870STao Ma int do_journal_get_write_access(handle_t *handle,
863ac27a0ecSDave Kleikamp 				struct buffer_head *bh)
864ac27a0ecSDave Kleikamp {
86556d35a4cSJan Kara 	int dirty = buffer_dirty(bh);
86656d35a4cSJan Kara 	int ret;
86756d35a4cSJan Kara 
868ac27a0ecSDave Kleikamp 	if (!buffer_mapped(bh) || buffer_freed(bh))
869ac27a0ecSDave Kleikamp 		return 0;
87056d35a4cSJan Kara 	/*
871ebdec241SChristoph Hellwig 	 * __block_write_begin() could have dirtied some buffers. Clean
87256d35a4cSJan Kara 	 * the dirty bit as jbd2_journal_get_write_access() could complain
87356d35a4cSJan Kara 	 * otherwise about fs integrity issues. Setting of the dirty bit
874ebdec241SChristoph Hellwig 	 * by __block_write_begin() isn't a real problem here as we clear
87556d35a4cSJan Kara 	 * the bit before releasing a page lock and thus writeback cannot
87656d35a4cSJan Kara 	 * ever write the buffer.
87756d35a4cSJan Kara 	 */
87856d35a4cSJan Kara 	if (dirty)
87956d35a4cSJan Kara 		clear_buffer_dirty(bh);
8805d601255Sliang xie 	BUFFER_TRACE(bh, "get write access");
88156d35a4cSJan Kara 	ret = ext4_journal_get_write_access(handle, bh);
88256d35a4cSJan Kara 	if (!ret && dirty)
88356d35a4cSJan Kara 		ret = ext4_handle_dirty_metadata(handle, NULL, bh);
88456d35a4cSJan Kara 	return ret;
885ac27a0ecSDave Kleikamp }
886ac27a0ecSDave Kleikamp 
8878b0f165fSAnatol Pomozov static int ext4_get_block_write_nolock(struct inode *inode, sector_t iblock,
8888b0f165fSAnatol Pomozov 		   struct buffer_head *bh_result, int create);
889*2058f83aSMichael Halcrow 
890*2058f83aSMichael Halcrow #ifdef CONFIG_EXT4_FS_ENCRYPTION
891*2058f83aSMichael Halcrow static int ext4_block_write_begin(struct page *page, loff_t pos, unsigned len,
892*2058f83aSMichael Halcrow 				  get_block_t *get_block)
893*2058f83aSMichael Halcrow {
894*2058f83aSMichael Halcrow 	unsigned from = pos & (PAGE_CACHE_SIZE - 1);
895*2058f83aSMichael Halcrow 	unsigned to = from + len;
896*2058f83aSMichael Halcrow 	struct inode *inode = page->mapping->host;
897*2058f83aSMichael Halcrow 	unsigned block_start, block_end;
898*2058f83aSMichael Halcrow 	sector_t block;
899*2058f83aSMichael Halcrow 	int err = 0;
900*2058f83aSMichael Halcrow 	unsigned blocksize = inode->i_sb->s_blocksize;
901*2058f83aSMichael Halcrow 	unsigned bbits;
902*2058f83aSMichael Halcrow 	struct buffer_head *bh, *head, *wait[2], **wait_bh = wait;
903*2058f83aSMichael Halcrow 	bool decrypt = false;
904*2058f83aSMichael Halcrow 
905*2058f83aSMichael Halcrow 	BUG_ON(!PageLocked(page));
906*2058f83aSMichael Halcrow 	BUG_ON(from > PAGE_CACHE_SIZE);
907*2058f83aSMichael Halcrow 	BUG_ON(to > PAGE_CACHE_SIZE);
908*2058f83aSMichael Halcrow 	BUG_ON(from > to);
909*2058f83aSMichael Halcrow 
910*2058f83aSMichael Halcrow 	if (!page_has_buffers(page))
911*2058f83aSMichael Halcrow 		create_empty_buffers(page, blocksize, 0);
912*2058f83aSMichael Halcrow 	head = page_buffers(page);
913*2058f83aSMichael Halcrow 	bbits = ilog2(blocksize);
914*2058f83aSMichael Halcrow 	block = (sector_t)page->index << (PAGE_CACHE_SHIFT - bbits);
915*2058f83aSMichael Halcrow 
916*2058f83aSMichael Halcrow 	for (bh = head, block_start = 0; bh != head || !block_start;
917*2058f83aSMichael Halcrow 	    block++, block_start = block_end, bh = bh->b_this_page) {
918*2058f83aSMichael Halcrow 		block_end = block_start + blocksize;
919*2058f83aSMichael Halcrow 		if (block_end <= from || block_start >= to) {
920*2058f83aSMichael Halcrow 			if (PageUptodate(page)) {
921*2058f83aSMichael Halcrow 				if (!buffer_uptodate(bh))
922*2058f83aSMichael Halcrow 					set_buffer_uptodate(bh);
923*2058f83aSMichael Halcrow 			}
924*2058f83aSMichael Halcrow 			continue;
925*2058f83aSMichael Halcrow 		}
926*2058f83aSMichael Halcrow 		if (buffer_new(bh))
927*2058f83aSMichael Halcrow 			clear_buffer_new(bh);
928*2058f83aSMichael Halcrow 		if (!buffer_mapped(bh)) {
929*2058f83aSMichael Halcrow 			WARN_ON(bh->b_size != blocksize);
930*2058f83aSMichael Halcrow 			err = get_block(inode, block, bh, 1);
931*2058f83aSMichael Halcrow 			if (err)
932*2058f83aSMichael Halcrow 				break;
933*2058f83aSMichael Halcrow 			if (buffer_new(bh)) {
934*2058f83aSMichael Halcrow 				unmap_underlying_metadata(bh->b_bdev,
935*2058f83aSMichael Halcrow 							  bh->b_blocknr);
936*2058f83aSMichael Halcrow 				if (PageUptodate(page)) {
937*2058f83aSMichael Halcrow 					clear_buffer_new(bh);
938*2058f83aSMichael Halcrow 					set_buffer_uptodate(bh);
939*2058f83aSMichael Halcrow 					mark_buffer_dirty(bh);
940*2058f83aSMichael Halcrow 					continue;
941*2058f83aSMichael Halcrow 				}
942*2058f83aSMichael Halcrow 				if (block_end > to || block_start < from)
943*2058f83aSMichael Halcrow 					zero_user_segments(page, to, block_end,
944*2058f83aSMichael Halcrow 							   block_start, from);
945*2058f83aSMichael Halcrow 				continue;
946*2058f83aSMichael Halcrow 			}
947*2058f83aSMichael Halcrow 		}
948*2058f83aSMichael Halcrow 		if (PageUptodate(page)) {
949*2058f83aSMichael Halcrow 			if (!buffer_uptodate(bh))
950*2058f83aSMichael Halcrow 				set_buffer_uptodate(bh);
951*2058f83aSMichael Halcrow 			continue;
952*2058f83aSMichael Halcrow 		}
953*2058f83aSMichael Halcrow 		if (!buffer_uptodate(bh) && !buffer_delay(bh) &&
954*2058f83aSMichael Halcrow 		    !buffer_unwritten(bh) &&
955*2058f83aSMichael Halcrow 		    (block_start < from || block_end > to)) {
956*2058f83aSMichael Halcrow 			ll_rw_block(READ, 1, &bh);
957*2058f83aSMichael Halcrow 			*wait_bh++ = bh;
958*2058f83aSMichael Halcrow 			decrypt = ext4_encrypted_inode(inode) &&
959*2058f83aSMichael Halcrow 				S_ISREG(inode->i_mode);
960*2058f83aSMichael Halcrow 		}
961*2058f83aSMichael Halcrow 	}
962*2058f83aSMichael Halcrow 	/*
963*2058f83aSMichael Halcrow 	 * If we issued read requests, let them complete.
964*2058f83aSMichael Halcrow 	 */
965*2058f83aSMichael Halcrow 	while (wait_bh > wait) {
966*2058f83aSMichael Halcrow 		wait_on_buffer(*--wait_bh);
967*2058f83aSMichael Halcrow 		if (!buffer_uptodate(*wait_bh))
968*2058f83aSMichael Halcrow 			err = -EIO;
969*2058f83aSMichael Halcrow 	}
970*2058f83aSMichael Halcrow 	if (unlikely(err))
971*2058f83aSMichael Halcrow 		page_zero_new_buffers(page, from, to);
972*2058f83aSMichael Halcrow 	else if (decrypt)
973*2058f83aSMichael Halcrow 		err = ext4_decrypt_one(inode, page);
974*2058f83aSMichael Halcrow 	return err;
975*2058f83aSMichael Halcrow }
976*2058f83aSMichael Halcrow #endif
977*2058f83aSMichael Halcrow 
978bfc1af65SNick Piggin static int ext4_write_begin(struct file *file, struct address_space *mapping,
979bfc1af65SNick Piggin 			    loff_t pos, unsigned len, unsigned flags,
980bfc1af65SNick Piggin 			    struct page **pagep, void **fsdata)
981ac27a0ecSDave Kleikamp {
982bfc1af65SNick Piggin 	struct inode *inode = mapping->host;
9831938a150SAneesh Kumar K.V 	int ret, needed_blocks;
984ac27a0ecSDave Kleikamp 	handle_t *handle;
985ac27a0ecSDave Kleikamp 	int retries = 0;
986bfc1af65SNick Piggin 	struct page *page;
987bfc1af65SNick Piggin 	pgoff_t index;
988bfc1af65SNick Piggin 	unsigned from, to;
989bfc1af65SNick Piggin 
9909bffad1eSTheodore Ts'o 	trace_ext4_write_begin(inode, pos, len, flags);
9911938a150SAneesh Kumar K.V 	/*
9921938a150SAneesh Kumar K.V 	 * Reserve one block more for addition to orphan list in case
9931938a150SAneesh Kumar K.V 	 * we allocate blocks but write fails for some reason
9941938a150SAneesh Kumar K.V 	 */
9951938a150SAneesh Kumar K.V 	needed_blocks = ext4_writepage_trans_blocks(inode) + 1;
996bfc1af65SNick Piggin 	index = pos >> PAGE_CACHE_SHIFT;
997bfc1af65SNick Piggin 	from = pos & (PAGE_CACHE_SIZE - 1);
998bfc1af65SNick Piggin 	to = from + len;
999ac27a0ecSDave Kleikamp 
1000f19d5870STao Ma 	if (ext4_test_inode_state(inode, EXT4_STATE_MAY_INLINE_DATA)) {
1001f19d5870STao Ma 		ret = ext4_try_to_write_inline_data(mapping, inode, pos, len,
1002f19d5870STao Ma 						    flags, pagep);
1003f19d5870STao Ma 		if (ret < 0)
100447564bfbSTheodore Ts'o 			return ret;
100547564bfbSTheodore Ts'o 		if (ret == 1)
100647564bfbSTheodore Ts'o 			return 0;
1007f19d5870STao Ma 	}
1008f19d5870STao Ma 
100947564bfbSTheodore Ts'o 	/*
101047564bfbSTheodore Ts'o 	 * grab_cache_page_write_begin() can take a long time if the
101147564bfbSTheodore Ts'o 	 * system is thrashing due to memory pressure, or if the page
101247564bfbSTheodore Ts'o 	 * is being written back.  So grab it first before we start
101347564bfbSTheodore Ts'o 	 * the transaction handle.  This also allows us to allocate
101447564bfbSTheodore Ts'o 	 * the page (if needed) without using GFP_NOFS.
101547564bfbSTheodore Ts'o 	 */
101647564bfbSTheodore Ts'o retry_grab:
101754566b2cSNick Piggin 	page = grab_cache_page_write_begin(mapping, index, flags);
101847564bfbSTheodore Ts'o 	if (!page)
101947564bfbSTheodore Ts'o 		return -ENOMEM;
102047564bfbSTheodore Ts'o 	unlock_page(page);
102147564bfbSTheodore Ts'o 
102247564bfbSTheodore Ts'o retry_journal:
10239924a92aSTheodore Ts'o 	handle = ext4_journal_start(inode, EXT4_HT_WRITE_PAGE, needed_blocks);
1024ac27a0ecSDave Kleikamp 	if (IS_ERR(handle)) {
102547564bfbSTheodore Ts'o 		page_cache_release(page);
102647564bfbSTheodore Ts'o 		return PTR_ERR(handle);
1027cf108bcaSJan Kara 	}
1028f19d5870STao Ma 
102947564bfbSTheodore Ts'o 	lock_page(page);
103047564bfbSTheodore Ts'o 	if (page->mapping != mapping) {
103147564bfbSTheodore Ts'o 		/* The page got truncated from under us */
103247564bfbSTheodore Ts'o 		unlock_page(page);
103347564bfbSTheodore Ts'o 		page_cache_release(page);
1034cf108bcaSJan Kara 		ext4_journal_stop(handle);
103547564bfbSTheodore Ts'o 		goto retry_grab;
1036cf108bcaSJan Kara 	}
10377afe5aa5SDmitry Monakhov 	/* In case writeback began while the page was unlocked */
10387afe5aa5SDmitry Monakhov 	wait_for_stable_page(page);
1039cf108bcaSJan Kara 
1040*2058f83aSMichael Halcrow #ifdef CONFIG_EXT4_FS_ENCRYPTION
1041*2058f83aSMichael Halcrow 	if (ext4_should_dioread_nolock(inode))
1042*2058f83aSMichael Halcrow 		ret = ext4_block_write_begin(page, pos, len,
1043*2058f83aSMichael Halcrow 					     ext4_get_block_write);
1044*2058f83aSMichael Halcrow 	else
1045*2058f83aSMichael Halcrow 		ret = ext4_block_write_begin(page, pos, len,
1046*2058f83aSMichael Halcrow 					     ext4_get_block);
1047*2058f83aSMichael Halcrow #else
1048744692dcSJiaying Zhang 	if (ext4_should_dioread_nolock(inode))
10496e1db88dSChristoph Hellwig 		ret = __block_write_begin(page, pos, len, ext4_get_block_write);
1050744692dcSJiaying Zhang 	else
10516e1db88dSChristoph Hellwig 		ret = __block_write_begin(page, pos, len, ext4_get_block);
1052*2058f83aSMichael Halcrow #endif
1053bfc1af65SNick Piggin 	if (!ret && ext4_should_journal_data(inode)) {
1054f19d5870STao Ma 		ret = ext4_walk_page_buffers(handle, page_buffers(page),
1055f19d5870STao Ma 					     from, to, NULL,
1056f19d5870STao Ma 					     do_journal_get_write_access);
1057b46be050SAndrey Savochkin 	}
1058bfc1af65SNick Piggin 
1059bfc1af65SNick Piggin 	if (ret) {
1060bfc1af65SNick Piggin 		unlock_page(page);
1061ae4d5372SAneesh Kumar K.V 		/*
10626e1db88dSChristoph Hellwig 		 * __block_write_begin may have instantiated a few blocks
1063ae4d5372SAneesh Kumar K.V 		 * outside i_size.  Trim these off again. Don't need
1064ae4d5372SAneesh Kumar K.V 		 * i_size_read because we hold i_mutex.
10651938a150SAneesh Kumar K.V 		 *
10661938a150SAneesh Kumar K.V 		 * Add inode to orphan list in case we crash before
10671938a150SAneesh Kumar K.V 		 * truncate finishes
1068ae4d5372SAneesh Kumar K.V 		 */
1069ffacfa7aSJan Kara 		if (pos + len > inode->i_size && ext4_can_truncate(inode))
10701938a150SAneesh Kumar K.V 			ext4_orphan_add(handle, inode);
10711938a150SAneesh Kumar K.V 
10721938a150SAneesh Kumar K.V 		ext4_journal_stop(handle);
10731938a150SAneesh Kumar K.V 		if (pos + len > inode->i_size) {
1074b9a4207dSJan Kara 			ext4_truncate_failed_write(inode);
10751938a150SAneesh Kumar K.V 			/*
1076ffacfa7aSJan Kara 			 * If truncate failed early the inode might
10771938a150SAneesh Kumar K.V 			 * still be on the orphan list; we need to
10781938a150SAneesh Kumar K.V 			 * make sure the inode is removed from the
10791938a150SAneesh Kumar K.V 			 * orphan list in that case.
10801938a150SAneesh Kumar K.V 			 */
10811938a150SAneesh Kumar K.V 			if (inode->i_nlink)
10821938a150SAneesh Kumar K.V 				ext4_orphan_del(NULL, inode);
10831938a150SAneesh Kumar K.V 		}
1084bfc1af65SNick Piggin 
108547564bfbSTheodore Ts'o 		if (ret == -ENOSPC &&
108647564bfbSTheodore Ts'o 		    ext4_should_retry_alloc(inode->i_sb, &retries))
108747564bfbSTheodore Ts'o 			goto retry_journal;
108847564bfbSTheodore Ts'o 		page_cache_release(page);
108947564bfbSTheodore Ts'o 		return ret;
109047564bfbSTheodore Ts'o 	}
109147564bfbSTheodore Ts'o 	*pagep = page;
1092ac27a0ecSDave Kleikamp 	return ret;
1093ac27a0ecSDave Kleikamp }
1094ac27a0ecSDave Kleikamp 
1095bfc1af65SNick Piggin /* For write_end() in data=journal mode */
1096bfc1af65SNick Piggin static int write_end_fn(handle_t *handle, struct buffer_head *bh)
1097ac27a0ecSDave Kleikamp {
109813fca323STheodore Ts'o 	int ret;
1099ac27a0ecSDave Kleikamp 	if (!buffer_mapped(bh) || buffer_freed(bh))
1100ac27a0ecSDave Kleikamp 		return 0;
1101ac27a0ecSDave Kleikamp 	set_buffer_uptodate(bh);
110213fca323STheodore Ts'o 	ret = ext4_handle_dirty_metadata(handle, NULL, bh);
110313fca323STheodore Ts'o 	clear_buffer_meta(bh);
110413fca323STheodore Ts'o 	clear_buffer_prio(bh);
110513fca323STheodore Ts'o 	return ret;
1106ac27a0ecSDave Kleikamp }
1107ac27a0ecSDave Kleikamp 
1108eed4333fSZheng Liu /*
1109eed4333fSZheng Liu  * We need to pick up the new inode size which generic_commit_write gave us
1110eed4333fSZheng Liu  * `file' can be NULL - eg, when called from page_symlink().
1111eed4333fSZheng Liu  *
1112eed4333fSZheng Liu  * ext4 never places buffers on inode->i_mapping->private_list.  metadata
1113eed4333fSZheng Liu  * buffers are managed internally.
1114eed4333fSZheng Liu  */
1115eed4333fSZheng Liu static int ext4_write_end(struct file *file,
1116f8514083SAneesh Kumar K.V 			  struct address_space *mapping,
1117f8514083SAneesh Kumar K.V 			  loff_t pos, unsigned len, unsigned copied,
1118f8514083SAneesh Kumar K.V 			  struct page *page, void *fsdata)
1119f8514083SAneesh Kumar K.V {
1120f8514083SAneesh Kumar K.V 	handle_t *handle = ext4_journal_current_handle();
1121eed4333fSZheng Liu 	struct inode *inode = mapping->host;
11220572639fSXiaoguang Wang 	loff_t old_size = inode->i_size;
1123eed4333fSZheng Liu 	int ret = 0, ret2;
1124eed4333fSZheng Liu 	int i_size_changed = 0;
1125eed4333fSZheng Liu 
1126eed4333fSZheng Liu 	trace_ext4_write_end(inode, pos, len, copied);
1127eed4333fSZheng Liu 	if (ext4_test_inode_state(inode, EXT4_STATE_ORDERED_MODE)) {
1128eed4333fSZheng Liu 		ret = ext4_jbd2_file_inode(handle, inode);
1129eed4333fSZheng Liu 		if (ret) {
1130eed4333fSZheng Liu 			unlock_page(page);
1131eed4333fSZheng Liu 			page_cache_release(page);
1132eed4333fSZheng Liu 			goto errout;
1133eed4333fSZheng Liu 		}
1134eed4333fSZheng Liu 	}
1135f8514083SAneesh Kumar K.V 
113642c832deSTheodore Ts'o 	if (ext4_has_inline_data(inode)) {
113742c832deSTheodore Ts'o 		ret = ext4_write_inline_data_end(inode, pos, len,
1138f19d5870STao Ma 						 copied, page);
113942c832deSTheodore Ts'o 		if (ret < 0)
114042c832deSTheodore Ts'o 			goto errout;
114142c832deSTheodore Ts'o 		copied = ret;
114242c832deSTheodore Ts'o 	} else
1143f19d5870STao Ma 		copied = block_write_end(file, mapping, pos,
1144f19d5870STao Ma 					 len, copied, page, fsdata);
1145f8514083SAneesh Kumar K.V 	/*
11464631dbf6SDmitry Monakhov 	 * it's important to update i_size while still holding page lock:
1147f8514083SAneesh Kumar K.V 	 * page writeout could otherwise come in and zero beyond i_size.
1148f8514083SAneesh Kumar K.V 	 */
11494631dbf6SDmitry Monakhov 	i_size_changed = ext4_update_inode_size(inode, pos + copied);
1150f8514083SAneesh Kumar K.V 	unlock_page(page);
1151f8514083SAneesh Kumar K.V 	page_cache_release(page);
1152f8514083SAneesh Kumar K.V 
11530572639fSXiaoguang Wang 	if (old_size < pos)
11540572639fSXiaoguang Wang 		pagecache_isize_extended(inode, old_size, pos);
1155f8514083SAneesh Kumar K.V 	/*
1156f8514083SAneesh Kumar K.V 	 * Don't mark the inode dirty under page lock. First, it unnecessarily
1157f8514083SAneesh Kumar K.V 	 * makes the holding time of page lock longer. Second, it forces lock
1158f8514083SAneesh Kumar K.V 	 * ordering of page lock and transaction start for journaling
1159f8514083SAneesh Kumar K.V 	 * filesystems.
1160f8514083SAneesh Kumar K.V 	 */
1161f8514083SAneesh Kumar K.V 	if (i_size_changed)
1162f8514083SAneesh Kumar K.V 		ext4_mark_inode_dirty(handle, inode);
1163f8514083SAneesh Kumar K.V 
1164ffacfa7aSJan Kara 	if (pos + len > inode->i_size && ext4_can_truncate(inode))
1165f8514083SAneesh Kumar K.V 		/* if we have allocated more blocks and copied
1166f8514083SAneesh Kumar K.V 		 * less. We will have blocks allocated outside
1167f8514083SAneesh Kumar K.V 		 * inode->i_size. So truncate them
1168f8514083SAneesh Kumar K.V 		 */
1169f8514083SAneesh Kumar K.V 		ext4_orphan_add(handle, inode);
117074d553aaSTheodore Ts'o errout:
1171617ba13bSMingming Cao 	ret2 = ext4_journal_stop(handle);
1172ac27a0ecSDave Kleikamp 	if (!ret)
1173ac27a0ecSDave Kleikamp 		ret = ret2;
1174bfc1af65SNick Piggin 
1175f8514083SAneesh Kumar K.V 	if (pos + len > inode->i_size) {
1176b9a4207dSJan Kara 		ext4_truncate_failed_write(inode);
1177f8514083SAneesh Kumar K.V 		/*
1178ffacfa7aSJan Kara 		 * If truncate failed early the inode might still be
1179f8514083SAneesh Kumar K.V 		 * on the orphan list; we need to make sure the inode
1180f8514083SAneesh Kumar K.V 		 * is removed from the orphan list in that case.
1181f8514083SAneesh Kumar K.V 		 */
1182f8514083SAneesh Kumar K.V 		if (inode->i_nlink)
1183f8514083SAneesh Kumar K.V 			ext4_orphan_del(NULL, inode);
1184f8514083SAneesh Kumar K.V 	}
1185f8514083SAneesh Kumar K.V 
1186bfc1af65SNick Piggin 	return ret ? ret : copied;
1187ac27a0ecSDave Kleikamp }
1188ac27a0ecSDave Kleikamp 
1189bfc1af65SNick Piggin static int ext4_journalled_write_end(struct file *file,
1190bfc1af65SNick Piggin 				     struct address_space *mapping,
1191bfc1af65SNick Piggin 				     loff_t pos, unsigned len, unsigned copied,
1192bfc1af65SNick Piggin 				     struct page *page, void *fsdata)
1193ac27a0ecSDave Kleikamp {
1194617ba13bSMingming Cao 	handle_t *handle = ext4_journal_current_handle();
1195bfc1af65SNick Piggin 	struct inode *inode = mapping->host;
11960572639fSXiaoguang Wang 	loff_t old_size = inode->i_size;
1197ac27a0ecSDave Kleikamp 	int ret = 0, ret2;
1198ac27a0ecSDave Kleikamp 	int partial = 0;
1199bfc1af65SNick Piggin 	unsigned from, to;
12004631dbf6SDmitry Monakhov 	int size_changed = 0;
1201ac27a0ecSDave Kleikamp 
12029bffad1eSTheodore Ts'o 	trace_ext4_journalled_write_end(inode, pos, len, copied);
1203bfc1af65SNick Piggin 	from = pos & (PAGE_CACHE_SIZE - 1);
1204bfc1af65SNick Piggin 	to = from + len;
1205bfc1af65SNick Piggin 
1206441c8508SCurt Wohlgemuth 	BUG_ON(!ext4_handle_valid(handle));
1207441c8508SCurt Wohlgemuth 
12083fdcfb66STao Ma 	if (ext4_has_inline_data(inode))
12093fdcfb66STao Ma 		copied = ext4_write_inline_data_end(inode, pos, len,
12103fdcfb66STao Ma 						    copied, page);
12113fdcfb66STao Ma 	else {
1212bfc1af65SNick Piggin 		if (copied < len) {
1213bfc1af65SNick Piggin 			if (!PageUptodate(page))
1214bfc1af65SNick Piggin 				copied = 0;
1215bfc1af65SNick Piggin 			page_zero_new_buffers(page, from+copied, to);
1216bfc1af65SNick Piggin 		}
1217ac27a0ecSDave Kleikamp 
1218f19d5870STao Ma 		ret = ext4_walk_page_buffers(handle, page_buffers(page), from,
1219bfc1af65SNick Piggin 					     to, &partial, write_end_fn);
1220ac27a0ecSDave Kleikamp 		if (!partial)
1221ac27a0ecSDave Kleikamp 			SetPageUptodate(page);
12223fdcfb66STao Ma 	}
12234631dbf6SDmitry Monakhov 	size_changed = ext4_update_inode_size(inode, pos + copied);
122419f5fb7aSTheodore Ts'o 	ext4_set_inode_state(inode, EXT4_STATE_JDATA);
12252d859db3SJan Kara 	EXT4_I(inode)->i_datasync_tid = handle->h_transaction->t_tid;
12264631dbf6SDmitry Monakhov 	unlock_page(page);
12274631dbf6SDmitry Monakhov 	page_cache_release(page);
12284631dbf6SDmitry Monakhov 
12290572639fSXiaoguang Wang 	if (old_size < pos)
12300572639fSXiaoguang Wang 		pagecache_isize_extended(inode, old_size, pos);
12310572639fSXiaoguang Wang 
12324631dbf6SDmitry Monakhov 	if (size_changed) {
1233617ba13bSMingming Cao 		ret2 = ext4_mark_inode_dirty(handle, inode);
1234ac27a0ecSDave Kleikamp 		if (!ret)
1235ac27a0ecSDave Kleikamp 			ret = ret2;
1236ac27a0ecSDave Kleikamp 	}
1237bfc1af65SNick Piggin 
1238ffacfa7aSJan Kara 	if (pos + len > inode->i_size && ext4_can_truncate(inode))
1239f8514083SAneesh Kumar K.V 		/* if we have allocated more blocks and copied
1240f8514083SAneesh Kumar K.V 		 * less. We will have blocks allocated outside
1241f8514083SAneesh Kumar K.V 		 * inode->i_size. So truncate them
1242f8514083SAneesh Kumar K.V 		 */
1243f8514083SAneesh Kumar K.V 		ext4_orphan_add(handle, inode);
1244f8514083SAneesh Kumar K.V 
1245617ba13bSMingming Cao 	ret2 = ext4_journal_stop(handle);
1246ac27a0ecSDave Kleikamp 	if (!ret)
1247ac27a0ecSDave Kleikamp 		ret = ret2;
1248f8514083SAneesh Kumar K.V 	if (pos + len > inode->i_size) {
1249b9a4207dSJan Kara 		ext4_truncate_failed_write(inode);
1250f8514083SAneesh Kumar K.V 		/*
1251ffacfa7aSJan Kara 		 * If truncate failed early the inode might still be
1252f8514083SAneesh Kumar K.V 		 * on the orphan list; we need to make sure the inode
1253f8514083SAneesh Kumar K.V 		 * is removed from the orphan list in that case.
1254f8514083SAneesh Kumar K.V 		 */
1255f8514083SAneesh Kumar K.V 		if (inode->i_nlink)
1256f8514083SAneesh Kumar K.V 			ext4_orphan_del(NULL, inode);
1257f8514083SAneesh Kumar K.V 	}
1258bfc1af65SNick Piggin 
1259bfc1af65SNick Piggin 	return ret ? ret : copied;
1260ac27a0ecSDave Kleikamp }
1261d2a17637SMingming Cao 
12629d0be502STheodore Ts'o /*
12637b415bf6SAditya Kali  * Reserve a single cluster located at lblock
12649d0be502STheodore Ts'o  */
126501f49d0bSTheodore Ts'o static int ext4_da_reserve_space(struct inode *inode, ext4_lblk_t lblock)
1266d2a17637SMingming Cao {
1267d2a17637SMingming Cao 	struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb);
12680637c6f4STheodore Ts'o 	struct ext4_inode_info *ei = EXT4_I(inode);
12697b415bf6SAditya Kali 	unsigned int md_needed;
12705dd4056dSChristoph Hellwig 	int ret;
1271d2a17637SMingming Cao 
127260e58e0fSMingming Cao 	/*
127372b8ab9dSEric Sandeen 	 * We will charge metadata quota at writeout time; this saves
127472b8ab9dSEric Sandeen 	 * us from metadata over-estimation, though we may go over by
127572b8ab9dSEric Sandeen 	 * a small amount in the end.  Here we just reserve for data.
127660e58e0fSMingming Cao 	 */
12777b415bf6SAditya Kali 	ret = dquot_reserve_block(inode, EXT4_C2B(sbi, 1));
12785dd4056dSChristoph Hellwig 	if (ret)
12795dd4056dSChristoph Hellwig 		return ret;
128003179fe9STheodore Ts'o 
128103179fe9STheodore Ts'o 	/*
128203179fe9STheodore Ts'o 	 * recalculate the amount of metadata blocks to reserve
128303179fe9STheodore Ts'o 	 * in order to allocate nrblocks
128403179fe9STheodore Ts'o 	 * worse case is one extent per block
128503179fe9STheodore Ts'o 	 */
128603179fe9STheodore Ts'o 	spin_lock(&ei->i_block_reservation_lock);
128703179fe9STheodore Ts'o 	/*
128803179fe9STheodore Ts'o 	 * ext4_calc_metadata_amount() has side effects, which we have
128903179fe9STheodore Ts'o 	 * to be prepared undo if we fail to claim space.
129003179fe9STheodore Ts'o 	 */
129171d4f7d0STheodore Ts'o 	md_needed = 0;
129271d4f7d0STheodore Ts'o 	trace_ext4_da_reserve_space(inode, 0);
129303179fe9STheodore Ts'o 
129471d4f7d0STheodore Ts'o 	if (ext4_claim_free_clusters(sbi, 1, 0)) {
129503179fe9STheodore Ts'o 		spin_unlock(&ei->i_block_reservation_lock);
129603179fe9STheodore Ts'o 		dquot_release_reservation_block(inode, EXT4_C2B(sbi, 1));
1297d2a17637SMingming Cao 		return -ENOSPC;
1298d2a17637SMingming Cao 	}
12999d0be502STheodore Ts'o 	ei->i_reserved_data_blocks++;
13000637c6f4STheodore Ts'o 	spin_unlock(&ei->i_block_reservation_lock);
130139bc680aSDmitry Monakhov 
1302d2a17637SMingming Cao 	return 0;       /* success */
1303d2a17637SMingming Cao }
1304d2a17637SMingming Cao 
130512219aeaSAneesh Kumar K.V static void ext4_da_release_space(struct inode *inode, int to_free)
1306d2a17637SMingming Cao {
1307d2a17637SMingming Cao 	struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb);
13080637c6f4STheodore Ts'o 	struct ext4_inode_info *ei = EXT4_I(inode);
1309d2a17637SMingming Cao 
1310cd213226SMingming Cao 	if (!to_free)
1311cd213226SMingming Cao 		return;		/* Nothing to release, exit */
1312cd213226SMingming Cao 
1313d2a17637SMingming Cao 	spin_lock(&EXT4_I(inode)->i_block_reservation_lock);
1314cd213226SMingming Cao 
13155a58ec87SLi Zefan 	trace_ext4_da_release_space(inode, to_free);
13160637c6f4STheodore Ts'o 	if (unlikely(to_free > ei->i_reserved_data_blocks)) {
1317cd213226SMingming Cao 		/*
13180637c6f4STheodore Ts'o 		 * if there aren't enough reserved blocks, then the
13190637c6f4STheodore Ts'o 		 * counter is messed up somewhere.  Since this
13200637c6f4STheodore Ts'o 		 * function is called from invalidate page, it's
13210637c6f4STheodore Ts'o 		 * harmless to return without any action.
1322cd213226SMingming Cao 		 */
13238de5c325STheodore Ts'o 		ext4_warning(inode->i_sb, "ext4_da_release_space: "
13240637c6f4STheodore Ts'o 			 "ino %lu, to_free %d with only %d reserved "
13251084f252STheodore Ts'o 			 "data blocks", inode->i_ino, to_free,
13260637c6f4STheodore Ts'o 			 ei->i_reserved_data_blocks);
13270637c6f4STheodore Ts'o 		WARN_ON(1);
13280637c6f4STheodore Ts'o 		to_free = ei->i_reserved_data_blocks;
13290637c6f4STheodore Ts'o 	}
13300637c6f4STheodore Ts'o 	ei->i_reserved_data_blocks -= to_free;
13310637c6f4STheodore Ts'o 
133272b8ab9dSEric Sandeen 	/* update fs dirty data blocks counter */
133357042651STheodore Ts'o 	percpu_counter_sub(&sbi->s_dirtyclusters_counter, to_free);
1334d2a17637SMingming Cao 
1335d2a17637SMingming Cao 	spin_unlock(&EXT4_I(inode)->i_block_reservation_lock);
133660e58e0fSMingming Cao 
13377b415bf6SAditya Kali 	dquot_release_reservation_block(inode, EXT4_C2B(sbi, to_free));
1338d2a17637SMingming Cao }
1339d2a17637SMingming Cao 
1340d2a17637SMingming Cao static void ext4_da_page_release_reservation(struct page *page,
1341ca99fdd2SLukas Czerner 					     unsigned int offset,
1342ca99fdd2SLukas Czerner 					     unsigned int length)
1343d2a17637SMingming Cao {
1344d2a17637SMingming Cao 	int to_release = 0;
1345d2a17637SMingming Cao 	struct buffer_head *head, *bh;
1346d2a17637SMingming Cao 	unsigned int curr_off = 0;
13477b415bf6SAditya Kali 	struct inode *inode = page->mapping->host;
13487b415bf6SAditya Kali 	struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb);
1349ca99fdd2SLukas Czerner 	unsigned int stop = offset + length;
13507b415bf6SAditya Kali 	int num_clusters;
135151865fdaSZheng Liu 	ext4_fsblk_t lblk;
1352d2a17637SMingming Cao 
1353ca99fdd2SLukas Czerner 	BUG_ON(stop > PAGE_CACHE_SIZE || stop < length);
1354ca99fdd2SLukas Czerner 
1355d2a17637SMingming Cao 	head = page_buffers(page);
1356d2a17637SMingming Cao 	bh = head;
1357d2a17637SMingming Cao 	do {
1358d2a17637SMingming Cao 		unsigned int next_off = curr_off + bh->b_size;
1359d2a17637SMingming Cao 
1360ca99fdd2SLukas Czerner 		if (next_off > stop)
1361ca99fdd2SLukas Czerner 			break;
1362ca99fdd2SLukas Czerner 
1363d2a17637SMingming Cao 		if ((offset <= curr_off) && (buffer_delay(bh))) {
1364d2a17637SMingming Cao 			to_release++;
1365d2a17637SMingming Cao 			clear_buffer_delay(bh);
1366d2a17637SMingming Cao 		}
1367d2a17637SMingming Cao 		curr_off = next_off;
1368d2a17637SMingming Cao 	} while ((bh = bh->b_this_page) != head);
13697b415bf6SAditya Kali 
137051865fdaSZheng Liu 	if (to_release) {
137151865fdaSZheng Liu 		lblk = page->index << (PAGE_CACHE_SHIFT - inode->i_blkbits);
137251865fdaSZheng Liu 		ext4_es_remove_extent(inode, lblk, to_release);
137351865fdaSZheng Liu 	}
137451865fdaSZheng Liu 
13757b415bf6SAditya Kali 	/* If we have released all the blocks belonging to a cluster, then we
13767b415bf6SAditya Kali 	 * need to release the reserved space for that cluster. */
13777b415bf6SAditya Kali 	num_clusters = EXT4_NUM_B2C(sbi, to_release);
13787b415bf6SAditya Kali 	while (num_clusters > 0) {
13797b415bf6SAditya Kali 		lblk = (page->index << (PAGE_CACHE_SHIFT - inode->i_blkbits)) +
13807b415bf6SAditya Kali 			((num_clusters - 1) << sbi->s_cluster_bits);
13817b415bf6SAditya Kali 		if (sbi->s_cluster_ratio == 1 ||
13827d1b1fbcSZheng Liu 		    !ext4_find_delalloc_cluster(inode, lblk))
13837b415bf6SAditya Kali 			ext4_da_release_space(inode, 1);
13847b415bf6SAditya Kali 
13857b415bf6SAditya Kali 		num_clusters--;
13867b415bf6SAditya Kali 	}
1387d2a17637SMingming Cao }
1388ac27a0ecSDave Kleikamp 
1389ac27a0ecSDave Kleikamp /*
139064769240SAlex Tomas  * Delayed allocation stuff
139164769240SAlex Tomas  */
139264769240SAlex Tomas 
13934e7ea81dSJan Kara struct mpage_da_data {
13944e7ea81dSJan Kara 	struct inode *inode;
13954e7ea81dSJan Kara 	struct writeback_control *wbc;
13966b523df4SJan Kara 
13974e7ea81dSJan Kara 	pgoff_t first_page;	/* The first page to write */
13984e7ea81dSJan Kara 	pgoff_t next_page;	/* Current page to examine */
13994e7ea81dSJan Kara 	pgoff_t last_page;	/* Last page to examine */
140064769240SAlex Tomas 	/*
14014e7ea81dSJan Kara 	 * Extent to map - this can be after first_page because that can be
14024e7ea81dSJan Kara 	 * fully mapped. We somewhat abuse m_flags to store whether the extent
14034e7ea81dSJan Kara 	 * is delalloc or unwritten.
140464769240SAlex Tomas 	 */
14054e7ea81dSJan Kara 	struct ext4_map_blocks map;
14064e7ea81dSJan Kara 	struct ext4_io_submit io_submit;	/* IO submission data */
14074e7ea81dSJan Kara };
140864769240SAlex Tomas 
14094e7ea81dSJan Kara static void mpage_release_unused_pages(struct mpage_da_data *mpd,
14104e7ea81dSJan Kara 				       bool invalidate)
1411c4a0c46eSAneesh Kumar K.V {
1412c4a0c46eSAneesh Kumar K.V 	int nr_pages, i;
1413c4a0c46eSAneesh Kumar K.V 	pgoff_t index, end;
1414c4a0c46eSAneesh Kumar K.V 	struct pagevec pvec;
1415c4a0c46eSAneesh Kumar K.V 	struct inode *inode = mpd->inode;
1416c4a0c46eSAneesh Kumar K.V 	struct address_space *mapping = inode->i_mapping;
14174e7ea81dSJan Kara 
14184e7ea81dSJan Kara 	/* This is necessary when next_page == 0. */
14194e7ea81dSJan Kara 	if (mpd->first_page >= mpd->next_page)
14204e7ea81dSJan Kara 		return;
1421c4a0c46eSAneesh Kumar K.V 
1422c7f5938aSCurt Wohlgemuth 	index = mpd->first_page;
1423c7f5938aSCurt Wohlgemuth 	end   = mpd->next_page - 1;
14244e7ea81dSJan Kara 	if (invalidate) {
14254e7ea81dSJan Kara 		ext4_lblk_t start, last;
142651865fdaSZheng Liu 		start = index << (PAGE_CACHE_SHIFT - inode->i_blkbits);
142751865fdaSZheng Liu 		last = end << (PAGE_CACHE_SHIFT - inode->i_blkbits);
142851865fdaSZheng Liu 		ext4_es_remove_extent(inode, start, last - start + 1);
14294e7ea81dSJan Kara 	}
143051865fdaSZheng Liu 
143166bea92cSEric Sandeen 	pagevec_init(&pvec, 0);
1432c4a0c46eSAneesh Kumar K.V 	while (index <= end) {
1433c4a0c46eSAneesh Kumar K.V 		nr_pages = pagevec_lookup(&pvec, mapping, index, PAGEVEC_SIZE);
1434c4a0c46eSAneesh Kumar K.V 		if (nr_pages == 0)
1435c4a0c46eSAneesh Kumar K.V 			break;
1436c4a0c46eSAneesh Kumar K.V 		for (i = 0; i < nr_pages; i++) {
1437c4a0c46eSAneesh Kumar K.V 			struct page *page = pvec.pages[i];
14389b1d0998SJan Kara 			if (page->index > end)
1439c4a0c46eSAneesh Kumar K.V 				break;
1440c4a0c46eSAneesh Kumar K.V 			BUG_ON(!PageLocked(page));
1441c4a0c46eSAneesh Kumar K.V 			BUG_ON(PageWriteback(page));
14424e7ea81dSJan Kara 			if (invalidate) {
1443d47992f8SLukas Czerner 				block_invalidatepage(page, 0, PAGE_CACHE_SIZE);
1444c4a0c46eSAneesh Kumar K.V 				ClearPageUptodate(page);
14454e7ea81dSJan Kara 			}
1446c4a0c46eSAneesh Kumar K.V 			unlock_page(page);
1447c4a0c46eSAneesh Kumar K.V 		}
14489b1d0998SJan Kara 		index = pvec.pages[nr_pages - 1]->index + 1;
14499b1d0998SJan Kara 		pagevec_release(&pvec);
1450c4a0c46eSAneesh Kumar K.V 	}
1451c4a0c46eSAneesh Kumar K.V }
1452c4a0c46eSAneesh Kumar K.V 
1453df22291fSAneesh Kumar K.V static void ext4_print_free_blocks(struct inode *inode)
1454df22291fSAneesh Kumar K.V {
1455df22291fSAneesh Kumar K.V 	struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb);
145692b97816STheodore Ts'o 	struct super_block *sb = inode->i_sb;
1457f78ee70dSLukas Czerner 	struct ext4_inode_info *ei = EXT4_I(inode);
145892b97816STheodore Ts'o 
145992b97816STheodore Ts'o 	ext4_msg(sb, KERN_CRIT, "Total free blocks count %lld",
14605dee5437STheodore Ts'o 	       EXT4_C2B(EXT4_SB(inode->i_sb),
1461f78ee70dSLukas Czerner 			ext4_count_free_clusters(sb)));
146292b97816STheodore Ts'o 	ext4_msg(sb, KERN_CRIT, "Free/Dirty block details");
146392b97816STheodore Ts'o 	ext4_msg(sb, KERN_CRIT, "free_blocks=%lld",
1464f78ee70dSLukas Czerner 	       (long long) EXT4_C2B(EXT4_SB(sb),
146557042651STheodore Ts'o 		percpu_counter_sum(&sbi->s_freeclusters_counter)));
146692b97816STheodore Ts'o 	ext4_msg(sb, KERN_CRIT, "dirty_blocks=%lld",
1467f78ee70dSLukas Czerner 	       (long long) EXT4_C2B(EXT4_SB(sb),
14687b415bf6SAditya Kali 		percpu_counter_sum(&sbi->s_dirtyclusters_counter)));
146992b97816STheodore Ts'o 	ext4_msg(sb, KERN_CRIT, "Block reservation details");
147092b97816STheodore Ts'o 	ext4_msg(sb, KERN_CRIT, "i_reserved_data_blocks=%u",
1471f78ee70dSLukas Czerner 		 ei->i_reserved_data_blocks);
1472df22291fSAneesh Kumar K.V 	return;
1473df22291fSAneesh Kumar K.V }
1474df22291fSAneesh Kumar K.V 
1475c364b22cSAneesh Kumar K.V static int ext4_bh_delay_or_unwritten(handle_t *handle, struct buffer_head *bh)
147629fa89d0SAneesh Kumar K.V {
1477c364b22cSAneesh Kumar K.V 	return (buffer_delay(bh) || buffer_unwritten(bh)) && buffer_dirty(bh);
147829fa89d0SAneesh Kumar K.V }
147929fa89d0SAneesh Kumar K.V 
148064769240SAlex Tomas /*
14815356f261SAditya Kali  * This function is grabs code from the very beginning of
14825356f261SAditya Kali  * ext4_map_blocks, but assumes that the caller is from delayed write
14835356f261SAditya Kali  * time. This function looks up the requested blocks and sets the
14845356f261SAditya Kali  * buffer delay bit under the protection of i_data_sem.
14855356f261SAditya Kali  */
14865356f261SAditya Kali static int ext4_da_map_blocks(struct inode *inode, sector_t iblock,
14875356f261SAditya Kali 			      struct ext4_map_blocks *map,
14885356f261SAditya Kali 			      struct buffer_head *bh)
14895356f261SAditya Kali {
1490d100eef2SZheng Liu 	struct extent_status es;
14915356f261SAditya Kali 	int retval;
14925356f261SAditya Kali 	sector_t invalid_block = ~((sector_t) 0xffff);
1493921f266bSDmitry Monakhov #ifdef ES_AGGRESSIVE_TEST
1494921f266bSDmitry Monakhov 	struct ext4_map_blocks orig_map;
1495921f266bSDmitry Monakhov 
1496921f266bSDmitry Monakhov 	memcpy(&orig_map, map, sizeof(*map));
1497921f266bSDmitry Monakhov #endif
14985356f261SAditya Kali 
14995356f261SAditya Kali 	if (invalid_block < ext4_blocks_count(EXT4_SB(inode->i_sb)->s_es))
15005356f261SAditya Kali 		invalid_block = ~0;
15015356f261SAditya Kali 
15025356f261SAditya Kali 	map->m_flags = 0;
15035356f261SAditya Kali 	ext_debug("ext4_da_map_blocks(): inode %lu, max_blocks %u,"
15045356f261SAditya Kali 		  "logical block %lu\n", inode->i_ino, map->m_len,
15055356f261SAditya Kali 		  (unsigned long) map->m_lblk);
1506d100eef2SZheng Liu 
1507d100eef2SZheng Liu 	/* Lookup extent status tree firstly */
1508d100eef2SZheng Liu 	if (ext4_es_lookup_extent(inode, iblock, &es)) {
1509d100eef2SZheng Liu 		if (ext4_es_is_hole(&es)) {
1510d100eef2SZheng Liu 			retval = 0;
1511c8b459f4SLukas Czerner 			down_read(&EXT4_I(inode)->i_data_sem);
1512d100eef2SZheng Liu 			goto add_delayed;
1513d100eef2SZheng Liu 		}
1514d100eef2SZheng Liu 
1515d100eef2SZheng Liu 		/*
1516d100eef2SZheng Liu 		 * Delayed extent could be allocated by fallocate.
1517d100eef2SZheng Liu 		 * So we need to check it.
1518d100eef2SZheng Liu 		 */
1519d100eef2SZheng Liu 		if (ext4_es_is_delayed(&es) && !ext4_es_is_unwritten(&es)) {
1520d100eef2SZheng Liu 			map_bh(bh, inode->i_sb, invalid_block);
1521d100eef2SZheng Liu 			set_buffer_new(bh);
1522d100eef2SZheng Liu 			set_buffer_delay(bh);
1523d100eef2SZheng Liu 			return 0;
1524d100eef2SZheng Liu 		}
1525d100eef2SZheng Liu 
1526d100eef2SZheng Liu 		map->m_pblk = ext4_es_pblock(&es) + iblock - es.es_lblk;
1527d100eef2SZheng Liu 		retval = es.es_len - (iblock - es.es_lblk);
1528d100eef2SZheng Liu 		if (retval > map->m_len)
1529d100eef2SZheng Liu 			retval = map->m_len;
1530d100eef2SZheng Liu 		map->m_len = retval;
1531d100eef2SZheng Liu 		if (ext4_es_is_written(&es))
1532d100eef2SZheng Liu 			map->m_flags |= EXT4_MAP_MAPPED;
1533d100eef2SZheng Liu 		else if (ext4_es_is_unwritten(&es))
1534d100eef2SZheng Liu 			map->m_flags |= EXT4_MAP_UNWRITTEN;
1535d100eef2SZheng Liu 		else
1536d100eef2SZheng Liu 			BUG_ON(1);
1537d100eef2SZheng Liu 
1538921f266bSDmitry Monakhov #ifdef ES_AGGRESSIVE_TEST
1539921f266bSDmitry Monakhov 		ext4_map_blocks_es_recheck(NULL, inode, map, &orig_map, 0);
1540921f266bSDmitry Monakhov #endif
1541d100eef2SZheng Liu 		return retval;
1542d100eef2SZheng Liu 	}
1543d100eef2SZheng Liu 
15445356f261SAditya Kali 	/*
15455356f261SAditya Kali 	 * Try to see if we can get the block without requesting a new
15465356f261SAditya Kali 	 * file system block.
15475356f261SAditya Kali 	 */
1548c8b459f4SLukas Czerner 	down_read(&EXT4_I(inode)->i_data_sem);
1549cbd7584eSJan Kara 	if (ext4_has_inline_data(inode))
15509c3569b5STao Ma 		retval = 0;
1551cbd7584eSJan Kara 	else if (ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS))
15522f8e0a7cSZheng Liu 		retval = ext4_ext_map_blocks(NULL, inode, map, 0);
15535356f261SAditya Kali 	else
15542f8e0a7cSZheng Liu 		retval = ext4_ind_map_blocks(NULL, inode, map, 0);
15555356f261SAditya Kali 
1556d100eef2SZheng Liu add_delayed:
15575356f261SAditya Kali 	if (retval == 0) {
1558f7fec032SZheng Liu 		int ret;
15595356f261SAditya Kali 		/*
15605356f261SAditya Kali 		 * XXX: __block_prepare_write() unmaps passed block,
15615356f261SAditya Kali 		 * is it OK?
15625356f261SAditya Kali 		 */
1563386ad67cSLukas Czerner 		/*
1564386ad67cSLukas Czerner 		 * If the block was allocated from previously allocated cluster,
1565386ad67cSLukas Czerner 		 * then we don't need to reserve it again. However we still need
1566386ad67cSLukas Czerner 		 * to reserve metadata for every block we're going to write.
1567386ad67cSLukas Czerner 		 */
1568cbd7584eSJan Kara 		if (EXT4_SB(inode->i_sb)->s_cluster_ratio <= 1 ||
1569cbd7584eSJan Kara 		    !ext4_find_delalloc_cluster(inode, map->m_lblk)) {
1570f7fec032SZheng Liu 			ret = ext4_da_reserve_space(inode, iblock);
1571f7fec032SZheng Liu 			if (ret) {
15725356f261SAditya Kali 				/* not enough space to reserve */
1573f7fec032SZheng Liu 				retval = ret;
15745356f261SAditya Kali 				goto out_unlock;
15755356f261SAditya Kali 			}
1576f7fec032SZheng Liu 		}
15775356f261SAditya Kali 
1578f7fec032SZheng Liu 		ret = ext4_es_insert_extent(inode, map->m_lblk, map->m_len,
1579fdc0212eSZheng Liu 					    ~0, EXTENT_STATUS_DELAYED);
1580f7fec032SZheng Liu 		if (ret) {
1581f7fec032SZheng Liu 			retval = ret;
158251865fdaSZheng Liu 			goto out_unlock;
1583f7fec032SZheng Liu 		}
158451865fdaSZheng Liu 
15855356f261SAditya Kali 		map_bh(bh, inode->i_sb, invalid_block);
15865356f261SAditya Kali 		set_buffer_new(bh);
15875356f261SAditya Kali 		set_buffer_delay(bh);
1588f7fec032SZheng Liu 	} else if (retval > 0) {
1589f7fec032SZheng Liu 		int ret;
15903be78c73STheodore Ts'o 		unsigned int status;
1591f7fec032SZheng Liu 
159244fb851dSZheng Liu 		if (unlikely(retval != map->m_len)) {
159344fb851dSZheng Liu 			ext4_warning(inode->i_sb,
159444fb851dSZheng Liu 				     "ES len assertion failed for inode "
159544fb851dSZheng Liu 				     "%lu: retval %d != map->m_len %d",
159644fb851dSZheng Liu 				     inode->i_ino, retval, map->m_len);
159744fb851dSZheng Liu 			WARN_ON(1);
1598921f266bSDmitry Monakhov 		}
1599921f266bSDmitry Monakhov 
1600f7fec032SZheng Liu 		status = map->m_flags & EXT4_MAP_UNWRITTEN ?
1601f7fec032SZheng Liu 				EXTENT_STATUS_UNWRITTEN : EXTENT_STATUS_WRITTEN;
1602f7fec032SZheng Liu 		ret = ext4_es_insert_extent(inode, map->m_lblk, map->m_len,
1603f7fec032SZheng Liu 					    map->m_pblk, status);
1604f7fec032SZheng Liu 		if (ret != 0)
1605f7fec032SZheng Liu 			retval = ret;
16065356f261SAditya Kali 	}
16075356f261SAditya Kali 
16085356f261SAditya Kali out_unlock:
16095356f261SAditya Kali 	up_read((&EXT4_I(inode)->i_data_sem));
16105356f261SAditya Kali 
16115356f261SAditya Kali 	return retval;
16125356f261SAditya Kali }
16135356f261SAditya Kali 
16145356f261SAditya Kali /*
1615d91bd2c1SSeunghun Lee  * This is a special get_block_t callback which is used by
1616b920c755STheodore Ts'o  * ext4_da_write_begin().  It will either return mapped block or
1617b920c755STheodore Ts'o  * reserve space for a single block.
161829fa89d0SAneesh Kumar K.V  *
161929fa89d0SAneesh Kumar K.V  * For delayed buffer_head we have BH_Mapped, BH_New, BH_Delay set.
162029fa89d0SAneesh Kumar K.V  * We also have b_blocknr = -1 and b_bdev initialized properly
162129fa89d0SAneesh Kumar K.V  *
162229fa89d0SAneesh Kumar K.V  * For unwritten buffer_head we have BH_Mapped, BH_New, BH_Unwritten set.
162329fa89d0SAneesh Kumar K.V  * We also have b_blocknr = physicalblock mapping unwritten extent and b_bdev
162429fa89d0SAneesh Kumar K.V  * initialized properly.
162564769240SAlex Tomas  */
16269c3569b5STao Ma int ext4_da_get_block_prep(struct inode *inode, sector_t iblock,
16272ed88685STheodore Ts'o 			   struct buffer_head *bh, int create)
162864769240SAlex Tomas {
16292ed88685STheodore Ts'o 	struct ext4_map_blocks map;
163064769240SAlex Tomas 	int ret = 0;
163164769240SAlex Tomas 
163264769240SAlex Tomas 	BUG_ON(create == 0);
16332ed88685STheodore Ts'o 	BUG_ON(bh->b_size != inode->i_sb->s_blocksize);
16342ed88685STheodore Ts'o 
16352ed88685STheodore Ts'o 	map.m_lblk = iblock;
16362ed88685STheodore Ts'o 	map.m_len = 1;
163764769240SAlex Tomas 
163864769240SAlex Tomas 	/*
163964769240SAlex Tomas 	 * first, we need to know whether the block is allocated already
164064769240SAlex Tomas 	 * preallocated blocks are unmapped but should treated
164164769240SAlex Tomas 	 * the same as allocated blocks.
164264769240SAlex Tomas 	 */
16435356f261SAditya Kali 	ret = ext4_da_map_blocks(inode, iblock, &map, bh);
16445356f261SAditya Kali 	if (ret <= 0)
16452ed88685STheodore Ts'o 		return ret;
164664769240SAlex Tomas 
16472ed88685STheodore Ts'o 	map_bh(bh, inode->i_sb, map.m_pblk);
16482ed88685STheodore Ts'o 	bh->b_state = (bh->b_state & ~EXT4_MAP_FLAGS) | map.m_flags;
16492ed88685STheodore Ts'o 
16502ed88685STheodore Ts'o 	if (buffer_unwritten(bh)) {
16512ed88685STheodore Ts'o 		/* A delayed write to unwritten bh should be marked
16522ed88685STheodore Ts'o 		 * new and mapped.  Mapped ensures that we don't do
16532ed88685STheodore Ts'o 		 * get_block multiple times when we write to the same
16542ed88685STheodore Ts'o 		 * offset and new ensures that we do proper zero out
16552ed88685STheodore Ts'o 		 * for partial write.
16562ed88685STheodore Ts'o 		 */
16572ed88685STheodore Ts'o 		set_buffer_new(bh);
1658c8205636STheodore Ts'o 		set_buffer_mapped(bh);
16592ed88685STheodore Ts'o 	}
16602ed88685STheodore Ts'o 	return 0;
166164769240SAlex Tomas }
166261628a3fSMingming Cao 
166362e086beSAneesh Kumar K.V static int bget_one(handle_t *handle, struct buffer_head *bh)
166462e086beSAneesh Kumar K.V {
166562e086beSAneesh Kumar K.V 	get_bh(bh);
166662e086beSAneesh Kumar K.V 	return 0;
166762e086beSAneesh Kumar K.V }
166862e086beSAneesh Kumar K.V 
166962e086beSAneesh Kumar K.V static int bput_one(handle_t *handle, struct buffer_head *bh)
167062e086beSAneesh Kumar K.V {
167162e086beSAneesh Kumar K.V 	put_bh(bh);
167262e086beSAneesh Kumar K.V 	return 0;
167362e086beSAneesh Kumar K.V }
167462e086beSAneesh Kumar K.V 
167562e086beSAneesh Kumar K.V static int __ext4_journalled_writepage(struct page *page,
167662e086beSAneesh Kumar K.V 				       unsigned int len)
167762e086beSAneesh Kumar K.V {
167862e086beSAneesh Kumar K.V 	struct address_space *mapping = page->mapping;
167962e086beSAneesh Kumar K.V 	struct inode *inode = mapping->host;
16803fdcfb66STao Ma 	struct buffer_head *page_bufs = NULL;
168162e086beSAneesh Kumar K.V 	handle_t *handle = NULL;
16823fdcfb66STao Ma 	int ret = 0, err = 0;
16833fdcfb66STao Ma 	int inline_data = ext4_has_inline_data(inode);
16843fdcfb66STao Ma 	struct buffer_head *inode_bh = NULL;
168562e086beSAneesh Kumar K.V 
1686cb20d518STheodore Ts'o 	ClearPageChecked(page);
16873fdcfb66STao Ma 
16883fdcfb66STao Ma 	if (inline_data) {
16893fdcfb66STao Ma 		BUG_ON(page->index != 0);
16903fdcfb66STao Ma 		BUG_ON(len > ext4_get_max_inline_size(inode));
16913fdcfb66STao Ma 		inode_bh = ext4_journalled_write_inline_data(inode, len, page);
16923fdcfb66STao Ma 		if (inode_bh == NULL)
16933fdcfb66STao Ma 			goto out;
16943fdcfb66STao Ma 	} else {
169562e086beSAneesh Kumar K.V 		page_bufs = page_buffers(page);
16963fdcfb66STao Ma 		if (!page_bufs) {
16973fdcfb66STao Ma 			BUG();
16983fdcfb66STao Ma 			goto out;
16993fdcfb66STao Ma 		}
17003fdcfb66STao Ma 		ext4_walk_page_buffers(handle, page_bufs, 0, len,
17013fdcfb66STao Ma 				       NULL, bget_one);
17023fdcfb66STao Ma 	}
170362e086beSAneesh Kumar K.V 	/* As soon as we unlock the page, it can go away, but we have
170462e086beSAneesh Kumar K.V 	 * references to buffers so we are safe */
170562e086beSAneesh Kumar K.V 	unlock_page(page);
170662e086beSAneesh Kumar K.V 
17079924a92aSTheodore Ts'o 	handle = ext4_journal_start(inode, EXT4_HT_WRITE_PAGE,
17089924a92aSTheodore Ts'o 				    ext4_writepage_trans_blocks(inode));
170962e086beSAneesh Kumar K.V 	if (IS_ERR(handle)) {
171062e086beSAneesh Kumar K.V 		ret = PTR_ERR(handle);
171162e086beSAneesh Kumar K.V 		goto out;
171262e086beSAneesh Kumar K.V 	}
171362e086beSAneesh Kumar K.V 
1714441c8508SCurt Wohlgemuth 	BUG_ON(!ext4_handle_valid(handle));
1715441c8508SCurt Wohlgemuth 
17163fdcfb66STao Ma 	if (inline_data) {
17175d601255Sliang xie 		BUFFER_TRACE(inode_bh, "get write access");
17183fdcfb66STao Ma 		ret = ext4_journal_get_write_access(handle, inode_bh);
17193fdcfb66STao Ma 
17203fdcfb66STao Ma 		err = ext4_handle_dirty_metadata(handle, inode, inode_bh);
17213fdcfb66STao Ma 
17223fdcfb66STao Ma 	} else {
1723f19d5870STao Ma 		ret = ext4_walk_page_buffers(handle, page_bufs, 0, len, NULL,
172462e086beSAneesh Kumar K.V 					     do_journal_get_write_access);
172562e086beSAneesh Kumar K.V 
1726f19d5870STao Ma 		err = ext4_walk_page_buffers(handle, page_bufs, 0, len, NULL,
172762e086beSAneesh Kumar K.V 					     write_end_fn);
17283fdcfb66STao Ma 	}
172962e086beSAneesh Kumar K.V 	if (ret == 0)
173062e086beSAneesh Kumar K.V 		ret = err;
17312d859db3SJan Kara 	EXT4_I(inode)->i_datasync_tid = handle->h_transaction->t_tid;
173262e086beSAneesh Kumar K.V 	err = ext4_journal_stop(handle);
173362e086beSAneesh Kumar K.V 	if (!ret)
173462e086beSAneesh Kumar K.V 		ret = err;
173562e086beSAneesh Kumar K.V 
17363fdcfb66STao Ma 	if (!ext4_has_inline_data(inode))
17378c9367fdSTheodore Ts'o 		ext4_walk_page_buffers(NULL, page_bufs, 0, len,
17383fdcfb66STao Ma 				       NULL, bput_one);
173919f5fb7aSTheodore Ts'o 	ext4_set_inode_state(inode, EXT4_STATE_JDATA);
174062e086beSAneesh Kumar K.V out:
17413fdcfb66STao Ma 	brelse(inode_bh);
174262e086beSAneesh Kumar K.V 	return ret;
174362e086beSAneesh Kumar K.V }
174462e086beSAneesh Kumar K.V 
174561628a3fSMingming Cao /*
174643ce1d23SAneesh Kumar K.V  * Note that we don't need to start a transaction unless we're journaling data
174743ce1d23SAneesh Kumar K.V  * because we should have holes filled from ext4_page_mkwrite(). We even don't
174843ce1d23SAneesh Kumar K.V  * need to file the inode to the transaction's list in ordered mode because if
174943ce1d23SAneesh Kumar K.V  * we are writing back data added by write(), the inode is already there and if
175043ce1d23SAneesh Kumar K.V  * we are writing back data modified via mmap(), no one guarantees in which
175143ce1d23SAneesh Kumar K.V  * transaction the data will hit the disk. In case we are journaling data, we
175243ce1d23SAneesh Kumar K.V  * cannot start transaction directly because transaction start ranks above page
175343ce1d23SAneesh Kumar K.V  * lock so we have to do some magic.
175443ce1d23SAneesh Kumar K.V  *
1755b920c755STheodore Ts'o  * This function can get called via...
175620970ba6STheodore Ts'o  *   - ext4_writepages after taking page lock (have journal handle)
1757b920c755STheodore Ts'o  *   - journal_submit_inode_data_buffers (no journal handle)
1758f6463b0dSArtem Bityutskiy  *   - shrink_page_list via the kswapd/direct reclaim (no journal handle)
1759b920c755STheodore Ts'o  *   - grab_page_cache when doing write_begin (have journal handle)
176043ce1d23SAneesh Kumar K.V  *
176143ce1d23SAneesh Kumar K.V  * We don't do any block allocation in this function. If we have page with
176243ce1d23SAneesh Kumar K.V  * multiple blocks we need to write those buffer_heads that are mapped. This
176343ce1d23SAneesh Kumar K.V  * is important for mmaped based write. So if we do with blocksize 1K
176443ce1d23SAneesh Kumar K.V  * truncate(f, 1024);
176543ce1d23SAneesh Kumar K.V  * a = mmap(f, 0, 4096);
176643ce1d23SAneesh Kumar K.V  * a[0] = 'a';
176743ce1d23SAneesh Kumar K.V  * truncate(f, 4096);
176843ce1d23SAneesh Kumar K.V  * we have in the page first buffer_head mapped via page_mkwrite call back
176990802ed9SPaul Bolle  * but other buffer_heads would be unmapped but dirty (dirty done via the
177043ce1d23SAneesh Kumar K.V  * do_wp_page). So writepage should write the first block. If we modify
177143ce1d23SAneesh Kumar K.V  * the mmap area beyond 1024 we will again get a page_fault and the
177243ce1d23SAneesh Kumar K.V  * page_mkwrite callback will do the block allocation and mark the
177343ce1d23SAneesh Kumar K.V  * buffer_heads mapped.
177443ce1d23SAneesh Kumar K.V  *
177543ce1d23SAneesh Kumar K.V  * We redirty the page if we have any buffer_heads that is either delay or
177643ce1d23SAneesh Kumar K.V  * unwritten in the page.
177743ce1d23SAneesh Kumar K.V  *
177843ce1d23SAneesh Kumar K.V  * We can get recursively called as show below.
177943ce1d23SAneesh Kumar K.V  *
178043ce1d23SAneesh Kumar K.V  *	ext4_writepage() -> kmalloc() -> __alloc_pages() -> page_launder() ->
178143ce1d23SAneesh Kumar K.V  *		ext4_writepage()
178243ce1d23SAneesh Kumar K.V  *
178343ce1d23SAneesh Kumar K.V  * But since we don't do any block allocation we should not deadlock.
178443ce1d23SAneesh Kumar K.V  * Page also have the dirty flag cleared so we don't get recurive page_lock.
178561628a3fSMingming Cao  */
178643ce1d23SAneesh Kumar K.V static int ext4_writepage(struct page *page,
178764769240SAlex Tomas 			  struct writeback_control *wbc)
178864769240SAlex Tomas {
1789f8bec370SJan Kara 	int ret = 0;
179061628a3fSMingming Cao 	loff_t size;
1791498e5f24STheodore Ts'o 	unsigned int len;
1792744692dcSJiaying Zhang 	struct buffer_head *page_bufs = NULL;
179361628a3fSMingming Cao 	struct inode *inode = page->mapping->host;
179436ade451SJan Kara 	struct ext4_io_submit io_submit;
17951c8349a1SNamjae Jeon 	bool keep_towrite = false;
179664769240SAlex Tomas 
1797a9c667f8SLukas Czerner 	trace_ext4_writepage(page);
179861628a3fSMingming Cao 	size = i_size_read(inode);
179961628a3fSMingming Cao 	if (page->index == size >> PAGE_CACHE_SHIFT)
180061628a3fSMingming Cao 		len = size & ~PAGE_CACHE_MASK;
180161628a3fSMingming Cao 	else
180261628a3fSMingming Cao 		len = PAGE_CACHE_SIZE;
180361628a3fSMingming Cao 
1804f0e6c985SAneesh Kumar K.V 	page_bufs = page_buffers(page);
180564769240SAlex Tomas 	/*
1806fe386132SJan Kara 	 * We cannot do block allocation or other extent handling in this
1807fe386132SJan Kara 	 * function. If there are buffers needing that, we have to redirty
1808fe386132SJan Kara 	 * the page. But we may reach here when we do a journal commit via
1809fe386132SJan Kara 	 * journal_submit_inode_data_buffers() and in that case we must write
1810fe386132SJan Kara 	 * allocated buffers to achieve data=ordered mode guarantees.
181164769240SAlex Tomas 	 */
1812f19d5870STao Ma 	if (ext4_walk_page_buffers(NULL, page_bufs, 0, len, NULL,
1813c364b22cSAneesh Kumar K.V 				   ext4_bh_delay_or_unwritten)) {
181461628a3fSMingming Cao 		redirty_page_for_writepage(wbc, page);
1815fe386132SJan Kara 		if (current->flags & PF_MEMALLOC) {
1816fe386132SJan Kara 			/*
1817fe386132SJan Kara 			 * For memory cleaning there's no point in writing only
1818fe386132SJan Kara 			 * some buffers. So just bail out. Warn if we came here
1819fe386132SJan Kara 			 * from direct reclaim.
1820fe386132SJan Kara 			 */
1821fe386132SJan Kara 			WARN_ON_ONCE((current->flags & (PF_MEMALLOC|PF_KSWAPD))
1822fe386132SJan Kara 							== PF_MEMALLOC);
182361628a3fSMingming Cao 			unlock_page(page);
182461628a3fSMingming Cao 			return 0;
182561628a3fSMingming Cao 		}
18261c8349a1SNamjae Jeon 		keep_towrite = true;
1827f0e6c985SAneesh Kumar K.V 	}
182864769240SAlex Tomas 
1829cb20d518STheodore Ts'o 	if (PageChecked(page) && ext4_should_journal_data(inode))
183043ce1d23SAneesh Kumar K.V 		/*
183143ce1d23SAneesh Kumar K.V 		 * It's mmapped pagecache.  Add buffers and journal it.  There
183243ce1d23SAneesh Kumar K.V 		 * doesn't seem much point in redirtying the page here.
183343ce1d23SAneesh Kumar K.V 		 */
18343f0ca309SWu Fengguang 		return __ext4_journalled_writepage(page, len);
183543ce1d23SAneesh Kumar K.V 
183697a851edSJan Kara 	ext4_io_submit_init(&io_submit, wbc);
183797a851edSJan Kara 	io_submit.io_end = ext4_init_io_end(inode, GFP_NOFS);
183897a851edSJan Kara 	if (!io_submit.io_end) {
183997a851edSJan Kara 		redirty_page_for_writepage(wbc, page);
184097a851edSJan Kara 		unlock_page(page);
184197a851edSJan Kara 		return -ENOMEM;
184297a851edSJan Kara 	}
18431c8349a1SNamjae Jeon 	ret = ext4_bio_write_page(&io_submit, page, len, wbc, keep_towrite);
184436ade451SJan Kara 	ext4_io_submit(&io_submit);
184597a851edSJan Kara 	/* Drop io_end reference we got from init */
184697a851edSJan Kara 	ext4_put_io_end_defer(io_submit.io_end);
184764769240SAlex Tomas 	return ret;
184864769240SAlex Tomas }
184964769240SAlex Tomas 
18505f1132b2SJan Kara static int mpage_submit_page(struct mpage_da_data *mpd, struct page *page)
18515f1132b2SJan Kara {
18525f1132b2SJan Kara 	int len;
18535f1132b2SJan Kara 	loff_t size = i_size_read(mpd->inode);
18545f1132b2SJan Kara 	int err;
18555f1132b2SJan Kara 
18565f1132b2SJan Kara 	BUG_ON(page->index != mpd->first_page);
18575f1132b2SJan Kara 	if (page->index == size >> PAGE_CACHE_SHIFT)
18585f1132b2SJan Kara 		len = size & ~PAGE_CACHE_MASK;
18595f1132b2SJan Kara 	else
18605f1132b2SJan Kara 		len = PAGE_CACHE_SIZE;
18615f1132b2SJan Kara 	clear_page_dirty_for_io(page);
18621c8349a1SNamjae Jeon 	err = ext4_bio_write_page(&mpd->io_submit, page, len, mpd->wbc, false);
18635f1132b2SJan Kara 	if (!err)
18645f1132b2SJan Kara 		mpd->wbc->nr_to_write--;
18655f1132b2SJan Kara 	mpd->first_page++;
18665f1132b2SJan Kara 
18675f1132b2SJan Kara 	return err;
18685f1132b2SJan Kara }
18695f1132b2SJan Kara 
18704e7ea81dSJan Kara #define BH_FLAGS ((1 << BH_Unwritten) | (1 << BH_Delay))
18714e7ea81dSJan Kara 
187261628a3fSMingming Cao /*
1873fffb2739SJan Kara  * mballoc gives us at most this number of blocks...
1874fffb2739SJan Kara  * XXX: That seems to be only a limitation of ext4_mb_normalize_request().
1875fffb2739SJan Kara  * The rest of mballoc seems to handle chunks up to full group size.
187661628a3fSMingming Cao  */
1877fffb2739SJan Kara #define MAX_WRITEPAGES_EXTENT_LEN 2048
1878525f4ed8SMingming Cao 
1879525f4ed8SMingming Cao /*
18804e7ea81dSJan Kara  * mpage_add_bh_to_extent - try to add bh to extent of blocks to map
18814e7ea81dSJan Kara  *
18824e7ea81dSJan Kara  * @mpd - extent of blocks
18834e7ea81dSJan Kara  * @lblk - logical number of the block in the file
188409930042SJan Kara  * @bh - buffer head we want to add to the extent
18854e7ea81dSJan Kara  *
188609930042SJan Kara  * The function is used to collect contig. blocks in the same state. If the
188709930042SJan Kara  * buffer doesn't require mapping for writeback and we haven't started the
188809930042SJan Kara  * extent of buffers to map yet, the function returns 'true' immediately - the
188909930042SJan Kara  * caller can write the buffer right away. Otherwise the function returns true
189009930042SJan Kara  * if the block has been added to the extent, false if the block couldn't be
189109930042SJan Kara  * added.
18924e7ea81dSJan Kara  */
189309930042SJan Kara static bool mpage_add_bh_to_extent(struct mpage_da_data *mpd, ext4_lblk_t lblk,
189409930042SJan Kara 				   struct buffer_head *bh)
18954e7ea81dSJan Kara {
18964e7ea81dSJan Kara 	struct ext4_map_blocks *map = &mpd->map;
18974e7ea81dSJan Kara 
189809930042SJan Kara 	/* Buffer that doesn't need mapping for writeback? */
189909930042SJan Kara 	if (!buffer_dirty(bh) || !buffer_mapped(bh) ||
190009930042SJan Kara 	    (!buffer_delay(bh) && !buffer_unwritten(bh))) {
190109930042SJan Kara 		/* So far no extent to map => we write the buffer right away */
190209930042SJan Kara 		if (map->m_len == 0)
190309930042SJan Kara 			return true;
190409930042SJan Kara 		return false;
190509930042SJan Kara 	}
19064e7ea81dSJan Kara 
19074e7ea81dSJan Kara 	/* First block in the extent? */
19084e7ea81dSJan Kara 	if (map->m_len == 0) {
19094e7ea81dSJan Kara 		map->m_lblk = lblk;
19104e7ea81dSJan Kara 		map->m_len = 1;
191109930042SJan Kara 		map->m_flags = bh->b_state & BH_FLAGS;
191209930042SJan Kara 		return true;
19134e7ea81dSJan Kara 	}
19144e7ea81dSJan Kara 
191509930042SJan Kara 	/* Don't go larger than mballoc is willing to allocate */
191609930042SJan Kara 	if (map->m_len >= MAX_WRITEPAGES_EXTENT_LEN)
191709930042SJan Kara 		return false;
191809930042SJan Kara 
19194e7ea81dSJan Kara 	/* Can we merge the block to our big extent? */
19204e7ea81dSJan Kara 	if (lblk == map->m_lblk + map->m_len &&
192109930042SJan Kara 	    (bh->b_state & BH_FLAGS) == map->m_flags) {
19224e7ea81dSJan Kara 		map->m_len++;
192309930042SJan Kara 		return true;
19244e7ea81dSJan Kara 	}
192509930042SJan Kara 	return false;
19264e7ea81dSJan Kara }
19274e7ea81dSJan Kara 
19285f1132b2SJan Kara /*
19295f1132b2SJan Kara  * mpage_process_page_bufs - submit page buffers for IO or add them to extent
19305f1132b2SJan Kara  *
19315f1132b2SJan Kara  * @mpd - extent of blocks for mapping
19325f1132b2SJan Kara  * @head - the first buffer in the page
19335f1132b2SJan Kara  * @bh - buffer we should start processing from
19345f1132b2SJan Kara  * @lblk - logical number of the block in the file corresponding to @bh
19355f1132b2SJan Kara  *
19365f1132b2SJan Kara  * Walk through page buffers from @bh upto @head (exclusive) and either submit
19375f1132b2SJan Kara  * the page for IO if all buffers in this page were mapped and there's no
19385f1132b2SJan Kara  * accumulated extent of buffers to map or add buffers in the page to the
19395f1132b2SJan Kara  * extent of buffers to map. The function returns 1 if the caller can continue
19405f1132b2SJan Kara  * by processing the next page, 0 if it should stop adding buffers to the
19415f1132b2SJan Kara  * extent to map because we cannot extend it anymore. It can also return value
19425f1132b2SJan Kara  * < 0 in case of error during IO submission.
19435f1132b2SJan Kara  */
19445f1132b2SJan Kara static int mpage_process_page_bufs(struct mpage_da_data *mpd,
19454e7ea81dSJan Kara 				   struct buffer_head *head,
19464e7ea81dSJan Kara 				   struct buffer_head *bh,
19474e7ea81dSJan Kara 				   ext4_lblk_t lblk)
19484e7ea81dSJan Kara {
19494e7ea81dSJan Kara 	struct inode *inode = mpd->inode;
19505f1132b2SJan Kara 	int err;
19514e7ea81dSJan Kara 	ext4_lblk_t blocks = (i_size_read(inode) + (1 << inode->i_blkbits) - 1)
19524e7ea81dSJan Kara 							>> inode->i_blkbits;
19534e7ea81dSJan Kara 
19544e7ea81dSJan Kara 	do {
19554e7ea81dSJan Kara 		BUG_ON(buffer_locked(bh));
19564e7ea81dSJan Kara 
195709930042SJan Kara 		if (lblk >= blocks || !mpage_add_bh_to_extent(mpd, lblk, bh)) {
19584e7ea81dSJan Kara 			/* Found extent to map? */
19594e7ea81dSJan Kara 			if (mpd->map.m_len)
19605f1132b2SJan Kara 				return 0;
196109930042SJan Kara 			/* Everything mapped so far and we hit EOF */
19625f1132b2SJan Kara 			break;
19634e7ea81dSJan Kara 		}
19644e7ea81dSJan Kara 	} while (lblk++, (bh = bh->b_this_page) != head);
19655f1132b2SJan Kara 	/* So far everything mapped? Submit the page for IO. */
19665f1132b2SJan Kara 	if (mpd->map.m_len == 0) {
19675f1132b2SJan Kara 		err = mpage_submit_page(mpd, head->b_page);
19685f1132b2SJan Kara 		if (err < 0)
19694e7ea81dSJan Kara 			return err;
19704e7ea81dSJan Kara 	}
19715f1132b2SJan Kara 	return lblk < blocks;
19725f1132b2SJan Kara }
19734e7ea81dSJan Kara 
19744e7ea81dSJan Kara /*
19754e7ea81dSJan Kara  * mpage_map_buffers - update buffers corresponding to changed extent and
19764e7ea81dSJan Kara  *		       submit fully mapped pages for IO
19774e7ea81dSJan Kara  *
19784e7ea81dSJan Kara  * @mpd - description of extent to map, on return next extent to map
19794e7ea81dSJan Kara  *
19804e7ea81dSJan Kara  * Scan buffers corresponding to changed extent (we expect corresponding pages
19814e7ea81dSJan Kara  * to be already locked) and update buffer state according to new extent state.
19824e7ea81dSJan Kara  * We map delalloc buffers to their physical location, clear unwritten bits,
1983556615dcSLukas Czerner  * and mark buffers as uninit when we perform writes to unwritten extents
19844e7ea81dSJan Kara  * and do extent conversion after IO is finished. If the last page is not fully
19854e7ea81dSJan Kara  * mapped, we update @map to the next extent in the last page that needs
19864e7ea81dSJan Kara  * mapping. Otherwise we submit the page for IO.
19874e7ea81dSJan Kara  */
19884e7ea81dSJan Kara static int mpage_map_and_submit_buffers(struct mpage_da_data *mpd)
19894e7ea81dSJan Kara {
19904e7ea81dSJan Kara 	struct pagevec pvec;
19914e7ea81dSJan Kara 	int nr_pages, i;
19924e7ea81dSJan Kara 	struct inode *inode = mpd->inode;
19934e7ea81dSJan Kara 	struct buffer_head *head, *bh;
19944e7ea81dSJan Kara 	int bpp_bits = PAGE_CACHE_SHIFT - inode->i_blkbits;
19954e7ea81dSJan Kara 	pgoff_t start, end;
19964e7ea81dSJan Kara 	ext4_lblk_t lblk;
19974e7ea81dSJan Kara 	sector_t pblock;
19984e7ea81dSJan Kara 	int err;
19994e7ea81dSJan Kara 
20004e7ea81dSJan Kara 	start = mpd->map.m_lblk >> bpp_bits;
20014e7ea81dSJan Kara 	end = (mpd->map.m_lblk + mpd->map.m_len - 1) >> bpp_bits;
20024e7ea81dSJan Kara 	lblk = start << bpp_bits;
20034e7ea81dSJan Kara 	pblock = mpd->map.m_pblk;
20044e7ea81dSJan Kara 
20054e7ea81dSJan Kara 	pagevec_init(&pvec, 0);
20064e7ea81dSJan Kara 	while (start <= end) {
20074e7ea81dSJan Kara 		nr_pages = pagevec_lookup(&pvec, inode->i_mapping, start,
20084e7ea81dSJan Kara 					  PAGEVEC_SIZE);
20094e7ea81dSJan Kara 		if (nr_pages == 0)
20104e7ea81dSJan Kara 			break;
20114e7ea81dSJan Kara 		for (i = 0; i < nr_pages; i++) {
20124e7ea81dSJan Kara 			struct page *page = pvec.pages[i];
20134e7ea81dSJan Kara 
20144e7ea81dSJan Kara 			if (page->index > end)
20154e7ea81dSJan Kara 				break;
20164e7ea81dSJan Kara 			/* Up to 'end' pages must be contiguous */
20174e7ea81dSJan Kara 			BUG_ON(page->index != start);
20184e7ea81dSJan Kara 			bh = head = page_buffers(page);
20194e7ea81dSJan Kara 			do {
20204e7ea81dSJan Kara 				if (lblk < mpd->map.m_lblk)
20214e7ea81dSJan Kara 					continue;
20224e7ea81dSJan Kara 				if (lblk >= mpd->map.m_lblk + mpd->map.m_len) {
20234e7ea81dSJan Kara 					/*
20244e7ea81dSJan Kara 					 * Buffer after end of mapped extent.
20254e7ea81dSJan Kara 					 * Find next buffer in the page to map.
20264e7ea81dSJan Kara 					 */
20274e7ea81dSJan Kara 					mpd->map.m_len = 0;
20284e7ea81dSJan Kara 					mpd->map.m_flags = 0;
20295f1132b2SJan Kara 					/*
20305f1132b2SJan Kara 					 * FIXME: If dioread_nolock supports
20315f1132b2SJan Kara 					 * blocksize < pagesize, we need to make
20325f1132b2SJan Kara 					 * sure we add size mapped so far to
20335f1132b2SJan Kara 					 * io_end->size as the following call
20345f1132b2SJan Kara 					 * can submit the page for IO.
20355f1132b2SJan Kara 					 */
20365f1132b2SJan Kara 					err = mpage_process_page_bufs(mpd, head,
20375f1132b2SJan Kara 								      bh, lblk);
20384e7ea81dSJan Kara 					pagevec_release(&pvec);
20395f1132b2SJan Kara 					if (err > 0)
20405f1132b2SJan Kara 						err = 0;
20415f1132b2SJan Kara 					return err;
20424e7ea81dSJan Kara 				}
20434e7ea81dSJan Kara 				if (buffer_delay(bh)) {
20444e7ea81dSJan Kara 					clear_buffer_delay(bh);
20454e7ea81dSJan Kara 					bh->b_blocknr = pblock++;
20464e7ea81dSJan Kara 				}
20474e7ea81dSJan Kara 				clear_buffer_unwritten(bh);
20485f1132b2SJan Kara 			} while (lblk++, (bh = bh->b_this_page) != head);
20494e7ea81dSJan Kara 
20504e7ea81dSJan Kara 			/*
20514e7ea81dSJan Kara 			 * FIXME: This is going to break if dioread_nolock
20524e7ea81dSJan Kara 			 * supports blocksize < pagesize as we will try to
20534e7ea81dSJan Kara 			 * convert potentially unmapped parts of inode.
20544e7ea81dSJan Kara 			 */
20554e7ea81dSJan Kara 			mpd->io_submit.io_end->size += PAGE_CACHE_SIZE;
20564e7ea81dSJan Kara 			/* Page fully mapped - let IO run! */
20574e7ea81dSJan Kara 			err = mpage_submit_page(mpd, page);
20584e7ea81dSJan Kara 			if (err < 0) {
20594e7ea81dSJan Kara 				pagevec_release(&pvec);
20604e7ea81dSJan Kara 				return err;
20614e7ea81dSJan Kara 			}
20624e7ea81dSJan Kara 			start++;
20634e7ea81dSJan Kara 		}
20644e7ea81dSJan Kara 		pagevec_release(&pvec);
20654e7ea81dSJan Kara 	}
20664e7ea81dSJan Kara 	/* Extent fully mapped and matches with page boundary. We are done. */
20674e7ea81dSJan Kara 	mpd->map.m_len = 0;
20684e7ea81dSJan Kara 	mpd->map.m_flags = 0;
20694e7ea81dSJan Kara 	return 0;
20704e7ea81dSJan Kara }
20714e7ea81dSJan Kara 
20724e7ea81dSJan Kara static int mpage_map_one_extent(handle_t *handle, struct mpage_da_data *mpd)
20734e7ea81dSJan Kara {
20744e7ea81dSJan Kara 	struct inode *inode = mpd->inode;
20754e7ea81dSJan Kara 	struct ext4_map_blocks *map = &mpd->map;
20764e7ea81dSJan Kara 	int get_blocks_flags;
2077090f32eeSLukas Czerner 	int err, dioread_nolock;
20784e7ea81dSJan Kara 
20794e7ea81dSJan Kara 	trace_ext4_da_write_pages_extent(inode, map);
20804e7ea81dSJan Kara 	/*
20814e7ea81dSJan Kara 	 * Call ext4_map_blocks() to allocate any delayed allocation blocks, or
2082556615dcSLukas Czerner 	 * to convert an unwritten extent to be initialized (in the case
20834e7ea81dSJan Kara 	 * where we have written into one or more preallocated blocks).  It is
20844e7ea81dSJan Kara 	 * possible that we're going to need more metadata blocks than
20854e7ea81dSJan Kara 	 * previously reserved. However we must not fail because we're in
20864e7ea81dSJan Kara 	 * writeback and there is nothing we can do about it so it might result
20874e7ea81dSJan Kara 	 * in data loss.  So use reserved blocks to allocate metadata if
20884e7ea81dSJan Kara 	 * possible.
20894e7ea81dSJan Kara 	 *
2090754cfed6STheodore Ts'o 	 * We pass in the magic EXT4_GET_BLOCKS_DELALLOC_RESERVE if
2091754cfed6STheodore Ts'o 	 * the blocks in question are delalloc blocks.  This indicates
2092754cfed6STheodore Ts'o 	 * that the blocks and quotas has already been checked when
2093754cfed6STheodore Ts'o 	 * the data was copied into the page cache.
20944e7ea81dSJan Kara 	 */
20954e7ea81dSJan Kara 	get_blocks_flags = EXT4_GET_BLOCKS_CREATE |
20964e7ea81dSJan Kara 			   EXT4_GET_BLOCKS_METADATA_NOFAIL;
2097090f32eeSLukas Czerner 	dioread_nolock = ext4_should_dioread_nolock(inode);
2098090f32eeSLukas Czerner 	if (dioread_nolock)
20994e7ea81dSJan Kara 		get_blocks_flags |= EXT4_GET_BLOCKS_IO_CREATE_EXT;
21004e7ea81dSJan Kara 	if (map->m_flags & (1 << BH_Delay))
21014e7ea81dSJan Kara 		get_blocks_flags |= EXT4_GET_BLOCKS_DELALLOC_RESERVE;
21024e7ea81dSJan Kara 
21034e7ea81dSJan Kara 	err = ext4_map_blocks(handle, inode, map, get_blocks_flags);
21044e7ea81dSJan Kara 	if (err < 0)
21054e7ea81dSJan Kara 		return err;
2106090f32eeSLukas Czerner 	if (dioread_nolock && (map->m_flags & EXT4_MAP_UNWRITTEN)) {
21076b523df4SJan Kara 		if (!mpd->io_submit.io_end->handle &&
21086b523df4SJan Kara 		    ext4_handle_valid(handle)) {
21096b523df4SJan Kara 			mpd->io_submit.io_end->handle = handle->h_rsv_handle;
21106b523df4SJan Kara 			handle->h_rsv_handle = NULL;
21116b523df4SJan Kara 		}
21123613d228SJan Kara 		ext4_set_io_unwritten_flag(inode, mpd->io_submit.io_end);
21136b523df4SJan Kara 	}
21144e7ea81dSJan Kara 
21154e7ea81dSJan Kara 	BUG_ON(map->m_len == 0);
21164e7ea81dSJan Kara 	if (map->m_flags & EXT4_MAP_NEW) {
21174e7ea81dSJan Kara 		struct block_device *bdev = inode->i_sb->s_bdev;
21184e7ea81dSJan Kara 		int i;
21194e7ea81dSJan Kara 
21204e7ea81dSJan Kara 		for (i = 0; i < map->m_len; i++)
21214e7ea81dSJan Kara 			unmap_underlying_metadata(bdev, map->m_pblk + i);
21224e7ea81dSJan Kara 	}
21234e7ea81dSJan Kara 	return 0;
21244e7ea81dSJan Kara }
21254e7ea81dSJan Kara 
21264e7ea81dSJan Kara /*
21274e7ea81dSJan Kara  * mpage_map_and_submit_extent - map extent starting at mpd->lblk of length
21284e7ea81dSJan Kara  *				 mpd->len and submit pages underlying it for IO
21294e7ea81dSJan Kara  *
21304e7ea81dSJan Kara  * @handle - handle for journal operations
21314e7ea81dSJan Kara  * @mpd - extent to map
21327534e854SJan Kara  * @give_up_on_write - we set this to true iff there is a fatal error and there
21337534e854SJan Kara  *                     is no hope of writing the data. The caller should discard
21347534e854SJan Kara  *                     dirty pages to avoid infinite loops.
21354e7ea81dSJan Kara  *
21364e7ea81dSJan Kara  * The function maps extent starting at mpd->lblk of length mpd->len. If it is
21374e7ea81dSJan Kara  * delayed, blocks are allocated, if it is unwritten, we may need to convert
21384e7ea81dSJan Kara  * them to initialized or split the described range from larger unwritten
21394e7ea81dSJan Kara  * extent. Note that we need not map all the described range since allocation
21404e7ea81dSJan Kara  * can return less blocks or the range is covered by more unwritten extents. We
21414e7ea81dSJan Kara  * cannot map more because we are limited by reserved transaction credits. On
21424e7ea81dSJan Kara  * the other hand we always make sure that the last touched page is fully
21434e7ea81dSJan Kara  * mapped so that it can be written out (and thus forward progress is
21444e7ea81dSJan Kara  * guaranteed). After mapping we submit all mapped pages for IO.
21454e7ea81dSJan Kara  */
21464e7ea81dSJan Kara static int mpage_map_and_submit_extent(handle_t *handle,
2147cb530541STheodore Ts'o 				       struct mpage_da_data *mpd,
2148cb530541STheodore Ts'o 				       bool *give_up_on_write)
21494e7ea81dSJan Kara {
21504e7ea81dSJan Kara 	struct inode *inode = mpd->inode;
21514e7ea81dSJan Kara 	struct ext4_map_blocks *map = &mpd->map;
21524e7ea81dSJan Kara 	int err;
21534e7ea81dSJan Kara 	loff_t disksize;
21546603120eSDmitry Monakhov 	int progress = 0;
21554e7ea81dSJan Kara 
21564e7ea81dSJan Kara 	mpd->io_submit.io_end->offset =
21574e7ea81dSJan Kara 				((loff_t)map->m_lblk) << inode->i_blkbits;
215827d7c4edSJan Kara 	do {
21594e7ea81dSJan Kara 		err = mpage_map_one_extent(handle, mpd);
21604e7ea81dSJan Kara 		if (err < 0) {
21614e7ea81dSJan Kara 			struct super_block *sb = inode->i_sb;
21624e7ea81dSJan Kara 
2163cb530541STheodore Ts'o 			if (EXT4_SB(sb)->s_mount_flags & EXT4_MF_FS_ABORTED)
2164cb530541STheodore Ts'o 				goto invalidate_dirty_pages;
21654e7ea81dSJan Kara 			/*
2166cb530541STheodore Ts'o 			 * Let the uper layers retry transient errors.
2167cb530541STheodore Ts'o 			 * In the case of ENOSPC, if ext4_count_free_blocks()
2168cb530541STheodore Ts'o 			 * is non-zero, a commit should free up blocks.
21694e7ea81dSJan Kara 			 */
2170cb530541STheodore Ts'o 			if ((err == -ENOMEM) ||
21716603120eSDmitry Monakhov 			    (err == -ENOSPC && ext4_count_free_clusters(sb))) {
21726603120eSDmitry Monakhov 				if (progress)
21736603120eSDmitry Monakhov 					goto update_disksize;
2174cb530541STheodore Ts'o 				return err;
21756603120eSDmitry Monakhov 			}
21764e7ea81dSJan Kara 			ext4_msg(sb, KERN_CRIT,
21774e7ea81dSJan Kara 				 "Delayed block allocation failed for "
21784e7ea81dSJan Kara 				 "inode %lu at logical offset %llu with"
21794e7ea81dSJan Kara 				 " max blocks %u with error %d",
21804e7ea81dSJan Kara 				 inode->i_ino,
21814e7ea81dSJan Kara 				 (unsigned long long)map->m_lblk,
2182cb530541STheodore Ts'o 				 (unsigned)map->m_len, -err);
21834e7ea81dSJan Kara 			ext4_msg(sb, KERN_CRIT,
21844e7ea81dSJan Kara 				 "This should not happen!! Data will "
21854e7ea81dSJan Kara 				 "be lost\n");
21864e7ea81dSJan Kara 			if (err == -ENOSPC)
21874e7ea81dSJan Kara 				ext4_print_free_blocks(inode);
2188cb530541STheodore Ts'o 		invalidate_dirty_pages:
2189cb530541STheodore Ts'o 			*give_up_on_write = true;
21904e7ea81dSJan Kara 			return err;
21914e7ea81dSJan Kara 		}
21926603120eSDmitry Monakhov 		progress = 1;
21934e7ea81dSJan Kara 		/*
21944e7ea81dSJan Kara 		 * Update buffer state, submit mapped pages, and get us new
21954e7ea81dSJan Kara 		 * extent to map
21964e7ea81dSJan Kara 		 */
21974e7ea81dSJan Kara 		err = mpage_map_and_submit_buffers(mpd);
21984e7ea81dSJan Kara 		if (err < 0)
21996603120eSDmitry Monakhov 			goto update_disksize;
220027d7c4edSJan Kara 	} while (map->m_len);
22014e7ea81dSJan Kara 
22026603120eSDmitry Monakhov update_disksize:
2203622cad13STheodore Ts'o 	/*
2204622cad13STheodore Ts'o 	 * Update on-disk size after IO is submitted.  Races with
2205622cad13STheodore Ts'o 	 * truncate are avoided by checking i_size under i_data_sem.
2206622cad13STheodore Ts'o 	 */
22074e7ea81dSJan Kara 	disksize = ((loff_t)mpd->first_page) << PAGE_CACHE_SHIFT;
22084e7ea81dSJan Kara 	if (disksize > EXT4_I(inode)->i_disksize) {
22094e7ea81dSJan Kara 		int err2;
2210622cad13STheodore Ts'o 		loff_t i_size;
22114e7ea81dSJan Kara 
2212622cad13STheodore Ts'o 		down_write(&EXT4_I(inode)->i_data_sem);
2213622cad13STheodore Ts'o 		i_size = i_size_read(inode);
2214622cad13STheodore Ts'o 		if (disksize > i_size)
2215622cad13STheodore Ts'o 			disksize = i_size;
2216622cad13STheodore Ts'o 		if (disksize > EXT4_I(inode)->i_disksize)
2217622cad13STheodore Ts'o 			EXT4_I(inode)->i_disksize = disksize;
22184e7ea81dSJan Kara 		err2 = ext4_mark_inode_dirty(handle, inode);
2219622cad13STheodore Ts'o 		up_write(&EXT4_I(inode)->i_data_sem);
22204e7ea81dSJan Kara 		if (err2)
22214e7ea81dSJan Kara 			ext4_error(inode->i_sb,
22224e7ea81dSJan Kara 				   "Failed to mark inode %lu dirty",
22234e7ea81dSJan Kara 				   inode->i_ino);
22244e7ea81dSJan Kara 		if (!err)
22254e7ea81dSJan Kara 			err = err2;
22264e7ea81dSJan Kara 	}
22274e7ea81dSJan Kara 	return err;
22284e7ea81dSJan Kara }
22294e7ea81dSJan Kara 
22304e7ea81dSJan Kara /*
2231fffb2739SJan Kara  * Calculate the total number of credits to reserve for one writepages
223220970ba6STheodore Ts'o  * iteration. This is called from ext4_writepages(). We map an extent of
2233fffb2739SJan Kara  * up to MAX_WRITEPAGES_EXTENT_LEN blocks and then we go on and finish mapping
2234fffb2739SJan Kara  * the last partial page. So in total we can map MAX_WRITEPAGES_EXTENT_LEN +
2235fffb2739SJan Kara  * bpp - 1 blocks in bpp different extents.
2236525f4ed8SMingming Cao  */
2237fffb2739SJan Kara static int ext4_da_writepages_trans_blocks(struct inode *inode)
2238fffb2739SJan Kara {
2239fffb2739SJan Kara 	int bpp = ext4_journal_blocks_per_page(inode);
2240525f4ed8SMingming Cao 
2241fffb2739SJan Kara 	return ext4_meta_trans_blocks(inode,
2242fffb2739SJan Kara 				MAX_WRITEPAGES_EXTENT_LEN + bpp - 1, bpp);
2243525f4ed8SMingming Cao }
224461628a3fSMingming Cao 
22458e48dcfbSTheodore Ts'o /*
22464e7ea81dSJan Kara  * mpage_prepare_extent_to_map - find & lock contiguous range of dirty pages
22474e7ea81dSJan Kara  * 				 and underlying extent to map
22484e7ea81dSJan Kara  *
22494e7ea81dSJan Kara  * @mpd - where to look for pages
22504e7ea81dSJan Kara  *
22514e7ea81dSJan Kara  * Walk dirty pages in the mapping. If they are fully mapped, submit them for
22524e7ea81dSJan Kara  * IO immediately. When we find a page which isn't mapped we start accumulating
22534e7ea81dSJan Kara  * extent of buffers underlying these pages that needs mapping (formed by
22544e7ea81dSJan Kara  * either delayed or unwritten buffers). We also lock the pages containing
22554e7ea81dSJan Kara  * these buffers. The extent found is returned in @mpd structure (starting at
22564e7ea81dSJan Kara  * mpd->lblk with length mpd->len blocks).
22574e7ea81dSJan Kara  *
22584e7ea81dSJan Kara  * Note that this function can attach bios to one io_end structure which are
22594e7ea81dSJan Kara  * neither logically nor physically contiguous. Although it may seem as an
22604e7ea81dSJan Kara  * unnecessary complication, it is actually inevitable in blocksize < pagesize
22614e7ea81dSJan Kara  * case as we need to track IO to all buffers underlying a page in one io_end.
22628e48dcfbSTheodore Ts'o  */
22634e7ea81dSJan Kara static int mpage_prepare_extent_to_map(struct mpage_da_data *mpd)
22648e48dcfbSTheodore Ts'o {
22654e7ea81dSJan Kara 	struct address_space *mapping = mpd->inode->i_mapping;
22668e48dcfbSTheodore Ts'o 	struct pagevec pvec;
22674f01b02cSTheodore Ts'o 	unsigned int nr_pages;
2268aeac589aSMing Lei 	long left = mpd->wbc->nr_to_write;
22694e7ea81dSJan Kara 	pgoff_t index = mpd->first_page;
22704e7ea81dSJan Kara 	pgoff_t end = mpd->last_page;
22714e7ea81dSJan Kara 	int tag;
22724e7ea81dSJan Kara 	int i, err = 0;
22734e7ea81dSJan Kara 	int blkbits = mpd->inode->i_blkbits;
22744e7ea81dSJan Kara 	ext4_lblk_t lblk;
22754e7ea81dSJan Kara 	struct buffer_head *head;
22768e48dcfbSTheodore Ts'o 
22774e7ea81dSJan Kara 	if (mpd->wbc->sync_mode == WB_SYNC_ALL || mpd->wbc->tagged_writepages)
22785b41d924SEric Sandeen 		tag = PAGECACHE_TAG_TOWRITE;
22795b41d924SEric Sandeen 	else
22805b41d924SEric Sandeen 		tag = PAGECACHE_TAG_DIRTY;
22815b41d924SEric Sandeen 
22824e7ea81dSJan Kara 	pagevec_init(&pvec, 0);
22834e7ea81dSJan Kara 	mpd->map.m_len = 0;
22844e7ea81dSJan Kara 	mpd->next_page = index;
22854f01b02cSTheodore Ts'o 	while (index <= end) {
22865b41d924SEric Sandeen 		nr_pages = pagevec_lookup_tag(&pvec, mapping, &index, tag,
22878e48dcfbSTheodore Ts'o 			      min(end - index, (pgoff_t)PAGEVEC_SIZE-1) + 1);
22888e48dcfbSTheodore Ts'o 		if (nr_pages == 0)
22894e7ea81dSJan Kara 			goto out;
22908e48dcfbSTheodore Ts'o 
22918e48dcfbSTheodore Ts'o 		for (i = 0; i < nr_pages; i++) {
22928e48dcfbSTheodore Ts'o 			struct page *page = pvec.pages[i];
22938e48dcfbSTheodore Ts'o 
22948e48dcfbSTheodore Ts'o 			/*
22958e48dcfbSTheodore Ts'o 			 * At this point, the page may be truncated or
22968e48dcfbSTheodore Ts'o 			 * invalidated (changing page->mapping to NULL), or
22978e48dcfbSTheodore Ts'o 			 * even swizzled back from swapper_space to tmpfs file
22988e48dcfbSTheodore Ts'o 			 * mapping. However, page->index will not change
22998e48dcfbSTheodore Ts'o 			 * because we have a reference on the page.
23008e48dcfbSTheodore Ts'o 			 */
23014f01b02cSTheodore Ts'o 			if (page->index > end)
23024f01b02cSTheodore Ts'o 				goto out;
23038e48dcfbSTheodore Ts'o 
2304aeac589aSMing Lei 			/*
2305aeac589aSMing Lei 			 * Accumulated enough dirty pages? This doesn't apply
2306aeac589aSMing Lei 			 * to WB_SYNC_ALL mode. For integrity sync we have to
2307aeac589aSMing Lei 			 * keep going because someone may be concurrently
2308aeac589aSMing Lei 			 * dirtying pages, and we might have synced a lot of
2309aeac589aSMing Lei 			 * newly appeared dirty pages, but have not synced all
2310aeac589aSMing Lei 			 * of the old dirty pages.
2311aeac589aSMing Lei 			 */
2312aeac589aSMing Lei 			if (mpd->wbc->sync_mode == WB_SYNC_NONE && left <= 0)
2313aeac589aSMing Lei 				goto out;
2314aeac589aSMing Lei 
23154e7ea81dSJan Kara 			/* If we can't merge this page, we are done. */
23164e7ea81dSJan Kara 			if (mpd->map.m_len > 0 && mpd->next_page != page->index)
23174e7ea81dSJan Kara 				goto out;
231878aaced3STheodore Ts'o 
23198e48dcfbSTheodore Ts'o 			lock_page(page);
23208e48dcfbSTheodore Ts'o 			/*
23214e7ea81dSJan Kara 			 * If the page is no longer dirty, or its mapping no
23224e7ea81dSJan Kara 			 * longer corresponds to inode we are writing (which
23234e7ea81dSJan Kara 			 * means it has been truncated or invalidated), or the
23244e7ea81dSJan Kara 			 * page is already under writeback and we are not doing
23254e7ea81dSJan Kara 			 * a data integrity writeback, skip the page
23268e48dcfbSTheodore Ts'o 			 */
23274f01b02cSTheodore Ts'o 			if (!PageDirty(page) ||
23284f01b02cSTheodore Ts'o 			    (PageWriteback(page) &&
23294e7ea81dSJan Kara 			     (mpd->wbc->sync_mode == WB_SYNC_NONE)) ||
23304f01b02cSTheodore Ts'o 			    unlikely(page->mapping != mapping)) {
23318e48dcfbSTheodore Ts'o 				unlock_page(page);
23328e48dcfbSTheodore Ts'o 				continue;
23338e48dcfbSTheodore Ts'o 			}
23348e48dcfbSTheodore Ts'o 
23358e48dcfbSTheodore Ts'o 			wait_on_page_writeback(page);
23368e48dcfbSTheodore Ts'o 			BUG_ON(PageWriteback(page));
23378e48dcfbSTheodore Ts'o 
23384e7ea81dSJan Kara 			if (mpd->map.m_len == 0)
23398eb9e5ceSTheodore Ts'o 				mpd->first_page = page->index;
23408eb9e5ceSTheodore Ts'o 			mpd->next_page = page->index + 1;
2341f8bec370SJan Kara 			/* Add all dirty buffers to mpd */
23424e7ea81dSJan Kara 			lblk = ((ext4_lblk_t)page->index) <<
23434e7ea81dSJan Kara 				(PAGE_CACHE_SHIFT - blkbits);
23448eb9e5ceSTheodore Ts'o 			head = page_buffers(page);
23455f1132b2SJan Kara 			err = mpage_process_page_bufs(mpd, head, head, lblk);
23465f1132b2SJan Kara 			if (err <= 0)
23474e7ea81dSJan Kara 				goto out;
23485f1132b2SJan Kara 			err = 0;
2349aeac589aSMing Lei 			left--;
23508e48dcfbSTheodore Ts'o 		}
23518e48dcfbSTheodore Ts'o 		pagevec_release(&pvec);
23528e48dcfbSTheodore Ts'o 		cond_resched();
23538e48dcfbSTheodore Ts'o 	}
23544f01b02cSTheodore Ts'o 	return 0;
23558eb9e5ceSTheodore Ts'o out:
23568eb9e5ceSTheodore Ts'o 	pagevec_release(&pvec);
23574e7ea81dSJan Kara 	return err;
23588e48dcfbSTheodore Ts'o }
23598e48dcfbSTheodore Ts'o 
236020970ba6STheodore Ts'o static int __writepage(struct page *page, struct writeback_control *wbc,
236120970ba6STheodore Ts'o 		       void *data)
236220970ba6STheodore Ts'o {
236320970ba6STheodore Ts'o 	struct address_space *mapping = data;
236420970ba6STheodore Ts'o 	int ret = ext4_writepage(page, wbc);
236520970ba6STheodore Ts'o 	mapping_set_error(mapping, ret);
236620970ba6STheodore Ts'o 	return ret;
236720970ba6STheodore Ts'o }
236820970ba6STheodore Ts'o 
236920970ba6STheodore Ts'o static int ext4_writepages(struct address_space *mapping,
237064769240SAlex Tomas 			   struct writeback_control *wbc)
237164769240SAlex Tomas {
23724e7ea81dSJan Kara 	pgoff_t	writeback_index = 0;
23734e7ea81dSJan Kara 	long nr_to_write = wbc->nr_to_write;
237422208dedSAneesh Kumar K.V 	int range_whole = 0;
23754e7ea81dSJan Kara 	int cycled = 1;
237661628a3fSMingming Cao 	handle_t *handle = NULL;
2377df22291fSAneesh Kumar K.V 	struct mpage_da_data mpd;
23785e745b04SAneesh Kumar K.V 	struct inode *inode = mapping->host;
23796b523df4SJan Kara 	int needed_blocks, rsv_blocks = 0, ret = 0;
23805e745b04SAneesh Kumar K.V 	struct ext4_sb_info *sbi = EXT4_SB(mapping->host->i_sb);
23814e7ea81dSJan Kara 	bool done;
23821bce63d1SShaohua Li 	struct blk_plug plug;
2383cb530541STheodore Ts'o 	bool give_up_on_write = false;
238461628a3fSMingming Cao 
238520970ba6STheodore Ts'o 	trace_ext4_writepages(inode, wbc);
2386ba80b101STheodore Ts'o 
238761628a3fSMingming Cao 	/*
238861628a3fSMingming Cao 	 * No pages to write? This is mainly a kludge to avoid starting
238961628a3fSMingming Cao 	 * a transaction for special inodes like journal inode on last iput()
239061628a3fSMingming Cao 	 * because that could violate lock ordering on umount
239161628a3fSMingming Cao 	 */
2392a1d6cc56SAneesh Kumar K.V 	if (!mapping->nrpages || !mapping_tagged(mapping, PAGECACHE_TAG_DIRTY))
2393bbf023c7SMing Lei 		goto out_writepages;
23942a21e37eSTheodore Ts'o 
239520970ba6STheodore Ts'o 	if (ext4_should_journal_data(inode)) {
239620970ba6STheodore Ts'o 		struct blk_plug plug;
239720970ba6STheodore Ts'o 
239820970ba6STheodore Ts'o 		blk_start_plug(&plug);
239920970ba6STheodore Ts'o 		ret = write_cache_pages(mapping, wbc, __writepage, mapping);
240020970ba6STheodore Ts'o 		blk_finish_plug(&plug);
2401bbf023c7SMing Lei 		goto out_writepages;
240220970ba6STheodore Ts'o 	}
240320970ba6STheodore Ts'o 
24042a21e37eSTheodore Ts'o 	/*
24052a21e37eSTheodore Ts'o 	 * If the filesystem has aborted, it is read-only, so return
24062a21e37eSTheodore Ts'o 	 * right away instead of dumping stack traces later on that
24072a21e37eSTheodore Ts'o 	 * will obscure the real source of the problem.  We test
24084ab2f15bSTheodore Ts'o 	 * EXT4_MF_FS_ABORTED instead of sb->s_flag's MS_RDONLY because
24092a21e37eSTheodore Ts'o 	 * the latter could be true if the filesystem is mounted
241020970ba6STheodore Ts'o 	 * read-only, and in that case, ext4_writepages should
24112a21e37eSTheodore Ts'o 	 * *never* be called, so if that ever happens, we would want
24122a21e37eSTheodore Ts'o 	 * the stack trace.
24132a21e37eSTheodore Ts'o 	 */
2414bbf023c7SMing Lei 	if (unlikely(sbi->s_mount_flags & EXT4_MF_FS_ABORTED)) {
2415bbf023c7SMing Lei 		ret = -EROFS;
2416bbf023c7SMing Lei 		goto out_writepages;
2417bbf023c7SMing Lei 	}
24182a21e37eSTheodore Ts'o 
24196b523df4SJan Kara 	if (ext4_should_dioread_nolock(inode)) {
24206b523df4SJan Kara 		/*
24216b523df4SJan Kara 		 * We may need to convert up to one extent per block in
24226b523df4SJan Kara 		 * the page and we may dirty the inode.
24236b523df4SJan Kara 		 */
24246b523df4SJan Kara 		rsv_blocks = 1 + (PAGE_CACHE_SIZE >> inode->i_blkbits);
24256b523df4SJan Kara 	}
24266b523df4SJan Kara 
24274e7ea81dSJan Kara 	/*
24284e7ea81dSJan Kara 	 * If we have inline data and arrive here, it means that
24294e7ea81dSJan Kara 	 * we will soon create the block for the 1st page, so
24304e7ea81dSJan Kara 	 * we'd better clear the inline data here.
24314e7ea81dSJan Kara 	 */
24324e7ea81dSJan Kara 	if (ext4_has_inline_data(inode)) {
24334e7ea81dSJan Kara 		/* Just inode will be modified... */
24344e7ea81dSJan Kara 		handle = ext4_journal_start(inode, EXT4_HT_INODE, 1);
24354e7ea81dSJan Kara 		if (IS_ERR(handle)) {
24364e7ea81dSJan Kara 			ret = PTR_ERR(handle);
24374e7ea81dSJan Kara 			goto out_writepages;
24384e7ea81dSJan Kara 		}
24394e7ea81dSJan Kara 		BUG_ON(ext4_test_inode_state(inode,
24404e7ea81dSJan Kara 				EXT4_STATE_MAY_INLINE_DATA));
24414e7ea81dSJan Kara 		ext4_destroy_inline_data(handle, inode);
24424e7ea81dSJan Kara 		ext4_journal_stop(handle);
24434e7ea81dSJan Kara 	}
24444e7ea81dSJan Kara 
244522208dedSAneesh Kumar K.V 	if (wbc->range_start == 0 && wbc->range_end == LLONG_MAX)
244622208dedSAneesh Kumar K.V 		range_whole = 1;
244761628a3fSMingming Cao 
24482acf2c26SAneesh Kumar K.V 	if (wbc->range_cyclic) {
24494e7ea81dSJan Kara 		writeback_index = mapping->writeback_index;
24504e7ea81dSJan Kara 		if (writeback_index)
24512acf2c26SAneesh Kumar K.V 			cycled = 0;
24524e7ea81dSJan Kara 		mpd.first_page = writeback_index;
24534e7ea81dSJan Kara 		mpd.last_page = -1;
24545b41d924SEric Sandeen 	} else {
24554e7ea81dSJan Kara 		mpd.first_page = wbc->range_start >> PAGE_CACHE_SHIFT;
24564e7ea81dSJan Kara 		mpd.last_page = wbc->range_end >> PAGE_CACHE_SHIFT;
24575b41d924SEric Sandeen 	}
2458a1d6cc56SAneesh Kumar K.V 
24594e7ea81dSJan Kara 	mpd.inode = inode;
24604e7ea81dSJan Kara 	mpd.wbc = wbc;
24614e7ea81dSJan Kara 	ext4_io_submit_init(&mpd.io_submit, wbc);
24622acf2c26SAneesh Kumar K.V retry:
24636e6938b6SWu Fengguang 	if (wbc->sync_mode == WB_SYNC_ALL || wbc->tagged_writepages)
24644e7ea81dSJan Kara 		tag_pages_for_writeback(mapping, mpd.first_page, mpd.last_page);
24654e7ea81dSJan Kara 	done = false;
24661bce63d1SShaohua Li 	blk_start_plug(&plug);
24674e7ea81dSJan Kara 	while (!done && mpd.first_page <= mpd.last_page) {
24684e7ea81dSJan Kara 		/* For each extent of pages we use new io_end */
24694e7ea81dSJan Kara 		mpd.io_submit.io_end = ext4_init_io_end(inode, GFP_KERNEL);
24704e7ea81dSJan Kara 		if (!mpd.io_submit.io_end) {
24714e7ea81dSJan Kara 			ret = -ENOMEM;
24724e7ea81dSJan Kara 			break;
24734e7ea81dSJan Kara 		}
2474a1d6cc56SAneesh Kumar K.V 
2475a1d6cc56SAneesh Kumar K.V 		/*
24764e7ea81dSJan Kara 		 * We have two constraints: We find one extent to map and we
24774e7ea81dSJan Kara 		 * must always write out whole page (makes a difference when
24784e7ea81dSJan Kara 		 * blocksize < pagesize) so that we don't block on IO when we
24794e7ea81dSJan Kara 		 * try to write out the rest of the page. Journalled mode is
24804e7ea81dSJan Kara 		 * not supported by delalloc.
2481a1d6cc56SAneesh Kumar K.V 		 */
2482a1d6cc56SAneesh Kumar K.V 		BUG_ON(ext4_should_journal_data(inode));
2483525f4ed8SMingming Cao 		needed_blocks = ext4_da_writepages_trans_blocks(inode);
2484a1d6cc56SAneesh Kumar K.V 
248561628a3fSMingming Cao 		/* start a new transaction */
24866b523df4SJan Kara 		handle = ext4_journal_start_with_reserve(inode,
24876b523df4SJan Kara 				EXT4_HT_WRITE_PAGE, needed_blocks, rsv_blocks);
248861628a3fSMingming Cao 		if (IS_ERR(handle)) {
248961628a3fSMingming Cao 			ret = PTR_ERR(handle);
24901693918eSTheodore Ts'o 			ext4_msg(inode->i_sb, KERN_CRIT, "%s: jbd2_start: "
2491fbe845ddSCurt Wohlgemuth 			       "%ld pages, ino %lu; err %d", __func__,
2492a1d6cc56SAneesh Kumar K.V 				wbc->nr_to_write, inode->i_ino, ret);
24934e7ea81dSJan Kara 			/* Release allocated io_end */
24944e7ea81dSJan Kara 			ext4_put_io_end(mpd.io_submit.io_end);
24954e7ea81dSJan Kara 			break;
249661628a3fSMingming Cao 		}
2497f63e6005STheodore Ts'o 
24984e7ea81dSJan Kara 		trace_ext4_da_write_pages(inode, mpd.first_page, mpd.wbc);
24994e7ea81dSJan Kara 		ret = mpage_prepare_extent_to_map(&mpd);
25004e7ea81dSJan Kara 		if (!ret) {
25014e7ea81dSJan Kara 			if (mpd.map.m_len)
2502cb530541STheodore Ts'o 				ret = mpage_map_and_submit_extent(handle, &mpd,
2503cb530541STheodore Ts'o 					&give_up_on_write);
25044e7ea81dSJan Kara 			else {
2505f63e6005STheodore Ts'o 				/*
25064e7ea81dSJan Kara 				 * We scanned the whole range (or exhausted
25074e7ea81dSJan Kara 				 * nr_to_write), submitted what was mapped and
25084e7ea81dSJan Kara 				 * didn't find anything needing mapping. We are
25094e7ea81dSJan Kara 				 * done.
2510f63e6005STheodore Ts'o 				 */
25114e7ea81dSJan Kara 				done = true;
2512f63e6005STheodore Ts'o 			}
25134e7ea81dSJan Kara 		}
251461628a3fSMingming Cao 		ext4_journal_stop(handle);
25154e7ea81dSJan Kara 		/* Submit prepared bio */
25164e7ea81dSJan Kara 		ext4_io_submit(&mpd.io_submit);
25174e7ea81dSJan Kara 		/* Unlock pages we didn't use */
2518cb530541STheodore Ts'o 		mpage_release_unused_pages(&mpd, give_up_on_write);
25194e7ea81dSJan Kara 		/* Drop our io_end reference we got from init */
25204e7ea81dSJan Kara 		ext4_put_io_end(mpd.io_submit.io_end);
2521df22291fSAneesh Kumar K.V 
25224e7ea81dSJan Kara 		if (ret == -ENOSPC && sbi->s_journal) {
25234e7ea81dSJan Kara 			/*
25244e7ea81dSJan Kara 			 * Commit the transaction which would
252522208dedSAneesh Kumar K.V 			 * free blocks released in the transaction
252622208dedSAneesh Kumar K.V 			 * and try again
252722208dedSAneesh Kumar K.V 			 */
2528df22291fSAneesh Kumar K.V 			jbd2_journal_force_commit_nested(sbi->s_journal);
252922208dedSAneesh Kumar K.V 			ret = 0;
25304e7ea81dSJan Kara 			continue;
25314e7ea81dSJan Kara 		}
25324e7ea81dSJan Kara 		/* Fatal error - ENOMEM, EIO... */
25334e7ea81dSJan Kara 		if (ret)
253461628a3fSMingming Cao 			break;
253561628a3fSMingming Cao 	}
25361bce63d1SShaohua Li 	blk_finish_plug(&plug);
25379c12a831SJan Kara 	if (!ret && !cycled && wbc->nr_to_write > 0) {
25382acf2c26SAneesh Kumar K.V 		cycled = 1;
25394e7ea81dSJan Kara 		mpd.last_page = writeback_index - 1;
25404e7ea81dSJan Kara 		mpd.first_page = 0;
25412acf2c26SAneesh Kumar K.V 		goto retry;
25422acf2c26SAneesh Kumar K.V 	}
254361628a3fSMingming Cao 
254422208dedSAneesh Kumar K.V 	/* Update index */
254522208dedSAneesh Kumar K.V 	if (wbc->range_cyclic || (range_whole && wbc->nr_to_write > 0))
254622208dedSAneesh Kumar K.V 		/*
25474e7ea81dSJan Kara 		 * Set the writeback_index so that range_cyclic
254822208dedSAneesh Kumar K.V 		 * mode will write it back later
254922208dedSAneesh Kumar K.V 		 */
25504e7ea81dSJan Kara 		mapping->writeback_index = mpd.first_page;
2551a1d6cc56SAneesh Kumar K.V 
255261628a3fSMingming Cao out_writepages:
255320970ba6STheodore Ts'o 	trace_ext4_writepages_result(inode, wbc, ret,
25544e7ea81dSJan Kara 				     nr_to_write - wbc->nr_to_write);
255561628a3fSMingming Cao 	return ret;
255664769240SAlex Tomas }
255764769240SAlex Tomas 
255879f0be8dSAneesh Kumar K.V static int ext4_nonda_switch(struct super_block *sb)
255979f0be8dSAneesh Kumar K.V {
25605c1ff336SEric Whitney 	s64 free_clusters, dirty_clusters;
256179f0be8dSAneesh Kumar K.V 	struct ext4_sb_info *sbi = EXT4_SB(sb);
256279f0be8dSAneesh Kumar K.V 
256379f0be8dSAneesh Kumar K.V 	/*
256479f0be8dSAneesh Kumar K.V 	 * switch to non delalloc mode if we are running low
256579f0be8dSAneesh Kumar K.V 	 * on free block. The free block accounting via percpu
2566179f7ebfSEric Dumazet 	 * counters can get slightly wrong with percpu_counter_batch getting
256779f0be8dSAneesh Kumar K.V 	 * accumulated on each CPU without updating global counters
256879f0be8dSAneesh Kumar K.V 	 * Delalloc need an accurate free block accounting. So switch
256979f0be8dSAneesh Kumar K.V 	 * to non delalloc when we are near to error range.
257079f0be8dSAneesh Kumar K.V 	 */
25715c1ff336SEric Whitney 	free_clusters =
25725c1ff336SEric Whitney 		percpu_counter_read_positive(&sbi->s_freeclusters_counter);
25735c1ff336SEric Whitney 	dirty_clusters =
25745c1ff336SEric Whitney 		percpu_counter_read_positive(&sbi->s_dirtyclusters_counter);
257500d4e736STheodore Ts'o 	/*
257600d4e736STheodore Ts'o 	 * Start pushing delalloc when 1/2 of free blocks are dirty.
257700d4e736STheodore Ts'o 	 */
25785c1ff336SEric Whitney 	if (dirty_clusters && (free_clusters < 2 * dirty_clusters))
257910ee27a0SMiao Xie 		try_to_writeback_inodes_sb(sb, WB_REASON_FS_FREE_SPACE);
258000d4e736STheodore Ts'o 
25815c1ff336SEric Whitney 	if (2 * free_clusters < 3 * dirty_clusters ||
25825c1ff336SEric Whitney 	    free_clusters < (dirty_clusters + EXT4_FREECLUSTERS_WATERMARK)) {
258379f0be8dSAneesh Kumar K.V 		/*
2584c8afb446SEric Sandeen 		 * free block count is less than 150% of dirty blocks
2585c8afb446SEric Sandeen 		 * or free blocks is less than watermark
258679f0be8dSAneesh Kumar K.V 		 */
258779f0be8dSAneesh Kumar K.V 		return 1;
258879f0be8dSAneesh Kumar K.V 	}
258979f0be8dSAneesh Kumar K.V 	return 0;
259079f0be8dSAneesh Kumar K.V }
259179f0be8dSAneesh Kumar K.V 
25920ff8947fSEric Sandeen /* We always reserve for an inode update; the superblock could be there too */
25930ff8947fSEric Sandeen static int ext4_da_write_credits(struct inode *inode, loff_t pos, unsigned len)
25940ff8947fSEric Sandeen {
25950ff8947fSEric Sandeen 	if (likely(EXT4_HAS_RO_COMPAT_FEATURE(inode->i_sb,
25960ff8947fSEric Sandeen 				EXT4_FEATURE_RO_COMPAT_LARGE_FILE)))
25970ff8947fSEric Sandeen 		return 1;
25980ff8947fSEric Sandeen 
25990ff8947fSEric Sandeen 	if (pos + len <= 0x7fffffffULL)
26000ff8947fSEric Sandeen 		return 1;
26010ff8947fSEric Sandeen 
26020ff8947fSEric Sandeen 	/* We might need to update the superblock to set LARGE_FILE */
26030ff8947fSEric Sandeen 	return 2;
26040ff8947fSEric Sandeen }
26050ff8947fSEric Sandeen 
260664769240SAlex Tomas static int ext4_da_write_begin(struct file *file, struct address_space *mapping,
260764769240SAlex Tomas 			       loff_t pos, unsigned len, unsigned flags,
260864769240SAlex Tomas 			       struct page **pagep, void **fsdata)
260964769240SAlex Tomas {
261072b8ab9dSEric Sandeen 	int ret, retries = 0;
261164769240SAlex Tomas 	struct page *page;
261264769240SAlex Tomas 	pgoff_t index;
261364769240SAlex Tomas 	struct inode *inode = mapping->host;
261464769240SAlex Tomas 	handle_t *handle;
261564769240SAlex Tomas 
261664769240SAlex Tomas 	index = pos >> PAGE_CACHE_SHIFT;
261779f0be8dSAneesh Kumar K.V 
261879f0be8dSAneesh Kumar K.V 	if (ext4_nonda_switch(inode->i_sb)) {
261979f0be8dSAneesh Kumar K.V 		*fsdata = (void *)FALL_BACK_TO_NONDELALLOC;
262079f0be8dSAneesh Kumar K.V 		return ext4_write_begin(file, mapping, pos,
262179f0be8dSAneesh Kumar K.V 					len, flags, pagep, fsdata);
262279f0be8dSAneesh Kumar K.V 	}
262379f0be8dSAneesh Kumar K.V 	*fsdata = (void *)0;
26249bffad1eSTheodore Ts'o 	trace_ext4_da_write_begin(inode, pos, len, flags);
26259c3569b5STao Ma 
26269c3569b5STao Ma 	if (ext4_test_inode_state(inode, EXT4_STATE_MAY_INLINE_DATA)) {
26279c3569b5STao Ma 		ret = ext4_da_write_inline_data_begin(mapping, inode,
26289c3569b5STao Ma 						      pos, len, flags,
26299c3569b5STao Ma 						      pagep, fsdata);
26309c3569b5STao Ma 		if (ret < 0)
263147564bfbSTheodore Ts'o 			return ret;
263247564bfbSTheodore Ts'o 		if (ret == 1)
263347564bfbSTheodore Ts'o 			return 0;
26349c3569b5STao Ma 	}
26359c3569b5STao Ma 
263647564bfbSTheodore Ts'o 	/*
263747564bfbSTheodore Ts'o 	 * grab_cache_page_write_begin() can take a long time if the
263847564bfbSTheodore Ts'o 	 * system is thrashing due to memory pressure, or if the page
263947564bfbSTheodore Ts'o 	 * is being written back.  So grab it first before we start
264047564bfbSTheodore Ts'o 	 * the transaction handle.  This also allows us to allocate
264147564bfbSTheodore Ts'o 	 * the page (if needed) without using GFP_NOFS.
264247564bfbSTheodore Ts'o 	 */
264347564bfbSTheodore Ts'o retry_grab:
264447564bfbSTheodore Ts'o 	page = grab_cache_page_write_begin(mapping, index, flags);
264547564bfbSTheodore Ts'o 	if (!page)
264647564bfbSTheodore Ts'o 		return -ENOMEM;
264747564bfbSTheodore Ts'o 	unlock_page(page);
264847564bfbSTheodore Ts'o 
264964769240SAlex Tomas 	/*
265064769240SAlex Tomas 	 * With delayed allocation, we don't log the i_disksize update
265164769240SAlex Tomas 	 * if there is delayed block allocation. But we still need
265264769240SAlex Tomas 	 * to journalling the i_disksize update if writes to the end
265364769240SAlex Tomas 	 * of file which has an already mapped buffer.
265464769240SAlex Tomas 	 */
265547564bfbSTheodore Ts'o retry_journal:
26560ff8947fSEric Sandeen 	handle = ext4_journal_start(inode, EXT4_HT_WRITE_PAGE,
26570ff8947fSEric Sandeen 				ext4_da_write_credits(inode, pos, len));
265864769240SAlex Tomas 	if (IS_ERR(handle)) {
265947564bfbSTheodore Ts'o 		page_cache_release(page);
266047564bfbSTheodore Ts'o 		return PTR_ERR(handle);
266164769240SAlex Tomas 	}
266264769240SAlex Tomas 
266347564bfbSTheodore Ts'o 	lock_page(page);
266447564bfbSTheodore Ts'o 	if (page->mapping != mapping) {
266547564bfbSTheodore Ts'o 		/* The page got truncated from under us */
266647564bfbSTheodore Ts'o 		unlock_page(page);
266747564bfbSTheodore Ts'o 		page_cache_release(page);
2668d5a0d4f7SEric Sandeen 		ext4_journal_stop(handle);
266947564bfbSTheodore Ts'o 		goto retry_grab;
2670d5a0d4f7SEric Sandeen 	}
267147564bfbSTheodore Ts'o 	/* In case writeback began while the page was unlocked */
26727afe5aa5SDmitry Monakhov 	wait_for_stable_page(page);
267364769240SAlex Tomas 
2674*2058f83aSMichael Halcrow #ifdef CONFIG_EXT4_FS_ENCRYPTION
2675*2058f83aSMichael Halcrow 	ret = ext4_block_write_begin(page, pos, len,
2676*2058f83aSMichael Halcrow 				     ext4_da_get_block_prep);
2677*2058f83aSMichael Halcrow #else
26786e1db88dSChristoph Hellwig 	ret = __block_write_begin(page, pos, len, ext4_da_get_block_prep);
2679*2058f83aSMichael Halcrow #endif
268064769240SAlex Tomas 	if (ret < 0) {
268164769240SAlex Tomas 		unlock_page(page);
268264769240SAlex Tomas 		ext4_journal_stop(handle);
2683ae4d5372SAneesh Kumar K.V 		/*
2684ae4d5372SAneesh Kumar K.V 		 * block_write_begin may have instantiated a few blocks
2685ae4d5372SAneesh Kumar K.V 		 * outside i_size.  Trim these off again. Don't need
2686ae4d5372SAneesh Kumar K.V 		 * i_size_read because we hold i_mutex.
2687ae4d5372SAneesh Kumar K.V 		 */
2688ae4d5372SAneesh Kumar K.V 		if (pos + len > inode->i_size)
2689b9a4207dSJan Kara 			ext4_truncate_failed_write(inode);
269047564bfbSTheodore Ts'o 
269147564bfbSTheodore Ts'o 		if (ret == -ENOSPC &&
269247564bfbSTheodore Ts'o 		    ext4_should_retry_alloc(inode->i_sb, &retries))
269347564bfbSTheodore Ts'o 			goto retry_journal;
269447564bfbSTheodore Ts'o 
269547564bfbSTheodore Ts'o 		page_cache_release(page);
269647564bfbSTheodore Ts'o 		return ret;
269764769240SAlex Tomas 	}
269864769240SAlex Tomas 
269947564bfbSTheodore Ts'o 	*pagep = page;
270064769240SAlex Tomas 	return ret;
270164769240SAlex Tomas }
270264769240SAlex Tomas 
2703632eaeabSMingming Cao /*
2704632eaeabSMingming Cao  * Check if we should update i_disksize
2705632eaeabSMingming Cao  * when write to the end of file but not require block allocation
2706632eaeabSMingming Cao  */
2707632eaeabSMingming Cao static int ext4_da_should_update_i_disksize(struct page *page,
2708632eaeabSMingming Cao 					    unsigned long offset)
2709632eaeabSMingming Cao {
2710632eaeabSMingming Cao 	struct buffer_head *bh;
2711632eaeabSMingming Cao 	struct inode *inode = page->mapping->host;
2712632eaeabSMingming Cao 	unsigned int idx;
2713632eaeabSMingming Cao 	int i;
2714632eaeabSMingming Cao 
2715632eaeabSMingming Cao 	bh = page_buffers(page);
2716632eaeabSMingming Cao 	idx = offset >> inode->i_blkbits;
2717632eaeabSMingming Cao 
2718632eaeabSMingming Cao 	for (i = 0; i < idx; i++)
2719632eaeabSMingming Cao 		bh = bh->b_this_page;
2720632eaeabSMingming Cao 
272129fa89d0SAneesh Kumar K.V 	if (!buffer_mapped(bh) || (buffer_delay(bh)) || buffer_unwritten(bh))
2722632eaeabSMingming Cao 		return 0;
2723632eaeabSMingming Cao 	return 1;
2724632eaeabSMingming Cao }
2725632eaeabSMingming Cao 
272664769240SAlex Tomas static int ext4_da_write_end(struct file *file,
272764769240SAlex Tomas 			     struct address_space *mapping,
272864769240SAlex Tomas 			     loff_t pos, unsigned len, unsigned copied,
272964769240SAlex Tomas 			     struct page *page, void *fsdata)
273064769240SAlex Tomas {
273164769240SAlex Tomas 	struct inode *inode = mapping->host;
273264769240SAlex Tomas 	int ret = 0, ret2;
273364769240SAlex Tomas 	handle_t *handle = ext4_journal_current_handle();
273464769240SAlex Tomas 	loff_t new_i_size;
2735632eaeabSMingming Cao 	unsigned long start, end;
273679f0be8dSAneesh Kumar K.V 	int write_mode = (int)(unsigned long)fsdata;
273779f0be8dSAneesh Kumar K.V 
273874d553aaSTheodore Ts'o 	if (write_mode == FALL_BACK_TO_NONDELALLOC)
273974d553aaSTheodore Ts'o 		return ext4_write_end(file, mapping, pos,
274079f0be8dSAneesh Kumar K.V 				      len, copied, page, fsdata);
2741632eaeabSMingming Cao 
27429bffad1eSTheodore Ts'o 	trace_ext4_da_write_end(inode, pos, len, copied);
2743632eaeabSMingming Cao 	start = pos & (PAGE_CACHE_SIZE - 1);
2744632eaeabSMingming Cao 	end = start + copied - 1;
274564769240SAlex Tomas 
274664769240SAlex Tomas 	/*
274764769240SAlex Tomas 	 * generic_write_end() will run mark_inode_dirty() if i_size
274864769240SAlex Tomas 	 * changes.  So let's piggyback the i_disksize mark_inode_dirty
274964769240SAlex Tomas 	 * into that.
275064769240SAlex Tomas 	 */
275164769240SAlex Tomas 	new_i_size = pos + copied;
2752ea51d132SAndrea Arcangeli 	if (copied && new_i_size > EXT4_I(inode)->i_disksize) {
27539c3569b5STao Ma 		if (ext4_has_inline_data(inode) ||
27549c3569b5STao Ma 		    ext4_da_should_update_i_disksize(page, end)) {
2755ee124d27SDmitry Monakhov 			ext4_update_i_disksize(inode, new_i_size);
2756cf17fea6SAneesh Kumar K.V 			/* We need to mark inode dirty even if
2757cf17fea6SAneesh Kumar K.V 			 * new_i_size is less that inode->i_size
2758cf17fea6SAneesh Kumar K.V 			 * bu greater than i_disksize.(hint delalloc)
2759cf17fea6SAneesh Kumar K.V 			 */
2760cf17fea6SAneesh Kumar K.V 			ext4_mark_inode_dirty(handle, inode);
2761632eaeabSMingming Cao 		}
2762632eaeabSMingming Cao 	}
27639c3569b5STao Ma 
27649c3569b5STao Ma 	if (write_mode != CONVERT_INLINE_DATA &&
27659c3569b5STao Ma 	    ext4_test_inode_state(inode, EXT4_STATE_MAY_INLINE_DATA) &&
27669c3569b5STao Ma 	    ext4_has_inline_data(inode))
27679c3569b5STao Ma 		ret2 = ext4_da_write_inline_data_end(inode, pos, len, copied,
27689c3569b5STao Ma 						     page);
27699c3569b5STao Ma 	else
277064769240SAlex Tomas 		ret2 = generic_write_end(file, mapping, pos, len, copied,
277164769240SAlex Tomas 							page, fsdata);
27729c3569b5STao Ma 
277364769240SAlex Tomas 	copied = ret2;
277464769240SAlex Tomas 	if (ret2 < 0)
277564769240SAlex Tomas 		ret = ret2;
277664769240SAlex Tomas 	ret2 = ext4_journal_stop(handle);
277764769240SAlex Tomas 	if (!ret)
277864769240SAlex Tomas 		ret = ret2;
277964769240SAlex Tomas 
278064769240SAlex Tomas 	return ret ? ret : copied;
278164769240SAlex Tomas }
278264769240SAlex Tomas 
2783d47992f8SLukas Czerner static void ext4_da_invalidatepage(struct page *page, unsigned int offset,
2784d47992f8SLukas Czerner 				   unsigned int length)
278564769240SAlex Tomas {
278664769240SAlex Tomas 	/*
278764769240SAlex Tomas 	 * Drop reserved blocks
278864769240SAlex Tomas 	 */
278964769240SAlex Tomas 	BUG_ON(!PageLocked(page));
279064769240SAlex Tomas 	if (!page_has_buffers(page))
279164769240SAlex Tomas 		goto out;
279264769240SAlex Tomas 
2793ca99fdd2SLukas Czerner 	ext4_da_page_release_reservation(page, offset, length);
279464769240SAlex Tomas 
279564769240SAlex Tomas out:
2796d47992f8SLukas Czerner 	ext4_invalidatepage(page, offset, length);
279764769240SAlex Tomas 
279864769240SAlex Tomas 	return;
279964769240SAlex Tomas }
280064769240SAlex Tomas 
2801ccd2506bSTheodore Ts'o /*
2802ccd2506bSTheodore Ts'o  * Force all delayed allocation blocks to be allocated for a given inode.
2803ccd2506bSTheodore Ts'o  */
2804ccd2506bSTheodore Ts'o int ext4_alloc_da_blocks(struct inode *inode)
2805ccd2506bSTheodore Ts'o {
2806fb40ba0dSTheodore Ts'o 	trace_ext4_alloc_da_blocks(inode);
2807fb40ba0dSTheodore Ts'o 
280871d4f7d0STheodore Ts'o 	if (!EXT4_I(inode)->i_reserved_data_blocks)
2809ccd2506bSTheodore Ts'o 		return 0;
2810ccd2506bSTheodore Ts'o 
2811ccd2506bSTheodore Ts'o 	/*
2812ccd2506bSTheodore Ts'o 	 * We do something simple for now.  The filemap_flush() will
2813ccd2506bSTheodore Ts'o 	 * also start triggering a write of the data blocks, which is
2814ccd2506bSTheodore Ts'o 	 * not strictly speaking necessary (and for users of
2815ccd2506bSTheodore Ts'o 	 * laptop_mode, not even desirable).  However, to do otherwise
2816ccd2506bSTheodore Ts'o 	 * would require replicating code paths in:
2817ccd2506bSTheodore Ts'o 	 *
281820970ba6STheodore Ts'o 	 * ext4_writepages() ->
2819ccd2506bSTheodore Ts'o 	 *    write_cache_pages() ---> (via passed in callback function)
2820ccd2506bSTheodore Ts'o 	 *        __mpage_da_writepage() -->
2821ccd2506bSTheodore Ts'o 	 *           mpage_add_bh_to_extent()
2822ccd2506bSTheodore Ts'o 	 *           mpage_da_map_blocks()
2823ccd2506bSTheodore Ts'o 	 *
2824ccd2506bSTheodore Ts'o 	 * The problem is that write_cache_pages(), located in
2825ccd2506bSTheodore Ts'o 	 * mm/page-writeback.c, marks pages clean in preparation for
2826ccd2506bSTheodore Ts'o 	 * doing I/O, which is not desirable if we're not planning on
2827ccd2506bSTheodore Ts'o 	 * doing I/O at all.
2828ccd2506bSTheodore Ts'o 	 *
2829ccd2506bSTheodore Ts'o 	 * We could call write_cache_pages(), and then redirty all of
2830380cf090SWu Fengguang 	 * the pages by calling redirty_page_for_writepage() but that
2831ccd2506bSTheodore Ts'o 	 * would be ugly in the extreme.  So instead we would need to
2832ccd2506bSTheodore Ts'o 	 * replicate parts of the code in the above functions,
283325985edcSLucas De Marchi 	 * simplifying them because we wouldn't actually intend to
2834ccd2506bSTheodore Ts'o 	 * write out the pages, but rather only collect contiguous
2835ccd2506bSTheodore Ts'o 	 * logical block extents, call the multi-block allocator, and
2836ccd2506bSTheodore Ts'o 	 * then update the buffer heads with the block allocations.
2837ccd2506bSTheodore Ts'o 	 *
2838ccd2506bSTheodore Ts'o 	 * For now, though, we'll cheat by calling filemap_flush(),
2839ccd2506bSTheodore Ts'o 	 * which will map the blocks, and start the I/O, but not
2840ccd2506bSTheodore Ts'o 	 * actually wait for the I/O to complete.
2841ccd2506bSTheodore Ts'o 	 */
2842ccd2506bSTheodore Ts'o 	return filemap_flush(inode->i_mapping);
2843ccd2506bSTheodore Ts'o }
284464769240SAlex Tomas 
284564769240SAlex Tomas /*
2846ac27a0ecSDave Kleikamp  * bmap() is special.  It gets used by applications such as lilo and by
2847ac27a0ecSDave Kleikamp  * the swapper to find the on-disk block of a specific piece of data.
2848ac27a0ecSDave Kleikamp  *
2849ac27a0ecSDave Kleikamp  * Naturally, this is dangerous if the block concerned is still in the
2850617ba13bSMingming Cao  * journal.  If somebody makes a swapfile on an ext4 data-journaling
2851ac27a0ecSDave Kleikamp  * filesystem and enables swap, then they may get a nasty shock when the
2852ac27a0ecSDave Kleikamp  * data getting swapped to that swapfile suddenly gets overwritten by
2853ac27a0ecSDave Kleikamp  * the original zero's written out previously to the journal and
2854ac27a0ecSDave Kleikamp  * awaiting writeback in the kernel's buffer cache.
2855ac27a0ecSDave Kleikamp  *
2856ac27a0ecSDave Kleikamp  * So, if we see any bmap calls here on a modified, data-journaled file,
2857ac27a0ecSDave Kleikamp  * take extra steps to flush any blocks which might be in the cache.
2858ac27a0ecSDave Kleikamp  */
2859617ba13bSMingming Cao static sector_t ext4_bmap(struct address_space *mapping, sector_t block)
2860ac27a0ecSDave Kleikamp {
2861ac27a0ecSDave Kleikamp 	struct inode *inode = mapping->host;
2862ac27a0ecSDave Kleikamp 	journal_t *journal;
2863ac27a0ecSDave Kleikamp 	int err;
2864ac27a0ecSDave Kleikamp 
286546c7f254STao Ma 	/*
286646c7f254STao Ma 	 * We can get here for an inline file via the FIBMAP ioctl
286746c7f254STao Ma 	 */
286846c7f254STao Ma 	if (ext4_has_inline_data(inode))
286946c7f254STao Ma 		return 0;
287046c7f254STao Ma 
287164769240SAlex Tomas 	if (mapping_tagged(mapping, PAGECACHE_TAG_DIRTY) &&
287264769240SAlex Tomas 			test_opt(inode->i_sb, DELALLOC)) {
287364769240SAlex Tomas 		/*
287464769240SAlex Tomas 		 * With delalloc we want to sync the file
287564769240SAlex Tomas 		 * so that we can make sure we allocate
287664769240SAlex Tomas 		 * blocks for file
287764769240SAlex Tomas 		 */
287864769240SAlex Tomas 		filemap_write_and_wait(mapping);
287964769240SAlex Tomas 	}
288064769240SAlex Tomas 
288119f5fb7aSTheodore Ts'o 	if (EXT4_JOURNAL(inode) &&
288219f5fb7aSTheodore Ts'o 	    ext4_test_inode_state(inode, EXT4_STATE_JDATA)) {
2883ac27a0ecSDave Kleikamp 		/*
2884ac27a0ecSDave Kleikamp 		 * This is a REALLY heavyweight approach, but the use of
2885ac27a0ecSDave Kleikamp 		 * bmap on dirty files is expected to be extremely rare:
2886ac27a0ecSDave Kleikamp 		 * only if we run lilo or swapon on a freshly made file
2887ac27a0ecSDave Kleikamp 		 * do we expect this to happen.
2888ac27a0ecSDave Kleikamp 		 *
2889ac27a0ecSDave Kleikamp 		 * (bmap requires CAP_SYS_RAWIO so this does not
2890ac27a0ecSDave Kleikamp 		 * represent an unprivileged user DOS attack --- we'd be
2891ac27a0ecSDave Kleikamp 		 * in trouble if mortal users could trigger this path at
2892ac27a0ecSDave Kleikamp 		 * will.)
2893ac27a0ecSDave Kleikamp 		 *
2894617ba13bSMingming Cao 		 * NB. EXT4_STATE_JDATA is not set on files other than
2895ac27a0ecSDave Kleikamp 		 * regular files.  If somebody wants to bmap a directory
2896ac27a0ecSDave Kleikamp 		 * or symlink and gets confused because the buffer
2897ac27a0ecSDave Kleikamp 		 * hasn't yet been flushed to disk, they deserve
2898ac27a0ecSDave Kleikamp 		 * everything they get.
2899ac27a0ecSDave Kleikamp 		 */
2900ac27a0ecSDave Kleikamp 
290119f5fb7aSTheodore Ts'o 		ext4_clear_inode_state(inode, EXT4_STATE_JDATA);
2902617ba13bSMingming Cao 		journal = EXT4_JOURNAL(inode);
2903dab291afSMingming Cao 		jbd2_journal_lock_updates(journal);
2904dab291afSMingming Cao 		err = jbd2_journal_flush(journal);
2905dab291afSMingming Cao 		jbd2_journal_unlock_updates(journal);
2906ac27a0ecSDave Kleikamp 
2907ac27a0ecSDave Kleikamp 		if (err)
2908ac27a0ecSDave Kleikamp 			return 0;
2909ac27a0ecSDave Kleikamp 	}
2910ac27a0ecSDave Kleikamp 
2911617ba13bSMingming Cao 	return generic_block_bmap(mapping, block, ext4_get_block);
2912ac27a0ecSDave Kleikamp }
2913ac27a0ecSDave Kleikamp 
2914617ba13bSMingming Cao static int ext4_readpage(struct file *file, struct page *page)
2915ac27a0ecSDave Kleikamp {
291646c7f254STao Ma 	int ret = -EAGAIN;
291746c7f254STao Ma 	struct inode *inode = page->mapping->host;
291846c7f254STao Ma 
29190562e0baSJiaying Zhang 	trace_ext4_readpage(page);
292046c7f254STao Ma 
292146c7f254STao Ma 	if (ext4_has_inline_data(inode))
292246c7f254STao Ma 		ret = ext4_readpage_inline(inode, page);
292346c7f254STao Ma 
292446c7f254STao Ma 	if (ret == -EAGAIN)
2925f64e02feSTheodore Ts'o 		return ext4_mpage_readpages(page->mapping, NULL, page, 1);
292646c7f254STao Ma 
292746c7f254STao Ma 	return ret;
2928ac27a0ecSDave Kleikamp }
2929ac27a0ecSDave Kleikamp 
2930ac27a0ecSDave Kleikamp static int
2931617ba13bSMingming Cao ext4_readpages(struct file *file, struct address_space *mapping,
2932ac27a0ecSDave Kleikamp 		struct list_head *pages, unsigned nr_pages)
2933ac27a0ecSDave Kleikamp {
293446c7f254STao Ma 	struct inode *inode = mapping->host;
293546c7f254STao Ma 
293646c7f254STao Ma 	/* If the file has inline data, no need to do readpages. */
293746c7f254STao Ma 	if (ext4_has_inline_data(inode))
293846c7f254STao Ma 		return 0;
293946c7f254STao Ma 
2940f64e02feSTheodore Ts'o 	return ext4_mpage_readpages(mapping, pages, NULL, nr_pages);
2941ac27a0ecSDave Kleikamp }
2942ac27a0ecSDave Kleikamp 
2943d47992f8SLukas Czerner static void ext4_invalidatepage(struct page *page, unsigned int offset,
2944d47992f8SLukas Czerner 				unsigned int length)
2945ac27a0ecSDave Kleikamp {
2946ca99fdd2SLukas Czerner 	trace_ext4_invalidatepage(page, offset, length);
29470562e0baSJiaying Zhang 
29484520fb3cSJan Kara 	/* No journalling happens on data buffers when this function is used */
29494520fb3cSJan Kara 	WARN_ON(page_has_buffers(page) && buffer_jbd(page_buffers(page)));
29504520fb3cSJan Kara 
2951ca99fdd2SLukas Czerner 	block_invalidatepage(page, offset, length);
29524520fb3cSJan Kara }
29534520fb3cSJan Kara 
295453e87268SJan Kara static int __ext4_journalled_invalidatepage(struct page *page,
2955ca99fdd2SLukas Czerner 					    unsigned int offset,
2956ca99fdd2SLukas Czerner 					    unsigned int length)
29574520fb3cSJan Kara {
29584520fb3cSJan Kara 	journal_t *journal = EXT4_JOURNAL(page->mapping->host);
29594520fb3cSJan Kara 
2960ca99fdd2SLukas Czerner 	trace_ext4_journalled_invalidatepage(page, offset, length);
29614520fb3cSJan Kara 
2962744692dcSJiaying Zhang 	/*
2963ac27a0ecSDave Kleikamp 	 * If it's a full truncate we just forget about the pending dirtying
2964ac27a0ecSDave Kleikamp 	 */
2965ca99fdd2SLukas Czerner 	if (offset == 0 && length == PAGE_CACHE_SIZE)
2966ac27a0ecSDave Kleikamp 		ClearPageChecked(page);
2967ac27a0ecSDave Kleikamp 
2968ca99fdd2SLukas Czerner 	return jbd2_journal_invalidatepage(journal, page, offset, length);
296953e87268SJan Kara }
297053e87268SJan Kara 
297153e87268SJan Kara /* Wrapper for aops... */
297253e87268SJan Kara static void ext4_journalled_invalidatepage(struct page *page,
2973d47992f8SLukas Czerner 					   unsigned int offset,
2974d47992f8SLukas Czerner 					   unsigned int length)
297553e87268SJan Kara {
2976ca99fdd2SLukas Czerner 	WARN_ON(__ext4_journalled_invalidatepage(page, offset, length) < 0);
2977ac27a0ecSDave Kleikamp }
2978ac27a0ecSDave Kleikamp 
2979617ba13bSMingming Cao static int ext4_releasepage(struct page *page, gfp_t wait)
2980ac27a0ecSDave Kleikamp {
2981617ba13bSMingming Cao 	journal_t *journal = EXT4_JOURNAL(page->mapping->host);
2982ac27a0ecSDave Kleikamp 
29830562e0baSJiaying Zhang 	trace_ext4_releasepage(page);
29840562e0baSJiaying Zhang 
2985e1c36595SJan Kara 	/* Page has dirty journalled data -> cannot release */
2986e1c36595SJan Kara 	if (PageChecked(page))
2987ac27a0ecSDave Kleikamp 		return 0;
29880390131bSFrank Mayhar 	if (journal)
2989dab291afSMingming Cao 		return jbd2_journal_try_to_free_buffers(journal, page, wait);
29900390131bSFrank Mayhar 	else
29910390131bSFrank Mayhar 		return try_to_free_buffers(page);
2992ac27a0ecSDave Kleikamp }
2993ac27a0ecSDave Kleikamp 
2994ac27a0ecSDave Kleikamp /*
29952ed88685STheodore Ts'o  * ext4_get_block used when preparing for a DIO write or buffer write.
29962ed88685STheodore Ts'o  * We allocate an uinitialized extent if blocks haven't been allocated.
29972ed88685STheodore Ts'o  * The extent will be converted to initialized after the IO is complete.
29982ed88685STheodore Ts'o  */
2999f19d5870STao Ma int ext4_get_block_write(struct inode *inode, sector_t iblock,
30004c0425ffSMingming Cao 		   struct buffer_head *bh_result, int create)
30014c0425ffSMingming Cao {
3002c7064ef1SJiaying Zhang 	ext4_debug("ext4_get_block_write: inode %lu, create flag %d\n",
30038d5d02e6SMingming Cao 		   inode->i_ino, create);
30042ed88685STheodore Ts'o 	return _ext4_get_block(inode, iblock, bh_result,
30052ed88685STheodore Ts'o 			       EXT4_GET_BLOCKS_IO_CREATE_EXT);
30064c0425ffSMingming Cao }
30074c0425ffSMingming Cao 
3008729f52c6SZheng Liu static int ext4_get_block_write_nolock(struct inode *inode, sector_t iblock,
30098b0f165fSAnatol Pomozov 		   struct buffer_head *bh_result, int create)
3010729f52c6SZheng Liu {
30118b0f165fSAnatol Pomozov 	ext4_debug("ext4_get_block_write_nolock: inode %lu, create flag %d\n",
30128b0f165fSAnatol Pomozov 		   inode->i_ino, create);
30138b0f165fSAnatol Pomozov 	return _ext4_get_block(inode, iblock, bh_result,
30148b0f165fSAnatol Pomozov 			       EXT4_GET_BLOCKS_NO_LOCK);
3015729f52c6SZheng Liu }
3016729f52c6SZheng Liu 
30174c0425ffSMingming Cao static void ext4_end_io_dio(struct kiocb *iocb, loff_t offset,
30187b7a8665SChristoph Hellwig 			    ssize_t size, void *private)
30194c0425ffSMingming Cao {
30204c0425ffSMingming Cao         ext4_io_end_t *io_end = iocb->private;
30214c0425ffSMingming Cao 
302297a851edSJan Kara 	/* if not async direct IO just return */
30237b7a8665SChristoph Hellwig 	if (!io_end)
302497a851edSJan Kara 		return;
30254b70df18SMingming 
30268d5d02e6SMingming Cao 	ext_debug("ext4_end_io_dio(): io_end 0x%p "
3027ace36ad4SJoe Perches 		  "for inode %lu, iocb 0x%p, offset %llu, size %zd\n",
30288d5d02e6SMingming Cao  		  iocb->private, io_end->inode->i_ino, iocb, offset,
30298d5d02e6SMingming Cao 		  size);
30308d5d02e6SMingming Cao 
3031b5a7e970STheodore Ts'o 	iocb->private = NULL;
30324c0425ffSMingming Cao 	io_end->offset = offset;
30334c0425ffSMingming Cao 	io_end->size = size;
30347b7a8665SChristoph Hellwig 	ext4_put_io_end(io_end);
30354c0425ffSMingming Cao }
3036c7064ef1SJiaying Zhang 
30374c0425ffSMingming Cao /*
30384c0425ffSMingming Cao  * For ext4 extent files, ext4 will do direct-io write to holes,
30394c0425ffSMingming Cao  * preallocated extents, and those write extend the file, no need to
30404c0425ffSMingming Cao  * fall back to buffered IO.
30414c0425ffSMingming Cao  *
3042556615dcSLukas Czerner  * For holes, we fallocate those blocks, mark them as unwritten
304369c499d1STheodore Ts'o  * If those blocks were preallocated, we mark sure they are split, but
3044556615dcSLukas Czerner  * still keep the range to write as unwritten.
30454c0425ffSMingming Cao  *
304669c499d1STheodore Ts'o  * The unwritten extents will be converted to written when DIO is completed.
30478d5d02e6SMingming Cao  * For async direct IO, since the IO may still pending when return, we
304825985edcSLucas De Marchi  * set up an end_io call back function, which will do the conversion
30498d5d02e6SMingming Cao  * when async direct IO completed.
30504c0425ffSMingming Cao  *
30514c0425ffSMingming Cao  * If the O_DIRECT write will extend the file then add this inode to the
30524c0425ffSMingming Cao  * orphan list.  So recovery will truncate it back to the original size
30534c0425ffSMingming Cao  * if the machine crashes during the write.
30544c0425ffSMingming Cao  *
30554c0425ffSMingming Cao  */
30564c0425ffSMingming Cao static ssize_t ext4_ext_direct_IO(int rw, struct kiocb *iocb,
305716b1f05dSAl Viro 			      struct iov_iter *iter, loff_t offset)
30584c0425ffSMingming Cao {
30594c0425ffSMingming Cao 	struct file *file = iocb->ki_filp;
30604c0425ffSMingming Cao 	struct inode *inode = file->f_mapping->host;
30614c0425ffSMingming Cao 	ssize_t ret;
3062a6cbcd4aSAl Viro 	size_t count = iov_iter_count(iter);
3063729f52c6SZheng Liu 	int overwrite = 0;
30648b0f165fSAnatol Pomozov 	get_block_t *get_block_func = NULL;
30658b0f165fSAnatol Pomozov 	int dio_flags = 0;
306669c499d1STheodore Ts'o 	loff_t final_size = offset + count;
306797a851edSJan Kara 	ext4_io_end_t *io_end = NULL;
306869c499d1STheodore Ts'o 
306969c499d1STheodore Ts'o 	/* Use the old path for reads and writes beyond i_size. */
307069c499d1STheodore Ts'o 	if (rw != WRITE || final_size > inode->i_size)
307116b1f05dSAl Viro 		return ext4_ind_direct_IO(rw, iocb, iter, offset);
3072729f52c6SZheng Liu 
30734bd809dbSZheng Liu 	BUG_ON(iocb->private == NULL);
30744bd809dbSZheng Liu 
3075e8340395SJan Kara 	/*
3076e8340395SJan Kara 	 * Make all waiters for direct IO properly wait also for extent
3077e8340395SJan Kara 	 * conversion. This also disallows race between truncate() and
3078e8340395SJan Kara 	 * overwrite DIO as i_dio_count needs to be incremented under i_mutex.
3079e8340395SJan Kara 	 */
3080e8340395SJan Kara 	if (rw == WRITE)
3081e8340395SJan Kara 		atomic_inc(&inode->i_dio_count);
3082e8340395SJan Kara 
30834bd809dbSZheng Liu 	/* If we do a overwrite dio, i_mutex locking can be released */
30844bd809dbSZheng Liu 	overwrite = *((int *)iocb->private);
30854bd809dbSZheng Liu 
30864bd809dbSZheng Liu 	if (overwrite) {
30874bd809dbSZheng Liu 		down_read(&EXT4_I(inode)->i_data_sem);
30884bd809dbSZheng Liu 		mutex_unlock(&inode->i_mutex);
30894bd809dbSZheng Liu 	}
30904bd809dbSZheng Liu 
30914c0425ffSMingming Cao 	/*
30928d5d02e6SMingming Cao 	 * We could direct write to holes and fallocate.
30938d5d02e6SMingming Cao 	 *
309469c499d1STheodore Ts'o 	 * Allocated blocks to fill the hole are marked as
3095556615dcSLukas Czerner 	 * unwritten to prevent parallel buffered read to expose
309669c499d1STheodore Ts'o 	 * the stale data before DIO complete the data IO.
30978d5d02e6SMingming Cao 	 *
309869c499d1STheodore Ts'o 	 * As to previously fallocated extents, ext4 get_block will
309969c499d1STheodore Ts'o 	 * just simply mark the buffer mapped but still keep the
3100556615dcSLukas Czerner 	 * extents unwritten.
31014c0425ffSMingming Cao 	 *
310269c499d1STheodore Ts'o 	 * For non AIO case, we will convert those unwritten extents
31038d5d02e6SMingming Cao 	 * to written after return back from blockdev_direct_IO.
31044c0425ffSMingming Cao 	 *
310569c499d1STheodore Ts'o 	 * For async DIO, the conversion needs to be deferred when the
310669c499d1STheodore Ts'o 	 * IO is completed. The ext4 end_io callback function will be
310769c499d1STheodore Ts'o 	 * called to take care of the conversion work.  Here for async
310869c499d1STheodore Ts'o 	 * case, we allocate an io_end structure to hook to the iocb.
31094c0425ffSMingming Cao 	 */
31108d5d02e6SMingming Cao 	iocb->private = NULL;
3111f45ee3a1SDmitry Monakhov 	ext4_inode_aio_set(inode, NULL);
31128d5d02e6SMingming Cao 	if (!is_sync_kiocb(iocb)) {
311397a851edSJan Kara 		io_end = ext4_init_io_end(inode, GFP_NOFS);
31144bd809dbSZheng Liu 		if (!io_end) {
31154bd809dbSZheng Liu 			ret = -ENOMEM;
31164bd809dbSZheng Liu 			goto retake_lock;
31174bd809dbSZheng Liu 		}
311897a851edSJan Kara 		/*
311997a851edSJan Kara 		 * Grab reference for DIO. Will be dropped in ext4_end_io_dio()
312097a851edSJan Kara 		 */
312197a851edSJan Kara 		iocb->private = ext4_get_io_end(io_end);
31228d5d02e6SMingming Cao 		/*
312369c499d1STheodore Ts'o 		 * we save the io structure for current async direct
312469c499d1STheodore Ts'o 		 * IO, so that later ext4_map_blocks() could flag the
312569c499d1STheodore Ts'o 		 * io structure whether there is a unwritten extents
312669c499d1STheodore Ts'o 		 * needs to be converted when IO is completed.
31278d5d02e6SMingming Cao 		 */
3128f45ee3a1SDmitry Monakhov 		ext4_inode_aio_set(inode, io_end);
31298d5d02e6SMingming Cao 	}
31308d5d02e6SMingming Cao 
31318b0f165fSAnatol Pomozov 	if (overwrite) {
31328b0f165fSAnatol Pomozov 		get_block_func = ext4_get_block_write_nolock;
31338b0f165fSAnatol Pomozov 	} else {
31348b0f165fSAnatol Pomozov 		get_block_func = ext4_get_block_write;
31358b0f165fSAnatol Pomozov 		dio_flags = DIO_LOCKING;
31368b0f165fSAnatol Pomozov 	}
3137*2058f83aSMichael Halcrow #ifdef CONFIG_EXT4_FS_ENCRYPTION
3138*2058f83aSMichael Halcrow 	BUG_ON(ext4_encrypted_inode(inode) && S_ISREG(inode->i_mode));
3139*2058f83aSMichael Halcrow #endif
3140923ae0ffSRoss Zwisler 	if (IS_DAX(inode))
3141923ae0ffSRoss Zwisler 		ret = dax_do_io(rw, iocb, inode, iter, offset, get_block_func,
3142923ae0ffSRoss Zwisler 				ext4_end_io_dio, dio_flags);
3143923ae0ffSRoss Zwisler 	else
3144729f52c6SZheng Liu 		ret = __blockdev_direct_IO(rw, iocb, inode,
3145923ae0ffSRoss Zwisler 					   inode->i_sb->s_bdev, iter, offset,
31468b0f165fSAnatol Pomozov 					   get_block_func,
3147923ae0ffSRoss Zwisler 					   ext4_end_io_dio, NULL, dio_flags);
31488b0f165fSAnatol Pomozov 
31494eec708dSJan Kara 	/*
315097a851edSJan Kara 	 * Put our reference to io_end. This can free the io_end structure e.g.
315197a851edSJan Kara 	 * in sync IO case or in case of error. It can even perform extent
315297a851edSJan Kara 	 * conversion if all bios we submitted finished before we got here.
315397a851edSJan Kara 	 * Note that in that case iocb->private can be already set to NULL
315497a851edSJan Kara 	 * here.
31554eec708dSJan Kara 	 */
315697a851edSJan Kara 	if (io_end) {
315797a851edSJan Kara 		ext4_inode_aio_set(inode, NULL);
315897a851edSJan Kara 		ext4_put_io_end(io_end);
315997a851edSJan Kara 		/*
316097a851edSJan Kara 		 * When no IO was submitted ext4_end_io_dio() was not
316197a851edSJan Kara 		 * called so we have to put iocb's reference.
316297a851edSJan Kara 		 */
316397a851edSJan Kara 		if (ret <= 0 && ret != -EIOCBQUEUED && iocb->private) {
316497a851edSJan Kara 			WARN_ON(iocb->private != io_end);
316597a851edSJan Kara 			WARN_ON(io_end->flag & EXT4_IO_END_UNWRITTEN);
316697a851edSJan Kara 			ext4_put_io_end(io_end);
31678d5d02e6SMingming Cao 			iocb->private = NULL;
316897a851edSJan Kara 		}
316997a851edSJan Kara 	}
317097a851edSJan Kara 	if (ret > 0 && !overwrite && ext4_test_inode_state(inode,
31715f524950SMingming 						EXT4_STATE_DIO_UNWRITTEN)) {
3172109f5565SMingming 		int err;
31738d5d02e6SMingming Cao 		/*
31748d5d02e6SMingming Cao 		 * for non AIO case, since the IO is already
317525985edcSLucas De Marchi 		 * completed, we could do the conversion right here
31768d5d02e6SMingming Cao 		 */
31776b523df4SJan Kara 		err = ext4_convert_unwritten_extents(NULL, inode,
31788d5d02e6SMingming Cao 						     offset, ret);
3179109f5565SMingming 		if (err < 0)
3180109f5565SMingming 			ret = err;
318119f5fb7aSTheodore Ts'o 		ext4_clear_inode_state(inode, EXT4_STATE_DIO_UNWRITTEN);
3182109f5565SMingming 	}
31834bd809dbSZheng Liu 
31844bd809dbSZheng Liu retake_lock:
3185e8340395SJan Kara 	if (rw == WRITE)
3186e8340395SJan Kara 		inode_dio_done(inode);
31874bd809dbSZheng Liu 	/* take i_mutex locking again if we do a ovewrite dio */
31884bd809dbSZheng Liu 	if (overwrite) {
31894bd809dbSZheng Liu 		up_read(&EXT4_I(inode)->i_data_sem);
31904bd809dbSZheng Liu 		mutex_lock(&inode->i_mutex);
31914bd809dbSZheng Liu 	}
31924bd809dbSZheng Liu 
31934c0425ffSMingming Cao 	return ret;
31944c0425ffSMingming Cao }
31958d5d02e6SMingming Cao 
31964c0425ffSMingming Cao static ssize_t ext4_direct_IO(int rw, struct kiocb *iocb,
3197d8d3d94bSAl Viro 			      struct iov_iter *iter, loff_t offset)
31984c0425ffSMingming Cao {
31994c0425ffSMingming Cao 	struct file *file = iocb->ki_filp;
32004c0425ffSMingming Cao 	struct inode *inode = file->f_mapping->host;
3201a6cbcd4aSAl Viro 	size_t count = iov_iter_count(iter);
32020562e0baSJiaying Zhang 	ssize_t ret;
32034c0425ffSMingming Cao 
3204*2058f83aSMichael Halcrow #ifdef CONFIG_EXT4_FS_ENCRYPTION
3205*2058f83aSMichael Halcrow 	if (ext4_encrypted_inode(inode) && S_ISREG(inode->i_mode))
3206*2058f83aSMichael Halcrow 		return 0;
3207*2058f83aSMichael Halcrow #endif
3208*2058f83aSMichael Halcrow 
320984ebd795STheodore Ts'o 	/*
321084ebd795STheodore Ts'o 	 * If we are doing data journalling we don't support O_DIRECT
321184ebd795STheodore Ts'o 	 */
321284ebd795STheodore Ts'o 	if (ext4_should_journal_data(inode))
321384ebd795STheodore Ts'o 		return 0;
321484ebd795STheodore Ts'o 
321546c7f254STao Ma 	/* Let buffer I/O handle the inline data case. */
321646c7f254STao Ma 	if (ext4_has_inline_data(inode))
321746c7f254STao Ma 		return 0;
321846c7f254STao Ma 
3219a6cbcd4aSAl Viro 	trace_ext4_direct_IO_enter(inode, offset, count, rw);
322012e9b892SDmitry Monakhov 	if (ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS))
322116b1f05dSAl Viro 		ret = ext4_ext_direct_IO(rw, iocb, iter, offset);
32220562e0baSJiaying Zhang 	else
322316b1f05dSAl Viro 		ret = ext4_ind_direct_IO(rw, iocb, iter, offset);
3224a6cbcd4aSAl Viro 	trace_ext4_direct_IO_exit(inode, offset, count, rw, ret);
32250562e0baSJiaying Zhang 	return ret;
32264c0425ffSMingming Cao }
32274c0425ffSMingming Cao 
3228ac27a0ecSDave Kleikamp /*
3229617ba13bSMingming Cao  * Pages can be marked dirty completely asynchronously from ext4's journalling
3230ac27a0ecSDave Kleikamp  * activity.  By filemap_sync_pte(), try_to_unmap_one(), etc.  We cannot do
3231ac27a0ecSDave Kleikamp  * much here because ->set_page_dirty is called under VFS locks.  The page is
3232ac27a0ecSDave Kleikamp  * not necessarily locked.
3233ac27a0ecSDave Kleikamp  *
3234ac27a0ecSDave Kleikamp  * We cannot just dirty the page and leave attached buffers clean, because the
3235ac27a0ecSDave Kleikamp  * buffers' dirty state is "definitive".  We cannot just set the buffers dirty
3236ac27a0ecSDave Kleikamp  * or jbddirty because all the journalling code will explode.
3237ac27a0ecSDave Kleikamp  *
3238ac27a0ecSDave Kleikamp  * So what we do is to mark the page "pending dirty" and next time writepage
3239ac27a0ecSDave Kleikamp  * is called, propagate that into the buffers appropriately.
3240ac27a0ecSDave Kleikamp  */
3241617ba13bSMingming Cao static int ext4_journalled_set_page_dirty(struct page *page)
3242ac27a0ecSDave Kleikamp {
3243ac27a0ecSDave Kleikamp 	SetPageChecked(page);
3244ac27a0ecSDave Kleikamp 	return __set_page_dirty_nobuffers(page);
3245ac27a0ecSDave Kleikamp }
3246ac27a0ecSDave Kleikamp 
324774d553aaSTheodore Ts'o static const struct address_space_operations ext4_aops = {
3248617ba13bSMingming Cao 	.readpage		= ext4_readpage,
3249617ba13bSMingming Cao 	.readpages		= ext4_readpages,
325043ce1d23SAneesh Kumar K.V 	.writepage		= ext4_writepage,
325120970ba6STheodore Ts'o 	.writepages		= ext4_writepages,
3252bfc1af65SNick Piggin 	.write_begin		= ext4_write_begin,
325374d553aaSTheodore Ts'o 	.write_end		= ext4_write_end,
3254617ba13bSMingming Cao 	.bmap			= ext4_bmap,
3255617ba13bSMingming Cao 	.invalidatepage		= ext4_invalidatepage,
3256617ba13bSMingming Cao 	.releasepage		= ext4_releasepage,
3257617ba13bSMingming Cao 	.direct_IO		= ext4_direct_IO,
3258ac27a0ecSDave Kleikamp 	.migratepage		= buffer_migrate_page,
32598ab22b9aSHisashi Hifumi 	.is_partially_uptodate  = block_is_partially_uptodate,
3260aa261f54SAndi Kleen 	.error_remove_page	= generic_error_remove_page,
3261ac27a0ecSDave Kleikamp };
3262ac27a0ecSDave Kleikamp 
3263617ba13bSMingming Cao static const struct address_space_operations ext4_journalled_aops = {
3264617ba13bSMingming Cao 	.readpage		= ext4_readpage,
3265617ba13bSMingming Cao 	.readpages		= ext4_readpages,
326643ce1d23SAneesh Kumar K.V 	.writepage		= ext4_writepage,
326720970ba6STheodore Ts'o 	.writepages		= ext4_writepages,
3268bfc1af65SNick Piggin 	.write_begin		= ext4_write_begin,
3269bfc1af65SNick Piggin 	.write_end		= ext4_journalled_write_end,
3270617ba13bSMingming Cao 	.set_page_dirty		= ext4_journalled_set_page_dirty,
3271617ba13bSMingming Cao 	.bmap			= ext4_bmap,
32724520fb3cSJan Kara 	.invalidatepage		= ext4_journalled_invalidatepage,
3273617ba13bSMingming Cao 	.releasepage		= ext4_releasepage,
327484ebd795STheodore Ts'o 	.direct_IO		= ext4_direct_IO,
32758ab22b9aSHisashi Hifumi 	.is_partially_uptodate  = block_is_partially_uptodate,
3276aa261f54SAndi Kleen 	.error_remove_page	= generic_error_remove_page,
3277ac27a0ecSDave Kleikamp };
3278ac27a0ecSDave Kleikamp 
327964769240SAlex Tomas static const struct address_space_operations ext4_da_aops = {
328064769240SAlex Tomas 	.readpage		= ext4_readpage,
328164769240SAlex Tomas 	.readpages		= ext4_readpages,
328243ce1d23SAneesh Kumar K.V 	.writepage		= ext4_writepage,
328320970ba6STheodore Ts'o 	.writepages		= ext4_writepages,
328464769240SAlex Tomas 	.write_begin		= ext4_da_write_begin,
328564769240SAlex Tomas 	.write_end		= ext4_da_write_end,
328664769240SAlex Tomas 	.bmap			= ext4_bmap,
328764769240SAlex Tomas 	.invalidatepage		= ext4_da_invalidatepage,
328864769240SAlex Tomas 	.releasepage		= ext4_releasepage,
328964769240SAlex Tomas 	.direct_IO		= ext4_direct_IO,
329064769240SAlex Tomas 	.migratepage		= buffer_migrate_page,
32918ab22b9aSHisashi Hifumi 	.is_partially_uptodate  = block_is_partially_uptodate,
3292aa261f54SAndi Kleen 	.error_remove_page	= generic_error_remove_page,
329364769240SAlex Tomas };
329464769240SAlex Tomas 
3295617ba13bSMingming Cao void ext4_set_aops(struct inode *inode)
3296ac27a0ecSDave Kleikamp {
32973d2b1582SLukas Czerner 	switch (ext4_inode_journal_mode(inode)) {
32983d2b1582SLukas Czerner 	case EXT4_INODE_ORDERED_DATA_MODE:
329974d553aaSTheodore Ts'o 		ext4_set_inode_state(inode, EXT4_STATE_ORDERED_MODE);
33003d2b1582SLukas Czerner 		break;
33013d2b1582SLukas Czerner 	case EXT4_INODE_WRITEBACK_DATA_MODE:
330274d553aaSTheodore Ts'o 		ext4_clear_inode_state(inode, EXT4_STATE_ORDERED_MODE);
33033d2b1582SLukas Czerner 		break;
33043d2b1582SLukas Czerner 	case EXT4_INODE_JOURNAL_DATA_MODE:
3305617ba13bSMingming Cao 		inode->i_mapping->a_ops = &ext4_journalled_aops;
330674d553aaSTheodore Ts'o 		return;
33073d2b1582SLukas Czerner 	default:
33083d2b1582SLukas Czerner 		BUG();
33093d2b1582SLukas Czerner 	}
331074d553aaSTheodore Ts'o 	if (test_opt(inode->i_sb, DELALLOC))
331174d553aaSTheodore Ts'o 		inode->i_mapping->a_ops = &ext4_da_aops;
331274d553aaSTheodore Ts'o 	else
331374d553aaSTheodore Ts'o 		inode->i_mapping->a_ops = &ext4_aops;
3314ac27a0ecSDave Kleikamp }
3315ac27a0ecSDave Kleikamp 
3316923ae0ffSRoss Zwisler static int __ext4_block_zero_page_range(handle_t *handle,
3317d863dc36SLukas Czerner 		struct address_space *mapping, loff_t from, loff_t length)
3318d863dc36SLukas Czerner {
3319d863dc36SLukas Czerner 	ext4_fsblk_t index = from >> PAGE_CACHE_SHIFT;
3320d863dc36SLukas Czerner 	unsigned offset = from & (PAGE_CACHE_SIZE-1);
3321923ae0ffSRoss Zwisler 	unsigned blocksize, pos;
3322d863dc36SLukas Czerner 	ext4_lblk_t iblock;
3323d863dc36SLukas Czerner 	struct inode *inode = mapping->host;
3324d863dc36SLukas Czerner 	struct buffer_head *bh;
3325d863dc36SLukas Czerner 	struct page *page;
3326d863dc36SLukas Czerner 	int err = 0;
3327d863dc36SLukas Czerner 
3328d863dc36SLukas Czerner 	page = find_or_create_page(mapping, from >> PAGE_CACHE_SHIFT,
3329d863dc36SLukas Czerner 				   mapping_gfp_mask(mapping) & ~__GFP_FS);
3330d863dc36SLukas Czerner 	if (!page)
3331d863dc36SLukas Czerner 		return -ENOMEM;
3332d863dc36SLukas Czerner 
3333d863dc36SLukas Czerner 	blocksize = inode->i_sb->s_blocksize;
3334d863dc36SLukas Czerner 
3335d863dc36SLukas Czerner 	iblock = index << (PAGE_CACHE_SHIFT - inode->i_sb->s_blocksize_bits);
3336d863dc36SLukas Czerner 
3337d863dc36SLukas Czerner 	if (!page_has_buffers(page))
3338d863dc36SLukas Czerner 		create_empty_buffers(page, blocksize, 0);
3339d863dc36SLukas Czerner 
3340d863dc36SLukas Czerner 	/* Find the buffer that contains "offset" */
3341d863dc36SLukas Czerner 	bh = page_buffers(page);
3342d863dc36SLukas Czerner 	pos = blocksize;
3343d863dc36SLukas Czerner 	while (offset >= pos) {
3344d863dc36SLukas Czerner 		bh = bh->b_this_page;
3345d863dc36SLukas Czerner 		iblock++;
3346d863dc36SLukas Czerner 		pos += blocksize;
3347d863dc36SLukas Czerner 	}
3348d863dc36SLukas Czerner 	if (buffer_freed(bh)) {
3349d863dc36SLukas Czerner 		BUFFER_TRACE(bh, "freed: skip");
3350d863dc36SLukas Czerner 		goto unlock;
3351d863dc36SLukas Czerner 	}
3352d863dc36SLukas Czerner 	if (!buffer_mapped(bh)) {
3353d863dc36SLukas Czerner 		BUFFER_TRACE(bh, "unmapped");
3354d863dc36SLukas Czerner 		ext4_get_block(inode, iblock, bh, 0);
3355d863dc36SLukas Czerner 		/* unmapped? It's a hole - nothing to do */
3356d863dc36SLukas Czerner 		if (!buffer_mapped(bh)) {
3357d863dc36SLukas Czerner 			BUFFER_TRACE(bh, "still unmapped");
3358d863dc36SLukas Czerner 			goto unlock;
3359d863dc36SLukas Czerner 		}
3360d863dc36SLukas Czerner 	}
3361d863dc36SLukas Czerner 
3362d863dc36SLukas Czerner 	/* Ok, it's mapped. Make sure it's up-to-date */
3363d863dc36SLukas Czerner 	if (PageUptodate(page))
3364d863dc36SLukas Czerner 		set_buffer_uptodate(bh);
3365d863dc36SLukas Czerner 
3366d863dc36SLukas Czerner 	if (!buffer_uptodate(bh)) {
3367d863dc36SLukas Czerner 		err = -EIO;
3368d863dc36SLukas Czerner 		ll_rw_block(READ, 1, &bh);
3369d863dc36SLukas Czerner 		wait_on_buffer(bh);
3370d863dc36SLukas Czerner 		/* Uhhuh. Read error. Complain and punt. */
3371d863dc36SLukas Czerner 		if (!buffer_uptodate(bh))
3372d863dc36SLukas Czerner 			goto unlock;
3373d863dc36SLukas Czerner 	}
3374d863dc36SLukas Czerner 	if (ext4_should_journal_data(inode)) {
3375d863dc36SLukas Czerner 		BUFFER_TRACE(bh, "get write access");
3376d863dc36SLukas Czerner 		err = ext4_journal_get_write_access(handle, bh);
3377d863dc36SLukas Czerner 		if (err)
3378d863dc36SLukas Czerner 			goto unlock;
3379d863dc36SLukas Czerner 	}
3380d863dc36SLukas Czerner 	zero_user(page, offset, length);
3381d863dc36SLukas Czerner 	BUFFER_TRACE(bh, "zeroed end of block");
3382d863dc36SLukas Czerner 
3383d863dc36SLukas Czerner 	if (ext4_should_journal_data(inode)) {
3384d863dc36SLukas Czerner 		err = ext4_handle_dirty_metadata(handle, inode, bh);
33850713ed0cSLukas Czerner 	} else {
3386353eefd3Sjon ernst 		err = 0;
3387d863dc36SLukas Czerner 		mark_buffer_dirty(bh);
33880713ed0cSLukas Czerner 		if (ext4_test_inode_state(inode, EXT4_STATE_ORDERED_MODE))
33890713ed0cSLukas Czerner 			err = ext4_jbd2_file_inode(handle, inode);
33900713ed0cSLukas Czerner 	}
3391d863dc36SLukas Czerner 
3392d863dc36SLukas Czerner unlock:
3393d863dc36SLukas Czerner 	unlock_page(page);
3394d863dc36SLukas Czerner 	page_cache_release(page);
3395d863dc36SLukas Czerner 	return err;
3396d863dc36SLukas Czerner }
3397d863dc36SLukas Czerner 
339894350ab5SMatthew Wilcox /*
3399923ae0ffSRoss Zwisler  * ext4_block_zero_page_range() zeros out a mapping of length 'length'
3400923ae0ffSRoss Zwisler  * starting from file offset 'from'.  The range to be zero'd must
3401923ae0ffSRoss Zwisler  * be contained with in one block.  If the specified range exceeds
3402923ae0ffSRoss Zwisler  * the end of the block it will be shortened to end of the block
3403923ae0ffSRoss Zwisler  * that cooresponds to 'from'
3404923ae0ffSRoss Zwisler  */
3405923ae0ffSRoss Zwisler static int ext4_block_zero_page_range(handle_t *handle,
3406923ae0ffSRoss Zwisler 		struct address_space *mapping, loff_t from, loff_t length)
3407923ae0ffSRoss Zwisler {
3408923ae0ffSRoss Zwisler 	struct inode *inode = mapping->host;
3409923ae0ffSRoss Zwisler 	unsigned offset = from & (PAGE_CACHE_SIZE-1);
3410923ae0ffSRoss Zwisler 	unsigned blocksize = inode->i_sb->s_blocksize;
3411923ae0ffSRoss Zwisler 	unsigned max = blocksize - (offset & (blocksize - 1));
3412923ae0ffSRoss Zwisler 
3413923ae0ffSRoss Zwisler 	/*
3414923ae0ffSRoss Zwisler 	 * correct length if it does not fall between
3415923ae0ffSRoss Zwisler 	 * 'from' and the end of the block
3416923ae0ffSRoss Zwisler 	 */
3417923ae0ffSRoss Zwisler 	if (length > max || length < 0)
3418923ae0ffSRoss Zwisler 		length = max;
3419923ae0ffSRoss Zwisler 
3420923ae0ffSRoss Zwisler 	if (IS_DAX(inode))
3421923ae0ffSRoss Zwisler 		return dax_zero_page_range(inode, from, length, ext4_get_block);
3422923ae0ffSRoss Zwisler 	return __ext4_block_zero_page_range(handle, mapping, from, length);
3423923ae0ffSRoss Zwisler }
3424923ae0ffSRoss Zwisler 
3425923ae0ffSRoss Zwisler /*
342694350ab5SMatthew Wilcox  * ext4_block_truncate_page() zeroes out a mapping from file offset `from'
342794350ab5SMatthew Wilcox  * up to the end of the block which corresponds to `from'.
342894350ab5SMatthew Wilcox  * This required during truncate. We need to physically zero the tail end
342994350ab5SMatthew Wilcox  * of that block so it doesn't yield old data if the file is later grown.
343094350ab5SMatthew Wilcox  */
3431c197855eSStephen Hemminger static int ext4_block_truncate_page(handle_t *handle,
343294350ab5SMatthew Wilcox 		struct address_space *mapping, loff_t from)
343394350ab5SMatthew Wilcox {
343494350ab5SMatthew Wilcox 	unsigned offset = from & (PAGE_CACHE_SIZE-1);
343594350ab5SMatthew Wilcox 	unsigned length;
343694350ab5SMatthew Wilcox 	unsigned blocksize;
343794350ab5SMatthew Wilcox 	struct inode *inode = mapping->host;
343894350ab5SMatthew Wilcox 
343994350ab5SMatthew Wilcox 	blocksize = inode->i_sb->s_blocksize;
344094350ab5SMatthew Wilcox 	length = blocksize - (offset & (blocksize - 1));
344194350ab5SMatthew Wilcox 
344294350ab5SMatthew Wilcox 	return ext4_block_zero_page_range(handle, mapping, from, length);
344394350ab5SMatthew Wilcox }
344494350ab5SMatthew Wilcox 
3445a87dd18cSLukas Czerner int ext4_zero_partial_blocks(handle_t *handle, struct inode *inode,
3446a87dd18cSLukas Czerner 			     loff_t lstart, loff_t length)
3447a87dd18cSLukas Czerner {
3448a87dd18cSLukas Czerner 	struct super_block *sb = inode->i_sb;
3449a87dd18cSLukas Czerner 	struct address_space *mapping = inode->i_mapping;
3450e1be3a92SLukas Czerner 	unsigned partial_start, partial_end;
3451a87dd18cSLukas Czerner 	ext4_fsblk_t start, end;
3452a87dd18cSLukas Czerner 	loff_t byte_end = (lstart + length - 1);
3453a87dd18cSLukas Czerner 	int err = 0;
3454a87dd18cSLukas Czerner 
3455e1be3a92SLukas Czerner 	partial_start = lstart & (sb->s_blocksize - 1);
3456e1be3a92SLukas Czerner 	partial_end = byte_end & (sb->s_blocksize - 1);
3457e1be3a92SLukas Czerner 
3458a87dd18cSLukas Czerner 	start = lstart >> sb->s_blocksize_bits;
3459a87dd18cSLukas Czerner 	end = byte_end >> sb->s_blocksize_bits;
3460a87dd18cSLukas Czerner 
3461a87dd18cSLukas Czerner 	/* Handle partial zero within the single block */
3462e1be3a92SLukas Czerner 	if (start == end &&
3463e1be3a92SLukas Czerner 	    (partial_start || (partial_end != sb->s_blocksize - 1))) {
3464a87dd18cSLukas Czerner 		err = ext4_block_zero_page_range(handle, mapping,
3465a87dd18cSLukas Czerner 						 lstart, length);
3466a87dd18cSLukas Czerner 		return err;
3467a87dd18cSLukas Czerner 	}
3468a87dd18cSLukas Czerner 	/* Handle partial zero out on the start of the range */
3469e1be3a92SLukas Czerner 	if (partial_start) {
3470a87dd18cSLukas Czerner 		err = ext4_block_zero_page_range(handle, mapping,
3471a87dd18cSLukas Czerner 						 lstart, sb->s_blocksize);
3472a87dd18cSLukas Czerner 		if (err)
3473a87dd18cSLukas Czerner 			return err;
3474a87dd18cSLukas Czerner 	}
3475a87dd18cSLukas Czerner 	/* Handle partial zero out on the end of the range */
3476e1be3a92SLukas Czerner 	if (partial_end != sb->s_blocksize - 1)
3477a87dd18cSLukas Czerner 		err = ext4_block_zero_page_range(handle, mapping,
3478e1be3a92SLukas Czerner 						 byte_end - partial_end,
3479e1be3a92SLukas Czerner 						 partial_end + 1);
3480a87dd18cSLukas Czerner 	return err;
3481a87dd18cSLukas Czerner }
3482a87dd18cSLukas Czerner 
348391ef4cafSDuane Griffin int ext4_can_truncate(struct inode *inode)
348491ef4cafSDuane Griffin {
348591ef4cafSDuane Griffin 	if (S_ISREG(inode->i_mode))
348691ef4cafSDuane Griffin 		return 1;
348791ef4cafSDuane Griffin 	if (S_ISDIR(inode->i_mode))
348891ef4cafSDuane Griffin 		return 1;
348991ef4cafSDuane Griffin 	if (S_ISLNK(inode->i_mode))
349091ef4cafSDuane Griffin 		return !ext4_inode_is_fast_symlink(inode);
349191ef4cafSDuane Griffin 	return 0;
349291ef4cafSDuane Griffin }
349391ef4cafSDuane Griffin 
3494ac27a0ecSDave Kleikamp /*
3495a4bb6b64SAllison Henderson  * ext4_punch_hole: punches a hole in a file by releaseing the blocks
3496a4bb6b64SAllison Henderson  * associated with the given offset and length
3497a4bb6b64SAllison Henderson  *
3498a4bb6b64SAllison Henderson  * @inode:  File inode
3499a4bb6b64SAllison Henderson  * @offset: The offset where the hole will begin
3500a4bb6b64SAllison Henderson  * @len:    The length of the hole
3501a4bb6b64SAllison Henderson  *
35024907cb7bSAnatol Pomozov  * Returns: 0 on success or negative on failure
3503a4bb6b64SAllison Henderson  */
3504a4bb6b64SAllison Henderson 
3505aeb2817aSAshish Sangwan int ext4_punch_hole(struct inode *inode, loff_t offset, loff_t length)
3506a4bb6b64SAllison Henderson {
350726a4c0c6STheodore Ts'o 	struct super_block *sb = inode->i_sb;
350826a4c0c6STheodore Ts'o 	ext4_lblk_t first_block, stop_block;
350926a4c0c6STheodore Ts'o 	struct address_space *mapping = inode->i_mapping;
3510a87dd18cSLukas Czerner 	loff_t first_block_offset, last_block_offset;
351126a4c0c6STheodore Ts'o 	handle_t *handle;
351226a4c0c6STheodore Ts'o 	unsigned int credits;
351326a4c0c6STheodore Ts'o 	int ret = 0;
351426a4c0c6STheodore Ts'o 
3515a4bb6b64SAllison Henderson 	if (!S_ISREG(inode->i_mode))
351673355192SAllison Henderson 		return -EOPNOTSUPP;
3517a4bb6b64SAllison Henderson 
3518b8a86845SLukas Czerner 	trace_ext4_punch_hole(inode, offset, length, 0);
3519aaddea81SZheng Liu 
352026a4c0c6STheodore Ts'o 	/*
352126a4c0c6STheodore Ts'o 	 * Write out all dirty pages to avoid race conditions
352226a4c0c6STheodore Ts'o 	 * Then release them.
352326a4c0c6STheodore Ts'o 	 */
352426a4c0c6STheodore Ts'o 	if (mapping->nrpages && mapping_tagged(mapping, PAGECACHE_TAG_DIRTY)) {
352526a4c0c6STheodore Ts'o 		ret = filemap_write_and_wait_range(mapping, offset,
352626a4c0c6STheodore Ts'o 						   offset + length - 1);
352726a4c0c6STheodore Ts'o 		if (ret)
352826a4c0c6STheodore Ts'o 			return ret;
352926a4c0c6STheodore Ts'o 	}
353026a4c0c6STheodore Ts'o 
353126a4c0c6STheodore Ts'o 	mutex_lock(&inode->i_mutex);
35329ef06cecSLukas Czerner 
353326a4c0c6STheodore Ts'o 	/* No need to punch hole beyond i_size */
353426a4c0c6STheodore Ts'o 	if (offset >= inode->i_size)
353526a4c0c6STheodore Ts'o 		goto out_mutex;
353626a4c0c6STheodore Ts'o 
353726a4c0c6STheodore Ts'o 	/*
353826a4c0c6STheodore Ts'o 	 * If the hole extends beyond i_size, set the hole
353926a4c0c6STheodore Ts'o 	 * to end after the page that contains i_size
354026a4c0c6STheodore Ts'o 	 */
354126a4c0c6STheodore Ts'o 	if (offset + length > inode->i_size) {
354226a4c0c6STheodore Ts'o 		length = inode->i_size +
354326a4c0c6STheodore Ts'o 		   PAGE_CACHE_SIZE - (inode->i_size & (PAGE_CACHE_SIZE - 1)) -
354426a4c0c6STheodore Ts'o 		   offset;
354526a4c0c6STheodore Ts'o 	}
354626a4c0c6STheodore Ts'o 
3547a361293fSJan Kara 	if (offset & (sb->s_blocksize - 1) ||
3548a361293fSJan Kara 	    (offset + length) & (sb->s_blocksize - 1)) {
3549a361293fSJan Kara 		/*
3550a361293fSJan Kara 		 * Attach jinode to inode for jbd2 if we do any zeroing of
3551a361293fSJan Kara 		 * partial block
3552a361293fSJan Kara 		 */
3553a361293fSJan Kara 		ret = ext4_inode_attach_jinode(inode);
3554a361293fSJan Kara 		if (ret < 0)
3555a361293fSJan Kara 			goto out_mutex;
3556a361293fSJan Kara 
3557a361293fSJan Kara 	}
3558a361293fSJan Kara 
3559a87dd18cSLukas Czerner 	first_block_offset = round_up(offset, sb->s_blocksize);
3560a87dd18cSLukas Czerner 	last_block_offset = round_down((offset + length), sb->s_blocksize) - 1;
356126a4c0c6STheodore Ts'o 
3562a87dd18cSLukas Czerner 	/* Now release the pages and zero block aligned part of pages*/
3563a87dd18cSLukas Czerner 	if (last_block_offset > first_block_offset)
3564a87dd18cSLukas Czerner 		truncate_pagecache_range(inode, first_block_offset,
3565a87dd18cSLukas Czerner 					 last_block_offset);
356626a4c0c6STheodore Ts'o 
356726a4c0c6STheodore Ts'o 	/* Wait all existing dio workers, newcomers will block on i_mutex */
356826a4c0c6STheodore Ts'o 	ext4_inode_block_unlocked_dio(inode);
356926a4c0c6STheodore Ts'o 	inode_dio_wait(inode);
357026a4c0c6STheodore Ts'o 
357126a4c0c6STheodore Ts'o 	if (ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS))
357226a4c0c6STheodore Ts'o 		credits = ext4_writepage_trans_blocks(inode);
357326a4c0c6STheodore Ts'o 	else
357426a4c0c6STheodore Ts'o 		credits = ext4_blocks_for_truncate(inode);
357526a4c0c6STheodore Ts'o 	handle = ext4_journal_start(inode, EXT4_HT_TRUNCATE, credits);
357626a4c0c6STheodore Ts'o 	if (IS_ERR(handle)) {
357726a4c0c6STheodore Ts'o 		ret = PTR_ERR(handle);
357826a4c0c6STheodore Ts'o 		ext4_std_error(sb, ret);
357926a4c0c6STheodore Ts'o 		goto out_dio;
358026a4c0c6STheodore Ts'o 	}
358126a4c0c6STheodore Ts'o 
3582a87dd18cSLukas Czerner 	ret = ext4_zero_partial_blocks(handle, inode, offset,
3583a87dd18cSLukas Czerner 				       length);
358426a4c0c6STheodore Ts'o 	if (ret)
358526a4c0c6STheodore Ts'o 		goto out_stop;
358626a4c0c6STheodore Ts'o 
358726a4c0c6STheodore Ts'o 	first_block = (offset + sb->s_blocksize - 1) >>
358826a4c0c6STheodore Ts'o 		EXT4_BLOCK_SIZE_BITS(sb);
358926a4c0c6STheodore Ts'o 	stop_block = (offset + length) >> EXT4_BLOCK_SIZE_BITS(sb);
359026a4c0c6STheodore Ts'o 
359126a4c0c6STheodore Ts'o 	/* If there are no blocks to remove, return now */
359226a4c0c6STheodore Ts'o 	if (first_block >= stop_block)
359326a4c0c6STheodore Ts'o 		goto out_stop;
359426a4c0c6STheodore Ts'o 
359526a4c0c6STheodore Ts'o 	down_write(&EXT4_I(inode)->i_data_sem);
359626a4c0c6STheodore Ts'o 	ext4_discard_preallocations(inode);
359726a4c0c6STheodore Ts'o 
359826a4c0c6STheodore Ts'o 	ret = ext4_es_remove_extent(inode, first_block,
359926a4c0c6STheodore Ts'o 				    stop_block - first_block);
360026a4c0c6STheodore Ts'o 	if (ret) {
360126a4c0c6STheodore Ts'o 		up_write(&EXT4_I(inode)->i_data_sem);
360226a4c0c6STheodore Ts'o 		goto out_stop;
360326a4c0c6STheodore Ts'o 	}
360426a4c0c6STheodore Ts'o 
360526a4c0c6STheodore Ts'o 	if (ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS))
360626a4c0c6STheodore Ts'o 		ret = ext4_ext_remove_space(inode, first_block,
360726a4c0c6STheodore Ts'o 					    stop_block - 1);
360826a4c0c6STheodore Ts'o 	else
36094f579ae7SLukas Czerner 		ret = ext4_ind_remove_space(handle, inode, first_block,
361026a4c0c6STheodore Ts'o 					    stop_block);
361126a4c0c6STheodore Ts'o 
3612819c4920STheodore Ts'o 	up_write(&EXT4_I(inode)->i_data_sem);
361326a4c0c6STheodore Ts'o 	if (IS_SYNC(inode))
361426a4c0c6STheodore Ts'o 		ext4_handle_sync(handle);
3615e251f9bcSMaxim Patlasov 
3616e251f9bcSMaxim Patlasov 	/* Now release the pages again to reduce race window */
3617e251f9bcSMaxim Patlasov 	if (last_block_offset > first_block_offset)
3618e251f9bcSMaxim Patlasov 		truncate_pagecache_range(inode, first_block_offset,
3619e251f9bcSMaxim Patlasov 					 last_block_offset);
3620e251f9bcSMaxim Patlasov 
362126a4c0c6STheodore Ts'o 	inode->i_mtime = inode->i_ctime = ext4_current_time(inode);
362226a4c0c6STheodore Ts'o 	ext4_mark_inode_dirty(handle, inode);
362326a4c0c6STheodore Ts'o out_stop:
362426a4c0c6STheodore Ts'o 	ext4_journal_stop(handle);
362526a4c0c6STheodore Ts'o out_dio:
362626a4c0c6STheodore Ts'o 	ext4_inode_resume_unlocked_dio(inode);
362726a4c0c6STheodore Ts'o out_mutex:
362826a4c0c6STheodore Ts'o 	mutex_unlock(&inode->i_mutex);
362926a4c0c6STheodore Ts'o 	return ret;
3630a4bb6b64SAllison Henderson }
3631a4bb6b64SAllison Henderson 
3632a361293fSJan Kara int ext4_inode_attach_jinode(struct inode *inode)
3633a361293fSJan Kara {
3634a361293fSJan Kara 	struct ext4_inode_info *ei = EXT4_I(inode);
3635a361293fSJan Kara 	struct jbd2_inode *jinode;
3636a361293fSJan Kara 
3637a361293fSJan Kara 	if (ei->jinode || !EXT4_SB(inode->i_sb)->s_journal)
3638a361293fSJan Kara 		return 0;
3639a361293fSJan Kara 
3640a361293fSJan Kara 	jinode = jbd2_alloc_inode(GFP_KERNEL);
3641a361293fSJan Kara 	spin_lock(&inode->i_lock);
3642a361293fSJan Kara 	if (!ei->jinode) {
3643a361293fSJan Kara 		if (!jinode) {
3644a361293fSJan Kara 			spin_unlock(&inode->i_lock);
3645a361293fSJan Kara 			return -ENOMEM;
3646a361293fSJan Kara 		}
3647a361293fSJan Kara 		ei->jinode = jinode;
3648a361293fSJan Kara 		jbd2_journal_init_jbd_inode(ei->jinode, inode);
3649a361293fSJan Kara 		jinode = NULL;
3650a361293fSJan Kara 	}
3651a361293fSJan Kara 	spin_unlock(&inode->i_lock);
3652a361293fSJan Kara 	if (unlikely(jinode != NULL))
3653a361293fSJan Kara 		jbd2_free_inode(jinode);
3654a361293fSJan Kara 	return 0;
3655a361293fSJan Kara }
3656a361293fSJan Kara 
3657a4bb6b64SAllison Henderson /*
3658617ba13bSMingming Cao  * ext4_truncate()
3659ac27a0ecSDave Kleikamp  *
3660617ba13bSMingming Cao  * We block out ext4_get_block() block instantiations across the entire
3661617ba13bSMingming Cao  * transaction, and VFS/VM ensures that ext4_truncate() cannot run
3662ac27a0ecSDave Kleikamp  * simultaneously on behalf of the same inode.
3663ac27a0ecSDave Kleikamp  *
366442b2aa86SJustin P. Mattock  * As we work through the truncate and commit bits of it to the journal there
3665ac27a0ecSDave Kleikamp  * is one core, guiding principle: the file's tree must always be consistent on
3666ac27a0ecSDave Kleikamp  * disk.  We must be able to restart the truncate after a crash.
3667ac27a0ecSDave Kleikamp  *
3668ac27a0ecSDave Kleikamp  * The file's tree may be transiently inconsistent in memory (although it
3669ac27a0ecSDave Kleikamp  * probably isn't), but whenever we close off and commit a journal transaction,
3670ac27a0ecSDave Kleikamp  * the contents of (the filesystem + the journal) must be consistent and
3671ac27a0ecSDave Kleikamp  * restartable.  It's pretty simple, really: bottom up, right to left (although
3672ac27a0ecSDave Kleikamp  * left-to-right works OK too).
3673ac27a0ecSDave Kleikamp  *
3674ac27a0ecSDave Kleikamp  * Note that at recovery time, journal replay occurs *before* the restart of
3675ac27a0ecSDave Kleikamp  * truncate against the orphan inode list.
3676ac27a0ecSDave Kleikamp  *
3677ac27a0ecSDave Kleikamp  * The committed inode has the new, desired i_size (which is the same as
3678617ba13bSMingming Cao  * i_disksize in this case).  After a crash, ext4_orphan_cleanup() will see
3679ac27a0ecSDave Kleikamp  * that this inode's truncate did not complete and it will again call
3680617ba13bSMingming Cao  * ext4_truncate() to have another go.  So there will be instantiated blocks
3681617ba13bSMingming Cao  * to the right of the truncation point in a crashed ext4 filesystem.  But
3682ac27a0ecSDave Kleikamp  * that's fine - as long as they are linked from the inode, the post-crash
3683617ba13bSMingming Cao  * ext4_truncate() run will find them and release them.
3684ac27a0ecSDave Kleikamp  */
3685617ba13bSMingming Cao void ext4_truncate(struct inode *inode)
3686ac27a0ecSDave Kleikamp {
3687819c4920STheodore Ts'o 	struct ext4_inode_info *ei = EXT4_I(inode);
3688819c4920STheodore Ts'o 	unsigned int credits;
3689819c4920STheodore Ts'o 	handle_t *handle;
3690819c4920STheodore Ts'o 	struct address_space *mapping = inode->i_mapping;
3691819c4920STheodore Ts'o 
369219b5ef61STheodore Ts'o 	/*
369319b5ef61STheodore Ts'o 	 * There is a possibility that we're either freeing the inode
3694e04027e8SMatthew Wilcox 	 * or it's a completely new inode. In those cases we might not
369519b5ef61STheodore Ts'o 	 * have i_mutex locked because it's not necessary.
369619b5ef61STheodore Ts'o 	 */
369719b5ef61STheodore Ts'o 	if (!(inode->i_state & (I_NEW|I_FREEING)))
369819b5ef61STheodore Ts'o 		WARN_ON(!mutex_is_locked(&inode->i_mutex));
36990562e0baSJiaying Zhang 	trace_ext4_truncate_enter(inode);
37000562e0baSJiaying Zhang 
370191ef4cafSDuane Griffin 	if (!ext4_can_truncate(inode))
3702ac27a0ecSDave Kleikamp 		return;
3703ac27a0ecSDave Kleikamp 
370412e9b892SDmitry Monakhov 	ext4_clear_inode_flag(inode, EXT4_INODE_EOFBLOCKS);
3705c8d46e41SJiaying Zhang 
37065534fb5bSTheodore Ts'o 	if (inode->i_size == 0 && !test_opt(inode->i_sb, NO_AUTO_DA_ALLOC))
370719f5fb7aSTheodore Ts'o 		ext4_set_inode_state(inode, EXT4_STATE_DA_ALLOC_CLOSE);
37087d8f9f7dSTheodore Ts'o 
3709aef1c851STao Ma 	if (ext4_has_inline_data(inode)) {
3710aef1c851STao Ma 		int has_inline = 1;
3711aef1c851STao Ma 
3712aef1c851STao Ma 		ext4_inline_data_truncate(inode, &has_inline);
3713aef1c851STao Ma 		if (has_inline)
3714aef1c851STao Ma 			return;
3715aef1c851STao Ma 	}
3716aef1c851STao Ma 
3717a361293fSJan Kara 	/* If we zero-out tail of the page, we have to create jinode for jbd2 */
3718a361293fSJan Kara 	if (inode->i_size & (inode->i_sb->s_blocksize - 1)) {
3719a361293fSJan Kara 		if (ext4_inode_attach_jinode(inode) < 0)
3720a361293fSJan Kara 			return;
3721a361293fSJan Kara 	}
3722a361293fSJan Kara 
3723ff9893dcSAmir Goldstein 	if (ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS))
3724819c4920STheodore Ts'o 		credits = ext4_writepage_trans_blocks(inode);
3725ff9893dcSAmir Goldstein 	else
3726819c4920STheodore Ts'o 		credits = ext4_blocks_for_truncate(inode);
3727819c4920STheodore Ts'o 
3728819c4920STheodore Ts'o 	handle = ext4_journal_start(inode, EXT4_HT_TRUNCATE, credits);
3729819c4920STheodore Ts'o 	if (IS_ERR(handle)) {
3730819c4920STheodore Ts'o 		ext4_std_error(inode->i_sb, PTR_ERR(handle));
3731819c4920STheodore Ts'o 		return;
3732819c4920STheodore Ts'o 	}
3733819c4920STheodore Ts'o 
3734eb3544c6SLukas Czerner 	if (inode->i_size & (inode->i_sb->s_blocksize - 1))
3735eb3544c6SLukas Czerner 		ext4_block_truncate_page(handle, mapping, inode->i_size);
3736819c4920STheodore Ts'o 
3737819c4920STheodore Ts'o 	/*
3738819c4920STheodore Ts'o 	 * We add the inode to the orphan list, so that if this
3739819c4920STheodore Ts'o 	 * truncate spans multiple transactions, and we crash, we will
3740819c4920STheodore Ts'o 	 * resume the truncate when the filesystem recovers.  It also
3741819c4920STheodore Ts'o 	 * marks the inode dirty, to catch the new size.
3742819c4920STheodore Ts'o 	 *
3743819c4920STheodore Ts'o 	 * Implication: the file must always be in a sane, consistent
3744819c4920STheodore Ts'o 	 * truncatable state while each transaction commits.
3745819c4920STheodore Ts'o 	 */
3746819c4920STheodore Ts'o 	if (ext4_orphan_add(handle, inode))
3747819c4920STheodore Ts'o 		goto out_stop;
3748819c4920STheodore Ts'o 
3749819c4920STheodore Ts'o 	down_write(&EXT4_I(inode)->i_data_sem);
3750819c4920STheodore Ts'o 
3751819c4920STheodore Ts'o 	ext4_discard_preallocations(inode);
3752819c4920STheodore Ts'o 
3753819c4920STheodore Ts'o 	if (ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS))
3754819c4920STheodore Ts'o 		ext4_ext_truncate(handle, inode);
3755819c4920STheodore Ts'o 	else
3756819c4920STheodore Ts'o 		ext4_ind_truncate(handle, inode);
3757819c4920STheodore Ts'o 
3758819c4920STheodore Ts'o 	up_write(&ei->i_data_sem);
3759819c4920STheodore Ts'o 
3760819c4920STheodore Ts'o 	if (IS_SYNC(inode))
3761819c4920STheodore Ts'o 		ext4_handle_sync(handle);
3762819c4920STheodore Ts'o 
3763819c4920STheodore Ts'o out_stop:
3764819c4920STheodore Ts'o 	/*
3765819c4920STheodore Ts'o 	 * If this was a simple ftruncate() and the file will remain alive,
3766819c4920STheodore Ts'o 	 * then we need to clear up the orphan record which we created above.
3767819c4920STheodore Ts'o 	 * However, if this was a real unlink then we were called by
376858d86a50SWang Shilong 	 * ext4_evict_inode(), and we allow that function to clean up the
3769819c4920STheodore Ts'o 	 * orphan info for us.
3770819c4920STheodore Ts'o 	 */
3771819c4920STheodore Ts'o 	if (inode->i_nlink)
3772819c4920STheodore Ts'o 		ext4_orphan_del(handle, inode);
3773819c4920STheodore Ts'o 
3774819c4920STheodore Ts'o 	inode->i_mtime = inode->i_ctime = ext4_current_time(inode);
3775819c4920STheodore Ts'o 	ext4_mark_inode_dirty(handle, inode);
3776819c4920STheodore Ts'o 	ext4_journal_stop(handle);
3777a86c6181SAlex Tomas 
37780562e0baSJiaying Zhang 	trace_ext4_truncate_exit(inode);
3779ac27a0ecSDave Kleikamp }
3780ac27a0ecSDave Kleikamp 
3781ac27a0ecSDave Kleikamp /*
3782617ba13bSMingming Cao  * ext4_get_inode_loc returns with an extra refcount against the inode's
3783ac27a0ecSDave Kleikamp  * underlying buffer_head on success. If 'in_mem' is true, we have all
3784ac27a0ecSDave Kleikamp  * data in memory that is needed to recreate the on-disk version of this
3785ac27a0ecSDave Kleikamp  * inode.
3786ac27a0ecSDave Kleikamp  */
3787617ba13bSMingming Cao static int __ext4_get_inode_loc(struct inode *inode,
3788617ba13bSMingming Cao 				struct ext4_iloc *iloc, int in_mem)
3789ac27a0ecSDave Kleikamp {
3790240799cdSTheodore Ts'o 	struct ext4_group_desc	*gdp;
3791ac27a0ecSDave Kleikamp 	struct buffer_head	*bh;
3792240799cdSTheodore Ts'o 	struct super_block	*sb = inode->i_sb;
3793240799cdSTheodore Ts'o 	ext4_fsblk_t		block;
3794240799cdSTheodore Ts'o 	int			inodes_per_block, inode_offset;
3795ac27a0ecSDave Kleikamp 
37963a06d778SAneesh Kumar K.V 	iloc->bh = NULL;
3797240799cdSTheodore Ts'o 	if (!ext4_valid_inum(sb, inode->i_ino))
3798ac27a0ecSDave Kleikamp 		return -EIO;
3799ac27a0ecSDave Kleikamp 
3800240799cdSTheodore Ts'o 	iloc->block_group = (inode->i_ino - 1) / EXT4_INODES_PER_GROUP(sb);
3801240799cdSTheodore Ts'o 	gdp = ext4_get_group_desc(sb, iloc->block_group, NULL);
3802240799cdSTheodore Ts'o 	if (!gdp)
3803240799cdSTheodore Ts'o 		return -EIO;
3804240799cdSTheodore Ts'o 
3805240799cdSTheodore Ts'o 	/*
3806240799cdSTheodore Ts'o 	 * Figure out the offset within the block group inode table
3807240799cdSTheodore Ts'o 	 */
380800d09882STao Ma 	inodes_per_block = EXT4_SB(sb)->s_inodes_per_block;
3809240799cdSTheodore Ts'o 	inode_offset = ((inode->i_ino - 1) %
3810240799cdSTheodore Ts'o 			EXT4_INODES_PER_GROUP(sb));
3811240799cdSTheodore Ts'o 	block = ext4_inode_table(sb, gdp) + (inode_offset / inodes_per_block);
3812240799cdSTheodore Ts'o 	iloc->offset = (inode_offset % inodes_per_block) * EXT4_INODE_SIZE(sb);
3813240799cdSTheodore Ts'o 
3814240799cdSTheodore Ts'o 	bh = sb_getblk(sb, block);
3815aebf0243SWang Shilong 	if (unlikely(!bh))
3816860d21e2STheodore Ts'o 		return -ENOMEM;
3817ac27a0ecSDave Kleikamp 	if (!buffer_uptodate(bh)) {
3818ac27a0ecSDave Kleikamp 		lock_buffer(bh);
38199c83a923SHidehiro Kawai 
38209c83a923SHidehiro Kawai 		/*
38219c83a923SHidehiro Kawai 		 * If the buffer has the write error flag, we have failed
38229c83a923SHidehiro Kawai 		 * to write out another inode in the same block.  In this
38239c83a923SHidehiro Kawai 		 * case, we don't have to read the block because we may
38249c83a923SHidehiro Kawai 		 * read the old inode data successfully.
38259c83a923SHidehiro Kawai 		 */
38269c83a923SHidehiro Kawai 		if (buffer_write_io_error(bh) && !buffer_uptodate(bh))
38279c83a923SHidehiro Kawai 			set_buffer_uptodate(bh);
38289c83a923SHidehiro Kawai 
3829ac27a0ecSDave Kleikamp 		if (buffer_uptodate(bh)) {
3830ac27a0ecSDave Kleikamp 			/* someone brought it uptodate while we waited */
3831ac27a0ecSDave Kleikamp 			unlock_buffer(bh);
3832ac27a0ecSDave Kleikamp 			goto has_buffer;
3833ac27a0ecSDave Kleikamp 		}
3834ac27a0ecSDave Kleikamp 
3835ac27a0ecSDave Kleikamp 		/*
3836ac27a0ecSDave Kleikamp 		 * If we have all information of the inode in memory and this
3837ac27a0ecSDave Kleikamp 		 * is the only valid inode in the block, we need not read the
3838ac27a0ecSDave Kleikamp 		 * block.
3839ac27a0ecSDave Kleikamp 		 */
3840ac27a0ecSDave Kleikamp 		if (in_mem) {
3841ac27a0ecSDave Kleikamp 			struct buffer_head *bitmap_bh;
3842240799cdSTheodore Ts'o 			int i, start;
3843ac27a0ecSDave Kleikamp 
3844240799cdSTheodore Ts'o 			start = inode_offset & ~(inodes_per_block - 1);
3845ac27a0ecSDave Kleikamp 
3846ac27a0ecSDave Kleikamp 			/* Is the inode bitmap in cache? */
3847240799cdSTheodore Ts'o 			bitmap_bh = sb_getblk(sb, ext4_inode_bitmap(sb, gdp));
3848aebf0243SWang Shilong 			if (unlikely(!bitmap_bh))
3849ac27a0ecSDave Kleikamp 				goto make_io;
3850ac27a0ecSDave Kleikamp 
3851ac27a0ecSDave Kleikamp 			/*
3852ac27a0ecSDave Kleikamp 			 * If the inode bitmap isn't in cache then the
3853ac27a0ecSDave Kleikamp 			 * optimisation may end up performing two reads instead
3854ac27a0ecSDave Kleikamp 			 * of one, so skip it.
3855ac27a0ecSDave Kleikamp 			 */
3856ac27a0ecSDave Kleikamp 			if (!buffer_uptodate(bitmap_bh)) {
3857ac27a0ecSDave Kleikamp 				brelse(bitmap_bh);
3858ac27a0ecSDave Kleikamp 				goto make_io;
3859ac27a0ecSDave Kleikamp 			}
3860240799cdSTheodore Ts'o 			for (i = start; i < start + inodes_per_block; i++) {
3861ac27a0ecSDave Kleikamp 				if (i == inode_offset)
3862ac27a0ecSDave Kleikamp 					continue;
3863617ba13bSMingming Cao 				if (ext4_test_bit(i, bitmap_bh->b_data))
3864ac27a0ecSDave Kleikamp 					break;
3865ac27a0ecSDave Kleikamp 			}
3866ac27a0ecSDave Kleikamp 			brelse(bitmap_bh);
3867240799cdSTheodore Ts'o 			if (i == start + inodes_per_block) {
3868ac27a0ecSDave Kleikamp 				/* all other inodes are free, so skip I/O */
3869ac27a0ecSDave Kleikamp 				memset(bh->b_data, 0, bh->b_size);
3870ac27a0ecSDave Kleikamp 				set_buffer_uptodate(bh);
3871ac27a0ecSDave Kleikamp 				unlock_buffer(bh);
3872ac27a0ecSDave Kleikamp 				goto has_buffer;
3873ac27a0ecSDave Kleikamp 			}
3874ac27a0ecSDave Kleikamp 		}
3875ac27a0ecSDave Kleikamp 
3876ac27a0ecSDave Kleikamp make_io:
3877ac27a0ecSDave Kleikamp 		/*
3878240799cdSTheodore Ts'o 		 * If we need to do any I/O, try to pre-readahead extra
3879240799cdSTheodore Ts'o 		 * blocks from the inode table.
3880240799cdSTheodore Ts'o 		 */
3881240799cdSTheodore Ts'o 		if (EXT4_SB(sb)->s_inode_readahead_blks) {
3882240799cdSTheodore Ts'o 			ext4_fsblk_t b, end, table;
3883240799cdSTheodore Ts'o 			unsigned num;
38840d606e2cSTheodore Ts'o 			__u32 ra_blks = EXT4_SB(sb)->s_inode_readahead_blks;
3885240799cdSTheodore Ts'o 
3886240799cdSTheodore Ts'o 			table = ext4_inode_table(sb, gdp);
3887b713a5ecSTheodore Ts'o 			/* s_inode_readahead_blks is always a power of 2 */
38880d606e2cSTheodore Ts'o 			b = block & ~((ext4_fsblk_t) ra_blks - 1);
3889240799cdSTheodore Ts'o 			if (table > b)
3890240799cdSTheodore Ts'o 				b = table;
38910d606e2cSTheodore Ts'o 			end = b + ra_blks;
3892240799cdSTheodore Ts'o 			num = EXT4_INODES_PER_GROUP(sb);
3893feb0ab32SDarrick J. Wong 			if (ext4_has_group_desc_csum(sb))
3894560671a0SAneesh Kumar K.V 				num -= ext4_itable_unused_count(sb, gdp);
3895240799cdSTheodore Ts'o 			table += num / inodes_per_block;
3896240799cdSTheodore Ts'o 			if (end > table)
3897240799cdSTheodore Ts'o 				end = table;
3898240799cdSTheodore Ts'o 			while (b <= end)
3899240799cdSTheodore Ts'o 				sb_breadahead(sb, b++);
3900240799cdSTheodore Ts'o 		}
3901240799cdSTheodore Ts'o 
3902240799cdSTheodore Ts'o 		/*
3903ac27a0ecSDave Kleikamp 		 * There are other valid inodes in the buffer, this inode
3904ac27a0ecSDave Kleikamp 		 * has in-inode xattrs, or we don't have this inode in memory.
3905ac27a0ecSDave Kleikamp 		 * Read the block from disk.
3906ac27a0ecSDave Kleikamp 		 */
39070562e0baSJiaying Zhang 		trace_ext4_load_inode(inode);
3908ac27a0ecSDave Kleikamp 		get_bh(bh);
3909ac27a0ecSDave Kleikamp 		bh->b_end_io = end_buffer_read_sync;
391065299a3bSChristoph Hellwig 		submit_bh(READ | REQ_META | REQ_PRIO, bh);
3911ac27a0ecSDave Kleikamp 		wait_on_buffer(bh);
3912ac27a0ecSDave Kleikamp 		if (!buffer_uptodate(bh)) {
3913c398eda0STheodore Ts'o 			EXT4_ERROR_INODE_BLOCK(inode, block,
3914c398eda0STheodore Ts'o 					       "unable to read itable block");
3915ac27a0ecSDave Kleikamp 			brelse(bh);
3916ac27a0ecSDave Kleikamp 			return -EIO;
3917ac27a0ecSDave Kleikamp 		}
3918ac27a0ecSDave Kleikamp 	}
3919ac27a0ecSDave Kleikamp has_buffer:
3920ac27a0ecSDave Kleikamp 	iloc->bh = bh;
3921ac27a0ecSDave Kleikamp 	return 0;
3922ac27a0ecSDave Kleikamp }
3923ac27a0ecSDave Kleikamp 
3924617ba13bSMingming Cao int ext4_get_inode_loc(struct inode *inode, struct ext4_iloc *iloc)
3925ac27a0ecSDave Kleikamp {
3926ac27a0ecSDave Kleikamp 	/* We have all inode data except xattrs in memory here. */
3927617ba13bSMingming Cao 	return __ext4_get_inode_loc(inode, iloc,
392819f5fb7aSTheodore Ts'o 		!ext4_test_inode_state(inode, EXT4_STATE_XATTR));
3929ac27a0ecSDave Kleikamp }
3930ac27a0ecSDave Kleikamp 
3931617ba13bSMingming Cao void ext4_set_inode_flags(struct inode *inode)
3932ac27a0ecSDave Kleikamp {
3933617ba13bSMingming Cao 	unsigned int flags = EXT4_I(inode)->i_flags;
393400a1a053STheodore Ts'o 	unsigned int new_fl = 0;
3935ac27a0ecSDave Kleikamp 
3936617ba13bSMingming Cao 	if (flags & EXT4_SYNC_FL)
393700a1a053STheodore Ts'o 		new_fl |= S_SYNC;
3938617ba13bSMingming Cao 	if (flags & EXT4_APPEND_FL)
393900a1a053STheodore Ts'o 		new_fl |= S_APPEND;
3940617ba13bSMingming Cao 	if (flags & EXT4_IMMUTABLE_FL)
394100a1a053STheodore Ts'o 		new_fl |= S_IMMUTABLE;
3942617ba13bSMingming Cao 	if (flags & EXT4_NOATIME_FL)
394300a1a053STheodore Ts'o 		new_fl |= S_NOATIME;
3944617ba13bSMingming Cao 	if (flags & EXT4_DIRSYNC_FL)
394500a1a053STheodore Ts'o 		new_fl |= S_DIRSYNC;
3946923ae0ffSRoss Zwisler 	if (test_opt(inode->i_sb, DAX))
3947923ae0ffSRoss Zwisler 		new_fl |= S_DAX;
39485f16f322STheodore Ts'o 	inode_set_flags(inode, new_fl,
3949923ae0ffSRoss Zwisler 			S_SYNC|S_APPEND|S_IMMUTABLE|S_NOATIME|S_DIRSYNC|S_DAX);
3950ac27a0ecSDave Kleikamp }
3951ac27a0ecSDave Kleikamp 
3952ff9ddf7eSJan Kara /* Propagate flags from i_flags to EXT4_I(inode)->i_flags */
3953ff9ddf7eSJan Kara void ext4_get_inode_flags(struct ext4_inode_info *ei)
3954ff9ddf7eSJan Kara {
395584a8dce2SDmitry Monakhov 	unsigned int vfs_fl;
395684a8dce2SDmitry Monakhov 	unsigned long old_fl, new_fl;
3957ff9ddf7eSJan Kara 
395884a8dce2SDmitry Monakhov 	do {
395984a8dce2SDmitry Monakhov 		vfs_fl = ei->vfs_inode.i_flags;
396084a8dce2SDmitry Monakhov 		old_fl = ei->i_flags;
396184a8dce2SDmitry Monakhov 		new_fl = old_fl & ~(EXT4_SYNC_FL|EXT4_APPEND_FL|
396284a8dce2SDmitry Monakhov 				EXT4_IMMUTABLE_FL|EXT4_NOATIME_FL|
396384a8dce2SDmitry Monakhov 				EXT4_DIRSYNC_FL);
396484a8dce2SDmitry Monakhov 		if (vfs_fl & S_SYNC)
396584a8dce2SDmitry Monakhov 			new_fl |= EXT4_SYNC_FL;
396684a8dce2SDmitry Monakhov 		if (vfs_fl & S_APPEND)
396784a8dce2SDmitry Monakhov 			new_fl |= EXT4_APPEND_FL;
396884a8dce2SDmitry Monakhov 		if (vfs_fl & S_IMMUTABLE)
396984a8dce2SDmitry Monakhov 			new_fl |= EXT4_IMMUTABLE_FL;
397084a8dce2SDmitry Monakhov 		if (vfs_fl & S_NOATIME)
397184a8dce2SDmitry Monakhov 			new_fl |= EXT4_NOATIME_FL;
397284a8dce2SDmitry Monakhov 		if (vfs_fl & S_DIRSYNC)
397384a8dce2SDmitry Monakhov 			new_fl |= EXT4_DIRSYNC_FL;
397484a8dce2SDmitry Monakhov 	} while (cmpxchg(&ei->i_flags, old_fl, new_fl) != old_fl);
3975ff9ddf7eSJan Kara }
3976de9a55b8STheodore Ts'o 
39770fc1b451SAneesh Kumar K.V static blkcnt_t ext4_inode_blocks(struct ext4_inode *raw_inode,
39780fc1b451SAneesh Kumar K.V 				  struct ext4_inode_info *ei)
39790fc1b451SAneesh Kumar K.V {
39800fc1b451SAneesh Kumar K.V 	blkcnt_t i_blocks ;
39818180a562SAneesh Kumar K.V 	struct inode *inode = &(ei->vfs_inode);
39828180a562SAneesh Kumar K.V 	struct super_block *sb = inode->i_sb;
39830fc1b451SAneesh Kumar K.V 
39840fc1b451SAneesh Kumar K.V 	if (EXT4_HAS_RO_COMPAT_FEATURE(sb,
39850fc1b451SAneesh Kumar K.V 				EXT4_FEATURE_RO_COMPAT_HUGE_FILE)) {
39860fc1b451SAneesh Kumar K.V 		/* we are using combined 48 bit field */
39870fc1b451SAneesh Kumar K.V 		i_blocks = ((u64)le16_to_cpu(raw_inode->i_blocks_high)) << 32 |
39880fc1b451SAneesh Kumar K.V 					le32_to_cpu(raw_inode->i_blocks_lo);
398907a03824STheodore Ts'o 		if (ext4_test_inode_flag(inode, EXT4_INODE_HUGE_FILE)) {
39908180a562SAneesh Kumar K.V 			/* i_blocks represent file system block size */
39918180a562SAneesh Kumar K.V 			return i_blocks  << (inode->i_blkbits - 9);
39928180a562SAneesh Kumar K.V 		} else {
39930fc1b451SAneesh Kumar K.V 			return i_blocks;
39948180a562SAneesh Kumar K.V 		}
39950fc1b451SAneesh Kumar K.V 	} else {
39960fc1b451SAneesh Kumar K.V 		return le32_to_cpu(raw_inode->i_blocks_lo);
39970fc1b451SAneesh Kumar K.V 	}
39980fc1b451SAneesh Kumar K.V }
3999ff9ddf7eSJan Kara 
4000152a7b0aSTao Ma static inline void ext4_iget_extra_inode(struct inode *inode,
4001152a7b0aSTao Ma 					 struct ext4_inode *raw_inode,
4002152a7b0aSTao Ma 					 struct ext4_inode_info *ei)
4003152a7b0aSTao Ma {
4004152a7b0aSTao Ma 	__le32 *magic = (void *)raw_inode +
4005152a7b0aSTao Ma 			EXT4_GOOD_OLD_INODE_SIZE + ei->i_extra_isize;
400667cf5b09STao Ma 	if (*magic == cpu_to_le32(EXT4_XATTR_MAGIC)) {
4007152a7b0aSTao Ma 		ext4_set_inode_state(inode, EXT4_STATE_XATTR);
400867cf5b09STao Ma 		ext4_find_inline_data_nolock(inode);
4009f19d5870STao Ma 	} else
4010f19d5870STao Ma 		EXT4_I(inode)->i_inline_off = 0;
4011152a7b0aSTao Ma }
4012152a7b0aSTao Ma 
40131d1fe1eeSDavid Howells struct inode *ext4_iget(struct super_block *sb, unsigned long ino)
4014ac27a0ecSDave Kleikamp {
4015617ba13bSMingming Cao 	struct ext4_iloc iloc;
4016617ba13bSMingming Cao 	struct ext4_inode *raw_inode;
40171d1fe1eeSDavid Howells 	struct ext4_inode_info *ei;
40181d1fe1eeSDavid Howells 	struct inode *inode;
4019b436b9beSJan Kara 	journal_t *journal = EXT4_SB(sb)->s_journal;
40201d1fe1eeSDavid Howells 	long ret;
4021ac27a0ecSDave Kleikamp 	int block;
402208cefc7aSEric W. Biederman 	uid_t i_uid;
402308cefc7aSEric W. Biederman 	gid_t i_gid;
4024ac27a0ecSDave Kleikamp 
40251d1fe1eeSDavid Howells 	inode = iget_locked(sb, ino);
40261d1fe1eeSDavid Howells 	if (!inode)
40271d1fe1eeSDavid Howells 		return ERR_PTR(-ENOMEM);
40281d1fe1eeSDavid Howells 	if (!(inode->i_state & I_NEW))
40291d1fe1eeSDavid Howells 		return inode;
40301d1fe1eeSDavid Howells 
40311d1fe1eeSDavid Howells 	ei = EXT4_I(inode);
40327dc57615SPeter Huewe 	iloc.bh = NULL;
4033ac27a0ecSDave Kleikamp 
40341d1fe1eeSDavid Howells 	ret = __ext4_get_inode_loc(inode, &iloc, 0);
40351d1fe1eeSDavid Howells 	if (ret < 0)
4036ac27a0ecSDave Kleikamp 		goto bad_inode;
4037617ba13bSMingming Cao 	raw_inode = ext4_raw_inode(&iloc);
4038814525f4SDarrick J. Wong 
4039814525f4SDarrick J. Wong 	if (EXT4_INODE_SIZE(inode->i_sb) > EXT4_GOOD_OLD_INODE_SIZE) {
4040814525f4SDarrick J. Wong 		ei->i_extra_isize = le16_to_cpu(raw_inode->i_extra_isize);
4041814525f4SDarrick J. Wong 		if (EXT4_GOOD_OLD_INODE_SIZE + ei->i_extra_isize >
4042814525f4SDarrick J. Wong 		    EXT4_INODE_SIZE(inode->i_sb)) {
4043814525f4SDarrick J. Wong 			EXT4_ERROR_INODE(inode, "bad extra_isize (%u != %u)",
4044814525f4SDarrick J. Wong 				EXT4_GOOD_OLD_INODE_SIZE + ei->i_extra_isize,
4045814525f4SDarrick J. Wong 				EXT4_INODE_SIZE(inode->i_sb));
4046814525f4SDarrick J. Wong 			ret = -EIO;
4047814525f4SDarrick J. Wong 			goto bad_inode;
4048814525f4SDarrick J. Wong 		}
4049814525f4SDarrick J. Wong 	} else
4050814525f4SDarrick J. Wong 		ei->i_extra_isize = 0;
4051814525f4SDarrick J. Wong 
4052814525f4SDarrick J. Wong 	/* Precompute checksum seed for inode metadata */
40539aa5d32bSDmitry Monakhov 	if (ext4_has_metadata_csum(sb)) {
4054814525f4SDarrick J. Wong 		struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb);
4055814525f4SDarrick J. Wong 		__u32 csum;
4056814525f4SDarrick J. Wong 		__le32 inum = cpu_to_le32(inode->i_ino);
4057814525f4SDarrick J. Wong 		__le32 gen = raw_inode->i_generation;
4058814525f4SDarrick J. Wong 		csum = ext4_chksum(sbi, sbi->s_csum_seed, (__u8 *)&inum,
4059814525f4SDarrick J. Wong 				   sizeof(inum));
4060814525f4SDarrick J. Wong 		ei->i_csum_seed = ext4_chksum(sbi, csum, (__u8 *)&gen,
4061814525f4SDarrick J. Wong 					      sizeof(gen));
4062814525f4SDarrick J. Wong 	}
4063814525f4SDarrick J. Wong 
4064814525f4SDarrick J. Wong 	if (!ext4_inode_csum_verify(inode, raw_inode, ei)) {
4065814525f4SDarrick J. Wong 		EXT4_ERROR_INODE(inode, "checksum invalid");
4066814525f4SDarrick J. Wong 		ret = -EIO;
4067814525f4SDarrick J. Wong 		goto bad_inode;
4068814525f4SDarrick J. Wong 	}
4069814525f4SDarrick J. Wong 
4070ac27a0ecSDave Kleikamp 	inode->i_mode = le16_to_cpu(raw_inode->i_mode);
407108cefc7aSEric W. Biederman 	i_uid = (uid_t)le16_to_cpu(raw_inode->i_uid_low);
407208cefc7aSEric W. Biederman 	i_gid = (gid_t)le16_to_cpu(raw_inode->i_gid_low);
4073ac27a0ecSDave Kleikamp 	if (!(test_opt(inode->i_sb, NO_UID32))) {
407408cefc7aSEric W. Biederman 		i_uid |= le16_to_cpu(raw_inode->i_uid_high) << 16;
407508cefc7aSEric W. Biederman 		i_gid |= le16_to_cpu(raw_inode->i_gid_high) << 16;
4076ac27a0ecSDave Kleikamp 	}
407708cefc7aSEric W. Biederman 	i_uid_write(inode, i_uid);
407808cefc7aSEric W. Biederman 	i_gid_write(inode, i_gid);
4079bfe86848SMiklos Szeredi 	set_nlink(inode, le16_to_cpu(raw_inode->i_links_count));
4080ac27a0ecSDave Kleikamp 
4081353eb83cSTheodore Ts'o 	ext4_clear_state_flags(ei);	/* Only relevant on 32-bit archs */
408267cf5b09STao Ma 	ei->i_inline_off = 0;
4083ac27a0ecSDave Kleikamp 	ei->i_dir_start_lookup = 0;
4084ac27a0ecSDave Kleikamp 	ei->i_dtime = le32_to_cpu(raw_inode->i_dtime);
4085ac27a0ecSDave Kleikamp 	/* We now have enough fields to check if the inode was active or not.
4086ac27a0ecSDave Kleikamp 	 * This is needed because nfsd might try to access dead inodes
4087ac27a0ecSDave Kleikamp 	 * the test is that same one that e2fsck uses
4088ac27a0ecSDave Kleikamp 	 * NeilBrown 1999oct15
4089ac27a0ecSDave Kleikamp 	 */
4090ac27a0ecSDave Kleikamp 	if (inode->i_nlink == 0) {
4091393d1d1dSDr. Tilmann Bubeck 		if ((inode->i_mode == 0 ||
4092393d1d1dSDr. Tilmann Bubeck 		     !(EXT4_SB(inode->i_sb)->s_mount_state & EXT4_ORPHAN_FS)) &&
4093393d1d1dSDr. Tilmann Bubeck 		    ino != EXT4_BOOT_LOADER_INO) {
4094ac27a0ecSDave Kleikamp 			/* this inode is deleted */
40951d1fe1eeSDavid Howells 			ret = -ESTALE;
4096ac27a0ecSDave Kleikamp 			goto bad_inode;
4097ac27a0ecSDave Kleikamp 		}
4098ac27a0ecSDave Kleikamp 		/* The only unlinked inodes we let through here have
4099ac27a0ecSDave Kleikamp 		 * valid i_mode and are being read by the orphan
4100ac27a0ecSDave Kleikamp 		 * recovery code: that's fine, we're about to complete
4101393d1d1dSDr. Tilmann Bubeck 		 * the process of deleting those.
4102393d1d1dSDr. Tilmann Bubeck 		 * OR it is the EXT4_BOOT_LOADER_INO which is
4103393d1d1dSDr. Tilmann Bubeck 		 * not initialized on a new filesystem. */
4104ac27a0ecSDave Kleikamp 	}
4105ac27a0ecSDave Kleikamp 	ei->i_flags = le32_to_cpu(raw_inode->i_flags);
41060fc1b451SAneesh Kumar K.V 	inode->i_blocks = ext4_inode_blocks(raw_inode, ei);
41077973c0c1SAneesh Kumar K.V 	ei->i_file_acl = le32_to_cpu(raw_inode->i_file_acl_lo);
4108a9e81742STheodore Ts'o 	if (EXT4_HAS_INCOMPAT_FEATURE(sb, EXT4_FEATURE_INCOMPAT_64BIT))
4109a1ddeb7eSBadari Pulavarty 		ei->i_file_acl |=
4110a1ddeb7eSBadari Pulavarty 			((__u64)le16_to_cpu(raw_inode->i_file_acl_high)) << 32;
4111a48380f7SAneesh Kumar K.V 	inode->i_size = ext4_isize(raw_inode);
4112ac27a0ecSDave Kleikamp 	ei->i_disksize = inode->i_size;
4113a9e7f447SDmitry Monakhov #ifdef CONFIG_QUOTA
4114a9e7f447SDmitry Monakhov 	ei->i_reserved_quota = 0;
4115a9e7f447SDmitry Monakhov #endif
4116ac27a0ecSDave Kleikamp 	inode->i_generation = le32_to_cpu(raw_inode->i_generation);
4117ac27a0ecSDave Kleikamp 	ei->i_block_group = iloc.block_group;
4118a4912123STheodore Ts'o 	ei->i_last_alloc_group = ~0;
4119ac27a0ecSDave Kleikamp 	/*
4120ac27a0ecSDave Kleikamp 	 * NOTE! The in-memory inode i_data array is in little-endian order
4121ac27a0ecSDave Kleikamp 	 * even on big-endian machines: we do NOT byteswap the block numbers!
4122ac27a0ecSDave Kleikamp 	 */
4123617ba13bSMingming Cao 	for (block = 0; block < EXT4_N_BLOCKS; block++)
4124ac27a0ecSDave Kleikamp 		ei->i_data[block] = raw_inode->i_block[block];
4125ac27a0ecSDave Kleikamp 	INIT_LIST_HEAD(&ei->i_orphan);
4126ac27a0ecSDave Kleikamp 
4127b436b9beSJan Kara 	/*
4128b436b9beSJan Kara 	 * Set transaction id's of transactions that have to be committed
4129b436b9beSJan Kara 	 * to finish f[data]sync. We set them to currently running transaction
4130b436b9beSJan Kara 	 * as we cannot be sure that the inode or some of its metadata isn't
4131b436b9beSJan Kara 	 * part of the transaction - the inode could have been reclaimed and
4132b436b9beSJan Kara 	 * now it is reread from disk.
4133b436b9beSJan Kara 	 */
4134b436b9beSJan Kara 	if (journal) {
4135b436b9beSJan Kara 		transaction_t *transaction;
4136b436b9beSJan Kara 		tid_t tid;
4137b436b9beSJan Kara 
4138a931da6aSTheodore Ts'o 		read_lock(&journal->j_state_lock);
4139b436b9beSJan Kara 		if (journal->j_running_transaction)
4140b436b9beSJan Kara 			transaction = journal->j_running_transaction;
4141b436b9beSJan Kara 		else
4142b436b9beSJan Kara 			transaction = journal->j_committing_transaction;
4143b436b9beSJan Kara 		if (transaction)
4144b436b9beSJan Kara 			tid = transaction->t_tid;
4145b436b9beSJan Kara 		else
4146b436b9beSJan Kara 			tid = journal->j_commit_sequence;
4147a931da6aSTheodore Ts'o 		read_unlock(&journal->j_state_lock);
4148b436b9beSJan Kara 		ei->i_sync_tid = tid;
4149b436b9beSJan Kara 		ei->i_datasync_tid = tid;
4150b436b9beSJan Kara 	}
4151b436b9beSJan Kara 
41520040d987SEric Sandeen 	if (EXT4_INODE_SIZE(inode->i_sb) > EXT4_GOOD_OLD_INODE_SIZE) {
4153ac27a0ecSDave Kleikamp 		if (ei->i_extra_isize == 0) {
4154ac27a0ecSDave Kleikamp 			/* The extra space is currently unused. Use it. */
4155617ba13bSMingming Cao 			ei->i_extra_isize = sizeof(struct ext4_inode) -
4156617ba13bSMingming Cao 					    EXT4_GOOD_OLD_INODE_SIZE;
4157ac27a0ecSDave Kleikamp 		} else {
4158152a7b0aSTao Ma 			ext4_iget_extra_inode(inode, raw_inode, ei);
4159ac27a0ecSDave Kleikamp 		}
4160814525f4SDarrick J. Wong 	}
4161ac27a0ecSDave Kleikamp 
4162ef7f3835SKalpak Shah 	EXT4_INODE_GET_XTIME(i_ctime, inode, raw_inode);
4163ef7f3835SKalpak Shah 	EXT4_INODE_GET_XTIME(i_mtime, inode, raw_inode);
4164ef7f3835SKalpak Shah 	EXT4_INODE_GET_XTIME(i_atime, inode, raw_inode);
4165ef7f3835SKalpak Shah 	EXT4_EINODE_GET_XTIME(i_crtime, ei, raw_inode);
4166ef7f3835SKalpak Shah 
4167ed3654ebSTheodore Ts'o 	if (likely(!test_opt2(inode->i_sb, HURD_COMPAT))) {
416825ec56b5SJean Noel Cordenner 		inode->i_version = le32_to_cpu(raw_inode->i_disk_version);
416925ec56b5SJean Noel Cordenner 		if (EXT4_INODE_SIZE(inode->i_sb) > EXT4_GOOD_OLD_INODE_SIZE) {
417025ec56b5SJean Noel Cordenner 			if (EXT4_FITS_IN_INODE(raw_inode, ei, i_version_hi))
417125ec56b5SJean Noel Cordenner 				inode->i_version |=
417225ec56b5SJean Noel Cordenner 		    (__u64)(le32_to_cpu(raw_inode->i_version_hi)) << 32;
417325ec56b5SJean Noel Cordenner 		}
4174c4f65706STheodore Ts'o 	}
417525ec56b5SJean Noel Cordenner 
4176c4b5a614STheodore Ts'o 	ret = 0;
4177485c26ecSTheodore Ts'o 	if (ei->i_file_acl &&
41781032988cSTheodore Ts'o 	    !ext4_data_block_valid(EXT4_SB(sb), ei->i_file_acl, 1)) {
417924676da4STheodore Ts'o 		EXT4_ERROR_INODE(inode, "bad extended attribute block %llu",
418024676da4STheodore Ts'o 				 ei->i_file_acl);
4181485c26ecSTheodore Ts'o 		ret = -EIO;
4182485c26ecSTheodore Ts'o 		goto bad_inode;
4183f19d5870STao Ma 	} else if (!ext4_has_inline_data(inode)) {
4184f19d5870STao Ma 		if (ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS)) {
4185f19d5870STao Ma 			if ((S_ISREG(inode->i_mode) || S_ISDIR(inode->i_mode) ||
4186c4b5a614STheodore Ts'o 			    (S_ISLNK(inode->i_mode) &&
4187f19d5870STao Ma 			     !ext4_inode_is_fast_symlink(inode))))
41887a262f7cSAneesh Kumar K.V 				/* Validate extent which is part of inode */
41897a262f7cSAneesh Kumar K.V 				ret = ext4_ext_check_inode(inode);
4190fe2c8191SThiemo Nagel 		} else if (S_ISREG(inode->i_mode) || S_ISDIR(inode->i_mode) ||
4191fe2c8191SThiemo Nagel 			   (S_ISLNK(inode->i_mode) &&
4192fe2c8191SThiemo Nagel 			    !ext4_inode_is_fast_symlink(inode))) {
4193fe2c8191SThiemo Nagel 			/* Validate block references which are part of inode */
41941f7d1e77STheodore Ts'o 			ret = ext4_ind_check_inode(inode);
4195fe2c8191SThiemo Nagel 		}
4196f19d5870STao Ma 	}
4197567f3e9aSTheodore Ts'o 	if (ret)
41987a262f7cSAneesh Kumar K.V 		goto bad_inode;
41997a262f7cSAneesh Kumar K.V 
4200ac27a0ecSDave Kleikamp 	if (S_ISREG(inode->i_mode)) {
4201617ba13bSMingming Cao 		inode->i_op = &ext4_file_inode_operations;
4202923ae0ffSRoss Zwisler 		if (test_opt(inode->i_sb, DAX))
4203923ae0ffSRoss Zwisler 			inode->i_fop = &ext4_dax_file_operations;
4204923ae0ffSRoss Zwisler 		else
4205617ba13bSMingming Cao 			inode->i_fop = &ext4_file_operations;
4206617ba13bSMingming Cao 		ext4_set_aops(inode);
4207ac27a0ecSDave Kleikamp 	} else if (S_ISDIR(inode->i_mode)) {
4208617ba13bSMingming Cao 		inode->i_op = &ext4_dir_inode_operations;
4209617ba13bSMingming Cao 		inode->i_fop = &ext4_dir_operations;
4210ac27a0ecSDave Kleikamp 	} else if (S_ISLNK(inode->i_mode)) {
4211e83c1397SDuane Griffin 		if (ext4_inode_is_fast_symlink(inode)) {
4212617ba13bSMingming Cao 			inode->i_op = &ext4_fast_symlink_inode_operations;
4213e83c1397SDuane Griffin 			nd_terminate_link(ei->i_data, inode->i_size,
4214e83c1397SDuane Griffin 				sizeof(ei->i_data) - 1);
4215e83c1397SDuane Griffin 		} else {
4216617ba13bSMingming Cao 			inode->i_op = &ext4_symlink_inode_operations;
4217617ba13bSMingming Cao 			ext4_set_aops(inode);
4218ac27a0ecSDave Kleikamp 		}
4219563bdd61STheodore Ts'o 	} else if (S_ISCHR(inode->i_mode) || S_ISBLK(inode->i_mode) ||
4220563bdd61STheodore Ts'o 	      S_ISFIFO(inode->i_mode) || S_ISSOCK(inode->i_mode)) {
4221617ba13bSMingming Cao 		inode->i_op = &ext4_special_inode_operations;
4222ac27a0ecSDave Kleikamp 		if (raw_inode->i_block[0])
4223ac27a0ecSDave Kleikamp 			init_special_inode(inode, inode->i_mode,
4224ac27a0ecSDave Kleikamp 			   old_decode_dev(le32_to_cpu(raw_inode->i_block[0])));
4225ac27a0ecSDave Kleikamp 		else
4226ac27a0ecSDave Kleikamp 			init_special_inode(inode, inode->i_mode,
4227ac27a0ecSDave Kleikamp 			   new_decode_dev(le32_to_cpu(raw_inode->i_block[1])));
4228393d1d1dSDr. Tilmann Bubeck 	} else if (ino == EXT4_BOOT_LOADER_INO) {
4229393d1d1dSDr. Tilmann Bubeck 		make_bad_inode(inode);
4230563bdd61STheodore Ts'o 	} else {
4231563bdd61STheodore Ts'o 		ret = -EIO;
423224676da4STheodore Ts'o 		EXT4_ERROR_INODE(inode, "bogus i_mode (%o)", inode->i_mode);
4233563bdd61STheodore Ts'o 		goto bad_inode;
4234ac27a0ecSDave Kleikamp 	}
4235ac27a0ecSDave Kleikamp 	brelse(iloc.bh);
4236617ba13bSMingming Cao 	ext4_set_inode_flags(inode);
42371d1fe1eeSDavid Howells 	unlock_new_inode(inode);
42381d1fe1eeSDavid Howells 	return inode;
4239ac27a0ecSDave Kleikamp 
4240ac27a0ecSDave Kleikamp bad_inode:
4241567f3e9aSTheodore Ts'o 	brelse(iloc.bh);
42421d1fe1eeSDavid Howells 	iget_failed(inode);
42431d1fe1eeSDavid Howells 	return ERR_PTR(ret);
4244ac27a0ecSDave Kleikamp }
4245ac27a0ecSDave Kleikamp 
4246f4bb2981STheodore Ts'o struct inode *ext4_iget_normal(struct super_block *sb, unsigned long ino)
4247f4bb2981STheodore Ts'o {
4248f4bb2981STheodore Ts'o 	if (ino < EXT4_FIRST_INO(sb) && ino != EXT4_ROOT_INO)
4249f4bb2981STheodore Ts'o 		return ERR_PTR(-EIO);
4250f4bb2981STheodore Ts'o 	return ext4_iget(sb, ino);
4251f4bb2981STheodore Ts'o }
4252f4bb2981STheodore Ts'o 
42530fc1b451SAneesh Kumar K.V static int ext4_inode_blocks_set(handle_t *handle,
42540fc1b451SAneesh Kumar K.V 				struct ext4_inode *raw_inode,
42550fc1b451SAneesh Kumar K.V 				struct ext4_inode_info *ei)
42560fc1b451SAneesh Kumar K.V {
42570fc1b451SAneesh Kumar K.V 	struct inode *inode = &(ei->vfs_inode);
42580fc1b451SAneesh Kumar K.V 	u64 i_blocks = inode->i_blocks;
42590fc1b451SAneesh Kumar K.V 	struct super_block *sb = inode->i_sb;
42600fc1b451SAneesh Kumar K.V 
42610fc1b451SAneesh Kumar K.V 	if (i_blocks <= ~0U) {
42620fc1b451SAneesh Kumar K.V 		/*
42634907cb7bSAnatol Pomozov 		 * i_blocks can be represented in a 32 bit variable
42640fc1b451SAneesh Kumar K.V 		 * as multiple of 512 bytes
42650fc1b451SAneesh Kumar K.V 		 */
42668180a562SAneesh Kumar K.V 		raw_inode->i_blocks_lo   = cpu_to_le32(i_blocks);
42670fc1b451SAneesh Kumar K.V 		raw_inode->i_blocks_high = 0;
426884a8dce2SDmitry Monakhov 		ext4_clear_inode_flag(inode, EXT4_INODE_HUGE_FILE);
4269f287a1a5STheodore Ts'o 		return 0;
4270f287a1a5STheodore Ts'o 	}
4271f287a1a5STheodore Ts'o 	if (!EXT4_HAS_RO_COMPAT_FEATURE(sb, EXT4_FEATURE_RO_COMPAT_HUGE_FILE))
4272f287a1a5STheodore Ts'o 		return -EFBIG;
4273f287a1a5STheodore Ts'o 
4274f287a1a5STheodore Ts'o 	if (i_blocks <= 0xffffffffffffULL) {
42750fc1b451SAneesh Kumar K.V 		/*
42760fc1b451SAneesh Kumar K.V 		 * i_blocks can be represented in a 48 bit variable
42770fc1b451SAneesh Kumar K.V 		 * as multiple of 512 bytes
42780fc1b451SAneesh Kumar K.V 		 */
42798180a562SAneesh Kumar K.V 		raw_inode->i_blocks_lo   = cpu_to_le32(i_blocks);
42800fc1b451SAneesh Kumar K.V 		raw_inode->i_blocks_high = cpu_to_le16(i_blocks >> 32);
428184a8dce2SDmitry Monakhov 		ext4_clear_inode_flag(inode, EXT4_INODE_HUGE_FILE);
42820fc1b451SAneesh Kumar K.V 	} else {
428384a8dce2SDmitry Monakhov 		ext4_set_inode_flag(inode, EXT4_INODE_HUGE_FILE);
42848180a562SAneesh Kumar K.V 		/* i_block is stored in file system block size */
42858180a562SAneesh Kumar K.V 		i_blocks = i_blocks >> (inode->i_blkbits - 9);
42868180a562SAneesh Kumar K.V 		raw_inode->i_blocks_lo   = cpu_to_le32(i_blocks);
42878180a562SAneesh Kumar K.V 		raw_inode->i_blocks_high = cpu_to_le16(i_blocks >> 32);
42880fc1b451SAneesh Kumar K.V 	}
4289f287a1a5STheodore Ts'o 	return 0;
42900fc1b451SAneesh Kumar K.V }
42910fc1b451SAneesh Kumar K.V 
4292a26f4992STheodore Ts'o struct other_inode {
4293a26f4992STheodore Ts'o 	unsigned long		orig_ino;
4294a26f4992STheodore Ts'o 	struct ext4_inode	*raw_inode;
4295a26f4992STheodore Ts'o };
4296a26f4992STheodore Ts'o 
4297a26f4992STheodore Ts'o static int other_inode_match(struct inode * inode, unsigned long ino,
4298a26f4992STheodore Ts'o 			     void *data)
4299a26f4992STheodore Ts'o {
4300a26f4992STheodore Ts'o 	struct other_inode *oi = (struct other_inode *) data;
4301a26f4992STheodore Ts'o 
4302a26f4992STheodore Ts'o 	if ((inode->i_ino != ino) ||
4303a26f4992STheodore Ts'o 	    (inode->i_state & (I_FREEING | I_WILL_FREE | I_NEW |
4304a26f4992STheodore Ts'o 			       I_DIRTY_SYNC | I_DIRTY_DATASYNC)) ||
4305a26f4992STheodore Ts'o 	    ((inode->i_state & I_DIRTY_TIME) == 0))
4306a26f4992STheodore Ts'o 		return 0;
4307a26f4992STheodore Ts'o 	spin_lock(&inode->i_lock);
4308a26f4992STheodore Ts'o 	if (((inode->i_state & (I_FREEING | I_WILL_FREE | I_NEW |
4309a26f4992STheodore Ts'o 				I_DIRTY_SYNC | I_DIRTY_DATASYNC)) == 0) &&
4310a26f4992STheodore Ts'o 	    (inode->i_state & I_DIRTY_TIME)) {
4311a26f4992STheodore Ts'o 		struct ext4_inode_info	*ei = EXT4_I(inode);
4312a26f4992STheodore Ts'o 
4313a26f4992STheodore Ts'o 		inode->i_state &= ~(I_DIRTY_TIME | I_DIRTY_TIME_EXPIRED);
4314a26f4992STheodore Ts'o 		spin_unlock(&inode->i_lock);
4315a26f4992STheodore Ts'o 
4316a26f4992STheodore Ts'o 		spin_lock(&ei->i_raw_lock);
4317a26f4992STheodore Ts'o 		EXT4_INODE_SET_XTIME(i_ctime, inode, oi->raw_inode);
4318a26f4992STheodore Ts'o 		EXT4_INODE_SET_XTIME(i_mtime, inode, oi->raw_inode);
4319a26f4992STheodore Ts'o 		EXT4_INODE_SET_XTIME(i_atime, inode, oi->raw_inode);
4320a26f4992STheodore Ts'o 		ext4_inode_csum_set(inode, oi->raw_inode, ei);
4321a26f4992STheodore Ts'o 		spin_unlock(&ei->i_raw_lock);
4322a26f4992STheodore Ts'o 		trace_ext4_other_inode_update_time(inode, oi->orig_ino);
4323a26f4992STheodore Ts'o 		return -1;
4324a26f4992STheodore Ts'o 	}
4325a26f4992STheodore Ts'o 	spin_unlock(&inode->i_lock);
4326a26f4992STheodore Ts'o 	return -1;
4327a26f4992STheodore Ts'o }
4328a26f4992STheodore Ts'o 
4329a26f4992STheodore Ts'o /*
4330a26f4992STheodore Ts'o  * Opportunistically update the other time fields for other inodes in
4331a26f4992STheodore Ts'o  * the same inode table block.
4332a26f4992STheodore Ts'o  */
4333a26f4992STheodore Ts'o static void ext4_update_other_inodes_time(struct super_block *sb,
4334a26f4992STheodore Ts'o 					  unsigned long orig_ino, char *buf)
4335a26f4992STheodore Ts'o {
4336a26f4992STheodore Ts'o 	struct other_inode oi;
4337a26f4992STheodore Ts'o 	unsigned long ino;
4338a26f4992STheodore Ts'o 	int i, inodes_per_block = EXT4_SB(sb)->s_inodes_per_block;
4339a26f4992STheodore Ts'o 	int inode_size = EXT4_INODE_SIZE(sb);
4340a26f4992STheodore Ts'o 
4341a26f4992STheodore Ts'o 	oi.orig_ino = orig_ino;
4342a26f4992STheodore Ts'o 	ino = orig_ino & ~(inodes_per_block - 1);
4343a26f4992STheodore Ts'o 	for (i = 0; i < inodes_per_block; i++, ino++, buf += inode_size) {
4344a26f4992STheodore Ts'o 		if (ino == orig_ino)
4345a26f4992STheodore Ts'o 			continue;
4346a26f4992STheodore Ts'o 		oi.raw_inode = (struct ext4_inode *) buf;
4347a26f4992STheodore Ts'o 		(void) find_inode_nowait(sb, ino, other_inode_match, &oi);
4348a26f4992STheodore Ts'o 	}
4349a26f4992STheodore Ts'o }
4350a26f4992STheodore Ts'o 
4351ac27a0ecSDave Kleikamp /*
4352ac27a0ecSDave Kleikamp  * Post the struct inode info into an on-disk inode location in the
4353ac27a0ecSDave Kleikamp  * buffer-cache.  This gobbles the caller's reference to the
4354ac27a0ecSDave Kleikamp  * buffer_head in the inode location struct.
4355ac27a0ecSDave Kleikamp  *
4356ac27a0ecSDave Kleikamp  * The caller must have write access to iloc->bh.
4357ac27a0ecSDave Kleikamp  */
4358617ba13bSMingming Cao static int ext4_do_update_inode(handle_t *handle,
4359ac27a0ecSDave Kleikamp 				struct inode *inode,
4360830156c7SFrank Mayhar 				struct ext4_iloc *iloc)
4361ac27a0ecSDave Kleikamp {
4362617ba13bSMingming Cao 	struct ext4_inode *raw_inode = ext4_raw_inode(iloc);
4363617ba13bSMingming Cao 	struct ext4_inode_info *ei = EXT4_I(inode);
4364ac27a0ecSDave Kleikamp 	struct buffer_head *bh = iloc->bh;
4365202ee5dfSTheodore Ts'o 	struct super_block *sb = inode->i_sb;
4366ac27a0ecSDave Kleikamp 	int err = 0, rc, block;
4367202ee5dfSTheodore Ts'o 	int need_datasync = 0, set_large_file = 0;
436808cefc7aSEric W. Biederman 	uid_t i_uid;
436908cefc7aSEric W. Biederman 	gid_t i_gid;
4370ac27a0ecSDave Kleikamp 
4371202ee5dfSTheodore Ts'o 	spin_lock(&ei->i_raw_lock);
4372202ee5dfSTheodore Ts'o 
4373202ee5dfSTheodore Ts'o 	/* For fields not tracked in the in-memory inode,
4374ac27a0ecSDave Kleikamp 	 * initialise them to zero for new inodes. */
437519f5fb7aSTheodore Ts'o 	if (ext4_test_inode_state(inode, EXT4_STATE_NEW))
4376617ba13bSMingming Cao 		memset(raw_inode, 0, EXT4_SB(inode->i_sb)->s_inode_size);
4377ac27a0ecSDave Kleikamp 
4378ff9ddf7eSJan Kara 	ext4_get_inode_flags(ei);
4379ac27a0ecSDave Kleikamp 	raw_inode->i_mode = cpu_to_le16(inode->i_mode);
438008cefc7aSEric W. Biederman 	i_uid = i_uid_read(inode);
438108cefc7aSEric W. Biederman 	i_gid = i_gid_read(inode);
4382ac27a0ecSDave Kleikamp 	if (!(test_opt(inode->i_sb, NO_UID32))) {
438308cefc7aSEric W. Biederman 		raw_inode->i_uid_low = cpu_to_le16(low_16_bits(i_uid));
438408cefc7aSEric W. Biederman 		raw_inode->i_gid_low = cpu_to_le16(low_16_bits(i_gid));
4385ac27a0ecSDave Kleikamp /*
4386ac27a0ecSDave Kleikamp  * Fix up interoperability with old kernels. Otherwise, old inodes get
4387ac27a0ecSDave Kleikamp  * re-used with the upper 16 bits of the uid/gid intact
4388ac27a0ecSDave Kleikamp  */
4389ac27a0ecSDave Kleikamp 		if (!ei->i_dtime) {
4390ac27a0ecSDave Kleikamp 			raw_inode->i_uid_high =
439108cefc7aSEric W. Biederman 				cpu_to_le16(high_16_bits(i_uid));
4392ac27a0ecSDave Kleikamp 			raw_inode->i_gid_high =
439308cefc7aSEric W. Biederman 				cpu_to_le16(high_16_bits(i_gid));
4394ac27a0ecSDave Kleikamp 		} else {
4395ac27a0ecSDave Kleikamp 			raw_inode->i_uid_high = 0;
4396ac27a0ecSDave Kleikamp 			raw_inode->i_gid_high = 0;
4397ac27a0ecSDave Kleikamp 		}
4398ac27a0ecSDave Kleikamp 	} else {
439908cefc7aSEric W. Biederman 		raw_inode->i_uid_low = cpu_to_le16(fs_high2lowuid(i_uid));
440008cefc7aSEric W. Biederman 		raw_inode->i_gid_low = cpu_to_le16(fs_high2lowgid(i_gid));
4401ac27a0ecSDave Kleikamp 		raw_inode->i_uid_high = 0;
4402ac27a0ecSDave Kleikamp 		raw_inode->i_gid_high = 0;
4403ac27a0ecSDave Kleikamp 	}
4404ac27a0ecSDave Kleikamp 	raw_inode->i_links_count = cpu_to_le16(inode->i_nlink);
4405ef7f3835SKalpak Shah 
4406ef7f3835SKalpak Shah 	EXT4_INODE_SET_XTIME(i_ctime, inode, raw_inode);
4407ef7f3835SKalpak Shah 	EXT4_INODE_SET_XTIME(i_mtime, inode, raw_inode);
4408ef7f3835SKalpak Shah 	EXT4_INODE_SET_XTIME(i_atime, inode, raw_inode);
4409ef7f3835SKalpak Shah 	EXT4_EINODE_SET_XTIME(i_crtime, ei, raw_inode);
4410ef7f3835SKalpak Shah 
4411bce92d56SLi Xi 	err = ext4_inode_blocks_set(handle, raw_inode, ei);
4412bce92d56SLi Xi 	if (err) {
4413202ee5dfSTheodore Ts'o 		spin_unlock(&ei->i_raw_lock);
44140fc1b451SAneesh Kumar K.V 		goto out_brelse;
4415202ee5dfSTheodore Ts'o 	}
4416ac27a0ecSDave Kleikamp 	raw_inode->i_dtime = cpu_to_le32(ei->i_dtime);
4417353eb83cSTheodore Ts'o 	raw_inode->i_flags = cpu_to_le32(ei->i_flags & 0xFFFFFFFF);
4418ed3654ebSTheodore Ts'o 	if (likely(!test_opt2(inode->i_sb, HURD_COMPAT)))
4419a1ddeb7eSBadari Pulavarty 		raw_inode->i_file_acl_high =
4420a1ddeb7eSBadari Pulavarty 			cpu_to_le16(ei->i_file_acl >> 32);
44217973c0c1SAneesh Kumar K.V 	raw_inode->i_file_acl_lo = cpu_to_le32(ei->i_file_acl);
4422b71fc079SJan Kara 	if (ei->i_disksize != ext4_isize(raw_inode)) {
4423a48380f7SAneesh Kumar K.V 		ext4_isize_set(raw_inode, ei->i_disksize);
4424b71fc079SJan Kara 		need_datasync = 1;
4425b71fc079SJan Kara 	}
4426ac27a0ecSDave Kleikamp 	if (ei->i_disksize > 0x7fffffffULL) {
4427617ba13bSMingming Cao 		if (!EXT4_HAS_RO_COMPAT_FEATURE(sb,
4428617ba13bSMingming Cao 				EXT4_FEATURE_RO_COMPAT_LARGE_FILE) ||
4429617ba13bSMingming Cao 				EXT4_SB(sb)->s_es->s_rev_level ==
4430202ee5dfSTheodore Ts'o 		    cpu_to_le32(EXT4_GOOD_OLD_REV))
4431202ee5dfSTheodore Ts'o 			set_large_file = 1;
4432ac27a0ecSDave Kleikamp 	}
4433ac27a0ecSDave Kleikamp 	raw_inode->i_generation = cpu_to_le32(inode->i_generation);
4434ac27a0ecSDave Kleikamp 	if (S_ISCHR(inode->i_mode) || S_ISBLK(inode->i_mode)) {
4435ac27a0ecSDave Kleikamp 		if (old_valid_dev(inode->i_rdev)) {
4436ac27a0ecSDave Kleikamp 			raw_inode->i_block[0] =
4437ac27a0ecSDave Kleikamp 				cpu_to_le32(old_encode_dev(inode->i_rdev));
4438ac27a0ecSDave Kleikamp 			raw_inode->i_block[1] = 0;
4439ac27a0ecSDave Kleikamp 		} else {
4440ac27a0ecSDave Kleikamp 			raw_inode->i_block[0] = 0;
4441ac27a0ecSDave Kleikamp 			raw_inode->i_block[1] =
4442ac27a0ecSDave Kleikamp 				cpu_to_le32(new_encode_dev(inode->i_rdev));
4443ac27a0ecSDave Kleikamp 			raw_inode->i_block[2] = 0;
4444ac27a0ecSDave Kleikamp 		}
4445f19d5870STao Ma 	} else if (!ext4_has_inline_data(inode)) {
4446de9a55b8STheodore Ts'o 		for (block = 0; block < EXT4_N_BLOCKS; block++)
4447ac27a0ecSDave Kleikamp 			raw_inode->i_block[block] = ei->i_data[block];
4448f19d5870STao Ma 	}
4449ac27a0ecSDave Kleikamp 
4450ed3654ebSTheodore Ts'o 	if (likely(!test_opt2(inode->i_sb, HURD_COMPAT))) {
445125ec56b5SJean Noel Cordenner 		raw_inode->i_disk_version = cpu_to_le32(inode->i_version);
445225ec56b5SJean Noel Cordenner 		if (ei->i_extra_isize) {
445325ec56b5SJean Noel Cordenner 			if (EXT4_FITS_IN_INODE(raw_inode, ei, i_version_hi))
445425ec56b5SJean Noel Cordenner 				raw_inode->i_version_hi =
445525ec56b5SJean Noel Cordenner 					cpu_to_le32(inode->i_version >> 32);
4456c4f65706STheodore Ts'o 			raw_inode->i_extra_isize =
4457c4f65706STheodore Ts'o 				cpu_to_le16(ei->i_extra_isize);
4458c4f65706STheodore Ts'o 		}
445925ec56b5SJean Noel Cordenner 	}
4460814525f4SDarrick J. Wong 	ext4_inode_csum_set(inode, raw_inode, ei);
4461202ee5dfSTheodore Ts'o 	spin_unlock(&ei->i_raw_lock);
4462a26f4992STheodore Ts'o 	if (inode->i_sb->s_flags & MS_LAZYTIME)
4463a26f4992STheodore Ts'o 		ext4_update_other_inodes_time(inode->i_sb, inode->i_ino,
4464a26f4992STheodore Ts'o 					      bh->b_data);
4465202ee5dfSTheodore Ts'o 
44660390131bSFrank Mayhar 	BUFFER_TRACE(bh, "call ext4_handle_dirty_metadata");
446773b50c1cSCurt Wohlgemuth 	rc = ext4_handle_dirty_metadata(handle, NULL, bh);
4468ac27a0ecSDave Kleikamp 	if (!err)
4469ac27a0ecSDave Kleikamp 		err = rc;
447019f5fb7aSTheodore Ts'o 	ext4_clear_inode_state(inode, EXT4_STATE_NEW);
4471202ee5dfSTheodore Ts'o 	if (set_large_file) {
44725d601255Sliang xie 		BUFFER_TRACE(EXT4_SB(sb)->s_sbh, "get write access");
4473202ee5dfSTheodore Ts'o 		err = ext4_journal_get_write_access(handle, EXT4_SB(sb)->s_sbh);
4474202ee5dfSTheodore Ts'o 		if (err)
4475202ee5dfSTheodore Ts'o 			goto out_brelse;
4476202ee5dfSTheodore Ts'o 		ext4_update_dynamic_rev(sb);
4477202ee5dfSTheodore Ts'o 		EXT4_SET_RO_COMPAT_FEATURE(sb,
4478202ee5dfSTheodore Ts'o 					   EXT4_FEATURE_RO_COMPAT_LARGE_FILE);
4479202ee5dfSTheodore Ts'o 		ext4_handle_sync(handle);
4480202ee5dfSTheodore Ts'o 		err = ext4_handle_dirty_super(handle, sb);
4481202ee5dfSTheodore Ts'o 	}
4482b71fc079SJan Kara 	ext4_update_inode_fsync_trans(handle, inode, need_datasync);
4483ac27a0ecSDave Kleikamp out_brelse:
4484ac27a0ecSDave Kleikamp 	brelse(bh);
4485617ba13bSMingming Cao 	ext4_std_error(inode->i_sb, err);
4486ac27a0ecSDave Kleikamp 	return err;
4487ac27a0ecSDave Kleikamp }
4488ac27a0ecSDave Kleikamp 
4489ac27a0ecSDave Kleikamp /*
4490617ba13bSMingming Cao  * ext4_write_inode()
4491ac27a0ecSDave Kleikamp  *
4492ac27a0ecSDave Kleikamp  * We are called from a few places:
4493ac27a0ecSDave Kleikamp  *
449487f7e416STheodore Ts'o  * - Within generic_file_aio_write() -> generic_write_sync() for O_SYNC files.
4495ac27a0ecSDave Kleikamp  *   Here, there will be no transaction running. We wait for any running
44964907cb7bSAnatol Pomozov  *   transaction to commit.
4497ac27a0ecSDave Kleikamp  *
449887f7e416STheodore Ts'o  * - Within flush work (sys_sync(), kupdate and such).
449987f7e416STheodore Ts'o  *   We wait on commit, if told to.
4500ac27a0ecSDave Kleikamp  *
450187f7e416STheodore Ts'o  * - Within iput_final() -> write_inode_now()
450287f7e416STheodore Ts'o  *   We wait on commit, if told to.
4503ac27a0ecSDave Kleikamp  *
4504ac27a0ecSDave Kleikamp  * In all cases it is actually safe for us to return without doing anything,
4505ac27a0ecSDave Kleikamp  * because the inode has been copied into a raw inode buffer in
450687f7e416STheodore Ts'o  * ext4_mark_inode_dirty().  This is a correctness thing for WB_SYNC_ALL
450787f7e416STheodore Ts'o  * writeback.
4508ac27a0ecSDave Kleikamp  *
4509ac27a0ecSDave Kleikamp  * Note that we are absolutely dependent upon all inode dirtiers doing the
4510ac27a0ecSDave Kleikamp  * right thing: they *must* call mark_inode_dirty() after dirtying info in
4511ac27a0ecSDave Kleikamp  * which we are interested.
4512ac27a0ecSDave Kleikamp  *
4513ac27a0ecSDave Kleikamp  * It would be a bug for them to not do this.  The code:
4514ac27a0ecSDave Kleikamp  *
4515ac27a0ecSDave Kleikamp  *	mark_inode_dirty(inode)
4516ac27a0ecSDave Kleikamp  *	stuff();
4517ac27a0ecSDave Kleikamp  *	inode->i_size = expr;
4518ac27a0ecSDave Kleikamp  *
451987f7e416STheodore Ts'o  * is in error because write_inode() could occur while `stuff()' is running,
452087f7e416STheodore Ts'o  * and the new i_size will be lost.  Plus the inode will no longer be on the
452187f7e416STheodore Ts'o  * superblock's dirty inode list.
4522ac27a0ecSDave Kleikamp  */
4523a9185b41SChristoph Hellwig int ext4_write_inode(struct inode *inode, struct writeback_control *wbc)
4524ac27a0ecSDave Kleikamp {
452591ac6f43SFrank Mayhar 	int err;
452691ac6f43SFrank Mayhar 
452787f7e416STheodore Ts'o 	if (WARN_ON_ONCE(current->flags & PF_MEMALLOC))
4528ac27a0ecSDave Kleikamp 		return 0;
4529ac27a0ecSDave Kleikamp 
453091ac6f43SFrank Mayhar 	if (EXT4_SB(inode->i_sb)->s_journal) {
4531617ba13bSMingming Cao 		if (ext4_journal_current_handle()) {
4532b38bd33aSMingming Cao 			jbd_debug(1, "called recursively, non-PF_MEMALLOC!\n");
4533ac27a0ecSDave Kleikamp 			dump_stack();
4534ac27a0ecSDave Kleikamp 			return -EIO;
4535ac27a0ecSDave Kleikamp 		}
4536ac27a0ecSDave Kleikamp 
453710542c22SJan Kara 		/*
453810542c22SJan Kara 		 * No need to force transaction in WB_SYNC_NONE mode. Also
453910542c22SJan Kara 		 * ext4_sync_fs() will force the commit after everything is
454010542c22SJan Kara 		 * written.
454110542c22SJan Kara 		 */
454210542c22SJan Kara 		if (wbc->sync_mode != WB_SYNC_ALL || wbc->for_sync)
4543ac27a0ecSDave Kleikamp 			return 0;
4544ac27a0ecSDave Kleikamp 
454591ac6f43SFrank Mayhar 		err = ext4_force_commit(inode->i_sb);
454691ac6f43SFrank Mayhar 	} else {
454791ac6f43SFrank Mayhar 		struct ext4_iloc iloc;
454891ac6f43SFrank Mayhar 
45498b472d73SCurt Wohlgemuth 		err = __ext4_get_inode_loc(inode, &iloc, 0);
455091ac6f43SFrank Mayhar 		if (err)
455191ac6f43SFrank Mayhar 			return err;
455210542c22SJan Kara 		/*
455310542c22SJan Kara 		 * sync(2) will flush the whole buffer cache. No need to do
455410542c22SJan Kara 		 * it here separately for each inode.
455510542c22SJan Kara 		 */
455610542c22SJan Kara 		if (wbc->sync_mode == WB_SYNC_ALL && !wbc->for_sync)
4557830156c7SFrank Mayhar 			sync_dirty_buffer(iloc.bh);
4558830156c7SFrank Mayhar 		if (buffer_req(iloc.bh) && !buffer_uptodate(iloc.bh)) {
4559c398eda0STheodore Ts'o 			EXT4_ERROR_INODE_BLOCK(inode, iloc.bh->b_blocknr,
4560c398eda0STheodore Ts'o 					 "IO error syncing inode");
4561830156c7SFrank Mayhar 			err = -EIO;
4562830156c7SFrank Mayhar 		}
4563fd2dd9fbSCurt Wohlgemuth 		brelse(iloc.bh);
456491ac6f43SFrank Mayhar 	}
456591ac6f43SFrank Mayhar 	return err;
4566ac27a0ecSDave Kleikamp }
4567ac27a0ecSDave Kleikamp 
4568ac27a0ecSDave Kleikamp /*
456953e87268SJan Kara  * In data=journal mode ext4_journalled_invalidatepage() may fail to invalidate
457053e87268SJan Kara  * buffers that are attached to a page stradding i_size and are undergoing
457153e87268SJan Kara  * commit. In that case we have to wait for commit to finish and try again.
457253e87268SJan Kara  */
457353e87268SJan Kara static void ext4_wait_for_tail_page_commit(struct inode *inode)
457453e87268SJan Kara {
457553e87268SJan Kara 	struct page *page;
457653e87268SJan Kara 	unsigned offset;
457753e87268SJan Kara 	journal_t *journal = EXT4_SB(inode->i_sb)->s_journal;
457853e87268SJan Kara 	tid_t commit_tid = 0;
457953e87268SJan Kara 	int ret;
458053e87268SJan Kara 
458153e87268SJan Kara 	offset = inode->i_size & (PAGE_CACHE_SIZE - 1);
458253e87268SJan Kara 	/*
458353e87268SJan Kara 	 * All buffers in the last page remain valid? Then there's nothing to
458453e87268SJan Kara 	 * do. We do the check mainly to optimize the common PAGE_CACHE_SIZE ==
458553e87268SJan Kara 	 * blocksize case
458653e87268SJan Kara 	 */
458753e87268SJan Kara 	if (offset > PAGE_CACHE_SIZE - (1 << inode->i_blkbits))
458853e87268SJan Kara 		return;
458953e87268SJan Kara 	while (1) {
459053e87268SJan Kara 		page = find_lock_page(inode->i_mapping,
459153e87268SJan Kara 				      inode->i_size >> PAGE_CACHE_SHIFT);
459253e87268SJan Kara 		if (!page)
459353e87268SJan Kara 			return;
4594ca99fdd2SLukas Czerner 		ret = __ext4_journalled_invalidatepage(page, offset,
4595ca99fdd2SLukas Czerner 						PAGE_CACHE_SIZE - offset);
459653e87268SJan Kara 		unlock_page(page);
459753e87268SJan Kara 		page_cache_release(page);
459853e87268SJan Kara 		if (ret != -EBUSY)
459953e87268SJan Kara 			return;
460053e87268SJan Kara 		commit_tid = 0;
460153e87268SJan Kara 		read_lock(&journal->j_state_lock);
460253e87268SJan Kara 		if (journal->j_committing_transaction)
460353e87268SJan Kara 			commit_tid = journal->j_committing_transaction->t_tid;
460453e87268SJan Kara 		read_unlock(&journal->j_state_lock);
460553e87268SJan Kara 		if (commit_tid)
460653e87268SJan Kara 			jbd2_log_wait_commit(journal, commit_tid);
460753e87268SJan Kara 	}
460853e87268SJan Kara }
460953e87268SJan Kara 
461053e87268SJan Kara /*
4611617ba13bSMingming Cao  * ext4_setattr()
4612ac27a0ecSDave Kleikamp  *
4613ac27a0ecSDave Kleikamp  * Called from notify_change.
4614ac27a0ecSDave Kleikamp  *
4615ac27a0ecSDave Kleikamp  * We want to trap VFS attempts to truncate the file as soon as
4616ac27a0ecSDave Kleikamp  * possible.  In particular, we want to make sure that when the VFS
4617ac27a0ecSDave Kleikamp  * shrinks i_size, we put the inode on the orphan list and modify
4618ac27a0ecSDave Kleikamp  * i_disksize immediately, so that during the subsequent flushing of
4619ac27a0ecSDave Kleikamp  * dirty pages and freeing of disk blocks, we can guarantee that any
4620ac27a0ecSDave Kleikamp  * commit will leave the blocks being flushed in an unused state on
4621ac27a0ecSDave Kleikamp  * disk.  (On recovery, the inode will get truncated and the blocks will
4622ac27a0ecSDave Kleikamp  * be freed, so we have a strong guarantee that no future commit will
4623ac27a0ecSDave Kleikamp  * leave these blocks visible to the user.)
4624ac27a0ecSDave Kleikamp  *
4625678aaf48SJan Kara  * Another thing we have to assure is that if we are in ordered mode
4626678aaf48SJan Kara  * and inode is still attached to the committing transaction, we must
4627678aaf48SJan Kara  * we start writeout of all the dirty pages which are being truncated.
4628678aaf48SJan Kara  * This way we are sure that all the data written in the previous
4629678aaf48SJan Kara  * transaction are already on disk (truncate waits for pages under
4630678aaf48SJan Kara  * writeback).
4631678aaf48SJan Kara  *
4632678aaf48SJan Kara  * Called with inode->i_mutex down.
4633ac27a0ecSDave Kleikamp  */
4634617ba13bSMingming Cao int ext4_setattr(struct dentry *dentry, struct iattr *attr)
4635ac27a0ecSDave Kleikamp {
4636ac27a0ecSDave Kleikamp 	struct inode *inode = dentry->d_inode;
4637ac27a0ecSDave Kleikamp 	int error, rc = 0;
46383d287de3SDmitry Monakhov 	int orphan = 0;
4639ac27a0ecSDave Kleikamp 	const unsigned int ia_valid = attr->ia_valid;
4640ac27a0ecSDave Kleikamp 
4641ac27a0ecSDave Kleikamp 	error = inode_change_ok(inode, attr);
4642ac27a0ecSDave Kleikamp 	if (error)
4643ac27a0ecSDave Kleikamp 		return error;
4644ac27a0ecSDave Kleikamp 
464512755627SDmitry Monakhov 	if (is_quota_modification(inode, attr))
4646871a2931SChristoph Hellwig 		dquot_initialize(inode);
464708cefc7aSEric W. Biederman 	if ((ia_valid & ATTR_UID && !uid_eq(attr->ia_uid, inode->i_uid)) ||
464808cefc7aSEric W. Biederman 	    (ia_valid & ATTR_GID && !gid_eq(attr->ia_gid, inode->i_gid))) {
4649ac27a0ecSDave Kleikamp 		handle_t *handle;
4650ac27a0ecSDave Kleikamp 
4651ac27a0ecSDave Kleikamp 		/* (user+group)*(old+new) structure, inode write (sb,
4652ac27a0ecSDave Kleikamp 		 * inode block, ? - but truncate inode update has it) */
46539924a92aSTheodore Ts'o 		handle = ext4_journal_start(inode, EXT4_HT_QUOTA,
46549924a92aSTheodore Ts'o 			(EXT4_MAXQUOTAS_INIT_BLOCKS(inode->i_sb) +
4655194074acSDmitry Monakhov 			 EXT4_MAXQUOTAS_DEL_BLOCKS(inode->i_sb)) + 3);
4656ac27a0ecSDave Kleikamp 		if (IS_ERR(handle)) {
4657ac27a0ecSDave Kleikamp 			error = PTR_ERR(handle);
4658ac27a0ecSDave Kleikamp 			goto err_out;
4659ac27a0ecSDave Kleikamp 		}
4660b43fa828SChristoph Hellwig 		error = dquot_transfer(inode, attr);
4661ac27a0ecSDave Kleikamp 		if (error) {
4662617ba13bSMingming Cao 			ext4_journal_stop(handle);
4663ac27a0ecSDave Kleikamp 			return error;
4664ac27a0ecSDave Kleikamp 		}
4665ac27a0ecSDave Kleikamp 		/* Update corresponding info in inode so that everything is in
4666ac27a0ecSDave Kleikamp 		 * one transaction */
4667ac27a0ecSDave Kleikamp 		if (attr->ia_valid & ATTR_UID)
4668ac27a0ecSDave Kleikamp 			inode->i_uid = attr->ia_uid;
4669ac27a0ecSDave Kleikamp 		if (attr->ia_valid & ATTR_GID)
4670ac27a0ecSDave Kleikamp 			inode->i_gid = attr->ia_gid;
4671617ba13bSMingming Cao 		error = ext4_mark_inode_dirty(handle, inode);
4672617ba13bSMingming Cao 		ext4_journal_stop(handle);
4673ac27a0ecSDave Kleikamp 	}
4674ac27a0ecSDave Kleikamp 
46755208386cSJan Kara 	if (attr->ia_valid & ATTR_SIZE && attr->ia_size != inode->i_size) {
46765208386cSJan Kara 		handle_t *handle;
4677562c72aaSChristoph Hellwig 
467812e9b892SDmitry Monakhov 		if (!(ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS))) {
4679e2b46574SEric Sandeen 			struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb);
4680e2b46574SEric Sandeen 
46810c095c7fSTheodore Ts'o 			if (attr->ia_size > sbi->s_bitmap_maxbytes)
46820c095c7fSTheodore Ts'o 				return -EFBIG;
4683e2b46574SEric Sandeen 		}
4684dff6efc3SChristoph Hellwig 
4685dff6efc3SChristoph Hellwig 		if (IS_I_VERSION(inode) && attr->ia_size != inode->i_size)
4686dff6efc3SChristoph Hellwig 			inode_inc_iversion(inode);
4687dff6efc3SChristoph Hellwig 
4688ac27a0ecSDave Kleikamp 		if (S_ISREG(inode->i_mode) &&
4689072bd7eaSTheodore Ts'o 		    (attr->ia_size < inode->i_size)) {
46905208386cSJan Kara 			if (ext4_should_order_data(inode)) {
46915208386cSJan Kara 				error = ext4_begin_ordered_truncate(inode,
46925208386cSJan Kara 							    attr->ia_size);
46935208386cSJan Kara 				if (error)
46945208386cSJan Kara 					goto err_out;
46955208386cSJan Kara 			}
46969924a92aSTheodore Ts'o 			handle = ext4_journal_start(inode, EXT4_HT_INODE, 3);
4697ac27a0ecSDave Kleikamp 			if (IS_ERR(handle)) {
4698ac27a0ecSDave Kleikamp 				error = PTR_ERR(handle);
4699ac27a0ecSDave Kleikamp 				goto err_out;
4700ac27a0ecSDave Kleikamp 			}
47013d287de3SDmitry Monakhov 			if (ext4_handle_valid(handle)) {
4702617ba13bSMingming Cao 				error = ext4_orphan_add(handle, inode);
47033d287de3SDmitry Monakhov 				orphan = 1;
47043d287de3SDmitry Monakhov 			}
470590e775b7SJan Kara 			down_write(&EXT4_I(inode)->i_data_sem);
4706617ba13bSMingming Cao 			EXT4_I(inode)->i_disksize = attr->ia_size;
4707617ba13bSMingming Cao 			rc = ext4_mark_inode_dirty(handle, inode);
4708ac27a0ecSDave Kleikamp 			if (!error)
4709ac27a0ecSDave Kleikamp 				error = rc;
471090e775b7SJan Kara 			/*
471190e775b7SJan Kara 			 * We have to update i_size under i_data_sem together
471290e775b7SJan Kara 			 * with i_disksize to avoid races with writeback code
471390e775b7SJan Kara 			 * running ext4_wb_update_i_disksize().
471490e775b7SJan Kara 			 */
471590e775b7SJan Kara 			if (!error)
471690e775b7SJan Kara 				i_size_write(inode, attr->ia_size);
471790e775b7SJan Kara 			up_write(&EXT4_I(inode)->i_data_sem);
4718617ba13bSMingming Cao 			ext4_journal_stop(handle);
4719678aaf48SJan Kara 			if (error) {
4720678aaf48SJan Kara 				ext4_orphan_del(NULL, inode);
4721678aaf48SJan Kara 				goto err_out;
4722678aaf48SJan Kara 			}
4723d6320cbfSJan Kara 		} else {
4724d6320cbfSJan Kara 			loff_t oldsize = inode->i_size;
4725d6320cbfSJan Kara 
472653e87268SJan Kara 			i_size_write(inode, attr->ia_size);
4727d6320cbfSJan Kara 			pagecache_isize_extended(inode, oldsize, inode->i_size);
4728d6320cbfSJan Kara 		}
472990e775b7SJan Kara 
473053e87268SJan Kara 		/*
473153e87268SJan Kara 		 * Blocks are going to be removed from the inode. Wait
473253e87268SJan Kara 		 * for dio in flight.  Temporarily disable
473353e87268SJan Kara 		 * dioread_nolock to prevent livelock.
473453e87268SJan Kara 		 */
47351b65007eSDmitry Monakhov 		if (orphan) {
473653e87268SJan Kara 			if (!ext4_should_journal_data(inode)) {
47371b65007eSDmitry Monakhov 				ext4_inode_block_unlocked_dio(inode);
47381c9114f9SDmitry Monakhov 				inode_dio_wait(inode);
47391b65007eSDmitry Monakhov 				ext4_inode_resume_unlocked_dio(inode);
474053e87268SJan Kara 			} else
474153e87268SJan Kara 				ext4_wait_for_tail_page_commit(inode);
47421b65007eSDmitry Monakhov 		}
474353e87268SJan Kara 		/*
474453e87268SJan Kara 		 * Truncate pagecache after we've waited for commit
474553e87268SJan Kara 		 * in data=journal mode to make pages freeable.
474653e87268SJan Kara 		 */
47477caef267SKirill A. Shutemov 		truncate_pagecache(inode, inode->i_size);
47481c9114f9SDmitry Monakhov 	}
47495208386cSJan Kara 	/*
47505208386cSJan Kara 	 * We want to call ext4_truncate() even if attr->ia_size ==
47515208386cSJan Kara 	 * inode->i_size for cases like truncation of fallocated space
47525208386cSJan Kara 	 */
47535208386cSJan Kara 	if (attr->ia_valid & ATTR_SIZE)
4754072bd7eaSTheodore Ts'o 		ext4_truncate(inode);
4755ac27a0ecSDave Kleikamp 
47561025774cSChristoph Hellwig 	if (!rc) {
47571025774cSChristoph Hellwig 		setattr_copy(inode, attr);
47581025774cSChristoph Hellwig 		mark_inode_dirty(inode);
47591025774cSChristoph Hellwig 	}
47601025774cSChristoph Hellwig 
47611025774cSChristoph Hellwig 	/*
47621025774cSChristoph Hellwig 	 * If the call to ext4_truncate failed to get a transaction handle at
47631025774cSChristoph Hellwig 	 * all, we need to clean up the in-core orphan list manually.
47641025774cSChristoph Hellwig 	 */
47653d287de3SDmitry Monakhov 	if (orphan && inode->i_nlink)
4766617ba13bSMingming Cao 		ext4_orphan_del(NULL, inode);
4767ac27a0ecSDave Kleikamp 
4768ac27a0ecSDave Kleikamp 	if (!rc && (ia_valid & ATTR_MODE))
476964e178a7SChristoph Hellwig 		rc = posix_acl_chmod(inode, inode->i_mode);
4770ac27a0ecSDave Kleikamp 
4771ac27a0ecSDave Kleikamp err_out:
4772617ba13bSMingming Cao 	ext4_std_error(inode->i_sb, error);
4773ac27a0ecSDave Kleikamp 	if (!error)
4774ac27a0ecSDave Kleikamp 		error = rc;
4775ac27a0ecSDave Kleikamp 	return error;
4776ac27a0ecSDave Kleikamp }
4777ac27a0ecSDave Kleikamp 
47783e3398a0SMingming Cao int ext4_getattr(struct vfsmount *mnt, struct dentry *dentry,
47793e3398a0SMingming Cao 		 struct kstat *stat)
47803e3398a0SMingming Cao {
47813e3398a0SMingming Cao 	struct inode *inode;
47828af8eeccSJan Kara 	unsigned long long delalloc_blocks;
47833e3398a0SMingming Cao 
47843e3398a0SMingming Cao 	inode = dentry->d_inode;
47853e3398a0SMingming Cao 	generic_fillattr(inode, stat);
47863e3398a0SMingming Cao 
47873e3398a0SMingming Cao 	/*
47889206c561SAndreas Dilger 	 * If there is inline data in the inode, the inode will normally not
47899206c561SAndreas Dilger 	 * have data blocks allocated (it may have an external xattr block).
47909206c561SAndreas Dilger 	 * Report at least one sector for such files, so tools like tar, rsync,
47919206c561SAndreas Dilger 	 * others doen't incorrectly think the file is completely sparse.
47929206c561SAndreas Dilger 	 */
47939206c561SAndreas Dilger 	if (unlikely(ext4_has_inline_data(inode)))
47949206c561SAndreas Dilger 		stat->blocks += (stat->size + 511) >> 9;
47959206c561SAndreas Dilger 
47969206c561SAndreas Dilger 	/*
47973e3398a0SMingming Cao 	 * We can't update i_blocks if the block allocation is delayed
47983e3398a0SMingming Cao 	 * otherwise in the case of system crash before the real block
47993e3398a0SMingming Cao 	 * allocation is done, we will have i_blocks inconsistent with
48003e3398a0SMingming Cao 	 * on-disk file blocks.
48013e3398a0SMingming Cao 	 * We always keep i_blocks updated together with real
48023e3398a0SMingming Cao 	 * allocation. But to not confuse with user, stat
48033e3398a0SMingming Cao 	 * will return the blocks that include the delayed allocation
48043e3398a0SMingming Cao 	 * blocks for this file.
48053e3398a0SMingming Cao 	 */
480696607551STao Ma 	delalloc_blocks = EXT4_C2B(EXT4_SB(inode->i_sb),
480796607551STao Ma 				   EXT4_I(inode)->i_reserved_data_blocks);
48088af8eeccSJan Kara 	stat->blocks += delalloc_blocks << (inode->i_sb->s_blocksize_bits - 9);
48093e3398a0SMingming Cao 	return 0;
48103e3398a0SMingming Cao }
4811ac27a0ecSDave Kleikamp 
4812fffb2739SJan Kara static int ext4_index_trans_blocks(struct inode *inode, int lblocks,
4813fffb2739SJan Kara 				   int pextents)
4814a02908f1SMingming Cao {
481512e9b892SDmitry Monakhov 	if (!(ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS)))
4816fffb2739SJan Kara 		return ext4_ind_trans_blocks(inode, lblocks);
4817fffb2739SJan Kara 	return ext4_ext_index_trans_blocks(inode, pextents);
4818a02908f1SMingming Cao }
4819ac51d837STheodore Ts'o 
4820a02908f1SMingming Cao /*
4821a02908f1SMingming Cao  * Account for index blocks, block groups bitmaps and block group
4822a02908f1SMingming Cao  * descriptor blocks if modify datablocks and index blocks
4823a02908f1SMingming Cao  * worse case, the indexs blocks spread over different block groups
4824a02908f1SMingming Cao  *
4825a02908f1SMingming Cao  * If datablocks are discontiguous, they are possible to spread over
48264907cb7bSAnatol Pomozov  * different block groups too. If they are contiguous, with flexbg,
4827a02908f1SMingming Cao  * they could still across block group boundary.
4828a02908f1SMingming Cao  *
4829a02908f1SMingming Cao  * Also account for superblock, inode, quota and xattr blocks
4830a02908f1SMingming Cao  */
4831fffb2739SJan Kara static int ext4_meta_trans_blocks(struct inode *inode, int lblocks,
4832fffb2739SJan Kara 				  int pextents)
4833a02908f1SMingming Cao {
48348df9675fSTheodore Ts'o 	ext4_group_t groups, ngroups = ext4_get_groups_count(inode->i_sb);
48358df9675fSTheodore Ts'o 	int gdpblocks;
4836a02908f1SMingming Cao 	int idxblocks;
4837a02908f1SMingming Cao 	int ret = 0;
4838a02908f1SMingming Cao 
4839a02908f1SMingming Cao 	/*
4840fffb2739SJan Kara 	 * How many index blocks need to touch to map @lblocks logical blocks
4841fffb2739SJan Kara 	 * to @pextents physical extents?
4842a02908f1SMingming Cao 	 */
4843fffb2739SJan Kara 	idxblocks = ext4_index_trans_blocks(inode, lblocks, pextents);
4844a02908f1SMingming Cao 
4845a02908f1SMingming Cao 	ret = idxblocks;
4846a02908f1SMingming Cao 
4847a02908f1SMingming Cao 	/*
4848a02908f1SMingming Cao 	 * Now let's see how many group bitmaps and group descriptors need
4849a02908f1SMingming Cao 	 * to account
4850a02908f1SMingming Cao 	 */
4851fffb2739SJan Kara 	groups = idxblocks + pextents;
4852a02908f1SMingming Cao 	gdpblocks = groups;
48538df9675fSTheodore Ts'o 	if (groups > ngroups)
48548df9675fSTheodore Ts'o 		groups = ngroups;
4855a02908f1SMingming Cao 	if (groups > EXT4_SB(inode->i_sb)->s_gdb_count)
4856a02908f1SMingming Cao 		gdpblocks = EXT4_SB(inode->i_sb)->s_gdb_count;
4857a02908f1SMingming Cao 
4858a02908f1SMingming Cao 	/* bitmaps and block group descriptor blocks */
4859a02908f1SMingming Cao 	ret += groups + gdpblocks;
4860a02908f1SMingming Cao 
4861a02908f1SMingming Cao 	/* Blocks for super block, inode, quota and xattr blocks */
4862a02908f1SMingming Cao 	ret += EXT4_META_TRANS_BLOCKS(inode->i_sb);
4863ac27a0ecSDave Kleikamp 
4864ac27a0ecSDave Kleikamp 	return ret;
4865ac27a0ecSDave Kleikamp }
4866ac27a0ecSDave Kleikamp 
4867ac27a0ecSDave Kleikamp /*
486825985edcSLucas De Marchi  * Calculate the total number of credits to reserve to fit
4869f3bd1f3fSMingming Cao  * the modification of a single pages into a single transaction,
4870f3bd1f3fSMingming Cao  * which may include multiple chunks of block allocations.
4871a02908f1SMingming Cao  *
4872525f4ed8SMingming Cao  * This could be called via ext4_write_begin()
4873a02908f1SMingming Cao  *
4874525f4ed8SMingming Cao  * We need to consider the worse case, when
4875a02908f1SMingming Cao  * one new block per extent.
4876a02908f1SMingming Cao  */
4877a02908f1SMingming Cao int ext4_writepage_trans_blocks(struct inode *inode)
4878a02908f1SMingming Cao {
4879a02908f1SMingming Cao 	int bpp = ext4_journal_blocks_per_page(inode);
4880a02908f1SMingming Cao 	int ret;
4881a02908f1SMingming Cao 
4882fffb2739SJan Kara 	ret = ext4_meta_trans_blocks(inode, bpp, bpp);
4883a02908f1SMingming Cao 
4884a02908f1SMingming Cao 	/* Account for data blocks for journalled mode */
4885a02908f1SMingming Cao 	if (ext4_should_journal_data(inode))
4886a02908f1SMingming Cao 		ret += bpp;
4887a02908f1SMingming Cao 	return ret;
4888a02908f1SMingming Cao }
4889f3bd1f3fSMingming Cao 
4890f3bd1f3fSMingming Cao /*
4891f3bd1f3fSMingming Cao  * Calculate the journal credits for a chunk of data modification.
4892f3bd1f3fSMingming Cao  *
4893f3bd1f3fSMingming Cao  * This is called from DIO, fallocate or whoever calling
489479e83036SEric Sandeen  * ext4_map_blocks() to map/allocate a chunk of contiguous disk blocks.
4895f3bd1f3fSMingming Cao  *
4896f3bd1f3fSMingming Cao  * journal buffers for data blocks are not included here, as DIO
4897f3bd1f3fSMingming Cao  * and fallocate do no need to journal data buffers.
4898f3bd1f3fSMingming Cao  */
4899f3bd1f3fSMingming Cao int ext4_chunk_trans_blocks(struct inode *inode, int nrblocks)
4900f3bd1f3fSMingming Cao {
4901f3bd1f3fSMingming Cao 	return ext4_meta_trans_blocks(inode, nrblocks, 1);
4902f3bd1f3fSMingming Cao }
4903f3bd1f3fSMingming Cao 
4904a02908f1SMingming Cao /*
4905617ba13bSMingming Cao  * The caller must have previously called ext4_reserve_inode_write().
4906ac27a0ecSDave Kleikamp  * Give this, we know that the caller already has write access to iloc->bh.
4907ac27a0ecSDave Kleikamp  */
4908617ba13bSMingming Cao int ext4_mark_iloc_dirty(handle_t *handle,
4909617ba13bSMingming Cao 			 struct inode *inode, struct ext4_iloc *iloc)
4910ac27a0ecSDave Kleikamp {
4911ac27a0ecSDave Kleikamp 	int err = 0;
4912ac27a0ecSDave Kleikamp 
4913c64db50eSTheodore Ts'o 	if (IS_I_VERSION(inode))
491425ec56b5SJean Noel Cordenner 		inode_inc_iversion(inode);
491525ec56b5SJean Noel Cordenner 
4916ac27a0ecSDave Kleikamp 	/* the do_update_inode consumes one bh->b_count */
4917ac27a0ecSDave Kleikamp 	get_bh(iloc->bh);
4918ac27a0ecSDave Kleikamp 
4919dab291afSMingming Cao 	/* ext4_do_update_inode() does jbd2_journal_dirty_metadata */
4920830156c7SFrank Mayhar 	err = ext4_do_update_inode(handle, inode, iloc);
4921ac27a0ecSDave Kleikamp 	put_bh(iloc->bh);
4922ac27a0ecSDave Kleikamp 	return err;
4923ac27a0ecSDave Kleikamp }
4924ac27a0ecSDave Kleikamp 
4925ac27a0ecSDave Kleikamp /*
4926ac27a0ecSDave Kleikamp  * On success, We end up with an outstanding reference count against
4927ac27a0ecSDave Kleikamp  * iloc->bh.  This _must_ be cleaned up later.
4928ac27a0ecSDave Kleikamp  */
4929ac27a0ecSDave Kleikamp 
4930ac27a0ecSDave Kleikamp int
4931617ba13bSMingming Cao ext4_reserve_inode_write(handle_t *handle, struct inode *inode,
4932617ba13bSMingming Cao 			 struct ext4_iloc *iloc)
4933ac27a0ecSDave Kleikamp {
49340390131bSFrank Mayhar 	int err;
49350390131bSFrank Mayhar 
4936617ba13bSMingming Cao 	err = ext4_get_inode_loc(inode, iloc);
4937ac27a0ecSDave Kleikamp 	if (!err) {
4938ac27a0ecSDave Kleikamp 		BUFFER_TRACE(iloc->bh, "get_write_access");
4939617ba13bSMingming Cao 		err = ext4_journal_get_write_access(handle, iloc->bh);
4940ac27a0ecSDave Kleikamp 		if (err) {
4941ac27a0ecSDave Kleikamp 			brelse(iloc->bh);
4942ac27a0ecSDave Kleikamp 			iloc->bh = NULL;
4943ac27a0ecSDave Kleikamp 		}
4944ac27a0ecSDave Kleikamp 	}
4945617ba13bSMingming Cao 	ext4_std_error(inode->i_sb, err);
4946ac27a0ecSDave Kleikamp 	return err;
4947ac27a0ecSDave Kleikamp }
4948ac27a0ecSDave Kleikamp 
4949ac27a0ecSDave Kleikamp /*
49506dd4ee7cSKalpak Shah  * Expand an inode by new_extra_isize bytes.
49516dd4ee7cSKalpak Shah  * Returns 0 on success or negative error number on failure.
49526dd4ee7cSKalpak Shah  */
49531d03ec98SAneesh Kumar K.V static int ext4_expand_extra_isize(struct inode *inode,
49541d03ec98SAneesh Kumar K.V 				   unsigned int new_extra_isize,
49551d03ec98SAneesh Kumar K.V 				   struct ext4_iloc iloc,
49561d03ec98SAneesh Kumar K.V 				   handle_t *handle)
49576dd4ee7cSKalpak Shah {
49586dd4ee7cSKalpak Shah 	struct ext4_inode *raw_inode;
49596dd4ee7cSKalpak Shah 	struct ext4_xattr_ibody_header *header;
49606dd4ee7cSKalpak Shah 
49616dd4ee7cSKalpak Shah 	if (EXT4_I(inode)->i_extra_isize >= new_extra_isize)
49626dd4ee7cSKalpak Shah 		return 0;
49636dd4ee7cSKalpak Shah 
49646dd4ee7cSKalpak Shah 	raw_inode = ext4_raw_inode(&iloc);
49656dd4ee7cSKalpak Shah 
49666dd4ee7cSKalpak Shah 	header = IHDR(inode, raw_inode);
49676dd4ee7cSKalpak Shah 
49686dd4ee7cSKalpak Shah 	/* No extended attributes present */
496919f5fb7aSTheodore Ts'o 	if (!ext4_test_inode_state(inode, EXT4_STATE_XATTR) ||
49706dd4ee7cSKalpak Shah 	    header->h_magic != cpu_to_le32(EXT4_XATTR_MAGIC)) {
49716dd4ee7cSKalpak Shah 		memset((void *)raw_inode + EXT4_GOOD_OLD_INODE_SIZE, 0,
49726dd4ee7cSKalpak Shah 			new_extra_isize);
49736dd4ee7cSKalpak Shah 		EXT4_I(inode)->i_extra_isize = new_extra_isize;
49746dd4ee7cSKalpak Shah 		return 0;
49756dd4ee7cSKalpak Shah 	}
49766dd4ee7cSKalpak Shah 
49776dd4ee7cSKalpak Shah 	/* try to expand with EAs present */
49786dd4ee7cSKalpak Shah 	return ext4_expand_extra_isize_ea(inode, new_extra_isize,
49796dd4ee7cSKalpak Shah 					  raw_inode, handle);
49806dd4ee7cSKalpak Shah }
49816dd4ee7cSKalpak Shah 
49826dd4ee7cSKalpak Shah /*
4983ac27a0ecSDave Kleikamp  * What we do here is to mark the in-core inode as clean with respect to inode
4984ac27a0ecSDave Kleikamp  * dirtiness (it may still be data-dirty).
4985ac27a0ecSDave Kleikamp  * This means that the in-core inode may be reaped by prune_icache
4986ac27a0ecSDave Kleikamp  * without having to perform any I/O.  This is a very good thing,
4987ac27a0ecSDave Kleikamp  * because *any* task may call prune_icache - even ones which
4988ac27a0ecSDave Kleikamp  * have a transaction open against a different journal.
4989ac27a0ecSDave Kleikamp  *
4990ac27a0ecSDave Kleikamp  * Is this cheating?  Not really.  Sure, we haven't written the
4991ac27a0ecSDave Kleikamp  * inode out, but prune_icache isn't a user-visible syncing function.
4992ac27a0ecSDave Kleikamp  * Whenever the user wants stuff synced (sys_sync, sys_msync, sys_fsync)
4993ac27a0ecSDave Kleikamp  * we start and wait on commits.
4994ac27a0ecSDave Kleikamp  */
4995617ba13bSMingming Cao int ext4_mark_inode_dirty(handle_t *handle, struct inode *inode)
4996ac27a0ecSDave Kleikamp {
4997617ba13bSMingming Cao 	struct ext4_iloc iloc;
49986dd4ee7cSKalpak Shah 	struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb);
49996dd4ee7cSKalpak Shah 	static unsigned int mnt_count;
50006dd4ee7cSKalpak Shah 	int err, ret;
5001ac27a0ecSDave Kleikamp 
5002ac27a0ecSDave Kleikamp 	might_sleep();
50037ff9c073STheodore Ts'o 	trace_ext4_mark_inode_dirty(inode, _RET_IP_);
5004617ba13bSMingming Cao 	err = ext4_reserve_inode_write(handle, inode, &iloc);
50050390131bSFrank Mayhar 	if (ext4_handle_valid(handle) &&
50060390131bSFrank Mayhar 	    EXT4_I(inode)->i_extra_isize < sbi->s_want_extra_isize &&
500719f5fb7aSTheodore Ts'o 	    !ext4_test_inode_state(inode, EXT4_STATE_NO_EXPAND)) {
50086dd4ee7cSKalpak Shah 		/*
50096dd4ee7cSKalpak Shah 		 * We need extra buffer credits since we may write into EA block
50106dd4ee7cSKalpak Shah 		 * with this same handle. If journal_extend fails, then it will
50116dd4ee7cSKalpak Shah 		 * only result in a minor loss of functionality for that inode.
50126dd4ee7cSKalpak Shah 		 * If this is felt to be critical, then e2fsck should be run to
50136dd4ee7cSKalpak Shah 		 * force a large enough s_min_extra_isize.
50146dd4ee7cSKalpak Shah 		 */
50156dd4ee7cSKalpak Shah 		if ((jbd2_journal_extend(handle,
50166dd4ee7cSKalpak Shah 			     EXT4_DATA_TRANS_BLOCKS(inode->i_sb))) == 0) {
50176dd4ee7cSKalpak Shah 			ret = ext4_expand_extra_isize(inode,
50186dd4ee7cSKalpak Shah 						      sbi->s_want_extra_isize,
50196dd4ee7cSKalpak Shah 						      iloc, handle);
50206dd4ee7cSKalpak Shah 			if (ret) {
502119f5fb7aSTheodore Ts'o 				ext4_set_inode_state(inode,
502219f5fb7aSTheodore Ts'o 						     EXT4_STATE_NO_EXPAND);
5023c1bddad9SAneesh Kumar K.V 				if (mnt_count !=
5024c1bddad9SAneesh Kumar K.V 					le16_to_cpu(sbi->s_es->s_mnt_count)) {
502512062dddSEric Sandeen 					ext4_warning(inode->i_sb,
50266dd4ee7cSKalpak Shah 					"Unable to expand inode %lu. Delete"
50276dd4ee7cSKalpak Shah 					" some EAs or run e2fsck.",
50286dd4ee7cSKalpak Shah 					inode->i_ino);
5029c1bddad9SAneesh Kumar K.V 					mnt_count =
5030c1bddad9SAneesh Kumar K.V 					  le16_to_cpu(sbi->s_es->s_mnt_count);
50316dd4ee7cSKalpak Shah 				}
50326dd4ee7cSKalpak Shah 			}
50336dd4ee7cSKalpak Shah 		}
50346dd4ee7cSKalpak Shah 	}
5035ac27a0ecSDave Kleikamp 	if (!err)
5036617ba13bSMingming Cao 		err = ext4_mark_iloc_dirty(handle, inode, &iloc);
5037ac27a0ecSDave Kleikamp 	return err;
5038ac27a0ecSDave Kleikamp }
5039ac27a0ecSDave Kleikamp 
5040ac27a0ecSDave Kleikamp /*
5041617ba13bSMingming Cao  * ext4_dirty_inode() is called from __mark_inode_dirty()
5042ac27a0ecSDave Kleikamp  *
5043ac27a0ecSDave Kleikamp  * We're really interested in the case where a file is being extended.
5044ac27a0ecSDave Kleikamp  * i_size has been changed by generic_commit_write() and we thus need
5045ac27a0ecSDave Kleikamp  * to include the updated inode in the current transaction.
5046ac27a0ecSDave Kleikamp  *
50475dd4056dSChristoph Hellwig  * Also, dquot_alloc_block() will always dirty the inode when blocks
5048ac27a0ecSDave Kleikamp  * are allocated to the file.
5049ac27a0ecSDave Kleikamp  *
5050ac27a0ecSDave Kleikamp  * If the inode is marked synchronous, we don't honour that here - doing
5051ac27a0ecSDave Kleikamp  * so would cause a commit on atime updates, which we don't bother doing.
5052ac27a0ecSDave Kleikamp  * We handle synchronous inodes at the highest possible level.
50530ae45f63STheodore Ts'o  *
50540ae45f63STheodore Ts'o  * If only the I_DIRTY_TIME flag is set, we can skip everything.  If
50550ae45f63STheodore Ts'o  * I_DIRTY_TIME and I_DIRTY_SYNC is set, the only inode fields we need
50560ae45f63STheodore Ts'o  * to copy into the on-disk inode structure are the timestamp files.
5057ac27a0ecSDave Kleikamp  */
5058aa385729SChristoph Hellwig void ext4_dirty_inode(struct inode *inode, int flags)
5059ac27a0ecSDave Kleikamp {
5060ac27a0ecSDave Kleikamp 	handle_t *handle;
5061ac27a0ecSDave Kleikamp 
50620ae45f63STheodore Ts'o 	if (flags == I_DIRTY_TIME)
50630ae45f63STheodore Ts'o 		return;
50649924a92aSTheodore Ts'o 	handle = ext4_journal_start(inode, EXT4_HT_INODE, 2);
5065ac27a0ecSDave Kleikamp 	if (IS_ERR(handle))
5066ac27a0ecSDave Kleikamp 		goto out;
5067f3dc272fSCurt Wohlgemuth 
5068617ba13bSMingming Cao 	ext4_mark_inode_dirty(handle, inode);
5069f3dc272fSCurt Wohlgemuth 
5070617ba13bSMingming Cao 	ext4_journal_stop(handle);
5071ac27a0ecSDave Kleikamp out:
5072ac27a0ecSDave Kleikamp 	return;
5073ac27a0ecSDave Kleikamp }
5074ac27a0ecSDave Kleikamp 
5075ac27a0ecSDave Kleikamp #if 0
5076ac27a0ecSDave Kleikamp /*
5077ac27a0ecSDave Kleikamp  * Bind an inode's backing buffer_head into this transaction, to prevent
5078ac27a0ecSDave Kleikamp  * it from being flushed to disk early.  Unlike
5079617ba13bSMingming Cao  * ext4_reserve_inode_write, this leaves behind no bh reference and
5080ac27a0ecSDave Kleikamp  * returns no iloc structure, so the caller needs to repeat the iloc
5081ac27a0ecSDave Kleikamp  * lookup to mark the inode dirty later.
5082ac27a0ecSDave Kleikamp  */
5083617ba13bSMingming Cao static int ext4_pin_inode(handle_t *handle, struct inode *inode)
5084ac27a0ecSDave Kleikamp {
5085617ba13bSMingming Cao 	struct ext4_iloc iloc;
5086ac27a0ecSDave Kleikamp 
5087ac27a0ecSDave Kleikamp 	int err = 0;
5088ac27a0ecSDave Kleikamp 	if (handle) {
5089617ba13bSMingming Cao 		err = ext4_get_inode_loc(inode, &iloc);
5090ac27a0ecSDave Kleikamp 		if (!err) {
5091ac27a0ecSDave Kleikamp 			BUFFER_TRACE(iloc.bh, "get_write_access");
5092dab291afSMingming Cao 			err = jbd2_journal_get_write_access(handle, iloc.bh);
5093ac27a0ecSDave Kleikamp 			if (!err)
50940390131bSFrank Mayhar 				err = ext4_handle_dirty_metadata(handle,
509573b50c1cSCurt Wohlgemuth 								 NULL,
5096ac27a0ecSDave Kleikamp 								 iloc.bh);
5097ac27a0ecSDave Kleikamp 			brelse(iloc.bh);
5098ac27a0ecSDave Kleikamp 		}
5099ac27a0ecSDave Kleikamp 	}
5100617ba13bSMingming Cao 	ext4_std_error(inode->i_sb, err);
5101ac27a0ecSDave Kleikamp 	return err;
5102ac27a0ecSDave Kleikamp }
5103ac27a0ecSDave Kleikamp #endif
5104ac27a0ecSDave Kleikamp 
5105617ba13bSMingming Cao int ext4_change_inode_journal_flag(struct inode *inode, int val)
5106ac27a0ecSDave Kleikamp {
5107ac27a0ecSDave Kleikamp 	journal_t *journal;
5108ac27a0ecSDave Kleikamp 	handle_t *handle;
5109ac27a0ecSDave Kleikamp 	int err;
5110ac27a0ecSDave Kleikamp 
5111ac27a0ecSDave Kleikamp 	/*
5112ac27a0ecSDave Kleikamp 	 * We have to be very careful here: changing a data block's
5113ac27a0ecSDave Kleikamp 	 * journaling status dynamically is dangerous.  If we write a
5114ac27a0ecSDave Kleikamp 	 * data block to the journal, change the status and then delete
5115ac27a0ecSDave Kleikamp 	 * that block, we risk forgetting to revoke the old log record
5116ac27a0ecSDave Kleikamp 	 * from the journal and so a subsequent replay can corrupt data.
5117ac27a0ecSDave Kleikamp 	 * So, first we make sure that the journal is empty and that
5118ac27a0ecSDave Kleikamp 	 * nobody is changing anything.
5119ac27a0ecSDave Kleikamp 	 */
5120ac27a0ecSDave Kleikamp 
5121617ba13bSMingming Cao 	journal = EXT4_JOURNAL(inode);
51220390131bSFrank Mayhar 	if (!journal)
51230390131bSFrank Mayhar 		return 0;
5124d699594dSDave Hansen 	if (is_journal_aborted(journal))
5125ac27a0ecSDave Kleikamp 		return -EROFS;
51262aff57b0SYongqiang Yang 	/* We have to allocate physical blocks for delalloc blocks
51272aff57b0SYongqiang Yang 	 * before flushing journal. otherwise delalloc blocks can not
51282aff57b0SYongqiang Yang 	 * be allocated any more. even more truncate on delalloc blocks
51292aff57b0SYongqiang Yang 	 * could trigger BUG by flushing delalloc blocks in journal.
51302aff57b0SYongqiang Yang 	 * There is no delalloc block in non-journal data mode.
51312aff57b0SYongqiang Yang 	 */
51322aff57b0SYongqiang Yang 	if (val && test_opt(inode->i_sb, DELALLOC)) {
51332aff57b0SYongqiang Yang 		err = ext4_alloc_da_blocks(inode);
51342aff57b0SYongqiang Yang 		if (err < 0)
51352aff57b0SYongqiang Yang 			return err;
51362aff57b0SYongqiang Yang 	}
5137ac27a0ecSDave Kleikamp 
513817335dccSDmitry Monakhov 	/* Wait for all existing dio workers */
513917335dccSDmitry Monakhov 	ext4_inode_block_unlocked_dio(inode);
514017335dccSDmitry Monakhov 	inode_dio_wait(inode);
514117335dccSDmitry Monakhov 
5142dab291afSMingming Cao 	jbd2_journal_lock_updates(journal);
5143ac27a0ecSDave Kleikamp 
5144ac27a0ecSDave Kleikamp 	/*
5145ac27a0ecSDave Kleikamp 	 * OK, there are no updates running now, and all cached data is
5146ac27a0ecSDave Kleikamp 	 * synced to disk.  We are now in a completely consistent state
5147ac27a0ecSDave Kleikamp 	 * which doesn't have anything in the journal, and we know that
5148ac27a0ecSDave Kleikamp 	 * no filesystem updates are running, so it is safe to modify
5149ac27a0ecSDave Kleikamp 	 * the inode's in-core data-journaling state flag now.
5150ac27a0ecSDave Kleikamp 	 */
5151ac27a0ecSDave Kleikamp 
5152ac27a0ecSDave Kleikamp 	if (val)
515312e9b892SDmitry Monakhov 		ext4_set_inode_flag(inode, EXT4_INODE_JOURNAL_DATA);
51545872ddaaSYongqiang Yang 	else {
51554f879ca6SJan Kara 		err = jbd2_journal_flush(journal);
51564f879ca6SJan Kara 		if (err < 0) {
51574f879ca6SJan Kara 			jbd2_journal_unlock_updates(journal);
51584f879ca6SJan Kara 			ext4_inode_resume_unlocked_dio(inode);
51594f879ca6SJan Kara 			return err;
51604f879ca6SJan Kara 		}
516112e9b892SDmitry Monakhov 		ext4_clear_inode_flag(inode, EXT4_INODE_JOURNAL_DATA);
51625872ddaaSYongqiang Yang 	}
5163617ba13bSMingming Cao 	ext4_set_aops(inode);
5164ac27a0ecSDave Kleikamp 
5165dab291afSMingming Cao 	jbd2_journal_unlock_updates(journal);
516617335dccSDmitry Monakhov 	ext4_inode_resume_unlocked_dio(inode);
5167ac27a0ecSDave Kleikamp 
5168ac27a0ecSDave Kleikamp 	/* Finally we can mark the inode as dirty. */
5169ac27a0ecSDave Kleikamp 
51709924a92aSTheodore Ts'o 	handle = ext4_journal_start(inode, EXT4_HT_INODE, 1);
5171ac27a0ecSDave Kleikamp 	if (IS_ERR(handle))
5172ac27a0ecSDave Kleikamp 		return PTR_ERR(handle);
5173ac27a0ecSDave Kleikamp 
5174617ba13bSMingming Cao 	err = ext4_mark_inode_dirty(handle, inode);
51750390131bSFrank Mayhar 	ext4_handle_sync(handle);
5176617ba13bSMingming Cao 	ext4_journal_stop(handle);
5177617ba13bSMingming Cao 	ext4_std_error(inode->i_sb, err);
5178ac27a0ecSDave Kleikamp 
5179ac27a0ecSDave Kleikamp 	return err;
5180ac27a0ecSDave Kleikamp }
51812e9ee850SAneesh Kumar K.V 
51822e9ee850SAneesh Kumar K.V static int ext4_bh_unmapped(handle_t *handle, struct buffer_head *bh)
51832e9ee850SAneesh Kumar K.V {
51842e9ee850SAneesh Kumar K.V 	return !buffer_mapped(bh);
51852e9ee850SAneesh Kumar K.V }
51862e9ee850SAneesh Kumar K.V 
5187c2ec175cSNick Piggin int ext4_page_mkwrite(struct vm_area_struct *vma, struct vm_fault *vmf)
51882e9ee850SAneesh Kumar K.V {
5189c2ec175cSNick Piggin 	struct page *page = vmf->page;
51902e9ee850SAneesh Kumar K.V 	loff_t size;
51912e9ee850SAneesh Kumar K.V 	unsigned long len;
51929ea7df53SJan Kara 	int ret;
51932e9ee850SAneesh Kumar K.V 	struct file *file = vma->vm_file;
5194496ad9aaSAl Viro 	struct inode *inode = file_inode(file);
51952e9ee850SAneesh Kumar K.V 	struct address_space *mapping = inode->i_mapping;
51969ea7df53SJan Kara 	handle_t *handle;
51979ea7df53SJan Kara 	get_block_t *get_block;
51989ea7df53SJan Kara 	int retries = 0;
51992e9ee850SAneesh Kumar K.V 
52008e8ad8a5SJan Kara 	sb_start_pagefault(inode->i_sb);
5201041bbb6dSTheodore Ts'o 	file_update_time(vma->vm_file);
52029ea7df53SJan Kara 	/* Delalloc case is easy... */
52039ea7df53SJan Kara 	if (test_opt(inode->i_sb, DELALLOC) &&
52049ea7df53SJan Kara 	    !ext4_should_journal_data(inode) &&
52059ea7df53SJan Kara 	    !ext4_nonda_switch(inode->i_sb)) {
52069ea7df53SJan Kara 		do {
52079ea7df53SJan Kara 			ret = __block_page_mkwrite(vma, vmf,
52089ea7df53SJan Kara 						   ext4_da_get_block_prep);
52099ea7df53SJan Kara 		} while (ret == -ENOSPC &&
52109ea7df53SJan Kara 		       ext4_should_retry_alloc(inode->i_sb, &retries));
52119ea7df53SJan Kara 		goto out_ret;
52122e9ee850SAneesh Kumar K.V 	}
52130e499890SDarrick J. Wong 
52140e499890SDarrick J. Wong 	lock_page(page);
52159ea7df53SJan Kara 	size = i_size_read(inode);
52169ea7df53SJan Kara 	/* Page got truncated from under us? */
52179ea7df53SJan Kara 	if (page->mapping != mapping || page_offset(page) > size) {
52189ea7df53SJan Kara 		unlock_page(page);
52199ea7df53SJan Kara 		ret = VM_FAULT_NOPAGE;
52209ea7df53SJan Kara 		goto out;
52210e499890SDarrick J. Wong 	}
52222e9ee850SAneesh Kumar K.V 
52232e9ee850SAneesh Kumar K.V 	if (page->index == size >> PAGE_CACHE_SHIFT)
52242e9ee850SAneesh Kumar K.V 		len = size & ~PAGE_CACHE_MASK;
52252e9ee850SAneesh Kumar K.V 	else
52262e9ee850SAneesh Kumar K.V 		len = PAGE_CACHE_SIZE;
5227a827eaffSAneesh Kumar K.V 	/*
52289ea7df53SJan Kara 	 * Return if we have all the buffers mapped. This avoids the need to do
52299ea7df53SJan Kara 	 * journal_start/journal_stop which can block and take a long time
5230a827eaffSAneesh Kumar K.V 	 */
52312e9ee850SAneesh Kumar K.V 	if (page_has_buffers(page)) {
5232f19d5870STao Ma 		if (!ext4_walk_page_buffers(NULL, page_buffers(page),
5233f19d5870STao Ma 					    0, len, NULL,
5234a827eaffSAneesh Kumar K.V 					    ext4_bh_unmapped)) {
52359ea7df53SJan Kara 			/* Wait so that we don't change page under IO */
52361d1d1a76SDarrick J. Wong 			wait_for_stable_page(page);
52379ea7df53SJan Kara 			ret = VM_FAULT_LOCKED;
52389ea7df53SJan Kara 			goto out;
52392e9ee850SAneesh Kumar K.V 		}
5240a827eaffSAneesh Kumar K.V 	}
5241a827eaffSAneesh Kumar K.V 	unlock_page(page);
52429ea7df53SJan Kara 	/* OK, we need to fill the hole... */
52439ea7df53SJan Kara 	if (ext4_should_dioread_nolock(inode))
52449ea7df53SJan Kara 		get_block = ext4_get_block_write;
52459ea7df53SJan Kara 	else
52469ea7df53SJan Kara 		get_block = ext4_get_block;
52479ea7df53SJan Kara retry_alloc:
52489924a92aSTheodore Ts'o 	handle = ext4_journal_start(inode, EXT4_HT_WRITE_PAGE,
52499924a92aSTheodore Ts'o 				    ext4_writepage_trans_blocks(inode));
52509ea7df53SJan Kara 	if (IS_ERR(handle)) {
5251c2ec175cSNick Piggin 		ret = VM_FAULT_SIGBUS;
52529ea7df53SJan Kara 		goto out;
52539ea7df53SJan Kara 	}
52549ea7df53SJan Kara 	ret = __block_page_mkwrite(vma, vmf, get_block);
52559ea7df53SJan Kara 	if (!ret && ext4_should_journal_data(inode)) {
5256f19d5870STao Ma 		if (ext4_walk_page_buffers(handle, page_buffers(page), 0,
52579ea7df53SJan Kara 			  PAGE_CACHE_SIZE, NULL, do_journal_get_write_access)) {
52589ea7df53SJan Kara 			unlock_page(page);
52599ea7df53SJan Kara 			ret = VM_FAULT_SIGBUS;
5260fcbb5515SYongqiang Yang 			ext4_journal_stop(handle);
52619ea7df53SJan Kara 			goto out;
52629ea7df53SJan Kara 		}
52639ea7df53SJan Kara 		ext4_set_inode_state(inode, EXT4_STATE_JDATA);
52649ea7df53SJan Kara 	}
52659ea7df53SJan Kara 	ext4_journal_stop(handle);
52669ea7df53SJan Kara 	if (ret == -ENOSPC && ext4_should_retry_alloc(inode->i_sb, &retries))
52679ea7df53SJan Kara 		goto retry_alloc;
52689ea7df53SJan Kara out_ret:
52699ea7df53SJan Kara 	ret = block_page_mkwrite_return(ret);
52709ea7df53SJan Kara out:
52718e8ad8a5SJan Kara 	sb_end_pagefault(inode->i_sb);
52722e9ee850SAneesh Kumar K.V 	return ret;
52732e9ee850SAneesh Kumar K.V }
5274