blob: 16e72621e9952fc502d469f0a6cb2a4bc40ae4f7 [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001// SPDX-License-Identifier: GPL-2.0
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002/*
Mingming Cao617ba132006-10-11 01:20:53 -07003 * linux/fs/ext4/inode.c
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004 *
5 * Copyright (C) 1992, 1993, 1994, 1995
6 * Remy Card (card@masi.ibp.fr)
7 * Laboratoire MASI - Institut Blaise Pascal
8 * Universite Pierre et Marie Curie (Paris VI)
9 *
10 * from
11 *
12 * linux/fs/minix/inode.c
13 *
14 * Copyright (C) 1991, 1992 Linus Torvalds
15 *
Dave Kleikampac27a0e2006-10-11 01:20:50 -070016 * 64-bit file support on 64-bit platforms by Jakub Jelinek
17 * (jj@sunsite.ms.mff.cuni.cz)
18 *
Mingming Cao617ba132006-10-11 01:20:53 -070019 * Assorted race fixes, rewrite of ext4_get_block() by Al Viro, 2000
Dave Kleikampac27a0e2006-10-11 01:20:50 -070020 */
21
Dave Kleikampac27a0e2006-10-11 01:20:50 -070022#include <linux/fs.h>
23#include <linux/time.h>
Dave Kleikampac27a0e2006-10-11 01:20:50 -070024#include <linux/highuid.h>
25#include <linux/pagemap.h>
Matthew Wilcoxc94c2ac2015-09-08 14:58:40 -070026#include <linux/dax.h>
Dave Kleikampac27a0e2006-10-11 01:20:50 -070027#include <linux/quotaops.h>
28#include <linux/string.h>
29#include <linux/buffer_head.h>
30#include <linux/writeback.h>
Alex Tomas64769242008-07-11 19:27:31 -040031#include <linux/pagevec.h>
Dave Kleikampac27a0e2006-10-11 01:20:50 -070032#include <linux/mpage.h>
Duane Griffine83c1392008-12-19 20:47:15 +000033#include <linux/namei.h>
Dave Kleikampac27a0e2006-10-11 01:20:50 -070034#include <linux/uio.h>
35#include <linux/bio.h>
Mingming Cao4c0425f2009-09-28 15:48:41 -040036#include <linux/workqueue.h>
Jiaying Zhang744692d2010-03-04 16:14:02 -050037#include <linux/kernel.h>
Andrew Morton6db26ff2011-01-12 16:59:13 -080038#include <linux/printk.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090039#include <linux/slab.h>
Theodore Ts'o00a1a052014-03-30 10:20:01 -040040#include <linux/bitops.h>
Jan Kara364443c2016-11-20 17:36:06 -050041#include <linux/iomap.h>
Jeff Laytonae5e1652018-01-29 06:41:30 -050042#include <linux/iversion.h>
Theodore Ts'o9bffad12009-06-17 11:48:11 -040043
Christoph Hellwig3dcf5452008-04-29 18:13:32 -040044#include "ext4_jbd2.h"
Dave Kleikampac27a0e2006-10-11 01:20:50 -070045#include "xattr.h"
46#include "acl.h"
Theodore Ts'o9f125d62011-06-27 19:16:04 -040047#include "truncate.h"
Dave Kleikampac27a0e2006-10-11 01:20:50 -070048
Theodore Ts'o9bffad12009-06-17 11:48:11 -040049#include <trace/events/ext4.h>
50
Aneesh Kumar K.Va1d6cc52008-08-19 21:55:02 -040051#define MPAGE_DA_EXTENT_TAIL 0x01
52
Darrick J. Wong814525f2012-04-29 18:31:10 -040053static __u32 ext4_inode_csum(struct inode *inode, struct ext4_inode *raw,
54 struct ext4_inode_info *ei)
55{
56 struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb);
Darrick J. Wong814525f2012-04-29 18:31:10 -040057 __u32 csum;
Daeho Jeongb47820e2016-07-03 17:51:39 -040058 __u16 dummy_csum = 0;
59 int offset = offsetof(struct ext4_inode, i_checksum_lo);
60 unsigned int csum_size = sizeof(dummy_csum);
Darrick J. Wong814525f2012-04-29 18:31:10 -040061
Daeho Jeongb47820e2016-07-03 17:51:39 -040062 csum = ext4_chksum(sbi, ei->i_csum_seed, (__u8 *)raw, offset);
63 csum = ext4_chksum(sbi, csum, (__u8 *)&dummy_csum, csum_size);
64 offset += csum_size;
65 csum = ext4_chksum(sbi, csum, (__u8 *)raw + offset,
66 EXT4_GOOD_OLD_INODE_SIZE - offset);
67
68 if (EXT4_INODE_SIZE(inode->i_sb) > EXT4_GOOD_OLD_INODE_SIZE) {
69 offset = offsetof(struct ext4_inode, i_checksum_hi);
70 csum = ext4_chksum(sbi, csum, (__u8 *)raw +
71 EXT4_GOOD_OLD_INODE_SIZE,
72 offset - EXT4_GOOD_OLD_INODE_SIZE);
73 if (EXT4_FITS_IN_INODE(raw, ei, i_checksum_hi)) {
74 csum = ext4_chksum(sbi, csum, (__u8 *)&dummy_csum,
75 csum_size);
76 offset += csum_size;
Daeho Jeongb47820e2016-07-03 17:51:39 -040077 }
Daeho Jeong05ac5aa2016-12-01 11:49:12 -050078 csum = ext4_chksum(sbi, csum, (__u8 *)raw + offset,
79 EXT4_INODE_SIZE(inode->i_sb) - offset);
Darrick J. Wong814525f2012-04-29 18:31:10 -040080 }
81
Darrick J. Wong814525f2012-04-29 18:31:10 -040082 return csum;
83}
84
85static int ext4_inode_csum_verify(struct inode *inode, struct ext4_inode *raw,
86 struct ext4_inode_info *ei)
87{
88 __u32 provided, calculated;
89
90 if (EXT4_SB(inode->i_sb)->s_es->s_creator_os !=
91 cpu_to_le32(EXT4_OS_LINUX) ||
Dmitry Monakhov9aa5d32b2014-10-13 03:36:16 -040092 !ext4_has_metadata_csum(inode->i_sb))
Darrick J. Wong814525f2012-04-29 18:31:10 -040093 return 1;
94
95 provided = le16_to_cpu(raw->i_checksum_lo);
96 calculated = ext4_inode_csum(inode, raw, ei);
97 if (EXT4_INODE_SIZE(inode->i_sb) > EXT4_GOOD_OLD_INODE_SIZE &&
98 EXT4_FITS_IN_INODE(raw, ei, i_checksum_hi))
99 provided |= ((__u32)le16_to_cpu(raw->i_checksum_hi)) << 16;
100 else
101 calculated &= 0xFFFF;
102
103 return provided == calculated;
104}
105
106static void ext4_inode_csum_set(struct inode *inode, struct ext4_inode *raw,
107 struct ext4_inode_info *ei)
108{
109 __u32 csum;
110
111 if (EXT4_SB(inode->i_sb)->s_es->s_creator_os !=
112 cpu_to_le32(EXT4_OS_LINUX) ||
Dmitry Monakhov9aa5d32b2014-10-13 03:36:16 -0400113 !ext4_has_metadata_csum(inode->i_sb))
Darrick J. Wong814525f2012-04-29 18:31:10 -0400114 return;
115
116 csum = ext4_inode_csum(inode, raw, ei);
117 raw->i_checksum_lo = cpu_to_le16(csum & 0xFFFF);
118 if (EXT4_INODE_SIZE(inode->i_sb) > EXT4_GOOD_OLD_INODE_SIZE &&
119 EXT4_FITS_IN_INODE(raw, ei, i_checksum_hi))
120 raw->i_checksum_hi = cpu_to_le16(csum >> 16);
121}
122
Jan Kara678aaf42008-07-11 19:27:31 -0400123static inline int ext4_begin_ordered_truncate(struct inode *inode,
124 loff_t new_size)
125{
Theodore Ts'o7ff9c072010-11-08 13:51:33 -0500126 trace_ext4_begin_ordered_truncate(inode, new_size);
Theodore Ts'o8aefcd52011-01-10 12:29:43 -0500127 /*
128 * If jinode is zero, then we never opened the file for
129 * writing, so there's no need to call
130 * jbd2_journal_begin_ordered_truncate() since there's no
131 * outstanding writes we need to flush.
132 */
133 if (!EXT4_I(inode)->jinode)
134 return 0;
135 return jbd2_journal_begin_ordered_truncate(EXT4_JOURNAL(inode),
136 EXT4_I(inode)->jinode,
137 new_size);
Jan Kara678aaf42008-07-11 19:27:31 -0400138}
139
Lukas Czernerd47992f2013-05-21 23:17:23 -0400140static void ext4_invalidatepage(struct page *page, unsigned int offset,
141 unsigned int length);
Theodore Ts'ocb20d512010-10-27 21:30:09 -0400142static int __ext4_journalled_writepage(struct page *page, unsigned int len);
143static int ext4_bh_delay_or_unwritten(handle_t *handle, struct buffer_head *bh);
Tahsin Erdogandec214d2017-06-22 11:44:55 -0400144static int ext4_meta_trans_blocks(struct inode *inode, int lblocks,
145 int pextents);
Alex Tomas64769242008-07-11 19:27:31 -0400146
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700147/*
148 * Test whether an inode is a fast symlink.
Tahsin Erdogan407cd7f2017-07-04 00:11:21 -0400149 * A fast symlink has its symlink data stored in ext4_inode_info->i_data.
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700150 */
Theodore Ts'of348c252015-04-16 01:55:00 -0400151int ext4_inode_is_fast_symlink(struct inode *inode)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700152{
Andi Kleenfc822282017-12-03 20:38:01 -0500153 if (!(EXT4_I(inode)->i_flags & EXT4_EA_INODE_FL)) {
154 int ea_blocks = EXT4_I(inode)->i_file_acl ?
155 EXT4_CLUSTER_SIZE(inode->i_sb) >> 9 : 0;
156
157 if (ext4_has_inline_data(inode))
158 return 0;
159
160 return (S_ISLNK(inode->i_mode) && inode->i_blocks - ea_blocks == 0);
161 }
Tahsin Erdogan407cd7f2017-07-04 00:11:21 -0400162 return S_ISLNK(inode->i_mode) && inode->i_size &&
163 (inode->i_size < EXT4_N_BLOCKS * 4);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700164}
165
166/*
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700167 * Called at the last iput() if i_nlink is zero.
168 */
Al Viro0930fcc2010-06-07 13:16:22 -0400169void ext4_evict_inode(struct inode *inode)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700170{
171 handle_t *handle;
Theodore Ts'obc965ab2008-08-02 21:10:38 -0400172 int err;
Jan Kara65db8692019-11-05 17:44:12 +0100173 /*
174 * Credits for final inode cleanup and freeing:
175 * sb + inode (ext4_orphan_del()), block bitmap, group descriptor
176 * (xattr block freeing), bitmap, group descriptor (inode freeing)
177 */
178 int extra_credits = 6;
Tahsin Erdogan0421a182017-06-22 10:26:31 -0400179 struct ext4_xattr_inode_array *ea_inode_array = NULL;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700180
Theodore Ts'o7ff9c072010-11-08 13:51:33 -0500181 trace_ext4_evict_inode(inode);
Jiaying Zhang2581fdc2011-08-13 12:17:13 -0400182
Al Viro0930fcc2010-06-07 13:16:22 -0400183 if (inode->i_nlink) {
Jan Kara2d859db2011-07-26 09:07:11 -0400184 /*
185 * When journalling data dirty buffers are tracked only in the
186 * journal. So although mm thinks everything is clean and
187 * ready for reaping the inode might still have some pages to
188 * write in the running transaction or waiting to be
189 * checkpointed. Thus calling jbd2_journal_invalidatepage()
190 * (via truncate_inode_pages()) to discard these buffers can
191 * cause data loss. Also even if we did not discard these
192 * buffers, we would have no way to find them after the inode
193 * is reaped and thus user could see stale data if he tries to
194 * read them before the transaction is checkpointed. So be
195 * careful and force everything to disk here... We use
196 * ei->i_datasync_tid to store the newest transaction
197 * containing inode's data.
198 *
199 * Note that directories do not have this problem because they
200 * don't use page cache.
201 */
Vegard Nossum6a7fd522016-07-04 11:03:00 -0400202 if (inode->i_ino != EXT4_JOURNAL_INO &&
203 ext4_should_journal_data(inode) &&
Jan Kara3abb1a02017-06-22 23:49:46 -0400204 (S_ISLNK(inode->i_mode) || S_ISREG(inode->i_mode)) &&
205 inode->i_data.nrpages) {
Jan Kara2d859db2011-07-26 09:07:11 -0400206 journal_t *journal = EXT4_SB(inode->i_sb)->s_journal;
207 tid_t commit_tid = EXT4_I(inode)->i_datasync_tid;
208
Theodore Ts'od76a3a772013-04-03 22:02:52 -0400209 jbd2_complete_transaction(journal, commit_tid);
Jan Kara2d859db2011-07-26 09:07:11 -0400210 filemap_write_and_wait(&inode->i_data);
211 }
Johannes Weiner91b0abe2014-04-03 14:47:49 -0700212 truncate_inode_pages_final(&inode->i_data);
Jan Kara5dc23bd2013-06-04 14:46:12 -0400213
Al Viro0930fcc2010-06-07 13:16:22 -0400214 goto no_delete;
215 }
216
Theodore Ts'oe2bfb082014-10-05 22:47:07 -0400217 if (is_bad_inode(inode))
218 goto no_delete;
219 dquot_initialize(inode);
Christoph Hellwig907f4552010-03-03 09:05:06 -0500220
Jan Kara678aaf42008-07-11 19:27:31 -0400221 if (ext4_should_order_data(inode))
222 ext4_begin_ordered_truncate(inode, 0);
Johannes Weiner91b0abe2014-04-03 14:47:49 -0700223 truncate_inode_pages_final(&inode->i_data);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700224
Jan Kara8e8ad8a2012-06-12 16:20:38 +0200225 /*
226 * Protect us against freezing - iput() caller didn't have to have any
227 * protection against it
228 */
229 sb_start_intwrite(inode->i_sb);
Andreas Dilgere50e5122017-06-21 21:10:32 -0400230
Tahsin Erdogan30a7eb92017-06-22 11:42:09 -0400231 if (!IS_NOQUOTA(inode))
232 extra_credits += EXT4_MAXQUOTAS_DEL_BLOCKS(inode->i_sb);
233
Jan Kara65db8692019-11-05 17:44:12 +0100234 /*
235 * Block bitmap, group descriptor, and inode are accounted in both
236 * ext4_blocks_for_truncate() and extra_credits. So subtract 3.
237 */
Tahsin Erdogan30a7eb92017-06-22 11:42:09 -0400238 handle = ext4_journal_start(inode, EXT4_HT_TRUNCATE,
Jan Kara65db8692019-11-05 17:44:12 +0100239 ext4_blocks_for_truncate(inode) + extra_credits - 3);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700240 if (IS_ERR(handle)) {
Theodore Ts'obc965ab2008-08-02 21:10:38 -0400241 ext4_std_error(inode->i_sb, PTR_ERR(handle));
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700242 /*
243 * If we're going to skip the normal cleanup, we still need to
244 * make sure that the in-core orphan linked list is properly
245 * cleaned up.
246 */
Mingming Cao617ba132006-10-11 01:20:53 -0700247 ext4_orphan_del(NULL, inode);
Jan Kara8e8ad8a2012-06-12 16:20:38 +0200248 sb_end_intwrite(inode->i_sb);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700249 goto no_delete;
250 }
Tahsin Erdogan30a7eb92017-06-22 11:42:09 -0400251
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700252 if (IS_SYNC(inode))
Frank Mayhar03901312009-01-07 00:06:22 -0500253 ext4_handle_sync(handle);
Tahsin Erdogan407cd7f2017-07-04 00:11:21 -0400254
255 /*
256 * Set inode->i_size to 0 before calling ext4_truncate(). We need
257 * special handling of symlinks here because i_size is used to
258 * determine whether ext4_inode_info->i_data contains symlink data or
259 * block mappings. Setting i_size to 0 will remove its fast symlink
260 * status. Erase i_data so that it becomes a valid empty block map.
261 */
262 if (ext4_inode_is_fast_symlink(inode))
263 memset(EXT4_I(inode)->i_data, 0, sizeof(EXT4_I(inode)->i_data));
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700264 inode->i_size = 0;
Theodore Ts'obc965ab2008-08-02 21:10:38 -0400265 err = ext4_mark_inode_dirty(handle, inode);
266 if (err) {
Eric Sandeen12062dd2010-02-15 14:19:27 -0500267 ext4_warning(inode->i_sb,
Theodore Ts'obc965ab2008-08-02 21:10:38 -0400268 "couldn't mark inode dirty (err %d)", err);
269 goto stop_handle;
270 }
Theodore Ts'o2c98eb52016-11-13 22:02:26 -0500271 if (inode->i_blocks) {
272 err = ext4_truncate(inode);
273 if (err) {
274 ext4_error(inode->i_sb,
275 "couldn't truncate inode %lu (err %d)",
276 inode->i_ino, err);
277 goto stop_handle;
278 }
279 }
Theodore Ts'obc965ab2008-08-02 21:10:38 -0400280
Tahsin Erdogan30a7eb92017-06-22 11:42:09 -0400281 /* Remove xattr references. */
282 err = ext4_xattr_delete_inode(handle, inode, &ea_inode_array,
283 extra_credits);
284 if (err) {
285 ext4_warning(inode->i_sb, "xattr delete (err %d)", err);
286stop_handle:
287 ext4_journal_stop(handle);
288 ext4_orphan_del(NULL, inode);
289 sb_end_intwrite(inode->i_sb);
290 ext4_xattr_inode_array_free(ea_inode_array);
291 goto no_delete;
Theodore Ts'obc965ab2008-08-02 21:10:38 -0400292 }
293
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700294 /*
Mingming Cao617ba132006-10-11 01:20:53 -0700295 * Kill off the orphan record which ext4_truncate created.
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700296 * AKPM: I think this can be inside the above `if'.
Mingming Cao617ba132006-10-11 01:20:53 -0700297 * Note that ext4_orphan_del() has to be able to cope with the
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700298 * deletion of a non-existent orphan - this is because we don't
Mingming Cao617ba132006-10-11 01:20:53 -0700299 * know if ext4_truncate() actually created an orphan record.
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700300 * (Well, we could do this if we need to, but heck - it works)
301 */
Mingming Cao617ba132006-10-11 01:20:53 -0700302 ext4_orphan_del(handle, inode);
Arnd Bergmann5ffff832018-07-29 15:50:00 -0400303 EXT4_I(inode)->i_dtime = (__u32)ktime_get_real_seconds();
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700304
305 /*
306 * One subtle ordering requirement: if anything has gone wrong
307 * (transaction abort, IO errors, whatever), then we can still
308 * do these next steps (the fs will already have been marked as
309 * having errors), but we can't free the inode if the mark_dirty
310 * fails.
311 */
Mingming Cao617ba132006-10-11 01:20:53 -0700312 if (ext4_mark_inode_dirty(handle, inode))
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700313 /* If that failed, just do the required in-core inode clear. */
Al Viro0930fcc2010-06-07 13:16:22 -0400314 ext4_clear_inode(inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700315 else
Mingming Cao617ba132006-10-11 01:20:53 -0700316 ext4_free_inode(handle, inode);
317 ext4_journal_stop(handle);
Jan Kara8e8ad8a2012-06-12 16:20:38 +0200318 sb_end_intwrite(inode->i_sb);
Tahsin Erdogan0421a182017-06-22 10:26:31 -0400319 ext4_xattr_inode_array_free(ea_inode_array);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700320 return;
321no_delete:
Al Viro0930fcc2010-06-07 13:16:22 -0400322 ext4_clear_inode(inode); /* We must guarantee clearing of inode... */
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700323}
324
Dmitry Monakhova9e7f442009-12-14 15:21:14 +0300325#ifdef CONFIG_QUOTA
326qsize_t *ext4_get_reserved_space(struct inode *inode)
Mingming Cao60e58e02009-01-22 18:13:05 +0100327{
Dmitry Monakhova9e7f442009-12-14 15:21:14 +0300328 return &EXT4_I(inode)->i_reserved_quota;
Mingming Cao60e58e02009-01-22 18:13:05 +0100329}
Dmitry Monakhova9e7f442009-12-14 15:21:14 +0300330#endif
Theodore Ts'o9d0be502010-01-01 02:41:30 -0500331
Aneesh Kumar K.V12219ae2008-07-17 16:12:08 -0400332/*
Theodore Ts'o0637c6f2009-12-30 14:20:45 -0500333 * Called with i_data_sem down, which is important since we can call
334 * ext4_discard_preallocations() from here.
335 */
Aneesh Kumar K.V5f634d02010-01-25 04:00:31 -0500336void ext4_da_update_reserve_space(struct inode *inode,
337 int used, int quota_claim)
Aneesh Kumar K.V12219ae2008-07-17 16:12:08 -0400338{
339 struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb);
Theodore Ts'o0637c6f2009-12-30 14:20:45 -0500340 struct ext4_inode_info *ei = EXT4_I(inode);
Aneesh Kumar K.V12219ae2008-07-17 16:12:08 -0400341
Theodore Ts'o0637c6f2009-12-30 14:20:45 -0500342 spin_lock(&ei->i_block_reservation_lock);
Aditya Kalid8990242011-09-09 19:18:51 -0400343 trace_ext4_da_update_reserve_space(inode, used, quota_claim);
Theodore Ts'o0637c6f2009-12-30 14:20:45 -0500344 if (unlikely(used > ei->i_reserved_data_blocks)) {
Theodore Ts'o8de5c322013-02-14 15:11:41 -0500345 ext4_warning(inode->i_sb, "%s: ino %lu, used %d "
Theodore Ts'o1084f252012-03-19 23:13:43 -0400346 "with only %d reserved data blocks",
Theodore Ts'o0637c6f2009-12-30 14:20:45 -0500347 __func__, inode->i_ino, used,
348 ei->i_reserved_data_blocks);
349 WARN_ON(1);
350 used = ei->i_reserved_data_blocks;
Aneesh Kumar K.V6bc6e632008-10-10 09:39:00 -0400351 }
Aneesh Kumar K.V12219ae2008-07-17 16:12:08 -0400352
Theodore Ts'o0637c6f2009-12-30 14:20:45 -0500353 /* Update per-inode reservations */
354 ei->i_reserved_data_blocks -= used;
Theodore Ts'o71d4f7d2014-07-15 06:02:38 -0400355 percpu_counter_sub(&sbi->s_dirtyclusters_counter, used);
Theodore Ts'o0637c6f2009-12-30 14:20:45 -0500356
Aneesh Kumar K.V12219ae2008-07-17 16:12:08 -0400357 spin_unlock(&EXT4_I(inode)->i_block_reservation_lock);
Mingming Cao60e58e02009-01-22 18:13:05 +0100358
Eric Sandeen72b8ab92010-05-16 11:00:00 -0400359 /* Update quota subsystem for data blocks */
360 if (quota_claim)
Aditya Kali7b415bf2011-09-09 19:04:51 -0400361 dquot_claim_block(inode, EXT4_C2B(sbi, used));
Eric Sandeen72b8ab92010-05-16 11:00:00 -0400362 else {
Aneesh Kumar K.V5f634d02010-01-25 04:00:31 -0500363 /*
364 * We did fallocate with an offset that is already delayed
365 * allocated. So on delayed allocated writeback we should
Eric Sandeen72b8ab92010-05-16 11:00:00 -0400366 * not re-claim the quota for fallocated blocks.
Aneesh Kumar K.V5f634d02010-01-25 04:00:31 -0500367 */
Aditya Kali7b415bf2011-09-09 19:04:51 -0400368 dquot_release_reservation_block(inode, EXT4_C2B(sbi, used));
Aneesh Kumar K.V5f634d02010-01-25 04:00:31 -0500369 }
Aneesh Kumar K.Vd6014302009-03-27 22:36:43 -0400370
371 /*
372 * If we have done all the pending block allocations and if
373 * there aren't any writers on the inode, we can discard the
374 * inode's preallocations.
375 */
Theodore Ts'o0637c6f2009-12-30 14:20:45 -0500376 if ((ei->i_reserved_data_blocks == 0) &&
Nikolay Borisov82dd1242019-02-10 23:04:16 -0500377 !inode_is_open_for_write(inode))
Aneesh Kumar K.Vd6014302009-03-27 22:36:43 -0400378 ext4_discard_preallocations(inode);
Aneesh Kumar K.V12219ae2008-07-17 16:12:08 -0400379}
380
Theodore Ts'oe29136f2010-06-29 12:54:28 -0400381static int __check_block_validity(struct inode *inode, const char *func,
Theodore Ts'oc398eda2010-07-27 11:56:40 -0400382 unsigned int line,
383 struct ext4_map_blocks *map)
Theodore Ts'o6fd058f2009-05-17 15:38:01 -0400384{
Theodore Ts'o345c0db2019-04-09 23:37:08 -0400385 if (ext4_has_feature_journal(inode->i_sb) &&
386 (inode->i_ino ==
387 le32_to_cpu(EXT4_SB(inode->i_sb)->s_es->s_journal_inum)))
388 return 0;
Theodore Ts'o24676da2010-05-16 21:00:00 -0400389 if (!ext4_data_block_valid(EXT4_SB(inode->i_sb), map->m_pblk,
390 map->m_len)) {
Theodore Ts'oc398eda2010-07-27 11:56:40 -0400391 ext4_error_inode(inode, func, line, map->m_pblk,
Theodore Ts'obdbd6ce2018-06-15 12:27:16 -0400392 "lblock %lu mapped to illegal pblock %llu "
Theodore Ts'oc398eda2010-07-27 11:56:40 -0400393 "(length %d)", (unsigned long) map->m_lblk,
Theodore Ts'obdbd6ce2018-06-15 12:27:16 -0400394 map->m_pblk, map->m_len);
Darrick J. Wong6a797d22015-10-17 16:16:04 -0400395 return -EFSCORRUPTED;
Theodore Ts'o6fd058f2009-05-17 15:38:01 -0400396 }
397 return 0;
398}
399
Jan Kara53085fa2015-12-07 15:09:35 -0500400int ext4_issue_zeroout(struct inode *inode, ext4_lblk_t lblk, ext4_fsblk_t pblk,
401 ext4_lblk_t len)
402{
403 int ret;
404
Chandan Rajendra592ddec2018-12-12 15:20:10 +0530405 if (IS_ENCRYPTED(inode))
Jaegeuk Kima7550b32016-07-10 14:01:03 -0400406 return fscrypt_zeroout_range(inode, lblk, pblk, len);
Jan Kara53085fa2015-12-07 15:09:35 -0500407
408 ret = sb_issue_zeroout(inode->i_sb, pblk, len, GFP_NOFS);
409 if (ret > 0)
410 ret = 0;
411
412 return ret;
413}
414
Theodore Ts'oe29136f2010-06-29 12:54:28 -0400415#define check_block_validity(inode, map) \
Theodore Ts'oc398eda2010-07-27 11:56:40 -0400416 __check_block_validity((inode), __func__, __LINE__, (map))
Theodore Ts'oe29136f2010-06-29 12:54:28 -0400417
Dmitry Monakhov921f2662013-03-10 21:01:03 -0400418#ifdef ES_AGGRESSIVE_TEST
419static void ext4_map_blocks_es_recheck(handle_t *handle,
420 struct inode *inode,
421 struct ext4_map_blocks *es_map,
422 struct ext4_map_blocks *map,
423 int flags)
424{
425 int retval;
426
427 map->m_flags = 0;
428 /*
429 * There is a race window that the result is not the same.
430 * e.g. xfstests #223 when dioread_nolock enables. The reason
431 * is that we lookup a block mapping in extent status tree with
432 * out taking i_data_sem. So at the time the unwritten extent
433 * could be converted.
434 */
Jan Kara2dcba472015-12-07 15:04:57 -0500435 down_read(&EXT4_I(inode)->i_data_sem);
Dmitry Monakhov921f2662013-03-10 21:01:03 -0400436 if (ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS)) {
437 retval = ext4_ext_map_blocks(handle, inode, map, flags &
438 EXT4_GET_BLOCKS_KEEP_SIZE);
439 } else {
440 retval = ext4_ind_map_blocks(handle, inode, map, flags &
441 EXT4_GET_BLOCKS_KEEP_SIZE);
442 }
Jan Kara2dcba472015-12-07 15:04:57 -0500443 up_read((&EXT4_I(inode)->i_data_sem));
Dmitry Monakhov921f2662013-03-10 21:01:03 -0400444
445 /*
446 * We don't check m_len because extent will be collpased in status
447 * tree. So the m_len might not equal.
448 */
449 if (es_map->m_lblk != map->m_lblk ||
450 es_map->m_flags != map->m_flags ||
451 es_map->m_pblk != map->m_pblk) {
Theodore Ts'obdafe422013-07-13 00:40:31 -0400452 printk("ES cache assertion failed for inode: %lu "
Dmitry Monakhov921f2662013-03-10 21:01:03 -0400453 "es_cached ex [%d/%d/%llu/%x] != "
454 "found ex [%d/%d/%llu/%x] retval %d flags %x\n",
455 inode->i_ino, es_map->m_lblk, es_map->m_len,
456 es_map->m_pblk, es_map->m_flags, map->m_lblk,
457 map->m_len, map->m_pblk, map->m_flags,
458 retval, flags);
459 }
460}
461#endif /* ES_AGGRESSIVE_TEST */
462
Theodore Ts'o55138e0b2009-09-29 13:31:31 -0400463/*
Theodore Ts'oe35fd662010-05-16 19:00:00 -0400464 * The ext4_map_blocks() function tries to look up the requested blocks,
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -0400465 * and returns if the blocks are already mapped.
Mingming Caof5ab0d12008-02-25 15:29:55 -0500466 *
Mingming Caof5ab0d12008-02-25 15:29:55 -0500467 * Otherwise it takes the write lock of the i_data_sem and allocate blocks
468 * and store the allocated blocks in the result buffer head and mark it
469 * mapped.
470 *
Theodore Ts'oe35fd662010-05-16 19:00:00 -0400471 * If file type is extents based, it will call ext4_ext_map_blocks(),
472 * Otherwise, call with ext4_ind_map_blocks() to handle indirect mapping
Mingming Caof5ab0d12008-02-25 15:29:55 -0500473 * based files
474 *
Jan Karafacab4d2016-03-09 22:54:00 -0500475 * On success, it returns the number of blocks being mapped or allocated. if
476 * create==0 and the blocks are pre-allocated and unwritten, the resulting @map
477 * is marked as unwritten. If the create == 1, it will mark @map as mapped.
Mingming Caof5ab0d12008-02-25 15:29:55 -0500478 *
479 * It returns 0 if plain look up failed (blocks have not been allocated), in
Jan Karafacab4d2016-03-09 22:54:00 -0500480 * that case, @map is returned as unmapped but we still do fill map->m_len to
481 * indicate the length of a hole starting at map->m_lblk.
Mingming Caof5ab0d12008-02-25 15:29:55 -0500482 *
483 * It returns the error in case of allocation failure.
484 */
Theodore Ts'oe35fd662010-05-16 19:00:00 -0400485int ext4_map_blocks(handle_t *handle, struct inode *inode,
486 struct ext4_map_blocks *map, int flags)
Aneesh Kumar K.V0e855ac2008-01-28 23:58:26 -0500487{
Zheng Liud100eef2013-02-18 00:29:59 -0500488 struct extent_status es;
Aneesh Kumar K.V0e855ac2008-01-28 23:58:26 -0500489 int retval;
Lukas Czernerb8a86842014-03-18 18:05:35 -0400490 int ret = 0;
Dmitry Monakhov921f2662013-03-10 21:01:03 -0400491#ifdef ES_AGGRESSIVE_TEST
492 struct ext4_map_blocks orig_map;
493
494 memcpy(&orig_map, map, sizeof(*map));
495#endif
Mingming Caof5ab0d12008-02-25 15:29:55 -0500496
Theodore Ts'oe35fd662010-05-16 19:00:00 -0400497 map->m_flags = 0;
498 ext_debug("ext4_map_blocks(): inode %lu, flag %d, max_blocks %u,"
499 "logical block %lu\n", inode->i_ino, flags, map->m_len,
500 (unsigned long) map->m_lblk);
Zheng Liud100eef2013-02-18 00:29:59 -0500501
Theodore Ts'oe861b5e2014-02-20 12:54:05 -0500502 /*
503 * ext4_map_blocks returns an int, and m_len is an unsigned int
504 */
505 if (unlikely(map->m_len > INT_MAX))
506 map->m_len = INT_MAX;
507
Kazuya Mio4adb6ab2014-04-07 10:53:28 -0400508 /* We can handle the block number less than EXT_MAX_BLOCKS */
509 if (unlikely(map->m_lblk >= EXT_MAX_BLOCKS))
Darrick J. Wong6a797d22015-10-17 16:16:04 -0400510 return -EFSCORRUPTED;
Kazuya Mio4adb6ab2014-04-07 10:53:28 -0400511
Zheng Liud100eef2013-02-18 00:29:59 -0500512 /* Lookup extent status tree firstly */
Theodore Ts'obb5835e2019-08-11 16:32:41 -0400513 if (ext4_es_lookup_extent(inode, map->m_lblk, NULL, &es)) {
Zheng Liud100eef2013-02-18 00:29:59 -0500514 if (ext4_es_is_written(&es) || ext4_es_is_unwritten(&es)) {
515 map->m_pblk = ext4_es_pblock(&es) +
516 map->m_lblk - es.es_lblk;
517 map->m_flags |= ext4_es_is_written(&es) ?
518 EXT4_MAP_MAPPED : EXT4_MAP_UNWRITTEN;
519 retval = es.es_len - (map->m_lblk - es.es_lblk);
520 if (retval > map->m_len)
521 retval = map->m_len;
522 map->m_len = retval;
523 } else if (ext4_es_is_delayed(&es) || ext4_es_is_hole(&es)) {
Jan Karafacab4d2016-03-09 22:54:00 -0500524 map->m_pblk = 0;
525 retval = es.es_len - (map->m_lblk - es.es_lblk);
526 if (retval > map->m_len)
527 retval = map->m_len;
528 map->m_len = retval;
Zheng Liud100eef2013-02-18 00:29:59 -0500529 retval = 0;
530 } else {
Arnd Bergmann1e83bc82019-04-07 12:24:43 -0400531 BUG();
Zheng Liud100eef2013-02-18 00:29:59 -0500532 }
Dmitry Monakhov921f2662013-03-10 21:01:03 -0400533#ifdef ES_AGGRESSIVE_TEST
534 ext4_map_blocks_es_recheck(handle, inode, map,
535 &orig_map, flags);
536#endif
Zheng Liud100eef2013-02-18 00:29:59 -0500537 goto found;
538 }
539
Aneesh Kumar K.V4df3d262008-01-28 23:58:29 -0500540 /*
Theodore Ts'ob920c752009-05-14 00:54:29 -0400541 * Try to see if we can get the block without requesting a new
542 * file system block.
Aneesh Kumar K.V4df3d262008-01-28 23:58:29 -0500543 */
Jan Kara2dcba472015-12-07 15:04:57 -0500544 down_read(&EXT4_I(inode)->i_data_sem);
Dmitry Monakhov12e9b892010-05-16 22:00:00 -0400545 if (ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS)) {
Dmitry Monakhova4e5d882011-10-25 08:15:12 -0400546 retval = ext4_ext_map_blocks(handle, inode, map, flags &
547 EXT4_GET_BLOCKS_KEEP_SIZE);
Aneesh Kumar K.V0e855ac2008-01-28 23:58:26 -0500548 } else {
Dmitry Monakhova4e5d882011-10-25 08:15:12 -0400549 retval = ext4_ind_map_blocks(handle, inode, map, flags &
550 EXT4_GET_BLOCKS_KEEP_SIZE);
Aneesh Kumar K.V0e855ac2008-01-28 23:58:26 -0500551 }
Zheng Liuf7fec032013-02-18 00:28:47 -0500552 if (retval > 0) {
Theodore Ts'o3be78c72013-08-16 21:22:41 -0400553 unsigned int status;
Zheng Liuf7fec032013-02-18 00:28:47 -0500554
Zheng Liu44fb851d2013-07-29 12:51:42 -0400555 if (unlikely(retval != map->m_len)) {
556 ext4_warning(inode->i_sb,
557 "ES len assertion failed for inode "
558 "%lu: retval %d != map->m_len %d",
559 inode->i_ino, retval, map->m_len);
560 WARN_ON(1);
Dmitry Monakhov921f2662013-03-10 21:01:03 -0400561 }
Dmitry Monakhov921f2662013-03-10 21:01:03 -0400562
Zheng Liuf7fec032013-02-18 00:28:47 -0500563 status = map->m_flags & EXT4_MAP_UNWRITTEN ?
564 EXTENT_STATUS_UNWRITTEN : EXTENT_STATUS_WRITTEN;
565 if (!(flags & EXT4_GET_BLOCKS_DELALLOC_RESERVE) &&
Lukas Czernerd2dc3172015-05-02 21:36:55 -0400566 !(status & EXTENT_STATUS_WRITTEN) &&
Eric Whitneyad431022018-10-01 14:10:39 -0400567 ext4_es_scan_range(inode, &ext4_es_is_delayed, map->m_lblk,
568 map->m_lblk + map->m_len - 1))
Zheng Liuf7fec032013-02-18 00:28:47 -0500569 status |= EXTENT_STATUS_DELAYED;
570 ret = ext4_es_insert_extent(inode, map->m_lblk,
571 map->m_len, map->m_pblk, status);
572 if (ret < 0)
573 retval = ret;
574 }
Jan Kara2dcba472015-12-07 15:04:57 -0500575 up_read((&EXT4_I(inode)->i_data_sem));
Mingming Caof5ab0d12008-02-25 15:29:55 -0500576
Zheng Liud100eef2013-02-18 00:29:59 -0500577found:
Theodore Ts'oe35fd662010-05-16 19:00:00 -0400578 if (retval > 0 && map->m_flags & EXT4_MAP_MAPPED) {
Lukas Czernerb8a86842014-03-18 18:05:35 -0400579 ret = check_block_validity(inode, map);
Theodore Ts'o6fd058f2009-05-17 15:38:01 -0400580 if (ret != 0)
581 return ret;
582 }
583
Mingming Caof5ab0d12008-02-25 15:29:55 -0500584 /* If it is only a block(s) look up */
Theodore Ts'oc2177052009-05-14 00:58:52 -0400585 if ((flags & EXT4_GET_BLOCKS_CREATE) == 0)
Aneesh Kumar K.V4df3d262008-01-28 23:58:29 -0500586 return retval;
587
588 /*
Mingming Caof5ab0d12008-02-25 15:29:55 -0500589 * Returns if the blocks have already allocated
590 *
591 * Note that if blocks have been preallocated
Tao Madf3ab172011-10-08 15:53:49 -0400592 * ext4_ext_get_block() returns the create = 0
Mingming Caof5ab0d12008-02-25 15:29:55 -0500593 * with buffer head unmapped.
594 */
Theodore Ts'oe35fd662010-05-16 19:00:00 -0400595 if (retval > 0 && map->m_flags & EXT4_MAP_MAPPED)
Lukas Czernerb8a86842014-03-18 18:05:35 -0400596 /*
597 * If we need to convert extent to unwritten
598 * we continue and do the actual work in
599 * ext4_ext_map_blocks()
600 */
601 if (!(flags & EXT4_GET_BLOCKS_CONVERT_UNWRITTEN))
602 return retval;
Mingming Caof5ab0d12008-02-25 15:29:55 -0500603
604 /*
Zheng Liua25a4e12013-02-18 00:28:04 -0500605 * Here we clear m_flags because after allocating an new extent,
606 * it will be set again.
Aneesh Kumar K.V2a8964d2009-05-14 17:05:39 -0400607 */
Zheng Liua25a4e12013-02-18 00:28:04 -0500608 map->m_flags &= ~EXT4_MAP_FLAGS;
Aneesh Kumar K.V2a8964d2009-05-14 17:05:39 -0400609
610 /*
Lukas Czerner556615d2014-04-20 23:45:47 -0400611 * New blocks allocate and/or writing to unwritten extent
Mingming Caof5ab0d12008-02-25 15:29:55 -0500612 * will possibly result in updating i_data, so we take
Seunghun Leed91bd2c2014-09-01 22:15:30 -0400613 * the write lock of i_data_sem, and call get_block()
Mingming Caof5ab0d12008-02-25 15:29:55 -0500614 * with create == 1 flag.
Aneesh Kumar K.V4df3d262008-01-28 23:58:29 -0500615 */
Lukas Czernerc8b459f2014-05-12 12:55:07 -0400616 down_write(&EXT4_I(inode)->i_data_sem);
Mingming Caod2a17632008-07-14 17:52:37 -0400617
618 /*
Aneesh Kumar K.V4df3d262008-01-28 23:58:29 -0500619 * We need to check for EXT4 here because migrate
620 * could have changed the inode type in between
621 */
Dmitry Monakhov12e9b892010-05-16 22:00:00 -0400622 if (ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS)) {
Theodore Ts'oe35fd662010-05-16 19:00:00 -0400623 retval = ext4_ext_map_blocks(handle, inode, map, flags);
Aneesh Kumar K.V0e855ac2008-01-28 23:58:26 -0500624 } else {
Theodore Ts'oe35fd662010-05-16 19:00:00 -0400625 retval = ext4_ind_map_blocks(handle, inode, map, flags);
Aneesh Kumar K.V267e4db2008-04-29 08:11:12 -0400626
Theodore Ts'oe35fd662010-05-16 19:00:00 -0400627 if (retval > 0 && map->m_flags & EXT4_MAP_NEW) {
Aneesh Kumar K.V267e4db2008-04-29 08:11:12 -0400628 /*
629 * We allocated new blocks which will result in
630 * i_data's format changing. Force the migrate
631 * to fail by clearing migrate flags
632 */
Theodore Ts'o19f5fb72010-01-24 14:34:07 -0500633 ext4_clear_inode_state(inode, EXT4_STATE_EXT_MIGRATE);
Aneesh Kumar K.V267e4db2008-04-29 08:11:12 -0400634 }
Mingming Caod2a17632008-07-14 17:52:37 -0400635
Aneesh Kumar K.V5f634d02010-01-25 04:00:31 -0500636 /*
637 * Update reserved blocks/metadata blocks after successful
638 * block allocation which had been deferred till now. We don't
639 * support fallocate for non extent files. So we can update
640 * reserve space here.
641 */
642 if ((retval > 0) &&
Aneesh Kumar K.V1296cc82010-01-15 01:27:59 -0500643 (flags & EXT4_GET_BLOCKS_DELALLOC_RESERVE))
Aneesh Kumar K.V5f634d02010-01-25 04:00:31 -0500644 ext4_da_update_reserve_space(inode, retval, 1);
645 }
Theodore Ts'o2ac3b6e2009-05-14 13:57:08 -0400646
Zheng Liuf7fec032013-02-18 00:28:47 -0500647 if (retval > 0) {
Theodore Ts'o3be78c72013-08-16 21:22:41 -0400648 unsigned int status;
Zheng Liuf7fec032013-02-18 00:28:47 -0500649
Zheng Liu44fb851d2013-07-29 12:51:42 -0400650 if (unlikely(retval != map->m_len)) {
651 ext4_warning(inode->i_sb,
652 "ES len assertion failed for inode "
653 "%lu: retval %d != map->m_len %d",
654 inode->i_ino, retval, map->m_len);
655 WARN_ON(1);
Dmitry Monakhov921f2662013-03-10 21:01:03 -0400656 }
Dmitry Monakhov921f2662013-03-10 21:01:03 -0400657
Zheng Liuadb23552013-03-10 21:13:05 -0400658 /*
Jan Karac86d8db2015-12-07 15:10:26 -0500659 * We have to zeroout blocks before inserting them into extent
660 * status tree. Otherwise someone could look them up there and
Jan Kara9b623df2016-09-30 02:02:29 -0400661 * use them before they are really zeroed. We also have to
662 * unmap metadata before zeroing as otherwise writeback can
663 * overwrite zeros with stale data from block device.
Jan Karac86d8db2015-12-07 15:10:26 -0500664 */
665 if (flags & EXT4_GET_BLOCKS_ZERO &&
666 map->m_flags & EXT4_MAP_MAPPED &&
667 map->m_flags & EXT4_MAP_NEW) {
668 ret = ext4_issue_zeroout(inode, map->m_lblk,
669 map->m_pblk, map->m_len);
670 if (ret) {
671 retval = ret;
672 goto out_sem;
673 }
674 }
675
676 /*
Zheng Liuadb23552013-03-10 21:13:05 -0400677 * If the extent has been zeroed out, we don't need to update
678 * extent status tree.
679 */
680 if ((flags & EXT4_GET_BLOCKS_PRE_IO) &&
Theodore Ts'obb5835e2019-08-11 16:32:41 -0400681 ext4_es_lookup_extent(inode, map->m_lblk, NULL, &es)) {
Zheng Liuadb23552013-03-10 21:13:05 -0400682 if (ext4_es_is_written(&es))
Jan Karac86d8db2015-12-07 15:10:26 -0500683 goto out_sem;
Zheng Liuadb23552013-03-10 21:13:05 -0400684 }
Zheng Liuf7fec032013-02-18 00:28:47 -0500685 status = map->m_flags & EXT4_MAP_UNWRITTEN ?
686 EXTENT_STATUS_UNWRITTEN : EXTENT_STATUS_WRITTEN;
687 if (!(flags & EXT4_GET_BLOCKS_DELALLOC_RESERVE) &&
Lukas Czernerd2dc3172015-05-02 21:36:55 -0400688 !(status & EXTENT_STATUS_WRITTEN) &&
Eric Whitneyad431022018-10-01 14:10:39 -0400689 ext4_es_scan_range(inode, &ext4_es_is_delayed, map->m_lblk,
690 map->m_lblk + map->m_len - 1))
Zheng Liuf7fec032013-02-18 00:28:47 -0500691 status |= EXTENT_STATUS_DELAYED;
692 ret = ext4_es_insert_extent(inode, map->m_lblk, map->m_len,
693 map->m_pblk, status);
Jan Karac86d8db2015-12-07 15:10:26 -0500694 if (ret < 0) {
Zheng Liuf7fec032013-02-18 00:28:47 -0500695 retval = ret;
Jan Karac86d8db2015-12-07 15:10:26 -0500696 goto out_sem;
697 }
Aditya Kali5356f2612011-09-09 19:20:51 -0400698 }
699
Jan Karac86d8db2015-12-07 15:10:26 -0500700out_sem:
Aneesh Kumar K.V4df3d262008-01-28 23:58:29 -0500701 up_write((&EXT4_I(inode)->i_data_sem));
Theodore Ts'oe35fd662010-05-16 19:00:00 -0400702 if (retval > 0 && map->m_flags & EXT4_MAP_MAPPED) {
Lukas Czernerb8a86842014-03-18 18:05:35 -0400703 ret = check_block_validity(inode, map);
Theodore Ts'o6fd058f2009-05-17 15:38:01 -0400704 if (ret != 0)
705 return ret;
Jan Kara06bd3c32016-04-24 00:56:03 -0400706
707 /*
708 * Inodes with freshly allocated blocks where contents will be
709 * visible after transaction commit must be on transaction's
710 * ordered data list.
711 */
712 if (map->m_flags & EXT4_MAP_NEW &&
713 !(map->m_flags & EXT4_MAP_UNWRITTEN) &&
714 !(flags & EXT4_GET_BLOCKS_ZERO) &&
Tahsin Erdogan02749a42017-06-22 11:31:25 -0400715 !ext4_is_quota_file(inode) &&
Jan Kara06bd3c32016-04-24 00:56:03 -0400716 ext4_should_order_data(inode)) {
Ross Zwisler73131fb2019-06-20 17:26:26 -0400717 loff_t start_byte =
718 (loff_t)map->m_lblk << inode->i_blkbits;
719 loff_t length = (loff_t)map->m_len << inode->i_blkbits;
720
Jan Karaee0876b2016-04-24 00:56:08 -0400721 if (flags & EXT4_GET_BLOCKS_IO_SUBMIT)
Ross Zwisler73131fb2019-06-20 17:26:26 -0400722 ret = ext4_jbd2_inode_add_wait(handle, inode,
723 start_byte, length);
Jan Karaee0876b2016-04-24 00:56:08 -0400724 else
Ross Zwisler73131fb2019-06-20 17:26:26 -0400725 ret = ext4_jbd2_inode_add_write(handle, inode,
726 start_byte, length);
Jan Kara06bd3c32016-04-24 00:56:03 -0400727 if (ret)
728 return ret;
729 }
Theodore Ts'o6fd058f2009-05-17 15:38:01 -0400730 }
Aneesh Kumar K.V0e855ac2008-01-28 23:58:26 -0500731 return retval;
732}
733
Jan Karaed8ad832016-02-19 00:18:25 -0500734/*
735 * Update EXT4_MAP_FLAGS in bh->b_state. For buffer heads attached to pages
736 * we have to be careful as someone else may be manipulating b_state as well.
737 */
738static void ext4_update_bh_state(struct buffer_head *bh, unsigned long flags)
739{
740 unsigned long old_state;
741 unsigned long new_state;
742
743 flags &= EXT4_MAP_FLAGS;
744
745 /* Dummy buffer_head? Set non-atomically. */
746 if (!bh->b_page) {
747 bh->b_state = (bh->b_state & ~EXT4_MAP_FLAGS) | flags;
748 return;
749 }
750 /*
751 * Someone else may be modifying b_state. Be careful! This is ugly but
752 * once we get rid of using bh as a container for mapping information
753 * to pass to / from get_block functions, this can go away.
754 */
755 do {
756 old_state = READ_ONCE(bh->b_state);
757 new_state = (old_state & ~EXT4_MAP_FLAGS) | flags;
758 } while (unlikely(
759 cmpxchg(&bh->b_state, old_state, new_state) != old_state));
760}
761
Theodore Ts'o2ed88682010-05-16 20:00:00 -0400762static int _ext4_get_block(struct inode *inode, sector_t iblock,
763 struct buffer_head *bh, int flags)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700764{
Theodore Ts'o2ed88682010-05-16 20:00:00 -0400765 struct ext4_map_blocks map;
Jan Karaefe70c22016-03-08 23:35:46 -0500766 int ret = 0;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700767
Tao Ma46c7f252012-12-10 14:04:52 -0500768 if (ext4_has_inline_data(inode))
769 return -ERANGE;
770
Theodore Ts'o2ed88682010-05-16 20:00:00 -0400771 map.m_lblk = iblock;
772 map.m_len = bh->b_size >> inode->i_blkbits;
773
Jan Karaefe70c22016-03-08 23:35:46 -0500774 ret = ext4_map_blocks(ext4_journal_current_handle(), inode, &map,
775 flags);
Jan Kara7fb54092008-02-10 01:08:38 -0500776 if (ret > 0) {
Theodore Ts'o2ed88682010-05-16 20:00:00 -0400777 map_bh(bh, inode->i_sb, map.m_pblk);
Jan Karaed8ad832016-02-19 00:18:25 -0500778 ext4_update_bh_state(bh, map.m_flags);
Theodore Ts'o2ed88682010-05-16 20:00:00 -0400779 bh->b_size = inode->i_sb->s_blocksize * map.m_len;
Jan Kara7fb54092008-02-10 01:08:38 -0500780 ret = 0;
Ross Zwisler547edce2016-11-08 11:30:58 +1100781 } else if (ret == 0) {
782 /* hole case, need to fill in bh->b_size */
783 bh->b_size = inode->i_sb->s_blocksize * map.m_len;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700784 }
785 return ret;
786}
787
Theodore Ts'o2ed88682010-05-16 20:00:00 -0400788int ext4_get_block(struct inode *inode, sector_t iblock,
789 struct buffer_head *bh, int create)
790{
791 return _ext4_get_block(inode, iblock, bh,
792 create ? EXT4_GET_BLOCKS_CREATE : 0);
793}
794
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700795/*
Jan Kara705965b2016-03-08 23:08:10 -0500796 * Get block function used when preparing for buffered write if we require
797 * creating an unwritten extent if blocks haven't been allocated. The extent
798 * will be converted to written after the IO is complete.
799 */
800int ext4_get_block_unwritten(struct inode *inode, sector_t iblock,
801 struct buffer_head *bh_result, int create)
802{
803 ext4_debug("ext4_get_block_unwritten: inode %lu, create flag %d\n",
804 inode->i_ino, create);
805 return _ext4_get_block(inode, iblock, bh_result,
806 EXT4_GET_BLOCKS_IO_CREATE_EXT);
807}
808
Jan Karaefe70c22016-03-08 23:35:46 -0500809/* Maximum number of blocks we map for direct IO at once. */
810#define DIO_MAX_BLOCKS 4096
811
Jan Karae84dfbe2016-04-01 02:07:22 -0400812/*
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700813 * `handle' can be NULL if create is zero
814 */
Mingming Cao617ba132006-10-11 01:20:53 -0700815struct buffer_head *ext4_getblk(handle_t *handle, struct inode *inode,
Theodore Ts'oc5e298a2015-06-21 01:25:29 -0400816 ext4_lblk_t block, int map_flags)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700817{
Theodore Ts'o2ed88682010-05-16 20:00:00 -0400818 struct ext4_map_blocks map;
819 struct buffer_head *bh;
Theodore Ts'oc5e298a2015-06-21 01:25:29 -0400820 int create = map_flags & EXT4_GET_BLOCKS_CREATE;
Theodore Ts'o10560082014-08-29 20:51:32 -0400821 int err;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700822
823 J_ASSERT(handle != NULL || create == 0);
824
Theodore Ts'o2ed88682010-05-16 20:00:00 -0400825 map.m_lblk = block;
826 map.m_len = 1;
Theodore Ts'oc5e298a2015-06-21 01:25:29 -0400827 err = ext4_map_blocks(handle, inode, &map, map_flags);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700828
Theodore Ts'o10560082014-08-29 20:51:32 -0400829 if (err == 0)
830 return create ? ERR_PTR(-ENOSPC) : NULL;
Theodore Ts'o2ed88682010-05-16 20:00:00 -0400831 if (err < 0)
Theodore Ts'o10560082014-08-29 20:51:32 -0400832 return ERR_PTR(err);
Theodore Ts'o2ed88682010-05-16 20:00:00 -0400833
834 bh = sb_getblk(inode->i_sb, map.m_pblk);
Theodore Ts'o10560082014-08-29 20:51:32 -0400835 if (unlikely(!bh))
836 return ERR_PTR(-ENOMEM);
Theodore Ts'o2ed88682010-05-16 20:00:00 -0400837 if (map.m_flags & EXT4_MAP_NEW) {
838 J_ASSERT(create != 0);
839 J_ASSERT(handle != NULL);
840
841 /*
842 * Now that we do not always journal data, we should
843 * keep in mind whether this should always journal the
844 * new buffer as metadata. For now, regular file
845 * writes use ext4_get_block instead, so it's not a
846 * problem.
847 */
848 lock_buffer(bh);
849 BUFFER_TRACE(bh, "call get_create_access");
Theodore Ts'o10560082014-08-29 20:51:32 -0400850 err = ext4_journal_get_create_access(handle, bh);
851 if (unlikely(err)) {
852 unlock_buffer(bh);
853 goto errout;
854 }
855 if (!buffer_uptodate(bh)) {
Theodore Ts'o2ed88682010-05-16 20:00:00 -0400856 memset(bh->b_data, 0, inode->i_sb->s_blocksize);
857 set_buffer_uptodate(bh);
858 }
859 unlock_buffer(bh);
860 BUFFER_TRACE(bh, "call ext4_handle_dirty_metadata");
861 err = ext4_handle_dirty_metadata(handle, inode, bh);
Theodore Ts'o10560082014-08-29 20:51:32 -0400862 if (unlikely(err))
863 goto errout;
864 } else
Theodore Ts'o2ed88682010-05-16 20:00:00 -0400865 BUFFER_TRACE(bh, "not a new buffer");
Theodore Ts'o2ed88682010-05-16 20:00:00 -0400866 return bh;
Theodore Ts'o10560082014-08-29 20:51:32 -0400867errout:
868 brelse(bh);
869 return ERR_PTR(err);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700870}
871
Mingming Cao617ba132006-10-11 01:20:53 -0700872struct buffer_head *ext4_bread(handle_t *handle, struct inode *inode,
Theodore Ts'oc5e298a2015-06-21 01:25:29 -0400873 ext4_lblk_t block, int map_flags)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700874{
Theodore Ts'oaf5bc922008-09-08 22:25:24 -0400875 struct buffer_head *bh;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700876
Theodore Ts'oc5e298a2015-06-21 01:25:29 -0400877 bh = ext4_getblk(handle, inode, block, map_flags);
Theodore Ts'o1c215022014-08-29 20:52:15 -0400878 if (IS_ERR(bh))
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700879 return bh;
ZhangXiaoxu7963e5a2019-08-22 23:00:32 -0400880 if (!bh || ext4_buffer_uptodate(bh))
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700881 return bh;
Mike Christiedfec8a12016-06-05 14:31:44 -0500882 ll_rw_block(REQ_OP_READ, REQ_META | REQ_PRIO, 1, &bh);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700883 wait_on_buffer(bh);
884 if (buffer_uptodate(bh))
885 return bh;
886 put_bh(bh);
Theodore Ts'o1c215022014-08-29 20:52:15 -0400887 return ERR_PTR(-EIO);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700888}
889
Tahsin Erdogan9699d4f2017-08-06 00:07:01 -0400890/* Read a contiguous batch of blocks. */
891int ext4_bread_batch(struct inode *inode, ext4_lblk_t block, int bh_count,
892 bool wait, struct buffer_head **bhs)
893{
894 int i, err;
895
896 for (i = 0; i < bh_count; i++) {
897 bhs[i] = ext4_getblk(NULL, inode, block + i, 0 /* map_flags */);
898 if (IS_ERR(bhs[i])) {
899 err = PTR_ERR(bhs[i]);
900 bh_count = i;
901 goto out_brelse;
902 }
903 }
904
905 for (i = 0; i < bh_count; i++)
906 /* Note that NULL bhs[i] is valid because of holes. */
ZhangXiaoxu7963e5a2019-08-22 23:00:32 -0400907 if (bhs[i] && !ext4_buffer_uptodate(bhs[i]))
Tahsin Erdogan9699d4f2017-08-06 00:07:01 -0400908 ll_rw_block(REQ_OP_READ, REQ_META | REQ_PRIO, 1,
909 &bhs[i]);
910
911 if (!wait)
912 return 0;
913
914 for (i = 0; i < bh_count; i++)
915 if (bhs[i])
916 wait_on_buffer(bhs[i]);
917
918 for (i = 0; i < bh_count; i++) {
919 if (bhs[i] && !buffer_uptodate(bhs[i])) {
920 err = -EIO;
921 goto out_brelse;
922 }
923 }
924 return 0;
925
926out_brelse:
927 for (i = 0; i < bh_count; i++) {
928 brelse(bhs[i]);
929 bhs[i] = NULL;
930 }
931 return err;
932}
933
Tao Maf19d5872012-12-10 14:05:51 -0500934int ext4_walk_page_buffers(handle_t *handle,
935 struct buffer_head *head,
936 unsigned from,
937 unsigned to,
938 int *partial,
939 int (*fn)(handle_t *handle,
940 struct buffer_head *bh))
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700941{
942 struct buffer_head *bh;
943 unsigned block_start, block_end;
944 unsigned blocksize = head->b_size;
945 int err, ret = 0;
946 struct buffer_head *next;
947
Theodore Ts'oaf5bc922008-09-08 22:25:24 -0400948 for (bh = head, block_start = 0;
949 ret == 0 && (bh != head || !block_start);
Theodore Ts'ode9a55b2009-06-14 17:45:34 -0400950 block_start = block_end, bh = next) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700951 next = bh->b_this_page;
952 block_end = block_start + blocksize;
953 if (block_end <= from || block_start >= to) {
954 if (partial && !buffer_uptodate(bh))
955 *partial = 1;
956 continue;
957 }
958 err = (*fn)(handle, bh);
959 if (!ret)
960 ret = err;
961 }
962 return ret;
963}
964
965/*
966 * To preserve ordering, it is essential that the hole instantiation and
967 * the data write be encapsulated in a single transaction. We cannot
Mingming Cao617ba132006-10-11 01:20:53 -0700968 * close off a transaction and start a new one between the ext4_get_block()
Mingming Caodab291a2006-10-11 01:21:01 -0700969 * and the commit_write(). So doing the jbd2_journal_start at the start of
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700970 * prepare_write() is the right place.
971 *
Jan Kara36ade452013-01-28 09:30:52 -0500972 * Also, this function can nest inside ext4_writepage(). In that case, we
973 * *know* that ext4_writepage() has generated enough buffer credits to do the
974 * whole page. So we won't block on the journal in that case, which is good,
975 * because the caller may be PF_MEMALLOC.
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700976 *
Mingming Cao617ba132006-10-11 01:20:53 -0700977 * By accident, ext4 can be reentered when a transaction is open via
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700978 * quota file writes. If we were to commit the transaction while thus
979 * reentered, there can be a deadlock - we would be holding a quota
980 * lock, and the commit would never complete if another thread had a
981 * transaction open and was blocking on the quota lock - a ranking
982 * violation.
983 *
Mingming Caodab291a2006-10-11 01:21:01 -0700984 * So what we do is to rely on the fact that jbd2_journal_stop/journal_start
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700985 * will _not_ run commit under these circumstances because handle->h_ref
986 * is elevated. We'll still have enough credits for the tiny quotafile
987 * write.
988 */
Tao Maf19d5872012-12-10 14:05:51 -0500989int do_journal_get_write_access(handle_t *handle,
990 struct buffer_head *bh)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700991{
Jan Kara56d35a42010-08-05 14:41:42 -0400992 int dirty = buffer_dirty(bh);
993 int ret;
994
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700995 if (!buffer_mapped(bh) || buffer_freed(bh))
996 return 0;
Jan Kara56d35a42010-08-05 14:41:42 -0400997 /*
Christoph Hellwigebdec242010-10-06 10:47:23 +0200998 * __block_write_begin() could have dirtied some buffers. Clean
Jan Kara56d35a42010-08-05 14:41:42 -0400999 * the dirty bit as jbd2_journal_get_write_access() could complain
1000 * otherwise about fs integrity issues. Setting of the dirty bit
Christoph Hellwigebdec242010-10-06 10:47:23 +02001001 * by __block_write_begin() isn't a real problem here as we clear
Jan Kara56d35a42010-08-05 14:41:42 -04001002 * the bit before releasing a page lock and thus writeback cannot
1003 * ever write the buffer.
1004 */
1005 if (dirty)
1006 clear_buffer_dirty(bh);
liang xie5d601252014-05-12 22:06:43 -04001007 BUFFER_TRACE(bh, "get write access");
Jan Kara56d35a42010-08-05 14:41:42 -04001008 ret = ext4_journal_get_write_access(handle, bh);
1009 if (!ret && dirty)
1010 ret = ext4_handle_dirty_metadata(handle, NULL, bh);
1011 return ret;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001012}
1013
Chandan Rajendra643fa962018-12-12 15:20:12 +05301014#ifdef CONFIG_FS_ENCRYPTION
Michael Halcrow2058f832015-04-12 00:55:10 -04001015static int ext4_block_write_begin(struct page *page, loff_t pos, unsigned len,
1016 get_block_t *get_block)
1017{
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001018 unsigned from = pos & (PAGE_SIZE - 1);
Michael Halcrow2058f832015-04-12 00:55:10 -04001019 unsigned to = from + len;
1020 struct inode *inode = page->mapping->host;
1021 unsigned block_start, block_end;
1022 sector_t block;
1023 int err = 0;
1024 unsigned blocksize = inode->i_sb->s_blocksize;
1025 unsigned bbits;
Chandan Rajendra0b578f32019-05-20 09:29:50 -07001026 struct buffer_head *bh, *head, *wait[2];
1027 int nr_wait = 0;
1028 int i;
Michael Halcrow2058f832015-04-12 00:55:10 -04001029
1030 BUG_ON(!PageLocked(page));
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001031 BUG_ON(from > PAGE_SIZE);
1032 BUG_ON(to > PAGE_SIZE);
Michael Halcrow2058f832015-04-12 00:55:10 -04001033 BUG_ON(from > to);
1034
1035 if (!page_has_buffers(page))
1036 create_empty_buffers(page, blocksize, 0);
1037 head = page_buffers(page);
1038 bbits = ilog2(blocksize);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001039 block = (sector_t)page->index << (PAGE_SHIFT - bbits);
Michael Halcrow2058f832015-04-12 00:55:10 -04001040
1041 for (bh = head, block_start = 0; bh != head || !block_start;
1042 block++, block_start = block_end, bh = bh->b_this_page) {
1043 block_end = block_start + blocksize;
1044 if (block_end <= from || block_start >= to) {
1045 if (PageUptodate(page)) {
1046 if (!buffer_uptodate(bh))
1047 set_buffer_uptodate(bh);
1048 }
1049 continue;
1050 }
1051 if (buffer_new(bh))
1052 clear_buffer_new(bh);
1053 if (!buffer_mapped(bh)) {
1054 WARN_ON(bh->b_size != blocksize);
1055 err = get_block(inode, block, bh, 1);
1056 if (err)
1057 break;
1058 if (buffer_new(bh)) {
Michael Halcrow2058f832015-04-12 00:55:10 -04001059 if (PageUptodate(page)) {
1060 clear_buffer_new(bh);
1061 set_buffer_uptodate(bh);
1062 mark_buffer_dirty(bh);
1063 continue;
1064 }
1065 if (block_end > to || block_start < from)
1066 zero_user_segments(page, to, block_end,
1067 block_start, from);
1068 continue;
1069 }
1070 }
1071 if (PageUptodate(page)) {
1072 if (!buffer_uptodate(bh))
1073 set_buffer_uptodate(bh);
1074 continue;
1075 }
1076 if (!buffer_uptodate(bh) && !buffer_delay(bh) &&
1077 !buffer_unwritten(bh) &&
1078 (block_start < from || block_end > to)) {
Mike Christiedfec8a12016-06-05 14:31:44 -05001079 ll_rw_block(REQ_OP_READ, 0, 1, &bh);
Chandan Rajendra0b578f32019-05-20 09:29:50 -07001080 wait[nr_wait++] = bh;
Michael Halcrow2058f832015-04-12 00:55:10 -04001081 }
1082 }
1083 /*
1084 * If we issued read requests, let them complete.
1085 */
Chandan Rajendra0b578f32019-05-20 09:29:50 -07001086 for (i = 0; i < nr_wait; i++) {
1087 wait_on_buffer(wait[i]);
1088 if (!buffer_uptodate(wait[i]))
Michael Halcrow2058f832015-04-12 00:55:10 -04001089 err = -EIO;
1090 }
Chandan Rajendra7e0785f2019-05-20 09:29:49 -07001091 if (unlikely(err)) {
Michael Halcrow2058f832015-04-12 00:55:10 -04001092 page_zero_new_buffers(page, from, to);
Chandan Rajendra0b578f32019-05-20 09:29:50 -07001093 } else if (IS_ENCRYPTED(inode) && S_ISREG(inode->i_mode)) {
1094 for (i = 0; i < nr_wait; i++) {
1095 int err2;
1096
1097 err2 = fscrypt_decrypt_pagecache_blocks(page, blocksize,
1098 bh_offset(wait[i]));
1099 if (err2) {
1100 clear_buffer_uptodate(wait[i]);
1101 err = err2;
1102 }
1103 }
Chandan Rajendra7e0785f2019-05-20 09:29:49 -07001104 }
1105
Michael Halcrow2058f832015-04-12 00:55:10 -04001106 return err;
1107}
1108#endif
1109
Nick Pigginbfc1af62007-10-16 01:25:05 -07001110static int ext4_write_begin(struct file *file, struct address_space *mapping,
Theodore Ts'ode9a55b2009-06-14 17:45:34 -04001111 loff_t pos, unsigned len, unsigned flags,
1112 struct page **pagep, void **fsdata)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001113{
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04001114 struct inode *inode = mapping->host;
Aneesh Kumar K.V1938a152009-06-05 01:00:26 -04001115 int ret, needed_blocks;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001116 handle_t *handle;
1117 int retries = 0;
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04001118 struct page *page;
Theodore Ts'ode9a55b2009-06-14 17:45:34 -04001119 pgoff_t index;
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04001120 unsigned from, to;
Nick Pigginbfc1af62007-10-16 01:25:05 -07001121
Theodore Ts'o0db1ff22017-02-05 01:28:48 -05001122 if (unlikely(ext4_forced_shutdown(EXT4_SB(inode->i_sb))))
1123 return -EIO;
1124
Theodore Ts'o9bffad12009-06-17 11:48:11 -04001125 trace_ext4_write_begin(inode, pos, len, flags);
Aneesh Kumar K.V1938a152009-06-05 01:00:26 -04001126 /*
1127 * Reserve one block more for addition to orphan list in case
1128 * we allocate blocks but write fails for some reason
1129 */
1130 needed_blocks = ext4_writepage_trans_blocks(inode) + 1;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001131 index = pos >> PAGE_SHIFT;
1132 from = pos & (PAGE_SIZE - 1);
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04001133 to = from + len;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001134
Tao Maf19d5872012-12-10 14:05:51 -05001135 if (ext4_test_inode_state(inode, EXT4_STATE_MAY_INLINE_DATA)) {
1136 ret = ext4_try_to_write_inline_data(mapping, inode, pos, len,
1137 flags, pagep);
1138 if (ret < 0)
Theodore Ts'o47564bf2013-02-09 09:24:14 -05001139 return ret;
1140 if (ret == 1)
1141 return 0;
Tao Maf19d5872012-12-10 14:05:51 -05001142 }
1143
Theodore Ts'o47564bf2013-02-09 09:24:14 -05001144 /*
1145 * grab_cache_page_write_begin() can take a long time if the
1146 * system is thrashing due to memory pressure, or if the page
1147 * is being written back. So grab it first before we start
1148 * the transaction handle. This also allows us to allocate
1149 * the page (if needed) without using GFP_NOFS.
1150 */
1151retry_grab:
Nick Piggin54566b22009-01-04 12:00:53 -08001152 page = grab_cache_page_write_begin(mapping, index, flags);
Theodore Ts'o47564bf2013-02-09 09:24:14 -05001153 if (!page)
1154 return -ENOMEM;
1155 unlock_page(page);
1156
1157retry_journal:
Theodore Ts'o9924a922013-02-08 21:59:22 -05001158 handle = ext4_journal_start(inode, EXT4_HT_WRITE_PAGE, needed_blocks);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001159 if (IS_ERR(handle)) {
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001160 put_page(page);
Theodore Ts'o47564bf2013-02-09 09:24:14 -05001161 return PTR_ERR(handle);
Jan Karacf108bc2008-07-11 19:27:31 -04001162 }
Tao Maf19d5872012-12-10 14:05:51 -05001163
Theodore Ts'o47564bf2013-02-09 09:24:14 -05001164 lock_page(page);
1165 if (page->mapping != mapping) {
1166 /* The page got truncated from under us */
1167 unlock_page(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001168 put_page(page);
Jan Karacf108bc2008-07-11 19:27:31 -04001169 ext4_journal_stop(handle);
Theodore Ts'o47564bf2013-02-09 09:24:14 -05001170 goto retry_grab;
Jan Karacf108bc2008-07-11 19:27:31 -04001171 }
Dmitry Monakhov7afe5aa2013-08-28 14:30:47 -04001172 /* In case writeback began while the page was unlocked */
1173 wait_for_stable_page(page);
Jan Karacf108bc2008-07-11 19:27:31 -04001174
Chandan Rajendra643fa962018-12-12 15:20:12 +05301175#ifdef CONFIG_FS_ENCRYPTION
Michael Halcrow2058f832015-04-12 00:55:10 -04001176 if (ext4_should_dioread_nolock(inode))
1177 ret = ext4_block_write_begin(page, pos, len,
Jan Kara705965b2016-03-08 23:08:10 -05001178 ext4_get_block_unwritten);
Michael Halcrow2058f832015-04-12 00:55:10 -04001179 else
1180 ret = ext4_block_write_begin(page, pos, len,
1181 ext4_get_block);
1182#else
Jiaying Zhang744692d2010-03-04 16:14:02 -05001183 if (ext4_should_dioread_nolock(inode))
Jan Kara705965b2016-03-08 23:08:10 -05001184 ret = __block_write_begin(page, pos, len,
1185 ext4_get_block_unwritten);
Jiaying Zhang744692d2010-03-04 16:14:02 -05001186 else
Christoph Hellwig6e1db882010-06-04 11:29:57 +02001187 ret = __block_write_begin(page, pos, len, ext4_get_block);
Michael Halcrow2058f832015-04-12 00:55:10 -04001188#endif
Nick Pigginbfc1af62007-10-16 01:25:05 -07001189 if (!ret && ext4_should_journal_data(inode)) {
Tao Maf19d5872012-12-10 14:05:51 -05001190 ret = ext4_walk_page_buffers(handle, page_buffers(page),
1191 from, to, NULL,
1192 do_journal_get_write_access);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001193 }
Nick Pigginbfc1af62007-10-16 01:25:05 -07001194
1195 if (ret) {
Eric Biggersc93d8f82019-07-22 09:26:24 -07001196 bool extended = (pos + len > inode->i_size) &&
1197 !ext4_verity_in_progress(inode);
1198
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04001199 unlock_page(page);
Aneesh Kumar K.Vae4d5372008-09-13 13:10:25 -04001200 /*
Christoph Hellwig6e1db882010-06-04 11:29:57 +02001201 * __block_write_begin may have instantiated a few blocks
Aneesh Kumar K.Vae4d5372008-09-13 13:10:25 -04001202 * outside i_size. Trim these off again. Don't need
1203 * i_size_read because we hold i_mutex.
Aneesh Kumar K.V1938a152009-06-05 01:00:26 -04001204 *
1205 * Add inode to orphan list in case we crash before
1206 * truncate finishes
Aneesh Kumar K.Vae4d5372008-09-13 13:10:25 -04001207 */
Eric Biggersc93d8f82019-07-22 09:26:24 -07001208 if (extended && ext4_can_truncate(inode))
Aneesh Kumar K.V1938a152009-06-05 01:00:26 -04001209 ext4_orphan_add(handle, inode);
1210
1211 ext4_journal_stop(handle);
Eric Biggersc93d8f82019-07-22 09:26:24 -07001212 if (extended) {
Jan Karab9a42072009-12-08 21:24:33 -05001213 ext4_truncate_failed_write(inode);
Theodore Ts'ode9a55b2009-06-14 17:45:34 -04001214 /*
Jan Karaffacfa72009-07-13 16:22:22 -04001215 * If truncate failed early the inode might
Aneesh Kumar K.V1938a152009-06-05 01:00:26 -04001216 * still be on the orphan list; we need to
1217 * make sure the inode is removed from the
1218 * orphan list in that case.
1219 */
1220 if (inode->i_nlink)
1221 ext4_orphan_del(NULL, inode);
1222 }
Nick Pigginbfc1af62007-10-16 01:25:05 -07001223
Theodore Ts'o47564bf2013-02-09 09:24:14 -05001224 if (ret == -ENOSPC &&
1225 ext4_should_retry_alloc(inode->i_sb, &retries))
1226 goto retry_journal;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001227 put_page(page);
Theodore Ts'o47564bf2013-02-09 09:24:14 -05001228 return ret;
1229 }
1230 *pagep = page;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001231 return ret;
1232}
1233
Nick Pigginbfc1af62007-10-16 01:25:05 -07001234/* For write_end() in data=journal mode */
1235static int write_end_fn(handle_t *handle, struct buffer_head *bh)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001236{
Theodore Ts'o13fca322013-04-21 16:45:54 -04001237 int ret;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001238 if (!buffer_mapped(bh) || buffer_freed(bh))
1239 return 0;
1240 set_buffer_uptodate(bh);
Theodore Ts'o13fca322013-04-21 16:45:54 -04001241 ret = ext4_handle_dirty_metadata(handle, NULL, bh);
1242 clear_buffer_meta(bh);
1243 clear_buffer_prio(bh);
1244 return ret;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001245}
1246
Zheng Liueed43332013-04-03 12:41:17 -04001247/*
1248 * We need to pick up the new inode size which generic_commit_write gave us
1249 * `file' can be NULL - eg, when called from page_symlink().
1250 *
1251 * ext4 never places buffers on inode->i_mapping->private_list. metadata
1252 * buffers are managed internally.
1253 */
1254static int ext4_write_end(struct file *file,
1255 struct address_space *mapping,
1256 loff_t pos, unsigned len, unsigned copied,
1257 struct page *page, void *fsdata)
Aneesh Kumar K.Vf8514082009-06-05 00:56:49 -04001258{
Aneesh Kumar K.Vf8514082009-06-05 00:56:49 -04001259 handle_t *handle = ext4_journal_current_handle();
Zheng Liueed43332013-04-03 12:41:17 -04001260 struct inode *inode = mapping->host;
Xiaoguang Wang05726392015-02-12 23:00:17 -05001261 loff_t old_size = inode->i_size;
Zheng Liueed43332013-04-03 12:41:17 -04001262 int ret = 0, ret2;
1263 int i_size_changed = 0;
Theodore Ts'o362eca72018-07-10 01:07:43 -04001264 int inline_data = ext4_has_inline_data(inode);
Eric Biggersc93d8f82019-07-22 09:26:24 -07001265 bool verity = ext4_verity_in_progress(inode);
Zheng Liueed43332013-04-03 12:41:17 -04001266
1267 trace_ext4_write_end(inode, pos, len, copied);
Theodore Ts'o362eca72018-07-10 01:07:43 -04001268 if (inline_data) {
Theodore Ts'o42c832d2013-07-01 08:12:39 -04001269 ret = ext4_write_inline_data_end(inode, pos, len,
1270 copied, page);
Theodore Ts'oeb5efbc2017-02-04 23:04:00 -05001271 if (ret < 0) {
1272 unlock_page(page);
1273 put_page(page);
Theodore Ts'o42c832d2013-07-01 08:12:39 -04001274 goto errout;
Theodore Ts'oeb5efbc2017-02-04 23:04:00 -05001275 }
Theodore Ts'o42c832d2013-07-01 08:12:39 -04001276 copied = ret;
1277 } else
Tao Maf19d5872012-12-10 14:05:51 -05001278 copied = block_write_end(file, mapping, pos,
1279 len, copied, page, fsdata);
Aneesh Kumar K.Vf8514082009-06-05 00:56:49 -04001280 /*
Dmitry Monakhov4631dbf2014-08-23 17:48:28 -04001281 * it's important to update i_size while still holding page lock:
Aneesh Kumar K.Vf8514082009-06-05 00:56:49 -04001282 * page writeout could otherwise come in and zero beyond i_size.
Eric Biggersc93d8f82019-07-22 09:26:24 -07001283 *
1284 * If FS_IOC_ENABLE_VERITY is running on this inode, then Merkle tree
1285 * blocks are being written past EOF, so skip the i_size update.
Aneesh Kumar K.Vf8514082009-06-05 00:56:49 -04001286 */
Eric Biggersc93d8f82019-07-22 09:26:24 -07001287 if (!verity)
1288 i_size_changed = ext4_update_inode_size(inode, pos + copied);
Aneesh Kumar K.Vf8514082009-06-05 00:56:49 -04001289 unlock_page(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001290 put_page(page);
Aneesh Kumar K.Vf8514082009-06-05 00:56:49 -04001291
Eric Biggersc93d8f82019-07-22 09:26:24 -07001292 if (old_size < pos && !verity)
Xiaoguang Wang05726392015-02-12 23:00:17 -05001293 pagecache_isize_extended(inode, old_size, pos);
Aneesh Kumar K.Vf8514082009-06-05 00:56:49 -04001294 /*
1295 * Don't mark the inode dirty under page lock. First, it unnecessarily
1296 * makes the holding time of page lock longer. Second, it forces lock
1297 * ordering of page lock and transaction start for journaling
1298 * filesystems.
1299 */
Theodore Ts'o362eca72018-07-10 01:07:43 -04001300 if (i_size_changed || inline_data)
Aneesh Kumar K.Vf8514082009-06-05 00:56:49 -04001301 ext4_mark_inode_dirty(handle, inode);
1302
Eric Biggersc93d8f82019-07-22 09:26:24 -07001303 if (pos + len > inode->i_size && !verity && ext4_can_truncate(inode))
Aneesh Kumar K.Vf8514082009-06-05 00:56:49 -04001304 /* if we have allocated more blocks and copied
1305 * less. We will have blocks allocated outside
1306 * inode->i_size. So truncate them
1307 */
1308 ext4_orphan_add(handle, inode);
Theodore Ts'o74d553a2013-04-03 12:39:17 -04001309errout:
Mingming Cao617ba132006-10-11 01:20:53 -07001310 ret2 = ext4_journal_stop(handle);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001311 if (!ret)
1312 ret = ret2;
Nick Pigginbfc1af62007-10-16 01:25:05 -07001313
Eric Biggersc93d8f82019-07-22 09:26:24 -07001314 if (pos + len > inode->i_size && !verity) {
Jan Karab9a42072009-12-08 21:24:33 -05001315 ext4_truncate_failed_write(inode);
Theodore Ts'ode9a55b2009-06-14 17:45:34 -04001316 /*
Jan Karaffacfa72009-07-13 16:22:22 -04001317 * If truncate failed early the inode might still be
Aneesh Kumar K.Vf8514082009-06-05 00:56:49 -04001318 * on the orphan list; we need to make sure the inode
1319 * is removed from the orphan list in that case.
1320 */
1321 if (inode->i_nlink)
1322 ext4_orphan_del(NULL, inode);
1323 }
1324
Nick Pigginbfc1af62007-10-16 01:25:05 -07001325 return ret ? ret : copied;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001326}
1327
Theodore Ts'ob90197b2015-10-15 10:29:05 -04001328/*
1329 * This is a private version of page_zero_new_buffers() which doesn't
1330 * set the buffer to be dirty, since in data=journalled mode we need
1331 * to call ext4_handle_dirty_metadata() instead.
1332 */
Jan Kara3b136492017-01-27 14:35:38 -05001333static void ext4_journalled_zero_new_buffers(handle_t *handle,
1334 struct page *page,
1335 unsigned from, unsigned to)
Theodore Ts'ob90197b2015-10-15 10:29:05 -04001336{
1337 unsigned int block_start = 0, block_end;
1338 struct buffer_head *head, *bh;
1339
1340 bh = head = page_buffers(page);
1341 do {
1342 block_end = block_start + bh->b_size;
1343 if (buffer_new(bh)) {
1344 if (block_end > from && block_start < to) {
1345 if (!PageUptodate(page)) {
1346 unsigned start, size;
1347
1348 start = max(from, block_start);
1349 size = min(to, block_end) - start;
1350
1351 zero_user(page, start, size);
Jan Kara3b136492017-01-27 14:35:38 -05001352 write_end_fn(handle, bh);
Theodore Ts'ob90197b2015-10-15 10:29:05 -04001353 }
1354 clear_buffer_new(bh);
1355 }
1356 }
1357 block_start = block_end;
1358 bh = bh->b_this_page;
1359 } while (bh != head);
1360}
1361
Nick Pigginbfc1af62007-10-16 01:25:05 -07001362static int ext4_journalled_write_end(struct file *file,
Theodore Ts'ode9a55b2009-06-14 17:45:34 -04001363 struct address_space *mapping,
1364 loff_t pos, unsigned len, unsigned copied,
1365 struct page *page, void *fsdata)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001366{
Mingming Cao617ba132006-10-11 01:20:53 -07001367 handle_t *handle = ext4_journal_current_handle();
Nick Pigginbfc1af62007-10-16 01:25:05 -07001368 struct inode *inode = mapping->host;
Xiaoguang Wang05726392015-02-12 23:00:17 -05001369 loff_t old_size = inode->i_size;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001370 int ret = 0, ret2;
1371 int partial = 0;
Nick Pigginbfc1af62007-10-16 01:25:05 -07001372 unsigned from, to;
Dmitry Monakhov4631dbf2014-08-23 17:48:28 -04001373 int size_changed = 0;
Theodore Ts'o362eca72018-07-10 01:07:43 -04001374 int inline_data = ext4_has_inline_data(inode);
Eric Biggersc93d8f82019-07-22 09:26:24 -07001375 bool verity = ext4_verity_in_progress(inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001376
Theodore Ts'o9bffad12009-06-17 11:48:11 -04001377 trace_ext4_journalled_write_end(inode, pos, len, copied);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001378 from = pos & (PAGE_SIZE - 1);
Nick Pigginbfc1af62007-10-16 01:25:05 -07001379 to = from + len;
1380
Curt Wohlgemuth441c8502011-08-13 11:25:18 -04001381 BUG_ON(!ext4_handle_valid(handle));
1382
Theodore Ts'o362eca72018-07-10 01:07:43 -04001383 if (inline_data) {
Theodore Ts'oeb5efbc2017-02-04 23:04:00 -05001384 ret = ext4_write_inline_data_end(inode, pos, len,
1385 copied, page);
1386 if (ret < 0) {
1387 unlock_page(page);
1388 put_page(page);
1389 goto errout;
1390 }
1391 copied = ret;
1392 } else if (unlikely(copied < len) && !PageUptodate(page)) {
Jan Kara3b136492017-01-27 14:35:38 -05001393 copied = 0;
1394 ext4_journalled_zero_new_buffers(handle, page, from, to);
1395 } else {
1396 if (unlikely(copied < len))
1397 ext4_journalled_zero_new_buffers(handle, page,
1398 from + copied, to);
Tao Ma3fdcfb62012-12-10 14:05:57 -05001399 ret = ext4_walk_page_buffers(handle, page_buffers(page), from,
Jan Kara3b136492017-01-27 14:35:38 -05001400 from + copied, &partial,
1401 write_end_fn);
Tao Ma3fdcfb62012-12-10 14:05:57 -05001402 if (!partial)
1403 SetPageUptodate(page);
1404 }
Eric Biggersc93d8f82019-07-22 09:26:24 -07001405 if (!verity)
1406 size_changed = ext4_update_inode_size(inode, pos + copied);
Theodore Ts'o19f5fb72010-01-24 14:34:07 -05001407 ext4_set_inode_state(inode, EXT4_STATE_JDATA);
Jan Kara2d859db2011-07-26 09:07:11 -04001408 EXT4_I(inode)->i_datasync_tid = handle->h_transaction->t_tid;
Dmitry Monakhov4631dbf2014-08-23 17:48:28 -04001409 unlock_page(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001410 put_page(page);
Dmitry Monakhov4631dbf2014-08-23 17:48:28 -04001411
Eric Biggersc93d8f82019-07-22 09:26:24 -07001412 if (old_size < pos && !verity)
Xiaoguang Wang05726392015-02-12 23:00:17 -05001413 pagecache_isize_extended(inode, old_size, pos);
1414
Theodore Ts'o362eca72018-07-10 01:07:43 -04001415 if (size_changed || inline_data) {
Mingming Cao617ba132006-10-11 01:20:53 -07001416 ret2 = ext4_mark_inode_dirty(handle, inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001417 if (!ret)
1418 ret = ret2;
1419 }
Nick Pigginbfc1af62007-10-16 01:25:05 -07001420
Eric Biggersc93d8f82019-07-22 09:26:24 -07001421 if (pos + len > inode->i_size && !verity && ext4_can_truncate(inode))
Aneesh Kumar K.Vf8514082009-06-05 00:56:49 -04001422 /* if we have allocated more blocks and copied
1423 * less. We will have blocks allocated outside
1424 * inode->i_size. So truncate them
1425 */
1426 ext4_orphan_add(handle, inode);
1427
Theodore Ts'oeb5efbc2017-02-04 23:04:00 -05001428errout:
Mingming Cao617ba132006-10-11 01:20:53 -07001429 ret2 = ext4_journal_stop(handle);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001430 if (!ret)
1431 ret = ret2;
Eric Biggersc93d8f82019-07-22 09:26:24 -07001432 if (pos + len > inode->i_size && !verity) {
Jan Karab9a42072009-12-08 21:24:33 -05001433 ext4_truncate_failed_write(inode);
Theodore Ts'ode9a55b2009-06-14 17:45:34 -04001434 /*
Jan Karaffacfa72009-07-13 16:22:22 -04001435 * If truncate failed early the inode might still be
Aneesh Kumar K.Vf8514082009-06-05 00:56:49 -04001436 * on the orphan list; we need to make sure the inode
1437 * is removed from the orphan list in that case.
1438 */
1439 if (inode->i_nlink)
1440 ext4_orphan_del(NULL, inode);
1441 }
Nick Pigginbfc1af62007-10-16 01:25:05 -07001442
1443 return ret ? ret : copied;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001444}
Mingming Caod2a17632008-07-14 17:52:37 -04001445
Theodore Ts'o9d0be502010-01-01 02:41:30 -05001446/*
Eric Whitneyc27e43a2015-06-21 21:37:05 -04001447 * Reserve space for a single cluster
Theodore Ts'o9d0be502010-01-01 02:41:30 -05001448 */
Eric Whitneyc27e43a2015-06-21 21:37:05 -04001449static int ext4_da_reserve_space(struct inode *inode)
Mingming Caod2a17632008-07-14 17:52:37 -04001450{
Mingming Cao60e58e02009-01-22 18:13:05 +01001451 struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb);
Theodore Ts'o0637c6f2009-12-30 14:20:45 -05001452 struct ext4_inode_info *ei = EXT4_I(inode);
Christoph Hellwig5dd40562010-03-03 09:05:00 -05001453 int ret;
Mingming Caod2a17632008-07-14 17:52:37 -04001454
Mingming Cao60e58e02009-01-22 18:13:05 +01001455 /*
Eric Sandeen72b8ab92010-05-16 11:00:00 -04001456 * We will charge metadata quota at writeout time; this saves
1457 * us from metadata over-estimation, though we may go over by
1458 * a small amount in the end. Here we just reserve for data.
Mingming Cao60e58e02009-01-22 18:13:05 +01001459 */
Aditya Kali7b415bf2011-09-09 19:04:51 -04001460 ret = dquot_reserve_block(inode, EXT4_C2B(sbi, 1));
Christoph Hellwig5dd40562010-03-03 09:05:00 -05001461 if (ret)
1462 return ret;
Theodore Ts'o03179fe2012-07-23 00:00:20 -04001463
Theodore Ts'o03179fe2012-07-23 00:00:20 -04001464 spin_lock(&ei->i_block_reservation_lock);
Theodore Ts'o71d4f7d2014-07-15 06:02:38 -04001465 if (ext4_claim_free_clusters(sbi, 1, 0)) {
Theodore Ts'o03179fe2012-07-23 00:00:20 -04001466 spin_unlock(&ei->i_block_reservation_lock);
Theodore Ts'o03179fe2012-07-23 00:00:20 -04001467 dquot_release_reservation_block(inode, EXT4_C2B(sbi, 1));
Mingming Caod2a17632008-07-14 17:52:37 -04001468 return -ENOSPC;
1469 }
Theodore Ts'o9d0be502010-01-01 02:41:30 -05001470 ei->i_reserved_data_blocks++;
Eric Whitneyc27e43a2015-06-21 21:37:05 -04001471 trace_ext4_da_reserve_space(inode);
Theodore Ts'o0637c6f2009-12-30 14:20:45 -05001472 spin_unlock(&ei->i_block_reservation_lock);
Dmitry Monakhov39bc6802009-12-10 16:36:27 +00001473
Mingming Caod2a17632008-07-14 17:52:37 -04001474 return 0; /* success */
1475}
1476
Eric Whitneyf4567672018-10-01 14:33:24 -04001477void ext4_da_release_space(struct inode *inode, int to_free)
Mingming Caod2a17632008-07-14 17:52:37 -04001478{
1479 struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb);
Theodore Ts'o0637c6f2009-12-30 14:20:45 -05001480 struct ext4_inode_info *ei = EXT4_I(inode);
Mingming Caod2a17632008-07-14 17:52:37 -04001481
Mingming Caocd213222008-08-19 22:16:59 -04001482 if (!to_free)
1483 return; /* Nothing to release, exit */
1484
Mingming Caod2a17632008-07-14 17:52:37 -04001485 spin_lock(&EXT4_I(inode)->i_block_reservation_lock);
Mingming Caocd213222008-08-19 22:16:59 -04001486
Li Zefan5a58ec872010-05-17 02:00:00 -04001487 trace_ext4_da_release_space(inode, to_free);
Theodore Ts'o0637c6f2009-12-30 14:20:45 -05001488 if (unlikely(to_free > ei->i_reserved_data_blocks)) {
Mingming Caocd213222008-08-19 22:16:59 -04001489 /*
Theodore Ts'o0637c6f2009-12-30 14:20:45 -05001490 * if there aren't enough reserved blocks, then the
1491 * counter is messed up somewhere. Since this
1492 * function is called from invalidate page, it's
1493 * harmless to return without any action.
Mingming Caocd213222008-08-19 22:16:59 -04001494 */
Theodore Ts'o8de5c322013-02-14 15:11:41 -05001495 ext4_warning(inode->i_sb, "ext4_da_release_space: "
Theodore Ts'o0637c6f2009-12-30 14:20:45 -05001496 "ino %lu, to_free %d with only %d reserved "
Theodore Ts'o1084f252012-03-19 23:13:43 -04001497 "data blocks", inode->i_ino, to_free,
Theodore Ts'o0637c6f2009-12-30 14:20:45 -05001498 ei->i_reserved_data_blocks);
1499 WARN_ON(1);
1500 to_free = ei->i_reserved_data_blocks;
1501 }
1502 ei->i_reserved_data_blocks -= to_free;
1503
Eric Sandeen72b8ab92010-05-16 11:00:00 -04001504 /* update fs dirty data blocks counter */
Theodore Ts'o57042652011-09-09 18:56:51 -04001505 percpu_counter_sub(&sbi->s_dirtyclusters_counter, to_free);
Mingming Caod2a17632008-07-14 17:52:37 -04001506
Mingming Caod2a17632008-07-14 17:52:37 -04001507 spin_unlock(&EXT4_I(inode)->i_block_reservation_lock);
Mingming Cao60e58e02009-01-22 18:13:05 +01001508
Aditya Kali7b415bf2011-09-09 19:04:51 -04001509 dquot_release_reservation_block(inode, EXT4_C2B(sbi, to_free));
Mingming Caod2a17632008-07-14 17:52:37 -04001510}
1511
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001512/*
Alex Tomas64769242008-07-11 19:27:31 -04001513 * Delayed allocation stuff
1514 */
1515
Jan Kara4e7ea812013-06-04 13:17:40 -04001516struct mpage_da_data {
1517 struct inode *inode;
1518 struct writeback_control *wbc;
Jan Kara6b523df2013-06-04 13:21:11 -04001519
Jan Kara4e7ea812013-06-04 13:17:40 -04001520 pgoff_t first_page; /* The first page to write */
1521 pgoff_t next_page; /* Current page to examine */
1522 pgoff_t last_page; /* Last page to examine */
Aneesh Kumar K.V791b7f02009-01-05 21:50:43 -05001523 /*
Jan Kara4e7ea812013-06-04 13:17:40 -04001524 * Extent to map - this can be after first_page because that can be
1525 * fully mapped. We somewhat abuse m_flags to store whether the extent
1526 * is delalloc or unwritten.
Aneesh Kumar K.V791b7f02009-01-05 21:50:43 -05001527 */
Jan Kara4e7ea812013-06-04 13:17:40 -04001528 struct ext4_map_blocks map;
1529 struct ext4_io_submit io_submit; /* IO submission data */
Jan Karadddbd6a2017-04-30 18:29:10 -04001530 unsigned int do_map:1;
Jan Kara4e7ea812013-06-04 13:17:40 -04001531};
Alex Tomas64769242008-07-11 19:27:31 -04001532
Jan Kara4e7ea812013-06-04 13:17:40 -04001533static void mpage_release_unused_pages(struct mpage_da_data *mpd,
1534 bool invalidate)
Aneesh Kumar K.Vc4a0c462008-08-19 21:08:18 -04001535{
1536 int nr_pages, i;
1537 pgoff_t index, end;
1538 struct pagevec pvec;
1539 struct inode *inode = mpd->inode;
1540 struct address_space *mapping = inode->i_mapping;
Jan Kara4e7ea812013-06-04 13:17:40 -04001541
1542 /* This is necessary when next_page == 0. */
1543 if (mpd->first_page >= mpd->next_page)
1544 return;
Aneesh Kumar K.Vc4a0c462008-08-19 21:08:18 -04001545
Curt Wohlgemuthc7f59382011-02-26 12:27:52 -05001546 index = mpd->first_page;
1547 end = mpd->next_page - 1;
Jan Kara4e7ea812013-06-04 13:17:40 -04001548 if (invalidate) {
1549 ext4_lblk_t start, last;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001550 start = index << (PAGE_SHIFT - inode->i_blkbits);
1551 last = end << (PAGE_SHIFT - inode->i_blkbits);
Jan Kara4e7ea812013-06-04 13:17:40 -04001552 ext4_es_remove_extent(inode, start, last - start + 1);
1553 }
Zheng Liu51865fd2012-11-08 21:57:32 -05001554
Mel Gorman86679822017-11-15 17:37:52 -08001555 pagevec_init(&pvec);
Aneesh Kumar K.Vc4a0c462008-08-19 21:08:18 -04001556 while (index <= end) {
Jan Kara397162f2017-09-06 16:21:43 -07001557 nr_pages = pagevec_lookup_range(&pvec, mapping, &index, end);
Aneesh Kumar K.Vc4a0c462008-08-19 21:08:18 -04001558 if (nr_pages == 0)
1559 break;
1560 for (i = 0; i < nr_pages; i++) {
1561 struct page *page = pvec.pages[i];
Jan Kara2b85a612017-09-06 16:21:30 -07001562
Aneesh Kumar K.Vc4a0c462008-08-19 21:08:18 -04001563 BUG_ON(!PageLocked(page));
1564 BUG_ON(PageWriteback(page));
Jan Kara4e7ea812013-06-04 13:17:40 -04001565 if (invalidate) {
wangguang4e800c02016-09-15 11:32:46 -04001566 if (page_mapped(page))
1567 clear_page_dirty_for_io(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001568 block_invalidatepage(page, 0, PAGE_SIZE);
Jan Kara4e7ea812013-06-04 13:17:40 -04001569 ClearPageUptodate(page);
1570 }
Aneesh Kumar K.Vc4a0c462008-08-19 21:08:18 -04001571 unlock_page(page);
1572 }
Jan Kara9b1d09982010-03-03 16:19:32 -05001573 pagevec_release(&pvec);
Aneesh Kumar K.Vc4a0c462008-08-19 21:08:18 -04001574 }
Aneesh Kumar K.Vc4a0c462008-08-19 21:08:18 -04001575}
1576
Aneesh Kumar K.Vdf222912008-09-08 23:05:34 -04001577static void ext4_print_free_blocks(struct inode *inode)
1578{
1579 struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb);
Theodore Ts'o92b97812012-03-19 23:41:49 -04001580 struct super_block *sb = inode->i_sb;
Lukas Czernerf78ee70d2013-04-03 23:33:30 -04001581 struct ext4_inode_info *ei = EXT4_I(inode);
Theodore Ts'o92b97812012-03-19 23:41:49 -04001582
1583 ext4_msg(sb, KERN_CRIT, "Total free blocks count %lld",
Theodore Ts'o5dee5432011-09-09 19:10:51 -04001584 EXT4_C2B(EXT4_SB(inode->i_sb),
Lukas Czernerf78ee70d2013-04-03 23:33:30 -04001585 ext4_count_free_clusters(sb)));
Theodore Ts'o92b97812012-03-19 23:41:49 -04001586 ext4_msg(sb, KERN_CRIT, "Free/Dirty block details");
1587 ext4_msg(sb, KERN_CRIT, "free_blocks=%lld",
Lukas Czernerf78ee70d2013-04-03 23:33:30 -04001588 (long long) EXT4_C2B(EXT4_SB(sb),
Theodore Ts'o57042652011-09-09 18:56:51 -04001589 percpu_counter_sum(&sbi->s_freeclusters_counter)));
Theodore Ts'o92b97812012-03-19 23:41:49 -04001590 ext4_msg(sb, KERN_CRIT, "dirty_blocks=%lld",
Lukas Czernerf78ee70d2013-04-03 23:33:30 -04001591 (long long) EXT4_C2B(EXT4_SB(sb),
Aditya Kali7b415bf2011-09-09 19:04:51 -04001592 percpu_counter_sum(&sbi->s_dirtyclusters_counter)));
Theodore Ts'o92b97812012-03-19 23:41:49 -04001593 ext4_msg(sb, KERN_CRIT, "Block reservation details");
1594 ext4_msg(sb, KERN_CRIT, "i_reserved_data_blocks=%u",
Lukas Czernerf78ee70d2013-04-03 23:33:30 -04001595 ei->i_reserved_data_blocks);
Aneesh Kumar K.Vdf222912008-09-08 23:05:34 -04001596 return;
1597}
1598
Aneesh Kumar K.Vc364b222009-06-14 17:57:10 -04001599static int ext4_bh_delay_or_unwritten(handle_t *handle, struct buffer_head *bh)
Aneesh Kumar K.V29fa89d2009-05-12 16:30:27 -04001600{
Aneesh Kumar K.Vc364b222009-06-14 17:57:10 -04001601 return (buffer_delay(bh) || buffer_unwritten(bh)) && buffer_dirty(bh);
Aneesh Kumar K.V29fa89d2009-05-12 16:30:27 -04001602}
1603
Alex Tomas64769242008-07-11 19:27:31 -04001604/*
Eric Whitney0b02f4c2018-10-01 14:19:37 -04001605 * ext4_insert_delayed_block - adds a delayed block to the extents status
1606 * tree, incrementing the reserved cluster/block
1607 * count or making a pending reservation
1608 * where needed
1609 *
1610 * @inode - file containing the newly added block
1611 * @lblk - logical block to be added
1612 *
1613 * Returns 0 on success, negative error code on failure.
1614 */
1615static int ext4_insert_delayed_block(struct inode *inode, ext4_lblk_t lblk)
1616{
1617 struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb);
1618 int ret;
1619 bool allocated = false;
1620
1621 /*
1622 * If the cluster containing lblk is shared with a delayed,
1623 * written, or unwritten extent in a bigalloc file system, it's
1624 * already been accounted for and does not need to be reserved.
1625 * A pending reservation must be made for the cluster if it's
1626 * shared with a written or unwritten extent and doesn't already
1627 * have one. Written and unwritten extents can be purged from the
1628 * extents status tree if the system is under memory pressure, so
1629 * it's necessary to examine the extent tree if a search of the
1630 * extents status tree doesn't get a match.
1631 */
1632 if (sbi->s_cluster_ratio == 1) {
1633 ret = ext4_da_reserve_space(inode);
1634 if (ret != 0) /* ENOSPC */
1635 goto errout;
1636 } else { /* bigalloc */
1637 if (!ext4_es_scan_clu(inode, &ext4_es_is_delonly, lblk)) {
1638 if (!ext4_es_scan_clu(inode,
1639 &ext4_es_is_mapped, lblk)) {
1640 ret = ext4_clu_mapped(inode,
1641 EXT4_B2C(sbi, lblk));
1642 if (ret < 0)
1643 goto errout;
1644 if (ret == 0) {
1645 ret = ext4_da_reserve_space(inode);
1646 if (ret != 0) /* ENOSPC */
1647 goto errout;
1648 } else {
1649 allocated = true;
1650 }
1651 } else {
1652 allocated = true;
1653 }
1654 }
1655 }
1656
1657 ret = ext4_es_insert_delayed_block(inode, lblk, allocated);
1658
1659errout:
1660 return ret;
1661}
1662
1663/*
Aditya Kali5356f2612011-09-09 19:20:51 -04001664 * This function is grabs code from the very beginning of
1665 * ext4_map_blocks, but assumes that the caller is from delayed write
1666 * time. This function looks up the requested blocks and sets the
1667 * buffer delay bit under the protection of i_data_sem.
1668 */
1669static int ext4_da_map_blocks(struct inode *inode, sector_t iblock,
1670 struct ext4_map_blocks *map,
1671 struct buffer_head *bh)
1672{
Zheng Liud100eef2013-02-18 00:29:59 -05001673 struct extent_status es;
Aditya Kali5356f2612011-09-09 19:20:51 -04001674 int retval;
1675 sector_t invalid_block = ~((sector_t) 0xffff);
Dmitry Monakhov921f2662013-03-10 21:01:03 -04001676#ifdef ES_AGGRESSIVE_TEST
1677 struct ext4_map_blocks orig_map;
1678
1679 memcpy(&orig_map, map, sizeof(*map));
1680#endif
Aditya Kali5356f2612011-09-09 19:20:51 -04001681
1682 if (invalid_block < ext4_blocks_count(EXT4_SB(inode->i_sb)->s_es))
1683 invalid_block = ~0;
1684
1685 map->m_flags = 0;
1686 ext_debug("ext4_da_map_blocks(): inode %lu, max_blocks %u,"
1687 "logical block %lu\n", inode->i_ino, map->m_len,
1688 (unsigned long) map->m_lblk);
Zheng Liud100eef2013-02-18 00:29:59 -05001689
1690 /* Lookup extent status tree firstly */
Theodore Ts'obb5835e2019-08-11 16:32:41 -04001691 if (ext4_es_lookup_extent(inode, iblock, NULL, &es)) {
Zheng Liud100eef2013-02-18 00:29:59 -05001692 if (ext4_es_is_hole(&es)) {
1693 retval = 0;
Lukas Czernerc8b459f2014-05-12 12:55:07 -04001694 down_read(&EXT4_I(inode)->i_data_sem);
Zheng Liud100eef2013-02-18 00:29:59 -05001695 goto add_delayed;
1696 }
1697
1698 /*
1699 * Delayed extent could be allocated by fallocate.
1700 * So we need to check it.
1701 */
1702 if (ext4_es_is_delayed(&es) && !ext4_es_is_unwritten(&es)) {
1703 map_bh(bh, inode->i_sb, invalid_block);
1704 set_buffer_new(bh);
1705 set_buffer_delay(bh);
1706 return 0;
1707 }
1708
1709 map->m_pblk = ext4_es_pblock(&es) + iblock - es.es_lblk;
1710 retval = es.es_len - (iblock - es.es_lblk);
1711 if (retval > map->m_len)
1712 retval = map->m_len;
1713 map->m_len = retval;
1714 if (ext4_es_is_written(&es))
1715 map->m_flags |= EXT4_MAP_MAPPED;
1716 else if (ext4_es_is_unwritten(&es))
1717 map->m_flags |= EXT4_MAP_UNWRITTEN;
1718 else
Arnd Bergmann1e83bc82019-04-07 12:24:43 -04001719 BUG();
Zheng Liud100eef2013-02-18 00:29:59 -05001720
Dmitry Monakhov921f2662013-03-10 21:01:03 -04001721#ifdef ES_AGGRESSIVE_TEST
1722 ext4_map_blocks_es_recheck(NULL, inode, map, &orig_map, 0);
1723#endif
Zheng Liud100eef2013-02-18 00:29:59 -05001724 return retval;
1725 }
1726
Aditya Kali5356f2612011-09-09 19:20:51 -04001727 /*
1728 * Try to see if we can get the block without requesting a new
1729 * file system block.
1730 */
Lukas Czernerc8b459f2014-05-12 12:55:07 -04001731 down_read(&EXT4_I(inode)->i_data_sem);
Jan Karacbd75842014-11-25 11:41:49 -05001732 if (ext4_has_inline_data(inode))
Tao Ma9c3569b2012-12-10 14:05:57 -05001733 retval = 0;
Jan Karacbd75842014-11-25 11:41:49 -05001734 else if (ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS))
Zheng Liu2f8e0a72014-11-25 11:44:37 -05001735 retval = ext4_ext_map_blocks(NULL, inode, map, 0);
Aditya Kali5356f2612011-09-09 19:20:51 -04001736 else
Zheng Liu2f8e0a72014-11-25 11:44:37 -05001737 retval = ext4_ind_map_blocks(NULL, inode, map, 0);
Aditya Kali5356f2612011-09-09 19:20:51 -04001738
Zheng Liud100eef2013-02-18 00:29:59 -05001739add_delayed:
Aditya Kali5356f2612011-09-09 19:20:51 -04001740 if (retval == 0) {
Zheng Liuf7fec032013-02-18 00:28:47 -05001741 int ret;
Eric Whitneyad431022018-10-01 14:10:39 -04001742
Aditya Kali5356f2612011-09-09 19:20:51 -04001743 /*
1744 * XXX: __block_prepare_write() unmaps passed block,
1745 * is it OK?
1746 */
Aditya Kali5356f2612011-09-09 19:20:51 -04001747
Eric Whitney0b02f4c2018-10-01 14:19:37 -04001748 ret = ext4_insert_delayed_block(inode, map->m_lblk);
1749 if (ret != 0) {
Zheng Liuf7fec032013-02-18 00:28:47 -05001750 retval = ret;
Zheng Liu51865fd2012-11-08 21:57:32 -05001751 goto out_unlock;
Zheng Liuf7fec032013-02-18 00:28:47 -05001752 }
Zheng Liu51865fd2012-11-08 21:57:32 -05001753
Aditya Kali5356f2612011-09-09 19:20:51 -04001754 map_bh(bh, inode->i_sb, invalid_block);
1755 set_buffer_new(bh);
1756 set_buffer_delay(bh);
Zheng Liuf7fec032013-02-18 00:28:47 -05001757 } else if (retval > 0) {
1758 int ret;
Theodore Ts'o3be78c72013-08-16 21:22:41 -04001759 unsigned int status;
Zheng Liuf7fec032013-02-18 00:28:47 -05001760
Zheng Liu44fb851d2013-07-29 12:51:42 -04001761 if (unlikely(retval != map->m_len)) {
1762 ext4_warning(inode->i_sb,
1763 "ES len assertion failed for inode "
1764 "%lu: retval %d != map->m_len %d",
1765 inode->i_ino, retval, map->m_len);
1766 WARN_ON(1);
Dmitry Monakhov921f2662013-03-10 21:01:03 -04001767 }
Dmitry Monakhov921f2662013-03-10 21:01:03 -04001768
Zheng Liuf7fec032013-02-18 00:28:47 -05001769 status = map->m_flags & EXT4_MAP_UNWRITTEN ?
1770 EXTENT_STATUS_UNWRITTEN : EXTENT_STATUS_WRITTEN;
1771 ret = ext4_es_insert_extent(inode, map->m_lblk, map->m_len,
1772 map->m_pblk, status);
1773 if (ret != 0)
1774 retval = ret;
Aditya Kali5356f2612011-09-09 19:20:51 -04001775 }
1776
1777out_unlock:
1778 up_read((&EXT4_I(inode)->i_data_sem));
1779
1780 return retval;
1781}
1782
1783/*
Seunghun Leed91bd2c2014-09-01 22:15:30 -04001784 * This is a special get_block_t callback which is used by
Theodore Ts'ob920c752009-05-14 00:54:29 -04001785 * ext4_da_write_begin(). It will either return mapped block or
1786 * reserve space for a single block.
Aneesh Kumar K.V29fa89d2009-05-12 16:30:27 -04001787 *
1788 * For delayed buffer_head we have BH_Mapped, BH_New, BH_Delay set.
1789 * We also have b_blocknr = -1 and b_bdev initialized properly
1790 *
1791 * For unwritten buffer_head we have BH_Mapped, BH_New, BH_Unwritten set.
1792 * We also have b_blocknr = physicalblock mapping unwritten extent and b_bdev
1793 * initialized properly.
Alex Tomas64769242008-07-11 19:27:31 -04001794 */
Tao Ma9c3569b2012-12-10 14:05:57 -05001795int ext4_da_get_block_prep(struct inode *inode, sector_t iblock,
1796 struct buffer_head *bh, int create)
Alex Tomas64769242008-07-11 19:27:31 -04001797{
Theodore Ts'o2ed88682010-05-16 20:00:00 -04001798 struct ext4_map_blocks map;
Alex Tomas64769242008-07-11 19:27:31 -04001799 int ret = 0;
1800
1801 BUG_ON(create == 0);
Theodore Ts'o2ed88682010-05-16 20:00:00 -04001802 BUG_ON(bh->b_size != inode->i_sb->s_blocksize);
1803
1804 map.m_lblk = iblock;
1805 map.m_len = 1;
Alex Tomas64769242008-07-11 19:27:31 -04001806
1807 /*
1808 * first, we need to know whether the block is allocated already
1809 * preallocated blocks are unmapped but should treated
1810 * the same as allocated blocks.
1811 */
Aditya Kali5356f2612011-09-09 19:20:51 -04001812 ret = ext4_da_map_blocks(inode, iblock, &map, bh);
1813 if (ret <= 0)
Theodore Ts'o2ed88682010-05-16 20:00:00 -04001814 return ret;
Alex Tomas64769242008-07-11 19:27:31 -04001815
Theodore Ts'o2ed88682010-05-16 20:00:00 -04001816 map_bh(bh, inode->i_sb, map.m_pblk);
Jan Karaed8ad832016-02-19 00:18:25 -05001817 ext4_update_bh_state(bh, map.m_flags);
Theodore Ts'o2ed88682010-05-16 20:00:00 -04001818
1819 if (buffer_unwritten(bh)) {
1820 /* A delayed write to unwritten bh should be marked
1821 * new and mapped. Mapped ensures that we don't do
1822 * get_block multiple times when we write to the same
1823 * offset and new ensures that we do proper zero out
1824 * for partial write.
1825 */
1826 set_buffer_new(bh);
Theodore Ts'oc8205632011-04-10 22:30:07 -04001827 set_buffer_mapped(bh);
Theodore Ts'o2ed88682010-05-16 20:00:00 -04001828 }
1829 return 0;
Alex Tomas64769242008-07-11 19:27:31 -04001830}
Mingming Cao61628a32008-07-11 19:27:31 -04001831
Aneesh Kumar K.V62e086b2009-06-14 17:59:34 -04001832static int bget_one(handle_t *handle, struct buffer_head *bh)
1833{
1834 get_bh(bh);
1835 return 0;
1836}
1837
1838static int bput_one(handle_t *handle, struct buffer_head *bh)
1839{
1840 put_bh(bh);
1841 return 0;
1842}
1843
1844static int __ext4_journalled_writepage(struct page *page,
Aneesh Kumar K.V62e086b2009-06-14 17:59:34 -04001845 unsigned int len)
1846{
1847 struct address_space *mapping = page->mapping;
1848 struct inode *inode = mapping->host;
Tao Ma3fdcfb62012-12-10 14:05:57 -05001849 struct buffer_head *page_bufs = NULL;
Aneesh Kumar K.V62e086b2009-06-14 17:59:34 -04001850 handle_t *handle = NULL;
Tao Ma3fdcfb62012-12-10 14:05:57 -05001851 int ret = 0, err = 0;
1852 int inline_data = ext4_has_inline_data(inode);
1853 struct buffer_head *inode_bh = NULL;
Aneesh Kumar K.V62e086b2009-06-14 17:59:34 -04001854
Theodore Ts'ocb20d512010-10-27 21:30:09 -04001855 ClearPageChecked(page);
Tao Ma3fdcfb62012-12-10 14:05:57 -05001856
1857 if (inline_data) {
1858 BUG_ON(page->index != 0);
1859 BUG_ON(len > ext4_get_max_inline_size(inode));
1860 inode_bh = ext4_journalled_write_inline_data(inode, len, page);
1861 if (inode_bh == NULL)
1862 goto out;
1863 } else {
1864 page_bufs = page_buffers(page);
1865 if (!page_bufs) {
1866 BUG();
1867 goto out;
1868 }
1869 ext4_walk_page_buffers(handle, page_bufs, 0, len,
1870 NULL, bget_one);
1871 }
Theodore Ts'obdf96832015-06-12 23:45:33 -04001872 /*
1873 * We need to release the page lock before we start the
1874 * journal, so grab a reference so the page won't disappear
1875 * out from under us.
1876 */
1877 get_page(page);
Aneesh Kumar K.V62e086b2009-06-14 17:59:34 -04001878 unlock_page(page);
1879
Theodore Ts'o9924a922013-02-08 21:59:22 -05001880 handle = ext4_journal_start(inode, EXT4_HT_WRITE_PAGE,
1881 ext4_writepage_trans_blocks(inode));
Aneesh Kumar K.V62e086b2009-06-14 17:59:34 -04001882 if (IS_ERR(handle)) {
1883 ret = PTR_ERR(handle);
Theodore Ts'obdf96832015-06-12 23:45:33 -04001884 put_page(page);
1885 goto out_no_pagelock;
1886 }
1887 BUG_ON(!ext4_handle_valid(handle));
1888
1889 lock_page(page);
1890 put_page(page);
1891 if (page->mapping != mapping) {
1892 /* The page got truncated from under us */
1893 ext4_journal_stop(handle);
1894 ret = 0;
Aneesh Kumar K.V62e086b2009-06-14 17:59:34 -04001895 goto out;
1896 }
1897
Tao Ma3fdcfb62012-12-10 14:05:57 -05001898 if (inline_data) {
Theodore Ts'o362eca72018-07-10 01:07:43 -04001899 ret = ext4_mark_inode_dirty(handle, inode);
Tao Ma3fdcfb62012-12-10 14:05:57 -05001900 } else {
1901 ret = ext4_walk_page_buffers(handle, page_bufs, 0, len, NULL,
1902 do_journal_get_write_access);
1903
1904 err = ext4_walk_page_buffers(handle, page_bufs, 0, len, NULL,
1905 write_end_fn);
1906 }
Aneesh Kumar K.V62e086b2009-06-14 17:59:34 -04001907 if (ret == 0)
1908 ret = err;
Jan Kara2d859db2011-07-26 09:07:11 -04001909 EXT4_I(inode)->i_datasync_tid = handle->h_transaction->t_tid;
Aneesh Kumar K.V62e086b2009-06-14 17:59:34 -04001910 err = ext4_journal_stop(handle);
1911 if (!ret)
1912 ret = err;
1913
Tao Ma3fdcfb62012-12-10 14:05:57 -05001914 if (!ext4_has_inline_data(inode))
Theodore Ts'o8c9367f2014-01-07 13:08:03 -05001915 ext4_walk_page_buffers(NULL, page_bufs, 0, len,
Tao Ma3fdcfb62012-12-10 14:05:57 -05001916 NULL, bput_one);
Theodore Ts'o19f5fb72010-01-24 14:34:07 -05001917 ext4_set_inode_state(inode, EXT4_STATE_JDATA);
Aneesh Kumar K.V62e086b2009-06-14 17:59:34 -04001918out:
Theodore Ts'obdf96832015-06-12 23:45:33 -04001919 unlock_page(page);
1920out_no_pagelock:
Tao Ma3fdcfb62012-12-10 14:05:57 -05001921 brelse(inode_bh);
Aneesh Kumar K.V62e086b2009-06-14 17:59:34 -04001922 return ret;
1923}
1924
Mingming Cao61628a32008-07-11 19:27:31 -04001925/*
Aneesh Kumar K.V43ce1d22009-06-14 17:58:45 -04001926 * Note that we don't need to start a transaction unless we're journaling data
1927 * because we should have holes filled from ext4_page_mkwrite(). We even don't
1928 * need to file the inode to the transaction's list in ordered mode because if
1929 * we are writing back data added by write(), the inode is already there and if
Lucas De Marchi25985ed2011-03-30 22:57:33 -03001930 * we are writing back data modified via mmap(), no one guarantees in which
Aneesh Kumar K.V43ce1d22009-06-14 17:58:45 -04001931 * transaction the data will hit the disk. In case we are journaling data, we
1932 * cannot start transaction directly because transaction start ranks above page
1933 * lock so we have to do some magic.
1934 *
Theodore Ts'ob920c752009-05-14 00:54:29 -04001935 * This function can get called via...
Theodore Ts'o20970ba2013-06-06 14:00:46 -04001936 * - ext4_writepages after taking page lock (have journal handle)
Theodore Ts'ob920c752009-05-14 00:54:29 -04001937 * - journal_submit_inode_data_buffers (no journal handle)
Artem Bityutskiyf6463b02012-07-25 18:12:04 +03001938 * - shrink_page_list via the kswapd/direct reclaim (no journal handle)
Theodore Ts'ob920c752009-05-14 00:54:29 -04001939 * - grab_page_cache when doing write_begin (have journal handle)
Aneesh Kumar K.V43ce1d22009-06-14 17:58:45 -04001940 *
1941 * We don't do any block allocation in this function. If we have page with
1942 * multiple blocks we need to write those buffer_heads that are mapped. This
1943 * is important for mmaped based write. So if we do with blocksize 1K
1944 * truncate(f, 1024);
1945 * a = mmap(f, 0, 4096);
1946 * a[0] = 'a';
1947 * truncate(f, 4096);
1948 * we have in the page first buffer_head mapped via page_mkwrite call back
Paul Bolle90802ed2011-12-05 13:00:34 +01001949 * but other buffer_heads would be unmapped but dirty (dirty done via the
Aneesh Kumar K.V43ce1d22009-06-14 17:58:45 -04001950 * do_wp_page). So writepage should write the first block. If we modify
1951 * the mmap area beyond 1024 we will again get a page_fault and the
1952 * page_mkwrite callback will do the block allocation and mark the
1953 * buffer_heads mapped.
1954 *
1955 * We redirty the page if we have any buffer_heads that is either delay or
1956 * unwritten in the page.
1957 *
1958 * We can get recursively called as show below.
1959 *
1960 * ext4_writepage() -> kmalloc() -> __alloc_pages() -> page_launder() ->
1961 * ext4_writepage()
1962 *
1963 * But since we don't do any block allocation we should not deadlock.
1964 * Page also have the dirty flag cleared so we don't get recurive page_lock.
Mingming Cao61628a32008-07-11 19:27:31 -04001965 */
Aneesh Kumar K.V43ce1d22009-06-14 17:58:45 -04001966static int ext4_writepage(struct page *page,
Aneesh Kumar K.V62e086b2009-06-14 17:59:34 -04001967 struct writeback_control *wbc)
Alex Tomas64769242008-07-11 19:27:31 -04001968{
Jan Karaf8bec372013-01-28 12:55:08 -05001969 int ret = 0;
Mingming Cao61628a32008-07-11 19:27:31 -04001970 loff_t size;
Theodore Ts'o498e5f22008-11-05 00:14:04 -05001971 unsigned int len;
Jiaying Zhang744692d2010-03-04 16:14:02 -05001972 struct buffer_head *page_bufs = NULL;
Mingming Cao61628a32008-07-11 19:27:31 -04001973 struct inode *inode = page->mapping->host;
Jan Kara36ade452013-01-28 09:30:52 -05001974 struct ext4_io_submit io_submit;
Namjae Jeon1c8349a2014-05-12 08:12:25 -04001975 bool keep_towrite = false;
Alex Tomas64769242008-07-11 19:27:31 -04001976
Theodore Ts'o0db1ff22017-02-05 01:28:48 -05001977 if (unlikely(ext4_forced_shutdown(EXT4_SB(inode->i_sb)))) {
1978 ext4_invalidatepage(page, 0, PAGE_SIZE);
1979 unlock_page(page);
1980 return -EIO;
1981 }
1982
Lukas Czernera9c667f2011-06-06 09:51:52 -04001983 trace_ext4_writepage(page);
Aneesh Kumar K.Vf0e6c982008-07-11 19:27:31 -04001984 size = i_size_read(inode);
Eric Biggersc93d8f82019-07-22 09:26:24 -07001985 if (page->index == size >> PAGE_SHIFT &&
1986 !ext4_verity_in_progress(inode))
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001987 len = size & ~PAGE_MASK;
Aneesh Kumar K.Vf0e6c982008-07-11 19:27:31 -04001988 else
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001989 len = PAGE_SIZE;
Alex Tomas64769242008-07-11 19:27:31 -04001990
Theodore Ts'oa42afc52010-10-27 21:30:09 -04001991 page_bufs = page_buffers(page);
Aneesh Kumar K.Vc364b222009-06-14 17:57:10 -04001992 /*
Jan Karafe386132013-01-28 21:06:42 -05001993 * We cannot do block allocation or other extent handling in this
1994 * function. If there are buffers needing that, we have to redirty
1995 * the page. But we may reach here when we do a journal commit via
1996 * journal_submit_inode_data_buffers() and in that case we must write
1997 * allocated buffers to achieve data=ordered mode guarantees.
Theodore Ts'occcd1472015-10-03 10:49:23 -04001998 *
1999 * Also, if there is only one buffer per page (the fs block
2000 * size == the page size), if one buffer needs block
2001 * allocation or needs to modify the extent tree to clear the
2002 * unwritten flag, we know that the page can't be written at
2003 * all, so we might as well refuse the write immediately.
2004 * Unfortunately if the block size != page size, we can't as
2005 * easily detect this case using ext4_walk_page_buffers(), but
2006 * for the extremely common case, this is an optimization that
2007 * skips a useless round trip through ext4_bio_write_page().
Aneesh Kumar K.Vcd1aac32008-07-11 19:27:31 -04002008 */
Tao Maf19d5872012-12-10 14:05:51 -05002009 if (ext4_walk_page_buffers(NULL, page_bufs, 0, len, NULL,
2010 ext4_bh_delay_or_unwritten)) {
Jan Karaf8bec372013-01-28 12:55:08 -05002011 redirty_page_for_writepage(wbc, page);
Theodore Ts'occcd1472015-10-03 10:49:23 -04002012 if ((current->flags & PF_MEMALLOC) ||
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002013 (inode->i_sb->s_blocksize == PAGE_SIZE)) {
Jan Karafe386132013-01-28 21:06:42 -05002014 /*
2015 * For memory cleaning there's no point in writing only
2016 * some buffers. So just bail out. Warn if we came here
2017 * from direct reclaim.
2018 */
2019 WARN_ON_ONCE((current->flags & (PF_MEMALLOC|PF_KSWAPD))
2020 == PF_MEMALLOC);
Aneesh Kumar K.Vf0e6c982008-07-11 19:27:31 -04002021 unlock_page(page);
2022 return 0;
2023 }
Namjae Jeon1c8349a2014-05-12 08:12:25 -04002024 keep_towrite = true;
Theodore Ts'oa42afc52010-10-27 21:30:09 -04002025 }
Alex Tomas64769242008-07-11 19:27:31 -04002026
Theodore Ts'ocb20d512010-10-27 21:30:09 -04002027 if (PageChecked(page) && ext4_should_journal_data(inode))
Aneesh Kumar K.V43ce1d22009-06-14 17:58:45 -04002028 /*
2029 * It's mmapped pagecache. Add buffers and journal it. There
2030 * doesn't seem much point in redirtying the page here.
2031 */
Wu Fengguang3f0ca302009-11-24 11:15:44 -05002032 return __ext4_journalled_writepage(page, len);
Aneesh Kumar K.V43ce1d22009-06-14 17:58:45 -04002033
Jan Kara97a851e2013-06-04 11:58:58 -04002034 ext4_io_submit_init(&io_submit, wbc);
2035 io_submit.io_end = ext4_init_io_end(inode, GFP_NOFS);
2036 if (!io_submit.io_end) {
2037 redirty_page_for_writepage(wbc, page);
2038 unlock_page(page);
2039 return -ENOMEM;
2040 }
Namjae Jeon1c8349a2014-05-12 08:12:25 -04002041 ret = ext4_bio_write_page(&io_submit, page, len, wbc, keep_towrite);
Jan Kara36ade452013-01-28 09:30:52 -05002042 ext4_io_submit(&io_submit);
Jan Kara97a851e2013-06-04 11:58:58 -04002043 /* Drop io_end reference we got from init */
2044 ext4_put_io_end_defer(io_submit.io_end);
Alex Tomas64769242008-07-11 19:27:31 -04002045 return ret;
2046}
2047
Jan Kara5f1132b2013-08-17 10:02:33 -04002048static int mpage_submit_page(struct mpage_da_data *mpd, struct page *page)
2049{
2050 int len;
Jan Karaa056bda2017-05-26 17:45:45 -04002051 loff_t size;
Jan Kara5f1132b2013-08-17 10:02:33 -04002052 int err;
2053
2054 BUG_ON(page->index != mpd->first_page);
Jan Karaa056bda2017-05-26 17:45:45 -04002055 clear_page_dirty_for_io(page);
2056 /*
2057 * We have to be very careful here! Nothing protects writeback path
2058 * against i_size changes and the page can be writeably mapped into
2059 * page tables. So an application can be growing i_size and writing
2060 * data through mmap while writeback runs. clear_page_dirty_for_io()
2061 * write-protects our page in page tables and the page cannot get
2062 * written to again until we release page lock. So only after
2063 * clear_page_dirty_for_io() we are safe to sample i_size for
2064 * ext4_bio_write_page() to zero-out tail of the written page. We rely
2065 * on the barrier provided by TestClearPageDirty in
2066 * clear_page_dirty_for_io() to make sure i_size is really sampled only
2067 * after page tables are updated.
2068 */
2069 size = i_size_read(mpd->inode);
Eric Biggersc93d8f82019-07-22 09:26:24 -07002070 if (page->index == size >> PAGE_SHIFT &&
2071 !ext4_verity_in_progress(mpd->inode))
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002072 len = size & ~PAGE_MASK;
Jan Kara5f1132b2013-08-17 10:02:33 -04002073 else
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002074 len = PAGE_SIZE;
Namjae Jeon1c8349a2014-05-12 08:12:25 -04002075 err = ext4_bio_write_page(&mpd->io_submit, page, len, mpd->wbc, false);
Jan Kara5f1132b2013-08-17 10:02:33 -04002076 if (!err)
2077 mpd->wbc->nr_to_write--;
2078 mpd->first_page++;
2079
2080 return err;
2081}
2082
Jan Kara4e7ea812013-06-04 13:17:40 -04002083#define BH_FLAGS ((1 << BH_Unwritten) | (1 << BH_Delay))
2084
Mingming Cao61628a32008-07-11 19:27:31 -04002085/*
Jan Karafffb2732013-06-04 13:01:11 -04002086 * mballoc gives us at most this number of blocks...
2087 * XXX: That seems to be only a limitation of ext4_mb_normalize_request().
Anatol Pomozov70261f52013-08-28 14:40:12 -04002088 * The rest of mballoc seems to handle chunks up to full group size.
Mingming Cao61628a32008-07-11 19:27:31 -04002089 */
Jan Karafffb2732013-06-04 13:01:11 -04002090#define MAX_WRITEPAGES_EXTENT_LEN 2048
Mingming Cao525f4ed2008-08-19 22:15:58 -04002091
Jan Karafffb2732013-06-04 13:01:11 -04002092/*
Jan Kara4e7ea812013-06-04 13:17:40 -04002093 * mpage_add_bh_to_extent - try to add bh to extent of blocks to map
2094 *
2095 * @mpd - extent of blocks
2096 * @lblk - logical number of the block in the file
Jan Kara09930042013-08-17 09:57:56 -04002097 * @bh - buffer head we want to add to the extent
Jan Kara4e7ea812013-06-04 13:17:40 -04002098 *
Jan Kara09930042013-08-17 09:57:56 -04002099 * The function is used to collect contig. blocks in the same state. If the
2100 * buffer doesn't require mapping for writeback and we haven't started the
2101 * extent of buffers to map yet, the function returns 'true' immediately - the
2102 * caller can write the buffer right away. Otherwise the function returns true
2103 * if the block has been added to the extent, false if the block couldn't be
2104 * added.
Jan Kara4e7ea812013-06-04 13:17:40 -04002105 */
Jan Kara09930042013-08-17 09:57:56 -04002106static bool mpage_add_bh_to_extent(struct mpage_da_data *mpd, ext4_lblk_t lblk,
2107 struct buffer_head *bh)
Jan Kara4e7ea812013-06-04 13:17:40 -04002108{
2109 struct ext4_map_blocks *map = &mpd->map;
2110
Jan Kara09930042013-08-17 09:57:56 -04002111 /* Buffer that doesn't need mapping for writeback? */
2112 if (!buffer_dirty(bh) || !buffer_mapped(bh) ||
2113 (!buffer_delay(bh) && !buffer_unwritten(bh))) {
2114 /* So far no extent to map => we write the buffer right away */
2115 if (map->m_len == 0)
2116 return true;
2117 return false;
2118 }
Jan Kara4e7ea812013-06-04 13:17:40 -04002119
2120 /* First block in the extent? */
2121 if (map->m_len == 0) {
Jan Karadddbd6a2017-04-30 18:29:10 -04002122 /* We cannot map unless handle is started... */
2123 if (!mpd->do_map)
2124 return false;
Jan Kara4e7ea812013-06-04 13:17:40 -04002125 map->m_lblk = lblk;
2126 map->m_len = 1;
Jan Kara09930042013-08-17 09:57:56 -04002127 map->m_flags = bh->b_state & BH_FLAGS;
2128 return true;
Jan Kara4e7ea812013-06-04 13:17:40 -04002129 }
2130
Jan Kara09930042013-08-17 09:57:56 -04002131 /* Don't go larger than mballoc is willing to allocate */
2132 if (map->m_len >= MAX_WRITEPAGES_EXTENT_LEN)
2133 return false;
2134
Jan Kara4e7ea812013-06-04 13:17:40 -04002135 /* Can we merge the block to our big extent? */
2136 if (lblk == map->m_lblk + map->m_len &&
Jan Kara09930042013-08-17 09:57:56 -04002137 (bh->b_state & BH_FLAGS) == map->m_flags) {
Jan Kara4e7ea812013-06-04 13:17:40 -04002138 map->m_len++;
Jan Kara09930042013-08-17 09:57:56 -04002139 return true;
Jan Kara4e7ea812013-06-04 13:17:40 -04002140 }
Jan Kara09930042013-08-17 09:57:56 -04002141 return false;
Jan Kara4e7ea812013-06-04 13:17:40 -04002142}
2143
Jan Kara5f1132b2013-08-17 10:02:33 -04002144/*
2145 * mpage_process_page_bufs - submit page buffers for IO or add them to extent
2146 *
2147 * @mpd - extent of blocks for mapping
2148 * @head - the first buffer in the page
2149 * @bh - buffer we should start processing from
2150 * @lblk - logical number of the block in the file corresponding to @bh
2151 *
2152 * Walk through page buffers from @bh upto @head (exclusive) and either submit
2153 * the page for IO if all buffers in this page were mapped and there's no
2154 * accumulated extent of buffers to map or add buffers in the page to the
2155 * extent of buffers to map. The function returns 1 if the caller can continue
2156 * by processing the next page, 0 if it should stop adding buffers to the
2157 * extent to map because we cannot extend it anymore. It can also return value
2158 * < 0 in case of error during IO submission.
2159 */
2160static int mpage_process_page_bufs(struct mpage_da_data *mpd,
2161 struct buffer_head *head,
2162 struct buffer_head *bh,
2163 ext4_lblk_t lblk)
Jan Kara4e7ea812013-06-04 13:17:40 -04002164{
2165 struct inode *inode = mpd->inode;
Jan Kara5f1132b2013-08-17 10:02:33 -04002166 int err;
Fabian Frederick93407472017-02-27 14:28:32 -08002167 ext4_lblk_t blocks = (i_size_read(inode) + i_blocksize(inode) - 1)
Jan Kara4e7ea812013-06-04 13:17:40 -04002168 >> inode->i_blkbits;
2169
Eric Biggersc93d8f82019-07-22 09:26:24 -07002170 if (ext4_verity_in_progress(inode))
2171 blocks = EXT_MAX_BLOCKS;
2172
Jan Kara4e7ea812013-06-04 13:17:40 -04002173 do {
2174 BUG_ON(buffer_locked(bh));
2175
Jan Kara09930042013-08-17 09:57:56 -04002176 if (lblk >= blocks || !mpage_add_bh_to_extent(mpd, lblk, bh)) {
Jan Kara4e7ea812013-06-04 13:17:40 -04002177 /* Found extent to map? */
2178 if (mpd->map.m_len)
Jan Kara5f1132b2013-08-17 10:02:33 -04002179 return 0;
Jan Karadddbd6a2017-04-30 18:29:10 -04002180 /* Buffer needs mapping and handle is not started? */
2181 if (!mpd->do_map)
2182 return 0;
Jan Kara09930042013-08-17 09:57:56 -04002183 /* Everything mapped so far and we hit EOF */
Jan Kara5f1132b2013-08-17 10:02:33 -04002184 break;
Jan Kara4e7ea812013-06-04 13:17:40 -04002185 }
Jan Kara4e7ea812013-06-04 13:17:40 -04002186 } while (lblk++, (bh = bh->b_this_page) != head);
Jan Kara5f1132b2013-08-17 10:02:33 -04002187 /* So far everything mapped? Submit the page for IO. */
2188 if (mpd->map.m_len == 0) {
2189 err = mpage_submit_page(mpd, head->b_page);
2190 if (err < 0)
2191 return err;
2192 }
2193 return lblk < blocks;
Jan Kara4e7ea812013-06-04 13:17:40 -04002194}
2195
2196/*
Ritesh Harjani2943fdb2019-10-16 13:07:09 +05302197 * mpage_process_page - update page buffers corresponding to changed extent and
2198 * may submit fully mapped page for IO
2199 *
2200 * @mpd - description of extent to map, on return next extent to map
2201 * @m_lblk - logical block mapping.
2202 * @m_pblk - corresponding physical mapping.
2203 * @map_bh - determines on return whether this page requires any further
2204 * mapping or not.
2205 * Scan given page buffers corresponding to changed extent and update buffer
2206 * state according to new extent state.
2207 * We map delalloc buffers to their physical location, clear unwritten bits.
2208 * If the given page is not fully mapped, we update @map to the next extent in
2209 * the given page that needs mapping & return @map_bh as true.
2210 */
2211static int mpage_process_page(struct mpage_da_data *mpd, struct page *page,
2212 ext4_lblk_t *m_lblk, ext4_fsblk_t *m_pblk,
2213 bool *map_bh)
2214{
2215 struct buffer_head *head, *bh;
2216 ext4_io_end_t *io_end = mpd->io_submit.io_end;
2217 ext4_lblk_t lblk = *m_lblk;
2218 ext4_fsblk_t pblock = *m_pblk;
2219 int err = 0;
Ritesh Harjanic8cc8812019-10-16 13:07:10 +05302220 int blkbits = mpd->inode->i_blkbits;
2221 ssize_t io_end_size = 0;
2222 struct ext4_io_end_vec *io_end_vec = ext4_last_io_end_vec(io_end);
Ritesh Harjani2943fdb2019-10-16 13:07:09 +05302223
2224 bh = head = page_buffers(page);
2225 do {
2226 if (lblk < mpd->map.m_lblk)
2227 continue;
2228 if (lblk >= mpd->map.m_lblk + mpd->map.m_len) {
2229 /*
2230 * Buffer after end of mapped extent.
2231 * Find next buffer in the page to map.
2232 */
2233 mpd->map.m_len = 0;
2234 mpd->map.m_flags = 0;
Ritesh Harjanic8cc8812019-10-16 13:07:10 +05302235 io_end_vec->size += io_end_size;
2236 io_end_size = 0;
Ritesh Harjani2943fdb2019-10-16 13:07:09 +05302237
Ritesh Harjani2943fdb2019-10-16 13:07:09 +05302238 err = mpage_process_page_bufs(mpd, head, bh, lblk);
2239 if (err > 0)
2240 err = 0;
Ritesh Harjanic8cc8812019-10-16 13:07:10 +05302241 if (!err && mpd->map.m_len && mpd->map.m_lblk > lblk) {
2242 io_end_vec = ext4_alloc_io_end_vec(io_end);
Ritesh Harjani4d06bfb2019-11-06 15:08:09 +05302243 if (IS_ERR(io_end_vec)) {
2244 err = PTR_ERR(io_end_vec);
2245 goto out;
2246 }
Ritesh Harjanic8cc8812019-10-16 13:07:10 +05302247 io_end_vec->offset = mpd->map.m_lblk << blkbits;
2248 }
Ritesh Harjani2943fdb2019-10-16 13:07:09 +05302249 *map_bh = true;
2250 goto out;
2251 }
2252 if (buffer_delay(bh)) {
2253 clear_buffer_delay(bh);
2254 bh->b_blocknr = pblock++;
2255 }
2256 clear_buffer_unwritten(bh);
Ritesh Harjanic8cc8812019-10-16 13:07:10 +05302257 io_end_size += (1 << blkbits);
Ritesh Harjani2943fdb2019-10-16 13:07:09 +05302258 } while (lblk++, (bh = bh->b_this_page) != head);
Ritesh Harjanic8cc8812019-10-16 13:07:10 +05302259
2260 io_end_vec->size += io_end_size;
2261 io_end_size = 0;
Ritesh Harjani2943fdb2019-10-16 13:07:09 +05302262 *map_bh = false;
2263out:
2264 *m_lblk = lblk;
2265 *m_pblk = pblock;
2266 return err;
2267}
2268
2269/*
Jan Kara4e7ea812013-06-04 13:17:40 -04002270 * mpage_map_buffers - update buffers corresponding to changed extent and
2271 * submit fully mapped pages for IO
2272 *
2273 * @mpd - description of extent to map, on return next extent to map
2274 *
2275 * Scan buffers corresponding to changed extent (we expect corresponding pages
2276 * to be already locked) and update buffer state according to new extent state.
2277 * We map delalloc buffers to their physical location, clear unwritten bits,
Lukas Czerner556615d2014-04-20 23:45:47 -04002278 * and mark buffers as uninit when we perform writes to unwritten extents
Jan Kara4e7ea812013-06-04 13:17:40 -04002279 * and do extent conversion after IO is finished. If the last page is not fully
2280 * mapped, we update @map to the next extent in the last page that needs
2281 * mapping. Otherwise we submit the page for IO.
2282 */
2283static int mpage_map_and_submit_buffers(struct mpage_da_data *mpd)
2284{
2285 struct pagevec pvec;
2286 int nr_pages, i;
2287 struct inode *inode = mpd->inode;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002288 int bpp_bits = PAGE_SHIFT - inode->i_blkbits;
Jan Kara4e7ea812013-06-04 13:17:40 -04002289 pgoff_t start, end;
2290 ext4_lblk_t lblk;
Ritesh Harjani2943fdb2019-10-16 13:07:09 +05302291 ext4_fsblk_t pblock;
Jan Kara4e7ea812013-06-04 13:17:40 -04002292 int err;
Ritesh Harjani2943fdb2019-10-16 13:07:09 +05302293 bool map_bh = false;
Jan Kara4e7ea812013-06-04 13:17:40 -04002294
2295 start = mpd->map.m_lblk >> bpp_bits;
2296 end = (mpd->map.m_lblk + mpd->map.m_len - 1) >> bpp_bits;
2297 lblk = start << bpp_bits;
2298 pblock = mpd->map.m_pblk;
2299
Mel Gorman86679822017-11-15 17:37:52 -08002300 pagevec_init(&pvec);
Jan Kara4e7ea812013-06-04 13:17:40 -04002301 while (start <= end) {
Jan Kara2b85a612017-09-06 16:21:30 -07002302 nr_pages = pagevec_lookup_range(&pvec, inode->i_mapping,
Jan Kara397162f2017-09-06 16:21:43 -07002303 &start, end);
Jan Kara4e7ea812013-06-04 13:17:40 -04002304 if (nr_pages == 0)
2305 break;
2306 for (i = 0; i < nr_pages; i++) {
2307 struct page *page = pvec.pages[i];
2308
Ritesh Harjani2943fdb2019-10-16 13:07:09 +05302309 err = mpage_process_page(mpd, page, &lblk, &pblock,
2310 &map_bh);
Jan Kara4e7ea812013-06-04 13:17:40 -04002311 /*
Ritesh Harjani2943fdb2019-10-16 13:07:09 +05302312 * If map_bh is true, means page may require further bh
2313 * mapping, or maybe the page was submitted for IO.
2314 * So we return to call further extent mapping.
Jan Kara4e7ea812013-06-04 13:17:40 -04002315 */
Ritesh Harjani2943fdb2019-10-16 13:07:09 +05302316 if (err < 0 || map_bh == true)
2317 goto out;
Jan Kara4e7ea812013-06-04 13:17:40 -04002318 /* Page fully mapped - let IO run! */
2319 err = mpage_submit_page(mpd, page);
Ritesh Harjani2943fdb2019-10-16 13:07:09 +05302320 if (err < 0)
2321 goto out;
Jan Kara4e7ea812013-06-04 13:17:40 -04002322 }
2323 pagevec_release(&pvec);
2324 }
2325 /* Extent fully mapped and matches with page boundary. We are done. */
2326 mpd->map.m_len = 0;
2327 mpd->map.m_flags = 0;
2328 return 0;
Ritesh Harjani2943fdb2019-10-16 13:07:09 +05302329out:
2330 pagevec_release(&pvec);
2331 return err;
Jan Kara4e7ea812013-06-04 13:17:40 -04002332}
2333
2334static int mpage_map_one_extent(handle_t *handle, struct mpage_da_data *mpd)
2335{
2336 struct inode *inode = mpd->inode;
2337 struct ext4_map_blocks *map = &mpd->map;
2338 int get_blocks_flags;
Lukas Czerner090f32e2014-04-20 23:44:47 -04002339 int err, dioread_nolock;
Jan Kara4e7ea812013-06-04 13:17:40 -04002340
2341 trace_ext4_da_write_pages_extent(inode, map);
2342 /*
2343 * Call ext4_map_blocks() to allocate any delayed allocation blocks, or
Lukas Czerner556615d2014-04-20 23:45:47 -04002344 * to convert an unwritten extent to be initialized (in the case
Jan Kara4e7ea812013-06-04 13:17:40 -04002345 * where we have written into one or more preallocated blocks). It is
2346 * possible that we're going to need more metadata blocks than
2347 * previously reserved. However we must not fail because we're in
2348 * writeback and there is nothing we can do about it so it might result
2349 * in data loss. So use reserved blocks to allocate metadata if
2350 * possible.
2351 *
Theodore Ts'o754cfed2014-09-04 18:08:22 -04002352 * We pass in the magic EXT4_GET_BLOCKS_DELALLOC_RESERVE if
2353 * the blocks in question are delalloc blocks. This indicates
2354 * that the blocks and quotas has already been checked when
2355 * the data was copied into the page cache.
Jan Kara4e7ea812013-06-04 13:17:40 -04002356 */
2357 get_blocks_flags = EXT4_GET_BLOCKS_CREATE |
Jan Karaee0876b2016-04-24 00:56:08 -04002358 EXT4_GET_BLOCKS_METADATA_NOFAIL |
2359 EXT4_GET_BLOCKS_IO_SUBMIT;
Lukas Czerner090f32e2014-04-20 23:44:47 -04002360 dioread_nolock = ext4_should_dioread_nolock(inode);
2361 if (dioread_nolock)
Jan Kara4e7ea812013-06-04 13:17:40 -04002362 get_blocks_flags |= EXT4_GET_BLOCKS_IO_CREATE_EXT;
2363 if (map->m_flags & (1 << BH_Delay))
2364 get_blocks_flags |= EXT4_GET_BLOCKS_DELALLOC_RESERVE;
2365
2366 err = ext4_map_blocks(handle, inode, map, get_blocks_flags);
2367 if (err < 0)
2368 return err;
Lukas Czerner090f32e2014-04-20 23:44:47 -04002369 if (dioread_nolock && (map->m_flags & EXT4_MAP_UNWRITTEN)) {
Jan Kara6b523df2013-06-04 13:21:11 -04002370 if (!mpd->io_submit.io_end->handle &&
2371 ext4_handle_valid(handle)) {
2372 mpd->io_submit.io_end->handle = handle->h_rsv_handle;
2373 handle->h_rsv_handle = NULL;
2374 }
Jan Kara3613d222013-06-04 13:19:34 -04002375 ext4_set_io_unwritten_flag(inode, mpd->io_submit.io_end);
Jan Kara6b523df2013-06-04 13:21:11 -04002376 }
Jan Kara4e7ea812013-06-04 13:17:40 -04002377
2378 BUG_ON(map->m_len == 0);
Jan Kara4e7ea812013-06-04 13:17:40 -04002379 return 0;
2380}
2381
2382/*
2383 * mpage_map_and_submit_extent - map extent starting at mpd->lblk of length
2384 * mpd->len and submit pages underlying it for IO
2385 *
2386 * @handle - handle for journal operations
2387 * @mpd - extent to map
Jan Kara7534e852013-10-16 08:26:08 -04002388 * @give_up_on_write - we set this to true iff there is a fatal error and there
2389 * is no hope of writing the data. The caller should discard
2390 * dirty pages to avoid infinite loops.
Jan Kara4e7ea812013-06-04 13:17:40 -04002391 *
2392 * The function maps extent starting at mpd->lblk of length mpd->len. If it is
2393 * delayed, blocks are allocated, if it is unwritten, we may need to convert
2394 * them to initialized or split the described range from larger unwritten
2395 * extent. Note that we need not map all the described range since allocation
2396 * can return less blocks or the range is covered by more unwritten extents. We
2397 * cannot map more because we are limited by reserved transaction credits. On
2398 * the other hand we always make sure that the last touched page is fully
2399 * mapped so that it can be written out (and thus forward progress is
2400 * guaranteed). After mapping we submit all mapped pages for IO.
2401 */
2402static int mpage_map_and_submit_extent(handle_t *handle,
Theodore Ts'ocb530542013-07-01 08:12:40 -04002403 struct mpage_da_data *mpd,
2404 bool *give_up_on_write)
Jan Kara4e7ea812013-06-04 13:17:40 -04002405{
2406 struct inode *inode = mpd->inode;
2407 struct ext4_map_blocks *map = &mpd->map;
2408 int err;
2409 loff_t disksize;
Dmitry Monakhov66031202014-08-27 18:40:03 -04002410 int progress = 0;
Ritesh Harjanic8cc8812019-10-16 13:07:10 +05302411 ext4_io_end_t *io_end = mpd->io_submit.io_end;
Ritesh Harjani4d06bfb2019-11-06 15:08:09 +05302412 struct ext4_io_end_vec *io_end_vec;
Jan Kara4e7ea812013-06-04 13:17:40 -04002413
Ritesh Harjani4d06bfb2019-11-06 15:08:09 +05302414 io_end_vec = ext4_alloc_io_end_vec(io_end);
2415 if (IS_ERR(io_end_vec))
2416 return PTR_ERR(io_end_vec);
Ritesh Harjanic8cc8812019-10-16 13:07:10 +05302417 io_end_vec->offset = ((loff_t)map->m_lblk) << inode->i_blkbits;
Jan Kara27d7c4e2013-07-05 21:57:22 -04002418 do {
Jan Kara4e7ea812013-06-04 13:17:40 -04002419 err = mpage_map_one_extent(handle, mpd);
2420 if (err < 0) {
2421 struct super_block *sb = inode->i_sb;
2422
Theodore Ts'o0db1ff22017-02-05 01:28:48 -05002423 if (ext4_forced_shutdown(EXT4_SB(sb)) ||
2424 EXT4_SB(sb)->s_mount_flags & EXT4_MF_FS_ABORTED)
Theodore Ts'ocb530542013-07-01 08:12:40 -04002425 goto invalidate_dirty_pages;
Jan Kara4e7ea812013-06-04 13:17:40 -04002426 /*
Theodore Ts'ocb530542013-07-01 08:12:40 -04002427 * Let the uper layers retry transient errors.
2428 * In the case of ENOSPC, if ext4_count_free_blocks()
2429 * is non-zero, a commit should free up blocks.
Jan Kara4e7ea812013-06-04 13:17:40 -04002430 */
Theodore Ts'ocb530542013-07-01 08:12:40 -04002431 if ((err == -ENOMEM) ||
Dmitry Monakhov66031202014-08-27 18:40:03 -04002432 (err == -ENOSPC && ext4_count_free_clusters(sb))) {
2433 if (progress)
2434 goto update_disksize;
Theodore Ts'ocb530542013-07-01 08:12:40 -04002435 return err;
Dmitry Monakhov66031202014-08-27 18:40:03 -04002436 }
Theodore Ts'ocb530542013-07-01 08:12:40 -04002437 ext4_msg(sb, KERN_CRIT,
2438 "Delayed block allocation failed for "
2439 "inode %lu at logical offset %llu with"
2440 " max blocks %u with error %d",
2441 inode->i_ino,
2442 (unsigned long long)map->m_lblk,
2443 (unsigned)map->m_len, -err);
2444 ext4_msg(sb, KERN_CRIT,
2445 "This should not happen!! Data will "
2446 "be lost\n");
2447 if (err == -ENOSPC)
2448 ext4_print_free_blocks(inode);
2449 invalidate_dirty_pages:
2450 *give_up_on_write = true;
Jan Kara4e7ea812013-06-04 13:17:40 -04002451 return err;
2452 }
Dmitry Monakhov66031202014-08-27 18:40:03 -04002453 progress = 1;
Jan Kara4e7ea812013-06-04 13:17:40 -04002454 /*
2455 * Update buffer state, submit mapped pages, and get us new
2456 * extent to map
2457 */
2458 err = mpage_map_and_submit_buffers(mpd);
2459 if (err < 0)
Dmitry Monakhov66031202014-08-27 18:40:03 -04002460 goto update_disksize;
Jan Kara27d7c4e2013-07-05 21:57:22 -04002461 } while (map->m_len);
Jan Kara4e7ea812013-06-04 13:17:40 -04002462
Dmitry Monakhov66031202014-08-27 18:40:03 -04002463update_disksize:
Theodore Ts'o622cad12014-04-11 10:35:17 -04002464 /*
2465 * Update on-disk size after IO is submitted. Races with
2466 * truncate are avoided by checking i_size under i_data_sem.
2467 */
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002468 disksize = ((loff_t)mpd->first_page) << PAGE_SHIFT;
Jan Kara4e7ea812013-06-04 13:17:40 -04002469 if (disksize > EXT4_I(inode)->i_disksize) {
2470 int err2;
Theodore Ts'o622cad12014-04-11 10:35:17 -04002471 loff_t i_size;
Jan Kara4e7ea812013-06-04 13:17:40 -04002472
Theodore Ts'o622cad12014-04-11 10:35:17 -04002473 down_write(&EXT4_I(inode)->i_data_sem);
2474 i_size = i_size_read(inode);
2475 if (disksize > i_size)
2476 disksize = i_size;
2477 if (disksize > EXT4_I(inode)->i_disksize)
2478 EXT4_I(inode)->i_disksize = disksize;
Theodore Ts'o622cad12014-04-11 10:35:17 -04002479 up_write(&EXT4_I(inode)->i_data_sem);
Theodore Ts'ob907f2d2017-01-11 22:14:49 -05002480 err2 = ext4_mark_inode_dirty(handle, inode);
Jan Kara4e7ea812013-06-04 13:17:40 -04002481 if (err2)
2482 ext4_error(inode->i_sb,
2483 "Failed to mark inode %lu dirty",
2484 inode->i_ino);
2485 if (!err)
2486 err = err2;
2487 }
2488 return err;
2489}
2490
2491/*
Jan Karafffb2732013-06-04 13:01:11 -04002492 * Calculate the total number of credits to reserve for one writepages
Theodore Ts'o20970ba2013-06-06 14:00:46 -04002493 * iteration. This is called from ext4_writepages(). We map an extent of
Anatol Pomozov70261f52013-08-28 14:40:12 -04002494 * up to MAX_WRITEPAGES_EXTENT_LEN blocks and then we go on and finish mapping
Jan Karafffb2732013-06-04 13:01:11 -04002495 * the last partial page. So in total we can map MAX_WRITEPAGES_EXTENT_LEN +
2496 * bpp - 1 blocks in bpp different extents.
2497 */
Mingming Cao525f4ed2008-08-19 22:15:58 -04002498static int ext4_da_writepages_trans_blocks(struct inode *inode)
2499{
Jan Karafffb2732013-06-04 13:01:11 -04002500 int bpp = ext4_journal_blocks_per_page(inode);
Mingming Cao525f4ed2008-08-19 22:15:58 -04002501
Jan Karafffb2732013-06-04 13:01:11 -04002502 return ext4_meta_trans_blocks(inode,
2503 MAX_WRITEPAGES_EXTENT_LEN + bpp - 1, bpp);
Mingming Cao525f4ed2008-08-19 22:15:58 -04002504}
Mingming Cao61628a32008-07-11 19:27:31 -04002505
Theodore Ts'o8e48dcf2010-05-16 18:00:00 -04002506/*
Jan Kara4e7ea812013-06-04 13:17:40 -04002507 * mpage_prepare_extent_to_map - find & lock contiguous range of dirty pages
2508 * and underlying extent to map
2509 *
2510 * @mpd - where to look for pages
2511 *
2512 * Walk dirty pages in the mapping. If they are fully mapped, submit them for
2513 * IO immediately. When we find a page which isn't mapped we start accumulating
2514 * extent of buffers underlying these pages that needs mapping (formed by
2515 * either delayed or unwritten buffers). We also lock the pages containing
2516 * these buffers. The extent found is returned in @mpd structure (starting at
2517 * mpd->lblk with length mpd->len blocks).
2518 *
2519 * Note that this function can attach bios to one io_end structure which are
2520 * neither logically nor physically contiguous. Although it may seem as an
2521 * unnecessary complication, it is actually inevitable in blocksize < pagesize
2522 * case as we need to track IO to all buffers underlying a page in one io_end.
Theodore Ts'o8e48dcf2010-05-16 18:00:00 -04002523 */
Jan Kara4e7ea812013-06-04 13:17:40 -04002524static int mpage_prepare_extent_to_map(struct mpage_da_data *mpd)
Theodore Ts'o8e48dcf2010-05-16 18:00:00 -04002525{
Jan Kara4e7ea812013-06-04 13:17:40 -04002526 struct address_space *mapping = mpd->inode->i_mapping;
2527 struct pagevec pvec;
2528 unsigned int nr_pages;
Ming Leiaeac5892013-10-17 18:56:16 -04002529 long left = mpd->wbc->nr_to_write;
Jan Kara4e7ea812013-06-04 13:17:40 -04002530 pgoff_t index = mpd->first_page;
2531 pgoff_t end = mpd->last_page;
Matthew Wilcox10bbd232017-12-05 17:30:38 -05002532 xa_mark_t tag;
Jan Kara4e7ea812013-06-04 13:17:40 -04002533 int i, err = 0;
2534 int blkbits = mpd->inode->i_blkbits;
2535 ext4_lblk_t lblk;
2536 struct buffer_head *head;
Theodore Ts'o8e48dcf2010-05-16 18:00:00 -04002537
Jan Kara4e7ea812013-06-04 13:17:40 -04002538 if (mpd->wbc->sync_mode == WB_SYNC_ALL || mpd->wbc->tagged_writepages)
Eric Sandeen5b41d922010-10-27 21:30:13 -04002539 tag = PAGECACHE_TAG_TOWRITE;
2540 else
2541 tag = PAGECACHE_TAG_DIRTY;
2542
Mel Gorman86679822017-11-15 17:37:52 -08002543 pagevec_init(&pvec);
Jan Kara4e7ea812013-06-04 13:17:40 -04002544 mpd->map.m_len = 0;
2545 mpd->next_page = index;
Theodore Ts'o4f01b022011-02-26 14:07:37 -05002546 while (index <= end) {
Jan Karadc7f3e82017-11-15 17:34:44 -08002547 nr_pages = pagevec_lookup_range_tag(&pvec, mapping, &index, end,
Jan Kara67fd7072017-11-15 17:35:19 -08002548 tag);
Theodore Ts'o8e48dcf2010-05-16 18:00:00 -04002549 if (nr_pages == 0)
Jan Kara4e7ea812013-06-04 13:17:40 -04002550 goto out;
Theodore Ts'o8e48dcf2010-05-16 18:00:00 -04002551
2552 for (i = 0; i < nr_pages; i++) {
2553 struct page *page = pvec.pages[i];
2554
2555 /*
Ming Leiaeac5892013-10-17 18:56:16 -04002556 * Accumulated enough dirty pages? This doesn't apply
2557 * to WB_SYNC_ALL mode. For integrity sync we have to
2558 * keep going because someone may be concurrently
2559 * dirtying pages, and we might have synced a lot of
2560 * newly appeared dirty pages, but have not synced all
2561 * of the old dirty pages.
2562 */
2563 if (mpd->wbc->sync_mode == WB_SYNC_NONE && left <= 0)
2564 goto out;
2565
Jan Kara4e7ea812013-06-04 13:17:40 -04002566 /* If we can't merge this page, we are done. */
2567 if (mpd->map.m_len > 0 && mpd->next_page != page->index)
2568 goto out;
Theodore Ts'o78aaced2011-02-26 14:09:14 -05002569
Theodore Ts'o8e48dcf2010-05-16 18:00:00 -04002570 lock_page(page);
Theodore Ts'o8e48dcf2010-05-16 18:00:00 -04002571 /*
Jan Kara4e7ea812013-06-04 13:17:40 -04002572 * If the page is no longer dirty, or its mapping no
2573 * longer corresponds to inode we are writing (which
2574 * means it has been truncated or invalidated), or the
2575 * page is already under writeback and we are not doing
2576 * a data integrity writeback, skip the page
Theodore Ts'o8e48dcf2010-05-16 18:00:00 -04002577 */
Theodore Ts'o4f01b022011-02-26 14:07:37 -05002578 if (!PageDirty(page) ||
2579 (PageWriteback(page) &&
Jan Kara4e7ea812013-06-04 13:17:40 -04002580 (mpd->wbc->sync_mode == WB_SYNC_NONE)) ||
Theodore Ts'o4f01b022011-02-26 14:07:37 -05002581 unlikely(page->mapping != mapping)) {
Theodore Ts'o8e48dcf2010-05-16 18:00:00 -04002582 unlock_page(page);
2583 continue;
2584 }
2585
Darrick J. Wong7cb1a532011-05-18 13:53:20 -04002586 wait_on_page_writeback(page);
Theodore Ts'o8e48dcf2010-05-16 18:00:00 -04002587 BUG_ON(PageWriteback(page));
Theodore Ts'o8e48dcf2010-05-16 18:00:00 -04002588
Jan Kara4e7ea812013-06-04 13:17:40 -04002589 if (mpd->map.m_len == 0)
Theodore Ts'o8eb9e5c2011-02-26 14:07:31 -05002590 mpd->first_page = page->index;
Theodore Ts'o8eb9e5c2011-02-26 14:07:31 -05002591 mpd->next_page = page->index + 1;
Jan Karaf8bec372013-01-28 12:55:08 -05002592 /* Add all dirty buffers to mpd */
Jan Kara4e7ea812013-06-04 13:17:40 -04002593 lblk = ((ext4_lblk_t)page->index) <<
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002594 (PAGE_SHIFT - blkbits);
Jan Karaf8bec372013-01-28 12:55:08 -05002595 head = page_buffers(page);
Jan Kara5f1132b2013-08-17 10:02:33 -04002596 err = mpage_process_page_bufs(mpd, head, head, lblk);
2597 if (err <= 0)
Jan Kara4e7ea812013-06-04 13:17:40 -04002598 goto out;
Jan Kara5f1132b2013-08-17 10:02:33 -04002599 err = 0;
Ming Leiaeac5892013-10-17 18:56:16 -04002600 left--;
Theodore Ts'o8e48dcf2010-05-16 18:00:00 -04002601 }
2602 pagevec_release(&pvec);
2603 cond_resched();
2604 }
Theodore Ts'o4f01b022011-02-26 14:07:37 -05002605 return 0;
Theodore Ts'o8eb9e5c2011-02-26 14:07:31 -05002606out:
2607 pagevec_release(&pvec);
Jan Kara4e7ea812013-06-04 13:17:40 -04002608 return err;
Theodore Ts'o8e48dcf2010-05-16 18:00:00 -04002609}
2610
Theodore Ts'o20970ba2013-06-06 14:00:46 -04002611static int ext4_writepages(struct address_space *mapping,
2612 struct writeback_control *wbc)
Alex Tomas64769242008-07-11 19:27:31 -04002613{
Jan Kara4e7ea812013-06-04 13:17:40 -04002614 pgoff_t writeback_index = 0;
2615 long nr_to_write = wbc->nr_to_write;
Aneesh Kumar K.V22208de2008-10-16 10:10:36 -04002616 int range_whole = 0;
Jan Kara4e7ea812013-06-04 13:17:40 -04002617 int cycled = 1;
Mingming Cao61628a32008-07-11 19:27:31 -04002618 handle_t *handle = NULL;
Aneesh Kumar K.Vdf222912008-09-08 23:05:34 -04002619 struct mpage_da_data mpd;
Aneesh Kumar K.V5e745b02008-08-18 18:00:57 -04002620 struct inode *inode = mapping->host;
Jan Kara6b523df2013-06-04 13:21:11 -04002621 int needed_blocks, rsv_blocks = 0, ret = 0;
Aneesh Kumar K.V5e745b02008-08-18 18:00:57 -04002622 struct ext4_sb_info *sbi = EXT4_SB(mapping->host->i_sb);
Jan Kara4e7ea812013-06-04 13:17:40 -04002623 bool done;
Shaohua Li1bce63d12011-10-18 10:55:51 -04002624 struct blk_plug plug;
Theodore Ts'ocb530542013-07-01 08:12:40 -04002625 bool give_up_on_write = false;
Mingming Cao61628a32008-07-11 19:27:31 -04002626
Theodore Ts'o0db1ff22017-02-05 01:28:48 -05002627 if (unlikely(ext4_forced_shutdown(EXT4_SB(inode->i_sb))))
2628 return -EIO;
2629
Daeho Jeongc8585c62016-04-25 23:22:35 -04002630 percpu_down_read(&sbi->s_journal_flag_rwsem);
Theodore Ts'o20970ba2013-06-06 14:00:46 -04002631 trace_ext4_writepages(inode, wbc);
Theodore Ts'oba80b102009-01-03 20:03:21 -05002632
Mingming Cao61628a32008-07-11 19:27:31 -04002633 /*
2634 * No pages to write? This is mainly a kludge to avoid starting
2635 * a transaction for special inodes like journal inode on last iput()
2636 * because that could violate lock ordering on umount
2637 */
Aneesh Kumar K.Va1d6cc52008-08-19 21:55:02 -04002638 if (!mapping->nrpages || !mapping_tagged(mapping, PAGECACHE_TAG_DIRTY))
Ming Leibbf023c72013-10-30 07:27:16 -04002639 goto out_writepages;
Theodore Ts'o2a21e372008-11-05 09:22:24 -05002640
Theodore Ts'o20970ba2013-06-06 14:00:46 -04002641 if (ext4_should_journal_data(inode)) {
Goldwyn Rodrigues043d20d2018-03-26 01:32:50 -04002642 ret = generic_writepages(mapping, wbc);
Ming Leibbf023c72013-10-30 07:27:16 -04002643 goto out_writepages;
Theodore Ts'o20970ba2013-06-06 14:00:46 -04002644 }
2645
Theodore Ts'o2a21e372008-11-05 09:22:24 -05002646 /*
2647 * If the filesystem has aborted, it is read-only, so return
2648 * right away instead of dumping stack traces later on that
2649 * will obscure the real source of the problem. We test
Linus Torvalds1751e8a2017-11-27 13:05:09 -08002650 * EXT4_MF_FS_ABORTED instead of sb->s_flag's SB_RDONLY because
Theodore Ts'o2a21e372008-11-05 09:22:24 -05002651 * the latter could be true if the filesystem is mounted
Theodore Ts'o20970ba2013-06-06 14:00:46 -04002652 * read-only, and in that case, ext4_writepages should
Theodore Ts'o2a21e372008-11-05 09:22:24 -05002653 * *never* be called, so if that ever happens, we would want
2654 * the stack trace.
2655 */
Theodore Ts'o0db1ff22017-02-05 01:28:48 -05002656 if (unlikely(ext4_forced_shutdown(EXT4_SB(mapping->host->i_sb)) ||
2657 sbi->s_mount_flags & EXT4_MF_FS_ABORTED)) {
Ming Leibbf023c72013-10-30 07:27:16 -04002658 ret = -EROFS;
2659 goto out_writepages;
2660 }
Theodore Ts'o2a21e372008-11-05 09:22:24 -05002661
Jan Kara4e7ea812013-06-04 13:17:40 -04002662 /*
2663 * If we have inline data and arrive here, it means that
2664 * we will soon create the block for the 1st page, so
2665 * we'd better clear the inline data here.
2666 */
2667 if (ext4_has_inline_data(inode)) {
2668 /* Just inode will be modified... */
2669 handle = ext4_journal_start(inode, EXT4_HT_INODE, 1);
2670 if (IS_ERR(handle)) {
2671 ret = PTR_ERR(handle);
2672 goto out_writepages;
2673 }
2674 BUG_ON(ext4_test_inode_state(inode,
2675 EXT4_STATE_MAY_INLINE_DATA));
2676 ext4_destroy_inline_data(handle, inode);
2677 ext4_journal_stop(handle);
2678 }
2679
yangerkun4e343232019-08-11 16:27:41 -04002680 if (ext4_should_dioread_nolock(inode)) {
2681 /*
2682 * We may need to convert up to one extent per block in
2683 * the page and we may dirty the inode.
2684 */
2685 rsv_blocks = 1 + ext4_chunk_trans_blocks(inode,
2686 PAGE_SIZE >> inode->i_blkbits);
2687 }
2688
Aneesh Kumar K.V22208de2008-10-16 10:10:36 -04002689 if (wbc->range_start == 0 && wbc->range_end == LLONG_MAX)
2690 range_whole = 1;
Mingming Cao61628a32008-07-11 19:27:31 -04002691
Aneesh Kumar K.V2acf2c22009-02-14 10:42:58 -05002692 if (wbc->range_cyclic) {
Jan Kara4e7ea812013-06-04 13:17:40 -04002693 writeback_index = mapping->writeback_index;
2694 if (writeback_index)
Aneesh Kumar K.V2acf2c22009-02-14 10:42:58 -05002695 cycled = 0;
Jan Kara4e7ea812013-06-04 13:17:40 -04002696 mpd.first_page = writeback_index;
2697 mpd.last_page = -1;
Eric Sandeen5b41d922010-10-27 21:30:13 -04002698 } else {
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002699 mpd.first_page = wbc->range_start >> PAGE_SHIFT;
2700 mpd.last_page = wbc->range_end >> PAGE_SHIFT;
Eric Sandeen5b41d922010-10-27 21:30:13 -04002701 }
Aneesh Kumar K.Va1d6cc52008-08-19 21:55:02 -04002702
Jan Kara4e7ea812013-06-04 13:17:40 -04002703 mpd.inode = inode;
2704 mpd.wbc = wbc;
2705 ext4_io_submit_init(&mpd.io_submit, wbc);
Aneesh Kumar K.V2acf2c22009-02-14 10:42:58 -05002706retry:
Wu Fengguang6e6938b2010-06-06 10:38:15 -06002707 if (wbc->sync_mode == WB_SYNC_ALL || wbc->tagged_writepages)
Jan Kara4e7ea812013-06-04 13:17:40 -04002708 tag_pages_for_writeback(mapping, mpd.first_page, mpd.last_page);
2709 done = false;
Shaohua Li1bce63d12011-10-18 10:55:51 -04002710 blk_start_plug(&plug);
Jan Karadddbd6a2017-04-30 18:29:10 -04002711
2712 /*
2713 * First writeback pages that don't need mapping - we can avoid
2714 * starting a transaction unnecessarily and also avoid being blocked
2715 * in the block layer on device congestion while having transaction
2716 * started.
2717 */
2718 mpd.do_map = 0;
2719 mpd.io_submit.io_end = ext4_init_io_end(inode, GFP_KERNEL);
2720 if (!mpd.io_submit.io_end) {
2721 ret = -ENOMEM;
2722 goto unplug;
2723 }
2724 ret = mpage_prepare_extent_to_map(&mpd);
Xiaoguang Wanga297b2f2019-02-10 23:53:21 -05002725 /* Unlock pages we didn't use */
2726 mpage_release_unused_pages(&mpd, false);
Jan Karadddbd6a2017-04-30 18:29:10 -04002727 /* Submit prepared bio */
2728 ext4_io_submit(&mpd.io_submit);
2729 ext4_put_io_end_defer(mpd.io_submit.io_end);
2730 mpd.io_submit.io_end = NULL;
Jan Karadddbd6a2017-04-30 18:29:10 -04002731 if (ret < 0)
2732 goto unplug;
2733
Jan Kara4e7ea812013-06-04 13:17:40 -04002734 while (!done && mpd.first_page <= mpd.last_page) {
2735 /* For each extent of pages we use new io_end */
2736 mpd.io_submit.io_end = ext4_init_io_end(inode, GFP_KERNEL);
2737 if (!mpd.io_submit.io_end) {
2738 ret = -ENOMEM;
2739 break;
2740 }
Aneesh Kumar K.Va1d6cc52008-08-19 21:55:02 -04002741
2742 /*
Jan Kara4e7ea812013-06-04 13:17:40 -04002743 * We have two constraints: We find one extent to map and we
2744 * must always write out whole page (makes a difference when
2745 * blocksize < pagesize) so that we don't block on IO when we
2746 * try to write out the rest of the page. Journalled mode is
2747 * not supported by delalloc.
Aneesh Kumar K.Va1d6cc52008-08-19 21:55:02 -04002748 */
2749 BUG_ON(ext4_should_journal_data(inode));
Mingming Cao525f4ed2008-08-19 22:15:58 -04002750 needed_blocks = ext4_da_writepages_trans_blocks(inode);
Aneesh Kumar K.Va1d6cc52008-08-19 21:55:02 -04002751
Jan Kara4e7ea812013-06-04 13:17:40 -04002752 /* start a new transaction */
Jan Kara6b523df2013-06-04 13:21:11 -04002753 handle = ext4_journal_start_with_reserve(inode,
2754 EXT4_HT_WRITE_PAGE, needed_blocks, rsv_blocks);
Mingming Cao61628a32008-07-11 19:27:31 -04002755 if (IS_ERR(handle)) {
2756 ret = PTR_ERR(handle);
Theodore Ts'o16939182009-09-26 17:43:59 -04002757 ext4_msg(inode->i_sb, KERN_CRIT, "%s: jbd2_start: "
Curt Wohlgemuthfbe845d2010-05-16 13:00:00 -04002758 "%ld pages, ino %lu; err %d", __func__,
Aneesh Kumar K.Va1d6cc52008-08-19 21:55:02 -04002759 wbc->nr_to_write, inode->i_ino, ret);
Jan Kara4e7ea812013-06-04 13:17:40 -04002760 /* Release allocated io_end */
2761 ext4_put_io_end(mpd.io_submit.io_end);
Jan Karadddbd6a2017-04-30 18:29:10 -04002762 mpd.io_submit.io_end = NULL;
Jan Kara4e7ea812013-06-04 13:17:40 -04002763 break;
Mingming Cao61628a32008-07-11 19:27:31 -04002764 }
Jan Karadddbd6a2017-04-30 18:29:10 -04002765 mpd.do_map = 1;
Theodore Ts'of63e60052009-02-23 16:42:39 -05002766
Jan Kara4e7ea812013-06-04 13:17:40 -04002767 trace_ext4_da_write_pages(inode, mpd.first_page, mpd.wbc);
2768 ret = mpage_prepare_extent_to_map(&mpd);
2769 if (!ret) {
2770 if (mpd.map.m_len)
Theodore Ts'ocb530542013-07-01 08:12:40 -04002771 ret = mpage_map_and_submit_extent(handle, &mpd,
2772 &give_up_on_write);
Jan Kara4e7ea812013-06-04 13:17:40 -04002773 else {
2774 /*
2775 * We scanned the whole range (or exhausted
2776 * nr_to_write), submitted what was mapped and
2777 * didn't find anything needing mapping. We are
2778 * done.
2779 */
2780 done = true;
2781 }
Theodore Ts'of63e60052009-02-23 16:42:39 -05002782 }
Jan Kara646caa92016-07-04 10:14:01 -04002783 /*
2784 * Caution: If the handle is synchronous,
2785 * ext4_journal_stop() can wait for transaction commit
2786 * to finish which may depend on writeback of pages to
2787 * complete or on page lock to be released. In that
2788 * case, we have to wait until after after we have
2789 * submitted all the IO, released page locks we hold,
2790 * and dropped io_end reference (for extent conversion
2791 * to be able to complete) before stopping the handle.
2792 */
2793 if (!ext4_handle_valid(handle) || handle->h_sync == 0) {
2794 ext4_journal_stop(handle);
2795 handle = NULL;
Jan Karadddbd6a2017-04-30 18:29:10 -04002796 mpd.do_map = 0;
Jan Kara646caa92016-07-04 10:14:01 -04002797 }
Jan Kara4e7ea812013-06-04 13:17:40 -04002798 /* Unlock pages we didn't use */
Theodore Ts'ocb530542013-07-01 08:12:40 -04002799 mpage_release_unused_pages(&mpd, give_up_on_write);
Xiaoguang Wanga297b2f2019-02-10 23:53:21 -05002800 /* Submit prepared bio */
2801 ext4_io_submit(&mpd.io_submit);
2802
Jan Kara646caa92016-07-04 10:14:01 -04002803 /*
2804 * Drop our io_end reference we got from init. We have
2805 * to be careful and use deferred io_end finishing if
2806 * we are still holding the transaction as we can
2807 * release the last reference to io_end which may end
2808 * up doing unwritten extent conversion.
2809 */
2810 if (handle) {
2811 ext4_put_io_end_defer(mpd.io_submit.io_end);
2812 ext4_journal_stop(handle);
2813 } else
2814 ext4_put_io_end(mpd.io_submit.io_end);
Jan Karadddbd6a2017-04-30 18:29:10 -04002815 mpd.io_submit.io_end = NULL;
Aneesh Kumar K.Vdf222912008-09-08 23:05:34 -04002816
Jan Kara4e7ea812013-06-04 13:17:40 -04002817 if (ret == -ENOSPC && sbi->s_journal) {
2818 /*
2819 * Commit the transaction which would
Aneesh Kumar K.V22208de2008-10-16 10:10:36 -04002820 * free blocks released in the transaction
2821 * and try again
2822 */
Aneesh Kumar K.Vdf222912008-09-08 23:05:34 -04002823 jbd2_journal_force_commit_nested(sbi->s_journal);
Aneesh Kumar K.V22208de2008-10-16 10:10:36 -04002824 ret = 0;
Jan Kara4e7ea812013-06-04 13:17:40 -04002825 continue;
2826 }
2827 /* Fatal error - ENOMEM, EIO... */
2828 if (ret)
Mingming Cao61628a32008-07-11 19:27:31 -04002829 break;
Mingming Cao61628a32008-07-11 19:27:31 -04002830 }
Jan Karadddbd6a2017-04-30 18:29:10 -04002831unplug:
Shaohua Li1bce63d12011-10-18 10:55:51 -04002832 blk_finish_plug(&plug);
Jan Kara9c12a832013-09-16 08:24:26 -04002833 if (!ret && !cycled && wbc->nr_to_write > 0) {
Aneesh Kumar K.V2acf2c22009-02-14 10:42:58 -05002834 cycled = 1;
Jan Kara4e7ea812013-06-04 13:17:40 -04002835 mpd.last_page = writeback_index - 1;
2836 mpd.first_page = 0;
Aneesh Kumar K.V2acf2c22009-02-14 10:42:58 -05002837 goto retry;
2838 }
Mingming Cao61628a32008-07-11 19:27:31 -04002839
Aneesh Kumar K.V22208de2008-10-16 10:10:36 -04002840 /* Update index */
Aneesh Kumar K.V22208de2008-10-16 10:10:36 -04002841 if (wbc->range_cyclic || (range_whole && wbc->nr_to_write > 0))
2842 /*
Jan Kara4e7ea812013-06-04 13:17:40 -04002843 * Set the writeback_index so that range_cyclic
Aneesh Kumar K.V22208de2008-10-16 10:10:36 -04002844 * mode will write it back later
2845 */
Jan Kara4e7ea812013-06-04 13:17:40 -04002846 mapping->writeback_index = mpd.first_page;
Aneesh Kumar K.Va1d6cc52008-08-19 21:55:02 -04002847
Mingming Cao61628a32008-07-11 19:27:31 -04002848out_writepages:
Theodore Ts'o20970ba2013-06-06 14:00:46 -04002849 trace_ext4_writepages_result(inode, wbc, ret,
2850 nr_to_write - wbc->nr_to_write);
Daeho Jeongc8585c62016-04-25 23:22:35 -04002851 percpu_up_read(&sbi->s_journal_flag_rwsem);
Mingming Cao61628a32008-07-11 19:27:31 -04002852 return ret;
Alex Tomas64769242008-07-11 19:27:31 -04002853}
2854
Dan Williams5f0663b2017-12-21 12:25:11 -08002855static int ext4_dax_writepages(struct address_space *mapping,
2856 struct writeback_control *wbc)
2857{
2858 int ret;
2859 long nr_to_write = wbc->nr_to_write;
2860 struct inode *inode = mapping->host;
2861 struct ext4_sb_info *sbi = EXT4_SB(mapping->host->i_sb);
2862
2863 if (unlikely(ext4_forced_shutdown(EXT4_SB(inode->i_sb))))
2864 return -EIO;
2865
2866 percpu_down_read(&sbi->s_journal_flag_rwsem);
2867 trace_ext4_writepages(inode, wbc);
2868
2869 ret = dax_writeback_mapping_range(mapping, inode->i_sb->s_bdev, wbc);
2870 trace_ext4_writepages_result(inode, wbc, ret,
2871 nr_to_write - wbc->nr_to_write);
2872 percpu_up_read(&sbi->s_journal_flag_rwsem);
2873 return ret;
2874}
2875
Aneesh Kumar K.V79f0be82008-10-08 23:13:30 -04002876static int ext4_nonda_switch(struct super_block *sb)
2877{
Eric Whitney5c1ff332013-04-09 09:27:31 -04002878 s64 free_clusters, dirty_clusters;
Aneesh Kumar K.V79f0be82008-10-08 23:13:30 -04002879 struct ext4_sb_info *sbi = EXT4_SB(sb);
2880
2881 /*
2882 * switch to non delalloc mode if we are running low
2883 * on free block. The free block accounting via percpu
Eric Dumazet179f7eb2009-01-06 14:41:04 -08002884 * counters can get slightly wrong with percpu_counter_batch getting
Aneesh Kumar K.V79f0be82008-10-08 23:13:30 -04002885 * accumulated on each CPU without updating global counters
2886 * Delalloc need an accurate free block accounting. So switch
2887 * to non delalloc when we are near to error range.
2888 */
Eric Whitney5c1ff332013-04-09 09:27:31 -04002889 free_clusters =
2890 percpu_counter_read_positive(&sbi->s_freeclusters_counter);
2891 dirty_clusters =
2892 percpu_counter_read_positive(&sbi->s_dirtyclusters_counter);
Theodore Ts'o00d4e732012-09-19 22:42:36 -04002893 /*
2894 * Start pushing delalloc when 1/2 of free blocks are dirty.
2895 */
Eric Whitney5c1ff332013-04-09 09:27:31 -04002896 if (dirty_clusters && (free_clusters < 2 * dirty_clusters))
Miao Xie10ee27a2013-01-10 13:47:57 +08002897 try_to_writeback_inodes_sb(sb, WB_REASON_FS_FREE_SPACE);
Theodore Ts'o00d4e732012-09-19 22:42:36 -04002898
Eric Whitney5c1ff332013-04-09 09:27:31 -04002899 if (2 * free_clusters < 3 * dirty_clusters ||
2900 free_clusters < (dirty_clusters + EXT4_FREECLUSTERS_WATERMARK)) {
Aneesh Kumar K.V79f0be82008-10-08 23:13:30 -04002901 /*
Eric Sandeenc8afb442009-12-23 07:58:12 -05002902 * free block count is less than 150% of dirty blocks
2903 * or free blocks is less than watermark
Aneesh Kumar K.V79f0be82008-10-08 23:13:30 -04002904 */
2905 return 1;
2906 }
2907 return 0;
2908}
2909
Eric Sandeen0ff89472014-10-11 19:51:17 -04002910/* We always reserve for an inode update; the superblock could be there too */
2911static int ext4_da_write_credits(struct inode *inode, loff_t pos, unsigned len)
2912{
Darrick J. Wonge2b911c2015-10-17 16:18:43 -04002913 if (likely(ext4_has_feature_large_file(inode->i_sb)))
Eric Sandeen0ff89472014-10-11 19:51:17 -04002914 return 1;
2915
2916 if (pos + len <= 0x7fffffffULL)
2917 return 1;
2918
2919 /* We might need to update the superblock to set LARGE_FILE */
2920 return 2;
2921}
2922
Alex Tomas64769242008-07-11 19:27:31 -04002923static int ext4_da_write_begin(struct file *file, struct address_space *mapping,
Theodore Ts'ode9a55b2009-06-14 17:45:34 -04002924 loff_t pos, unsigned len, unsigned flags,
2925 struct page **pagep, void **fsdata)
Alex Tomas64769242008-07-11 19:27:31 -04002926{
Eric Sandeen72b8ab92010-05-16 11:00:00 -04002927 int ret, retries = 0;
Alex Tomas64769242008-07-11 19:27:31 -04002928 struct page *page;
2929 pgoff_t index;
Alex Tomas64769242008-07-11 19:27:31 -04002930 struct inode *inode = mapping->host;
2931 handle_t *handle;
2932
Theodore Ts'o0db1ff22017-02-05 01:28:48 -05002933 if (unlikely(ext4_forced_shutdown(EXT4_SB(inode->i_sb))))
2934 return -EIO;
2935
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002936 index = pos >> PAGE_SHIFT;
Aneesh Kumar K.V79f0be82008-10-08 23:13:30 -04002937
Eric Biggersc93d8f82019-07-22 09:26:24 -07002938 if (ext4_nonda_switch(inode->i_sb) || S_ISLNK(inode->i_mode) ||
2939 ext4_verity_in_progress(inode)) {
Aneesh Kumar K.V79f0be82008-10-08 23:13:30 -04002940 *fsdata = (void *)FALL_BACK_TO_NONDELALLOC;
2941 return ext4_write_begin(file, mapping, pos,
2942 len, flags, pagep, fsdata);
2943 }
2944 *fsdata = (void *)0;
Theodore Ts'o9bffad12009-06-17 11:48:11 -04002945 trace_ext4_da_write_begin(inode, pos, len, flags);
Tao Ma9c3569b2012-12-10 14:05:57 -05002946
2947 if (ext4_test_inode_state(inode, EXT4_STATE_MAY_INLINE_DATA)) {
2948 ret = ext4_da_write_inline_data_begin(mapping, inode,
2949 pos, len, flags,
2950 pagep, fsdata);
2951 if (ret < 0)
Theodore Ts'o47564bf2013-02-09 09:24:14 -05002952 return ret;
2953 if (ret == 1)
2954 return 0;
Tao Ma9c3569b2012-12-10 14:05:57 -05002955 }
2956
Theodore Ts'o47564bf2013-02-09 09:24:14 -05002957 /*
2958 * grab_cache_page_write_begin() can take a long time if the
2959 * system is thrashing due to memory pressure, or if the page
2960 * is being written back. So grab it first before we start
2961 * the transaction handle. This also allows us to allocate
2962 * the page (if needed) without using GFP_NOFS.
2963 */
2964retry_grab:
2965 page = grab_cache_page_write_begin(mapping, index, flags);
2966 if (!page)
2967 return -ENOMEM;
2968 unlock_page(page);
2969
Alex Tomas64769242008-07-11 19:27:31 -04002970 /*
2971 * With delayed allocation, we don't log the i_disksize update
2972 * if there is delayed block allocation. But we still need
2973 * to journalling the i_disksize update if writes to the end
2974 * of file which has an already mapped buffer.
2975 */
Theodore Ts'o47564bf2013-02-09 09:24:14 -05002976retry_journal:
Eric Sandeen0ff89472014-10-11 19:51:17 -04002977 handle = ext4_journal_start(inode, EXT4_HT_WRITE_PAGE,
2978 ext4_da_write_credits(inode, pos, len));
Alex Tomas64769242008-07-11 19:27:31 -04002979 if (IS_ERR(handle)) {
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002980 put_page(page);
Theodore Ts'o47564bf2013-02-09 09:24:14 -05002981 return PTR_ERR(handle);
Alex Tomas64769242008-07-11 19:27:31 -04002982 }
2983
Theodore Ts'o47564bf2013-02-09 09:24:14 -05002984 lock_page(page);
2985 if (page->mapping != mapping) {
2986 /* The page got truncated from under us */
2987 unlock_page(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002988 put_page(page);
Eric Sandeend5a0d4f2008-08-02 18:51:06 -04002989 ext4_journal_stop(handle);
Theodore Ts'o47564bf2013-02-09 09:24:14 -05002990 goto retry_grab;
Eric Sandeend5a0d4f2008-08-02 18:51:06 -04002991 }
Theodore Ts'o47564bf2013-02-09 09:24:14 -05002992 /* In case writeback began while the page was unlocked */
Dmitry Monakhov7afe5aa2013-08-28 14:30:47 -04002993 wait_for_stable_page(page);
Alex Tomas64769242008-07-11 19:27:31 -04002994
Chandan Rajendra643fa962018-12-12 15:20:12 +05302995#ifdef CONFIG_FS_ENCRYPTION
Michael Halcrow2058f832015-04-12 00:55:10 -04002996 ret = ext4_block_write_begin(page, pos, len,
2997 ext4_da_get_block_prep);
2998#else
Christoph Hellwig6e1db882010-06-04 11:29:57 +02002999 ret = __block_write_begin(page, pos, len, ext4_da_get_block_prep);
Michael Halcrow2058f832015-04-12 00:55:10 -04003000#endif
Alex Tomas64769242008-07-11 19:27:31 -04003001 if (ret < 0) {
3002 unlock_page(page);
3003 ext4_journal_stop(handle);
Aneesh Kumar K.Vae4d5372008-09-13 13:10:25 -04003004 /*
3005 * block_write_begin may have instantiated a few blocks
3006 * outside i_size. Trim these off again. Don't need
3007 * i_size_read because we hold i_mutex.
3008 */
3009 if (pos + len > inode->i_size)
Jan Karab9a42072009-12-08 21:24:33 -05003010 ext4_truncate_failed_write(inode);
Theodore Ts'o47564bf2013-02-09 09:24:14 -05003011
3012 if (ret == -ENOSPC &&
3013 ext4_should_retry_alloc(inode->i_sb, &retries))
3014 goto retry_journal;
3015
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03003016 put_page(page);
Theodore Ts'o47564bf2013-02-09 09:24:14 -05003017 return ret;
Alex Tomas64769242008-07-11 19:27:31 -04003018 }
3019
Theodore Ts'o47564bf2013-02-09 09:24:14 -05003020 *pagep = page;
Alex Tomas64769242008-07-11 19:27:31 -04003021 return ret;
3022}
3023
Mingming Cao632eaea2008-07-11 19:27:31 -04003024/*
3025 * Check if we should update i_disksize
3026 * when write to the end of file but not require block allocation
3027 */
3028static int ext4_da_should_update_i_disksize(struct page *page,
Theodore Ts'ode9a55b2009-06-14 17:45:34 -04003029 unsigned long offset)
Mingming Cao632eaea2008-07-11 19:27:31 -04003030{
3031 struct buffer_head *bh;
3032 struct inode *inode = page->mapping->host;
3033 unsigned int idx;
3034 int i;
3035
3036 bh = page_buffers(page);
3037 idx = offset >> inode->i_blkbits;
3038
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04003039 for (i = 0; i < idx; i++)
Mingming Cao632eaea2008-07-11 19:27:31 -04003040 bh = bh->b_this_page;
3041
Aneesh Kumar K.V29fa89d2009-05-12 16:30:27 -04003042 if (!buffer_mapped(bh) || (buffer_delay(bh)) || buffer_unwritten(bh))
Mingming Cao632eaea2008-07-11 19:27:31 -04003043 return 0;
3044 return 1;
3045}
3046
Alex Tomas64769242008-07-11 19:27:31 -04003047static int ext4_da_write_end(struct file *file,
Theodore Ts'ode9a55b2009-06-14 17:45:34 -04003048 struct address_space *mapping,
3049 loff_t pos, unsigned len, unsigned copied,
3050 struct page *page, void *fsdata)
Alex Tomas64769242008-07-11 19:27:31 -04003051{
3052 struct inode *inode = mapping->host;
3053 int ret = 0, ret2;
3054 handle_t *handle = ext4_journal_current_handle();
3055 loff_t new_i_size;
Mingming Cao632eaea2008-07-11 19:27:31 -04003056 unsigned long start, end;
Aneesh Kumar K.V79f0be82008-10-08 23:13:30 -04003057 int write_mode = (int)(unsigned long)fsdata;
3058
Theodore Ts'o74d553a2013-04-03 12:39:17 -04003059 if (write_mode == FALL_BACK_TO_NONDELALLOC)
3060 return ext4_write_end(file, mapping, pos,
3061 len, copied, page, fsdata);
Mingming Cao632eaea2008-07-11 19:27:31 -04003062
Theodore Ts'o9bffad12009-06-17 11:48:11 -04003063 trace_ext4_da_write_end(inode, pos, len, copied);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03003064 start = pos & (PAGE_SIZE - 1);
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04003065 end = start + copied - 1;
Alex Tomas64769242008-07-11 19:27:31 -04003066
3067 /*
3068 * generic_write_end() will run mark_inode_dirty() if i_size
3069 * changes. So let's piggyback the i_disksize mark_inode_dirty
3070 * into that.
3071 */
Alex Tomas64769242008-07-11 19:27:31 -04003072 new_i_size = pos + copied;
Andrea Arcangeliea51d132011-12-13 21:41:15 -05003073 if (copied && new_i_size > EXT4_I(inode)->i_disksize) {
Tao Ma9c3569b2012-12-10 14:05:57 -05003074 if (ext4_has_inline_data(inode) ||
3075 ext4_da_should_update_i_disksize(page, end)) {
Dmitry Monakhovee124d22014-08-30 23:34:06 -04003076 ext4_update_i_disksize(inode, new_i_size);
Aneesh Kumar K.Vcf17fea2008-09-13 13:06:18 -04003077 /* We need to mark inode dirty even if
3078 * new_i_size is less that inode->i_size
3079 * bu greater than i_disksize.(hint delalloc)
3080 */
3081 ext4_mark_inode_dirty(handle, inode);
Alex Tomas64769242008-07-11 19:27:31 -04003082 }
Mingming Cao632eaea2008-07-11 19:27:31 -04003083 }
Tao Ma9c3569b2012-12-10 14:05:57 -05003084
3085 if (write_mode != CONVERT_INLINE_DATA &&
3086 ext4_test_inode_state(inode, EXT4_STATE_MAY_INLINE_DATA) &&
3087 ext4_has_inline_data(inode))
3088 ret2 = ext4_da_write_inline_data_end(inode, pos, len, copied,
3089 page);
3090 else
3091 ret2 = generic_write_end(file, mapping, pos, len, copied,
Alex Tomas64769242008-07-11 19:27:31 -04003092 page, fsdata);
Tao Ma9c3569b2012-12-10 14:05:57 -05003093
Alex Tomas64769242008-07-11 19:27:31 -04003094 copied = ret2;
3095 if (ret2 < 0)
3096 ret = ret2;
3097 ret2 = ext4_journal_stop(handle);
3098 if (!ret)
3099 ret = ret2;
3100
3101 return ret ? ret : copied;
3102}
3103
Theodore Ts'occd25062009-02-26 01:04:07 -05003104/*
3105 * Force all delayed allocation blocks to be allocated for a given inode.
3106 */
3107int ext4_alloc_da_blocks(struct inode *inode)
3108{
Theodore Ts'ofb40ba02009-09-16 19:30:40 -04003109 trace_ext4_alloc_da_blocks(inode);
3110
Theodore Ts'o71d4f7d2014-07-15 06:02:38 -04003111 if (!EXT4_I(inode)->i_reserved_data_blocks)
Theodore Ts'occd25062009-02-26 01:04:07 -05003112 return 0;
3113
3114 /*
3115 * We do something simple for now. The filemap_flush() will
3116 * also start triggering a write of the data blocks, which is
3117 * not strictly speaking necessary (and for users of
3118 * laptop_mode, not even desirable). However, to do otherwise
3119 * would require replicating code paths in:
Theodore Ts'ode9a55b2009-06-14 17:45:34 -04003120 *
Theodore Ts'o20970ba2013-06-06 14:00:46 -04003121 * ext4_writepages() ->
Theodore Ts'occd25062009-02-26 01:04:07 -05003122 * write_cache_pages() ---> (via passed in callback function)
3123 * __mpage_da_writepage() -->
3124 * mpage_add_bh_to_extent()
3125 * mpage_da_map_blocks()
3126 *
3127 * The problem is that write_cache_pages(), located in
3128 * mm/page-writeback.c, marks pages clean in preparation for
3129 * doing I/O, which is not desirable if we're not planning on
3130 * doing I/O at all.
3131 *
3132 * We could call write_cache_pages(), and then redirty all of
Wu Fengguang380cf092010-11-11 19:23:29 +08003133 * the pages by calling redirty_page_for_writepage() but that
Theodore Ts'occd25062009-02-26 01:04:07 -05003134 * would be ugly in the extreme. So instead we would need to
3135 * replicate parts of the code in the above functions,
Lucas De Marchi25985ed2011-03-30 22:57:33 -03003136 * simplifying them because we wouldn't actually intend to
Theodore Ts'occd25062009-02-26 01:04:07 -05003137 * write out the pages, but rather only collect contiguous
3138 * logical block extents, call the multi-block allocator, and
3139 * then update the buffer heads with the block allocations.
Theodore Ts'ode9a55b2009-06-14 17:45:34 -04003140 *
Theodore Ts'occd25062009-02-26 01:04:07 -05003141 * For now, though, we'll cheat by calling filemap_flush(),
3142 * which will map the blocks, and start the I/O, but not
3143 * actually wait for the I/O to complete.
3144 */
3145 return filemap_flush(inode->i_mapping);
3146}
Alex Tomas64769242008-07-11 19:27:31 -04003147
3148/*
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003149 * bmap() is special. It gets used by applications such as lilo and by
3150 * the swapper to find the on-disk block of a specific piece of data.
3151 *
3152 * Naturally, this is dangerous if the block concerned is still in the
Mingming Cao617ba132006-10-11 01:20:53 -07003153 * journal. If somebody makes a swapfile on an ext4 data-journaling
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003154 * filesystem and enables swap, then they may get a nasty shock when the
3155 * data getting swapped to that swapfile suddenly gets overwritten by
3156 * the original zero's written out previously to the journal and
3157 * awaiting writeback in the kernel's buffer cache.
3158 *
3159 * So, if we see any bmap calls here on a modified, data-journaled file,
3160 * take extra steps to flush any blocks which might be in the cache.
3161 */
Mingming Cao617ba132006-10-11 01:20:53 -07003162static sector_t ext4_bmap(struct address_space *mapping, sector_t block)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003163{
3164 struct inode *inode = mapping->host;
3165 journal_t *journal;
3166 int err;
3167
Tao Ma46c7f252012-12-10 14:04:52 -05003168 /*
3169 * We can get here for an inline file via the FIBMAP ioctl
3170 */
3171 if (ext4_has_inline_data(inode))
3172 return 0;
3173
Alex Tomas64769242008-07-11 19:27:31 -04003174 if (mapping_tagged(mapping, PAGECACHE_TAG_DIRTY) &&
3175 test_opt(inode->i_sb, DELALLOC)) {
3176 /*
3177 * With delalloc we want to sync the file
3178 * so that we can make sure we allocate
3179 * blocks for file
3180 */
3181 filemap_write_and_wait(mapping);
3182 }
3183
Theodore Ts'o19f5fb72010-01-24 14:34:07 -05003184 if (EXT4_JOURNAL(inode) &&
3185 ext4_test_inode_state(inode, EXT4_STATE_JDATA)) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003186 /*
3187 * This is a REALLY heavyweight approach, but the use of
3188 * bmap on dirty files is expected to be extremely rare:
3189 * only if we run lilo or swapon on a freshly made file
3190 * do we expect this to happen.
3191 *
3192 * (bmap requires CAP_SYS_RAWIO so this does not
3193 * represent an unprivileged user DOS attack --- we'd be
3194 * in trouble if mortal users could trigger this path at
3195 * will.)
3196 *
Mingming Cao617ba132006-10-11 01:20:53 -07003197 * NB. EXT4_STATE_JDATA is not set on files other than
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003198 * regular files. If somebody wants to bmap a directory
3199 * or symlink and gets confused because the buffer
3200 * hasn't yet been flushed to disk, they deserve
3201 * everything they get.
3202 */
3203
Theodore Ts'o19f5fb72010-01-24 14:34:07 -05003204 ext4_clear_inode_state(inode, EXT4_STATE_JDATA);
Mingming Cao617ba132006-10-11 01:20:53 -07003205 journal = EXT4_JOURNAL(inode);
Mingming Caodab291a2006-10-11 01:21:01 -07003206 jbd2_journal_lock_updates(journal);
3207 err = jbd2_journal_flush(journal);
3208 jbd2_journal_unlock_updates(journal);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003209
3210 if (err)
3211 return 0;
3212 }
3213
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04003214 return generic_block_bmap(mapping, block, ext4_get_block);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003215}
3216
Mingming Cao617ba132006-10-11 01:20:53 -07003217static int ext4_readpage(struct file *file, struct page *page)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003218{
Tao Ma46c7f252012-12-10 14:04:52 -05003219 int ret = -EAGAIN;
3220 struct inode *inode = page->mapping->host;
3221
Jiaying Zhang0562e0b2011-03-21 21:38:05 -04003222 trace_ext4_readpage(page);
Tao Ma46c7f252012-12-10 14:04:52 -05003223
3224 if (ext4_has_inline_data(inode))
3225 ret = ext4_readpage_inline(inode, page);
3226
3227 if (ret == -EAGAIN)
Jens Axboeac22b462018-08-17 15:45:42 -07003228 return ext4_mpage_readpages(page->mapping, NULL, page, 1,
3229 false);
Tao Ma46c7f252012-12-10 14:04:52 -05003230
3231 return ret;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003232}
3233
3234static int
Mingming Cao617ba132006-10-11 01:20:53 -07003235ext4_readpages(struct file *file, struct address_space *mapping,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003236 struct list_head *pages, unsigned nr_pages)
3237{
Tao Ma46c7f252012-12-10 14:04:52 -05003238 struct inode *inode = mapping->host;
3239
3240 /* If the file has inline data, no need to do readpages. */
3241 if (ext4_has_inline_data(inode))
3242 return 0;
3243
Jens Axboeac22b462018-08-17 15:45:42 -07003244 return ext4_mpage_readpages(mapping, pages, NULL, nr_pages, true);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003245}
3246
Lukas Czernerd47992f2013-05-21 23:17:23 -04003247static void ext4_invalidatepage(struct page *page, unsigned int offset,
3248 unsigned int length)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003249{
Lukas Czernerca99fdd2013-05-21 23:25:01 -04003250 trace_ext4_invalidatepage(page, offset, length);
Jiaying Zhang0562e0b2011-03-21 21:38:05 -04003251
Jan Kara4520fb32012-12-25 13:28:54 -05003252 /* No journalling happens on data buffers when this function is used */
3253 WARN_ON(page_has_buffers(page) && buffer_jbd(page_buffers(page)));
3254
Lukas Czernerca99fdd2013-05-21 23:25:01 -04003255 block_invalidatepage(page, offset, length);
Jan Kara4520fb32012-12-25 13:28:54 -05003256}
3257
Jan Kara53e87262012-12-25 13:29:52 -05003258static int __ext4_journalled_invalidatepage(struct page *page,
Lukas Czernerca99fdd2013-05-21 23:25:01 -04003259 unsigned int offset,
3260 unsigned int length)
Jan Kara4520fb32012-12-25 13:28:54 -05003261{
3262 journal_t *journal = EXT4_JOURNAL(page->mapping->host);
3263
Lukas Czernerca99fdd2013-05-21 23:25:01 -04003264 trace_ext4_journalled_invalidatepage(page, offset, length);
Jan Kara4520fb32012-12-25 13:28:54 -05003265
Jiaying Zhang744692d2010-03-04 16:14:02 -05003266 /*
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003267 * If it's a full truncate we just forget about the pending dirtying
3268 */
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03003269 if (offset == 0 && length == PAGE_SIZE)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003270 ClearPageChecked(page);
3271
Lukas Czernerca99fdd2013-05-21 23:25:01 -04003272 return jbd2_journal_invalidatepage(journal, page, offset, length);
Jan Kara53e87262012-12-25 13:29:52 -05003273}
3274
3275/* Wrapper for aops... */
3276static void ext4_journalled_invalidatepage(struct page *page,
Lukas Czernerd47992f2013-05-21 23:17:23 -04003277 unsigned int offset,
3278 unsigned int length)
Jan Kara53e87262012-12-25 13:29:52 -05003279{
Lukas Czernerca99fdd2013-05-21 23:25:01 -04003280 WARN_ON(__ext4_journalled_invalidatepage(page, offset, length) < 0);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003281}
3282
Mingming Cao617ba132006-10-11 01:20:53 -07003283static int ext4_releasepage(struct page *page, gfp_t wait)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003284{
Mingming Cao617ba132006-10-11 01:20:53 -07003285 journal_t *journal = EXT4_JOURNAL(page->mapping->host);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003286
Jiaying Zhang0562e0b2011-03-21 21:38:05 -04003287 trace_ext4_releasepage(page);
3288
Jan Karae1c36592013-03-10 22:19:00 -04003289 /* Page has dirty journalled data -> cannot release */
3290 if (PageChecked(page))
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003291 return 0;
Frank Mayhar03901312009-01-07 00:06:22 -05003292 if (journal)
3293 return jbd2_journal_try_to_free_buffers(journal, page, wait);
3294 else
3295 return try_to_free_buffers(page);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003296}
3297
Jan Karab8a61762017-11-01 16:36:45 +01003298static bool ext4_inode_datasync_dirty(struct inode *inode)
3299{
3300 journal_t *journal = EXT4_SB(inode->i_sb)->s_journal;
3301
3302 if (journal)
3303 return !jbd2_transaction_committed(journal,
3304 EXT4_I(inode)->i_datasync_tid);
3305 /* Any metadata buffers to write? */
3306 if (!list_empty(&inode->i_mapping->private_list))
3307 return true;
3308 return inode->i_state & I_DIRTY_DATASYNC;
3309}
3310
Matthew Bobrowskic8fdfe292019-11-05 22:59:56 +11003311static void ext4_set_iomap(struct inode *inode, struct iomap *iomap,
3312 struct ext4_map_blocks *map, loff_t offset,
3313 loff_t length)
Jan Kara364443c2016-11-20 17:36:06 -05003314{
Matthew Bobrowskic8fdfe292019-11-05 22:59:56 +11003315 u8 blkbits = inode->i_blkbits;
3316
3317 /*
3318 * Writes that span EOF might trigger an I/O size update on completion,
3319 * so consider them to be dirty for the purpose of O_DSYNC, even if
3320 * there is no other metadata changes being made or are pending.
3321 */
3322 iomap->flags = 0;
3323 if (ext4_inode_datasync_dirty(inode) ||
3324 offset + length > i_size_read(inode))
3325 iomap->flags |= IOMAP_F_DIRTY;
3326
3327 if (map->m_flags & EXT4_MAP_NEW)
3328 iomap->flags |= IOMAP_F_NEW;
3329
3330 iomap->bdev = inode->i_sb->s_bdev;
3331 iomap->dax_dev = EXT4_SB(inode->i_sb)->s_daxdev;
3332 iomap->offset = (u64) map->m_lblk << blkbits;
3333 iomap->length = (u64) map->m_len << blkbits;
3334
3335 /*
3336 * Flags passed to ext4_map_blocks() for direct I/O writes can result
3337 * in m_flags having both EXT4_MAP_MAPPED and EXT4_MAP_UNWRITTEN bits
3338 * set. In order for any allocated unwritten extents to be converted
3339 * into written extents correctly within the ->end_io() handler, we
3340 * need to ensure that the iomap->type is set appropriately. Hence, the
3341 * reason why we need to check whether the EXT4_MAP_UNWRITTEN bit has
3342 * been set first.
3343 */
3344 if (map->m_flags & EXT4_MAP_UNWRITTEN) {
3345 iomap->type = IOMAP_UNWRITTEN;
3346 iomap->addr = (u64) map->m_pblk << blkbits;
3347 } else if (map->m_flags & EXT4_MAP_MAPPED) {
3348 iomap->type = IOMAP_MAPPED;
3349 iomap->addr = (u64) map->m_pblk << blkbits;
3350 } else {
3351 iomap->type = IOMAP_HOLE;
3352 iomap->addr = IOMAP_NULL_ADDR;
3353 }
3354}
3355
Matthew Bobrowskif063db52019-11-05 23:00:14 +11003356static int ext4_iomap_alloc(struct inode *inode, struct ext4_map_blocks *map,
3357 unsigned int flags)
3358{
3359 handle_t *handle;
Matthew Bobrowski378f32b2019-11-05 23:02:39 +11003360 u8 blkbits = inode->i_blkbits;
3361 int ret, dio_credits, m_flags = 0, retries = 0;
Matthew Bobrowskif063db52019-11-05 23:00:14 +11003362
3363 /*
3364 * Trim the mapping request to the maximum value that we can map at
3365 * once for direct I/O.
3366 */
3367 if (map->m_len > DIO_MAX_BLOCKS)
3368 map->m_len = DIO_MAX_BLOCKS;
3369 dio_credits = ext4_chunk_trans_blocks(inode, map->m_len);
3370
3371retry:
3372 /*
3373 * Either we allocate blocks and then don't get an unwritten extent, so
3374 * in that case we have reserved enough credits. Or, the blocks are
3375 * already allocated and unwritten. In that case, the extent conversion
3376 * fits into the credits as well.
3377 */
3378 handle = ext4_journal_start(inode, EXT4_HT_MAP_BLOCKS, dio_credits);
3379 if (IS_ERR(handle))
3380 return PTR_ERR(handle);
3381
Matthew Bobrowski378f32b2019-11-05 23:02:39 +11003382 /*
3383 * DAX and direct I/O are the only two operations that are currently
3384 * supported with IOMAP_WRITE.
3385 */
3386 WARN_ON(!IS_DAX(inode) && !(flags & IOMAP_DIRECT));
3387 if (IS_DAX(inode))
3388 m_flags = EXT4_GET_BLOCKS_CREATE_ZERO;
3389 /*
3390 * We use i_size instead of i_disksize here because delalloc writeback
3391 * can complete at any point during the I/O and subsequently push the
3392 * i_disksize out to i_size. This could be beyond where direct I/O is
3393 * happening and thus expose allocated blocks to direct I/O reads.
3394 */
3395 else if ((map->m_lblk * (1 << blkbits)) >= i_size_read(inode))
3396 m_flags = EXT4_GET_BLOCKS_CREATE;
3397 else if (ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS))
3398 m_flags = EXT4_GET_BLOCKS_IO_CREATE_EXT;
3399
3400 ret = ext4_map_blocks(handle, inode, map, m_flags);
3401
3402 /*
3403 * We cannot fill holes in indirect tree based inodes as that could
3404 * expose stale data in the case of a crash. Use the magic error code
3405 * to fallback to buffered I/O.
3406 */
3407 if (!m_flags && !ret)
3408 ret = -ENOTBLK;
Matthew Bobrowskif063db52019-11-05 23:00:14 +11003409
Matthew Bobrowskif063db52019-11-05 23:00:14 +11003410 ext4_journal_stop(handle);
3411 if (ret == -ENOSPC && ext4_should_retry_alloc(inode->i_sb, &retries))
3412 goto retry;
3413
3414 return ret;
3415}
3416
3417
Jan Kara364443c2016-11-20 17:36:06 -05003418static int ext4_iomap_begin(struct inode *inode, loff_t offset, loff_t length,
Goldwyn Rodriguesc039b992019-10-18 16:44:10 -07003419 unsigned flags, struct iomap *iomap, struct iomap *srcmap)
Jan Kara364443c2016-11-20 17:36:06 -05003420{
Jan Kara364443c2016-11-20 17:36:06 -05003421 int ret;
Matthew Bobrowski09edf4d2019-11-05 23:03:31 +11003422 struct ext4_map_blocks map;
3423 u8 blkbits = inode->i_blkbits;
Jan Kara364443c2016-11-20 17:36:06 -05003424
Theodore Ts'obcd8e912018-09-01 12:45:04 -04003425 if ((offset >> blkbits) > EXT4_MAX_LOGICAL_BLOCK)
3426 return -EINVAL;
Andreas Gruenbacher7046ae32017-10-01 17:57:54 -04003427
Matthew Bobrowski09edf4d2019-11-05 23:03:31 +11003428 if (WARN_ON_ONCE(ext4_has_inline_data(inode)))
3429 return -ERANGE;
Jan Kara364443c2016-11-20 17:36:06 -05003430
Matthew Bobrowski09edf4d2019-11-05 23:03:31 +11003431 /*
3432 * Calculate the first and last logical blocks respectively.
3433 */
3434 map.m_lblk = offset >> blkbits;
3435 map.m_len = min_t(loff_t, (offset + length - 1) >> blkbits,
3436 EXT4_MAX_LOGICAL_BLOCK) - map.m_lblk + 1;
Jan Kara364443c2016-11-20 17:36:06 -05003437
Matthew Bobrowski09edf4d2019-11-05 23:03:31 +11003438 if (flags & IOMAP_WRITE)
Matthew Bobrowskif063db52019-11-05 23:00:14 +11003439 ret = ext4_iomap_alloc(inode, &map, flags);
Matthew Bobrowski09edf4d2019-11-05 23:03:31 +11003440 else
Jan Kara776722e2016-11-20 18:09:11 -05003441 ret = ext4_map_blocks(NULL, inode, &map, 0);
Christoph Hellwig545052e2017-10-01 17:58:54 -04003442
Matthew Bobrowskif063db52019-11-05 23:00:14 +11003443 if (ret < 0)
3444 return ret;
Christoph Hellwig545052e2017-10-01 17:58:54 -04003445
Matthew Bobrowskic8fdfe292019-11-05 22:59:56 +11003446 ext4_set_iomap(inode, iomap, &map, offset, length);
Christoph Hellwig545052e2017-10-01 17:58:54 -04003447
Jan Kara364443c2016-11-20 17:36:06 -05003448 return 0;
3449}
3450
Jan Kara776722e2016-11-20 18:09:11 -05003451static int ext4_iomap_end(struct inode *inode, loff_t offset, loff_t length,
3452 ssize_t written, unsigned flags, struct iomap *iomap)
3453{
Jan Kara776722e2016-11-20 18:09:11 -05003454 /*
Matthew Bobrowski378f32b2019-11-05 23:02:39 +11003455 * Check to see whether an error occurred while writing out the data to
3456 * the allocated blocks. If so, return the magic error code so that we
3457 * fallback to buffered I/O and attempt to complete the remainder of
3458 * the I/O. Any blocks that may have been allocated in preparation for
3459 * the direct I/O will be reused during buffered I/O.
Jan Kara776722e2016-11-20 18:09:11 -05003460 */
Matthew Bobrowski378f32b2019-11-05 23:02:39 +11003461 if (flags & (IOMAP_WRITE | IOMAP_DIRECT) && written == 0)
3462 return -ENOTBLK;
Jan Kara776722e2016-11-20 18:09:11 -05003463
Matthew Bobrowski569342d2019-11-05 23:01:51 +11003464 return 0;
Jan Kara776722e2016-11-20 18:09:11 -05003465}
3466
Christoph Hellwig8ff6daa2017-01-27 23:20:26 -08003467const struct iomap_ops ext4_iomap_ops = {
Jan Kara364443c2016-11-20 17:36:06 -05003468 .iomap_begin = ext4_iomap_begin,
Jan Kara776722e2016-11-20 18:09:11 -05003469 .iomap_end = ext4_iomap_end,
Jan Kara364443c2016-11-20 17:36:06 -05003470};
3471
Matthew Bobrowski09edf4d2019-11-05 23:03:31 +11003472static bool ext4_iomap_is_delalloc(struct inode *inode,
3473 struct ext4_map_blocks *map)
Mingming Cao4c0425f2009-09-28 15:48:41 -04003474{
Matthew Bobrowski09edf4d2019-11-05 23:03:31 +11003475 struct extent_status es;
3476 ext4_lblk_t offset = 0, end = map->m_lblk + map->m_len - 1;
Mingming Cao4c0425f2009-09-28 15:48:41 -04003477
Matthew Bobrowski09edf4d2019-11-05 23:03:31 +11003478 ext4_es_find_extent_range(inode, &ext4_es_is_delayed,
3479 map->m_lblk, end, &es);
Mingming4b70df12009-11-03 14:44:54 -05003480
Matthew Bobrowski09edf4d2019-11-05 23:03:31 +11003481 if (!es.es_len || es.es_lblk > end)
3482 return false;
3483
3484 if (es.es_lblk > map->m_lblk) {
3485 map->m_len = es.es_lblk - map->m_lblk;
3486 return false;
3487 }
3488
3489 offset = map->m_lblk - es.es_lblk;
3490 map->m_len = es.es_len - offset;
3491
3492 return true;
3493}
3494
3495static int ext4_iomap_begin_report(struct inode *inode, loff_t offset,
3496 loff_t length, unsigned int flags,
3497 struct iomap *iomap, struct iomap *srcmap)
3498{
3499 int ret;
3500 bool delalloc = false;
3501 struct ext4_map_blocks map;
3502 u8 blkbits = inode->i_blkbits;
3503
3504 if ((offset >> blkbits) > EXT4_MAX_LOGICAL_BLOCK)
3505 return -EINVAL;
3506
3507 if (ext4_has_inline_data(inode)) {
3508 ret = ext4_inline_data_iomap(inode, iomap);
3509 if (ret != -EAGAIN) {
3510 if (ret == 0 && offset >= iomap->length)
3511 ret = -ENOENT;
3512 return ret;
3513 }
3514 }
Mingming Cao8d5d02e2009-09-28 15:48:29 -04003515
Jan Kara74c66bc2016-02-29 08:36:38 +11003516 /*
Matthew Bobrowski09edf4d2019-11-05 23:03:31 +11003517 * Calculate the first and last logical block respectively.
Jan Kara74c66bc2016-02-29 08:36:38 +11003518 */
Matthew Bobrowski09edf4d2019-11-05 23:03:31 +11003519 map.m_lblk = offset >> blkbits;
3520 map.m_len = min_t(loff_t, (offset + length - 1) >> blkbits,
3521 EXT4_MAX_LOGICAL_BLOCK) - map.m_lblk + 1;
3522
3523 ret = ext4_map_blocks(NULL, inode, &map, 0);
3524 if (ret < 0)
3525 return ret;
3526 if (ret == 0)
3527 delalloc = ext4_iomap_is_delalloc(inode, &map);
3528
3529 ext4_set_iomap(inode, iomap, &map, offset, length);
3530 if (delalloc && iomap->type == IOMAP_HOLE)
3531 iomap->type = IOMAP_DELALLOC;
Christoph Hellwig187372a2016-02-08 14:40:51 +11003532
3533 return 0;
Mingming Cao4c0425f2009-09-28 15:48:41 -04003534}
Jiaying Zhangc7064ef2010-03-02 13:28:44 -05003535
Matthew Bobrowski09edf4d2019-11-05 23:03:31 +11003536const struct iomap_ops ext4_iomap_report_ops = {
3537 .iomap_begin = ext4_iomap_begin_report,
3538};
Mingming Cao4c0425f2009-09-28 15:48:41 -04003539
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003540/*
Mingming Cao617ba132006-10-11 01:20:53 -07003541 * Pages can be marked dirty completely asynchronously from ext4's journalling
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003542 * activity. By filemap_sync_pte(), try_to_unmap_one(), etc. We cannot do
3543 * much here because ->set_page_dirty is called under VFS locks. The page is
3544 * not necessarily locked.
3545 *
3546 * We cannot just dirty the page and leave attached buffers clean, because the
3547 * buffers' dirty state is "definitive". We cannot just set the buffers dirty
3548 * or jbddirty because all the journalling code will explode.
3549 *
3550 * So what we do is to mark the page "pending dirty" and next time writepage
3551 * is called, propagate that into the buffers appropriately.
3552 */
Mingming Cao617ba132006-10-11 01:20:53 -07003553static int ext4_journalled_set_page_dirty(struct page *page)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003554{
3555 SetPageChecked(page);
3556 return __set_page_dirty_nobuffers(page);
3557}
3558
Jan Kara6dcc6932016-12-01 11:46:40 -05003559static int ext4_set_page_dirty(struct page *page)
3560{
3561 WARN_ON_ONCE(!PageLocked(page) && !PageDirty(page));
3562 WARN_ON_ONCE(!page_has_buffers(page));
3563 return __set_page_dirty_buffers(page);
3564}
3565
Theodore Ts'o74d553a2013-04-03 12:39:17 -04003566static const struct address_space_operations ext4_aops = {
Hisashi Hifumi8ab22b92008-07-28 15:46:36 -07003567 .readpage = ext4_readpage,
3568 .readpages = ext4_readpages,
Aneesh Kumar K.V43ce1d22009-06-14 17:58:45 -04003569 .writepage = ext4_writepage,
Theodore Ts'o20970ba2013-06-06 14:00:46 -04003570 .writepages = ext4_writepages,
Hisashi Hifumi8ab22b92008-07-28 15:46:36 -07003571 .write_begin = ext4_write_begin,
Theodore Ts'o74d553a2013-04-03 12:39:17 -04003572 .write_end = ext4_write_end,
Jan Kara6dcc6932016-12-01 11:46:40 -05003573 .set_page_dirty = ext4_set_page_dirty,
Hisashi Hifumi8ab22b92008-07-28 15:46:36 -07003574 .bmap = ext4_bmap,
3575 .invalidatepage = ext4_invalidatepage,
3576 .releasepage = ext4_releasepage,
Matthew Bobrowski378f32b2019-11-05 23:02:39 +11003577 .direct_IO = noop_direct_IO,
Hisashi Hifumi8ab22b92008-07-28 15:46:36 -07003578 .migratepage = buffer_migrate_page,
3579 .is_partially_uptodate = block_is_partially_uptodate,
Andi Kleenaa261f52009-09-16 11:50:16 +02003580 .error_remove_page = generic_error_remove_page,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003581};
3582
Mingming Cao617ba132006-10-11 01:20:53 -07003583static const struct address_space_operations ext4_journalled_aops = {
Hisashi Hifumi8ab22b92008-07-28 15:46:36 -07003584 .readpage = ext4_readpage,
3585 .readpages = ext4_readpages,
Aneesh Kumar K.V43ce1d22009-06-14 17:58:45 -04003586 .writepage = ext4_writepage,
Theodore Ts'o20970ba2013-06-06 14:00:46 -04003587 .writepages = ext4_writepages,
Hisashi Hifumi8ab22b92008-07-28 15:46:36 -07003588 .write_begin = ext4_write_begin,
3589 .write_end = ext4_journalled_write_end,
3590 .set_page_dirty = ext4_journalled_set_page_dirty,
3591 .bmap = ext4_bmap,
Jan Kara4520fb32012-12-25 13:28:54 -05003592 .invalidatepage = ext4_journalled_invalidatepage,
Hisashi Hifumi8ab22b92008-07-28 15:46:36 -07003593 .releasepage = ext4_releasepage,
Matthew Bobrowski378f32b2019-11-05 23:02:39 +11003594 .direct_IO = noop_direct_IO,
Hisashi Hifumi8ab22b92008-07-28 15:46:36 -07003595 .is_partially_uptodate = block_is_partially_uptodate,
Andi Kleenaa261f52009-09-16 11:50:16 +02003596 .error_remove_page = generic_error_remove_page,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003597};
3598
Alex Tomas64769242008-07-11 19:27:31 -04003599static const struct address_space_operations ext4_da_aops = {
Hisashi Hifumi8ab22b92008-07-28 15:46:36 -07003600 .readpage = ext4_readpage,
3601 .readpages = ext4_readpages,
Aneesh Kumar K.V43ce1d22009-06-14 17:58:45 -04003602 .writepage = ext4_writepage,
Theodore Ts'o20970ba2013-06-06 14:00:46 -04003603 .writepages = ext4_writepages,
Hisashi Hifumi8ab22b92008-07-28 15:46:36 -07003604 .write_begin = ext4_da_write_begin,
3605 .write_end = ext4_da_write_end,
Jan Kara6dcc6932016-12-01 11:46:40 -05003606 .set_page_dirty = ext4_set_page_dirty,
Hisashi Hifumi8ab22b92008-07-28 15:46:36 -07003607 .bmap = ext4_bmap,
Eric Whitney8fcc3a52019-08-22 23:22:14 -04003608 .invalidatepage = ext4_invalidatepage,
Hisashi Hifumi8ab22b92008-07-28 15:46:36 -07003609 .releasepage = ext4_releasepage,
Matthew Bobrowski378f32b2019-11-05 23:02:39 +11003610 .direct_IO = noop_direct_IO,
Hisashi Hifumi8ab22b92008-07-28 15:46:36 -07003611 .migratepage = buffer_migrate_page,
3612 .is_partially_uptodate = block_is_partially_uptodate,
Andi Kleenaa261f52009-09-16 11:50:16 +02003613 .error_remove_page = generic_error_remove_page,
Alex Tomas64769242008-07-11 19:27:31 -04003614};
3615
Dan Williams5f0663b2017-12-21 12:25:11 -08003616static const struct address_space_operations ext4_dax_aops = {
3617 .writepages = ext4_dax_writepages,
3618 .direct_IO = noop_direct_IO,
3619 .set_page_dirty = noop_set_page_dirty,
Toshi Kani94dbb632018-09-15 21:23:41 -04003620 .bmap = ext4_bmap,
Dan Williams5f0663b2017-12-21 12:25:11 -08003621 .invalidatepage = noop_invalidatepage,
3622};
3623
Mingming Cao617ba132006-10-11 01:20:53 -07003624void ext4_set_aops(struct inode *inode)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003625{
Lukas Czerner3d2b1582012-02-20 17:53:00 -05003626 switch (ext4_inode_journal_mode(inode)) {
3627 case EXT4_INODE_ORDERED_DATA_MODE:
Lukas Czerner3d2b1582012-02-20 17:53:00 -05003628 case EXT4_INODE_WRITEBACK_DATA_MODE:
Lukas Czerner3d2b1582012-02-20 17:53:00 -05003629 break;
3630 case EXT4_INODE_JOURNAL_DATA_MODE:
Mingming Cao617ba132006-10-11 01:20:53 -07003631 inode->i_mapping->a_ops = &ext4_journalled_aops;
Theodore Ts'o74d553a2013-04-03 12:39:17 -04003632 return;
Lukas Czerner3d2b1582012-02-20 17:53:00 -05003633 default:
3634 BUG();
3635 }
Dan Williams5f0663b2017-12-21 12:25:11 -08003636 if (IS_DAX(inode))
3637 inode->i_mapping->a_ops = &ext4_dax_aops;
3638 else if (test_opt(inode->i_sb, DELALLOC))
Theodore Ts'o74d553a2013-04-03 12:39:17 -04003639 inode->i_mapping->a_ops = &ext4_da_aops;
3640 else
3641 inode->i_mapping->a_ops = &ext4_aops;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003642}
3643
Ross Zwisler923ae0f2015-02-16 15:59:38 -08003644static int __ext4_block_zero_page_range(handle_t *handle,
Lukas Czernerd863dc32013-05-27 23:32:35 -04003645 struct address_space *mapping, loff_t from, loff_t length)
3646{
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03003647 ext4_fsblk_t index = from >> PAGE_SHIFT;
3648 unsigned offset = from & (PAGE_SIZE-1);
Ross Zwisler923ae0f2015-02-16 15:59:38 -08003649 unsigned blocksize, pos;
Lukas Czernerd863dc32013-05-27 23:32:35 -04003650 ext4_lblk_t iblock;
3651 struct inode *inode = mapping->host;
3652 struct buffer_head *bh;
3653 struct page *page;
3654 int err = 0;
3655
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03003656 page = find_or_create_page(mapping, from >> PAGE_SHIFT,
Michal Hockoc62d2552015-11-06 16:28:49 -08003657 mapping_gfp_constraint(mapping, ~__GFP_FS));
Lukas Czernerd863dc32013-05-27 23:32:35 -04003658 if (!page)
3659 return -ENOMEM;
3660
3661 blocksize = inode->i_sb->s_blocksize;
Lukas Czernerd863dc32013-05-27 23:32:35 -04003662
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03003663 iblock = index << (PAGE_SHIFT - inode->i_sb->s_blocksize_bits);
Lukas Czernerd863dc32013-05-27 23:32:35 -04003664
3665 if (!page_has_buffers(page))
3666 create_empty_buffers(page, blocksize, 0);
3667
3668 /* Find the buffer that contains "offset" */
3669 bh = page_buffers(page);
3670 pos = blocksize;
3671 while (offset >= pos) {
3672 bh = bh->b_this_page;
3673 iblock++;
3674 pos += blocksize;
3675 }
Lukas Czernerd863dc32013-05-27 23:32:35 -04003676 if (buffer_freed(bh)) {
3677 BUFFER_TRACE(bh, "freed: skip");
3678 goto unlock;
3679 }
Lukas Czernerd863dc32013-05-27 23:32:35 -04003680 if (!buffer_mapped(bh)) {
3681 BUFFER_TRACE(bh, "unmapped");
3682 ext4_get_block(inode, iblock, bh, 0);
3683 /* unmapped? It's a hole - nothing to do */
3684 if (!buffer_mapped(bh)) {
3685 BUFFER_TRACE(bh, "still unmapped");
3686 goto unlock;
3687 }
3688 }
3689
3690 /* Ok, it's mapped. Make sure it's up-to-date */
3691 if (PageUptodate(page))
3692 set_buffer_uptodate(bh);
3693
3694 if (!buffer_uptodate(bh)) {
3695 err = -EIO;
Mike Christiedfec8a12016-06-05 14:31:44 -05003696 ll_rw_block(REQ_OP_READ, 0, 1, &bh);
Lukas Czernerd863dc32013-05-27 23:32:35 -04003697 wait_on_buffer(bh);
3698 /* Uhhuh. Read error. Complain and punt. */
3699 if (!buffer_uptodate(bh))
3700 goto unlock;
Chandan Rajendra592ddec2018-12-12 15:20:10 +05303701 if (S_ISREG(inode->i_mode) && IS_ENCRYPTED(inode)) {
Michael Halcrowc9c74292015-04-12 00:56:10 -04003702 /* We expect the key to be set. */
Jaegeuk Kima7550b32016-07-10 14:01:03 -04003703 BUG_ON(!fscrypt_has_encryption_key(inode));
Eric Biggersaa8bc1a2019-05-20 09:29:47 -07003704 WARN_ON_ONCE(fscrypt_decrypt_pagecache_blocks(
Chandan Rajendraec39a362019-05-20 09:29:51 -07003705 page, blocksize, bh_offset(bh)));
Michael Halcrowc9c74292015-04-12 00:56:10 -04003706 }
Lukas Czernerd863dc32013-05-27 23:32:35 -04003707 }
Lukas Czernerd863dc32013-05-27 23:32:35 -04003708 if (ext4_should_journal_data(inode)) {
3709 BUFFER_TRACE(bh, "get write access");
3710 err = ext4_journal_get_write_access(handle, bh);
3711 if (err)
3712 goto unlock;
3713 }
Lukas Czernerd863dc32013-05-27 23:32:35 -04003714 zero_user(page, offset, length);
Lukas Czernerd863dc32013-05-27 23:32:35 -04003715 BUFFER_TRACE(bh, "zeroed end of block");
3716
Lukas Czernerd863dc32013-05-27 23:32:35 -04003717 if (ext4_should_journal_data(inode)) {
3718 err = ext4_handle_dirty_metadata(handle, inode, bh);
Lukas Czerner0713ed02013-05-27 23:32:35 -04003719 } else {
jon ernst353eefd2013-07-01 08:12:39 -04003720 err = 0;
Lukas Czernerd863dc32013-05-27 23:32:35 -04003721 mark_buffer_dirty(bh);
Jan Kara3957ef52016-04-24 00:56:05 -04003722 if (ext4_should_order_data(inode))
Ross Zwisler73131fb2019-06-20 17:26:26 -04003723 err = ext4_jbd2_inode_add_write(handle, inode, from,
3724 length);
Lukas Czerner0713ed02013-05-27 23:32:35 -04003725 }
Lukas Czernerd863dc32013-05-27 23:32:35 -04003726
3727unlock:
3728 unlock_page(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03003729 put_page(page);
Lukas Czernerd863dc32013-05-27 23:32:35 -04003730 return err;
3731}
3732
Matthew Wilcox94350ab2014-03-24 15:09:16 -04003733/*
Ross Zwisler923ae0f2015-02-16 15:59:38 -08003734 * ext4_block_zero_page_range() zeros out a mapping of length 'length'
3735 * starting from file offset 'from'. The range to be zero'd must
3736 * be contained with in one block. If the specified range exceeds
3737 * the end of the block it will be shortened to end of the block
3738 * that cooresponds to 'from'
3739 */
3740static int ext4_block_zero_page_range(handle_t *handle,
3741 struct address_space *mapping, loff_t from, loff_t length)
3742{
3743 struct inode *inode = mapping->host;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03003744 unsigned offset = from & (PAGE_SIZE-1);
Ross Zwisler923ae0f2015-02-16 15:59:38 -08003745 unsigned blocksize = inode->i_sb->s_blocksize;
3746 unsigned max = blocksize - (offset & (blocksize - 1));
3747
3748 /*
3749 * correct length if it does not fall between
3750 * 'from' and the end of the block
3751 */
3752 if (length > max || length < 0)
3753 length = max;
3754
Jan Kara47e69352016-11-20 18:08:05 -05003755 if (IS_DAX(inode)) {
3756 return iomap_zero_range(inode, from, length, NULL,
3757 &ext4_iomap_ops);
3758 }
Ross Zwisler923ae0f2015-02-16 15:59:38 -08003759 return __ext4_block_zero_page_range(handle, mapping, from, length);
3760}
3761
3762/*
Matthew Wilcox94350ab2014-03-24 15:09:16 -04003763 * ext4_block_truncate_page() zeroes out a mapping from file offset `from'
3764 * up to the end of the block which corresponds to `from'.
3765 * This required during truncate. We need to physically zero the tail end
3766 * of that block so it doesn't yield old data if the file is later grown.
3767 */
Stephen Hemmingerc1978552014-05-12 10:50:23 -04003768static int ext4_block_truncate_page(handle_t *handle,
Matthew Wilcox94350ab2014-03-24 15:09:16 -04003769 struct address_space *mapping, loff_t from)
3770{
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03003771 unsigned offset = from & (PAGE_SIZE-1);
Matthew Wilcox94350ab2014-03-24 15:09:16 -04003772 unsigned length;
3773 unsigned blocksize;
3774 struct inode *inode = mapping->host;
3775
Theodore Ts'o0d068632017-02-14 11:31:15 -05003776 /* If we are processing an encrypted inode during orphan list handling */
Chandan Rajendra592ddec2018-12-12 15:20:10 +05303777 if (IS_ENCRYPTED(inode) && !fscrypt_has_encryption_key(inode))
Theodore Ts'o0d068632017-02-14 11:31:15 -05003778 return 0;
3779
Matthew Wilcox94350ab2014-03-24 15:09:16 -04003780 blocksize = inode->i_sb->s_blocksize;
3781 length = blocksize - (offset & (blocksize - 1));
3782
3783 return ext4_block_zero_page_range(handle, mapping, from, length);
3784}
3785
Lukas Czernera87dd182013-05-27 23:32:35 -04003786int ext4_zero_partial_blocks(handle_t *handle, struct inode *inode,
3787 loff_t lstart, loff_t length)
3788{
3789 struct super_block *sb = inode->i_sb;
3790 struct address_space *mapping = inode->i_mapping;
Lukas Czernere1be3a92013-07-01 08:12:39 -04003791 unsigned partial_start, partial_end;
Lukas Czernera87dd182013-05-27 23:32:35 -04003792 ext4_fsblk_t start, end;
3793 loff_t byte_end = (lstart + length - 1);
3794 int err = 0;
3795
Lukas Czernere1be3a92013-07-01 08:12:39 -04003796 partial_start = lstart & (sb->s_blocksize - 1);
3797 partial_end = byte_end & (sb->s_blocksize - 1);
3798
Lukas Czernera87dd182013-05-27 23:32:35 -04003799 start = lstart >> sb->s_blocksize_bits;
3800 end = byte_end >> sb->s_blocksize_bits;
3801
3802 /* Handle partial zero within the single block */
Lukas Czernere1be3a92013-07-01 08:12:39 -04003803 if (start == end &&
3804 (partial_start || (partial_end != sb->s_blocksize - 1))) {
Lukas Czernera87dd182013-05-27 23:32:35 -04003805 err = ext4_block_zero_page_range(handle, mapping,
3806 lstart, length);
3807 return err;
3808 }
3809 /* Handle partial zero out on the start of the range */
Lukas Czernere1be3a92013-07-01 08:12:39 -04003810 if (partial_start) {
Lukas Czernera87dd182013-05-27 23:32:35 -04003811 err = ext4_block_zero_page_range(handle, mapping,
3812 lstart, sb->s_blocksize);
3813 if (err)
3814 return err;
3815 }
3816 /* Handle partial zero out on the end of the range */
Lukas Czernere1be3a92013-07-01 08:12:39 -04003817 if (partial_end != sb->s_blocksize - 1)
Lukas Czernera87dd182013-05-27 23:32:35 -04003818 err = ext4_block_zero_page_range(handle, mapping,
Lukas Czernere1be3a92013-07-01 08:12:39 -04003819 byte_end - partial_end,
3820 partial_end + 1);
Lukas Czernera87dd182013-05-27 23:32:35 -04003821 return err;
3822}
3823
Duane Griffin91ef4ca2008-07-11 19:27:31 -04003824int ext4_can_truncate(struct inode *inode)
3825{
Duane Griffin91ef4ca2008-07-11 19:27:31 -04003826 if (S_ISREG(inode->i_mode))
3827 return 1;
3828 if (S_ISDIR(inode->i_mode))
3829 return 1;
3830 if (S_ISLNK(inode->i_mode))
3831 return !ext4_inode_is_fast_symlink(inode);
3832 return 0;
3833}
3834
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003835/*
Jan Kara01127842015-12-07 14:34:49 -05003836 * We have to make sure i_disksize gets properly updated before we truncate
3837 * page cache due to hole punching or zero range. Otherwise i_disksize update
3838 * can get lost as it may have been postponed to submission of writeback but
3839 * that will never happen after we truncate page cache.
3840 */
3841int ext4_update_disksize_before_punch(struct inode *inode, loff_t offset,
3842 loff_t len)
3843{
3844 handle_t *handle;
3845 loff_t size = i_size_read(inode);
3846
Al Viro59551022016-01-22 15:40:57 -05003847 WARN_ON(!inode_is_locked(inode));
Jan Kara01127842015-12-07 14:34:49 -05003848 if (offset > size || offset + len < size)
3849 return 0;
3850
3851 if (EXT4_I(inode)->i_disksize >= size)
3852 return 0;
3853
3854 handle = ext4_journal_start(inode, EXT4_HT_MISC, 1);
3855 if (IS_ERR(handle))
3856 return PTR_ERR(handle);
3857 ext4_update_i_disksize(inode, size);
3858 ext4_mark_inode_dirty(handle, inode);
3859 ext4_journal_stop(handle);
3860
3861 return 0;
3862}
3863
Ross Zwislerb1f38212018-09-11 13:31:16 -04003864static void ext4_wait_dax_page(struct ext4_inode_info *ei)
Ross Zwisler430657b2018-07-29 17:00:22 -04003865{
Ross Zwisler430657b2018-07-29 17:00:22 -04003866 up_write(&ei->i_mmap_sem);
3867 schedule();
3868 down_write(&ei->i_mmap_sem);
3869}
3870
3871int ext4_break_layouts(struct inode *inode)
3872{
3873 struct ext4_inode_info *ei = EXT4_I(inode);
3874 struct page *page;
Ross Zwisler430657b2018-07-29 17:00:22 -04003875 int error;
3876
3877 if (WARN_ON_ONCE(!rwsem_is_locked(&ei->i_mmap_sem)))
3878 return -EINVAL;
3879
3880 do {
Ross Zwisler430657b2018-07-29 17:00:22 -04003881 page = dax_layout_busy_page(inode->i_mapping);
3882 if (!page)
3883 return 0;
3884
3885 error = ___wait_var_event(&page->_refcount,
3886 atomic_read(&page->_refcount) == 1,
3887 TASK_INTERRUPTIBLE, 0, 0,
Ross Zwislerb1f38212018-09-11 13:31:16 -04003888 ext4_wait_dax_page(ei));
3889 } while (error == 0);
Ross Zwisler430657b2018-07-29 17:00:22 -04003890
3891 return error;
3892}
3893
Jan Kara01127842015-12-07 14:34:49 -05003894/*
Ross Zwislercca32b72016-09-22 11:49:38 -04003895 * ext4_punch_hole: punches a hole in a file by releasing the blocks
Allison Hendersona4bb6b62011-05-25 07:41:50 -04003896 * associated with the given offset and length
3897 *
3898 * @inode: File inode
3899 * @offset: The offset where the hole will begin
3900 * @len: The length of the hole
3901 *
Anatol Pomozov4907cb72012-09-01 10:31:09 -07003902 * Returns: 0 on success or negative on failure
Allison Hendersona4bb6b62011-05-25 07:41:50 -04003903 */
3904
Ashish Sangwanaeb28172013-07-01 08:12:38 -04003905int ext4_punch_hole(struct inode *inode, loff_t offset, loff_t length)
Allison Hendersona4bb6b62011-05-25 07:41:50 -04003906{
Theodore Ts'o26a4c0c2013-04-03 12:45:17 -04003907 struct super_block *sb = inode->i_sb;
3908 ext4_lblk_t first_block, stop_block;
3909 struct address_space *mapping = inode->i_mapping;
Lukas Czernera87dd182013-05-27 23:32:35 -04003910 loff_t first_block_offset, last_block_offset;
Theodore Ts'o26a4c0c2013-04-03 12:45:17 -04003911 handle_t *handle;
3912 unsigned int credits;
3913 int ret = 0;
3914
Allison Hendersona4bb6b62011-05-25 07:41:50 -04003915 if (!S_ISREG(inode->i_mode))
Allison Henderson73355192012-03-21 22:23:31 -04003916 return -EOPNOTSUPP;
Allison Hendersona4bb6b62011-05-25 07:41:50 -04003917
Lukas Czernerb8a86842014-03-18 18:05:35 -04003918 trace_ext4_punch_hole(inode, offset, length, 0);
Zheng Liuaaddea82013-01-16 20:21:26 -05003919
Theodore Ts'oc1e82202019-08-23 22:38:00 -04003920 ext4_clear_inode_state(inode, EXT4_STATE_MAY_INLINE_DATA);
3921 if (ext4_has_inline_data(inode)) {
3922 down_write(&EXT4_I(inode)->i_mmap_sem);
3923 ret = ext4_convert_inline_data(inode);
3924 up_write(&EXT4_I(inode)->i_mmap_sem);
3925 if (ret)
3926 return ret;
3927 }
3928
Theodore Ts'o26a4c0c2013-04-03 12:45:17 -04003929 /*
3930 * Write out all dirty pages to avoid race conditions
3931 * Then release them.
3932 */
Ross Zwislercca32b72016-09-22 11:49:38 -04003933 if (mapping_tagged(mapping, PAGECACHE_TAG_DIRTY)) {
Theodore Ts'o26a4c0c2013-04-03 12:45:17 -04003934 ret = filemap_write_and_wait_range(mapping, offset,
3935 offset + length - 1);
3936 if (ret)
3937 return ret;
3938 }
3939
Al Viro59551022016-01-22 15:40:57 -05003940 inode_lock(inode);
Lukas Czerner9ef06ce2014-04-12 09:47:00 -04003941
Theodore Ts'o26a4c0c2013-04-03 12:45:17 -04003942 /* No need to punch hole beyond i_size */
3943 if (offset >= inode->i_size)
3944 goto out_mutex;
3945
3946 /*
3947 * If the hole extends beyond i_size, set the hole
3948 * to end after the page that contains i_size
3949 */
3950 if (offset + length > inode->i_size) {
3951 length = inode->i_size +
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03003952 PAGE_SIZE - (inode->i_size & (PAGE_SIZE - 1)) -
Theodore Ts'o26a4c0c2013-04-03 12:45:17 -04003953 offset;
3954 }
3955
Jan Karaa3612932013-08-16 21:19:41 -04003956 if (offset & (sb->s_blocksize - 1) ||
3957 (offset + length) & (sb->s_blocksize - 1)) {
3958 /*
3959 * Attach jinode to inode for jbd2 if we do any zeroing of
3960 * partial block
3961 */
3962 ret = ext4_inode_attach_jinode(inode);
3963 if (ret < 0)
3964 goto out_mutex;
3965
3966 }
3967
Jan Karaea3d7202015-12-07 14:28:03 -05003968 /* Wait all existing dio workers, newcomers will block on i_mutex */
Jan Karaea3d7202015-12-07 14:28:03 -05003969 inode_dio_wait(inode);
3970
3971 /*
3972 * Prevent page faults from reinstantiating pages we have released from
3973 * page cache.
3974 */
3975 down_write(&EXT4_I(inode)->i_mmap_sem);
Ross Zwisler430657b2018-07-29 17:00:22 -04003976
3977 ret = ext4_break_layouts(inode);
3978 if (ret)
3979 goto out_dio;
3980
Lukas Czernera87dd182013-05-27 23:32:35 -04003981 first_block_offset = round_up(offset, sb->s_blocksize);
3982 last_block_offset = round_down((offset + length), sb->s_blocksize) - 1;
Theodore Ts'o26a4c0c2013-04-03 12:45:17 -04003983
Lukas Czernera87dd182013-05-27 23:32:35 -04003984 /* Now release the pages and zero block aligned part of pages*/
Jan Kara01127842015-12-07 14:34:49 -05003985 if (last_block_offset > first_block_offset) {
3986 ret = ext4_update_disksize_before_punch(inode, offset, length);
3987 if (ret)
3988 goto out_dio;
Lukas Czernera87dd182013-05-27 23:32:35 -04003989 truncate_pagecache_range(inode, first_block_offset,
3990 last_block_offset);
Jan Kara01127842015-12-07 14:34:49 -05003991 }
Theodore Ts'o26a4c0c2013-04-03 12:45:17 -04003992
3993 if (ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS))
3994 credits = ext4_writepage_trans_blocks(inode);
3995 else
3996 credits = ext4_blocks_for_truncate(inode);
3997 handle = ext4_journal_start(inode, EXT4_HT_TRUNCATE, credits);
3998 if (IS_ERR(handle)) {
3999 ret = PTR_ERR(handle);
4000 ext4_std_error(sb, ret);
4001 goto out_dio;
4002 }
4003
Lukas Czernera87dd182013-05-27 23:32:35 -04004004 ret = ext4_zero_partial_blocks(handle, inode, offset,
4005 length);
4006 if (ret)
4007 goto out_stop;
Theodore Ts'o26a4c0c2013-04-03 12:45:17 -04004008
4009 first_block = (offset + sb->s_blocksize - 1) >>
4010 EXT4_BLOCK_SIZE_BITS(sb);
4011 stop_block = (offset + length) >> EXT4_BLOCK_SIZE_BITS(sb);
4012
Lukas Czernereee597a2018-05-13 19:28:35 -04004013 /* If there are blocks to remove, do it */
4014 if (stop_block > first_block) {
Theodore Ts'o26a4c0c2013-04-03 12:45:17 -04004015
Lukas Czernereee597a2018-05-13 19:28:35 -04004016 down_write(&EXT4_I(inode)->i_data_sem);
4017 ext4_discard_preallocations(inode);
Theodore Ts'o26a4c0c2013-04-03 12:45:17 -04004018
Lukas Czernereee597a2018-05-13 19:28:35 -04004019 ret = ext4_es_remove_extent(inode, first_block,
4020 stop_block - first_block);
4021 if (ret) {
4022 up_write(&EXT4_I(inode)->i_data_sem);
4023 goto out_stop;
4024 }
4025
4026 if (ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS))
4027 ret = ext4_ext_remove_space(inode, first_block,
4028 stop_block - 1);
4029 else
4030 ret = ext4_ind_remove_space(handle, inode, first_block,
4031 stop_block);
4032
Theodore Ts'o26a4c0c2013-04-03 12:45:17 -04004033 up_write(&EXT4_I(inode)->i_data_sem);
Theodore Ts'o26a4c0c2013-04-03 12:45:17 -04004034 }
Theodore Ts'o26a4c0c2013-04-03 12:45:17 -04004035 if (IS_SYNC(inode))
4036 ext4_handle_sync(handle);
Maxim Patlasove251f9b2014-02-20 16:58:05 -05004037
Deepa Dinamanieeca7ea2016-11-14 21:40:10 -05004038 inode->i_mtime = inode->i_ctime = current_time(inode);
Theodore Ts'o26a4c0c2013-04-03 12:45:17 -04004039 ext4_mark_inode_dirty(handle, inode);
Jan Kara67a7d5f2017-05-29 13:24:55 -04004040 if (ret >= 0)
4041 ext4_update_inode_fsync_trans(handle, inode, 1);
Theodore Ts'o26a4c0c2013-04-03 12:45:17 -04004042out_stop:
4043 ext4_journal_stop(handle);
4044out_dio:
Jan Karaea3d7202015-12-07 14:28:03 -05004045 up_write(&EXT4_I(inode)->i_mmap_sem);
Theodore Ts'o26a4c0c2013-04-03 12:45:17 -04004046out_mutex:
Al Viro59551022016-01-22 15:40:57 -05004047 inode_unlock(inode);
Theodore Ts'o26a4c0c2013-04-03 12:45:17 -04004048 return ret;
Allison Hendersona4bb6b62011-05-25 07:41:50 -04004049}
4050
Jan Karaa3612932013-08-16 21:19:41 -04004051int ext4_inode_attach_jinode(struct inode *inode)
4052{
4053 struct ext4_inode_info *ei = EXT4_I(inode);
4054 struct jbd2_inode *jinode;
4055
4056 if (ei->jinode || !EXT4_SB(inode->i_sb)->s_journal)
4057 return 0;
4058
4059 jinode = jbd2_alloc_inode(GFP_KERNEL);
4060 spin_lock(&inode->i_lock);
4061 if (!ei->jinode) {
4062 if (!jinode) {
4063 spin_unlock(&inode->i_lock);
4064 return -ENOMEM;
4065 }
4066 ei->jinode = jinode;
4067 jbd2_journal_init_jbd_inode(ei->jinode, inode);
4068 jinode = NULL;
4069 }
4070 spin_unlock(&inode->i_lock);
4071 if (unlikely(jinode != NULL))
4072 jbd2_free_inode(jinode);
4073 return 0;
4074}
4075
Allison Hendersona4bb6b62011-05-25 07:41:50 -04004076/*
Mingming Cao617ba132006-10-11 01:20:53 -07004077 * ext4_truncate()
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004078 *
Mingming Cao617ba132006-10-11 01:20:53 -07004079 * We block out ext4_get_block() block instantiations across the entire
4080 * transaction, and VFS/VM ensures that ext4_truncate() cannot run
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004081 * simultaneously on behalf of the same inode.
4082 *
Justin P. Mattock42b2aa82011-11-28 20:31:00 -08004083 * As we work through the truncate and commit bits of it to the journal there
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004084 * is one core, guiding principle: the file's tree must always be consistent on
4085 * disk. We must be able to restart the truncate after a crash.
4086 *
4087 * The file's tree may be transiently inconsistent in memory (although it
4088 * probably isn't), but whenever we close off and commit a journal transaction,
4089 * the contents of (the filesystem + the journal) must be consistent and
4090 * restartable. It's pretty simple, really: bottom up, right to left (although
4091 * left-to-right works OK too).
4092 *
4093 * Note that at recovery time, journal replay occurs *before* the restart of
4094 * truncate against the orphan inode list.
4095 *
4096 * The committed inode has the new, desired i_size (which is the same as
Mingming Cao617ba132006-10-11 01:20:53 -07004097 * i_disksize in this case). After a crash, ext4_orphan_cleanup() will see
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004098 * that this inode's truncate did not complete and it will again call
Mingming Cao617ba132006-10-11 01:20:53 -07004099 * ext4_truncate() to have another go. So there will be instantiated blocks
4100 * to the right of the truncation point in a crashed ext4 filesystem. But
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004101 * that's fine - as long as they are linked from the inode, the post-crash
Mingming Cao617ba132006-10-11 01:20:53 -07004102 * ext4_truncate() run will find them and release them.
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004103 */
Theodore Ts'o2c98eb52016-11-13 22:02:26 -05004104int ext4_truncate(struct inode *inode)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004105{
Theodore Ts'o819c4922013-04-03 12:47:17 -04004106 struct ext4_inode_info *ei = EXT4_I(inode);
4107 unsigned int credits;
Theodore Ts'o2c98eb52016-11-13 22:02:26 -05004108 int err = 0;
Theodore Ts'o819c4922013-04-03 12:47:17 -04004109 handle_t *handle;
4110 struct address_space *mapping = inode->i_mapping;
Theodore Ts'o819c4922013-04-03 12:47:17 -04004111
Theodore Ts'o19b5ef62013-04-03 21:58:52 -04004112 /*
4113 * There is a possibility that we're either freeing the inode
Matthew Wilcoxe04027e2014-03-24 15:15:07 -04004114 * or it's a completely new inode. In those cases we might not
Theodore Ts'o19b5ef62013-04-03 21:58:52 -04004115 * have i_mutex locked because it's not necessary.
4116 */
4117 if (!(inode->i_state & (I_NEW|I_FREEING)))
Al Viro59551022016-01-22 15:40:57 -05004118 WARN_ON(!inode_is_locked(inode));
Jiaying Zhang0562e0b2011-03-21 21:38:05 -04004119 trace_ext4_truncate_enter(inode);
4120
Duane Griffin91ef4ca2008-07-11 19:27:31 -04004121 if (!ext4_can_truncate(inode))
Theodore Ts'o2c98eb52016-11-13 22:02:26 -05004122 return 0;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004123
Dmitry Monakhov12e9b892010-05-16 22:00:00 -04004124 ext4_clear_inode_flag(inode, EXT4_INODE_EOFBLOCKS);
Jiaying Zhangc8d46e42010-02-24 09:52:53 -05004125
Theodore Ts'o5534fb52009-09-17 09:34:16 -04004126 if (inode->i_size == 0 && !test_opt(inode->i_sb, NO_AUTO_DA_ALLOC))
Theodore Ts'o19f5fb72010-01-24 14:34:07 -05004127 ext4_set_inode_state(inode, EXT4_STATE_DA_ALLOC_CLOSE);
Theodore Ts'o7d8f9f72009-02-24 08:21:14 -05004128
Tao Maaef1c852012-12-10 14:06:02 -05004129 if (ext4_has_inline_data(inode)) {
4130 int has_inline = 1;
4131
Theodore Ts'o01daf942017-01-22 19:35:49 -05004132 err = ext4_inline_data_truncate(inode, &has_inline);
4133 if (err)
4134 return err;
Tao Maaef1c852012-12-10 14:06:02 -05004135 if (has_inline)
Theodore Ts'o2c98eb52016-11-13 22:02:26 -05004136 return 0;
Tao Maaef1c852012-12-10 14:06:02 -05004137 }
4138
Jan Karaa3612932013-08-16 21:19:41 -04004139 /* If we zero-out tail of the page, we have to create jinode for jbd2 */
4140 if (inode->i_size & (inode->i_sb->s_blocksize - 1)) {
4141 if (ext4_inode_attach_jinode(inode) < 0)
Theodore Ts'o2c98eb52016-11-13 22:02:26 -05004142 return 0;
Jan Karaa3612932013-08-16 21:19:41 -04004143 }
4144
Amir Goldsteinff9893d2011-06-27 16:36:31 -04004145 if (ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS))
Theodore Ts'o819c4922013-04-03 12:47:17 -04004146 credits = ext4_writepage_trans_blocks(inode);
Amir Goldsteinff9893d2011-06-27 16:36:31 -04004147 else
Theodore Ts'o819c4922013-04-03 12:47:17 -04004148 credits = ext4_blocks_for_truncate(inode);
4149
4150 handle = ext4_journal_start(inode, EXT4_HT_TRUNCATE, credits);
Theodore Ts'o2c98eb52016-11-13 22:02:26 -05004151 if (IS_ERR(handle))
4152 return PTR_ERR(handle);
Theodore Ts'o819c4922013-04-03 12:47:17 -04004153
Lukas Czernereb3544c2013-05-27 23:32:35 -04004154 if (inode->i_size & (inode->i_sb->s_blocksize - 1))
4155 ext4_block_truncate_page(handle, mapping, inode->i_size);
Theodore Ts'o819c4922013-04-03 12:47:17 -04004156
4157 /*
4158 * We add the inode to the orphan list, so that if this
4159 * truncate spans multiple transactions, and we crash, we will
4160 * resume the truncate when the filesystem recovers. It also
4161 * marks the inode dirty, to catch the new size.
4162 *
4163 * Implication: the file must always be in a sane, consistent
4164 * truncatable state while each transaction commits.
4165 */
Theodore Ts'o2c98eb52016-11-13 22:02:26 -05004166 err = ext4_orphan_add(handle, inode);
4167 if (err)
Theodore Ts'o819c4922013-04-03 12:47:17 -04004168 goto out_stop;
4169
4170 down_write(&EXT4_I(inode)->i_data_sem);
4171
4172 ext4_discard_preallocations(inode);
4173
4174 if (ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS))
Theodore Ts'od0abb362016-11-13 22:02:28 -05004175 err = ext4_ext_truncate(handle, inode);
Theodore Ts'o819c4922013-04-03 12:47:17 -04004176 else
4177 ext4_ind_truncate(handle, inode);
4178
4179 up_write(&ei->i_data_sem);
Theodore Ts'od0abb362016-11-13 22:02:28 -05004180 if (err)
4181 goto out_stop;
Theodore Ts'o819c4922013-04-03 12:47:17 -04004182
4183 if (IS_SYNC(inode))
4184 ext4_handle_sync(handle);
4185
4186out_stop:
4187 /*
4188 * If this was a simple ftruncate() and the file will remain alive,
4189 * then we need to clear up the orphan record which we created above.
4190 * However, if this was a real unlink then we were called by
Wang Shilong58d86a52014-11-25 16:17:29 -05004191 * ext4_evict_inode(), and we allow that function to clean up the
Theodore Ts'o819c4922013-04-03 12:47:17 -04004192 * orphan info for us.
4193 */
4194 if (inode->i_nlink)
4195 ext4_orphan_del(handle, inode);
4196
Deepa Dinamanieeca7ea2016-11-14 21:40:10 -05004197 inode->i_mtime = inode->i_ctime = current_time(inode);
Theodore Ts'o819c4922013-04-03 12:47:17 -04004198 ext4_mark_inode_dirty(handle, inode);
4199 ext4_journal_stop(handle);
Alex Tomasa86c6182006-10-11 01:21:03 -07004200
Jiaying Zhang0562e0b2011-03-21 21:38:05 -04004201 trace_ext4_truncate_exit(inode);
Theodore Ts'o2c98eb52016-11-13 22:02:26 -05004202 return err;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004203}
4204
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004205/*
Mingming Cao617ba132006-10-11 01:20:53 -07004206 * ext4_get_inode_loc returns with an extra refcount against the inode's
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004207 * underlying buffer_head on success. If 'in_mem' is true, we have all
4208 * data in memory that is needed to recreate the on-disk version of this
4209 * inode.
4210 */
Mingming Cao617ba132006-10-11 01:20:53 -07004211static int __ext4_get_inode_loc(struct inode *inode,
4212 struct ext4_iloc *iloc, int in_mem)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004213{
Theodore Ts'o240799c2008-10-09 23:53:47 -04004214 struct ext4_group_desc *gdp;
4215 struct buffer_head *bh;
4216 struct super_block *sb = inode->i_sb;
4217 ext4_fsblk_t block;
Linus Torvalds02f03c42019-09-29 17:59:23 -07004218 struct blk_plug plug;
Theodore Ts'o240799c2008-10-09 23:53:47 -04004219 int inodes_per_block, inode_offset;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004220
Aneesh Kumar K.V3a06d772008-11-22 15:04:59 -05004221 iloc->bh = NULL;
Theodore Ts'oc37e9e02018-06-17 00:41:14 -04004222 if (inode->i_ino < EXT4_ROOT_INO ||
4223 inode->i_ino > le32_to_cpu(EXT4_SB(sb)->s_es->s_inodes_count))
Darrick J. Wong6a797d22015-10-17 16:16:04 -04004224 return -EFSCORRUPTED;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004225
Theodore Ts'o240799c2008-10-09 23:53:47 -04004226 iloc->block_group = (inode->i_ino - 1) / EXT4_INODES_PER_GROUP(sb);
4227 gdp = ext4_get_group_desc(sb, iloc->block_group, NULL);
4228 if (!gdp)
4229 return -EIO;
4230
4231 /*
4232 * Figure out the offset within the block group inode table
4233 */
Tao Ma00d09882011-05-09 10:26:41 -04004234 inodes_per_block = EXT4_SB(sb)->s_inodes_per_block;
Theodore Ts'o240799c2008-10-09 23:53:47 -04004235 inode_offset = ((inode->i_ino - 1) %
4236 EXT4_INODES_PER_GROUP(sb));
4237 block = ext4_inode_table(sb, gdp) + (inode_offset / inodes_per_block);
4238 iloc->offset = (inode_offset % inodes_per_block) * EXT4_INODE_SIZE(sb);
4239
4240 bh = sb_getblk(sb, block);
Wang Shilongaebf0242013-01-12 16:28:47 -05004241 if (unlikely(!bh))
Theodore Ts'o860d21e2013-01-12 16:19:36 -05004242 return -ENOMEM;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004243 if (!buffer_uptodate(bh)) {
4244 lock_buffer(bh);
Hidehiro Kawai9c83a922008-07-26 16:39:26 -04004245
4246 /*
4247 * If the buffer has the write error flag, we have failed
4248 * to write out another inode in the same block. In this
4249 * case, we don't have to read the block because we may
4250 * read the old inode data successfully.
4251 */
4252 if (buffer_write_io_error(bh) && !buffer_uptodate(bh))
4253 set_buffer_uptodate(bh);
4254
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004255 if (buffer_uptodate(bh)) {
4256 /* someone brought it uptodate while we waited */
4257 unlock_buffer(bh);
4258 goto has_buffer;
4259 }
4260
4261 /*
4262 * If we have all information of the inode in memory and this
4263 * is the only valid inode in the block, we need not read the
4264 * block.
4265 */
4266 if (in_mem) {
4267 struct buffer_head *bitmap_bh;
Theodore Ts'o240799c2008-10-09 23:53:47 -04004268 int i, start;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004269
Theodore Ts'o240799c2008-10-09 23:53:47 -04004270 start = inode_offset & ~(inodes_per_block - 1);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004271
4272 /* Is the inode bitmap in cache? */
Theodore Ts'o240799c2008-10-09 23:53:47 -04004273 bitmap_bh = sb_getblk(sb, ext4_inode_bitmap(sb, gdp));
Wang Shilongaebf0242013-01-12 16:28:47 -05004274 if (unlikely(!bitmap_bh))
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004275 goto make_io;
4276
4277 /*
4278 * If the inode bitmap isn't in cache then the
4279 * optimisation may end up performing two reads instead
4280 * of one, so skip it.
4281 */
4282 if (!buffer_uptodate(bitmap_bh)) {
4283 brelse(bitmap_bh);
4284 goto make_io;
4285 }
Theodore Ts'o240799c2008-10-09 23:53:47 -04004286 for (i = start; i < start + inodes_per_block; i++) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004287 if (i == inode_offset)
4288 continue;
Mingming Cao617ba132006-10-11 01:20:53 -07004289 if (ext4_test_bit(i, bitmap_bh->b_data))
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004290 break;
4291 }
4292 brelse(bitmap_bh);
Theodore Ts'o240799c2008-10-09 23:53:47 -04004293 if (i == start + inodes_per_block) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004294 /* all other inodes are free, so skip I/O */
4295 memset(bh->b_data, 0, bh->b_size);
4296 set_buffer_uptodate(bh);
4297 unlock_buffer(bh);
4298 goto has_buffer;
4299 }
4300 }
4301
4302make_io:
4303 /*
Theodore Ts'o240799c2008-10-09 23:53:47 -04004304 * If we need to do any I/O, try to pre-readahead extra
4305 * blocks from the inode table.
4306 */
Linus Torvalds02f03c42019-09-29 17:59:23 -07004307 blk_start_plug(&plug);
Theodore Ts'o240799c2008-10-09 23:53:47 -04004308 if (EXT4_SB(sb)->s_inode_readahead_blks) {
4309 ext4_fsblk_t b, end, table;
4310 unsigned num;
Theodore Ts'o0d606e2c2013-04-23 08:59:35 -04004311 __u32 ra_blks = EXT4_SB(sb)->s_inode_readahead_blks;
Theodore Ts'o240799c2008-10-09 23:53:47 -04004312
4313 table = ext4_inode_table(sb, gdp);
Theodore Ts'ob713a5e2009-03-31 09:11:14 -04004314 /* s_inode_readahead_blks is always a power of 2 */
Theodore Ts'o0d606e2c2013-04-23 08:59:35 -04004315 b = block & ~((ext4_fsblk_t) ra_blks - 1);
Theodore Ts'o240799c2008-10-09 23:53:47 -04004316 if (table > b)
4317 b = table;
Theodore Ts'o0d606e2c2013-04-23 08:59:35 -04004318 end = b + ra_blks;
Theodore Ts'o240799c2008-10-09 23:53:47 -04004319 num = EXT4_INODES_PER_GROUP(sb);
Darrick J. Wongfeb0ab32012-04-29 18:45:10 -04004320 if (ext4_has_group_desc_csum(sb))
Aneesh Kumar K.V560671a2009-01-05 22:20:24 -05004321 num -= ext4_itable_unused_count(sb, gdp);
Theodore Ts'o240799c2008-10-09 23:53:47 -04004322 table += num / inodes_per_block;
4323 if (end > table)
4324 end = table;
4325 while (b <= end)
4326 sb_breadahead(sb, b++);
4327 }
4328
4329 /*
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004330 * There are other valid inodes in the buffer, this inode
4331 * has in-inode xattrs, or we don't have this inode in memory.
4332 * Read the block from disk.
4333 */
Jiaying Zhang0562e0b2011-03-21 21:38:05 -04004334 trace_ext4_load_inode(inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004335 get_bh(bh);
4336 bh->b_end_io = end_buffer_read_sync;
Mike Christie2a222ca2016-06-05 14:31:43 -05004337 submit_bh(REQ_OP_READ, REQ_META | REQ_PRIO, bh);
Linus Torvalds02f03c42019-09-29 17:59:23 -07004338 blk_finish_plug(&plug);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004339 wait_on_buffer(bh);
4340 if (!buffer_uptodate(bh)) {
Theodore Ts'oc398eda2010-07-27 11:56:40 -04004341 EXT4_ERROR_INODE_BLOCK(inode, block,
4342 "unable to read itable block");
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004343 brelse(bh);
4344 return -EIO;
4345 }
4346 }
4347has_buffer:
4348 iloc->bh = bh;
4349 return 0;
4350}
4351
Mingming Cao617ba132006-10-11 01:20:53 -07004352int ext4_get_inode_loc(struct inode *inode, struct ext4_iloc *iloc)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004353{
4354 /* We have all inode data except xattrs in memory here. */
Mingming Cao617ba132006-10-11 01:20:53 -07004355 return __ext4_get_inode_loc(inode, iloc,
Theodore Ts'o19f5fb72010-01-24 14:34:07 -05004356 !ext4_test_inode_state(inode, EXT4_STATE_XATTR));
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004357}
4358
Ross Zwisler66425862017-10-12 12:00:59 -04004359static bool ext4_should_use_dax(struct inode *inode)
4360{
4361 if (!test_opt(inode->i_sb, DAX))
4362 return false;
4363 if (!S_ISREG(inode->i_mode))
4364 return false;
4365 if (ext4_should_journal_data(inode))
4366 return false;
4367 if (ext4_has_inline_data(inode))
4368 return false;
Chandan Rajendra592ddec2018-12-12 15:20:10 +05304369 if (ext4_test_inode_flag(inode, EXT4_INODE_ENCRYPT))
Ross Zwisler66425862017-10-12 12:00:59 -04004370 return false;
Eric Biggersc93d8f82019-07-22 09:26:24 -07004371 if (ext4_test_inode_flag(inode, EXT4_INODE_VERITY))
4372 return false;
Ross Zwisler66425862017-10-12 12:00:59 -04004373 return true;
4374}
4375
Mingming Cao617ba132006-10-11 01:20:53 -07004376void ext4_set_inode_flags(struct inode *inode)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004377{
Mingming Cao617ba132006-10-11 01:20:53 -07004378 unsigned int flags = EXT4_I(inode)->i_flags;
Theodore Ts'o00a1a052014-03-30 10:20:01 -04004379 unsigned int new_fl = 0;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004380
Mingming Cao617ba132006-10-11 01:20:53 -07004381 if (flags & EXT4_SYNC_FL)
Theodore Ts'o00a1a052014-03-30 10:20:01 -04004382 new_fl |= S_SYNC;
Mingming Cao617ba132006-10-11 01:20:53 -07004383 if (flags & EXT4_APPEND_FL)
Theodore Ts'o00a1a052014-03-30 10:20:01 -04004384 new_fl |= S_APPEND;
Mingming Cao617ba132006-10-11 01:20:53 -07004385 if (flags & EXT4_IMMUTABLE_FL)
Theodore Ts'o00a1a052014-03-30 10:20:01 -04004386 new_fl |= S_IMMUTABLE;
Mingming Cao617ba132006-10-11 01:20:53 -07004387 if (flags & EXT4_NOATIME_FL)
Theodore Ts'o00a1a052014-03-30 10:20:01 -04004388 new_fl |= S_NOATIME;
Mingming Cao617ba132006-10-11 01:20:53 -07004389 if (flags & EXT4_DIRSYNC_FL)
Theodore Ts'o00a1a052014-03-30 10:20:01 -04004390 new_fl |= S_DIRSYNC;
Ross Zwisler66425862017-10-12 12:00:59 -04004391 if (ext4_should_use_dax(inode))
Ross Zwisler923ae0f2015-02-16 15:59:38 -08004392 new_fl |= S_DAX;
Eric Biggers2ee6a572017-10-09 12:15:35 -07004393 if (flags & EXT4_ENCRYPT_FL)
4394 new_fl |= S_ENCRYPTED;
Gabriel Krisman Bertazib886ee32019-04-25 14:12:08 -04004395 if (flags & EXT4_CASEFOLD_FL)
4396 new_fl |= S_CASEFOLD;
Eric Biggersc93d8f82019-07-22 09:26:24 -07004397 if (flags & EXT4_VERITY_FL)
4398 new_fl |= S_VERITY;
Theodore Ts'o5f16f322014-03-24 14:43:12 -04004399 inode_set_flags(inode, new_fl,
Eric Biggers2ee6a572017-10-09 12:15:35 -07004400 S_SYNC|S_APPEND|S_IMMUTABLE|S_NOATIME|S_DIRSYNC|S_DAX|
Eric Biggersc93d8f82019-07-22 09:26:24 -07004401 S_ENCRYPTED|S_CASEFOLD|S_VERITY);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004402}
4403
Aneesh Kumar K.V0fc1b452008-01-28 23:58:26 -05004404static blkcnt_t ext4_inode_blocks(struct ext4_inode *raw_inode,
Theodore Ts'ode9a55b2009-06-14 17:45:34 -04004405 struct ext4_inode_info *ei)
Aneesh Kumar K.V0fc1b452008-01-28 23:58:26 -05004406{
4407 blkcnt_t i_blocks ;
Aneesh Kumar K.V8180a562008-01-28 23:58:27 -05004408 struct inode *inode = &(ei->vfs_inode);
4409 struct super_block *sb = inode->i_sb;
Aneesh Kumar K.V0fc1b452008-01-28 23:58:26 -05004410
Darrick J. Wonge2b911c2015-10-17 16:18:43 -04004411 if (ext4_has_feature_huge_file(sb)) {
Aneesh Kumar K.V0fc1b452008-01-28 23:58:26 -05004412 /* we are using combined 48 bit field */
4413 i_blocks = ((u64)le16_to_cpu(raw_inode->i_blocks_high)) << 32 |
4414 le32_to_cpu(raw_inode->i_blocks_lo);
Theodore Ts'o07a03822010-06-14 09:54:48 -04004415 if (ext4_test_inode_flag(inode, EXT4_INODE_HUGE_FILE)) {
Aneesh Kumar K.V8180a562008-01-28 23:58:27 -05004416 /* i_blocks represent file system block size */
4417 return i_blocks << (inode->i_blkbits - 9);
4418 } else {
4419 return i_blocks;
4420 }
Aneesh Kumar K.V0fc1b452008-01-28 23:58:26 -05004421 } else {
4422 return le32_to_cpu(raw_inode->i_blocks_lo);
4423 }
4424}
Jan Karaff9ddf72007-07-18 09:24:20 -04004425
Theodore Ts'oeb9b5f02018-05-22 17:14:07 -04004426static inline int ext4_iget_extra_inode(struct inode *inode,
Tao Ma152a7b02012-12-02 11:13:24 -05004427 struct ext4_inode *raw_inode,
4428 struct ext4_inode_info *ei)
4429{
4430 __le32 *magic = (void *)raw_inode +
4431 EXT4_GOOD_OLD_INODE_SIZE + ei->i_extra_isize;
Theodore Ts'oeb9b5f02018-05-22 17:14:07 -04004432
Eric Biggers290ab232016-12-01 14:51:58 -05004433 if (EXT4_GOOD_OLD_INODE_SIZE + ei->i_extra_isize + sizeof(__le32) <=
4434 EXT4_INODE_SIZE(inode->i_sb) &&
4435 *magic == cpu_to_le32(EXT4_XATTR_MAGIC)) {
Tao Ma152a7b02012-12-02 11:13:24 -05004436 ext4_set_inode_state(inode, EXT4_STATE_XATTR);
Theodore Ts'oeb9b5f02018-05-22 17:14:07 -04004437 return ext4_find_inline_data_nolock(inode);
Tao Maf19d5872012-12-10 14:05:51 -05004438 } else
4439 EXT4_I(inode)->i_inline_off = 0;
Theodore Ts'oeb9b5f02018-05-22 17:14:07 -04004440 return 0;
Tao Ma152a7b02012-12-02 11:13:24 -05004441}
4442
Li Xi040cb372016-01-08 16:01:21 -05004443int ext4_get_projid(struct inode *inode, kprojid_t *projid)
4444{
Kaho Ng0b7b7772016-09-05 23:11:58 -04004445 if (!ext4_has_feature_project(inode->i_sb))
Li Xi040cb372016-01-08 16:01:21 -05004446 return -EOPNOTSUPP;
4447 *projid = EXT4_I(inode)->i_projid;
4448 return 0;
4449}
4450
Eryu Guane254d1a2018-05-10 11:55:31 -04004451/*
4452 * ext4 has self-managed i_version for ea inodes, it stores the lower 32bit of
4453 * refcount in i_version, so use raw values if inode has EXT4_EA_INODE_FL flag
4454 * set.
4455 */
4456static inline void ext4_inode_set_iversion_queried(struct inode *inode, u64 val)
4457{
4458 if (unlikely(EXT4_I(inode)->i_flags & EXT4_EA_INODE_FL))
4459 inode_set_iversion_raw(inode, val);
4460 else
4461 inode_set_iversion_queried(inode, val);
4462}
4463static inline u64 ext4_inode_peek_iversion(const struct inode *inode)
4464{
4465 if (unlikely(EXT4_I(inode)->i_flags & EXT4_EA_INODE_FL))
4466 return inode_peek_iversion_raw(inode);
4467 else
4468 return inode_peek_iversion(inode);
4469}
4470
Theodore Ts'o8a363972018-12-19 12:29:13 -05004471struct inode *__ext4_iget(struct super_block *sb, unsigned long ino,
4472 ext4_iget_flags flags, const char *function,
4473 unsigned int line)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004474{
Mingming Cao617ba132006-10-11 01:20:53 -07004475 struct ext4_iloc iloc;
4476 struct ext4_inode *raw_inode;
David Howells1d1fe1e2008-02-07 00:15:37 -08004477 struct ext4_inode_info *ei;
David Howells1d1fe1e2008-02-07 00:15:37 -08004478 struct inode *inode;
Jan Karab436b9b2009-12-08 23:51:10 -05004479 journal_t *journal = EXT4_SB(sb)->s_journal;
David Howells1d1fe1e2008-02-07 00:15:37 -08004480 long ret;
Darrick J. Wong7e6e1ef2016-12-10 09:55:01 -05004481 loff_t size;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004482 int block;
Eric W. Biederman08cefc72012-02-07 15:41:49 -08004483 uid_t i_uid;
4484 gid_t i_gid;
Li Xi040cb372016-01-08 16:01:21 -05004485 projid_t i_projid;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004486
Theodore Ts'o191ce172018-12-31 22:34:31 -05004487 if ((!(flags & EXT4_IGET_SPECIAL) &&
Theodore Ts'o8a363972018-12-19 12:29:13 -05004488 (ino < EXT4_FIRST_INO(sb) && ino != EXT4_ROOT_INO)) ||
4489 (ino < EXT4_ROOT_INO) ||
4490 (ino > le32_to_cpu(EXT4_SB(sb)->s_es->s_inodes_count))) {
4491 if (flags & EXT4_IGET_HANDLE)
4492 return ERR_PTR(-ESTALE);
4493 __ext4_error(sb, function, line,
4494 "inode #%lu: comm %s: iget: illegal inode #",
4495 ino, current->comm);
4496 return ERR_PTR(-EFSCORRUPTED);
4497 }
4498
David Howells1d1fe1e2008-02-07 00:15:37 -08004499 inode = iget_locked(sb, ino);
4500 if (!inode)
4501 return ERR_PTR(-ENOMEM);
4502 if (!(inode->i_state & I_NEW))
4503 return inode;
4504
4505 ei = EXT4_I(inode);
Peter Huewe7dc57612011-02-21 21:01:42 -05004506 iloc.bh = NULL;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004507
David Howells1d1fe1e2008-02-07 00:15:37 -08004508 ret = __ext4_get_inode_loc(inode, &iloc, 0);
4509 if (ret < 0)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004510 goto bad_inode;
Mingming Cao617ba132006-10-11 01:20:53 -07004511 raw_inode = ext4_raw_inode(&iloc);
Darrick J. Wong814525f2012-04-29 18:31:10 -04004512
Theodore Ts'o8e4b5ea2018-03-29 21:56:09 -04004513 if ((ino == EXT4_ROOT_INO) && (raw_inode->i_links_count == 0)) {
Theodore Ts'o8a363972018-12-19 12:29:13 -05004514 ext4_error_inode(inode, function, line, 0,
4515 "iget: root inode unallocated");
Theodore Ts'o8e4b5ea2018-03-29 21:56:09 -04004516 ret = -EFSCORRUPTED;
4517 goto bad_inode;
4518 }
4519
Theodore Ts'o8a363972018-12-19 12:29:13 -05004520 if ((flags & EXT4_IGET_HANDLE) &&
4521 (raw_inode->i_links_count == 0) && (raw_inode->i_mode == 0)) {
4522 ret = -ESTALE;
4523 goto bad_inode;
4524 }
4525
Darrick J. Wong814525f2012-04-29 18:31:10 -04004526 if (EXT4_INODE_SIZE(inode->i_sb) > EXT4_GOOD_OLD_INODE_SIZE) {
4527 ei->i_extra_isize = le16_to_cpu(raw_inode->i_extra_isize);
4528 if (EXT4_GOOD_OLD_INODE_SIZE + ei->i_extra_isize >
Eric Biggers2dc8d9e2016-12-01 14:43:33 -05004529 EXT4_INODE_SIZE(inode->i_sb) ||
4530 (ei->i_extra_isize & 3)) {
Theodore Ts'o8a363972018-12-19 12:29:13 -05004531 ext4_error_inode(inode, function, line, 0,
4532 "iget: bad extra_isize %u "
4533 "(inode size %u)",
Eric Biggers2dc8d9e2016-12-01 14:43:33 -05004534 ei->i_extra_isize,
4535 EXT4_INODE_SIZE(inode->i_sb));
Darrick J. Wong6a797d22015-10-17 16:16:04 -04004536 ret = -EFSCORRUPTED;
Darrick J. Wong814525f2012-04-29 18:31:10 -04004537 goto bad_inode;
4538 }
4539 } else
4540 ei->i_extra_isize = 0;
4541
4542 /* Precompute checksum seed for inode metadata */
Dmitry Monakhov9aa5d32b2014-10-13 03:36:16 -04004543 if (ext4_has_metadata_csum(sb)) {
Darrick J. Wong814525f2012-04-29 18:31:10 -04004544 struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb);
4545 __u32 csum;
4546 __le32 inum = cpu_to_le32(inode->i_ino);
4547 __le32 gen = raw_inode->i_generation;
4548 csum = ext4_chksum(sbi, sbi->s_csum_seed, (__u8 *)&inum,
4549 sizeof(inum));
4550 ei->i_csum_seed = ext4_chksum(sbi, csum, (__u8 *)&gen,
4551 sizeof(gen));
4552 }
4553
4554 if (!ext4_inode_csum_verify(inode, raw_inode, ei)) {
Theodore Ts'o8a363972018-12-19 12:29:13 -05004555 ext4_error_inode(inode, function, line, 0,
4556 "iget: checksum invalid");
Darrick J. Wong6a797d22015-10-17 16:16:04 -04004557 ret = -EFSBADCRC;
Darrick J. Wong814525f2012-04-29 18:31:10 -04004558 goto bad_inode;
4559 }
4560
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004561 inode->i_mode = le16_to_cpu(raw_inode->i_mode);
Eric W. Biederman08cefc72012-02-07 15:41:49 -08004562 i_uid = (uid_t)le16_to_cpu(raw_inode->i_uid_low);
4563 i_gid = (gid_t)le16_to_cpu(raw_inode->i_gid_low);
Kaho Ng0b7b7772016-09-05 23:11:58 -04004564 if (ext4_has_feature_project(sb) &&
Li Xi040cb372016-01-08 16:01:21 -05004565 EXT4_INODE_SIZE(sb) > EXT4_GOOD_OLD_INODE_SIZE &&
4566 EXT4_FITS_IN_INODE(raw_inode, ei, i_projid))
4567 i_projid = (projid_t)le32_to_cpu(raw_inode->i_projid);
4568 else
4569 i_projid = EXT4_DEF_PROJID;
4570
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04004571 if (!(test_opt(inode->i_sb, NO_UID32))) {
Eric W. Biederman08cefc72012-02-07 15:41:49 -08004572 i_uid |= le16_to_cpu(raw_inode->i_uid_high) << 16;
4573 i_gid |= le16_to_cpu(raw_inode->i_gid_high) << 16;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004574 }
Eric W. Biederman08cefc72012-02-07 15:41:49 -08004575 i_uid_write(inode, i_uid);
4576 i_gid_write(inode, i_gid);
Li Xi040cb372016-01-08 16:01:21 -05004577 ei->i_projid = make_kprojid(&init_user_ns, i_projid);
Miklos Szeredibfe86842011-10-28 14:13:29 +02004578 set_nlink(inode, le16_to_cpu(raw_inode->i_links_count));
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004579
Theodore Ts'o353eb832011-01-10 12:18:25 -05004580 ext4_clear_state_flags(ei); /* Only relevant on 32-bit archs */
Tao Ma67cf5b02012-12-10 14:04:46 -05004581 ei->i_inline_off = 0;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004582 ei->i_dir_start_lookup = 0;
4583 ei->i_dtime = le32_to_cpu(raw_inode->i_dtime);
4584 /* We now have enough fields to check if the inode was active or not.
4585 * This is needed because nfsd might try to access dead inodes
4586 * the test is that same one that e2fsck uses
4587 * NeilBrown 1999oct15
4588 */
4589 if (inode->i_nlink == 0) {
Dr. Tilmann Bubeck393d1d12013-04-08 12:54:05 -04004590 if ((inode->i_mode == 0 ||
4591 !(EXT4_SB(inode->i_sb)->s_mount_state & EXT4_ORPHAN_FS)) &&
4592 ino != EXT4_BOOT_LOADER_INO) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004593 /* this inode is deleted */
David Howells1d1fe1e2008-02-07 00:15:37 -08004594 ret = -ESTALE;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004595 goto bad_inode;
4596 }
4597 /* The only unlinked inodes we let through here have
4598 * valid i_mode and are being read by the orphan
4599 * recovery code: that's fine, we're about to complete
Dr. Tilmann Bubeck393d1d12013-04-08 12:54:05 -04004600 * the process of deleting those.
4601 * OR it is the EXT4_BOOT_LOADER_INO which is
4602 * not initialized on a new filesystem. */
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004603 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004604 ei->i_flags = le32_to_cpu(raw_inode->i_flags);
Toshi Kanicce6c9f2018-09-15 21:37:59 -04004605 ext4_set_inode_flags(inode);
Aneesh Kumar K.V0fc1b452008-01-28 23:58:26 -05004606 inode->i_blocks = ext4_inode_blocks(raw_inode, ei);
Aneesh Kumar K.V7973c0c2008-01-28 23:58:27 -05004607 ei->i_file_acl = le32_to_cpu(raw_inode->i_file_acl_lo);
Darrick J. Wonge2b911c2015-10-17 16:18:43 -04004608 if (ext4_has_feature_64bit(sb))
Badari Pulavartya1ddeb72006-10-11 01:21:09 -07004609 ei->i_file_acl |=
4610 ((__u64)le16_to_cpu(raw_inode->i_file_acl_high)) << 32;
Artem Blagodarenkoe08ac992017-06-21 21:09:57 -04004611 inode->i_size = ext4_isize(sb, raw_inode);
Darrick J. Wong7e6e1ef2016-12-10 09:55:01 -05004612 if ((size = i_size_read(inode)) < 0) {
Theodore Ts'o8a363972018-12-19 12:29:13 -05004613 ext4_error_inode(inode, function, line, 0,
4614 "iget: bad i_size value: %lld", size);
Darrick J. Wong7e6e1ef2016-12-10 09:55:01 -05004615 ret = -EFSCORRUPTED;
4616 goto bad_inode;
4617 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004618 ei->i_disksize = inode->i_size;
Dmitry Monakhova9e7f442009-12-14 15:21:14 +03004619#ifdef CONFIG_QUOTA
4620 ei->i_reserved_quota = 0;
4621#endif
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004622 inode->i_generation = le32_to_cpu(raw_inode->i_generation);
4623 ei->i_block_group = iloc.block_group;
Theodore Ts'oa4912122009-03-12 12:18:34 -04004624 ei->i_last_alloc_group = ~0;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004625 /*
4626 * NOTE! The in-memory inode i_data array is in little-endian order
4627 * even on big-endian machines: we do NOT byteswap the block numbers!
4628 */
Mingming Cao617ba132006-10-11 01:20:53 -07004629 for (block = 0; block < EXT4_N_BLOCKS; block++)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004630 ei->i_data[block] = raw_inode->i_block[block];
4631 INIT_LIST_HEAD(&ei->i_orphan);
4632
Jan Karab436b9b2009-12-08 23:51:10 -05004633 /*
4634 * Set transaction id's of transactions that have to be committed
4635 * to finish f[data]sync. We set them to currently running transaction
4636 * as we cannot be sure that the inode or some of its metadata isn't
4637 * part of the transaction - the inode could have been reclaimed and
4638 * now it is reread from disk.
4639 */
4640 if (journal) {
4641 transaction_t *transaction;
4642 tid_t tid;
4643
Theodore Ts'oa931da62010-08-03 21:35:12 -04004644 read_lock(&journal->j_state_lock);
Jan Karab436b9b2009-12-08 23:51:10 -05004645 if (journal->j_running_transaction)
4646 transaction = journal->j_running_transaction;
4647 else
4648 transaction = journal->j_committing_transaction;
4649 if (transaction)
4650 tid = transaction->t_tid;
4651 else
4652 tid = journal->j_commit_sequence;
Theodore Ts'oa931da62010-08-03 21:35:12 -04004653 read_unlock(&journal->j_state_lock);
Jan Karab436b9b2009-12-08 23:51:10 -05004654 ei->i_sync_tid = tid;
4655 ei->i_datasync_tid = tid;
4656 }
4657
Eric Sandeen0040d982008-02-05 22:36:43 -05004658 if (EXT4_INODE_SIZE(inode->i_sb) > EXT4_GOOD_OLD_INODE_SIZE) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004659 if (ei->i_extra_isize == 0) {
4660 /* The extra space is currently unused. Use it. */
Eric Biggers2dc8d9e2016-12-01 14:43:33 -05004661 BUILD_BUG_ON(sizeof(struct ext4_inode) & 3);
Mingming Cao617ba132006-10-11 01:20:53 -07004662 ei->i_extra_isize = sizeof(struct ext4_inode) -
4663 EXT4_GOOD_OLD_INODE_SIZE;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004664 } else {
Theodore Ts'oeb9b5f02018-05-22 17:14:07 -04004665 ret = ext4_iget_extra_inode(inode, raw_inode, ei);
4666 if (ret)
4667 goto bad_inode;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004668 }
Darrick J. Wong814525f2012-04-29 18:31:10 -04004669 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004670
Kalpak Shahef7f3832007-07-18 09:15:20 -04004671 EXT4_INODE_GET_XTIME(i_ctime, inode, raw_inode);
4672 EXT4_INODE_GET_XTIME(i_mtime, inode, raw_inode);
4673 EXT4_INODE_GET_XTIME(i_atime, inode, raw_inode);
4674 EXT4_EINODE_GET_XTIME(i_crtime, ei, raw_inode);
4675
Theodore Ts'oed3654e2014-03-24 14:09:06 -04004676 if (likely(!test_opt2(inode->i_sb, HURD_COMPAT))) {
Jeff Laytonee73f9a2018-01-09 08:21:39 -05004677 u64 ivers = le32_to_cpu(raw_inode->i_disk_version);
4678
Theodore Ts'oc4f65702014-03-20 00:32:57 -04004679 if (EXT4_INODE_SIZE(inode->i_sb) > EXT4_GOOD_OLD_INODE_SIZE) {
4680 if (EXT4_FITS_IN_INODE(raw_inode, ei, i_version_hi))
Jeff Laytonee73f9a2018-01-09 08:21:39 -05004681 ivers |=
Theodore Ts'oc4f65702014-03-20 00:32:57 -04004682 (__u64)(le32_to_cpu(raw_inode->i_version_hi)) << 32;
4683 }
Eryu Guane254d1a2018-05-10 11:55:31 -04004684 ext4_inode_set_iversion_queried(inode, ivers);
Jean Noel Cordenner25ec56b2008-01-28 23:58:27 -05004685 }
4686
Theodore Ts'oc4b5a612009-04-24 18:45:35 -04004687 ret = 0;
Theodore Ts'o485c26e2009-04-24 13:43:20 -04004688 if (ei->i_file_acl &&
Theodore Ts'o10329882009-11-15 15:29:56 -05004689 !ext4_data_block_valid(EXT4_SB(sb), ei->i_file_acl, 1)) {
Theodore Ts'o8a363972018-12-19 12:29:13 -05004690 ext4_error_inode(inode, function, line, 0,
4691 "iget: bad extended attribute block %llu",
Theodore Ts'o24676da2010-05-16 21:00:00 -04004692 ei->i_file_acl);
Darrick J. Wong6a797d22015-10-17 16:16:04 -04004693 ret = -EFSCORRUPTED;
Theodore Ts'o485c26e2009-04-24 13:43:20 -04004694 goto bad_inode;
Tao Maf19d5872012-12-10 14:05:51 -05004695 } else if (!ext4_has_inline_data(inode)) {
Liu Songbc716522018-08-02 00:11:16 -04004696 /* validate the block references in the inode */
4697 if (S_ISREG(inode->i_mode) || S_ISDIR(inode->i_mode) ||
4698 (S_ISLNK(inode->i_mode) &&
4699 !ext4_inode_is_fast_symlink(inode))) {
4700 if (ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS))
Tao Maf19d5872012-12-10 14:05:51 -05004701 ret = ext4_ext_check_inode(inode);
Liu Songbc716522018-08-02 00:11:16 -04004702 else
4703 ret = ext4_ind_check_inode(inode);
Tao Maf19d5872012-12-10 14:05:51 -05004704 }
Thiemo Nagelfe2c8192009-03-31 08:36:10 -04004705 }
Theodore Ts'o567f3e92009-11-14 08:19:05 -05004706 if (ret)
Theodore Ts'ode9a55b2009-06-14 17:45:34 -04004707 goto bad_inode;
Aneesh Kumar K.V7a262f72009-03-27 16:39:58 -04004708
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004709 if (S_ISREG(inode->i_mode)) {
Mingming Cao617ba132006-10-11 01:20:53 -07004710 inode->i_op = &ext4_file_inode_operations;
Boaz Harroshbe64f882015-04-15 16:15:17 -07004711 inode->i_fop = &ext4_file_operations;
Mingming Cao617ba132006-10-11 01:20:53 -07004712 ext4_set_aops(inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004713 } else if (S_ISDIR(inode->i_mode)) {
Mingming Cao617ba132006-10-11 01:20:53 -07004714 inode->i_op = &ext4_dir_inode_operations;
4715 inode->i_fop = &ext4_dir_operations;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004716 } else if (S_ISLNK(inode->i_mode)) {
Luis R. Rodriguez6390d332018-05-13 16:45:56 -04004717 /* VFS does not allow setting these so must be corruption */
4718 if (IS_APPEND(inode) || IS_IMMUTABLE(inode)) {
Theodore Ts'o8a363972018-12-19 12:29:13 -05004719 ext4_error_inode(inode, function, line, 0,
4720 "iget: immutable or append flags "
4721 "not allowed on symlinks");
Luis R. Rodriguez6390d332018-05-13 16:45:56 -04004722 ret = -EFSCORRUPTED;
4723 goto bad_inode;
4724 }
Chandan Rajendra592ddec2018-12-12 15:20:10 +05304725 if (IS_ENCRYPTED(inode)) {
Al Viroa7a67e82015-04-27 17:51:30 -04004726 inode->i_op = &ext4_encrypted_symlink_inode_operations;
4727 ext4_set_aops(inode);
4728 } else if (ext4_inode_is_fast_symlink(inode)) {
Al Viro75e75662015-05-02 10:13:58 -04004729 inode->i_link = (char *)ei->i_data;
Mingming Cao617ba132006-10-11 01:20:53 -07004730 inode->i_op = &ext4_fast_symlink_inode_operations;
Duane Griffine83c1392008-12-19 20:47:15 +00004731 nd_terminate_link(ei->i_data, inode->i_size,
4732 sizeof(ei->i_data) - 1);
4733 } else {
Mingming Cao617ba132006-10-11 01:20:53 -07004734 inode->i_op = &ext4_symlink_inode_operations;
4735 ext4_set_aops(inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004736 }
Al Viro21fc61c2015-11-17 01:07:57 -05004737 inode_nohighmem(inode);
Theodore Ts'o563bdd62009-03-26 00:06:19 -04004738 } else if (S_ISCHR(inode->i_mode) || S_ISBLK(inode->i_mode) ||
4739 S_ISFIFO(inode->i_mode) || S_ISSOCK(inode->i_mode)) {
Mingming Cao617ba132006-10-11 01:20:53 -07004740 inode->i_op = &ext4_special_inode_operations;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004741 if (raw_inode->i_block[0])
4742 init_special_inode(inode, inode->i_mode,
4743 old_decode_dev(le32_to_cpu(raw_inode->i_block[0])));
4744 else
4745 init_special_inode(inode, inode->i_mode,
4746 new_decode_dev(le32_to_cpu(raw_inode->i_block[1])));
Dr. Tilmann Bubeck393d1d12013-04-08 12:54:05 -04004747 } else if (ino == EXT4_BOOT_LOADER_INO) {
4748 make_bad_inode(inode);
Theodore Ts'o563bdd62009-03-26 00:06:19 -04004749 } else {
Darrick J. Wong6a797d22015-10-17 16:16:04 -04004750 ret = -EFSCORRUPTED;
Theodore Ts'o8a363972018-12-19 12:29:13 -05004751 ext4_error_inode(inode, function, line, 0,
4752 "iget: bogus i_mode (%o)", inode->i_mode);
Theodore Ts'o563bdd62009-03-26 00:06:19 -04004753 goto bad_inode;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004754 }
Theodore Ts'o6456ca62019-09-03 01:43:17 -04004755 if (IS_CASEFOLDED(inode) && !ext4_has_feature_casefold(inode->i_sb))
4756 ext4_error_inode(inode, function, line, 0,
4757 "casefold flag without casefold feature");
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04004758 brelse(iloc.bh);
Tahsin Erdogandec214d2017-06-22 11:44:55 -04004759
David Howells1d1fe1e2008-02-07 00:15:37 -08004760 unlock_new_inode(inode);
4761 return inode;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004762
4763bad_inode:
Theodore Ts'o567f3e92009-11-14 08:19:05 -05004764 brelse(iloc.bh);
David Howells1d1fe1e2008-02-07 00:15:37 -08004765 iget_failed(inode);
4766 return ERR_PTR(ret);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004767}
4768
Aneesh Kumar K.V0fc1b452008-01-28 23:58:26 -05004769static int ext4_inode_blocks_set(handle_t *handle,
4770 struct ext4_inode *raw_inode,
4771 struct ext4_inode_info *ei)
4772{
4773 struct inode *inode = &(ei->vfs_inode);
4774 u64 i_blocks = inode->i_blocks;
4775 struct super_block *sb = inode->i_sb;
Aneesh Kumar K.V0fc1b452008-01-28 23:58:26 -05004776
4777 if (i_blocks <= ~0U) {
4778 /*
Anatol Pomozov4907cb72012-09-01 10:31:09 -07004779 * i_blocks can be represented in a 32 bit variable
Aneesh Kumar K.V0fc1b452008-01-28 23:58:26 -05004780 * as multiple of 512 bytes
4781 */
Aneesh Kumar K.V8180a562008-01-28 23:58:27 -05004782 raw_inode->i_blocks_lo = cpu_to_le32(i_blocks);
Aneesh Kumar K.V0fc1b452008-01-28 23:58:26 -05004783 raw_inode->i_blocks_high = 0;
Dmitry Monakhov84a8dce2010-06-05 11:51:27 -04004784 ext4_clear_inode_flag(inode, EXT4_INODE_HUGE_FILE);
Theodore Ts'of287a1a2008-10-16 22:50:48 -04004785 return 0;
4786 }
Darrick J. Wonge2b911c2015-10-17 16:18:43 -04004787 if (!ext4_has_feature_huge_file(sb))
Theodore Ts'of287a1a2008-10-16 22:50:48 -04004788 return -EFBIG;
4789
4790 if (i_blocks <= 0xffffffffffffULL) {
Aneesh Kumar K.V0fc1b452008-01-28 23:58:26 -05004791 /*
4792 * i_blocks can be represented in a 48 bit variable
4793 * as multiple of 512 bytes
4794 */
Aneesh Kumar K.V8180a562008-01-28 23:58:27 -05004795 raw_inode->i_blocks_lo = cpu_to_le32(i_blocks);
Aneesh Kumar K.V0fc1b452008-01-28 23:58:26 -05004796 raw_inode->i_blocks_high = cpu_to_le16(i_blocks >> 32);
Dmitry Monakhov84a8dce2010-06-05 11:51:27 -04004797 ext4_clear_inode_flag(inode, EXT4_INODE_HUGE_FILE);
Aneesh Kumar K.V0fc1b452008-01-28 23:58:26 -05004798 } else {
Dmitry Monakhov84a8dce2010-06-05 11:51:27 -04004799 ext4_set_inode_flag(inode, EXT4_INODE_HUGE_FILE);
Aneesh Kumar K.V8180a562008-01-28 23:58:27 -05004800 /* i_block is stored in file system block size */
4801 i_blocks = i_blocks >> (inode->i_blkbits - 9);
4802 raw_inode->i_blocks_lo = cpu_to_le32(i_blocks);
4803 raw_inode->i_blocks_high = cpu_to_le16(i_blocks >> 32);
Aneesh Kumar K.V0fc1b452008-01-28 23:58:26 -05004804 }
Theodore Ts'of287a1a2008-10-16 22:50:48 -04004805 return 0;
Aneesh Kumar K.V0fc1b452008-01-28 23:58:26 -05004806}
4807
Theodore Ts'oa26f4992015-02-02 00:37:02 -05004808struct other_inode {
4809 unsigned long orig_ino;
4810 struct ext4_inode *raw_inode;
4811};
4812
4813static int other_inode_match(struct inode * inode, unsigned long ino,
4814 void *data)
4815{
4816 struct other_inode *oi = (struct other_inode *) data;
4817
4818 if ((inode->i_ino != ino) ||
4819 (inode->i_state & (I_FREEING | I_WILL_FREE | I_NEW |
Christoph Hellwig0e11f642018-02-21 07:54:49 -08004820 I_DIRTY_INODE)) ||
Theodore Ts'oa26f4992015-02-02 00:37:02 -05004821 ((inode->i_state & I_DIRTY_TIME) == 0))
4822 return 0;
4823 spin_lock(&inode->i_lock);
4824 if (((inode->i_state & (I_FREEING | I_WILL_FREE | I_NEW |
Christoph Hellwig0e11f642018-02-21 07:54:49 -08004825 I_DIRTY_INODE)) == 0) &&
Theodore Ts'oa26f4992015-02-02 00:37:02 -05004826 (inode->i_state & I_DIRTY_TIME)) {
4827 struct ext4_inode_info *ei = EXT4_I(inode);
4828
4829 inode->i_state &= ~(I_DIRTY_TIME | I_DIRTY_TIME_EXPIRED);
4830 spin_unlock(&inode->i_lock);
4831
4832 spin_lock(&ei->i_raw_lock);
4833 EXT4_INODE_SET_XTIME(i_ctime, inode, oi->raw_inode);
4834 EXT4_INODE_SET_XTIME(i_mtime, inode, oi->raw_inode);
4835 EXT4_INODE_SET_XTIME(i_atime, inode, oi->raw_inode);
4836 ext4_inode_csum_set(inode, oi->raw_inode, ei);
4837 spin_unlock(&ei->i_raw_lock);
4838 trace_ext4_other_inode_update_time(inode, oi->orig_ino);
4839 return -1;
4840 }
4841 spin_unlock(&inode->i_lock);
4842 return -1;
4843}
4844
4845/*
4846 * Opportunistically update the other time fields for other inodes in
4847 * the same inode table block.
4848 */
4849static void ext4_update_other_inodes_time(struct super_block *sb,
4850 unsigned long orig_ino, char *buf)
4851{
4852 struct other_inode oi;
4853 unsigned long ino;
4854 int i, inodes_per_block = EXT4_SB(sb)->s_inodes_per_block;
4855 int inode_size = EXT4_INODE_SIZE(sb);
4856
4857 oi.orig_ino = orig_ino;
Theodore Ts'o0f0ff9a2015-07-01 23:37:46 -04004858 /*
4859 * Calculate the first inode in the inode table block. Inode
4860 * numbers are one-based. That is, the first inode in a block
4861 * (assuming 4k blocks and 256 byte inodes) is (n*16 + 1).
4862 */
4863 ino = ((orig_ino - 1) & ~(inodes_per_block - 1)) + 1;
Theodore Ts'oa26f4992015-02-02 00:37:02 -05004864 for (i = 0; i < inodes_per_block; i++, ino++, buf += inode_size) {
4865 if (ino == orig_ino)
4866 continue;
4867 oi.raw_inode = (struct ext4_inode *) buf;
4868 (void) find_inode_nowait(sb, ino, other_inode_match, &oi);
4869 }
4870}
4871
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004872/*
4873 * Post the struct inode info into an on-disk inode location in the
4874 * buffer-cache. This gobbles the caller's reference to the
4875 * buffer_head in the inode location struct.
4876 *
4877 * The caller must have write access to iloc->bh.
4878 */
Mingming Cao617ba132006-10-11 01:20:53 -07004879static int ext4_do_update_inode(handle_t *handle,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004880 struct inode *inode,
Frank Mayhar830156c2009-09-29 10:07:47 -04004881 struct ext4_iloc *iloc)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004882{
Mingming Cao617ba132006-10-11 01:20:53 -07004883 struct ext4_inode *raw_inode = ext4_raw_inode(iloc);
4884 struct ext4_inode_info *ei = EXT4_I(inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004885 struct buffer_head *bh = iloc->bh;
Theodore Ts'o202ee5d2014-04-21 14:37:55 -04004886 struct super_block *sb = inode->i_sb;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004887 int err = 0, rc, block;
Theodore Ts'o202ee5d2014-04-21 14:37:55 -04004888 int need_datasync = 0, set_large_file = 0;
Eric W. Biederman08cefc72012-02-07 15:41:49 -08004889 uid_t i_uid;
4890 gid_t i_gid;
Li Xi040cb372016-01-08 16:01:21 -05004891 projid_t i_projid;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004892
Theodore Ts'o202ee5d2014-04-21 14:37:55 -04004893 spin_lock(&ei->i_raw_lock);
4894
4895 /* For fields not tracked in the in-memory inode,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004896 * initialise them to zero for new inodes. */
Theodore Ts'o19f5fb72010-01-24 14:34:07 -05004897 if (ext4_test_inode_state(inode, EXT4_STATE_NEW))
Mingming Cao617ba132006-10-11 01:20:53 -07004898 memset(raw_inode, 0, EXT4_SB(inode->i_sb)->s_inode_size);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004899
4900 raw_inode->i_mode = cpu_to_le16(inode->i_mode);
Eric W. Biederman08cefc72012-02-07 15:41:49 -08004901 i_uid = i_uid_read(inode);
4902 i_gid = i_gid_read(inode);
Li Xi040cb372016-01-08 16:01:21 -05004903 i_projid = from_kprojid(&init_user_ns, ei->i_projid);
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04004904 if (!(test_opt(inode->i_sb, NO_UID32))) {
Eric W. Biederman08cefc72012-02-07 15:41:49 -08004905 raw_inode->i_uid_low = cpu_to_le16(low_16_bits(i_uid));
4906 raw_inode->i_gid_low = cpu_to_le16(low_16_bits(i_gid));
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004907/*
4908 * Fix up interoperability with old kernels. Otherwise, old inodes get
4909 * re-used with the upper 16 bits of the uid/gid intact
4910 */
Daeho Jeong93e3b4e2016-09-05 22:56:10 -04004911 if (ei->i_dtime && list_empty(&ei->i_orphan)) {
4912 raw_inode->i_uid_high = 0;
4913 raw_inode->i_gid_high = 0;
4914 } else {
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004915 raw_inode->i_uid_high =
Eric W. Biederman08cefc72012-02-07 15:41:49 -08004916 cpu_to_le16(high_16_bits(i_uid));
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004917 raw_inode->i_gid_high =
Eric W. Biederman08cefc72012-02-07 15:41:49 -08004918 cpu_to_le16(high_16_bits(i_gid));
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004919 }
4920 } else {
Eric W. Biederman08cefc72012-02-07 15:41:49 -08004921 raw_inode->i_uid_low = cpu_to_le16(fs_high2lowuid(i_uid));
4922 raw_inode->i_gid_low = cpu_to_le16(fs_high2lowgid(i_gid));
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004923 raw_inode->i_uid_high = 0;
4924 raw_inode->i_gid_high = 0;
4925 }
4926 raw_inode->i_links_count = cpu_to_le16(inode->i_nlink);
Kalpak Shahef7f3832007-07-18 09:15:20 -04004927
4928 EXT4_INODE_SET_XTIME(i_ctime, inode, raw_inode);
4929 EXT4_INODE_SET_XTIME(i_mtime, inode, raw_inode);
4930 EXT4_INODE_SET_XTIME(i_atime, inode, raw_inode);
4931 EXT4_EINODE_SET_XTIME(i_crtime, ei, raw_inode);
4932
Li Xibce92d52014-10-01 22:11:06 -04004933 err = ext4_inode_blocks_set(handle, raw_inode, ei);
4934 if (err) {
Theodore Ts'o202ee5d2014-04-21 14:37:55 -04004935 spin_unlock(&ei->i_raw_lock);
Aneesh Kumar K.V0fc1b452008-01-28 23:58:26 -05004936 goto out_brelse;
Theodore Ts'o202ee5d2014-04-21 14:37:55 -04004937 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004938 raw_inode->i_dtime = cpu_to_le32(ei->i_dtime);
Theodore Ts'o353eb832011-01-10 12:18:25 -05004939 raw_inode->i_flags = cpu_to_le32(ei->i_flags & 0xFFFFFFFF);
Theodore Ts'oed3654e2014-03-24 14:09:06 -04004940 if (likely(!test_opt2(inode->i_sb, HURD_COMPAT)))
Badari Pulavartya1ddeb72006-10-11 01:21:09 -07004941 raw_inode->i_file_acl_high =
4942 cpu_to_le16(ei->i_file_acl >> 32);
Aneesh Kumar K.V7973c0c2008-01-28 23:58:27 -05004943 raw_inode->i_file_acl_lo = cpu_to_le32(ei->i_file_acl);
Artem Blagodarenkoe08ac992017-06-21 21:09:57 -04004944 if (ei->i_disksize != ext4_isize(inode->i_sb, raw_inode)) {
Jan Karab71fc072012-09-26 21:52:20 -04004945 ext4_isize_set(raw_inode, ei->i_disksize);
4946 need_datasync = 1;
4947 }
Aneesh Kumar K.Va48380f2008-01-28 23:58:27 -05004948 if (ei->i_disksize > 0x7fffffffULL) {
Darrick J. Wonge2b911c2015-10-17 16:18:43 -04004949 if (!ext4_has_feature_large_file(sb) ||
Aneesh Kumar K.Va48380f2008-01-28 23:58:27 -05004950 EXT4_SB(sb)->s_es->s_rev_level ==
Theodore Ts'o202ee5d2014-04-21 14:37:55 -04004951 cpu_to_le32(EXT4_GOOD_OLD_REV))
4952 set_large_file = 1;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004953 }
4954 raw_inode->i_generation = cpu_to_le32(inode->i_generation);
4955 if (S_ISCHR(inode->i_mode) || S_ISBLK(inode->i_mode)) {
4956 if (old_valid_dev(inode->i_rdev)) {
4957 raw_inode->i_block[0] =
4958 cpu_to_le32(old_encode_dev(inode->i_rdev));
4959 raw_inode->i_block[1] = 0;
4960 } else {
4961 raw_inode->i_block[0] = 0;
4962 raw_inode->i_block[1] =
4963 cpu_to_le32(new_encode_dev(inode->i_rdev));
4964 raw_inode->i_block[2] = 0;
4965 }
Tao Maf19d5872012-12-10 14:05:51 -05004966 } else if (!ext4_has_inline_data(inode)) {
Theodore Ts'ode9a55b2009-06-14 17:45:34 -04004967 for (block = 0; block < EXT4_N_BLOCKS; block++)
4968 raw_inode->i_block[block] = ei->i_data[block];
Tao Maf19d5872012-12-10 14:05:51 -05004969 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004970
Theodore Ts'oed3654e2014-03-24 14:09:06 -04004971 if (likely(!test_opt2(inode->i_sb, HURD_COMPAT))) {
Eryu Guane254d1a2018-05-10 11:55:31 -04004972 u64 ivers = ext4_inode_peek_iversion(inode);
Jeff Laytonee73f9a2018-01-09 08:21:39 -05004973
4974 raw_inode->i_disk_version = cpu_to_le32(ivers);
Theodore Ts'oc4f65702014-03-20 00:32:57 -04004975 if (ei->i_extra_isize) {
4976 if (EXT4_FITS_IN_INODE(raw_inode, ei, i_version_hi))
4977 raw_inode->i_version_hi =
Jeff Laytonee73f9a2018-01-09 08:21:39 -05004978 cpu_to_le32(ivers >> 32);
Theodore Ts'oc4f65702014-03-20 00:32:57 -04004979 raw_inode->i_extra_isize =
4980 cpu_to_le16(ei->i_extra_isize);
4981 }
Jean Noel Cordenner25ec56b2008-01-28 23:58:27 -05004982 }
Li Xi040cb372016-01-08 16:01:21 -05004983
Kaho Ng0b7b7772016-09-05 23:11:58 -04004984 BUG_ON(!ext4_has_feature_project(inode->i_sb) &&
Li Xi040cb372016-01-08 16:01:21 -05004985 i_projid != EXT4_DEF_PROJID);
4986
4987 if (EXT4_INODE_SIZE(inode->i_sb) > EXT4_GOOD_OLD_INODE_SIZE &&
4988 EXT4_FITS_IN_INODE(raw_inode, ei, i_projid))
4989 raw_inode->i_projid = cpu_to_le32(i_projid);
4990
Darrick J. Wong814525f2012-04-29 18:31:10 -04004991 ext4_inode_csum_set(inode, raw_inode, ei);
Theodore Ts'o202ee5d2014-04-21 14:37:55 -04004992 spin_unlock(&ei->i_raw_lock);
Linus Torvalds1751e8a2017-11-27 13:05:09 -08004993 if (inode->i_sb->s_flags & SB_LAZYTIME)
Theodore Ts'oa26f4992015-02-02 00:37:02 -05004994 ext4_update_other_inodes_time(inode->i_sb, inode->i_ino,
4995 bh->b_data);
Theodore Ts'o202ee5d2014-04-21 14:37:55 -04004996
Frank Mayhar830156c2009-09-29 10:07:47 -04004997 BUFFER_TRACE(bh, "call ext4_handle_dirty_metadata");
Curt Wohlgemuth73b50c12010-02-16 15:06:29 -05004998 rc = ext4_handle_dirty_metadata(handle, NULL, bh);
Frank Mayhar830156c2009-09-29 10:07:47 -04004999 if (!err)
5000 err = rc;
Theodore Ts'o19f5fb72010-01-24 14:34:07 -05005001 ext4_clear_inode_state(inode, EXT4_STATE_NEW);
Theodore Ts'o202ee5d2014-04-21 14:37:55 -04005002 if (set_large_file) {
liang xie5d601252014-05-12 22:06:43 -04005003 BUFFER_TRACE(EXT4_SB(sb)->s_sbh, "get write access");
Theodore Ts'o202ee5d2014-04-21 14:37:55 -04005004 err = ext4_journal_get_write_access(handle, EXT4_SB(sb)->s_sbh);
5005 if (err)
5006 goto out_brelse;
Darrick J. Wonge2b911c2015-10-17 16:18:43 -04005007 ext4_set_feature_large_file(sb);
Theodore Ts'o202ee5d2014-04-21 14:37:55 -04005008 ext4_handle_sync(handle);
5009 err = ext4_handle_dirty_super(handle, sb);
5010 }
Jan Karab71fc072012-09-26 21:52:20 -04005011 ext4_update_inode_fsync_trans(handle, inode, need_datasync);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005012out_brelse:
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04005013 brelse(bh);
Mingming Cao617ba132006-10-11 01:20:53 -07005014 ext4_std_error(inode->i_sb, err);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005015 return err;
5016}
5017
5018/*
Mingming Cao617ba132006-10-11 01:20:53 -07005019 * ext4_write_inode()
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005020 *
5021 * We are called from a few places:
5022 *
Theodore Ts'o87f7e412014-04-08 11:38:28 -04005023 * - Within generic_file_aio_write() -> generic_write_sync() for O_SYNC files.
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005024 * Here, there will be no transaction running. We wait for any running
Anatol Pomozov4907cb72012-09-01 10:31:09 -07005025 * transaction to commit.
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005026 *
Theodore Ts'o87f7e412014-04-08 11:38:28 -04005027 * - Within flush work (sys_sync(), kupdate and such).
5028 * We wait on commit, if told to.
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005029 *
Theodore Ts'o87f7e412014-04-08 11:38:28 -04005030 * - Within iput_final() -> write_inode_now()
5031 * We wait on commit, if told to.
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005032 *
5033 * In all cases it is actually safe for us to return without doing anything,
5034 * because the inode has been copied into a raw inode buffer in
Theodore Ts'o87f7e412014-04-08 11:38:28 -04005035 * ext4_mark_inode_dirty(). This is a correctness thing for WB_SYNC_ALL
5036 * writeback.
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005037 *
5038 * Note that we are absolutely dependent upon all inode dirtiers doing the
5039 * right thing: they *must* call mark_inode_dirty() after dirtying info in
5040 * which we are interested.
5041 *
5042 * It would be a bug for them to not do this. The code:
5043 *
5044 * mark_inode_dirty(inode)
5045 * stuff();
5046 * inode->i_size = expr;
5047 *
Theodore Ts'o87f7e412014-04-08 11:38:28 -04005048 * is in error because write_inode() could occur while `stuff()' is running,
5049 * and the new i_size will be lost. Plus the inode will no longer be on the
5050 * superblock's dirty inode list.
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005051 */
Christoph Hellwiga9185b42010-03-05 09:21:37 +01005052int ext4_write_inode(struct inode *inode, struct writeback_control *wbc)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005053{
Frank Mayhar91ac6f42009-09-09 22:33:47 -04005054 int err;
5055
Theodore Ts'o18f2c4f2018-12-19 14:36:58 -05005056 if (WARN_ON_ONCE(current->flags & PF_MEMALLOC) ||
5057 sb_rdonly(inode->i_sb))
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005058 return 0;
5059
Theodore Ts'o18f2c4f2018-12-19 14:36:58 -05005060 if (unlikely(ext4_forced_shutdown(EXT4_SB(inode->i_sb))))
5061 return -EIO;
5062
Frank Mayhar91ac6f42009-09-09 22:33:47 -04005063 if (EXT4_SB(inode->i_sb)->s_journal) {
5064 if (ext4_journal_current_handle()) {
5065 jbd_debug(1, "called recursively, non-PF_MEMALLOC!\n");
5066 dump_stack();
5067 return -EIO;
5068 }
5069
Jan Kara10542c22014-03-04 10:50:50 -05005070 /*
5071 * No need to force transaction in WB_SYNC_NONE mode. Also
5072 * ext4_sync_fs() will force the commit after everything is
5073 * written.
5074 */
5075 if (wbc->sync_mode != WB_SYNC_ALL || wbc->for_sync)
Frank Mayhar91ac6f42009-09-09 22:33:47 -04005076 return 0;
5077
Theodore Ts'o18f2c4f2018-12-19 14:36:58 -05005078 err = jbd2_complete_transaction(EXT4_SB(inode->i_sb)->s_journal,
5079 EXT4_I(inode)->i_sync_tid);
Frank Mayhar91ac6f42009-09-09 22:33:47 -04005080 } else {
5081 struct ext4_iloc iloc;
5082
Curt Wohlgemuth8b472d72010-04-03 16:45:06 -04005083 err = __ext4_get_inode_loc(inode, &iloc, 0);
Frank Mayhar91ac6f42009-09-09 22:33:47 -04005084 if (err)
5085 return err;
Jan Kara10542c22014-03-04 10:50:50 -05005086 /*
5087 * sync(2) will flush the whole buffer cache. No need to do
5088 * it here separately for each inode.
5089 */
5090 if (wbc->sync_mode == WB_SYNC_ALL && !wbc->for_sync)
Frank Mayhar830156c2009-09-29 10:07:47 -04005091 sync_dirty_buffer(iloc.bh);
5092 if (buffer_req(iloc.bh) && !buffer_uptodate(iloc.bh)) {
Theodore Ts'oc398eda2010-07-27 11:56:40 -04005093 EXT4_ERROR_INODE_BLOCK(inode, iloc.bh->b_blocknr,
5094 "IO error syncing inode");
Frank Mayhar830156c2009-09-29 10:07:47 -04005095 err = -EIO;
5096 }
Curt Wohlgemuthfd2dd9f2010-04-03 17:44:16 -04005097 brelse(iloc.bh);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005098 }
Frank Mayhar91ac6f42009-09-09 22:33:47 -04005099 return err;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005100}
5101
5102/*
Jan Kara53e87262012-12-25 13:29:52 -05005103 * In data=journal mode ext4_journalled_invalidatepage() may fail to invalidate
5104 * buffers that are attached to a page stradding i_size and are undergoing
5105 * commit. In that case we have to wait for commit to finish and try again.
5106 */
5107static void ext4_wait_for_tail_page_commit(struct inode *inode)
5108{
5109 struct page *page;
5110 unsigned offset;
5111 journal_t *journal = EXT4_SB(inode->i_sb)->s_journal;
5112 tid_t commit_tid = 0;
5113 int ret;
5114
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005115 offset = inode->i_size & (PAGE_SIZE - 1);
Jan Kara53e87262012-12-25 13:29:52 -05005116 /*
yangerkun565333a2019-09-19 14:35:08 +08005117 * If the page is fully truncated, we don't need to wait for any commit
5118 * (and we even should not as __ext4_journalled_invalidatepage() may
5119 * strip all buffers from the page but keep the page dirty which can then
5120 * confuse e.g. concurrent ext4_writepage() seeing dirty page without
5121 * buffers). Also we don't need to wait for any commit if all buffers in
5122 * the page remain valid. This is most beneficial for the common case of
5123 * blocksize == PAGESIZE.
Jan Kara53e87262012-12-25 13:29:52 -05005124 */
yangerkun565333a2019-09-19 14:35:08 +08005125 if (!offset || offset > (PAGE_SIZE - i_blocksize(inode)))
Jan Kara53e87262012-12-25 13:29:52 -05005126 return;
5127 while (1) {
5128 page = find_lock_page(inode->i_mapping,
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005129 inode->i_size >> PAGE_SHIFT);
Jan Kara53e87262012-12-25 13:29:52 -05005130 if (!page)
5131 return;
Lukas Czernerca99fdd2013-05-21 23:25:01 -04005132 ret = __ext4_journalled_invalidatepage(page, offset,
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005133 PAGE_SIZE - offset);
Jan Kara53e87262012-12-25 13:29:52 -05005134 unlock_page(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005135 put_page(page);
Jan Kara53e87262012-12-25 13:29:52 -05005136 if (ret != -EBUSY)
5137 return;
5138 commit_tid = 0;
5139 read_lock(&journal->j_state_lock);
5140 if (journal->j_committing_transaction)
5141 commit_tid = journal->j_committing_transaction->t_tid;
5142 read_unlock(&journal->j_state_lock);
5143 if (commit_tid)
5144 jbd2_log_wait_commit(journal, commit_tid);
5145 }
5146}
5147
5148/*
Mingming Cao617ba132006-10-11 01:20:53 -07005149 * ext4_setattr()
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005150 *
5151 * Called from notify_change.
5152 *
5153 * We want to trap VFS attempts to truncate the file as soon as
5154 * possible. In particular, we want to make sure that when the VFS
5155 * shrinks i_size, we put the inode on the orphan list and modify
5156 * i_disksize immediately, so that during the subsequent flushing of
5157 * dirty pages and freeing of disk blocks, we can guarantee that any
5158 * commit will leave the blocks being flushed in an unused state on
5159 * disk. (On recovery, the inode will get truncated and the blocks will
5160 * be freed, so we have a strong guarantee that no future commit will
5161 * leave these blocks visible to the user.)
5162 *
Jan Kara678aaf42008-07-11 19:27:31 -04005163 * Another thing we have to assure is that if we are in ordered mode
5164 * and inode is still attached to the committing transaction, we must
5165 * we start writeout of all the dirty pages which are being truncated.
5166 * This way we are sure that all the data written in the previous
5167 * transaction are already on disk (truncate waits for pages under
5168 * writeback).
5169 *
5170 * Called with inode->i_mutex down.
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005171 */
Mingming Cao617ba132006-10-11 01:20:53 -07005172int ext4_setattr(struct dentry *dentry, struct iattr *attr)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005173{
David Howells2b0143b2015-03-17 22:25:59 +00005174 struct inode *inode = d_inode(dentry);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005175 int error, rc = 0;
Dmitry Monakhov3d287de2010-10-27 22:08:46 -04005176 int orphan = 0;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005177 const unsigned int ia_valid = attr->ia_valid;
5178
Theodore Ts'o0db1ff22017-02-05 01:28:48 -05005179 if (unlikely(ext4_forced_shutdown(EXT4_SB(inode->i_sb))))
5180 return -EIO;
5181
Theodore Ts'o02b016c2019-06-09 22:04:33 -04005182 if (unlikely(IS_IMMUTABLE(inode)))
5183 return -EPERM;
5184
5185 if (unlikely(IS_APPEND(inode) &&
5186 (ia_valid & (ATTR_MODE | ATTR_UID |
5187 ATTR_GID | ATTR_TIMES_SET))))
5188 return -EPERM;
5189
Jan Kara31051c82016-05-26 16:55:18 +02005190 error = setattr_prepare(dentry, attr);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005191 if (error)
5192 return error;
5193
Eric Biggers3ce2b8d2017-10-18 20:21:58 -04005194 error = fscrypt_prepare_setattr(dentry, attr);
5195 if (error)
5196 return error;
5197
Eric Biggersc93d8f82019-07-22 09:26:24 -07005198 error = fsverity_prepare_setattr(dentry, attr);
5199 if (error)
5200 return error;
5201
Jan Karaa7cdade2015-06-29 16:22:54 +02005202 if (is_quota_modification(inode, attr)) {
5203 error = dquot_initialize(inode);
5204 if (error)
5205 return error;
5206 }
Eric W. Biederman08cefc72012-02-07 15:41:49 -08005207 if ((ia_valid & ATTR_UID && !uid_eq(attr->ia_uid, inode->i_uid)) ||
5208 (ia_valid & ATTR_GID && !gid_eq(attr->ia_gid, inode->i_gid))) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005209 handle_t *handle;
5210
5211 /* (user+group)*(old+new) structure, inode write (sb,
5212 * inode block, ? - but truncate inode update has it) */
Theodore Ts'o9924a922013-02-08 21:59:22 -05005213 handle = ext4_journal_start(inode, EXT4_HT_QUOTA,
5214 (EXT4_MAXQUOTAS_INIT_BLOCKS(inode->i_sb) +
5215 EXT4_MAXQUOTAS_DEL_BLOCKS(inode->i_sb)) + 3);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005216 if (IS_ERR(handle)) {
5217 error = PTR_ERR(handle);
5218 goto err_out;
5219 }
Tahsin Erdogan7a9ca532017-06-22 11:46:48 -04005220
5221 /* dquot_transfer() calls back ext4_get_inode_usage() which
5222 * counts xattr inode references.
5223 */
5224 down_read(&EXT4_I(inode)->xattr_sem);
Christoph Hellwigb43fa822010-03-03 09:05:03 -05005225 error = dquot_transfer(inode, attr);
Tahsin Erdogan7a9ca532017-06-22 11:46:48 -04005226 up_read(&EXT4_I(inode)->xattr_sem);
5227
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005228 if (error) {
Mingming Cao617ba132006-10-11 01:20:53 -07005229 ext4_journal_stop(handle);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005230 return error;
5231 }
5232 /* Update corresponding info in inode so that everything is in
5233 * one transaction */
5234 if (attr->ia_valid & ATTR_UID)
5235 inode->i_uid = attr->ia_uid;
5236 if (attr->ia_valid & ATTR_GID)
5237 inode->i_gid = attr->ia_gid;
Mingming Cao617ba132006-10-11 01:20:53 -07005238 error = ext4_mark_inode_dirty(handle, inode);
5239 ext4_journal_stop(handle);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005240 }
5241
Josef Bacik3da40c72015-06-22 00:31:26 -04005242 if (attr->ia_valid & ATTR_SIZE) {
Jan Kara52083862013-08-17 10:07:17 -04005243 handle_t *handle;
Josef Bacik3da40c72015-06-22 00:31:26 -04005244 loff_t oldsize = inode->i_size;
Jan Karab9c1c262019-05-30 11:56:23 -04005245 int shrink = (attr->ia_size < inode->i_size);
Christoph Hellwig562c72aa52011-06-24 14:29:45 -04005246
Dmitry Monakhov12e9b892010-05-16 22:00:00 -04005247 if (!(ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS))) {
Eric Sandeene2b46572008-01-28 23:58:27 -05005248 struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb);
5249
Theodore Ts'o0c095c72010-07-27 11:56:06 -04005250 if (attr->ia_size > sbi->s_bitmap_maxbytes)
5251 return -EFBIG;
Eric Sandeene2b46572008-01-28 23:58:27 -05005252 }
Josef Bacik3da40c72015-06-22 00:31:26 -04005253 if (!S_ISREG(inode->i_mode))
5254 return -EINVAL;
Christoph Hellwigdff6efc2013-11-19 07:17:07 -08005255
5256 if (IS_I_VERSION(inode) && attr->ia_size != inode->i_size)
5257 inode_inc_iversion(inode);
5258
Jan Karab9c1c262019-05-30 11:56:23 -04005259 if (shrink) {
5260 if (ext4_should_order_data(inode)) {
5261 error = ext4_begin_ordered_truncate(inode,
Jan Kara678aaf42008-07-11 19:27:31 -04005262 attr->ia_size);
Jan Karab9c1c262019-05-30 11:56:23 -04005263 if (error)
5264 goto err_out;
5265 }
5266 /*
5267 * Blocks are going to be removed from the inode. Wait
5268 * for dio in flight.
5269 */
5270 inode_dio_wait(inode);
Josef Bacik3da40c72015-06-22 00:31:26 -04005271 }
Jan Karab9c1c262019-05-30 11:56:23 -04005272
5273 down_write(&EXT4_I(inode)->i_mmap_sem);
5274
5275 rc = ext4_break_layouts(inode);
5276 if (rc) {
5277 up_write(&EXT4_I(inode)->i_mmap_sem);
5278 return rc;
5279 }
5280
Josef Bacik3da40c72015-06-22 00:31:26 -04005281 if (attr->ia_size != inode->i_size) {
Jan Kara52083862013-08-17 10:07:17 -04005282 handle = ext4_journal_start(inode, EXT4_HT_INODE, 3);
5283 if (IS_ERR(handle)) {
5284 error = PTR_ERR(handle);
Jan Karab9c1c262019-05-30 11:56:23 -04005285 goto out_mmap_sem;
Jan Kara52083862013-08-17 10:07:17 -04005286 }
Josef Bacik3da40c72015-06-22 00:31:26 -04005287 if (ext4_handle_valid(handle) && shrink) {
Jan Kara52083862013-08-17 10:07:17 -04005288 error = ext4_orphan_add(handle, inode);
5289 orphan = 1;
5290 }
Eryu Guan911af572015-07-28 15:08:41 -04005291 /*
5292 * Update c/mtime on truncate up, ext4_truncate() will
5293 * update c/mtime in shrink case below
5294 */
5295 if (!shrink) {
Deepa Dinamanieeca7ea2016-11-14 21:40:10 -05005296 inode->i_mtime = current_time(inode);
Eryu Guan911af572015-07-28 15:08:41 -04005297 inode->i_ctime = inode->i_mtime;
5298 }
Jan Kara90e775b2013-08-17 10:09:31 -04005299 down_write(&EXT4_I(inode)->i_data_sem);
Jan Kara52083862013-08-17 10:07:17 -04005300 EXT4_I(inode)->i_disksize = attr->ia_size;
5301 rc = ext4_mark_inode_dirty(handle, inode);
5302 if (!error)
5303 error = rc;
Jan Kara90e775b2013-08-17 10:09:31 -04005304 /*
5305 * We have to update i_size under i_data_sem together
5306 * with i_disksize to avoid races with writeback code
5307 * running ext4_wb_update_i_disksize().
5308 */
5309 if (!error)
5310 i_size_write(inode, attr->ia_size);
5311 up_write(&EXT4_I(inode)->i_data_sem);
Jan Kara52083862013-08-17 10:07:17 -04005312 ext4_journal_stop(handle);
Jan Karab9c1c262019-05-30 11:56:23 -04005313 if (error)
5314 goto out_mmap_sem;
5315 if (!shrink) {
5316 pagecache_isize_extended(inode, oldsize,
5317 inode->i_size);
5318 } else if (ext4_should_journal_data(inode)) {
5319 ext4_wait_for_tail_page_commit(inode);
Jan Kara678aaf42008-07-11 19:27:31 -04005320 }
Jan Karad6320cb2014-10-01 21:49:46 -04005321 }
Ross Zwisler430657b2018-07-29 17:00:22 -04005322
Jan Kara52083862013-08-17 10:07:17 -04005323 /*
5324 * Truncate pagecache after we've waited for commit
5325 * in data=journal mode to make pages freeable.
5326 */
Ross Zwisler923ae0f2015-02-16 15:59:38 -08005327 truncate_pagecache(inode, inode->i_size);
Jan Karab9c1c262019-05-30 11:56:23 -04005328 /*
5329 * Call ext4_truncate() even if i_size didn't change to
5330 * truncate possible preallocated blocks.
5331 */
5332 if (attr->ia_size <= oldsize) {
Theodore Ts'o2c98eb52016-11-13 22:02:26 -05005333 rc = ext4_truncate(inode);
5334 if (rc)
5335 error = rc;
5336 }
Jan Karab9c1c262019-05-30 11:56:23 -04005337out_mmap_sem:
Jan Karaea3d7202015-12-07 14:28:03 -05005338 up_write(&EXT4_I(inode)->i_mmap_sem);
Theodore Ts'o072bd7e2011-05-23 15:13:02 -04005339 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005340
Theodore Ts'o2c98eb52016-11-13 22:02:26 -05005341 if (!error) {
Christoph Hellwig10257742010-06-04 11:30:02 +02005342 setattr_copy(inode, attr);
5343 mark_inode_dirty(inode);
5344 }
5345
5346 /*
5347 * If the call to ext4_truncate failed to get a transaction handle at
5348 * all, we need to clean up the in-core orphan list manually.
5349 */
Dmitry Monakhov3d287de2010-10-27 22:08:46 -04005350 if (orphan && inode->i_nlink)
Mingming Cao617ba132006-10-11 01:20:53 -07005351 ext4_orphan_del(NULL, inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005352
Theodore Ts'o2c98eb52016-11-13 22:02:26 -05005353 if (!error && (ia_valid & ATTR_MODE))
Christoph Hellwig64e178a2013-12-20 05:16:44 -08005354 rc = posix_acl_chmod(inode, inode->i_mode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005355
5356err_out:
Mingming Cao617ba132006-10-11 01:20:53 -07005357 ext4_std_error(inode->i_sb, error);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005358 if (!error)
5359 error = rc;
5360 return error;
5361}
5362
David Howellsa528d352017-01-31 16:46:22 +00005363int ext4_getattr(const struct path *path, struct kstat *stat,
5364 u32 request_mask, unsigned int query_flags)
Mingming Cao3e3398a2008-07-11 19:27:31 -04005365{
David Howells99652ea2017-03-31 18:31:56 +01005366 struct inode *inode = d_inode(path->dentry);
5367 struct ext4_inode *raw_inode;
5368 struct ext4_inode_info *ei = EXT4_I(inode);
5369 unsigned int flags;
Mingming Cao3e3398a2008-07-11 19:27:31 -04005370
David Howells99652ea2017-03-31 18:31:56 +01005371 if (EXT4_FITS_IN_INODE(raw_inode, ei, i_crtime)) {
5372 stat->result_mask |= STATX_BTIME;
5373 stat->btime.tv_sec = ei->i_crtime.tv_sec;
5374 stat->btime.tv_nsec = ei->i_crtime.tv_nsec;
5375 }
5376
5377 flags = ei->i_flags & EXT4_FL_USER_VISIBLE;
5378 if (flags & EXT4_APPEND_FL)
5379 stat->attributes |= STATX_ATTR_APPEND;
5380 if (flags & EXT4_COMPR_FL)
5381 stat->attributes |= STATX_ATTR_COMPRESSED;
5382 if (flags & EXT4_ENCRYPT_FL)
5383 stat->attributes |= STATX_ATTR_ENCRYPTED;
5384 if (flags & EXT4_IMMUTABLE_FL)
5385 stat->attributes |= STATX_ATTR_IMMUTABLE;
5386 if (flags & EXT4_NODUMP_FL)
5387 stat->attributes |= STATX_ATTR_NODUMP;
5388
David Howells3209f682017-03-31 18:32:17 +01005389 stat->attributes_mask |= (STATX_ATTR_APPEND |
5390 STATX_ATTR_COMPRESSED |
5391 STATX_ATTR_ENCRYPTED |
5392 STATX_ATTR_IMMUTABLE |
5393 STATX_ATTR_NODUMP);
5394
Mingming Cao3e3398a2008-07-11 19:27:31 -04005395 generic_fillattr(inode, stat);
David Howells99652ea2017-03-31 18:31:56 +01005396 return 0;
5397}
5398
5399int ext4_file_getattr(const struct path *path, struct kstat *stat,
5400 u32 request_mask, unsigned int query_flags)
5401{
5402 struct inode *inode = d_inode(path->dentry);
5403 u64 delalloc_blocks;
5404
5405 ext4_getattr(path, stat, request_mask, query_flags);
Mingming Cao3e3398a2008-07-11 19:27:31 -04005406
5407 /*
Andreas Dilger9206c562013-11-11 22:38:12 -05005408 * If there is inline data in the inode, the inode will normally not
5409 * have data blocks allocated (it may have an external xattr block).
5410 * Report at least one sector for such files, so tools like tar, rsync,
Theodore Ts'od67d64f2017-03-25 17:33:31 -04005411 * others don't incorrectly think the file is completely sparse.
Andreas Dilger9206c562013-11-11 22:38:12 -05005412 */
5413 if (unlikely(ext4_has_inline_data(inode)))
5414 stat->blocks += (stat->size + 511) >> 9;
5415
5416 /*
Mingming Cao3e3398a2008-07-11 19:27:31 -04005417 * We can't update i_blocks if the block allocation is delayed
5418 * otherwise in the case of system crash before the real block
5419 * allocation is done, we will have i_blocks inconsistent with
5420 * on-disk file blocks.
5421 * We always keep i_blocks updated together with real
5422 * allocation. But to not confuse with user, stat
5423 * will return the blocks that include the delayed allocation
5424 * blocks for this file.
5425 */
Tao Ma96607552012-05-31 22:54:16 -04005426 delalloc_blocks = EXT4_C2B(EXT4_SB(inode->i_sb),
Andreas Dilger9206c562013-11-11 22:38:12 -05005427 EXT4_I(inode)->i_reserved_data_blocks);
5428 stat->blocks += delalloc_blocks << (inode->i_sb->s_blocksize_bits - 9);
Mingming Cao3e3398a2008-07-11 19:27:31 -04005429 return 0;
5430}
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005431
Jan Karafffb2732013-06-04 13:01:11 -04005432static int ext4_index_trans_blocks(struct inode *inode, int lblocks,
5433 int pextents)
Mingming Caoa02908f2008-08-19 22:16:07 -04005434{
Dmitry Monakhov12e9b892010-05-16 22:00:00 -04005435 if (!(ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS)))
Jan Karafffb2732013-06-04 13:01:11 -04005436 return ext4_ind_trans_blocks(inode, lblocks);
5437 return ext4_ext_index_trans_blocks(inode, pextents);
Mingming Caoa02908f2008-08-19 22:16:07 -04005438}
Theodore Ts'oac51d832008-11-06 16:49:36 -05005439
Mingming Caoa02908f2008-08-19 22:16:07 -04005440/*
5441 * Account for index blocks, block groups bitmaps and block group
5442 * descriptor blocks if modify datablocks and index blocks
5443 * worse case, the indexs blocks spread over different block groups
5444 *
5445 * If datablocks are discontiguous, they are possible to spread over
Anatol Pomozov4907cb72012-09-01 10:31:09 -07005446 * different block groups too. If they are contiguous, with flexbg,
Mingming Caoa02908f2008-08-19 22:16:07 -04005447 * they could still across block group boundary.
5448 *
5449 * Also account for superblock, inode, quota and xattr blocks
5450 */
Tahsin Erdogandec214d2017-06-22 11:44:55 -04005451static int ext4_meta_trans_blocks(struct inode *inode, int lblocks,
Jan Karafffb2732013-06-04 13:01:11 -04005452 int pextents)
Mingming Caoa02908f2008-08-19 22:16:07 -04005453{
Theodore Ts'o8df96752009-05-01 08:50:38 -04005454 ext4_group_t groups, ngroups = ext4_get_groups_count(inode->i_sb);
5455 int gdpblocks;
Mingming Caoa02908f2008-08-19 22:16:07 -04005456 int idxblocks;
5457 int ret = 0;
5458
5459 /*
Jan Karafffb2732013-06-04 13:01:11 -04005460 * How many index blocks need to touch to map @lblocks logical blocks
5461 * to @pextents physical extents?
Mingming Caoa02908f2008-08-19 22:16:07 -04005462 */
Jan Karafffb2732013-06-04 13:01:11 -04005463 idxblocks = ext4_index_trans_blocks(inode, lblocks, pextents);
Mingming Caoa02908f2008-08-19 22:16:07 -04005464
5465 ret = idxblocks;
5466
5467 /*
5468 * Now let's see how many group bitmaps and group descriptors need
5469 * to account
5470 */
Jan Karafffb2732013-06-04 13:01:11 -04005471 groups = idxblocks + pextents;
Mingming Caoa02908f2008-08-19 22:16:07 -04005472 gdpblocks = groups;
Theodore Ts'o8df96752009-05-01 08:50:38 -04005473 if (groups > ngroups)
5474 groups = ngroups;
Mingming Caoa02908f2008-08-19 22:16:07 -04005475 if (groups > EXT4_SB(inode->i_sb)->s_gdb_count)
5476 gdpblocks = EXT4_SB(inode->i_sb)->s_gdb_count;
5477
5478 /* bitmaps and block group descriptor blocks */
5479 ret += groups + gdpblocks;
5480
5481 /* Blocks for super block, inode, quota and xattr blocks */
5482 ret += EXT4_META_TRANS_BLOCKS(inode->i_sb);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005483
5484 return ret;
5485}
5486
5487/*
Lucas De Marchi25985ed2011-03-30 22:57:33 -03005488 * Calculate the total number of credits to reserve to fit
Mingming Caof3bd1f32008-08-19 22:16:03 -04005489 * the modification of a single pages into a single transaction,
5490 * which may include multiple chunks of block allocations.
Mingming Caoa02908f2008-08-19 22:16:07 -04005491 *
Mingming Cao525f4ed2008-08-19 22:15:58 -04005492 * This could be called via ext4_write_begin()
Mingming Caoa02908f2008-08-19 22:16:07 -04005493 *
Mingming Cao525f4ed2008-08-19 22:15:58 -04005494 * We need to consider the worse case, when
Mingming Caoa02908f2008-08-19 22:16:07 -04005495 * one new block per extent.
Mingming Caoa02908f2008-08-19 22:16:07 -04005496 */
5497int ext4_writepage_trans_blocks(struct inode *inode)
5498{
5499 int bpp = ext4_journal_blocks_per_page(inode);
5500 int ret;
5501
Jan Karafffb2732013-06-04 13:01:11 -04005502 ret = ext4_meta_trans_blocks(inode, bpp, bpp);
Mingming Caoa02908f2008-08-19 22:16:07 -04005503
5504 /* Account for data blocks for journalled mode */
5505 if (ext4_should_journal_data(inode))
5506 ret += bpp;
5507 return ret;
5508}
Mingming Caof3bd1f32008-08-19 22:16:03 -04005509
5510/*
5511 * Calculate the journal credits for a chunk of data modification.
5512 *
5513 * This is called from DIO, fallocate or whoever calling
Eric Sandeen79e83032010-07-27 11:56:07 -04005514 * ext4_map_blocks() to map/allocate a chunk of contiguous disk blocks.
Mingming Caof3bd1f32008-08-19 22:16:03 -04005515 *
5516 * journal buffers for data blocks are not included here, as DIO
5517 * and fallocate do no need to journal data buffers.
5518 */
5519int ext4_chunk_trans_blocks(struct inode *inode, int nrblocks)
5520{
5521 return ext4_meta_trans_blocks(inode, nrblocks, 1);
5522}
5523
Mingming Caoa02908f2008-08-19 22:16:07 -04005524/*
Mingming Cao617ba132006-10-11 01:20:53 -07005525 * The caller must have previously called ext4_reserve_inode_write().
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005526 * Give this, we know that the caller already has write access to iloc->bh.
5527 */
Mingming Cao617ba132006-10-11 01:20:53 -07005528int ext4_mark_iloc_dirty(handle_t *handle,
Theodore Ts'ode9a55b2009-06-14 17:45:34 -04005529 struct inode *inode, struct ext4_iloc *iloc)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005530{
5531 int err = 0;
5532
Vasily Averina6758302018-11-06 16:49:50 -05005533 if (unlikely(ext4_forced_shutdown(EXT4_SB(inode->i_sb)))) {
5534 put_bh(iloc->bh);
Theodore Ts'o0db1ff22017-02-05 01:28:48 -05005535 return -EIO;
Vasily Averina6758302018-11-06 16:49:50 -05005536 }
Theodore Ts'oc64db502012-03-02 12:23:11 -05005537 if (IS_I_VERSION(inode))
Jean Noel Cordenner25ec56b2008-01-28 23:58:27 -05005538 inode_inc_iversion(inode);
5539
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005540 /* the do_update_inode consumes one bh->b_count */
5541 get_bh(iloc->bh);
5542
Mingming Caodab291a2006-10-11 01:21:01 -07005543 /* ext4_do_update_inode() does jbd2_journal_dirty_metadata */
Frank Mayhar830156c2009-09-29 10:07:47 -04005544 err = ext4_do_update_inode(handle, inode, iloc);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005545 put_bh(iloc->bh);
5546 return err;
5547}
5548
5549/*
5550 * On success, We end up with an outstanding reference count against
5551 * iloc->bh. This _must_ be cleaned up later.
5552 */
5553
5554int
Mingming Cao617ba132006-10-11 01:20:53 -07005555ext4_reserve_inode_write(handle_t *handle, struct inode *inode,
5556 struct ext4_iloc *iloc)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005557{
Frank Mayhar03901312009-01-07 00:06:22 -05005558 int err;
5559
Theodore Ts'o0db1ff22017-02-05 01:28:48 -05005560 if (unlikely(ext4_forced_shutdown(EXT4_SB(inode->i_sb))))
5561 return -EIO;
5562
Frank Mayhar03901312009-01-07 00:06:22 -05005563 err = ext4_get_inode_loc(inode, iloc);
5564 if (!err) {
5565 BUFFER_TRACE(iloc->bh, "get_write_access");
5566 err = ext4_journal_get_write_access(handle, iloc->bh);
5567 if (err) {
5568 brelse(iloc->bh);
5569 iloc->bh = NULL;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005570 }
5571 }
Mingming Cao617ba132006-10-11 01:20:53 -07005572 ext4_std_error(inode->i_sb, err);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005573 return err;
5574}
5575
Miao Xiec03b45b2017-08-06 01:00:49 -04005576static int __ext4_expand_extra_isize(struct inode *inode,
5577 unsigned int new_extra_isize,
5578 struct ext4_iloc *iloc,
5579 handle_t *handle, int *no_expand)
5580{
5581 struct ext4_inode *raw_inode;
5582 struct ext4_xattr_ibody_header *header;
Theodore Ts'o4ea99932019-11-07 21:43:41 -05005583 unsigned int inode_size = EXT4_INODE_SIZE(inode->i_sb);
5584 struct ext4_inode_info *ei = EXT4_I(inode);
Miao Xiec03b45b2017-08-06 01:00:49 -04005585 int error;
5586
Theodore Ts'o4ea99932019-11-07 21:43:41 -05005587 /* this was checked at iget time, but double check for good measure */
5588 if ((EXT4_GOOD_OLD_INODE_SIZE + ei->i_extra_isize > inode_size) ||
5589 (ei->i_extra_isize & 3)) {
5590 EXT4_ERROR_INODE(inode, "bad extra_isize %u (inode size %u)",
5591 ei->i_extra_isize,
5592 EXT4_INODE_SIZE(inode->i_sb));
5593 return -EFSCORRUPTED;
5594 }
5595 if ((new_extra_isize < ei->i_extra_isize) ||
5596 (new_extra_isize < 4) ||
5597 (new_extra_isize > inode_size - EXT4_GOOD_OLD_INODE_SIZE))
5598 return -EINVAL; /* Should never happen */
5599
Miao Xiec03b45b2017-08-06 01:00:49 -04005600 raw_inode = ext4_raw_inode(iloc);
5601
5602 header = IHDR(inode, raw_inode);
5603
5604 /* No extended attributes present */
5605 if (!ext4_test_inode_state(inode, EXT4_STATE_XATTR) ||
5606 header->h_magic != cpu_to_le32(EXT4_XATTR_MAGIC)) {
5607 memset((void *)raw_inode + EXT4_GOOD_OLD_INODE_SIZE +
5608 EXT4_I(inode)->i_extra_isize, 0,
5609 new_extra_isize - EXT4_I(inode)->i_extra_isize);
5610 EXT4_I(inode)->i_extra_isize = new_extra_isize;
5611 return 0;
5612 }
5613
5614 /* try to expand with EAs present */
5615 error = ext4_expand_extra_isize_ea(inode, new_extra_isize,
5616 raw_inode, handle);
5617 if (error) {
5618 /*
5619 * Inode size expansion failed; don't try again
5620 */
5621 *no_expand = 1;
5622 }
5623
5624 return error;
5625}
5626
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005627/*
Kalpak Shah6dd4ee72007-07-18 09:19:57 -04005628 * Expand an inode by new_extra_isize bytes.
5629 * Returns 0 on success or negative error number on failure.
5630 */
Miao Xiecf0a5e82017-08-06 00:40:01 -04005631static int ext4_try_to_expand_extra_isize(struct inode *inode,
5632 unsigned int new_extra_isize,
5633 struct ext4_iloc iloc,
5634 handle_t *handle)
Kalpak Shah6dd4ee72007-07-18 09:19:57 -04005635{
Miao Xie3b10fdc2017-08-06 00:27:38 -04005636 int no_expand;
5637 int error;
Kalpak Shah6dd4ee72007-07-18 09:19:57 -04005638
Miao Xiecf0a5e82017-08-06 00:40:01 -04005639 if (ext4_test_inode_state(inode, EXT4_STATE_NO_EXPAND))
5640 return -EOVERFLOW;
5641
5642 /*
5643 * In nojournal mode, we can immediately attempt to expand
5644 * the inode. When journaled, we first need to obtain extra
5645 * buffer credits since we may write into the EA block
5646 * with this same handle. If journal_extend fails, then it will
5647 * only result in a minor loss of functionality for that inode.
5648 * If this is felt to be critical, then e2fsck should be run to
5649 * force a large enough s_min_extra_isize.
5650 */
Jan Kara6cb367c2019-11-05 17:44:14 +01005651 if (ext4_journal_extend(handle,
Jan Kara83448bd2019-11-05 17:44:29 +01005652 EXT4_DATA_TRANS_BLOCKS(inode->i_sb), 0) != 0)
Miao Xiecf0a5e82017-08-06 00:40:01 -04005653 return -ENOSPC;
Kalpak Shah6dd4ee72007-07-18 09:19:57 -04005654
Miao Xie3b10fdc2017-08-06 00:27:38 -04005655 if (ext4_write_trylock_xattr(inode, &no_expand) == 0)
Miao Xiecf0a5e82017-08-06 00:40:01 -04005656 return -EBUSY;
Miao Xie3b10fdc2017-08-06 00:27:38 -04005657
Miao Xiec03b45b2017-08-06 01:00:49 -04005658 error = __ext4_expand_extra_isize(inode, new_extra_isize, &iloc,
5659 handle, &no_expand);
Miao Xie3b10fdc2017-08-06 00:27:38 -04005660 ext4_write_unlock_xattr(inode, &no_expand);
Miao Xiecf0a5e82017-08-06 00:40:01 -04005661
Miao Xie3b10fdc2017-08-06 00:27:38 -04005662 return error;
Kalpak Shah6dd4ee72007-07-18 09:19:57 -04005663}
5664
Miao Xiec03b45b2017-08-06 01:00:49 -04005665int ext4_expand_extra_isize(struct inode *inode,
5666 unsigned int new_extra_isize,
5667 struct ext4_iloc *iloc)
5668{
5669 handle_t *handle;
5670 int no_expand;
5671 int error, rc;
5672
5673 if (ext4_test_inode_state(inode, EXT4_STATE_NO_EXPAND)) {
5674 brelse(iloc->bh);
5675 return -EOVERFLOW;
5676 }
5677
5678 handle = ext4_journal_start(inode, EXT4_HT_INODE,
5679 EXT4_DATA_TRANS_BLOCKS(inode->i_sb));
5680 if (IS_ERR(handle)) {
5681 error = PTR_ERR(handle);
5682 brelse(iloc->bh);
5683 return error;
5684 }
5685
5686 ext4_write_lock_xattr(inode, &no_expand);
5687
zhangyi (F)ddccb6d2019-02-21 11:29:10 -05005688 BUFFER_TRACE(iloc->bh, "get_write_access");
Miao Xiec03b45b2017-08-06 01:00:49 -04005689 error = ext4_journal_get_write_access(handle, iloc->bh);
5690 if (error) {
5691 brelse(iloc->bh);
Dan Carpenter7f420d642019-12-13 21:50:11 +03005692 goto out_unlock;
Miao Xiec03b45b2017-08-06 01:00:49 -04005693 }
5694
5695 error = __ext4_expand_extra_isize(inode, new_extra_isize, iloc,
5696 handle, &no_expand);
5697
5698 rc = ext4_mark_iloc_dirty(handle, inode, iloc);
5699 if (!error)
5700 error = rc;
5701
Dan Carpenter7f420d642019-12-13 21:50:11 +03005702out_unlock:
Miao Xiec03b45b2017-08-06 01:00:49 -04005703 ext4_write_unlock_xattr(inode, &no_expand);
Miao Xiec03b45b2017-08-06 01:00:49 -04005704 ext4_journal_stop(handle);
5705 return error;
5706}
5707
Kalpak Shah6dd4ee72007-07-18 09:19:57 -04005708/*
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005709 * What we do here is to mark the in-core inode as clean with respect to inode
5710 * dirtiness (it may still be data-dirty).
5711 * This means that the in-core inode may be reaped by prune_icache
5712 * without having to perform any I/O. This is a very good thing,
5713 * because *any* task may call prune_icache - even ones which
5714 * have a transaction open against a different journal.
5715 *
5716 * Is this cheating? Not really. Sure, we haven't written the
5717 * inode out, but prune_icache isn't a user-visible syncing function.
5718 * Whenever the user wants stuff synced (sys_sync, sys_msync, sys_fsync)
5719 * we start and wait on commits.
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005720 */
Mingming Cao617ba132006-10-11 01:20:53 -07005721int ext4_mark_inode_dirty(handle_t *handle, struct inode *inode)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005722{
Mingming Cao617ba132006-10-11 01:20:53 -07005723 struct ext4_iloc iloc;
Kalpak Shah6dd4ee72007-07-18 09:19:57 -04005724 struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb);
Miao Xiecf0a5e82017-08-06 00:40:01 -04005725 int err;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005726
5727 might_sleep();
Theodore Ts'o7ff9c072010-11-08 13:51:33 -05005728 trace_ext4_mark_inode_dirty(inode, _RET_IP_);
Mingming Cao617ba132006-10-11 01:20:53 -07005729 err = ext4_reserve_inode_write(handle, inode, &iloc);
Eryu Guan5e1021f2016-03-12 21:40:32 -05005730 if (err)
5731 return err;
Miao Xiecf0a5e82017-08-06 00:40:01 -04005732
5733 if (EXT4_I(inode)->i_extra_isize < sbi->s_want_extra_isize)
5734 ext4_try_to_expand_extra_isize(inode, sbi->s_want_extra_isize,
5735 iloc, handle);
5736
Eryu Guan5e1021f2016-03-12 21:40:32 -05005737 return ext4_mark_iloc_dirty(handle, inode, &iloc);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005738}
5739
5740/*
Mingming Cao617ba132006-10-11 01:20:53 -07005741 * ext4_dirty_inode() is called from __mark_inode_dirty()
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005742 *
5743 * We're really interested in the case where a file is being extended.
5744 * i_size has been changed by generic_commit_write() and we thus need
5745 * to include the updated inode in the current transaction.
5746 *
Christoph Hellwig5dd40562010-03-03 09:05:00 -05005747 * Also, dquot_alloc_block() will always dirty the inode when blocks
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005748 * are allocated to the file.
5749 *
5750 * If the inode is marked synchronous, we don't honour that here - doing
5751 * so would cause a commit on atime updates, which we don't bother doing.
5752 * We handle synchronous inodes at the highest possible level.
Theodore Ts'o0ae45f62015-02-02 00:37:00 -05005753 *
5754 * If only the I_DIRTY_TIME flag is set, we can skip everything. If
5755 * I_DIRTY_TIME and I_DIRTY_SYNC is set, the only inode fields we need
5756 * to copy into the on-disk inode structure are the timestamp files.
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005757 */
Christoph Hellwigaa385722011-05-27 06:53:02 -04005758void ext4_dirty_inode(struct inode *inode, int flags)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005759{
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005760 handle_t *handle;
5761
Theodore Ts'o0ae45f62015-02-02 00:37:00 -05005762 if (flags == I_DIRTY_TIME)
5763 return;
Theodore Ts'o9924a922013-02-08 21:59:22 -05005764 handle = ext4_journal_start(inode, EXT4_HT_INODE, 2);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005765 if (IS_ERR(handle))
5766 goto out;
Curt Wohlgemuthf3dc2722009-09-29 16:06:01 -04005767
Curt Wohlgemuthf3dc2722009-09-29 16:06:01 -04005768 ext4_mark_inode_dirty(handle, inode);
5769
Mingming Cao617ba132006-10-11 01:20:53 -07005770 ext4_journal_stop(handle);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005771out:
5772 return;
5773}
5774
Mingming Cao617ba132006-10-11 01:20:53 -07005775int ext4_change_inode_journal_flag(struct inode *inode, int val)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005776{
5777 journal_t *journal;
5778 handle_t *handle;
5779 int err;
Daeho Jeongc8585c62016-04-25 23:22:35 -04005780 struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005781
5782 /*
5783 * We have to be very careful here: changing a data block's
5784 * journaling status dynamically is dangerous. If we write a
5785 * data block to the journal, change the status and then delete
5786 * that block, we risk forgetting to revoke the old log record
5787 * from the journal and so a subsequent replay can corrupt data.
5788 * So, first we make sure that the journal is empty and that
5789 * nobody is changing anything.
5790 */
5791
Mingming Cao617ba132006-10-11 01:20:53 -07005792 journal = EXT4_JOURNAL(inode);
Frank Mayhar03901312009-01-07 00:06:22 -05005793 if (!journal)
5794 return 0;
Dave Hansend6995942007-07-18 08:33:51 -04005795 if (is_journal_aborted(journal))
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005796 return -EROFS;
5797
Dmitry Monakhov17335dc2012-09-29 00:41:21 -04005798 /* Wait for all existing dio workers */
Dmitry Monakhov17335dc2012-09-29 00:41:21 -04005799 inode_dio_wait(inode);
5800
Daeho Jeong4c546592016-04-25 23:21:00 -04005801 /*
5802 * Before flushing the journal and switching inode's aops, we have
5803 * to flush all dirty data the inode has. There can be outstanding
5804 * delayed allocations, there can be unwritten extents created by
5805 * fallocate or buffered writes in dioread_nolock mode covered by
5806 * dirty data which can be converted only after flushing the dirty
5807 * data (and journalled aops don't know how to handle these cases).
5808 */
5809 if (val) {
5810 down_write(&EXT4_I(inode)->i_mmap_sem);
5811 err = filemap_write_and_wait(inode->i_mapping);
5812 if (err < 0) {
5813 up_write(&EXT4_I(inode)->i_mmap_sem);
Daeho Jeong4c546592016-04-25 23:21:00 -04005814 return err;
5815 }
5816 }
5817
Daeho Jeongc8585c62016-04-25 23:22:35 -04005818 percpu_down_write(&sbi->s_journal_flag_rwsem);
Mingming Caodab291a2006-10-11 01:21:01 -07005819 jbd2_journal_lock_updates(journal);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005820
5821 /*
5822 * OK, there are no updates running now, and all cached data is
5823 * synced to disk. We are now in a completely consistent state
5824 * which doesn't have anything in the journal, and we know that
5825 * no filesystem updates are running, so it is safe to modify
5826 * the inode's in-core data-journaling state flag now.
5827 */
5828
5829 if (val)
Dmitry Monakhov12e9b892010-05-16 22:00:00 -04005830 ext4_set_inode_flag(inode, EXT4_INODE_JOURNAL_DATA);
Yongqiang Yang5872dda2011-12-28 13:55:51 -05005831 else {
Jan Kara4f879ca2014-10-30 10:53:17 -04005832 err = jbd2_journal_flush(journal);
5833 if (err < 0) {
5834 jbd2_journal_unlock_updates(journal);
Daeho Jeongc8585c62016-04-25 23:22:35 -04005835 percpu_up_write(&sbi->s_journal_flag_rwsem);
Jan Kara4f879ca2014-10-30 10:53:17 -04005836 return err;
5837 }
Dmitry Monakhov12e9b892010-05-16 22:00:00 -04005838 ext4_clear_inode_flag(inode, EXT4_INODE_JOURNAL_DATA);
Yongqiang Yang5872dda2011-12-28 13:55:51 -05005839 }
Mingming Cao617ba132006-10-11 01:20:53 -07005840 ext4_set_aops(inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005841
Mingming Caodab291a2006-10-11 01:21:01 -07005842 jbd2_journal_unlock_updates(journal);
Daeho Jeongc8585c62016-04-25 23:22:35 -04005843 percpu_up_write(&sbi->s_journal_flag_rwsem);
5844
Daeho Jeong4c546592016-04-25 23:21:00 -04005845 if (val)
5846 up_write(&EXT4_I(inode)->i_mmap_sem);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005847
5848 /* Finally we can mark the inode as dirty. */
5849
Theodore Ts'o9924a922013-02-08 21:59:22 -05005850 handle = ext4_journal_start(inode, EXT4_HT_INODE, 1);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005851 if (IS_ERR(handle))
5852 return PTR_ERR(handle);
5853
Mingming Cao617ba132006-10-11 01:20:53 -07005854 err = ext4_mark_inode_dirty(handle, inode);
Frank Mayhar03901312009-01-07 00:06:22 -05005855 ext4_handle_sync(handle);
Mingming Cao617ba132006-10-11 01:20:53 -07005856 ext4_journal_stop(handle);
5857 ext4_std_error(inode->i_sb, err);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005858
5859 return err;
5860}
Aneesh Kumar K.V2e9ee852008-07-11 19:27:31 -04005861
5862static int ext4_bh_unmapped(handle_t *handle, struct buffer_head *bh)
5863{
5864 return !buffer_mapped(bh);
5865}
5866
Souptick Joarder401b25a2018-10-02 22:20:50 -04005867vm_fault_t ext4_page_mkwrite(struct vm_fault *vmf)
Aneesh Kumar K.V2e9ee852008-07-11 19:27:31 -04005868{
Dave Jiang11bac802017-02-24 14:56:41 -08005869 struct vm_area_struct *vma = vmf->vma;
Nick Pigginc2ec1752009-03-31 15:23:21 -07005870 struct page *page = vmf->page;
Aneesh Kumar K.V2e9ee852008-07-11 19:27:31 -04005871 loff_t size;
5872 unsigned long len;
Souptick Joarder401b25a2018-10-02 22:20:50 -04005873 int err;
5874 vm_fault_t ret;
Aneesh Kumar K.V2e9ee852008-07-11 19:27:31 -04005875 struct file *file = vma->vm_file;
Al Viro496ad9a2013-01-23 17:07:38 -05005876 struct inode *inode = file_inode(file);
Aneesh Kumar K.V2e9ee852008-07-11 19:27:31 -04005877 struct address_space *mapping = inode->i_mapping;
Jan Kara9ea7df52011-06-24 14:29:41 -04005878 handle_t *handle;
5879 get_block_t *get_block;
5880 int retries = 0;
Aneesh Kumar K.V2e9ee852008-07-11 19:27:31 -04005881
Theodore Ts'o02b016c2019-06-09 22:04:33 -04005882 if (unlikely(IS_IMMUTABLE(inode)))
5883 return VM_FAULT_SIGBUS;
5884
Jan Kara8e8ad8a2012-06-12 16:20:38 +02005885 sb_start_pagefault(inode->i_sb);
Theodore Ts'o041bbb6d2012-09-30 23:04:56 -04005886 file_update_time(vma->vm_file);
Jan Karaea3d7202015-12-07 14:28:03 -05005887
5888 down_read(&EXT4_I(inode)->i_mmap_sem);
Eric Biggers7b4cc972017-04-30 00:10:50 -04005889
Souptick Joarder401b25a2018-10-02 22:20:50 -04005890 err = ext4_convert_inline_data(inode);
5891 if (err)
Eric Biggers7b4cc972017-04-30 00:10:50 -04005892 goto out_ret;
5893
Jan Kara9ea7df52011-06-24 14:29:41 -04005894 /* Delalloc case is easy... */
5895 if (test_opt(inode->i_sb, DELALLOC) &&
5896 !ext4_should_journal_data(inode) &&
5897 !ext4_nonda_switch(inode->i_sb)) {
5898 do {
Souptick Joarder401b25a2018-10-02 22:20:50 -04005899 err = block_page_mkwrite(vma, vmf,
Jan Kara9ea7df52011-06-24 14:29:41 -04005900 ext4_da_get_block_prep);
Souptick Joarder401b25a2018-10-02 22:20:50 -04005901 } while (err == -ENOSPC &&
Jan Kara9ea7df52011-06-24 14:29:41 -04005902 ext4_should_retry_alloc(inode->i_sb, &retries));
5903 goto out_ret;
Aneesh Kumar K.V2e9ee852008-07-11 19:27:31 -04005904 }
Darrick J. Wong0e499892011-05-18 13:55:20 -04005905
5906 lock_page(page);
Jan Kara9ea7df52011-06-24 14:29:41 -04005907 size = i_size_read(inode);
5908 /* Page got truncated from under us? */
5909 if (page->mapping != mapping || page_offset(page) > size) {
5910 unlock_page(page);
5911 ret = VM_FAULT_NOPAGE;
5912 goto out;
Darrick J. Wong0e499892011-05-18 13:55:20 -04005913 }
Aneesh Kumar K.V2e9ee852008-07-11 19:27:31 -04005914
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005915 if (page->index == size >> PAGE_SHIFT)
5916 len = size & ~PAGE_MASK;
Aneesh Kumar K.V2e9ee852008-07-11 19:27:31 -04005917 else
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005918 len = PAGE_SIZE;
Aneesh Kumar K.Va827eaf2009-09-09 22:36:03 -04005919 /*
Jan Kara9ea7df52011-06-24 14:29:41 -04005920 * Return if we have all the buffers mapped. This avoids the need to do
5921 * journal_start/journal_stop which can block and take a long time
Aneesh Kumar K.Va827eaf2009-09-09 22:36:03 -04005922 */
Aneesh Kumar K.V2e9ee852008-07-11 19:27:31 -04005923 if (page_has_buffers(page)) {
Tao Maf19d5872012-12-10 14:05:51 -05005924 if (!ext4_walk_page_buffers(NULL, page_buffers(page),
5925 0, len, NULL,
5926 ext4_bh_unmapped)) {
Jan Kara9ea7df52011-06-24 14:29:41 -04005927 /* Wait so that we don't change page under IO */
Darrick J. Wong1d1d1a72013-02-21 16:42:51 -08005928 wait_for_stable_page(page);
Jan Kara9ea7df52011-06-24 14:29:41 -04005929 ret = VM_FAULT_LOCKED;
5930 goto out;
Aneesh Kumar K.Va827eaf2009-09-09 22:36:03 -04005931 }
Aneesh Kumar K.V2e9ee852008-07-11 19:27:31 -04005932 }
Aneesh Kumar K.Va827eaf2009-09-09 22:36:03 -04005933 unlock_page(page);
Jan Kara9ea7df52011-06-24 14:29:41 -04005934 /* OK, we need to fill the hole... */
5935 if (ext4_should_dioread_nolock(inode))
Jan Kara705965b2016-03-08 23:08:10 -05005936 get_block = ext4_get_block_unwritten;
Jan Kara9ea7df52011-06-24 14:29:41 -04005937 else
5938 get_block = ext4_get_block;
5939retry_alloc:
Theodore Ts'o9924a922013-02-08 21:59:22 -05005940 handle = ext4_journal_start(inode, EXT4_HT_WRITE_PAGE,
5941 ext4_writepage_trans_blocks(inode));
Jan Kara9ea7df52011-06-24 14:29:41 -04005942 if (IS_ERR(handle)) {
Nick Pigginc2ec1752009-03-31 15:23:21 -07005943 ret = VM_FAULT_SIGBUS;
Jan Kara9ea7df52011-06-24 14:29:41 -04005944 goto out;
5945 }
Souptick Joarder401b25a2018-10-02 22:20:50 -04005946 err = block_page_mkwrite(vma, vmf, get_block);
5947 if (!err && ext4_should_journal_data(inode)) {
Tao Maf19d5872012-12-10 14:05:51 -05005948 if (ext4_walk_page_buffers(handle, page_buffers(page), 0,
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005949 PAGE_SIZE, NULL, do_journal_get_write_access)) {
Jan Kara9ea7df52011-06-24 14:29:41 -04005950 unlock_page(page);
5951 ret = VM_FAULT_SIGBUS;
Yongqiang Yangfcbb5512011-10-26 05:00:19 -04005952 ext4_journal_stop(handle);
Jan Kara9ea7df52011-06-24 14:29:41 -04005953 goto out;
5954 }
5955 ext4_set_inode_state(inode, EXT4_STATE_JDATA);
5956 }
5957 ext4_journal_stop(handle);
Souptick Joarder401b25a2018-10-02 22:20:50 -04005958 if (err == -ENOSPC && ext4_should_retry_alloc(inode->i_sb, &retries))
Jan Kara9ea7df52011-06-24 14:29:41 -04005959 goto retry_alloc;
5960out_ret:
Souptick Joarder401b25a2018-10-02 22:20:50 -04005961 ret = block_page_mkwrite_return(err);
Jan Kara9ea7df52011-06-24 14:29:41 -04005962out:
Jan Karaea3d7202015-12-07 14:28:03 -05005963 up_read(&EXT4_I(inode)->i_mmap_sem);
Jan Kara8e8ad8a2012-06-12 16:20:38 +02005964 sb_end_pagefault(inode->i_sb);
Aneesh Kumar K.V2e9ee852008-07-11 19:27:31 -04005965 return ret;
5966}
Jan Karaea3d7202015-12-07 14:28:03 -05005967
Souptick Joarder401b25a2018-10-02 22:20:50 -04005968vm_fault_t ext4_filemap_fault(struct vm_fault *vmf)
Jan Karaea3d7202015-12-07 14:28:03 -05005969{
Dave Jiang11bac802017-02-24 14:56:41 -08005970 struct inode *inode = file_inode(vmf->vma->vm_file);
Souptick Joarder401b25a2018-10-02 22:20:50 -04005971 vm_fault_t ret;
Jan Karaea3d7202015-12-07 14:28:03 -05005972
5973 down_read(&EXT4_I(inode)->i_mmap_sem);
Souptick Joarder401b25a2018-10-02 22:20:50 -04005974 ret = filemap_fault(vmf);
Jan Karaea3d7202015-12-07 14:28:03 -05005975 up_read(&EXT4_I(inode)->i_mmap_sem);
5976
Souptick Joarder401b25a2018-10-02 22:20:50 -04005977 return ret;
Jan Karaea3d7202015-12-07 14:28:03 -05005978}