blob: bca9951634d945d564dc9d9aeb27aad98d6a3c04 [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>
Christian Brauner14f3db52021-01-21 14:19:57 +010023#include <linux/mount.h>
Dave Kleikampac27a0e2006-10-11 01:20:50 -070024#include <linux/time.h>
Dave Kleikampac27a0e2006-10-11 01:20:50 -070025#include <linux/highuid.h>
26#include <linux/pagemap.h>
Matthew Wilcoxc94c2ac2015-09-08 14:58:40 -070027#include <linux/dax.h>
Dave Kleikampac27a0e2006-10-11 01:20:50 -070028#include <linux/quotaops.h>
29#include <linux/string.h>
30#include <linux/buffer_head.h>
31#include <linux/writeback.h>
Alex Tomas64769242008-07-11 19:27:31 -040032#include <linux/pagevec.h>
Dave Kleikampac27a0e2006-10-11 01:20:50 -070033#include <linux/mpage.h>
Duane Griffine83c1392008-12-19 20:47:15 +000034#include <linux/namei.h>
Dave Kleikampac27a0e2006-10-11 01:20:50 -070035#include <linux/uio.h>
36#include <linux/bio.h>
Mingming Cao4c0425f2009-09-28 15:48:41 -040037#include <linux/workqueue.h>
Jiaying Zhang744692d2010-03-04 16:14:02 -050038#include <linux/kernel.h>
Andrew Morton6db26ff2011-01-12 16:59:13 -080039#include <linux/printk.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090040#include <linux/slab.h>
Theodore Ts'o00a1a052014-03-30 10:20:01 -040041#include <linux/bitops.h>
Jan Kara364443c2016-11-20 17:36:06 -050042#include <linux/iomap.h>
Jeff Laytonae5e1652018-01-29 06:41:30 -050043#include <linux/iversion.h>
Theodore Ts'o9bffad12009-06-17 11:48:11 -040044
Christoph Hellwig3dcf5452008-04-29 18:13:32 -040045#include "ext4_jbd2.h"
Dave Kleikampac27a0e2006-10-11 01:20:50 -070046#include "xattr.h"
47#include "acl.h"
Theodore Ts'o9f125d62011-06-27 19:16:04 -040048#include "truncate.h"
Dave Kleikampac27a0e2006-10-11 01:20:50 -070049
Theodore Ts'o9bffad12009-06-17 11:48:11 -040050#include <trace/events/ext4.h>
51
Darrick J. Wong814525f2012-04-29 18:31:10 -040052static __u32 ext4_inode_csum(struct inode *inode, struct ext4_inode *raw,
53 struct ext4_inode_info *ei)
54{
55 struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb);
Darrick J. Wong814525f2012-04-29 18:31:10 -040056 __u32 csum;
Daeho Jeongb47820e2016-07-03 17:51:39 -040057 __u16 dummy_csum = 0;
58 int offset = offsetof(struct ext4_inode, i_checksum_lo);
59 unsigned int csum_size = sizeof(dummy_csum);
Darrick J. Wong814525f2012-04-29 18:31:10 -040060
Daeho Jeongb47820e2016-07-03 17:51:39 -040061 csum = ext4_chksum(sbi, ei->i_csum_seed, (__u8 *)raw, offset);
62 csum = ext4_chksum(sbi, csum, (__u8 *)&dummy_csum, csum_size);
63 offset += csum_size;
64 csum = ext4_chksum(sbi, csum, (__u8 *)raw + offset,
65 EXT4_GOOD_OLD_INODE_SIZE - offset);
66
67 if (EXT4_INODE_SIZE(inode->i_sb) > EXT4_GOOD_OLD_INODE_SIZE) {
68 offset = offsetof(struct ext4_inode, i_checksum_hi);
69 csum = ext4_chksum(sbi, csum, (__u8 *)raw +
70 EXT4_GOOD_OLD_INODE_SIZE,
71 offset - EXT4_GOOD_OLD_INODE_SIZE);
72 if (EXT4_FITS_IN_INODE(raw, ei, i_checksum_hi)) {
73 csum = ext4_chksum(sbi, csum, (__u8 *)&dummy_csum,
74 csum_size);
75 offset += csum_size;
Daeho Jeongb47820e2016-07-03 17:51:39 -040076 }
Daeho Jeong05ac5aa2016-12-01 11:49:12 -050077 csum = ext4_chksum(sbi, csum, (__u8 *)raw + offset,
78 EXT4_INODE_SIZE(inode->i_sb) - offset);
Darrick J. Wong814525f2012-04-29 18:31:10 -040079 }
80
Darrick J. Wong814525f2012-04-29 18:31:10 -040081 return csum;
82}
83
84static int ext4_inode_csum_verify(struct inode *inode, struct ext4_inode *raw,
85 struct ext4_inode_info *ei)
86{
87 __u32 provided, calculated;
88
89 if (EXT4_SB(inode->i_sb)->s_es->s_creator_os !=
90 cpu_to_le32(EXT4_OS_LINUX) ||
Dmitry Monakhov9aa5d32b2014-10-13 03:36:16 -040091 !ext4_has_metadata_csum(inode->i_sb))
Darrick J. Wong814525f2012-04-29 18:31:10 -040092 return 1;
93
94 provided = le16_to_cpu(raw->i_checksum_lo);
95 calculated = ext4_inode_csum(inode, raw, ei);
96 if (EXT4_INODE_SIZE(inode->i_sb) > EXT4_GOOD_OLD_INODE_SIZE &&
97 EXT4_FITS_IN_INODE(raw, ei, i_checksum_hi))
98 provided |= ((__u32)le16_to_cpu(raw->i_checksum_hi)) << 16;
99 else
100 calculated &= 0xFFFF;
101
102 return provided == calculated;
103}
104
Harshad Shirwadkar8016e292020-10-15 13:37:59 -0700105void ext4_inode_csum_set(struct inode *inode, struct ext4_inode *raw,
106 struct ext4_inode_info *ei)
Darrick J. Wong814525f2012-04-29 18:31:10 -0400107{
108 __u32 csum;
109
110 if (EXT4_SB(inode->i_sb)->s_es->s_creator_os !=
111 cpu_to_le32(EXT4_OS_LINUX) ||
Dmitry Monakhov9aa5d32b2014-10-13 03:36:16 -0400112 !ext4_has_metadata_csum(inode->i_sb))
Darrick J. Wong814525f2012-04-29 18:31:10 -0400113 return;
114
115 csum = ext4_inode_csum(inode, raw, ei);
116 raw->i_checksum_lo = cpu_to_le16(csum & 0xFFFF);
117 if (EXT4_INODE_SIZE(inode->i_sb) > EXT4_GOOD_OLD_INODE_SIZE &&
118 EXT4_FITS_IN_INODE(raw, ei, i_checksum_hi))
119 raw->i_checksum_hi = cpu_to_le16(csum >> 16);
120}
121
Jan Kara678aaf42008-07-11 19:27:31 -0400122static inline int ext4_begin_ordered_truncate(struct inode *inode,
123 loff_t new_size)
124{
Theodore Ts'o7ff9c072010-11-08 13:51:33 -0500125 trace_ext4_begin_ordered_truncate(inode, new_size);
Theodore Ts'o8aefcd52011-01-10 12:29:43 -0500126 /*
127 * If jinode is zero, then we never opened the file for
128 * writing, so there's no need to call
129 * jbd2_journal_begin_ordered_truncate() since there's no
130 * outstanding writes we need to flush.
131 */
132 if (!EXT4_I(inode)->jinode)
133 return 0;
134 return jbd2_journal_begin_ordered_truncate(EXT4_JOURNAL(inode),
135 EXT4_I(inode)->jinode,
136 new_size);
Jan Kara678aaf42008-07-11 19:27:31 -0400137}
138
Lukas Czernerd47992f2013-05-21 23:17:23 -0400139static void ext4_invalidatepage(struct page *page, unsigned int offset,
140 unsigned int length);
Theodore Ts'ocb20d512010-10-27 21:30:09 -0400141static int __ext4_journalled_writepage(struct page *page, unsigned int len);
Tahsin Erdogandec214d2017-06-22 11:44:55 -0400142static int ext4_meta_trans_blocks(struct inode *inode, int lblocks,
143 int pextents);
Alex Tomas64769242008-07-11 19:27:31 -0400144
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700145/*
146 * Test whether an inode is a fast symlink.
Tahsin Erdogan407cd7f2017-07-04 00:11:21 -0400147 * A fast symlink has its symlink data stored in ext4_inode_info->i_data.
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700148 */
Theodore Ts'of348c252015-04-16 01:55:00 -0400149int ext4_inode_is_fast_symlink(struct inode *inode)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700150{
Andi Kleenfc822282017-12-03 20:38:01 -0500151 if (!(EXT4_I(inode)->i_flags & EXT4_EA_INODE_FL)) {
152 int ea_blocks = EXT4_I(inode)->i_file_acl ?
153 EXT4_CLUSTER_SIZE(inode->i_sb) >> 9 : 0;
154
155 if (ext4_has_inline_data(inode))
156 return 0;
157
158 return (S_ISLNK(inode->i_mode) && inode->i_blocks - ea_blocks == 0);
159 }
Tahsin Erdogan407cd7f2017-07-04 00:11:21 -0400160 return S_ISLNK(inode->i_mode) && inode->i_size &&
161 (inode->i_size < EXT4_N_BLOCKS * 4);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700162}
163
164/*
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700165 * Called at the last iput() if i_nlink is zero.
166 */
Al Viro0930fcc2010-06-07 13:16:22 -0400167void ext4_evict_inode(struct inode *inode)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700168{
169 handle_t *handle;
Theodore Ts'obc965ab2008-08-02 21:10:38 -0400170 int err;
Jan Kara65db8692019-11-05 17:44:12 +0100171 /*
172 * Credits for final inode cleanup and freeing:
173 * sb + inode (ext4_orphan_del()), block bitmap, group descriptor
174 * (xattr block freeing), bitmap, group descriptor (inode freeing)
175 */
176 int extra_credits = 6;
Tahsin Erdogan0421a182017-06-22 10:26:31 -0400177 struct ext4_xattr_inode_array *ea_inode_array = NULL;
Jan Kara46e294e2020-11-27 12:06:49 +0100178 bool freeze_protected = false;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700179
Theodore Ts'o7ff9c072010-11-08 13:51:33 -0500180 trace_ext4_evict_inode(inode);
Jiaying Zhang2581fdc2011-08-13 12:17:13 -0400181
Al Viro0930fcc2010-06-07 13:16:22 -0400182 if (inode->i_nlink) {
Jan Kara2d859db2011-07-26 09:07:11 -0400183 /*
184 * When journalling data dirty buffers are tracked only in the
185 * journal. So although mm thinks everything is clean and
186 * ready for reaping the inode might still have some pages to
187 * write in the running transaction or waiting to be
188 * checkpointed. Thus calling jbd2_journal_invalidatepage()
189 * (via truncate_inode_pages()) to discard these buffers can
190 * cause data loss. Also even if we did not discard these
191 * buffers, we would have no way to find them after the inode
192 * is reaped and thus user could see stale data if he tries to
193 * read them before the transaction is checkpointed. So be
194 * careful and force everything to disk here... We use
195 * ei->i_datasync_tid to store the newest transaction
196 * containing inode's data.
197 *
198 * Note that directories do not have this problem because they
199 * don't use page cache.
200 */
Vegard Nossum6a7fd522016-07-04 11:03:00 -0400201 if (inode->i_ino != EXT4_JOURNAL_INO &&
202 ext4_should_journal_data(inode) &&
Jan Kara3abb1a02017-06-22 23:49:46 -0400203 (S_ISLNK(inode->i_mode) || S_ISREG(inode->i_mode)) &&
204 inode->i_data.nrpages) {
Jan Kara2d859db2011-07-26 09:07:11 -0400205 journal_t *journal = EXT4_SB(inode->i_sb)->s_journal;
206 tid_t commit_tid = EXT4_I(inode)->i_datasync_tid;
207
Theodore Ts'od76a3a772013-04-03 22:02:52 -0400208 jbd2_complete_transaction(journal, commit_tid);
Jan Kara2d859db2011-07-26 09:07:11 -0400209 filemap_write_and_wait(&inode->i_data);
210 }
Johannes Weiner91b0abe2014-04-03 14:47:49 -0700211 truncate_inode_pages_final(&inode->i_data);
Jan Kara5dc23bd2013-06-04 14:46:12 -0400212
Al Viro0930fcc2010-06-07 13:16:22 -0400213 goto no_delete;
214 }
215
Theodore Ts'oe2bfb082014-10-05 22:47:07 -0400216 if (is_bad_inode(inode))
217 goto no_delete;
218 dquot_initialize(inode);
Christoph Hellwig907f4552010-03-03 09:05:06 -0500219
Jan Kara678aaf42008-07-11 19:27:31 -0400220 if (ext4_should_order_data(inode))
221 ext4_begin_ordered_truncate(inode, 0);
Johannes Weiner91b0abe2014-04-03 14:47:49 -0700222 truncate_inode_pages_final(&inode->i_data);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700223
Jan Kara8e8ad8a2012-06-12 16:20:38 +0200224 /*
Jan Karaceff86f2020-04-21 10:54:45 +0200225 * For inodes with journalled data, transaction commit could have
226 * dirtied the inode. Flush worker is ignoring it because of I_FREEING
227 * flag but we still need to remove the inode from the writeback lists.
228 */
229 if (!list_empty_careful(&inode->i_io_list)) {
230 WARN_ON_ONCE(!ext4_should_journal_data(inode));
231 inode_io_list_del(inode);
232 }
233
234 /*
Jan Kara8e8ad8a2012-06-12 16:20:38 +0200235 * Protect us against freezing - iput() caller didn't have to have any
Jan Kara46e294e2020-11-27 12:06:49 +0100236 * protection against it. When we are in a running transaction though,
237 * we are already protected against freezing and we cannot grab further
238 * protection due to lock ordering constraints.
Jan Kara8e8ad8a2012-06-12 16:20:38 +0200239 */
Jan Kara46e294e2020-11-27 12:06:49 +0100240 if (!ext4_journal_current_handle()) {
241 sb_start_intwrite(inode->i_sb);
242 freeze_protected = true;
243 }
Andreas Dilgere50e5122017-06-21 21:10:32 -0400244
Tahsin Erdogan30a7eb92017-06-22 11:42:09 -0400245 if (!IS_NOQUOTA(inode))
246 extra_credits += EXT4_MAXQUOTAS_DEL_BLOCKS(inode->i_sb);
247
Jan Kara65db8692019-11-05 17:44:12 +0100248 /*
249 * Block bitmap, group descriptor, and inode are accounted in both
250 * ext4_blocks_for_truncate() and extra_credits. So subtract 3.
251 */
Tahsin Erdogan30a7eb92017-06-22 11:42:09 -0400252 handle = ext4_journal_start(inode, EXT4_HT_TRUNCATE,
Jan Kara65db8692019-11-05 17:44:12 +0100253 ext4_blocks_for_truncate(inode) + extra_credits - 3);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700254 if (IS_ERR(handle)) {
Theodore Ts'obc965ab2008-08-02 21:10:38 -0400255 ext4_std_error(inode->i_sb, PTR_ERR(handle));
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700256 /*
257 * If we're going to skip the normal cleanup, we still need to
258 * make sure that the in-core orphan linked list is properly
259 * cleaned up.
260 */
Mingming Cao617ba132006-10-11 01:20:53 -0700261 ext4_orphan_del(NULL, inode);
Jan Kara46e294e2020-11-27 12:06:49 +0100262 if (freeze_protected)
263 sb_end_intwrite(inode->i_sb);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700264 goto no_delete;
265 }
Tahsin Erdogan30a7eb92017-06-22 11:42:09 -0400266
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700267 if (IS_SYNC(inode))
Frank Mayhar03901312009-01-07 00:06:22 -0500268 ext4_handle_sync(handle);
Tahsin Erdogan407cd7f2017-07-04 00:11:21 -0400269
270 /*
271 * Set inode->i_size to 0 before calling ext4_truncate(). We need
272 * special handling of symlinks here because i_size is used to
273 * determine whether ext4_inode_info->i_data contains symlink data or
274 * block mappings. Setting i_size to 0 will remove its fast symlink
275 * status. Erase i_data so that it becomes a valid empty block map.
276 */
277 if (ext4_inode_is_fast_symlink(inode))
278 memset(EXT4_I(inode)->i_data, 0, sizeof(EXT4_I(inode)->i_data));
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700279 inode->i_size = 0;
Theodore Ts'obc965ab2008-08-02 21:10:38 -0400280 err = ext4_mark_inode_dirty(handle, inode);
281 if (err) {
Eric Sandeen12062dd2010-02-15 14:19:27 -0500282 ext4_warning(inode->i_sb,
Theodore Ts'obc965ab2008-08-02 21:10:38 -0400283 "couldn't mark inode dirty (err %d)", err);
284 goto stop_handle;
285 }
Theodore Ts'o2c98eb52016-11-13 22:02:26 -0500286 if (inode->i_blocks) {
287 err = ext4_truncate(inode);
288 if (err) {
Theodore Ts'o54d3adb2020-03-28 19:33:43 -0400289 ext4_error_err(inode->i_sb, -err,
290 "couldn't truncate inode %lu (err %d)",
291 inode->i_ino, err);
Theodore Ts'o2c98eb52016-11-13 22:02:26 -0500292 goto stop_handle;
293 }
294 }
Theodore Ts'obc965ab2008-08-02 21:10:38 -0400295
Tahsin Erdogan30a7eb92017-06-22 11:42:09 -0400296 /* Remove xattr references. */
297 err = ext4_xattr_delete_inode(handle, inode, &ea_inode_array,
298 extra_credits);
299 if (err) {
300 ext4_warning(inode->i_sb, "xattr delete (err %d)", err);
301stop_handle:
302 ext4_journal_stop(handle);
303 ext4_orphan_del(NULL, inode);
Jan Kara46e294e2020-11-27 12:06:49 +0100304 if (freeze_protected)
305 sb_end_intwrite(inode->i_sb);
Tahsin Erdogan30a7eb92017-06-22 11:42:09 -0400306 ext4_xattr_inode_array_free(ea_inode_array);
307 goto no_delete;
Theodore Ts'obc965ab2008-08-02 21:10:38 -0400308 }
309
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700310 /*
Mingming Cao617ba132006-10-11 01:20:53 -0700311 * Kill off the orphan record which ext4_truncate created.
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700312 * AKPM: I think this can be inside the above `if'.
Mingming Cao617ba132006-10-11 01:20:53 -0700313 * Note that ext4_orphan_del() has to be able to cope with the
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700314 * deletion of a non-existent orphan - this is because we don't
Mingming Cao617ba132006-10-11 01:20:53 -0700315 * know if ext4_truncate() actually created an orphan record.
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700316 * (Well, we could do this if we need to, but heck - it works)
317 */
Mingming Cao617ba132006-10-11 01:20:53 -0700318 ext4_orphan_del(handle, inode);
Arnd Bergmann5ffff832018-07-29 15:50:00 -0400319 EXT4_I(inode)->i_dtime = (__u32)ktime_get_real_seconds();
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700320
321 /*
322 * One subtle ordering requirement: if anything has gone wrong
323 * (transaction abort, IO errors, whatever), then we can still
324 * do these next steps (the fs will already have been marked as
325 * having errors), but we can't free the inode if the mark_dirty
326 * fails.
327 */
Mingming Cao617ba132006-10-11 01:20:53 -0700328 if (ext4_mark_inode_dirty(handle, inode))
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700329 /* If that failed, just do the required in-core inode clear. */
Al Viro0930fcc2010-06-07 13:16:22 -0400330 ext4_clear_inode(inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700331 else
Mingming Cao617ba132006-10-11 01:20:53 -0700332 ext4_free_inode(handle, inode);
333 ext4_journal_stop(handle);
Jan Kara46e294e2020-11-27 12:06:49 +0100334 if (freeze_protected)
335 sb_end_intwrite(inode->i_sb);
Tahsin Erdogan0421a182017-06-22 10:26:31 -0400336 ext4_xattr_inode_array_free(ea_inode_array);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700337 return;
338no_delete:
Harshad Shirwadkarb21ebf12020-11-05 19:58:51 -0800339 if (!list_empty(&EXT4_I(inode)->i_fc_list))
340 ext4_fc_mark_ineligible(inode->i_sb, EXT4_FC_REASON_NOMEM);
Al Viro0930fcc2010-06-07 13:16:22 -0400341 ext4_clear_inode(inode); /* We must guarantee clearing of inode... */
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700342}
343
Dmitry Monakhova9e7f442009-12-14 15:21:14 +0300344#ifdef CONFIG_QUOTA
345qsize_t *ext4_get_reserved_space(struct inode *inode)
Mingming Cao60e58e02009-01-22 18:13:05 +0100346{
Dmitry Monakhova9e7f442009-12-14 15:21:14 +0300347 return &EXT4_I(inode)->i_reserved_quota;
Mingming Cao60e58e02009-01-22 18:13:05 +0100348}
Dmitry Monakhova9e7f442009-12-14 15:21:14 +0300349#endif
Theodore Ts'o9d0be502010-01-01 02:41:30 -0500350
Aneesh Kumar K.V12219ae2008-07-17 16:12:08 -0400351/*
Theodore Ts'o0637c6f2009-12-30 14:20:45 -0500352 * Called with i_data_sem down, which is important since we can call
353 * ext4_discard_preallocations() from here.
354 */
Aneesh Kumar K.V5f634d02010-01-25 04:00:31 -0500355void ext4_da_update_reserve_space(struct inode *inode,
356 int used, int quota_claim)
Aneesh Kumar K.V12219ae2008-07-17 16:12:08 -0400357{
358 struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb);
Theodore Ts'o0637c6f2009-12-30 14:20:45 -0500359 struct ext4_inode_info *ei = EXT4_I(inode);
Aneesh Kumar K.V12219ae2008-07-17 16:12:08 -0400360
Theodore Ts'o0637c6f2009-12-30 14:20:45 -0500361 spin_lock(&ei->i_block_reservation_lock);
Aditya Kalid8990242011-09-09 19:18:51 -0400362 trace_ext4_da_update_reserve_space(inode, used, quota_claim);
Theodore Ts'o0637c6f2009-12-30 14:20:45 -0500363 if (unlikely(used > ei->i_reserved_data_blocks)) {
Theodore Ts'o8de5c322013-02-14 15:11:41 -0500364 ext4_warning(inode->i_sb, "%s: ino %lu, used %d "
Theodore Ts'o1084f252012-03-19 23:13:43 -0400365 "with only %d reserved data blocks",
Theodore Ts'o0637c6f2009-12-30 14:20:45 -0500366 __func__, inode->i_ino, used,
367 ei->i_reserved_data_blocks);
368 WARN_ON(1);
369 used = ei->i_reserved_data_blocks;
Aneesh Kumar K.V6bc6e632008-10-10 09:39:00 -0400370 }
Aneesh Kumar K.V12219ae2008-07-17 16:12:08 -0400371
Theodore Ts'o0637c6f2009-12-30 14:20:45 -0500372 /* Update per-inode reservations */
373 ei->i_reserved_data_blocks -= used;
Theodore Ts'o71d4f7d2014-07-15 06:02:38 -0400374 percpu_counter_sub(&sbi->s_dirtyclusters_counter, used);
Theodore Ts'o0637c6f2009-12-30 14:20:45 -0500375
chenyichongf9505c72021-05-26 13:29:30 +0800376 spin_unlock(&ei->i_block_reservation_lock);
Mingming Cao60e58e02009-01-22 18:13:05 +0100377
Eric Sandeen72b8ab92010-05-16 11:00:00 -0400378 /* Update quota subsystem for data blocks */
379 if (quota_claim)
Aditya Kali7b415bf2011-09-09 19:04:51 -0400380 dquot_claim_block(inode, EXT4_C2B(sbi, used));
Eric Sandeen72b8ab92010-05-16 11:00:00 -0400381 else {
Aneesh Kumar K.V5f634d02010-01-25 04:00:31 -0500382 /*
383 * We did fallocate with an offset that is already delayed
384 * allocated. So on delayed allocated writeback we should
Eric Sandeen72b8ab92010-05-16 11:00:00 -0400385 * not re-claim the quota for fallocated blocks.
Aneesh Kumar K.V5f634d02010-01-25 04:00:31 -0500386 */
Aditya Kali7b415bf2011-09-09 19:04:51 -0400387 dquot_release_reservation_block(inode, EXT4_C2B(sbi, used));
Aneesh Kumar K.V5f634d02010-01-25 04:00:31 -0500388 }
Aneesh Kumar K.Vd6014302009-03-27 22:36:43 -0400389
390 /*
391 * If we have done all the pending block allocations and if
392 * there aren't any writers on the inode, we can discard the
393 * inode's preallocations.
394 */
Theodore Ts'o0637c6f2009-12-30 14:20:45 -0500395 if ((ei->i_reserved_data_blocks == 0) &&
Nikolay Borisov82dd1242019-02-10 23:04:16 -0500396 !inode_is_open_for_write(inode))
brookxu27bc4462020-08-17 15:36:15 +0800397 ext4_discard_preallocations(inode, 0);
Aneesh Kumar K.V12219ae2008-07-17 16:12:08 -0400398}
399
Theodore Ts'oe29136f2010-06-29 12:54:28 -0400400static int __check_block_validity(struct inode *inode, const char *func,
Theodore Ts'oc398eda2010-07-27 11:56:40 -0400401 unsigned int line,
402 struct ext4_map_blocks *map)
Theodore Ts'o6fd058f2009-05-17 15:38:01 -0400403{
Theodore Ts'o345c0db2019-04-09 23:37:08 -0400404 if (ext4_has_feature_journal(inode->i_sb) &&
405 (inode->i_ino ==
406 le32_to_cpu(EXT4_SB(inode->i_sb)->s_es->s_journal_inum)))
407 return 0;
Jan Karace9f24c2020-07-28 15:04:34 +0200408 if (!ext4_inode_block_valid(inode, map->m_pblk, map->m_len)) {
Theodore Ts'oc398eda2010-07-27 11:56:40 -0400409 ext4_error_inode(inode, func, line, map->m_pblk,
Theodore Ts'obdbd6ce2018-06-15 12:27:16 -0400410 "lblock %lu mapped to illegal pblock %llu "
Theodore Ts'oc398eda2010-07-27 11:56:40 -0400411 "(length %d)", (unsigned long) map->m_lblk,
Theodore Ts'obdbd6ce2018-06-15 12:27:16 -0400412 map->m_pblk, map->m_len);
Darrick J. Wong6a797d22015-10-17 16:16:04 -0400413 return -EFSCORRUPTED;
Theodore Ts'o6fd058f2009-05-17 15:38:01 -0400414 }
415 return 0;
416}
417
Jan Kara53085fa2015-12-07 15:09:35 -0500418int ext4_issue_zeroout(struct inode *inode, ext4_lblk_t lblk, ext4_fsblk_t pblk,
419 ext4_lblk_t len)
420{
421 int ret;
422
Eric Biggers33b4cc22019-12-26 10:10:22 -0600423 if (IS_ENCRYPTED(inode) && S_ISREG(inode->i_mode))
Jaegeuk Kima7550b32016-07-10 14:01:03 -0400424 return fscrypt_zeroout_range(inode, lblk, pblk, len);
Jan Kara53085fa2015-12-07 15:09:35 -0500425
426 ret = sb_issue_zeroout(inode->i_sb, pblk, len, GFP_NOFS);
427 if (ret > 0)
428 ret = 0;
429
430 return ret;
431}
432
Theodore Ts'oe29136f2010-06-29 12:54:28 -0400433#define check_block_validity(inode, map) \
Theodore Ts'oc398eda2010-07-27 11:56:40 -0400434 __check_block_validity((inode), __func__, __LINE__, (map))
Theodore Ts'oe29136f2010-06-29 12:54:28 -0400435
Dmitry Monakhov921f2662013-03-10 21:01:03 -0400436#ifdef ES_AGGRESSIVE_TEST
437static void ext4_map_blocks_es_recheck(handle_t *handle,
438 struct inode *inode,
439 struct ext4_map_blocks *es_map,
440 struct ext4_map_blocks *map,
441 int flags)
442{
443 int retval;
444
445 map->m_flags = 0;
446 /*
447 * There is a race window that the result is not the same.
448 * e.g. xfstests #223 when dioread_nolock enables. The reason
449 * is that we lookup a block mapping in extent status tree with
450 * out taking i_data_sem. So at the time the unwritten extent
451 * could be converted.
452 */
Jan Kara2dcba472015-12-07 15:04:57 -0500453 down_read(&EXT4_I(inode)->i_data_sem);
Dmitry Monakhov921f2662013-03-10 21:01:03 -0400454 if (ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS)) {
Eric Whitney9e524842020-04-15 16:31:39 -0400455 retval = ext4_ext_map_blocks(handle, inode, map, 0);
Dmitry Monakhov921f2662013-03-10 21:01:03 -0400456 } else {
Eric Whitney9e524842020-04-15 16:31:39 -0400457 retval = ext4_ind_map_blocks(handle, inode, map, 0);
Dmitry Monakhov921f2662013-03-10 21:01:03 -0400458 }
Jan Kara2dcba472015-12-07 15:04:57 -0500459 up_read((&EXT4_I(inode)->i_data_sem));
Dmitry Monakhov921f2662013-03-10 21:01:03 -0400460
461 /*
462 * We don't check m_len because extent will be collpased in status
463 * tree. So the m_len might not equal.
464 */
465 if (es_map->m_lblk != map->m_lblk ||
466 es_map->m_flags != map->m_flags ||
467 es_map->m_pblk != map->m_pblk) {
Theodore Ts'obdafe422013-07-13 00:40:31 -0400468 printk("ES cache assertion failed for inode: %lu "
Dmitry Monakhov921f2662013-03-10 21:01:03 -0400469 "es_cached ex [%d/%d/%llu/%x] != "
470 "found ex [%d/%d/%llu/%x] retval %d flags %x\n",
471 inode->i_ino, es_map->m_lblk, es_map->m_len,
472 es_map->m_pblk, es_map->m_flags, map->m_lblk,
473 map->m_len, map->m_pblk, map->m_flags,
474 retval, flags);
475 }
476}
477#endif /* ES_AGGRESSIVE_TEST */
478
Theodore Ts'o55138e0b2009-09-29 13:31:31 -0400479/*
Theodore Ts'oe35fd662010-05-16 19:00:00 -0400480 * The ext4_map_blocks() function tries to look up the requested blocks,
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -0400481 * and returns if the blocks are already mapped.
Mingming Caof5ab0d12008-02-25 15:29:55 -0500482 *
Mingming Caof5ab0d12008-02-25 15:29:55 -0500483 * Otherwise it takes the write lock of the i_data_sem and allocate blocks
484 * and store the allocated blocks in the result buffer head and mark it
485 * mapped.
486 *
Theodore Ts'oe35fd662010-05-16 19:00:00 -0400487 * If file type is extents based, it will call ext4_ext_map_blocks(),
488 * Otherwise, call with ext4_ind_map_blocks() to handle indirect mapping
Mingming Caof5ab0d12008-02-25 15:29:55 -0500489 * based files
490 *
Jan Karafacab4d2016-03-09 22:54:00 -0500491 * On success, it returns the number of blocks being mapped or allocated. if
492 * create==0 and the blocks are pre-allocated and unwritten, the resulting @map
493 * is marked as unwritten. If the create == 1, it will mark @map as mapped.
Mingming Caof5ab0d12008-02-25 15:29:55 -0500494 *
495 * It returns 0 if plain look up failed (blocks have not been allocated), in
Jan Karafacab4d2016-03-09 22:54:00 -0500496 * that case, @map is returned as unmapped but we still do fill map->m_len to
497 * indicate the length of a hole starting at map->m_lblk.
Mingming Caof5ab0d12008-02-25 15:29:55 -0500498 *
499 * It returns the error in case of allocation failure.
500 */
Theodore Ts'oe35fd662010-05-16 19:00:00 -0400501int ext4_map_blocks(handle_t *handle, struct inode *inode,
502 struct ext4_map_blocks *map, int flags)
Aneesh Kumar K.V0e855ac2008-01-28 23:58:26 -0500503{
Zheng Liud100eef2013-02-18 00:29:59 -0500504 struct extent_status es;
Aneesh Kumar K.V0e855ac2008-01-28 23:58:26 -0500505 int retval;
Lukas Czernerb8a86842014-03-18 18:05:35 -0400506 int ret = 0;
Dmitry Monakhov921f2662013-03-10 21:01:03 -0400507#ifdef ES_AGGRESSIVE_TEST
508 struct ext4_map_blocks orig_map;
509
510 memcpy(&orig_map, map, sizeof(*map));
511#endif
Mingming Caof5ab0d12008-02-25 15:29:55 -0500512
Theodore Ts'oe35fd662010-05-16 19:00:00 -0400513 map->m_flags = 0;
Ritesh Harjani70aa1552020-05-10 11:54:55 +0530514 ext_debug(inode, "flag 0x%x, max_blocks %u, logical block %lu\n",
515 flags, map->m_len, (unsigned long) map->m_lblk);
Zheng Liud100eef2013-02-18 00:29:59 -0500516
Theodore Ts'oe861b5e2014-02-20 12:54:05 -0500517 /*
518 * ext4_map_blocks returns an int, and m_len is an unsigned int
519 */
520 if (unlikely(map->m_len > INT_MAX))
521 map->m_len = INT_MAX;
522
Kazuya Mio4adb6ab2014-04-07 10:53:28 -0400523 /* We can handle the block number less than EXT_MAX_BLOCKS */
524 if (unlikely(map->m_lblk >= EXT_MAX_BLOCKS))
Darrick J. Wong6a797d22015-10-17 16:16:04 -0400525 return -EFSCORRUPTED;
Kazuya Mio4adb6ab2014-04-07 10:53:28 -0400526
Zheng Liud100eef2013-02-18 00:29:59 -0500527 /* Lookup extent status tree firstly */
Harshad Shirwadkar8016e292020-10-15 13:37:59 -0700528 if (!(EXT4_SB(inode->i_sb)->s_mount_state & EXT4_FC_REPLAY) &&
529 ext4_es_lookup_extent(inode, map->m_lblk, NULL, &es)) {
Zheng Liud100eef2013-02-18 00:29:59 -0500530 if (ext4_es_is_written(&es) || ext4_es_is_unwritten(&es)) {
531 map->m_pblk = ext4_es_pblock(&es) +
532 map->m_lblk - es.es_lblk;
533 map->m_flags |= ext4_es_is_written(&es) ?
534 EXT4_MAP_MAPPED : EXT4_MAP_UNWRITTEN;
535 retval = es.es_len - (map->m_lblk - es.es_lblk);
536 if (retval > map->m_len)
537 retval = map->m_len;
538 map->m_len = retval;
539 } else if (ext4_es_is_delayed(&es) || ext4_es_is_hole(&es)) {
Jan Karafacab4d2016-03-09 22:54:00 -0500540 map->m_pblk = 0;
541 retval = es.es_len - (map->m_lblk - es.es_lblk);
542 if (retval > map->m_len)
543 retval = map->m_len;
544 map->m_len = retval;
Zheng Liud100eef2013-02-18 00:29:59 -0500545 retval = 0;
546 } else {
Arnd Bergmann1e83bc82019-04-07 12:24:43 -0400547 BUG();
Zheng Liud100eef2013-02-18 00:29:59 -0500548 }
Dmitry Monakhov921f2662013-03-10 21:01:03 -0400549#ifdef ES_AGGRESSIVE_TEST
550 ext4_map_blocks_es_recheck(handle, inode, map,
551 &orig_map, flags);
552#endif
Zheng Liud100eef2013-02-18 00:29:59 -0500553 goto found;
554 }
555
Aneesh Kumar K.V4df3d262008-01-28 23:58:29 -0500556 /*
Theodore Ts'ob920c752009-05-14 00:54:29 -0400557 * Try to see if we can get the block without requesting a new
558 * file system block.
Aneesh Kumar K.V4df3d262008-01-28 23:58:29 -0500559 */
Jan Kara2dcba472015-12-07 15:04:57 -0500560 down_read(&EXT4_I(inode)->i_data_sem);
Dmitry Monakhov12e9b892010-05-16 22:00:00 -0400561 if (ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS)) {
Eric Whitney9e524842020-04-15 16:31:39 -0400562 retval = ext4_ext_map_blocks(handle, inode, map, 0);
Aneesh Kumar K.V0e855ac2008-01-28 23:58:26 -0500563 } else {
Eric Whitney9e524842020-04-15 16:31:39 -0400564 retval = ext4_ind_map_blocks(handle, inode, map, 0);
Aneesh Kumar K.V0e855ac2008-01-28 23:58:26 -0500565 }
Zheng Liuf7fec032013-02-18 00:28:47 -0500566 if (retval > 0) {
Theodore Ts'o3be78c72013-08-16 21:22:41 -0400567 unsigned int status;
Zheng Liuf7fec032013-02-18 00:28:47 -0500568
Zheng Liu44fb851d2013-07-29 12:51:42 -0400569 if (unlikely(retval != map->m_len)) {
570 ext4_warning(inode->i_sb,
571 "ES len assertion failed for inode "
572 "%lu: retval %d != map->m_len %d",
573 inode->i_ino, retval, map->m_len);
574 WARN_ON(1);
Dmitry Monakhov921f2662013-03-10 21:01:03 -0400575 }
Dmitry Monakhov921f2662013-03-10 21:01:03 -0400576
Zheng Liuf7fec032013-02-18 00:28:47 -0500577 status = map->m_flags & EXT4_MAP_UNWRITTEN ?
578 EXTENT_STATUS_UNWRITTEN : EXTENT_STATUS_WRITTEN;
579 if (!(flags & EXT4_GET_BLOCKS_DELALLOC_RESERVE) &&
Lukas Czernerd2dc3172015-05-02 21:36:55 -0400580 !(status & EXTENT_STATUS_WRITTEN) &&
Eric Whitneyad431022018-10-01 14:10:39 -0400581 ext4_es_scan_range(inode, &ext4_es_is_delayed, map->m_lblk,
582 map->m_lblk + map->m_len - 1))
Zheng Liuf7fec032013-02-18 00:28:47 -0500583 status |= EXTENT_STATUS_DELAYED;
584 ret = ext4_es_insert_extent(inode, map->m_lblk,
585 map->m_len, map->m_pblk, status);
586 if (ret < 0)
587 retval = ret;
588 }
Jan Kara2dcba472015-12-07 15:04:57 -0500589 up_read((&EXT4_I(inode)->i_data_sem));
Mingming Caof5ab0d12008-02-25 15:29:55 -0500590
Zheng Liud100eef2013-02-18 00:29:59 -0500591found:
Theodore Ts'oe35fd662010-05-16 19:00:00 -0400592 if (retval > 0 && map->m_flags & EXT4_MAP_MAPPED) {
Lukas Czernerb8a86842014-03-18 18:05:35 -0400593 ret = check_block_validity(inode, map);
Theodore Ts'o6fd058f2009-05-17 15:38:01 -0400594 if (ret != 0)
595 return ret;
596 }
597
Mingming Caof5ab0d12008-02-25 15:29:55 -0500598 /* If it is only a block(s) look up */
Theodore Ts'oc2177052009-05-14 00:58:52 -0400599 if ((flags & EXT4_GET_BLOCKS_CREATE) == 0)
Aneesh Kumar K.V4df3d262008-01-28 23:58:29 -0500600 return retval;
601
602 /*
Mingming Caof5ab0d12008-02-25 15:29:55 -0500603 * Returns if the blocks have already allocated
604 *
605 * Note that if blocks have been preallocated
Tao Madf3ab172011-10-08 15:53:49 -0400606 * ext4_ext_get_block() returns the create = 0
Mingming Caof5ab0d12008-02-25 15:29:55 -0500607 * with buffer head unmapped.
608 */
Theodore Ts'oe35fd662010-05-16 19:00:00 -0400609 if (retval > 0 && map->m_flags & EXT4_MAP_MAPPED)
Lukas Czernerb8a86842014-03-18 18:05:35 -0400610 /*
611 * If we need to convert extent to unwritten
612 * we continue and do the actual work in
613 * ext4_ext_map_blocks()
614 */
615 if (!(flags & EXT4_GET_BLOCKS_CONVERT_UNWRITTEN))
616 return retval;
Mingming Caof5ab0d12008-02-25 15:29:55 -0500617
618 /*
Zheng Liua25a4e12013-02-18 00:28:04 -0500619 * Here we clear m_flags because after allocating an new extent,
620 * it will be set again.
Aneesh Kumar K.V2a8964d2009-05-14 17:05:39 -0400621 */
Zheng Liua25a4e12013-02-18 00:28:04 -0500622 map->m_flags &= ~EXT4_MAP_FLAGS;
Aneesh Kumar K.V2a8964d2009-05-14 17:05:39 -0400623
624 /*
Lukas Czerner556615d2014-04-20 23:45:47 -0400625 * New blocks allocate and/or writing to unwritten extent
Mingming Caof5ab0d12008-02-25 15:29:55 -0500626 * will possibly result in updating i_data, so we take
Seunghun Leed91bd2c2014-09-01 22:15:30 -0400627 * the write lock of i_data_sem, and call get_block()
Mingming Caof5ab0d12008-02-25 15:29:55 -0500628 * with create == 1 flag.
Aneesh Kumar K.V4df3d262008-01-28 23:58:29 -0500629 */
Lukas Czernerc8b459f2014-05-12 12:55:07 -0400630 down_write(&EXT4_I(inode)->i_data_sem);
Mingming Caod2a17632008-07-14 17:52:37 -0400631
632 /*
Aneesh Kumar K.V4df3d262008-01-28 23:58:29 -0500633 * We need to check for EXT4 here because migrate
634 * could have changed the inode type in between
635 */
Dmitry Monakhov12e9b892010-05-16 22:00:00 -0400636 if (ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS)) {
Theodore Ts'oe35fd662010-05-16 19:00:00 -0400637 retval = ext4_ext_map_blocks(handle, inode, map, flags);
Aneesh Kumar K.V0e855ac2008-01-28 23:58:26 -0500638 } else {
Theodore Ts'oe35fd662010-05-16 19:00:00 -0400639 retval = ext4_ind_map_blocks(handle, inode, map, flags);
Aneesh Kumar K.V267e4db2008-04-29 08:11:12 -0400640
Theodore Ts'oe35fd662010-05-16 19:00:00 -0400641 if (retval > 0 && map->m_flags & EXT4_MAP_NEW) {
Aneesh Kumar K.V267e4db2008-04-29 08:11:12 -0400642 /*
643 * We allocated new blocks which will result in
644 * i_data's format changing. Force the migrate
645 * to fail by clearing migrate flags
646 */
Theodore Ts'o19f5fb72010-01-24 14:34:07 -0500647 ext4_clear_inode_state(inode, EXT4_STATE_EXT_MIGRATE);
Aneesh Kumar K.V267e4db2008-04-29 08:11:12 -0400648 }
Mingming Caod2a17632008-07-14 17:52:37 -0400649
Aneesh Kumar K.V5f634d02010-01-25 04:00:31 -0500650 /*
651 * Update reserved blocks/metadata blocks after successful
652 * block allocation which had been deferred till now. We don't
653 * support fallocate for non extent files. So we can update
654 * reserve space here.
655 */
656 if ((retval > 0) &&
Aneesh Kumar K.V1296cc82010-01-15 01:27:59 -0500657 (flags & EXT4_GET_BLOCKS_DELALLOC_RESERVE))
Aneesh Kumar K.V5f634d02010-01-25 04:00:31 -0500658 ext4_da_update_reserve_space(inode, retval, 1);
659 }
Theodore Ts'o2ac3b6e2009-05-14 13:57:08 -0400660
Zheng Liuf7fec032013-02-18 00:28:47 -0500661 if (retval > 0) {
Theodore Ts'o3be78c72013-08-16 21:22:41 -0400662 unsigned int status;
Zheng Liuf7fec032013-02-18 00:28:47 -0500663
Zheng Liu44fb851d2013-07-29 12:51:42 -0400664 if (unlikely(retval != map->m_len)) {
665 ext4_warning(inode->i_sb,
666 "ES len assertion failed for inode "
667 "%lu: retval %d != map->m_len %d",
668 inode->i_ino, retval, map->m_len);
669 WARN_ON(1);
Dmitry Monakhov921f2662013-03-10 21:01:03 -0400670 }
Dmitry Monakhov921f2662013-03-10 21:01:03 -0400671
Zheng Liuadb23552013-03-10 21:13:05 -0400672 /*
Jan Karac86d8db2015-12-07 15:10:26 -0500673 * We have to zeroout blocks before inserting them into extent
674 * status tree. Otherwise someone could look them up there and
Jan Kara9b623df2016-09-30 02:02:29 -0400675 * use them before they are really zeroed. We also have to
676 * unmap metadata before zeroing as otherwise writeback can
677 * overwrite zeros with stale data from block device.
Jan Karac86d8db2015-12-07 15:10:26 -0500678 */
679 if (flags & EXT4_GET_BLOCKS_ZERO &&
680 map->m_flags & EXT4_MAP_MAPPED &&
681 map->m_flags & EXT4_MAP_NEW) {
682 ret = ext4_issue_zeroout(inode, map->m_lblk,
683 map->m_pblk, map->m_len);
684 if (ret) {
685 retval = ret;
686 goto out_sem;
687 }
688 }
689
690 /*
Zheng Liuadb23552013-03-10 21:13:05 -0400691 * If the extent has been zeroed out, we don't need to update
692 * extent status tree.
693 */
694 if ((flags & EXT4_GET_BLOCKS_PRE_IO) &&
Theodore Ts'obb5835e2019-08-11 16:32:41 -0400695 ext4_es_lookup_extent(inode, map->m_lblk, NULL, &es)) {
Zheng Liuadb23552013-03-10 21:13:05 -0400696 if (ext4_es_is_written(&es))
Jan Karac86d8db2015-12-07 15:10:26 -0500697 goto out_sem;
Zheng Liuadb23552013-03-10 21:13:05 -0400698 }
Zheng Liuf7fec032013-02-18 00:28:47 -0500699 status = map->m_flags & EXT4_MAP_UNWRITTEN ?
700 EXTENT_STATUS_UNWRITTEN : EXTENT_STATUS_WRITTEN;
701 if (!(flags & EXT4_GET_BLOCKS_DELALLOC_RESERVE) &&
Lukas Czernerd2dc3172015-05-02 21:36:55 -0400702 !(status & EXTENT_STATUS_WRITTEN) &&
Eric Whitneyad431022018-10-01 14:10:39 -0400703 ext4_es_scan_range(inode, &ext4_es_is_delayed, map->m_lblk,
704 map->m_lblk + map->m_len - 1))
Zheng Liuf7fec032013-02-18 00:28:47 -0500705 status |= EXTENT_STATUS_DELAYED;
706 ret = ext4_es_insert_extent(inode, map->m_lblk, map->m_len,
707 map->m_pblk, status);
Jan Karac86d8db2015-12-07 15:10:26 -0500708 if (ret < 0) {
Zheng Liuf7fec032013-02-18 00:28:47 -0500709 retval = ret;
Jan Karac86d8db2015-12-07 15:10:26 -0500710 goto out_sem;
711 }
Aditya Kali5356f2612011-09-09 19:20:51 -0400712 }
713
Jan Karac86d8db2015-12-07 15:10:26 -0500714out_sem:
Aneesh Kumar K.V4df3d262008-01-28 23:58:29 -0500715 up_write((&EXT4_I(inode)->i_data_sem));
Theodore Ts'oe35fd662010-05-16 19:00:00 -0400716 if (retval > 0 && map->m_flags & EXT4_MAP_MAPPED) {
Lukas Czernerb8a86842014-03-18 18:05:35 -0400717 ret = check_block_validity(inode, map);
Theodore Ts'o6fd058f2009-05-17 15:38:01 -0400718 if (ret != 0)
719 return ret;
Jan Kara06bd3c32016-04-24 00:56:03 -0400720
721 /*
722 * Inodes with freshly allocated blocks where contents will be
723 * visible after transaction commit must be on transaction's
724 * ordered data list.
725 */
726 if (map->m_flags & EXT4_MAP_NEW &&
727 !(map->m_flags & EXT4_MAP_UNWRITTEN) &&
728 !(flags & EXT4_GET_BLOCKS_ZERO) &&
Tahsin Erdogan02749a42017-06-22 11:31:25 -0400729 !ext4_is_quota_file(inode) &&
Jan Kara06bd3c32016-04-24 00:56:03 -0400730 ext4_should_order_data(inode)) {
Ross Zwisler73131fb2019-06-20 17:26:26 -0400731 loff_t start_byte =
732 (loff_t)map->m_lblk << inode->i_blkbits;
733 loff_t length = (loff_t)map->m_len << inode->i_blkbits;
734
Jan Karaee0876b2016-04-24 00:56:08 -0400735 if (flags & EXT4_GET_BLOCKS_IO_SUBMIT)
Ross Zwisler73131fb2019-06-20 17:26:26 -0400736 ret = ext4_jbd2_inode_add_wait(handle, inode,
737 start_byte, length);
Jan Karaee0876b2016-04-24 00:56:08 -0400738 else
Ross Zwisler73131fb2019-06-20 17:26:26 -0400739 ret = ext4_jbd2_inode_add_write(handle, inode,
740 start_byte, length);
Jan Kara06bd3c32016-04-24 00:56:03 -0400741 if (ret)
742 return ret;
743 }
Theodore Ts'o6fd058f2009-05-17 15:38:01 -0400744 }
Xin Yin5e4d0eb2021-12-21 10:28:39 +0800745 if (retval > 0 && (map->m_flags & EXT4_MAP_UNWRITTEN ||
746 map->m_flags & EXT4_MAP_MAPPED))
747 ext4_fc_track_range(handle, inode, map->m_lblk,
748 map->m_lblk + map->m_len - 1);
Ritesh Harjaniec8c60b2020-05-10 11:54:52 +0530749 if (retval < 0)
Ritesh Harjani70aa1552020-05-10 11:54:55 +0530750 ext_debug(inode, "failed with err %d\n", retval);
Aneesh Kumar K.V0e855ac2008-01-28 23:58:26 -0500751 return retval;
752}
753
Jan Karaed8ad832016-02-19 00:18:25 -0500754/*
755 * Update EXT4_MAP_FLAGS in bh->b_state. For buffer heads attached to pages
756 * we have to be careful as someone else may be manipulating b_state as well.
757 */
758static void ext4_update_bh_state(struct buffer_head *bh, unsigned long flags)
759{
760 unsigned long old_state;
761 unsigned long new_state;
762
763 flags &= EXT4_MAP_FLAGS;
764
765 /* Dummy buffer_head? Set non-atomically. */
766 if (!bh->b_page) {
767 bh->b_state = (bh->b_state & ~EXT4_MAP_FLAGS) | flags;
768 return;
769 }
770 /*
771 * Someone else may be modifying b_state. Be careful! This is ugly but
772 * once we get rid of using bh as a container for mapping information
773 * to pass to / from get_block functions, this can go away.
774 */
775 do {
776 old_state = READ_ONCE(bh->b_state);
777 new_state = (old_state & ~EXT4_MAP_FLAGS) | flags;
778 } while (unlikely(
779 cmpxchg(&bh->b_state, old_state, new_state) != old_state));
780}
781
Theodore Ts'o2ed88682010-05-16 20:00:00 -0400782static int _ext4_get_block(struct inode *inode, sector_t iblock,
783 struct buffer_head *bh, int flags)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700784{
Theodore Ts'o2ed88682010-05-16 20:00:00 -0400785 struct ext4_map_blocks map;
Jan Karaefe70c22016-03-08 23:35:46 -0500786 int ret = 0;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700787
Tao Ma46c7f252012-12-10 14:04:52 -0500788 if (ext4_has_inline_data(inode))
789 return -ERANGE;
790
Theodore Ts'o2ed88682010-05-16 20:00:00 -0400791 map.m_lblk = iblock;
792 map.m_len = bh->b_size >> inode->i_blkbits;
793
Jan Karaefe70c22016-03-08 23:35:46 -0500794 ret = ext4_map_blocks(ext4_journal_current_handle(), inode, &map,
795 flags);
Jan Kara7fb54092008-02-10 01:08:38 -0500796 if (ret > 0) {
Theodore Ts'o2ed88682010-05-16 20:00:00 -0400797 map_bh(bh, inode->i_sb, map.m_pblk);
Jan Karaed8ad832016-02-19 00:18:25 -0500798 ext4_update_bh_state(bh, map.m_flags);
Theodore Ts'o2ed88682010-05-16 20:00:00 -0400799 bh->b_size = inode->i_sb->s_blocksize * map.m_len;
Jan Kara7fb54092008-02-10 01:08:38 -0500800 ret = 0;
Ross Zwisler547edce2016-11-08 11:30:58 +1100801 } else if (ret == 0) {
802 /* hole case, need to fill in bh->b_size */
803 bh->b_size = inode->i_sb->s_blocksize * map.m_len;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700804 }
805 return ret;
806}
807
Theodore Ts'o2ed88682010-05-16 20:00:00 -0400808int ext4_get_block(struct inode *inode, sector_t iblock,
809 struct buffer_head *bh, int create)
810{
811 return _ext4_get_block(inode, iblock, bh,
812 create ? EXT4_GET_BLOCKS_CREATE : 0);
813}
814
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700815/*
Jan Kara705965b2016-03-08 23:08:10 -0500816 * Get block function used when preparing for buffered write if we require
817 * creating an unwritten extent if blocks haven't been allocated. The extent
818 * will be converted to written after the IO is complete.
819 */
820int ext4_get_block_unwritten(struct inode *inode, sector_t iblock,
821 struct buffer_head *bh_result, int create)
822{
823 ext4_debug("ext4_get_block_unwritten: inode %lu, create flag %d\n",
824 inode->i_ino, create);
825 return _ext4_get_block(inode, iblock, bh_result,
826 EXT4_GET_BLOCKS_IO_CREATE_EXT);
827}
828
Jan Karaefe70c22016-03-08 23:35:46 -0500829/* Maximum number of blocks we map for direct IO at once. */
830#define DIO_MAX_BLOCKS 4096
831
Jan Karae84dfbe2016-04-01 02:07:22 -0400832/*
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700833 * `handle' can be NULL if create is zero
834 */
Mingming Cao617ba132006-10-11 01:20:53 -0700835struct buffer_head *ext4_getblk(handle_t *handle, struct inode *inode,
Theodore Ts'oc5e298a2015-06-21 01:25:29 -0400836 ext4_lblk_t block, int map_flags)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700837{
Theodore Ts'o2ed88682010-05-16 20:00:00 -0400838 struct ext4_map_blocks map;
839 struct buffer_head *bh;
Theodore Ts'oc5e298a2015-06-21 01:25:29 -0400840 int create = map_flags & EXT4_GET_BLOCKS_CREATE;
Theodore Ts'o10560082014-08-29 20:51:32 -0400841 int err;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700842
Chunguang Xu837c23f2020-11-07 23:58:11 +0800843 ASSERT((EXT4_SB(inode->i_sb)->s_mount_state & EXT4_FC_REPLAY)
844 || handle != NULL || create == 0);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700845
Theodore Ts'o2ed88682010-05-16 20:00:00 -0400846 map.m_lblk = block;
847 map.m_len = 1;
Theodore Ts'oc5e298a2015-06-21 01:25:29 -0400848 err = ext4_map_blocks(handle, inode, &map, map_flags);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700849
Theodore Ts'o10560082014-08-29 20:51:32 -0400850 if (err == 0)
851 return create ? ERR_PTR(-ENOSPC) : NULL;
Theodore Ts'o2ed88682010-05-16 20:00:00 -0400852 if (err < 0)
Theodore Ts'o10560082014-08-29 20:51:32 -0400853 return ERR_PTR(err);
Theodore Ts'o2ed88682010-05-16 20:00:00 -0400854
855 bh = sb_getblk(inode->i_sb, map.m_pblk);
Theodore Ts'o10560082014-08-29 20:51:32 -0400856 if (unlikely(!bh))
857 return ERR_PTR(-ENOMEM);
Theodore Ts'o2ed88682010-05-16 20:00:00 -0400858 if (map.m_flags & EXT4_MAP_NEW) {
Chunguang Xu837c23f2020-11-07 23:58:11 +0800859 ASSERT(create != 0);
860 ASSERT((EXT4_SB(inode->i_sb)->s_mount_state & EXT4_FC_REPLAY)
861 || (handle != NULL));
Theodore Ts'o2ed88682010-05-16 20:00:00 -0400862
863 /*
864 * Now that we do not always journal data, we should
865 * keep in mind whether this should always journal the
866 * new buffer as metadata. For now, regular file
867 * writes use ext4_get_block instead, so it's not a
868 * problem.
869 */
870 lock_buffer(bh);
871 BUFFER_TRACE(bh, "call get_create_access");
Jan Kara188c2992021-08-16 11:57:04 +0200872 err = ext4_journal_get_create_access(handle, inode->i_sb, bh,
873 EXT4_JTR_NONE);
Theodore Ts'o10560082014-08-29 20:51:32 -0400874 if (unlikely(err)) {
875 unlock_buffer(bh);
876 goto errout;
877 }
878 if (!buffer_uptodate(bh)) {
Theodore Ts'o2ed88682010-05-16 20:00:00 -0400879 memset(bh->b_data, 0, inode->i_sb->s_blocksize);
880 set_buffer_uptodate(bh);
881 }
882 unlock_buffer(bh);
883 BUFFER_TRACE(bh, "call ext4_handle_dirty_metadata");
884 err = ext4_handle_dirty_metadata(handle, inode, bh);
Theodore Ts'o10560082014-08-29 20:51:32 -0400885 if (unlikely(err))
886 goto errout;
887 } else
Theodore Ts'o2ed88682010-05-16 20:00:00 -0400888 BUFFER_TRACE(bh, "not a new buffer");
Theodore Ts'o2ed88682010-05-16 20:00:00 -0400889 return bh;
Theodore Ts'o10560082014-08-29 20:51:32 -0400890errout:
891 brelse(bh);
892 return ERR_PTR(err);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700893}
894
Mingming Cao617ba132006-10-11 01:20:53 -0700895struct buffer_head *ext4_bread(handle_t *handle, struct inode *inode,
Theodore Ts'oc5e298a2015-06-21 01:25:29 -0400896 ext4_lblk_t block, int map_flags)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700897{
Theodore Ts'oaf5bc922008-09-08 22:25:24 -0400898 struct buffer_head *bh;
zhangyi (F)2d069c02020-09-24 15:33:33 +0800899 int ret;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700900
Theodore Ts'oc5e298a2015-06-21 01:25:29 -0400901 bh = ext4_getblk(handle, inode, block, map_flags);
Theodore Ts'o1c215022014-08-29 20:52:15 -0400902 if (IS_ERR(bh))
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700903 return bh;
ZhangXiaoxu7963e5a2019-08-22 23:00:32 -0400904 if (!bh || ext4_buffer_uptodate(bh))
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700905 return bh;
zhangyi (F)2d069c02020-09-24 15:33:33 +0800906
907 ret = ext4_read_bh_lock(bh, REQ_META | REQ_PRIO, true);
908 if (ret) {
909 put_bh(bh);
910 return ERR_PTR(ret);
911 }
912 return bh;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700913}
914
Tahsin Erdogan9699d4f2017-08-06 00:07:01 -0400915/* Read a contiguous batch of blocks. */
916int ext4_bread_batch(struct inode *inode, ext4_lblk_t block, int bh_count,
917 bool wait, struct buffer_head **bhs)
918{
919 int i, err;
920
921 for (i = 0; i < bh_count; i++) {
922 bhs[i] = ext4_getblk(NULL, inode, block + i, 0 /* map_flags */);
923 if (IS_ERR(bhs[i])) {
924 err = PTR_ERR(bhs[i]);
925 bh_count = i;
926 goto out_brelse;
927 }
928 }
929
930 for (i = 0; i < bh_count; i++)
931 /* Note that NULL bhs[i] is valid because of holes. */
zhangyi (F)2d069c02020-09-24 15:33:33 +0800932 if (bhs[i] && !ext4_buffer_uptodate(bhs[i]))
933 ext4_read_bh_lock(bhs[i], REQ_META | REQ_PRIO, false);
Tahsin Erdogan9699d4f2017-08-06 00:07:01 -0400934
935 if (!wait)
936 return 0;
937
938 for (i = 0; i < bh_count; i++)
939 if (bhs[i])
940 wait_on_buffer(bhs[i]);
941
942 for (i = 0; i < bh_count; i++) {
943 if (bhs[i] && !buffer_uptodate(bhs[i])) {
944 err = -EIO;
945 goto out_brelse;
946 }
947 }
948 return 0;
949
950out_brelse:
951 for (i = 0; i < bh_count; i++) {
952 brelse(bhs[i]);
953 bhs[i] = NULL;
954 }
955 return err;
956}
957
Jan Kara188c2992021-08-16 11:57:04 +0200958int ext4_walk_page_buffers(handle_t *handle, struct inode *inode,
Tao Maf19d5872012-12-10 14:05:51 -0500959 struct buffer_head *head,
960 unsigned from,
961 unsigned to,
962 int *partial,
Jan Kara188c2992021-08-16 11:57:04 +0200963 int (*fn)(handle_t *handle, struct inode *inode,
Tao Maf19d5872012-12-10 14:05:51 -0500964 struct buffer_head *bh))
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700965{
966 struct buffer_head *bh;
967 unsigned block_start, block_end;
968 unsigned blocksize = head->b_size;
969 int err, ret = 0;
970 struct buffer_head *next;
971
Theodore Ts'oaf5bc922008-09-08 22:25:24 -0400972 for (bh = head, block_start = 0;
973 ret == 0 && (bh != head || !block_start);
Theodore Ts'ode9a55b2009-06-14 17:45:34 -0400974 block_start = block_end, bh = next) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700975 next = bh->b_this_page;
976 block_end = block_start + blocksize;
977 if (block_end <= from || block_start >= to) {
978 if (partial && !buffer_uptodate(bh))
979 *partial = 1;
980 continue;
981 }
Jan Kara188c2992021-08-16 11:57:04 +0200982 err = (*fn)(handle, inode, bh);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700983 if (!ret)
984 ret = err;
985 }
986 return ret;
987}
988
989/*
990 * To preserve ordering, it is essential that the hole instantiation and
991 * the data write be encapsulated in a single transaction. We cannot
Mingming Cao617ba132006-10-11 01:20:53 -0700992 * close off a transaction and start a new one between the ext4_get_block()
Mingming Caodab291a2006-10-11 01:21:01 -0700993 * and the commit_write(). So doing the jbd2_journal_start at the start of
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700994 * prepare_write() is the right place.
995 *
Jan Kara36ade452013-01-28 09:30:52 -0500996 * Also, this function can nest inside ext4_writepage(). In that case, we
997 * *know* that ext4_writepage() has generated enough buffer credits to do the
998 * whole page. So we won't block on the journal in that case, which is good,
999 * because the caller may be PF_MEMALLOC.
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001000 *
Mingming Cao617ba132006-10-11 01:20:53 -07001001 * By accident, ext4 can be reentered when a transaction is open via
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001002 * quota file writes. If we were to commit the transaction while thus
1003 * reentered, there can be a deadlock - we would be holding a quota
1004 * lock, and the commit would never complete if another thread had a
1005 * transaction open and was blocking on the quota lock - a ranking
1006 * violation.
1007 *
Mingming Caodab291a2006-10-11 01:21:01 -07001008 * So what we do is to rely on the fact that jbd2_journal_stop/journal_start
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001009 * will _not_ run commit under these circumstances because handle->h_ref
1010 * is elevated. We'll still have enough credits for the tiny quotafile
1011 * write.
1012 */
Jan Kara188c2992021-08-16 11:57:04 +02001013int do_journal_get_write_access(handle_t *handle, struct inode *inode,
Tao Maf19d5872012-12-10 14:05:51 -05001014 struct buffer_head *bh)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001015{
Jan Kara56d35a42010-08-05 14:41:42 -04001016 int dirty = buffer_dirty(bh);
1017 int ret;
1018
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001019 if (!buffer_mapped(bh) || buffer_freed(bh))
1020 return 0;
Jan Kara56d35a42010-08-05 14:41:42 -04001021 /*
Christoph Hellwigebdec242010-10-06 10:47:23 +02001022 * __block_write_begin() could have dirtied some buffers. Clean
Jan Kara56d35a42010-08-05 14:41:42 -04001023 * the dirty bit as jbd2_journal_get_write_access() could complain
1024 * otherwise about fs integrity issues. Setting of the dirty bit
Christoph Hellwigebdec242010-10-06 10:47:23 +02001025 * by __block_write_begin() isn't a real problem here as we clear
Jan Kara56d35a42010-08-05 14:41:42 -04001026 * the bit before releasing a page lock and thus writeback cannot
1027 * ever write the buffer.
1028 */
1029 if (dirty)
1030 clear_buffer_dirty(bh);
liang xie5d601252014-05-12 22:06:43 -04001031 BUFFER_TRACE(bh, "get write access");
Jan Kara188c2992021-08-16 11:57:04 +02001032 ret = ext4_journal_get_write_access(handle, inode->i_sb, bh,
1033 EXT4_JTR_NONE);
Jan Kara56d35a42010-08-05 14:41:42 -04001034 if (!ret && dirty)
1035 ret = ext4_handle_dirty_metadata(handle, NULL, bh);
1036 return ret;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001037}
1038
Chandan Rajendra643fa962018-12-12 15:20:12 +05301039#ifdef CONFIG_FS_ENCRYPTION
Michael Halcrow2058f832015-04-12 00:55:10 -04001040static int ext4_block_write_begin(struct page *page, loff_t pos, unsigned len,
1041 get_block_t *get_block)
1042{
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001043 unsigned from = pos & (PAGE_SIZE - 1);
Michael Halcrow2058f832015-04-12 00:55:10 -04001044 unsigned to = from + len;
1045 struct inode *inode = page->mapping->host;
1046 unsigned block_start, block_end;
1047 sector_t block;
1048 int err = 0;
1049 unsigned blocksize = inode->i_sb->s_blocksize;
1050 unsigned bbits;
Chandan Rajendra0b578f32019-05-20 09:29:50 -07001051 struct buffer_head *bh, *head, *wait[2];
1052 int nr_wait = 0;
1053 int i;
Michael Halcrow2058f832015-04-12 00:55:10 -04001054
1055 BUG_ON(!PageLocked(page));
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001056 BUG_ON(from > PAGE_SIZE);
1057 BUG_ON(to > PAGE_SIZE);
Michael Halcrow2058f832015-04-12 00:55:10 -04001058 BUG_ON(from > to);
1059
1060 if (!page_has_buffers(page))
1061 create_empty_buffers(page, blocksize, 0);
1062 head = page_buffers(page);
1063 bbits = ilog2(blocksize);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001064 block = (sector_t)page->index << (PAGE_SHIFT - bbits);
Michael Halcrow2058f832015-04-12 00:55:10 -04001065
1066 for (bh = head, block_start = 0; bh != head || !block_start;
1067 block++, block_start = block_end, bh = bh->b_this_page) {
1068 block_end = block_start + blocksize;
1069 if (block_end <= from || block_start >= to) {
1070 if (PageUptodate(page)) {
Yang Guo3cd46172021-04-01 15:03:30 +08001071 set_buffer_uptodate(bh);
Michael Halcrow2058f832015-04-12 00:55:10 -04001072 }
1073 continue;
1074 }
1075 if (buffer_new(bh))
1076 clear_buffer_new(bh);
1077 if (!buffer_mapped(bh)) {
1078 WARN_ON(bh->b_size != blocksize);
1079 err = get_block(inode, block, bh, 1);
1080 if (err)
1081 break;
1082 if (buffer_new(bh)) {
Michael Halcrow2058f832015-04-12 00:55:10 -04001083 if (PageUptodate(page)) {
1084 clear_buffer_new(bh);
1085 set_buffer_uptodate(bh);
1086 mark_buffer_dirty(bh);
1087 continue;
1088 }
1089 if (block_end > to || block_start < from)
1090 zero_user_segments(page, to, block_end,
1091 block_start, from);
1092 continue;
1093 }
1094 }
1095 if (PageUptodate(page)) {
Yang Guo3cd46172021-04-01 15:03:30 +08001096 set_buffer_uptodate(bh);
Michael Halcrow2058f832015-04-12 00:55:10 -04001097 continue;
1098 }
1099 if (!buffer_uptodate(bh) && !buffer_delay(bh) &&
1100 !buffer_unwritten(bh) &&
1101 (block_start < from || block_end > to)) {
zhangyi (F)2d069c02020-09-24 15:33:33 +08001102 ext4_read_bh_lock(bh, 0, false);
Chandan Rajendra0b578f32019-05-20 09:29:50 -07001103 wait[nr_wait++] = bh;
Michael Halcrow2058f832015-04-12 00:55:10 -04001104 }
1105 }
1106 /*
1107 * If we issued read requests, let them complete.
1108 */
Chandan Rajendra0b578f32019-05-20 09:29:50 -07001109 for (i = 0; i < nr_wait; i++) {
1110 wait_on_buffer(wait[i]);
1111 if (!buffer_uptodate(wait[i]))
Michael Halcrow2058f832015-04-12 00:55:10 -04001112 err = -EIO;
1113 }
Chandan Rajendra7e0785f2019-05-20 09:29:49 -07001114 if (unlikely(err)) {
Michael Halcrow2058f832015-04-12 00:55:10 -04001115 page_zero_new_buffers(page, from, to);
Eric Biggers4f74d152020-07-02 01:56:07 +00001116 } else if (fscrypt_inode_uses_fs_layer_crypto(inode)) {
Chandan Rajendra0b578f32019-05-20 09:29:50 -07001117 for (i = 0; i < nr_wait; i++) {
1118 int err2;
1119
1120 err2 = fscrypt_decrypt_pagecache_blocks(page, blocksize,
1121 bh_offset(wait[i]));
1122 if (err2) {
1123 clear_buffer_uptodate(wait[i]);
1124 err = err2;
1125 }
1126 }
Chandan Rajendra7e0785f2019-05-20 09:29:49 -07001127 }
1128
Michael Halcrow2058f832015-04-12 00:55:10 -04001129 return err;
1130}
1131#endif
1132
Nick Pigginbfc1af62007-10-16 01:25:05 -07001133static int ext4_write_begin(struct file *file, struct address_space *mapping,
Theodore Ts'ode9a55b2009-06-14 17:45:34 -04001134 loff_t pos, unsigned len, unsigned flags,
1135 struct page **pagep, void **fsdata)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001136{
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04001137 struct inode *inode = mapping->host;
Aneesh Kumar K.V1938a152009-06-05 01:00:26 -04001138 int ret, needed_blocks;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001139 handle_t *handle;
1140 int retries = 0;
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04001141 struct page *page;
Theodore Ts'ode9a55b2009-06-14 17:45:34 -04001142 pgoff_t index;
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04001143 unsigned from, to;
Nick Pigginbfc1af62007-10-16 01:25:05 -07001144
Theodore Ts'o0db1ff22017-02-05 01:28:48 -05001145 if (unlikely(ext4_forced_shutdown(EXT4_SB(inode->i_sb))))
1146 return -EIO;
1147
Theodore Ts'o9bffad12009-06-17 11:48:11 -04001148 trace_ext4_write_begin(inode, pos, len, flags);
Aneesh Kumar K.V1938a152009-06-05 01:00:26 -04001149 /*
1150 * Reserve one block more for addition to orphan list in case
1151 * we allocate blocks but write fails for some reason
1152 */
1153 needed_blocks = ext4_writepage_trans_blocks(inode) + 1;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001154 index = pos >> PAGE_SHIFT;
1155 from = pos & (PAGE_SIZE - 1);
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04001156 to = from + len;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001157
Tao Maf19d5872012-12-10 14:05:51 -05001158 if (ext4_test_inode_state(inode, EXT4_STATE_MAY_INLINE_DATA)) {
1159 ret = ext4_try_to_write_inline_data(mapping, inode, pos, len,
1160 flags, pagep);
1161 if (ret < 0)
Theodore Ts'o47564bf2013-02-09 09:24:14 -05001162 return ret;
1163 if (ret == 1)
1164 return 0;
Tao Maf19d5872012-12-10 14:05:51 -05001165 }
1166
Theodore Ts'o47564bf2013-02-09 09:24:14 -05001167 /*
1168 * grab_cache_page_write_begin() can take a long time if the
1169 * system is thrashing due to memory pressure, or if the page
1170 * is being written back. So grab it first before we start
1171 * the transaction handle. This also allows us to allocate
1172 * the page (if needed) without using GFP_NOFS.
1173 */
1174retry_grab:
Nick Piggin54566b22009-01-04 12:00:53 -08001175 page = grab_cache_page_write_begin(mapping, index, flags);
Theodore Ts'o47564bf2013-02-09 09:24:14 -05001176 if (!page)
1177 return -ENOMEM;
1178 unlock_page(page);
1179
1180retry_journal:
Theodore Ts'o9924a922013-02-08 21:59:22 -05001181 handle = ext4_journal_start(inode, EXT4_HT_WRITE_PAGE, needed_blocks);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001182 if (IS_ERR(handle)) {
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001183 put_page(page);
Theodore Ts'o47564bf2013-02-09 09:24:14 -05001184 return PTR_ERR(handle);
Jan Karacf108bc2008-07-11 19:27:31 -04001185 }
Tao Maf19d5872012-12-10 14:05:51 -05001186
Theodore Ts'o47564bf2013-02-09 09:24:14 -05001187 lock_page(page);
1188 if (page->mapping != mapping) {
1189 /* The page got truncated from under us */
1190 unlock_page(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001191 put_page(page);
Jan Karacf108bc2008-07-11 19:27:31 -04001192 ext4_journal_stop(handle);
Theodore Ts'o47564bf2013-02-09 09:24:14 -05001193 goto retry_grab;
Jan Karacf108bc2008-07-11 19:27:31 -04001194 }
Dmitry Monakhov7afe5aa2013-08-28 14:30:47 -04001195 /* In case writeback began while the page was unlocked */
1196 wait_for_stable_page(page);
Jan Karacf108bc2008-07-11 19:27:31 -04001197
Chandan Rajendra643fa962018-12-12 15:20:12 +05301198#ifdef CONFIG_FS_ENCRYPTION
Michael Halcrow2058f832015-04-12 00:55:10 -04001199 if (ext4_should_dioread_nolock(inode))
1200 ret = ext4_block_write_begin(page, pos, len,
Jan Kara705965b2016-03-08 23:08:10 -05001201 ext4_get_block_unwritten);
Michael Halcrow2058f832015-04-12 00:55:10 -04001202 else
1203 ret = ext4_block_write_begin(page, pos, len,
1204 ext4_get_block);
1205#else
Jiaying Zhang744692d2010-03-04 16:14:02 -05001206 if (ext4_should_dioread_nolock(inode))
Jan Kara705965b2016-03-08 23:08:10 -05001207 ret = __block_write_begin(page, pos, len,
1208 ext4_get_block_unwritten);
Jiaying Zhang744692d2010-03-04 16:14:02 -05001209 else
Christoph Hellwig6e1db882010-06-04 11:29:57 +02001210 ret = __block_write_begin(page, pos, len, ext4_get_block);
Michael Halcrow2058f832015-04-12 00:55:10 -04001211#endif
Nick Pigginbfc1af62007-10-16 01:25:05 -07001212 if (!ret && ext4_should_journal_data(inode)) {
Jan Kara188c2992021-08-16 11:57:04 +02001213 ret = ext4_walk_page_buffers(handle, inode,
1214 page_buffers(page), from, to, NULL,
Tao Maf19d5872012-12-10 14:05:51 -05001215 do_journal_get_write_access);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001216 }
Nick Pigginbfc1af62007-10-16 01:25:05 -07001217
1218 if (ret) {
Eric Biggersc93d8f82019-07-22 09:26:24 -07001219 bool extended = (pos + len > inode->i_size) &&
1220 !ext4_verity_in_progress(inode);
1221
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04001222 unlock_page(page);
Aneesh Kumar K.Vae4d5372008-09-13 13:10:25 -04001223 /*
Christoph Hellwig6e1db882010-06-04 11:29:57 +02001224 * __block_write_begin may have instantiated a few blocks
Aneesh Kumar K.Vae4d5372008-09-13 13:10:25 -04001225 * outside i_size. Trim these off again. Don't need
1226 * i_size_read because we hold i_mutex.
Aneesh Kumar K.V1938a152009-06-05 01:00:26 -04001227 *
1228 * Add inode to orphan list in case we crash before
1229 * truncate finishes
Aneesh Kumar K.Vae4d5372008-09-13 13:10:25 -04001230 */
Eric Biggersc93d8f82019-07-22 09:26:24 -07001231 if (extended && ext4_can_truncate(inode))
Aneesh Kumar K.V1938a152009-06-05 01:00:26 -04001232 ext4_orphan_add(handle, inode);
1233
1234 ext4_journal_stop(handle);
Eric Biggersc93d8f82019-07-22 09:26:24 -07001235 if (extended) {
Jan Karab9a42072009-12-08 21:24:33 -05001236 ext4_truncate_failed_write(inode);
Theodore Ts'ode9a55b2009-06-14 17:45:34 -04001237 /*
Jan Karaffacfa72009-07-13 16:22:22 -04001238 * If truncate failed early the inode might
Aneesh Kumar K.V1938a152009-06-05 01:00:26 -04001239 * still be on the orphan list; we need to
1240 * make sure the inode is removed from the
1241 * orphan list in that case.
1242 */
1243 if (inode->i_nlink)
1244 ext4_orphan_del(NULL, inode);
1245 }
Nick Pigginbfc1af62007-10-16 01:25:05 -07001246
Theodore Ts'o47564bf2013-02-09 09:24:14 -05001247 if (ret == -ENOSPC &&
1248 ext4_should_retry_alloc(inode->i_sb, &retries))
1249 goto retry_journal;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001250 put_page(page);
Theodore Ts'o47564bf2013-02-09 09:24:14 -05001251 return ret;
1252 }
1253 *pagep = page;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001254 return ret;
1255}
1256
Nick Pigginbfc1af62007-10-16 01:25:05 -07001257/* For write_end() in data=journal mode */
Jan Kara188c2992021-08-16 11:57:04 +02001258static int write_end_fn(handle_t *handle, struct inode *inode,
1259 struct buffer_head *bh)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001260{
Theodore Ts'o13fca322013-04-21 16:45:54 -04001261 int ret;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001262 if (!buffer_mapped(bh) || buffer_freed(bh))
1263 return 0;
1264 set_buffer_uptodate(bh);
Theodore Ts'o13fca322013-04-21 16:45:54 -04001265 ret = ext4_handle_dirty_metadata(handle, NULL, bh);
1266 clear_buffer_meta(bh);
1267 clear_buffer_prio(bh);
1268 return ret;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001269}
1270
Zheng Liueed43332013-04-03 12:41:17 -04001271/*
1272 * We need to pick up the new inode size which generic_commit_write gave us
1273 * `file' can be NULL - eg, when called from page_symlink().
1274 *
1275 * ext4 never places buffers on inode->i_mapping->private_list. metadata
1276 * buffers are managed internally.
1277 */
1278static int ext4_write_end(struct file *file,
1279 struct address_space *mapping,
1280 loff_t pos, unsigned len, unsigned copied,
1281 struct page *page, void *fsdata)
Aneesh Kumar K.Vf8514082009-06-05 00:56:49 -04001282{
Aneesh Kumar K.Vf8514082009-06-05 00:56:49 -04001283 handle_t *handle = ext4_journal_current_handle();
Zheng Liueed43332013-04-03 12:41:17 -04001284 struct inode *inode = mapping->host;
Xiaoguang Wang05726392015-02-12 23:00:17 -05001285 loff_t old_size = inode->i_size;
Zheng Liueed43332013-04-03 12:41:17 -04001286 int ret = 0, ret2;
1287 int i_size_changed = 0;
Eric Biggersc93d8f82019-07-22 09:26:24 -07001288 bool verity = ext4_verity_in_progress(inode);
Zheng Liueed43332013-04-03 12:41:17 -04001289
1290 trace_ext4_write_end(inode, pos, len, copied);
Zhang Yi6984aef2021-07-16 20:20:23 +08001291
1292 if (ext4_has_inline_data(inode))
1293 return ext4_write_inline_data_end(inode, pos, len, copied, page);
1294
1295 copied = block_write_end(file, mapping, pos, len, copied, page, fsdata);
Aneesh Kumar K.Vf8514082009-06-05 00:56:49 -04001296 /*
Dmitry Monakhov4631dbf2014-08-23 17:48:28 -04001297 * it's important to update i_size while still holding page lock:
Aneesh Kumar K.Vf8514082009-06-05 00:56:49 -04001298 * page writeout could otherwise come in and zero beyond i_size.
Eric Biggersc93d8f82019-07-22 09:26:24 -07001299 *
1300 * If FS_IOC_ENABLE_VERITY is running on this inode, then Merkle tree
1301 * blocks are being written past EOF, so skip the i_size update.
Aneesh Kumar K.Vf8514082009-06-05 00:56:49 -04001302 */
Eric Biggersc93d8f82019-07-22 09:26:24 -07001303 if (!verity)
1304 i_size_changed = ext4_update_inode_size(inode, pos + copied);
Aneesh Kumar K.Vf8514082009-06-05 00:56:49 -04001305 unlock_page(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001306 put_page(page);
Aneesh Kumar K.Vf8514082009-06-05 00:56:49 -04001307
Eric Biggersc93d8f82019-07-22 09:26:24 -07001308 if (old_size < pos && !verity)
Xiaoguang Wang05726392015-02-12 23:00:17 -05001309 pagecache_isize_extended(inode, old_size, pos);
Aneesh Kumar K.Vf8514082009-06-05 00:56:49 -04001310 /*
1311 * Don't mark the inode dirty under page lock. First, it unnecessarily
1312 * makes the holding time of page lock longer. Second, it forces lock
1313 * ordering of page lock and transaction start for journaling
1314 * filesystems.
1315 */
Zhang Yi6984aef2021-07-16 20:20:23 +08001316 if (i_size_changed)
Harshad Shirwadkar4209ae12020-04-26 18:34:37 -07001317 ret = ext4_mark_inode_dirty(handle, inode);
Aneesh Kumar K.Vf8514082009-06-05 00:56:49 -04001318
Eric Biggersc93d8f82019-07-22 09:26:24 -07001319 if (pos + len > inode->i_size && !verity && ext4_can_truncate(inode))
Aneesh Kumar K.Vf8514082009-06-05 00:56:49 -04001320 /* if we have allocated more blocks and copied
1321 * less. We will have blocks allocated outside
1322 * inode->i_size. So truncate them
1323 */
1324 ext4_orphan_add(handle, inode);
Zhang Yi55ce2f62021-07-16 20:20:22 +08001325
Mingming Cao617ba132006-10-11 01:20:53 -07001326 ret2 = ext4_journal_stop(handle);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001327 if (!ret)
1328 ret = ret2;
Nick Pigginbfc1af62007-10-16 01:25:05 -07001329
Eric Biggersc93d8f82019-07-22 09:26:24 -07001330 if (pos + len > inode->i_size && !verity) {
Jan Karab9a42072009-12-08 21:24:33 -05001331 ext4_truncate_failed_write(inode);
Theodore Ts'ode9a55b2009-06-14 17:45:34 -04001332 /*
Jan Karaffacfa72009-07-13 16:22:22 -04001333 * If truncate failed early the inode might still be
Aneesh Kumar K.Vf8514082009-06-05 00:56:49 -04001334 * on the orphan list; we need to make sure the inode
1335 * is removed from the orphan list in that case.
1336 */
1337 if (inode->i_nlink)
1338 ext4_orphan_del(NULL, inode);
1339 }
1340
Nick Pigginbfc1af62007-10-16 01:25:05 -07001341 return ret ? ret : copied;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001342}
1343
Theodore Ts'ob90197b2015-10-15 10:29:05 -04001344/*
1345 * This is a private version of page_zero_new_buffers() which doesn't
1346 * set the buffer to be dirty, since in data=journalled mode we need
1347 * to call ext4_handle_dirty_metadata() instead.
1348 */
Jan Kara3b136492017-01-27 14:35:38 -05001349static void ext4_journalled_zero_new_buffers(handle_t *handle,
Jan Kara188c2992021-08-16 11:57:04 +02001350 struct inode *inode,
Jan Kara3b136492017-01-27 14:35:38 -05001351 struct page *page,
1352 unsigned from, unsigned to)
Theodore Ts'ob90197b2015-10-15 10:29:05 -04001353{
1354 unsigned int block_start = 0, block_end;
1355 struct buffer_head *head, *bh;
1356
1357 bh = head = page_buffers(page);
1358 do {
1359 block_end = block_start + bh->b_size;
1360 if (buffer_new(bh)) {
1361 if (block_end > from && block_start < to) {
1362 if (!PageUptodate(page)) {
1363 unsigned start, size;
1364
1365 start = max(from, block_start);
1366 size = min(to, block_end) - start;
1367
1368 zero_user(page, start, size);
Jan Kara188c2992021-08-16 11:57:04 +02001369 write_end_fn(handle, inode, bh);
Theodore Ts'ob90197b2015-10-15 10:29:05 -04001370 }
1371 clear_buffer_new(bh);
1372 }
1373 }
1374 block_start = block_end;
1375 bh = bh->b_this_page;
1376 } while (bh != head);
1377}
1378
Nick Pigginbfc1af62007-10-16 01:25:05 -07001379static int ext4_journalled_write_end(struct file *file,
Theodore Ts'ode9a55b2009-06-14 17:45:34 -04001380 struct address_space *mapping,
1381 loff_t pos, unsigned len, unsigned copied,
1382 struct page *page, void *fsdata)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001383{
Mingming Cao617ba132006-10-11 01:20:53 -07001384 handle_t *handle = ext4_journal_current_handle();
Nick Pigginbfc1af62007-10-16 01:25:05 -07001385 struct inode *inode = mapping->host;
Xiaoguang Wang05726392015-02-12 23:00:17 -05001386 loff_t old_size = inode->i_size;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001387 int ret = 0, ret2;
1388 int partial = 0;
Nick Pigginbfc1af62007-10-16 01:25:05 -07001389 unsigned from, to;
Dmitry Monakhov4631dbf2014-08-23 17:48:28 -04001390 int size_changed = 0;
Eric Biggersc93d8f82019-07-22 09:26:24 -07001391 bool verity = ext4_verity_in_progress(inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001392
Theodore Ts'o9bffad12009-06-17 11:48:11 -04001393 trace_ext4_journalled_write_end(inode, pos, len, copied);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001394 from = pos & (PAGE_SIZE - 1);
Nick Pigginbfc1af62007-10-16 01:25:05 -07001395 to = from + len;
1396
Curt Wohlgemuth441c8502011-08-13 11:25:18 -04001397 BUG_ON(!ext4_handle_valid(handle));
1398
Zhang Yi6984aef2021-07-16 20:20:23 +08001399 if (ext4_has_inline_data(inode))
1400 return ext4_write_inline_data_end(inode, pos, len, copied, page);
1401
1402 if (unlikely(copied < len) && !PageUptodate(page)) {
Jan Kara3b136492017-01-27 14:35:38 -05001403 copied = 0;
Jan Kara188c2992021-08-16 11:57:04 +02001404 ext4_journalled_zero_new_buffers(handle, inode, page, from, to);
Jan Kara3b136492017-01-27 14:35:38 -05001405 } else {
1406 if (unlikely(copied < len))
Jan Kara188c2992021-08-16 11:57:04 +02001407 ext4_journalled_zero_new_buffers(handle, inode, page,
Jan Kara3b136492017-01-27 14:35:38 -05001408 from + copied, to);
Jan Kara188c2992021-08-16 11:57:04 +02001409 ret = ext4_walk_page_buffers(handle, inode, page_buffers(page),
1410 from, from + copied, &partial,
Jan Kara3b136492017-01-27 14:35:38 -05001411 write_end_fn);
Tao Ma3fdcfb62012-12-10 14:05:57 -05001412 if (!partial)
1413 SetPageUptodate(page);
1414 }
Eric Biggersc93d8f82019-07-22 09:26:24 -07001415 if (!verity)
1416 size_changed = ext4_update_inode_size(inode, pos + copied);
Theodore Ts'o19f5fb72010-01-24 14:34:07 -05001417 ext4_set_inode_state(inode, EXT4_STATE_JDATA);
Jan Kara2d859db2011-07-26 09:07:11 -04001418 EXT4_I(inode)->i_datasync_tid = handle->h_transaction->t_tid;
Dmitry Monakhov4631dbf2014-08-23 17:48:28 -04001419 unlock_page(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001420 put_page(page);
Dmitry Monakhov4631dbf2014-08-23 17:48:28 -04001421
Eric Biggersc93d8f82019-07-22 09:26:24 -07001422 if (old_size < pos && !verity)
Xiaoguang Wang05726392015-02-12 23:00:17 -05001423 pagecache_isize_extended(inode, old_size, pos);
1424
Zhang Yi6984aef2021-07-16 20:20:23 +08001425 if (size_changed) {
Mingming Cao617ba132006-10-11 01:20:53 -07001426 ret2 = ext4_mark_inode_dirty(handle, inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001427 if (!ret)
1428 ret = ret2;
1429 }
Nick Pigginbfc1af62007-10-16 01:25:05 -07001430
Eric Biggersc93d8f82019-07-22 09:26:24 -07001431 if (pos + len > inode->i_size && !verity && ext4_can_truncate(inode))
Aneesh Kumar K.Vf8514082009-06-05 00:56:49 -04001432 /* if we have allocated more blocks and copied
1433 * less. We will have blocks allocated outside
1434 * inode->i_size. So truncate them
1435 */
1436 ext4_orphan_add(handle, inode);
1437
Mingming Cao617ba132006-10-11 01:20:53 -07001438 ret2 = ext4_journal_stop(handle);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001439 if (!ret)
1440 ret = ret2;
Eric Biggersc93d8f82019-07-22 09:26:24 -07001441 if (pos + len > inode->i_size && !verity) {
Jan Karab9a42072009-12-08 21:24:33 -05001442 ext4_truncate_failed_write(inode);
Theodore Ts'ode9a55b2009-06-14 17:45:34 -04001443 /*
Jan Karaffacfa72009-07-13 16:22:22 -04001444 * If truncate failed early the inode might still be
Aneesh Kumar K.Vf8514082009-06-05 00:56:49 -04001445 * on the orphan list; we need to make sure the inode
1446 * is removed from the orphan list in that case.
1447 */
1448 if (inode->i_nlink)
1449 ext4_orphan_del(NULL, inode);
1450 }
Nick Pigginbfc1af62007-10-16 01:25:05 -07001451
1452 return ret ? ret : copied;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001453}
Mingming Caod2a17632008-07-14 17:52:37 -04001454
Theodore Ts'o9d0be502010-01-01 02:41:30 -05001455/*
Eric Whitneyc27e43a2015-06-21 21:37:05 -04001456 * Reserve space for a single cluster
Theodore Ts'o9d0be502010-01-01 02:41:30 -05001457 */
Eric Whitneyc27e43a2015-06-21 21:37:05 -04001458static int ext4_da_reserve_space(struct inode *inode)
Mingming Caod2a17632008-07-14 17:52:37 -04001459{
Mingming Cao60e58e02009-01-22 18:13:05 +01001460 struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb);
Theodore Ts'o0637c6f2009-12-30 14:20:45 -05001461 struct ext4_inode_info *ei = EXT4_I(inode);
Christoph Hellwig5dd40562010-03-03 09:05:00 -05001462 int ret;
Mingming Caod2a17632008-07-14 17:52:37 -04001463
Mingming Cao60e58e02009-01-22 18:13:05 +01001464 /*
Eric Sandeen72b8ab92010-05-16 11:00:00 -04001465 * We will charge metadata quota at writeout time; this saves
1466 * us from metadata over-estimation, though we may go over by
1467 * a small amount in the end. Here we just reserve for data.
Mingming Cao60e58e02009-01-22 18:13:05 +01001468 */
Aditya Kali7b415bf2011-09-09 19:04:51 -04001469 ret = dquot_reserve_block(inode, EXT4_C2B(sbi, 1));
Christoph Hellwig5dd40562010-03-03 09:05:00 -05001470 if (ret)
1471 return ret;
Theodore Ts'o03179fe2012-07-23 00:00:20 -04001472
Theodore Ts'o03179fe2012-07-23 00:00:20 -04001473 spin_lock(&ei->i_block_reservation_lock);
Theodore Ts'o71d4f7d2014-07-15 06:02:38 -04001474 if (ext4_claim_free_clusters(sbi, 1, 0)) {
Theodore Ts'o03179fe2012-07-23 00:00:20 -04001475 spin_unlock(&ei->i_block_reservation_lock);
Theodore Ts'o03179fe2012-07-23 00:00:20 -04001476 dquot_release_reservation_block(inode, EXT4_C2B(sbi, 1));
Mingming Caod2a17632008-07-14 17:52:37 -04001477 return -ENOSPC;
1478 }
Theodore Ts'o9d0be502010-01-01 02:41:30 -05001479 ei->i_reserved_data_blocks++;
Eric Whitneyc27e43a2015-06-21 21:37:05 -04001480 trace_ext4_da_reserve_space(inode);
Theodore Ts'o0637c6f2009-12-30 14:20:45 -05001481 spin_unlock(&ei->i_block_reservation_lock);
Dmitry Monakhov39bc6802009-12-10 16:36:27 +00001482
Mingming Caod2a17632008-07-14 17:52:37 -04001483 return 0; /* success */
1484}
1485
Eric Whitneyf4567672018-10-01 14:33:24 -04001486void ext4_da_release_space(struct inode *inode, int to_free)
Mingming Caod2a17632008-07-14 17:52:37 -04001487{
1488 struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb);
Theodore Ts'o0637c6f2009-12-30 14:20:45 -05001489 struct ext4_inode_info *ei = EXT4_I(inode);
Mingming Caod2a17632008-07-14 17:52:37 -04001490
Mingming Caocd213222008-08-19 22:16:59 -04001491 if (!to_free)
1492 return; /* Nothing to release, exit */
1493
Mingming Caod2a17632008-07-14 17:52:37 -04001494 spin_lock(&EXT4_I(inode)->i_block_reservation_lock);
Mingming Caocd213222008-08-19 22:16:59 -04001495
Li Zefan5a58ec872010-05-17 02:00:00 -04001496 trace_ext4_da_release_space(inode, to_free);
Theodore Ts'o0637c6f2009-12-30 14:20:45 -05001497 if (unlikely(to_free > ei->i_reserved_data_blocks)) {
Mingming Caocd213222008-08-19 22:16:59 -04001498 /*
Theodore Ts'o0637c6f2009-12-30 14:20:45 -05001499 * if there aren't enough reserved blocks, then the
1500 * counter is messed up somewhere. Since this
1501 * function is called from invalidate page, it's
1502 * harmless to return without any action.
Mingming Caocd213222008-08-19 22:16:59 -04001503 */
Theodore Ts'o8de5c322013-02-14 15:11:41 -05001504 ext4_warning(inode->i_sb, "ext4_da_release_space: "
Theodore Ts'o0637c6f2009-12-30 14:20:45 -05001505 "ino %lu, to_free %d with only %d reserved "
Theodore Ts'o1084f252012-03-19 23:13:43 -04001506 "data blocks", inode->i_ino, to_free,
Theodore Ts'o0637c6f2009-12-30 14:20:45 -05001507 ei->i_reserved_data_blocks);
1508 WARN_ON(1);
1509 to_free = ei->i_reserved_data_blocks;
1510 }
1511 ei->i_reserved_data_blocks -= to_free;
1512
Eric Sandeen72b8ab92010-05-16 11:00:00 -04001513 /* update fs dirty data blocks counter */
Theodore Ts'o57042652011-09-09 18:56:51 -04001514 percpu_counter_sub(&sbi->s_dirtyclusters_counter, to_free);
Mingming Caod2a17632008-07-14 17:52:37 -04001515
Mingming Caod2a17632008-07-14 17:52:37 -04001516 spin_unlock(&EXT4_I(inode)->i_block_reservation_lock);
Mingming Cao60e58e02009-01-22 18:13:05 +01001517
Aditya Kali7b415bf2011-09-09 19:04:51 -04001518 dquot_release_reservation_block(inode, EXT4_C2B(sbi, to_free));
Mingming Caod2a17632008-07-14 17:52:37 -04001519}
1520
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001521/*
Alex Tomas64769242008-07-11 19:27:31 -04001522 * Delayed allocation stuff
1523 */
1524
Jan Kara4e7ea812013-06-04 13:17:40 -04001525struct mpage_da_data {
1526 struct inode *inode;
1527 struct writeback_control *wbc;
Jan Kara6b523df2013-06-04 13:21:11 -04001528
Jan Kara4e7ea812013-06-04 13:17:40 -04001529 pgoff_t first_page; /* The first page to write */
1530 pgoff_t next_page; /* Current page to examine */
1531 pgoff_t last_page; /* Last page to examine */
Aneesh Kumar K.V791b7f02009-01-05 21:50:43 -05001532 /*
Jan Kara4e7ea812013-06-04 13:17:40 -04001533 * Extent to map - this can be after first_page because that can be
1534 * fully mapped. We somewhat abuse m_flags to store whether the extent
1535 * is delalloc or unwritten.
Aneesh Kumar K.V791b7f02009-01-05 21:50:43 -05001536 */
Jan Kara4e7ea812013-06-04 13:17:40 -04001537 struct ext4_map_blocks map;
1538 struct ext4_io_submit io_submit; /* IO submission data */
Jan Karadddbd6a2017-04-30 18:29:10 -04001539 unsigned int do_map:1;
Jan Kara6b8ed622020-05-25 10:12:15 +02001540 unsigned int scanned_until_end:1;
Jan Kara4e7ea812013-06-04 13:17:40 -04001541};
Alex Tomas64769242008-07-11 19:27:31 -04001542
Jan Kara4e7ea812013-06-04 13:17:40 -04001543static void mpage_release_unused_pages(struct mpage_da_data *mpd,
1544 bool invalidate)
Aneesh Kumar K.Vc4a0c462008-08-19 21:08:18 -04001545{
1546 int nr_pages, i;
1547 pgoff_t index, end;
1548 struct pagevec pvec;
1549 struct inode *inode = mpd->inode;
1550 struct address_space *mapping = inode->i_mapping;
Jan Kara4e7ea812013-06-04 13:17:40 -04001551
1552 /* This is necessary when next_page == 0. */
1553 if (mpd->first_page >= mpd->next_page)
1554 return;
Aneesh Kumar K.Vc4a0c462008-08-19 21:08:18 -04001555
Jan Kara6b8ed622020-05-25 10:12:15 +02001556 mpd->scanned_until_end = 0;
Curt Wohlgemuthc7f59382011-02-26 12:27:52 -05001557 index = mpd->first_page;
1558 end = mpd->next_page - 1;
Jan Kara4e7ea812013-06-04 13:17:40 -04001559 if (invalidate) {
1560 ext4_lblk_t start, last;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001561 start = index << (PAGE_SHIFT - inode->i_blkbits);
1562 last = end << (PAGE_SHIFT - inode->i_blkbits);
Jan Kara4e7ea812013-06-04 13:17:40 -04001563 ext4_es_remove_extent(inode, start, last - start + 1);
1564 }
Zheng Liu51865fd2012-11-08 21:57:32 -05001565
Mel Gorman86679822017-11-15 17:37:52 -08001566 pagevec_init(&pvec);
Aneesh Kumar K.Vc4a0c462008-08-19 21:08:18 -04001567 while (index <= end) {
Jan Kara397162f2017-09-06 16:21:43 -07001568 nr_pages = pagevec_lookup_range(&pvec, mapping, &index, end);
Aneesh Kumar K.Vc4a0c462008-08-19 21:08:18 -04001569 if (nr_pages == 0)
1570 break;
1571 for (i = 0; i < nr_pages; i++) {
1572 struct page *page = pvec.pages[i];
Jan Kara2b85a612017-09-06 16:21:30 -07001573
Aneesh Kumar K.Vc4a0c462008-08-19 21:08:18 -04001574 BUG_ON(!PageLocked(page));
1575 BUG_ON(PageWriteback(page));
Jan Kara4e7ea812013-06-04 13:17:40 -04001576 if (invalidate) {
wangguang4e800c02016-09-15 11:32:46 -04001577 if (page_mapped(page))
1578 clear_page_dirty_for_io(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001579 block_invalidatepage(page, 0, PAGE_SIZE);
Jan Kara4e7ea812013-06-04 13:17:40 -04001580 ClearPageUptodate(page);
1581 }
Aneesh Kumar K.Vc4a0c462008-08-19 21:08:18 -04001582 unlock_page(page);
1583 }
Jan Kara9b1d09982010-03-03 16:19:32 -05001584 pagevec_release(&pvec);
Aneesh Kumar K.Vc4a0c462008-08-19 21:08:18 -04001585 }
Aneesh Kumar K.Vc4a0c462008-08-19 21:08:18 -04001586}
1587
Aneesh Kumar K.Vdf222912008-09-08 23:05:34 -04001588static void ext4_print_free_blocks(struct inode *inode)
1589{
1590 struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb);
Theodore Ts'o92b97812012-03-19 23:41:49 -04001591 struct super_block *sb = inode->i_sb;
Lukas Czernerf78ee70d2013-04-03 23:33:30 -04001592 struct ext4_inode_info *ei = EXT4_I(inode);
Theodore Ts'o92b97812012-03-19 23:41:49 -04001593
1594 ext4_msg(sb, KERN_CRIT, "Total free blocks count %lld",
Theodore Ts'o5dee5432011-09-09 19:10:51 -04001595 EXT4_C2B(EXT4_SB(inode->i_sb),
Lukas Czernerf78ee70d2013-04-03 23:33:30 -04001596 ext4_count_free_clusters(sb)));
Theodore Ts'o92b97812012-03-19 23:41:49 -04001597 ext4_msg(sb, KERN_CRIT, "Free/Dirty block details");
1598 ext4_msg(sb, KERN_CRIT, "free_blocks=%lld",
Lukas Czernerf78ee70d2013-04-03 23:33:30 -04001599 (long long) EXT4_C2B(EXT4_SB(sb),
Theodore Ts'o57042652011-09-09 18:56:51 -04001600 percpu_counter_sum(&sbi->s_freeclusters_counter)));
Theodore Ts'o92b97812012-03-19 23:41:49 -04001601 ext4_msg(sb, KERN_CRIT, "dirty_blocks=%lld",
Lukas Czernerf78ee70d2013-04-03 23:33:30 -04001602 (long long) EXT4_C2B(EXT4_SB(sb),
Aditya Kali7b415bf2011-09-09 19:04:51 -04001603 percpu_counter_sum(&sbi->s_dirtyclusters_counter)));
Theodore Ts'o92b97812012-03-19 23:41:49 -04001604 ext4_msg(sb, KERN_CRIT, "Block reservation details");
1605 ext4_msg(sb, KERN_CRIT, "i_reserved_data_blocks=%u",
Lukas Czernerf78ee70d2013-04-03 23:33:30 -04001606 ei->i_reserved_data_blocks);
Aneesh Kumar K.Vdf222912008-09-08 23:05:34 -04001607 return;
1608}
1609
Jan Kara188c2992021-08-16 11:57:04 +02001610static int ext4_bh_delay_or_unwritten(handle_t *handle, struct inode *inode,
1611 struct buffer_head *bh)
Aneesh Kumar K.V29fa89d2009-05-12 16:30:27 -04001612{
Aneesh Kumar K.Vc364b222009-06-14 17:57:10 -04001613 return (buffer_delay(bh) || buffer_unwritten(bh)) && buffer_dirty(bh);
Aneesh Kumar K.V29fa89d2009-05-12 16:30:27 -04001614}
1615
Alex Tomas64769242008-07-11 19:27:31 -04001616/*
Eric Whitney0b02f4c2018-10-01 14:19:37 -04001617 * ext4_insert_delayed_block - adds a delayed block to the extents status
1618 * tree, incrementing the reserved cluster/block
1619 * count or making a pending reservation
1620 * where needed
1621 *
1622 * @inode - file containing the newly added block
1623 * @lblk - logical block to be added
1624 *
1625 * Returns 0 on success, negative error code on failure.
1626 */
1627static int ext4_insert_delayed_block(struct inode *inode, ext4_lblk_t lblk)
1628{
1629 struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb);
1630 int ret;
1631 bool allocated = false;
Jeffle Xu6fed8392021-08-23 14:13:58 +08001632 bool reserved = false;
Eric Whitney0b02f4c2018-10-01 14:19:37 -04001633
1634 /*
1635 * If the cluster containing lblk is shared with a delayed,
1636 * written, or unwritten extent in a bigalloc file system, it's
1637 * already been accounted for and does not need to be reserved.
1638 * A pending reservation must be made for the cluster if it's
1639 * shared with a written or unwritten extent and doesn't already
1640 * have one. Written and unwritten extents can be purged from the
1641 * extents status tree if the system is under memory pressure, so
1642 * it's necessary to examine the extent tree if a search of the
1643 * extents status tree doesn't get a match.
1644 */
1645 if (sbi->s_cluster_ratio == 1) {
1646 ret = ext4_da_reserve_space(inode);
1647 if (ret != 0) /* ENOSPC */
1648 goto errout;
Jeffle Xu6fed8392021-08-23 14:13:58 +08001649 reserved = true;
Eric Whitney0b02f4c2018-10-01 14:19:37 -04001650 } else { /* bigalloc */
1651 if (!ext4_es_scan_clu(inode, &ext4_es_is_delonly, lblk)) {
1652 if (!ext4_es_scan_clu(inode,
1653 &ext4_es_is_mapped, lblk)) {
1654 ret = ext4_clu_mapped(inode,
1655 EXT4_B2C(sbi, lblk));
1656 if (ret < 0)
1657 goto errout;
1658 if (ret == 0) {
1659 ret = ext4_da_reserve_space(inode);
1660 if (ret != 0) /* ENOSPC */
1661 goto errout;
Jeffle Xu6fed8392021-08-23 14:13:58 +08001662 reserved = true;
Eric Whitney0b02f4c2018-10-01 14:19:37 -04001663 } else {
1664 allocated = true;
1665 }
1666 } else {
1667 allocated = true;
1668 }
1669 }
1670 }
1671
1672 ret = ext4_es_insert_delayed_block(inode, lblk, allocated);
Jeffle Xu6fed8392021-08-23 14:13:58 +08001673 if (ret && reserved)
1674 ext4_da_release_space(inode, 1);
Eric Whitney0b02f4c2018-10-01 14:19:37 -04001675
1676errout:
1677 return ret;
1678}
1679
1680/*
Aditya Kali5356f2612011-09-09 19:20:51 -04001681 * This function is grabs code from the very beginning of
1682 * ext4_map_blocks, but assumes that the caller is from delayed write
1683 * time. This function looks up the requested blocks and sets the
1684 * buffer delay bit under the protection of i_data_sem.
1685 */
1686static int ext4_da_map_blocks(struct inode *inode, sector_t iblock,
1687 struct ext4_map_blocks *map,
1688 struct buffer_head *bh)
1689{
Zheng Liud100eef2013-02-18 00:29:59 -05001690 struct extent_status es;
Aditya Kali5356f2612011-09-09 19:20:51 -04001691 int retval;
1692 sector_t invalid_block = ~((sector_t) 0xffff);
Dmitry Monakhov921f2662013-03-10 21:01:03 -04001693#ifdef ES_AGGRESSIVE_TEST
1694 struct ext4_map_blocks orig_map;
1695
1696 memcpy(&orig_map, map, sizeof(*map));
1697#endif
Aditya Kali5356f2612011-09-09 19:20:51 -04001698
1699 if (invalid_block < ext4_blocks_count(EXT4_SB(inode->i_sb)->s_es))
1700 invalid_block = ~0;
1701
1702 map->m_flags = 0;
Ritesh Harjani70aa1552020-05-10 11:54:55 +05301703 ext_debug(inode, "max_blocks %u, logical block %lu\n", map->m_len,
Aditya Kali5356f2612011-09-09 19:20:51 -04001704 (unsigned long) map->m_lblk);
Zheng Liud100eef2013-02-18 00:29:59 -05001705
1706 /* Lookup extent status tree firstly */
Theodore Ts'obb5835e2019-08-11 16:32:41 -04001707 if (ext4_es_lookup_extent(inode, iblock, NULL, &es)) {
Zheng Liud100eef2013-02-18 00:29:59 -05001708 if (ext4_es_is_hole(&es)) {
1709 retval = 0;
Lukas Czernerc8b459f2014-05-12 12:55:07 -04001710 down_read(&EXT4_I(inode)->i_data_sem);
Zheng Liud100eef2013-02-18 00:29:59 -05001711 goto add_delayed;
1712 }
1713
1714 /*
Eric Whitney3eda41d2021-10-12 13:19:01 -04001715 * Delayed extent could be allocated by fallocate.
1716 * So we need to check it.
Zheng Liud100eef2013-02-18 00:29:59 -05001717 */
Eric Whitney3eda41d2021-10-12 13:19:01 -04001718 if (ext4_es_is_delayed(&es) && !ext4_es_is_unwritten(&es)) {
1719 map_bh(bh, inode->i_sb, invalid_block);
1720 set_buffer_new(bh);
1721 set_buffer_delay(bh);
Zheng Liud100eef2013-02-18 00:29:59 -05001722 return 0;
1723 }
1724
1725 map->m_pblk = ext4_es_pblock(&es) + iblock - es.es_lblk;
1726 retval = es.es_len - (iblock - es.es_lblk);
1727 if (retval > map->m_len)
1728 retval = map->m_len;
1729 map->m_len = retval;
1730 if (ext4_es_is_written(&es))
1731 map->m_flags |= EXT4_MAP_MAPPED;
1732 else if (ext4_es_is_unwritten(&es))
1733 map->m_flags |= EXT4_MAP_UNWRITTEN;
1734 else
Arnd Bergmann1e83bc82019-04-07 12:24:43 -04001735 BUG();
Zheng Liud100eef2013-02-18 00:29:59 -05001736
Dmitry Monakhov921f2662013-03-10 21:01:03 -04001737#ifdef ES_AGGRESSIVE_TEST
1738 ext4_map_blocks_es_recheck(NULL, inode, map, &orig_map, 0);
1739#endif
Zheng Liud100eef2013-02-18 00:29:59 -05001740 return retval;
1741 }
1742
Aditya Kali5356f2612011-09-09 19:20:51 -04001743 /*
1744 * Try to see if we can get the block without requesting a new
1745 * file system block.
1746 */
Lukas Czernerc8b459f2014-05-12 12:55:07 -04001747 down_read(&EXT4_I(inode)->i_data_sem);
Jan Karacbd75842014-11-25 11:41:49 -05001748 if (ext4_has_inline_data(inode))
Tao Ma9c3569b2012-12-10 14:05:57 -05001749 retval = 0;
Jan Karacbd75842014-11-25 11:41:49 -05001750 else if (ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS))
Zheng Liu2f8e0a72014-11-25 11:44:37 -05001751 retval = ext4_ext_map_blocks(NULL, inode, map, 0);
Aditya Kali5356f2612011-09-09 19:20:51 -04001752 else
Zheng Liu2f8e0a72014-11-25 11:44:37 -05001753 retval = ext4_ind_map_blocks(NULL, inode, map, 0);
Aditya Kali5356f2612011-09-09 19:20:51 -04001754
Zheng Liud100eef2013-02-18 00:29:59 -05001755add_delayed:
Aditya Kali5356f2612011-09-09 19:20:51 -04001756 if (retval == 0) {
Zheng Liuf7fec032013-02-18 00:28:47 -05001757 int ret;
Eric Whitneyad431022018-10-01 14:10:39 -04001758
Aditya Kali5356f2612011-09-09 19:20:51 -04001759 /*
1760 * XXX: __block_prepare_write() unmaps passed block,
1761 * is it OK?
1762 */
Aditya Kali5356f2612011-09-09 19:20:51 -04001763
Eric Whitney0b02f4c2018-10-01 14:19:37 -04001764 ret = ext4_insert_delayed_block(inode, map->m_lblk);
1765 if (ret != 0) {
Zheng Liuf7fec032013-02-18 00:28:47 -05001766 retval = ret;
Zheng Liu51865fd2012-11-08 21:57:32 -05001767 goto out_unlock;
Zheng Liuf7fec032013-02-18 00:28:47 -05001768 }
Zheng Liu51865fd2012-11-08 21:57:32 -05001769
Aditya Kali5356f2612011-09-09 19:20:51 -04001770 map_bh(bh, inode->i_sb, invalid_block);
1771 set_buffer_new(bh);
1772 set_buffer_delay(bh);
Zheng Liuf7fec032013-02-18 00:28:47 -05001773 } else if (retval > 0) {
1774 int ret;
Theodore Ts'o3be78c72013-08-16 21:22:41 -04001775 unsigned int status;
Zheng Liuf7fec032013-02-18 00:28:47 -05001776
Zheng Liu44fb851d2013-07-29 12:51:42 -04001777 if (unlikely(retval != map->m_len)) {
1778 ext4_warning(inode->i_sb,
1779 "ES len assertion failed for inode "
1780 "%lu: retval %d != map->m_len %d",
1781 inode->i_ino, retval, map->m_len);
1782 WARN_ON(1);
Dmitry Monakhov921f2662013-03-10 21:01:03 -04001783 }
Dmitry Monakhov921f2662013-03-10 21:01:03 -04001784
Zheng Liuf7fec032013-02-18 00:28:47 -05001785 status = map->m_flags & EXT4_MAP_UNWRITTEN ?
1786 EXTENT_STATUS_UNWRITTEN : EXTENT_STATUS_WRITTEN;
1787 ret = ext4_es_insert_extent(inode, map->m_lblk, map->m_len,
1788 map->m_pblk, status);
1789 if (ret != 0)
1790 retval = ret;
Aditya Kali5356f2612011-09-09 19:20:51 -04001791 }
1792
1793out_unlock:
1794 up_read((&EXT4_I(inode)->i_data_sem));
1795
1796 return retval;
1797}
1798
1799/*
Seunghun Leed91bd2c2014-09-01 22:15:30 -04001800 * This is a special get_block_t callback which is used by
Theodore Ts'ob920c752009-05-14 00:54:29 -04001801 * ext4_da_write_begin(). It will either return mapped block or
1802 * reserve space for a single block.
Aneesh Kumar K.V29fa89d2009-05-12 16:30:27 -04001803 *
1804 * For delayed buffer_head we have BH_Mapped, BH_New, BH_Delay set.
1805 * We also have b_blocknr = -1 and b_bdev initialized properly
1806 *
1807 * For unwritten buffer_head we have BH_Mapped, BH_New, BH_Unwritten set.
1808 * We also have b_blocknr = physicalblock mapping unwritten extent and b_bdev
1809 * initialized properly.
Alex Tomas64769242008-07-11 19:27:31 -04001810 */
Tao Ma9c3569b2012-12-10 14:05:57 -05001811int ext4_da_get_block_prep(struct inode *inode, sector_t iblock,
1812 struct buffer_head *bh, int create)
Alex Tomas64769242008-07-11 19:27:31 -04001813{
Theodore Ts'o2ed88682010-05-16 20:00:00 -04001814 struct ext4_map_blocks map;
Alex Tomas64769242008-07-11 19:27:31 -04001815 int ret = 0;
1816
1817 BUG_ON(create == 0);
Theodore Ts'o2ed88682010-05-16 20:00:00 -04001818 BUG_ON(bh->b_size != inode->i_sb->s_blocksize);
1819
1820 map.m_lblk = iblock;
1821 map.m_len = 1;
Alex Tomas64769242008-07-11 19:27:31 -04001822
1823 /*
1824 * first, we need to know whether the block is allocated already
1825 * preallocated blocks are unmapped but should treated
1826 * the same as allocated blocks.
1827 */
Aditya Kali5356f2612011-09-09 19:20:51 -04001828 ret = ext4_da_map_blocks(inode, iblock, &map, bh);
1829 if (ret <= 0)
Theodore Ts'o2ed88682010-05-16 20:00:00 -04001830 return ret;
Alex Tomas64769242008-07-11 19:27:31 -04001831
Theodore Ts'o2ed88682010-05-16 20:00:00 -04001832 map_bh(bh, inode->i_sb, map.m_pblk);
Jan Karaed8ad832016-02-19 00:18:25 -05001833 ext4_update_bh_state(bh, map.m_flags);
Theodore Ts'o2ed88682010-05-16 20:00:00 -04001834
1835 if (buffer_unwritten(bh)) {
1836 /* A delayed write to unwritten bh should be marked
1837 * new and mapped. Mapped ensures that we don't do
1838 * get_block multiple times when we write to the same
1839 * offset and new ensures that we do proper zero out
1840 * for partial write.
1841 */
1842 set_buffer_new(bh);
Theodore Ts'oc8205632011-04-10 22:30:07 -04001843 set_buffer_mapped(bh);
Theodore Ts'o2ed88682010-05-16 20:00:00 -04001844 }
1845 return 0;
Alex Tomas64769242008-07-11 19:27:31 -04001846}
Mingming Cao61628a32008-07-11 19:27:31 -04001847
Jan Kara188c2992021-08-16 11:57:04 +02001848static int bget_one(handle_t *handle, struct inode *inode,
1849 struct buffer_head *bh)
Aneesh Kumar K.V62e086b2009-06-14 17:59:34 -04001850{
1851 get_bh(bh);
1852 return 0;
1853}
1854
Jan Kara188c2992021-08-16 11:57:04 +02001855static int bput_one(handle_t *handle, struct inode *inode,
1856 struct buffer_head *bh)
Aneesh Kumar K.V62e086b2009-06-14 17:59:34 -04001857{
1858 put_bh(bh);
1859 return 0;
1860}
1861
1862static int __ext4_journalled_writepage(struct page *page,
Aneesh Kumar K.V62e086b2009-06-14 17:59:34 -04001863 unsigned int len)
1864{
1865 struct address_space *mapping = page->mapping;
1866 struct inode *inode = mapping->host;
Tao Ma3fdcfb62012-12-10 14:05:57 -05001867 struct buffer_head *page_bufs = NULL;
Aneesh Kumar K.V62e086b2009-06-14 17:59:34 -04001868 handle_t *handle = NULL;
Tao Ma3fdcfb62012-12-10 14:05:57 -05001869 int ret = 0, err = 0;
1870 int inline_data = ext4_has_inline_data(inode);
1871 struct buffer_head *inode_bh = NULL;
Aneesh Kumar K.V62e086b2009-06-14 17:59:34 -04001872
Theodore Ts'ocb20d512010-10-27 21:30:09 -04001873 ClearPageChecked(page);
Tao Ma3fdcfb62012-12-10 14:05:57 -05001874
1875 if (inline_data) {
1876 BUG_ON(page->index != 0);
1877 BUG_ON(len > ext4_get_max_inline_size(inode));
1878 inode_bh = ext4_journalled_write_inline_data(inode, len, page);
1879 if (inode_bh == NULL)
1880 goto out;
1881 } else {
1882 page_bufs = page_buffers(page);
1883 if (!page_bufs) {
1884 BUG();
1885 goto out;
1886 }
Jan Kara188c2992021-08-16 11:57:04 +02001887 ext4_walk_page_buffers(handle, inode, page_bufs, 0, len,
Tao Ma3fdcfb62012-12-10 14:05:57 -05001888 NULL, bget_one);
1889 }
Theodore Ts'obdf96832015-06-12 23:45:33 -04001890 /*
1891 * We need to release the page lock before we start the
1892 * journal, so grab a reference so the page won't disappear
1893 * out from under us.
1894 */
1895 get_page(page);
Aneesh Kumar K.V62e086b2009-06-14 17:59:34 -04001896 unlock_page(page);
1897
Theodore Ts'o9924a922013-02-08 21:59:22 -05001898 handle = ext4_journal_start(inode, EXT4_HT_WRITE_PAGE,
1899 ext4_writepage_trans_blocks(inode));
Aneesh Kumar K.V62e086b2009-06-14 17:59:34 -04001900 if (IS_ERR(handle)) {
1901 ret = PTR_ERR(handle);
Theodore Ts'obdf96832015-06-12 23:45:33 -04001902 put_page(page);
1903 goto out_no_pagelock;
1904 }
1905 BUG_ON(!ext4_handle_valid(handle));
1906
1907 lock_page(page);
1908 put_page(page);
1909 if (page->mapping != mapping) {
1910 /* The page got truncated from under us */
1911 ext4_journal_stop(handle);
1912 ret = 0;
Aneesh Kumar K.V62e086b2009-06-14 17:59:34 -04001913 goto out;
1914 }
1915
Tao Ma3fdcfb62012-12-10 14:05:57 -05001916 if (inline_data) {
Theodore Ts'o362eca72018-07-10 01:07:43 -04001917 ret = ext4_mark_inode_dirty(handle, inode);
Tao Ma3fdcfb62012-12-10 14:05:57 -05001918 } else {
Jan Kara188c2992021-08-16 11:57:04 +02001919 ret = ext4_walk_page_buffers(handle, inode, page_bufs, 0, len,
1920 NULL, do_journal_get_write_access);
Tao Ma3fdcfb62012-12-10 14:05:57 -05001921
Jan Kara188c2992021-08-16 11:57:04 +02001922 err = ext4_walk_page_buffers(handle, inode, page_bufs, 0, len,
1923 NULL, write_end_fn);
Tao Ma3fdcfb62012-12-10 14:05:57 -05001924 }
Aneesh Kumar K.V62e086b2009-06-14 17:59:34 -04001925 if (ret == 0)
1926 ret = err;
Jan Karab5b18162020-10-27 14:27:51 +01001927 err = ext4_jbd2_inode_add_write(handle, inode, page_offset(page), len);
Mauricio Faria de Oliveiraafb585a2020-10-05 21:48:41 -03001928 if (ret == 0)
1929 ret = err;
Jan Kara2d859db2011-07-26 09:07:11 -04001930 EXT4_I(inode)->i_datasync_tid = handle->h_transaction->t_tid;
Aneesh Kumar K.V62e086b2009-06-14 17:59:34 -04001931 err = ext4_journal_stop(handle);
1932 if (!ret)
1933 ret = err;
1934
Theodore Ts'o19f5fb72010-01-24 14:34:07 -05001935 ext4_set_inode_state(inode, EXT4_STATE_JDATA);
Aneesh Kumar K.V62e086b2009-06-14 17:59:34 -04001936out:
Theodore Ts'obdf96832015-06-12 23:45:33 -04001937 unlock_page(page);
1938out_no_pagelock:
Zhaolong Zhangc915fb82021-03-02 17:42:31 +08001939 if (!inline_data && page_bufs)
Jan Kara188c2992021-08-16 11:57:04 +02001940 ext4_walk_page_buffers(NULL, inode, page_bufs, 0, len,
Zhaolong Zhangc915fb82021-03-02 17:42:31 +08001941 NULL, bput_one);
Tao Ma3fdcfb62012-12-10 14:05:57 -05001942 brelse(inode_bh);
Aneesh Kumar K.V62e086b2009-06-14 17:59:34 -04001943 return ret;
1944}
1945
Mingming Cao61628a32008-07-11 19:27:31 -04001946/*
Aneesh Kumar K.V43ce1d22009-06-14 17:58:45 -04001947 * Note that we don't need to start a transaction unless we're journaling data
1948 * because we should have holes filled from ext4_page_mkwrite(). We even don't
1949 * need to file the inode to the transaction's list in ordered mode because if
1950 * we are writing back data added by write(), the inode is already there and if
Lucas De Marchi25985ed2011-03-30 22:57:33 -03001951 * we are writing back data modified via mmap(), no one guarantees in which
Aneesh Kumar K.V43ce1d22009-06-14 17:58:45 -04001952 * transaction the data will hit the disk. In case we are journaling data, we
1953 * cannot start transaction directly because transaction start ranks above page
1954 * lock so we have to do some magic.
1955 *
Theodore Ts'ob920c752009-05-14 00:54:29 -04001956 * This function can get called via...
Theodore Ts'o20970ba2013-06-06 14:00:46 -04001957 * - ext4_writepages after taking page lock (have journal handle)
Theodore Ts'ob920c752009-05-14 00:54:29 -04001958 * - journal_submit_inode_data_buffers (no journal handle)
Artem Bityutskiyf6463b02012-07-25 18:12:04 +03001959 * - shrink_page_list via the kswapd/direct reclaim (no journal handle)
Theodore Ts'ob920c752009-05-14 00:54:29 -04001960 * - grab_page_cache when doing write_begin (have journal handle)
Aneesh Kumar K.V43ce1d22009-06-14 17:58:45 -04001961 *
1962 * We don't do any block allocation in this function. If we have page with
1963 * multiple blocks we need to write those buffer_heads that are mapped. This
1964 * is important for mmaped based write. So if we do with blocksize 1K
1965 * truncate(f, 1024);
1966 * a = mmap(f, 0, 4096);
1967 * a[0] = 'a';
1968 * truncate(f, 4096);
1969 * we have in the page first buffer_head mapped via page_mkwrite call back
Paul Bolle90802ed2011-12-05 13:00:34 +01001970 * but other buffer_heads would be unmapped but dirty (dirty done via the
Aneesh Kumar K.V43ce1d22009-06-14 17:58:45 -04001971 * do_wp_page). So writepage should write the first block. If we modify
1972 * the mmap area beyond 1024 we will again get a page_fault and the
1973 * page_mkwrite callback will do the block allocation and mark the
1974 * buffer_heads mapped.
1975 *
1976 * We redirty the page if we have any buffer_heads that is either delay or
1977 * unwritten in the page.
1978 *
1979 * We can get recursively called as show below.
1980 *
1981 * ext4_writepage() -> kmalloc() -> __alloc_pages() -> page_launder() ->
1982 * ext4_writepage()
1983 *
1984 * But since we don't do any block allocation we should not deadlock.
1985 * Page also have the dirty flag cleared so we don't get recurive page_lock.
Mingming Cao61628a32008-07-11 19:27:31 -04001986 */
Aneesh Kumar K.V43ce1d22009-06-14 17:58:45 -04001987static int ext4_writepage(struct page *page,
Aneesh Kumar K.V62e086b2009-06-14 17:59:34 -04001988 struct writeback_control *wbc)
Alex Tomas64769242008-07-11 19:27:31 -04001989{
Jan Karaf8bec372013-01-28 12:55:08 -05001990 int ret = 0;
Mingming Cao61628a32008-07-11 19:27:31 -04001991 loff_t size;
Theodore Ts'o498e5f22008-11-05 00:14:04 -05001992 unsigned int len;
Jiaying Zhang744692d2010-03-04 16:14:02 -05001993 struct buffer_head *page_bufs = NULL;
Mingming Cao61628a32008-07-11 19:27:31 -04001994 struct inode *inode = page->mapping->host;
Jan Kara36ade452013-01-28 09:30:52 -05001995 struct ext4_io_submit io_submit;
Namjae Jeon1c8349a2014-05-12 08:12:25 -04001996 bool keep_towrite = false;
Alex Tomas64769242008-07-11 19:27:31 -04001997
Theodore Ts'o0db1ff22017-02-05 01:28:48 -05001998 if (unlikely(ext4_forced_shutdown(EXT4_SB(inode->i_sb)))) {
yangerkunc2a559b2020-02-26 12:10:02 +08001999 inode->i_mapping->a_ops->invalidatepage(page, 0, PAGE_SIZE);
Theodore Ts'o0db1ff22017-02-05 01:28:48 -05002000 unlock_page(page);
2001 return -EIO;
2002 }
2003
Lukas Czernera9c667f2011-06-06 09:51:52 -04002004 trace_ext4_writepage(page);
Aneesh Kumar K.Vf0e6c982008-07-11 19:27:31 -04002005 size = i_size_read(inode);
Eric Biggersc93d8f82019-07-22 09:26:24 -07002006 if (page->index == size >> PAGE_SHIFT &&
2007 !ext4_verity_in_progress(inode))
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002008 len = size & ~PAGE_MASK;
Aneesh Kumar K.Vf0e6c982008-07-11 19:27:31 -04002009 else
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002010 len = PAGE_SIZE;
Alex Tomas64769242008-07-11 19:27:31 -04002011
Theodore Ts'oa42afc52010-10-27 21:30:09 -04002012 page_bufs = page_buffers(page);
Aneesh Kumar K.Vc364b222009-06-14 17:57:10 -04002013 /*
Jan Karafe386132013-01-28 21:06:42 -05002014 * We cannot do block allocation or other extent handling in this
2015 * function. If there are buffers needing that, we have to redirty
2016 * the page. But we may reach here when we do a journal commit via
2017 * journal_submit_inode_data_buffers() and in that case we must write
2018 * allocated buffers to achieve data=ordered mode guarantees.
Theodore Ts'occcd1472015-10-03 10:49:23 -04002019 *
2020 * Also, if there is only one buffer per page (the fs block
2021 * size == the page size), if one buffer needs block
2022 * allocation or needs to modify the extent tree to clear the
2023 * unwritten flag, we know that the page can't be written at
2024 * all, so we might as well refuse the write immediately.
2025 * Unfortunately if the block size != page size, we can't as
2026 * easily detect this case using ext4_walk_page_buffers(), but
2027 * for the extremely common case, this is an optimization that
2028 * skips a useless round trip through ext4_bio_write_page().
Aneesh Kumar K.Vcd1aac32008-07-11 19:27:31 -04002029 */
Jan Kara188c2992021-08-16 11:57:04 +02002030 if (ext4_walk_page_buffers(NULL, inode, page_bufs, 0, len, NULL,
Tao Maf19d5872012-12-10 14:05:51 -05002031 ext4_bh_delay_or_unwritten)) {
Jan Karaf8bec372013-01-28 12:55:08 -05002032 redirty_page_for_writepage(wbc, page);
Theodore Ts'occcd1472015-10-03 10:49:23 -04002033 if ((current->flags & PF_MEMALLOC) ||
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002034 (inode->i_sb->s_blocksize == PAGE_SIZE)) {
Jan Karafe386132013-01-28 21:06:42 -05002035 /*
2036 * For memory cleaning there's no point in writing only
2037 * some buffers. So just bail out. Warn if we came here
2038 * from direct reclaim.
2039 */
2040 WARN_ON_ONCE((current->flags & (PF_MEMALLOC|PF_KSWAPD))
2041 == PF_MEMALLOC);
Aneesh Kumar K.Vf0e6c982008-07-11 19:27:31 -04002042 unlock_page(page);
2043 return 0;
2044 }
Namjae Jeon1c8349a2014-05-12 08:12:25 -04002045 keep_towrite = true;
Theodore Ts'oa42afc52010-10-27 21:30:09 -04002046 }
Alex Tomas64769242008-07-11 19:27:31 -04002047
Theodore Ts'ocb20d512010-10-27 21:30:09 -04002048 if (PageChecked(page) && ext4_should_journal_data(inode))
Aneesh Kumar K.V43ce1d22009-06-14 17:58:45 -04002049 /*
2050 * It's mmapped pagecache. Add buffers and journal it. There
2051 * doesn't seem much point in redirtying the page here.
2052 */
Wu Fengguang3f0ca302009-11-24 11:15:44 -05002053 return __ext4_journalled_writepage(page, len);
Aneesh Kumar K.V43ce1d22009-06-14 17:58:45 -04002054
Jan Kara97a851e2013-06-04 11:58:58 -04002055 ext4_io_submit_init(&io_submit, wbc);
2056 io_submit.io_end = ext4_init_io_end(inode, GFP_NOFS);
2057 if (!io_submit.io_end) {
2058 redirty_page_for_writepage(wbc, page);
2059 unlock_page(page);
2060 return -ENOMEM;
2061 }
Lei Chenbe993932020-12-11 14:54:24 +08002062 ret = ext4_bio_write_page(&io_submit, page, len, keep_towrite);
Jan Kara36ade452013-01-28 09:30:52 -05002063 ext4_io_submit(&io_submit);
Jan Kara97a851e2013-06-04 11:58:58 -04002064 /* Drop io_end reference we got from init */
2065 ext4_put_io_end_defer(io_submit.io_end);
Alex Tomas64769242008-07-11 19:27:31 -04002066 return ret;
2067}
2068
Jan Kara5f1132b2013-08-17 10:02:33 -04002069static int mpage_submit_page(struct mpage_da_data *mpd, struct page *page)
2070{
2071 int len;
Jan Karaa056bda2017-05-26 17:45:45 -04002072 loff_t size;
Jan Kara5f1132b2013-08-17 10:02:33 -04002073 int err;
2074
2075 BUG_ON(page->index != mpd->first_page);
Jan Karaa056bda2017-05-26 17:45:45 -04002076 clear_page_dirty_for_io(page);
2077 /*
2078 * We have to be very careful here! Nothing protects writeback path
2079 * against i_size changes and the page can be writeably mapped into
2080 * page tables. So an application can be growing i_size and writing
2081 * data through mmap while writeback runs. clear_page_dirty_for_io()
2082 * write-protects our page in page tables and the page cannot get
2083 * written to again until we release page lock. So only after
2084 * clear_page_dirty_for_io() we are safe to sample i_size for
2085 * ext4_bio_write_page() to zero-out tail of the written page. We rely
2086 * on the barrier provided by TestClearPageDirty in
2087 * clear_page_dirty_for_io() to make sure i_size is really sampled only
2088 * after page tables are updated.
2089 */
2090 size = i_size_read(mpd->inode);
Eric Biggersc93d8f82019-07-22 09:26:24 -07002091 if (page->index == size >> PAGE_SHIFT &&
2092 !ext4_verity_in_progress(mpd->inode))
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002093 len = size & ~PAGE_MASK;
Jan Kara5f1132b2013-08-17 10:02:33 -04002094 else
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002095 len = PAGE_SIZE;
Lei Chenbe993932020-12-11 14:54:24 +08002096 err = ext4_bio_write_page(&mpd->io_submit, page, len, false);
Jan Kara5f1132b2013-08-17 10:02:33 -04002097 if (!err)
2098 mpd->wbc->nr_to_write--;
2099 mpd->first_page++;
2100
2101 return err;
2102}
2103
Ritesh Harjani6db07462020-05-10 11:54:51 +05302104#define BH_FLAGS (BIT(BH_Unwritten) | BIT(BH_Delay))
Jan Kara4e7ea812013-06-04 13:17:40 -04002105
Mingming Cao61628a32008-07-11 19:27:31 -04002106/*
Jan Karafffb2732013-06-04 13:01:11 -04002107 * mballoc gives us at most this number of blocks...
2108 * XXX: That seems to be only a limitation of ext4_mb_normalize_request().
Anatol Pomozov70261f52013-08-28 14:40:12 -04002109 * The rest of mballoc seems to handle chunks up to full group size.
Mingming Cao61628a32008-07-11 19:27:31 -04002110 */
Jan Karafffb2732013-06-04 13:01:11 -04002111#define MAX_WRITEPAGES_EXTENT_LEN 2048
Mingming Cao525f4ed2008-08-19 22:15:58 -04002112
Jan Karafffb2732013-06-04 13:01:11 -04002113/*
Jan Kara4e7ea812013-06-04 13:17:40 -04002114 * mpage_add_bh_to_extent - try to add bh to extent of blocks to map
2115 *
2116 * @mpd - extent of blocks
2117 * @lblk - logical number of the block in the file
Jan Kara09930042013-08-17 09:57:56 -04002118 * @bh - buffer head we want to add to the extent
Jan Kara4e7ea812013-06-04 13:17:40 -04002119 *
Jan Kara09930042013-08-17 09:57:56 -04002120 * The function is used to collect contig. blocks in the same state. If the
2121 * buffer doesn't require mapping for writeback and we haven't started the
2122 * extent of buffers to map yet, the function returns 'true' immediately - the
2123 * caller can write the buffer right away. Otherwise the function returns true
2124 * if the block has been added to the extent, false if the block couldn't be
2125 * added.
Jan Kara4e7ea812013-06-04 13:17:40 -04002126 */
Jan Kara09930042013-08-17 09:57:56 -04002127static bool mpage_add_bh_to_extent(struct mpage_da_data *mpd, ext4_lblk_t lblk,
2128 struct buffer_head *bh)
Jan Kara4e7ea812013-06-04 13:17:40 -04002129{
2130 struct ext4_map_blocks *map = &mpd->map;
2131
Jan Kara09930042013-08-17 09:57:56 -04002132 /* Buffer that doesn't need mapping for writeback? */
2133 if (!buffer_dirty(bh) || !buffer_mapped(bh) ||
2134 (!buffer_delay(bh) && !buffer_unwritten(bh))) {
2135 /* So far no extent to map => we write the buffer right away */
2136 if (map->m_len == 0)
2137 return true;
2138 return false;
2139 }
Jan Kara4e7ea812013-06-04 13:17:40 -04002140
2141 /* First block in the extent? */
2142 if (map->m_len == 0) {
Jan Karadddbd6a2017-04-30 18:29:10 -04002143 /* We cannot map unless handle is started... */
2144 if (!mpd->do_map)
2145 return false;
Jan Kara4e7ea812013-06-04 13:17:40 -04002146 map->m_lblk = lblk;
2147 map->m_len = 1;
Jan Kara09930042013-08-17 09:57:56 -04002148 map->m_flags = bh->b_state & BH_FLAGS;
2149 return true;
Jan Kara4e7ea812013-06-04 13:17:40 -04002150 }
2151
Jan Kara09930042013-08-17 09:57:56 -04002152 /* Don't go larger than mballoc is willing to allocate */
2153 if (map->m_len >= MAX_WRITEPAGES_EXTENT_LEN)
2154 return false;
2155
Jan Kara4e7ea812013-06-04 13:17:40 -04002156 /* Can we merge the block to our big extent? */
2157 if (lblk == map->m_lblk + map->m_len &&
Jan Kara09930042013-08-17 09:57:56 -04002158 (bh->b_state & BH_FLAGS) == map->m_flags) {
Jan Kara4e7ea812013-06-04 13:17:40 -04002159 map->m_len++;
Jan Kara09930042013-08-17 09:57:56 -04002160 return true;
Jan Kara4e7ea812013-06-04 13:17:40 -04002161 }
Jan Kara09930042013-08-17 09:57:56 -04002162 return false;
Jan Kara4e7ea812013-06-04 13:17:40 -04002163}
2164
Jan Kara5f1132b2013-08-17 10:02:33 -04002165/*
2166 * mpage_process_page_bufs - submit page buffers for IO or add them to extent
2167 *
2168 * @mpd - extent of blocks for mapping
2169 * @head - the first buffer in the page
2170 * @bh - buffer we should start processing from
2171 * @lblk - logical number of the block in the file corresponding to @bh
2172 *
2173 * Walk through page buffers from @bh upto @head (exclusive) and either submit
2174 * the page for IO if all buffers in this page were mapped and there's no
2175 * accumulated extent of buffers to map or add buffers in the page to the
2176 * extent of buffers to map. The function returns 1 if the caller can continue
2177 * by processing the next page, 0 if it should stop adding buffers to the
2178 * extent to map because we cannot extend it anymore. It can also return value
2179 * < 0 in case of error during IO submission.
2180 */
2181static int mpage_process_page_bufs(struct mpage_da_data *mpd,
2182 struct buffer_head *head,
2183 struct buffer_head *bh,
2184 ext4_lblk_t lblk)
Jan Kara4e7ea812013-06-04 13:17:40 -04002185{
2186 struct inode *inode = mpd->inode;
Jan Kara5f1132b2013-08-17 10:02:33 -04002187 int err;
Fabian Frederick93407472017-02-27 14:28:32 -08002188 ext4_lblk_t blocks = (i_size_read(inode) + i_blocksize(inode) - 1)
Jan Kara4e7ea812013-06-04 13:17:40 -04002189 >> inode->i_blkbits;
2190
Eric Biggersc93d8f82019-07-22 09:26:24 -07002191 if (ext4_verity_in_progress(inode))
2192 blocks = EXT_MAX_BLOCKS;
2193
Jan Kara4e7ea812013-06-04 13:17:40 -04002194 do {
2195 BUG_ON(buffer_locked(bh));
2196
Jan Kara09930042013-08-17 09:57:56 -04002197 if (lblk >= blocks || !mpage_add_bh_to_extent(mpd, lblk, bh)) {
Jan Kara4e7ea812013-06-04 13:17:40 -04002198 /* Found extent to map? */
2199 if (mpd->map.m_len)
Jan Kara5f1132b2013-08-17 10:02:33 -04002200 return 0;
Jan Karadddbd6a2017-04-30 18:29:10 -04002201 /* Buffer needs mapping and handle is not started? */
2202 if (!mpd->do_map)
2203 return 0;
Jan Kara09930042013-08-17 09:57:56 -04002204 /* Everything mapped so far and we hit EOF */
Jan Kara5f1132b2013-08-17 10:02:33 -04002205 break;
Jan Kara4e7ea812013-06-04 13:17:40 -04002206 }
Jan Kara4e7ea812013-06-04 13:17:40 -04002207 } while (lblk++, (bh = bh->b_this_page) != head);
Jan Kara5f1132b2013-08-17 10:02:33 -04002208 /* So far everything mapped? Submit the page for IO. */
2209 if (mpd->map.m_len == 0) {
2210 err = mpage_submit_page(mpd, head->b_page);
2211 if (err < 0)
2212 return err;
2213 }
Jan Kara6b8ed622020-05-25 10:12:15 +02002214 if (lblk >= blocks) {
2215 mpd->scanned_until_end = 1;
2216 return 0;
2217 }
2218 return 1;
Jan Kara4e7ea812013-06-04 13:17:40 -04002219}
2220
2221/*
Ritesh Harjani2943fdb2019-10-16 13:07:09 +05302222 * mpage_process_page - update page buffers corresponding to changed extent and
2223 * may submit fully mapped page for IO
2224 *
2225 * @mpd - description of extent to map, on return next extent to map
2226 * @m_lblk - logical block mapping.
2227 * @m_pblk - corresponding physical mapping.
2228 * @map_bh - determines on return whether this page requires any further
2229 * mapping or not.
2230 * Scan given page buffers corresponding to changed extent and update buffer
2231 * state according to new extent state.
2232 * We map delalloc buffers to their physical location, clear unwritten bits.
2233 * If the given page is not fully mapped, we update @map to the next extent in
2234 * the given page that needs mapping & return @map_bh as true.
2235 */
2236static int mpage_process_page(struct mpage_da_data *mpd, struct page *page,
2237 ext4_lblk_t *m_lblk, ext4_fsblk_t *m_pblk,
2238 bool *map_bh)
2239{
2240 struct buffer_head *head, *bh;
2241 ext4_io_end_t *io_end = mpd->io_submit.io_end;
2242 ext4_lblk_t lblk = *m_lblk;
2243 ext4_fsblk_t pblock = *m_pblk;
2244 int err = 0;
Ritesh Harjanic8cc8812019-10-16 13:07:10 +05302245 int blkbits = mpd->inode->i_blkbits;
2246 ssize_t io_end_size = 0;
2247 struct ext4_io_end_vec *io_end_vec = ext4_last_io_end_vec(io_end);
Ritesh Harjani2943fdb2019-10-16 13:07:09 +05302248
2249 bh = head = page_buffers(page);
2250 do {
2251 if (lblk < mpd->map.m_lblk)
2252 continue;
2253 if (lblk >= mpd->map.m_lblk + mpd->map.m_len) {
2254 /*
2255 * Buffer after end of mapped extent.
2256 * Find next buffer in the page to map.
2257 */
2258 mpd->map.m_len = 0;
2259 mpd->map.m_flags = 0;
Ritesh Harjanic8cc8812019-10-16 13:07:10 +05302260 io_end_vec->size += io_end_size;
2261 io_end_size = 0;
Ritesh Harjani2943fdb2019-10-16 13:07:09 +05302262
Ritesh Harjani2943fdb2019-10-16 13:07:09 +05302263 err = mpage_process_page_bufs(mpd, head, bh, lblk);
2264 if (err > 0)
2265 err = 0;
Ritesh Harjanic8cc8812019-10-16 13:07:10 +05302266 if (!err && mpd->map.m_len && mpd->map.m_lblk > lblk) {
2267 io_end_vec = ext4_alloc_io_end_vec(io_end);
Ritesh Harjani4d06bfb2019-11-06 15:08:09 +05302268 if (IS_ERR(io_end_vec)) {
2269 err = PTR_ERR(io_end_vec);
2270 goto out;
2271 }
Ritesh Harjanid1e18b82020-10-08 20:32:48 +05302272 io_end_vec->offset = (loff_t)mpd->map.m_lblk << blkbits;
Ritesh Harjanic8cc8812019-10-16 13:07:10 +05302273 }
Ritesh Harjani2943fdb2019-10-16 13:07:09 +05302274 *map_bh = true;
2275 goto out;
2276 }
2277 if (buffer_delay(bh)) {
2278 clear_buffer_delay(bh);
2279 bh->b_blocknr = pblock++;
2280 }
2281 clear_buffer_unwritten(bh);
Ritesh Harjanic8cc8812019-10-16 13:07:10 +05302282 io_end_size += (1 << blkbits);
Ritesh Harjani2943fdb2019-10-16 13:07:09 +05302283 } while (lblk++, (bh = bh->b_this_page) != head);
Ritesh Harjanic8cc8812019-10-16 13:07:10 +05302284
2285 io_end_vec->size += io_end_size;
2286 io_end_size = 0;
Ritesh Harjani2943fdb2019-10-16 13:07:09 +05302287 *map_bh = false;
2288out:
2289 *m_lblk = lblk;
2290 *m_pblk = pblock;
2291 return err;
2292}
2293
2294/*
Jan Kara4e7ea812013-06-04 13:17:40 -04002295 * mpage_map_buffers - update buffers corresponding to changed extent and
2296 * submit fully mapped pages for IO
2297 *
2298 * @mpd - description of extent to map, on return next extent to map
2299 *
2300 * Scan buffers corresponding to changed extent (we expect corresponding pages
2301 * to be already locked) and update buffer state according to new extent state.
2302 * We map delalloc buffers to their physical location, clear unwritten bits,
Lukas Czerner556615d2014-04-20 23:45:47 -04002303 * and mark buffers as uninit when we perform writes to unwritten extents
Jan Kara4e7ea812013-06-04 13:17:40 -04002304 * and do extent conversion after IO is finished. If the last page is not fully
2305 * mapped, we update @map to the next extent in the last page that needs
2306 * mapping. Otherwise we submit the page for IO.
2307 */
2308static int mpage_map_and_submit_buffers(struct mpage_da_data *mpd)
2309{
2310 struct pagevec pvec;
2311 int nr_pages, i;
2312 struct inode *inode = mpd->inode;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002313 int bpp_bits = PAGE_SHIFT - inode->i_blkbits;
Jan Kara4e7ea812013-06-04 13:17:40 -04002314 pgoff_t start, end;
2315 ext4_lblk_t lblk;
Ritesh Harjani2943fdb2019-10-16 13:07:09 +05302316 ext4_fsblk_t pblock;
Jan Kara4e7ea812013-06-04 13:17:40 -04002317 int err;
Ritesh Harjani2943fdb2019-10-16 13:07:09 +05302318 bool map_bh = false;
Jan Kara4e7ea812013-06-04 13:17:40 -04002319
2320 start = mpd->map.m_lblk >> bpp_bits;
2321 end = (mpd->map.m_lblk + mpd->map.m_len - 1) >> bpp_bits;
2322 lblk = start << bpp_bits;
2323 pblock = mpd->map.m_pblk;
2324
Mel Gorman86679822017-11-15 17:37:52 -08002325 pagevec_init(&pvec);
Jan Kara4e7ea812013-06-04 13:17:40 -04002326 while (start <= end) {
Jan Kara2b85a612017-09-06 16:21:30 -07002327 nr_pages = pagevec_lookup_range(&pvec, inode->i_mapping,
Jan Kara397162f2017-09-06 16:21:43 -07002328 &start, end);
Jan Kara4e7ea812013-06-04 13:17:40 -04002329 if (nr_pages == 0)
2330 break;
2331 for (i = 0; i < nr_pages; i++) {
2332 struct page *page = pvec.pages[i];
2333
Ritesh Harjani2943fdb2019-10-16 13:07:09 +05302334 err = mpage_process_page(mpd, page, &lblk, &pblock,
2335 &map_bh);
Jan Kara4e7ea812013-06-04 13:17:40 -04002336 /*
Ritesh Harjani2943fdb2019-10-16 13:07:09 +05302337 * If map_bh is true, means page may require further bh
2338 * mapping, or maybe the page was submitted for IO.
2339 * So we return to call further extent mapping.
Jan Kara4e7ea812013-06-04 13:17:40 -04002340 */
Jason Yan39c0ae12020-04-20 12:29:18 +08002341 if (err < 0 || map_bh)
Ritesh Harjani2943fdb2019-10-16 13:07:09 +05302342 goto out;
Jan Kara4e7ea812013-06-04 13:17:40 -04002343 /* Page fully mapped - let IO run! */
2344 err = mpage_submit_page(mpd, page);
Ritesh Harjani2943fdb2019-10-16 13:07:09 +05302345 if (err < 0)
2346 goto out;
Jan Kara4e7ea812013-06-04 13:17:40 -04002347 }
2348 pagevec_release(&pvec);
2349 }
2350 /* Extent fully mapped and matches with page boundary. We are done. */
2351 mpd->map.m_len = 0;
2352 mpd->map.m_flags = 0;
2353 return 0;
Ritesh Harjani2943fdb2019-10-16 13:07:09 +05302354out:
2355 pagevec_release(&pvec);
2356 return err;
Jan Kara4e7ea812013-06-04 13:17:40 -04002357}
2358
2359static int mpage_map_one_extent(handle_t *handle, struct mpage_da_data *mpd)
2360{
2361 struct inode *inode = mpd->inode;
2362 struct ext4_map_blocks *map = &mpd->map;
2363 int get_blocks_flags;
Lukas Czerner090f32e2014-04-20 23:44:47 -04002364 int err, dioread_nolock;
Jan Kara4e7ea812013-06-04 13:17:40 -04002365
2366 trace_ext4_da_write_pages_extent(inode, map);
2367 /*
2368 * Call ext4_map_blocks() to allocate any delayed allocation blocks, or
Lukas Czerner556615d2014-04-20 23:45:47 -04002369 * to convert an unwritten extent to be initialized (in the case
Jan Kara4e7ea812013-06-04 13:17:40 -04002370 * where we have written into one or more preallocated blocks). It is
2371 * possible that we're going to need more metadata blocks than
2372 * previously reserved. However we must not fail because we're in
2373 * writeback and there is nothing we can do about it so it might result
2374 * in data loss. So use reserved blocks to allocate metadata if
2375 * possible.
2376 *
Theodore Ts'o754cfed2014-09-04 18:08:22 -04002377 * We pass in the magic EXT4_GET_BLOCKS_DELALLOC_RESERVE if
2378 * the blocks in question are delalloc blocks. This indicates
2379 * that the blocks and quotas has already been checked when
2380 * the data was copied into the page cache.
Jan Kara4e7ea812013-06-04 13:17:40 -04002381 */
2382 get_blocks_flags = EXT4_GET_BLOCKS_CREATE |
Jan Karaee0876b2016-04-24 00:56:08 -04002383 EXT4_GET_BLOCKS_METADATA_NOFAIL |
2384 EXT4_GET_BLOCKS_IO_SUBMIT;
Lukas Czerner090f32e2014-04-20 23:44:47 -04002385 dioread_nolock = ext4_should_dioread_nolock(inode);
2386 if (dioread_nolock)
Jan Kara4e7ea812013-06-04 13:17:40 -04002387 get_blocks_flags |= EXT4_GET_BLOCKS_IO_CREATE_EXT;
Ritesh Harjani6db07462020-05-10 11:54:51 +05302388 if (map->m_flags & BIT(BH_Delay))
Jan Kara4e7ea812013-06-04 13:17:40 -04002389 get_blocks_flags |= EXT4_GET_BLOCKS_DELALLOC_RESERVE;
2390
2391 err = ext4_map_blocks(handle, inode, map, get_blocks_flags);
2392 if (err < 0)
2393 return err;
Lukas Czerner090f32e2014-04-20 23:44:47 -04002394 if (dioread_nolock && (map->m_flags & EXT4_MAP_UNWRITTEN)) {
Jan Kara6b523df2013-06-04 13:21:11 -04002395 if (!mpd->io_submit.io_end->handle &&
2396 ext4_handle_valid(handle)) {
2397 mpd->io_submit.io_end->handle = handle->h_rsv_handle;
2398 handle->h_rsv_handle = NULL;
2399 }
Jan Kara3613d222013-06-04 13:19:34 -04002400 ext4_set_io_unwritten_flag(inode, mpd->io_submit.io_end);
Jan Kara6b523df2013-06-04 13:21:11 -04002401 }
Jan Kara4e7ea812013-06-04 13:17:40 -04002402
2403 BUG_ON(map->m_len == 0);
Jan Kara4e7ea812013-06-04 13:17:40 -04002404 return 0;
2405}
2406
2407/*
2408 * mpage_map_and_submit_extent - map extent starting at mpd->lblk of length
2409 * mpd->len and submit pages underlying it for IO
2410 *
2411 * @handle - handle for journal operations
2412 * @mpd - extent to map
Jan Kara7534e852013-10-16 08:26:08 -04002413 * @give_up_on_write - we set this to true iff there is a fatal error and there
2414 * is no hope of writing the data. The caller should discard
2415 * dirty pages to avoid infinite loops.
Jan Kara4e7ea812013-06-04 13:17:40 -04002416 *
2417 * The function maps extent starting at mpd->lblk of length mpd->len. If it is
2418 * delayed, blocks are allocated, if it is unwritten, we may need to convert
2419 * them to initialized or split the described range from larger unwritten
2420 * extent. Note that we need not map all the described range since allocation
2421 * can return less blocks or the range is covered by more unwritten extents. We
2422 * cannot map more because we are limited by reserved transaction credits. On
2423 * the other hand we always make sure that the last touched page is fully
2424 * mapped so that it can be written out (and thus forward progress is
2425 * guaranteed). After mapping we submit all mapped pages for IO.
2426 */
2427static int mpage_map_and_submit_extent(handle_t *handle,
Theodore Ts'ocb530542013-07-01 08:12:40 -04002428 struct mpage_da_data *mpd,
2429 bool *give_up_on_write)
Jan Kara4e7ea812013-06-04 13:17:40 -04002430{
2431 struct inode *inode = mpd->inode;
2432 struct ext4_map_blocks *map = &mpd->map;
2433 int err;
2434 loff_t disksize;
Dmitry Monakhov66031202014-08-27 18:40:03 -04002435 int progress = 0;
Ritesh Harjanic8cc8812019-10-16 13:07:10 +05302436 ext4_io_end_t *io_end = mpd->io_submit.io_end;
Ritesh Harjani4d06bfb2019-11-06 15:08:09 +05302437 struct ext4_io_end_vec *io_end_vec;
Jan Kara4e7ea812013-06-04 13:17:40 -04002438
Ritesh Harjani4d06bfb2019-11-06 15:08:09 +05302439 io_end_vec = ext4_alloc_io_end_vec(io_end);
2440 if (IS_ERR(io_end_vec))
2441 return PTR_ERR(io_end_vec);
Ritesh Harjanic8cc8812019-10-16 13:07:10 +05302442 io_end_vec->offset = ((loff_t)map->m_lblk) << inode->i_blkbits;
Jan Kara27d7c4e2013-07-05 21:57:22 -04002443 do {
Jan Kara4e7ea812013-06-04 13:17:40 -04002444 err = mpage_map_one_extent(handle, mpd);
2445 if (err < 0) {
2446 struct super_block *sb = inode->i_sb;
2447
Theodore Ts'o0db1ff22017-02-05 01:28:48 -05002448 if (ext4_forced_shutdown(EXT4_SB(sb)) ||
Harshad Shirwadkar9b5f6c92020-11-05 19:59:09 -08002449 ext4_test_mount_flag(sb, EXT4_MF_FS_ABORTED))
Theodore Ts'ocb530542013-07-01 08:12:40 -04002450 goto invalidate_dirty_pages;
Jan Kara4e7ea812013-06-04 13:17:40 -04002451 /*
Theodore Ts'ocb530542013-07-01 08:12:40 -04002452 * Let the uper layers retry transient errors.
2453 * In the case of ENOSPC, if ext4_count_free_blocks()
2454 * is non-zero, a commit should free up blocks.
Jan Kara4e7ea812013-06-04 13:17:40 -04002455 */
Theodore Ts'ocb530542013-07-01 08:12:40 -04002456 if ((err == -ENOMEM) ||
Dmitry Monakhov66031202014-08-27 18:40:03 -04002457 (err == -ENOSPC && ext4_count_free_clusters(sb))) {
2458 if (progress)
2459 goto update_disksize;
Theodore Ts'ocb530542013-07-01 08:12:40 -04002460 return err;
Dmitry Monakhov66031202014-08-27 18:40:03 -04002461 }
Theodore Ts'ocb530542013-07-01 08:12:40 -04002462 ext4_msg(sb, KERN_CRIT,
2463 "Delayed block allocation failed for "
2464 "inode %lu at logical offset %llu with"
2465 " max blocks %u with error %d",
2466 inode->i_ino,
2467 (unsigned long long)map->m_lblk,
2468 (unsigned)map->m_len, -err);
2469 ext4_msg(sb, KERN_CRIT,
2470 "This should not happen!! Data will "
2471 "be lost\n");
2472 if (err == -ENOSPC)
2473 ext4_print_free_blocks(inode);
2474 invalidate_dirty_pages:
2475 *give_up_on_write = true;
Jan Kara4e7ea812013-06-04 13:17:40 -04002476 return err;
2477 }
Dmitry Monakhov66031202014-08-27 18:40:03 -04002478 progress = 1;
Jan Kara4e7ea812013-06-04 13:17:40 -04002479 /*
2480 * Update buffer state, submit mapped pages, and get us new
2481 * extent to map
2482 */
2483 err = mpage_map_and_submit_buffers(mpd);
2484 if (err < 0)
Dmitry Monakhov66031202014-08-27 18:40:03 -04002485 goto update_disksize;
Jan Kara27d7c4e2013-07-05 21:57:22 -04002486 } while (map->m_len);
Jan Kara4e7ea812013-06-04 13:17:40 -04002487
Dmitry Monakhov66031202014-08-27 18:40:03 -04002488update_disksize:
Theodore Ts'o622cad12014-04-11 10:35:17 -04002489 /*
2490 * Update on-disk size after IO is submitted. Races with
2491 * truncate are avoided by checking i_size under i_data_sem.
2492 */
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002493 disksize = ((loff_t)mpd->first_page) << PAGE_SHIFT;
Qian Cai35df4292020-02-07 09:29:11 -05002494 if (disksize > READ_ONCE(EXT4_I(inode)->i_disksize)) {
Jan Kara4e7ea812013-06-04 13:17:40 -04002495 int err2;
Theodore Ts'o622cad12014-04-11 10:35:17 -04002496 loff_t i_size;
Jan Kara4e7ea812013-06-04 13:17:40 -04002497
Theodore Ts'o622cad12014-04-11 10:35:17 -04002498 down_write(&EXT4_I(inode)->i_data_sem);
2499 i_size = i_size_read(inode);
2500 if (disksize > i_size)
2501 disksize = i_size;
2502 if (disksize > EXT4_I(inode)->i_disksize)
2503 EXT4_I(inode)->i_disksize = disksize;
Theodore Ts'o622cad12014-04-11 10:35:17 -04002504 up_write(&EXT4_I(inode)->i_data_sem);
Theodore Ts'ob907f2d2017-01-11 22:14:49 -05002505 err2 = ext4_mark_inode_dirty(handle, inode);
Theodore Ts'o878520a2019-11-19 21:54:15 -05002506 if (err2) {
Theodore Ts'o54d3adb2020-03-28 19:33:43 -04002507 ext4_error_err(inode->i_sb, -err2,
2508 "Failed to mark inode %lu dirty",
2509 inode->i_ino);
Theodore Ts'o878520a2019-11-19 21:54:15 -05002510 }
Jan Kara4e7ea812013-06-04 13:17:40 -04002511 if (!err)
2512 err = err2;
2513 }
2514 return err;
2515}
2516
2517/*
Jan Karafffb2732013-06-04 13:01:11 -04002518 * Calculate the total number of credits to reserve for one writepages
Theodore Ts'o20970ba2013-06-06 14:00:46 -04002519 * iteration. This is called from ext4_writepages(). We map an extent of
Anatol Pomozov70261f52013-08-28 14:40:12 -04002520 * up to MAX_WRITEPAGES_EXTENT_LEN blocks and then we go on and finish mapping
Jan Karafffb2732013-06-04 13:01:11 -04002521 * the last partial page. So in total we can map MAX_WRITEPAGES_EXTENT_LEN +
2522 * bpp - 1 blocks in bpp different extents.
2523 */
Mingming Cao525f4ed2008-08-19 22:15:58 -04002524static int ext4_da_writepages_trans_blocks(struct inode *inode)
2525{
Jan Karafffb2732013-06-04 13:01:11 -04002526 int bpp = ext4_journal_blocks_per_page(inode);
Mingming Cao525f4ed2008-08-19 22:15:58 -04002527
Jan Karafffb2732013-06-04 13:01:11 -04002528 return ext4_meta_trans_blocks(inode,
2529 MAX_WRITEPAGES_EXTENT_LEN + bpp - 1, bpp);
Mingming Cao525f4ed2008-08-19 22:15:58 -04002530}
Mingming Cao61628a32008-07-11 19:27:31 -04002531
Theodore Ts'o8e48dcf2010-05-16 18:00:00 -04002532/*
Jan Kara4e7ea812013-06-04 13:17:40 -04002533 * mpage_prepare_extent_to_map - find & lock contiguous range of dirty pages
2534 * and underlying extent to map
2535 *
2536 * @mpd - where to look for pages
2537 *
2538 * Walk dirty pages in the mapping. If they are fully mapped, submit them for
2539 * IO immediately. When we find a page which isn't mapped we start accumulating
2540 * extent of buffers underlying these pages that needs mapping (formed by
2541 * either delayed or unwritten buffers). We also lock the pages containing
2542 * these buffers. The extent found is returned in @mpd structure (starting at
2543 * mpd->lblk with length mpd->len blocks).
2544 *
2545 * Note that this function can attach bios to one io_end structure which are
2546 * neither logically nor physically contiguous. Although it may seem as an
2547 * unnecessary complication, it is actually inevitable in blocksize < pagesize
2548 * 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 -04002549 */
Jan Kara4e7ea812013-06-04 13:17:40 -04002550static int mpage_prepare_extent_to_map(struct mpage_da_data *mpd)
Theodore Ts'o8e48dcf2010-05-16 18:00:00 -04002551{
Jan Kara4e7ea812013-06-04 13:17:40 -04002552 struct address_space *mapping = mpd->inode->i_mapping;
2553 struct pagevec pvec;
2554 unsigned int nr_pages;
Ming Leiaeac5892013-10-17 18:56:16 -04002555 long left = mpd->wbc->nr_to_write;
Jan Kara4e7ea812013-06-04 13:17:40 -04002556 pgoff_t index = mpd->first_page;
2557 pgoff_t end = mpd->last_page;
Matthew Wilcox10bbd232017-12-05 17:30:38 -05002558 xa_mark_t tag;
Jan Kara4e7ea812013-06-04 13:17:40 -04002559 int i, err = 0;
2560 int blkbits = mpd->inode->i_blkbits;
2561 ext4_lblk_t lblk;
2562 struct buffer_head *head;
Theodore Ts'o8e48dcf2010-05-16 18:00:00 -04002563
Jan Kara4e7ea812013-06-04 13:17:40 -04002564 if (mpd->wbc->sync_mode == WB_SYNC_ALL || mpd->wbc->tagged_writepages)
Eric Sandeen5b41d922010-10-27 21:30:13 -04002565 tag = PAGECACHE_TAG_TOWRITE;
2566 else
2567 tag = PAGECACHE_TAG_DIRTY;
2568
Mel Gorman86679822017-11-15 17:37:52 -08002569 pagevec_init(&pvec);
Jan Kara4e7ea812013-06-04 13:17:40 -04002570 mpd->map.m_len = 0;
2571 mpd->next_page = index;
Theodore Ts'o4f01b022011-02-26 14:07:37 -05002572 while (index <= end) {
Jan Karadc7f3e82017-11-15 17:34:44 -08002573 nr_pages = pagevec_lookup_range_tag(&pvec, mapping, &index, end,
Jan Kara67fd7072017-11-15 17:35:19 -08002574 tag);
Theodore Ts'o8e48dcf2010-05-16 18:00:00 -04002575 if (nr_pages == 0)
Jan Kara6b8ed622020-05-25 10:12:15 +02002576 break;
Theodore Ts'o8e48dcf2010-05-16 18:00:00 -04002577
2578 for (i = 0; i < nr_pages; i++) {
2579 struct page *page = pvec.pages[i];
2580
2581 /*
Ming Leiaeac5892013-10-17 18:56:16 -04002582 * Accumulated enough dirty pages? This doesn't apply
2583 * to WB_SYNC_ALL mode. For integrity sync we have to
2584 * keep going because someone may be concurrently
2585 * dirtying pages, and we might have synced a lot of
2586 * newly appeared dirty pages, but have not synced all
2587 * of the old dirty pages.
2588 */
2589 if (mpd->wbc->sync_mode == WB_SYNC_NONE && left <= 0)
2590 goto out;
2591
Jan Kara4e7ea812013-06-04 13:17:40 -04002592 /* If we can't merge this page, we are done. */
2593 if (mpd->map.m_len > 0 && mpd->next_page != page->index)
2594 goto out;
Theodore Ts'o78aaced2011-02-26 14:09:14 -05002595
Theodore Ts'o8e48dcf2010-05-16 18:00:00 -04002596 lock_page(page);
Theodore Ts'o8e48dcf2010-05-16 18:00:00 -04002597 /*
Jan Kara4e7ea812013-06-04 13:17:40 -04002598 * If the page is no longer dirty, or its mapping no
2599 * longer corresponds to inode we are writing (which
2600 * means it has been truncated or invalidated), or the
2601 * page is already under writeback and we are not doing
2602 * a data integrity writeback, skip the page
Theodore Ts'o8e48dcf2010-05-16 18:00:00 -04002603 */
Theodore Ts'o4f01b022011-02-26 14:07:37 -05002604 if (!PageDirty(page) ||
2605 (PageWriteback(page) &&
Jan Kara4e7ea812013-06-04 13:17:40 -04002606 (mpd->wbc->sync_mode == WB_SYNC_NONE)) ||
Theodore Ts'o4f01b022011-02-26 14:07:37 -05002607 unlikely(page->mapping != mapping)) {
Theodore Ts'o8e48dcf2010-05-16 18:00:00 -04002608 unlock_page(page);
2609 continue;
2610 }
2611
Darrick J. Wong7cb1a532011-05-18 13:53:20 -04002612 wait_on_page_writeback(page);
Theodore Ts'o8e48dcf2010-05-16 18:00:00 -04002613 BUG_ON(PageWriteback(page));
Theodore Ts'o8e48dcf2010-05-16 18:00:00 -04002614
Jan Kara4e7ea812013-06-04 13:17:40 -04002615 if (mpd->map.m_len == 0)
Theodore Ts'o8eb9e5c2011-02-26 14:07:31 -05002616 mpd->first_page = page->index;
Theodore Ts'o8eb9e5c2011-02-26 14:07:31 -05002617 mpd->next_page = page->index + 1;
Jan Karaf8bec372013-01-28 12:55:08 -05002618 /* Add all dirty buffers to mpd */
Jan Kara4e7ea812013-06-04 13:17:40 -04002619 lblk = ((ext4_lblk_t)page->index) <<
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002620 (PAGE_SHIFT - blkbits);
Jan Karaf8bec372013-01-28 12:55:08 -05002621 head = page_buffers(page);
Jan Kara5f1132b2013-08-17 10:02:33 -04002622 err = mpage_process_page_bufs(mpd, head, head, lblk);
2623 if (err <= 0)
Jan Kara4e7ea812013-06-04 13:17:40 -04002624 goto out;
Jan Kara5f1132b2013-08-17 10:02:33 -04002625 err = 0;
Ming Leiaeac5892013-10-17 18:56:16 -04002626 left--;
Theodore Ts'o8e48dcf2010-05-16 18:00:00 -04002627 }
2628 pagevec_release(&pvec);
2629 cond_resched();
2630 }
Jan Kara6b8ed622020-05-25 10:12:15 +02002631 mpd->scanned_until_end = 1;
Theodore Ts'o4f01b022011-02-26 14:07:37 -05002632 return 0;
Theodore Ts'o8eb9e5c2011-02-26 14:07:31 -05002633out:
2634 pagevec_release(&pvec);
Jan Kara4e7ea812013-06-04 13:17:40 -04002635 return err;
Theodore Ts'o8e48dcf2010-05-16 18:00:00 -04002636}
2637
Theodore Ts'o20970ba2013-06-06 14:00:46 -04002638static int ext4_writepages(struct address_space *mapping,
2639 struct writeback_control *wbc)
Alex Tomas64769242008-07-11 19:27:31 -04002640{
Jan Kara4e7ea812013-06-04 13:17:40 -04002641 pgoff_t writeback_index = 0;
2642 long nr_to_write = wbc->nr_to_write;
Aneesh Kumar K.V22208de2008-10-16 10:10:36 -04002643 int range_whole = 0;
Jan Kara4e7ea812013-06-04 13:17:40 -04002644 int cycled = 1;
Mingming Cao61628a32008-07-11 19:27:31 -04002645 handle_t *handle = NULL;
Aneesh Kumar K.Vdf222912008-09-08 23:05:34 -04002646 struct mpage_da_data mpd;
Aneesh Kumar K.V5e745b02008-08-18 18:00:57 -04002647 struct inode *inode = mapping->host;
Jan Kara6b523df2013-06-04 13:21:11 -04002648 int needed_blocks, rsv_blocks = 0, ret = 0;
Aneesh Kumar K.V5e745b02008-08-18 18:00:57 -04002649 struct ext4_sb_info *sbi = EXT4_SB(mapping->host->i_sb);
Shaohua Li1bce63d12011-10-18 10:55:51 -04002650 struct blk_plug plug;
Theodore Ts'ocb530542013-07-01 08:12:40 -04002651 bool give_up_on_write = false;
Mingming Cao61628a32008-07-11 19:27:31 -04002652
Theodore Ts'o0db1ff22017-02-05 01:28:48 -05002653 if (unlikely(ext4_forced_shutdown(EXT4_SB(inode->i_sb))))
2654 return -EIO;
2655
Eric Biggersbbd55932020-02-19 10:30:46 -08002656 percpu_down_read(&sbi->s_writepages_rwsem);
Theodore Ts'o20970ba2013-06-06 14:00:46 -04002657 trace_ext4_writepages(inode, wbc);
Theodore Ts'oba80b102009-01-03 20:03:21 -05002658
Mingming Cao61628a32008-07-11 19:27:31 -04002659 /*
2660 * No pages to write? This is mainly a kludge to avoid starting
2661 * a transaction for special inodes like journal inode on last iput()
2662 * because that could violate lock ordering on umount
2663 */
Aneesh Kumar K.Va1d6cc52008-08-19 21:55:02 -04002664 if (!mapping->nrpages || !mapping_tagged(mapping, PAGECACHE_TAG_DIRTY))
Ming Leibbf023c72013-10-30 07:27:16 -04002665 goto out_writepages;
Theodore Ts'o2a21e372008-11-05 09:22:24 -05002666
Theodore Ts'o20970ba2013-06-06 14:00:46 -04002667 if (ext4_should_journal_data(inode)) {
Goldwyn Rodrigues043d20d2018-03-26 01:32:50 -04002668 ret = generic_writepages(mapping, wbc);
Ming Leibbf023c72013-10-30 07:27:16 -04002669 goto out_writepages;
Theodore Ts'o20970ba2013-06-06 14:00:46 -04002670 }
2671
Theodore Ts'o2a21e372008-11-05 09:22:24 -05002672 /*
2673 * If the filesystem has aborted, it is read-only, so return
2674 * right away instead of dumping stack traces later on that
2675 * will obscure the real source of the problem. We test
Linus Torvalds1751e8a2017-11-27 13:05:09 -08002676 * EXT4_MF_FS_ABORTED instead of sb->s_flag's SB_RDONLY because
Theodore Ts'o2a21e372008-11-05 09:22:24 -05002677 * the latter could be true if the filesystem is mounted
Theodore Ts'o20970ba2013-06-06 14:00:46 -04002678 * read-only, and in that case, ext4_writepages should
Theodore Ts'o2a21e372008-11-05 09:22:24 -05002679 * *never* be called, so if that ever happens, we would want
2680 * the stack trace.
2681 */
Theodore Ts'o0db1ff22017-02-05 01:28:48 -05002682 if (unlikely(ext4_forced_shutdown(EXT4_SB(mapping->host->i_sb)) ||
Harshad Shirwadkar9b5f6c92020-11-05 19:59:09 -08002683 ext4_test_mount_flag(inode->i_sb, EXT4_MF_FS_ABORTED))) {
Ming Leibbf023c72013-10-30 07:27:16 -04002684 ret = -EROFS;
2685 goto out_writepages;
2686 }
Theodore Ts'o2a21e372008-11-05 09:22:24 -05002687
Jan Kara4e7ea812013-06-04 13:17:40 -04002688 /*
2689 * If we have inline data and arrive here, it means that
2690 * we will soon create the block for the 1st page, so
2691 * we'd better clear the inline data here.
2692 */
2693 if (ext4_has_inline_data(inode)) {
2694 /* Just inode will be modified... */
2695 handle = ext4_journal_start(inode, EXT4_HT_INODE, 1);
2696 if (IS_ERR(handle)) {
2697 ret = PTR_ERR(handle);
2698 goto out_writepages;
2699 }
2700 BUG_ON(ext4_test_inode_state(inode,
2701 EXT4_STATE_MAY_INLINE_DATA));
2702 ext4_destroy_inline_data(handle, inode);
2703 ext4_journal_stop(handle);
2704 }
2705
yangerkun4e343232019-08-11 16:27:41 -04002706 if (ext4_should_dioread_nolock(inode)) {
2707 /*
2708 * We may need to convert up to one extent per block in
2709 * the page and we may dirty the inode.
2710 */
2711 rsv_blocks = 1 + ext4_chunk_trans_blocks(inode,
2712 PAGE_SIZE >> inode->i_blkbits);
2713 }
2714
Aneesh Kumar K.V22208de2008-10-16 10:10:36 -04002715 if (wbc->range_start == 0 && wbc->range_end == LLONG_MAX)
2716 range_whole = 1;
Mingming Cao61628a32008-07-11 19:27:31 -04002717
Aneesh Kumar K.V2acf2c22009-02-14 10:42:58 -05002718 if (wbc->range_cyclic) {
Jan Kara4e7ea812013-06-04 13:17:40 -04002719 writeback_index = mapping->writeback_index;
2720 if (writeback_index)
Aneesh Kumar K.V2acf2c22009-02-14 10:42:58 -05002721 cycled = 0;
Jan Kara4e7ea812013-06-04 13:17:40 -04002722 mpd.first_page = writeback_index;
2723 mpd.last_page = -1;
Eric Sandeen5b41d922010-10-27 21:30:13 -04002724 } else {
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002725 mpd.first_page = wbc->range_start >> PAGE_SHIFT;
2726 mpd.last_page = wbc->range_end >> PAGE_SHIFT;
Eric Sandeen5b41d922010-10-27 21:30:13 -04002727 }
Aneesh Kumar K.Va1d6cc52008-08-19 21:55:02 -04002728
Jan Kara4e7ea812013-06-04 13:17:40 -04002729 mpd.inode = inode;
2730 mpd.wbc = wbc;
2731 ext4_io_submit_init(&mpd.io_submit, wbc);
Aneesh Kumar K.V2acf2c22009-02-14 10:42:58 -05002732retry:
Wu Fengguang6e6938b2010-06-06 10:38:15 -06002733 if (wbc->sync_mode == WB_SYNC_ALL || wbc->tagged_writepages)
Jan Kara4e7ea812013-06-04 13:17:40 -04002734 tag_pages_for_writeback(mapping, mpd.first_page, mpd.last_page);
Shaohua Li1bce63d12011-10-18 10:55:51 -04002735 blk_start_plug(&plug);
Jan Karadddbd6a2017-04-30 18:29:10 -04002736
2737 /*
2738 * First writeback pages that don't need mapping - we can avoid
2739 * starting a transaction unnecessarily and also avoid being blocked
2740 * in the block layer on device congestion while having transaction
2741 * started.
2742 */
2743 mpd.do_map = 0;
Jan Kara6b8ed622020-05-25 10:12:15 +02002744 mpd.scanned_until_end = 0;
Jan Karadddbd6a2017-04-30 18:29:10 -04002745 mpd.io_submit.io_end = ext4_init_io_end(inode, GFP_KERNEL);
2746 if (!mpd.io_submit.io_end) {
2747 ret = -ENOMEM;
2748 goto unplug;
2749 }
2750 ret = mpage_prepare_extent_to_map(&mpd);
Xiaoguang Wanga297b2f2019-02-10 23:53:21 -05002751 /* Unlock pages we didn't use */
2752 mpage_release_unused_pages(&mpd, false);
Jan Karadddbd6a2017-04-30 18:29:10 -04002753 /* Submit prepared bio */
2754 ext4_io_submit(&mpd.io_submit);
2755 ext4_put_io_end_defer(mpd.io_submit.io_end);
2756 mpd.io_submit.io_end = NULL;
Jan Karadddbd6a2017-04-30 18:29:10 -04002757 if (ret < 0)
2758 goto unplug;
2759
Jan Kara6b8ed622020-05-25 10:12:15 +02002760 while (!mpd.scanned_until_end && wbc->nr_to_write > 0) {
Jan Kara4e7ea812013-06-04 13:17:40 -04002761 /* For each extent of pages we use new io_end */
2762 mpd.io_submit.io_end = ext4_init_io_end(inode, GFP_KERNEL);
2763 if (!mpd.io_submit.io_end) {
2764 ret = -ENOMEM;
2765 break;
2766 }
Aneesh Kumar K.Va1d6cc52008-08-19 21:55:02 -04002767
2768 /*
Jan Kara4e7ea812013-06-04 13:17:40 -04002769 * We have two constraints: We find one extent to map and we
2770 * must always write out whole page (makes a difference when
2771 * blocksize < pagesize) so that we don't block on IO when we
2772 * try to write out the rest of the page. Journalled mode is
2773 * not supported by delalloc.
Aneesh Kumar K.Va1d6cc52008-08-19 21:55:02 -04002774 */
2775 BUG_ON(ext4_should_journal_data(inode));
Mingming Cao525f4ed2008-08-19 22:15:58 -04002776 needed_blocks = ext4_da_writepages_trans_blocks(inode);
Aneesh Kumar K.Va1d6cc52008-08-19 21:55:02 -04002777
Jan Kara4e7ea812013-06-04 13:17:40 -04002778 /* start a new transaction */
Jan Kara6b523df2013-06-04 13:21:11 -04002779 handle = ext4_journal_start_with_reserve(inode,
2780 EXT4_HT_WRITE_PAGE, needed_blocks, rsv_blocks);
Mingming Cao61628a32008-07-11 19:27:31 -04002781 if (IS_ERR(handle)) {
2782 ret = PTR_ERR(handle);
Theodore Ts'o16939182009-09-26 17:43:59 -04002783 ext4_msg(inode->i_sb, KERN_CRIT, "%s: jbd2_start: "
Curt Wohlgemuthfbe845d2010-05-16 13:00:00 -04002784 "%ld pages, ino %lu; err %d", __func__,
Aneesh Kumar K.Va1d6cc52008-08-19 21:55:02 -04002785 wbc->nr_to_write, inode->i_ino, ret);
Jan Kara4e7ea812013-06-04 13:17:40 -04002786 /* Release allocated io_end */
2787 ext4_put_io_end(mpd.io_submit.io_end);
Jan Karadddbd6a2017-04-30 18:29:10 -04002788 mpd.io_submit.io_end = NULL;
Jan Kara4e7ea812013-06-04 13:17:40 -04002789 break;
Mingming Cao61628a32008-07-11 19:27:31 -04002790 }
Jan Karadddbd6a2017-04-30 18:29:10 -04002791 mpd.do_map = 1;
Theodore Ts'of63e60052009-02-23 16:42:39 -05002792
Jan Kara4e7ea812013-06-04 13:17:40 -04002793 trace_ext4_da_write_pages(inode, mpd.first_page, mpd.wbc);
2794 ret = mpage_prepare_extent_to_map(&mpd);
Jan Kara6b8ed622020-05-25 10:12:15 +02002795 if (!ret && mpd.map.m_len)
2796 ret = mpage_map_and_submit_extent(handle, &mpd,
Theodore Ts'ocb530542013-07-01 08:12:40 -04002797 &give_up_on_write);
Jan Kara646caa92016-07-04 10:14:01 -04002798 /*
2799 * Caution: If the handle is synchronous,
2800 * ext4_journal_stop() can wait for transaction commit
2801 * to finish which may depend on writeback of pages to
2802 * complete or on page lock to be released. In that
Randy Dunlapb483bb72020-08-04 19:48:50 -07002803 * case, we have to wait until after we have
Jan Kara646caa92016-07-04 10:14:01 -04002804 * submitted all the IO, released page locks we hold,
2805 * and dropped io_end reference (for extent conversion
2806 * to be able to complete) before stopping the handle.
2807 */
2808 if (!ext4_handle_valid(handle) || handle->h_sync == 0) {
2809 ext4_journal_stop(handle);
2810 handle = NULL;
Jan Karadddbd6a2017-04-30 18:29:10 -04002811 mpd.do_map = 0;
Jan Kara646caa92016-07-04 10:14:01 -04002812 }
Jan Kara4e7ea812013-06-04 13:17:40 -04002813 /* Unlock pages we didn't use */
Theodore Ts'ocb530542013-07-01 08:12:40 -04002814 mpage_release_unused_pages(&mpd, give_up_on_write);
Xiaoguang Wanga297b2f2019-02-10 23:53:21 -05002815 /* Submit prepared bio */
2816 ext4_io_submit(&mpd.io_submit);
2817
Jan Kara646caa92016-07-04 10:14:01 -04002818 /*
2819 * Drop our io_end reference we got from init. We have
2820 * to be careful and use deferred io_end finishing if
2821 * we are still holding the transaction as we can
2822 * release the last reference to io_end which may end
2823 * up doing unwritten extent conversion.
2824 */
2825 if (handle) {
2826 ext4_put_io_end_defer(mpd.io_submit.io_end);
2827 ext4_journal_stop(handle);
2828 } else
2829 ext4_put_io_end(mpd.io_submit.io_end);
Jan Karadddbd6a2017-04-30 18:29:10 -04002830 mpd.io_submit.io_end = NULL;
Aneesh Kumar K.Vdf222912008-09-08 23:05:34 -04002831
Jan Kara4e7ea812013-06-04 13:17:40 -04002832 if (ret == -ENOSPC && sbi->s_journal) {
2833 /*
2834 * Commit the transaction which would
Aneesh Kumar K.V22208de2008-10-16 10:10:36 -04002835 * free blocks released in the transaction
2836 * and try again
2837 */
Aneesh Kumar K.Vdf222912008-09-08 23:05:34 -04002838 jbd2_journal_force_commit_nested(sbi->s_journal);
Aneesh Kumar K.V22208de2008-10-16 10:10:36 -04002839 ret = 0;
Jan Kara4e7ea812013-06-04 13:17:40 -04002840 continue;
2841 }
2842 /* Fatal error - ENOMEM, EIO... */
2843 if (ret)
Mingming Cao61628a32008-07-11 19:27:31 -04002844 break;
Mingming Cao61628a32008-07-11 19:27:31 -04002845 }
Jan Karadddbd6a2017-04-30 18:29:10 -04002846unplug:
Shaohua Li1bce63d12011-10-18 10:55:51 -04002847 blk_finish_plug(&plug);
Jan Kara9c12a832013-09-16 08:24:26 -04002848 if (!ret && !cycled && wbc->nr_to_write > 0) {
Aneesh Kumar K.V2acf2c22009-02-14 10:42:58 -05002849 cycled = 1;
Jan Kara4e7ea812013-06-04 13:17:40 -04002850 mpd.last_page = writeback_index - 1;
2851 mpd.first_page = 0;
Aneesh Kumar K.V2acf2c22009-02-14 10:42:58 -05002852 goto retry;
2853 }
Mingming Cao61628a32008-07-11 19:27:31 -04002854
Aneesh Kumar K.V22208de2008-10-16 10:10:36 -04002855 /* Update index */
Aneesh Kumar K.V22208de2008-10-16 10:10:36 -04002856 if (wbc->range_cyclic || (range_whole && wbc->nr_to_write > 0))
2857 /*
Jan Kara4e7ea812013-06-04 13:17:40 -04002858 * Set the writeback_index so that range_cyclic
Aneesh Kumar K.V22208de2008-10-16 10:10:36 -04002859 * mode will write it back later
2860 */
Jan Kara4e7ea812013-06-04 13:17:40 -04002861 mapping->writeback_index = mpd.first_page;
Aneesh Kumar K.Va1d6cc52008-08-19 21:55:02 -04002862
Mingming Cao61628a32008-07-11 19:27:31 -04002863out_writepages:
Theodore Ts'o20970ba2013-06-06 14:00:46 -04002864 trace_ext4_writepages_result(inode, wbc, ret,
2865 nr_to_write - wbc->nr_to_write);
Eric Biggersbbd55932020-02-19 10:30:46 -08002866 percpu_up_read(&sbi->s_writepages_rwsem);
Mingming Cao61628a32008-07-11 19:27:31 -04002867 return ret;
Alex Tomas64769242008-07-11 19:27:31 -04002868}
2869
Dan Williams5f0663b2017-12-21 12:25:11 -08002870static int ext4_dax_writepages(struct address_space *mapping,
2871 struct writeback_control *wbc)
2872{
2873 int ret;
2874 long nr_to_write = wbc->nr_to_write;
2875 struct inode *inode = mapping->host;
2876 struct ext4_sb_info *sbi = EXT4_SB(mapping->host->i_sb);
2877
2878 if (unlikely(ext4_forced_shutdown(EXT4_SB(inode->i_sb))))
2879 return -EIO;
2880
Eric Biggersbbd55932020-02-19 10:30:46 -08002881 percpu_down_read(&sbi->s_writepages_rwsem);
Dan Williams5f0663b2017-12-21 12:25:11 -08002882 trace_ext4_writepages(inode, wbc);
2883
Vivek Goyal3f666c52020-01-03 13:33:07 -05002884 ret = dax_writeback_mapping_range(mapping, sbi->s_daxdev, wbc);
Dan Williams5f0663b2017-12-21 12:25:11 -08002885 trace_ext4_writepages_result(inode, wbc, ret,
2886 nr_to_write - wbc->nr_to_write);
Eric Biggersbbd55932020-02-19 10:30:46 -08002887 percpu_up_read(&sbi->s_writepages_rwsem);
Dan Williams5f0663b2017-12-21 12:25:11 -08002888 return ret;
2889}
2890
Aneesh Kumar K.V79f0be82008-10-08 23:13:30 -04002891static int ext4_nonda_switch(struct super_block *sb)
2892{
Eric Whitney5c1ff332013-04-09 09:27:31 -04002893 s64 free_clusters, dirty_clusters;
Aneesh Kumar K.V79f0be82008-10-08 23:13:30 -04002894 struct ext4_sb_info *sbi = EXT4_SB(sb);
2895
2896 /*
2897 * switch to non delalloc mode if we are running low
2898 * on free block. The free block accounting via percpu
Eric Dumazet179f7eb2009-01-06 14:41:04 -08002899 * counters can get slightly wrong with percpu_counter_batch getting
Aneesh Kumar K.V79f0be82008-10-08 23:13:30 -04002900 * accumulated on each CPU without updating global counters
2901 * Delalloc need an accurate free block accounting. So switch
2902 * to non delalloc when we are near to error range.
2903 */
Eric Whitney5c1ff332013-04-09 09:27:31 -04002904 free_clusters =
2905 percpu_counter_read_positive(&sbi->s_freeclusters_counter);
2906 dirty_clusters =
2907 percpu_counter_read_positive(&sbi->s_dirtyclusters_counter);
Theodore Ts'o00d4e732012-09-19 22:42:36 -04002908 /*
2909 * Start pushing delalloc when 1/2 of free blocks are dirty.
2910 */
Eric Whitney5c1ff332013-04-09 09:27:31 -04002911 if (dirty_clusters && (free_clusters < 2 * dirty_clusters))
Miao Xie10ee27a2013-01-10 13:47:57 +08002912 try_to_writeback_inodes_sb(sb, WB_REASON_FS_FREE_SPACE);
Theodore Ts'o00d4e732012-09-19 22:42:36 -04002913
Eric Whitney5c1ff332013-04-09 09:27:31 -04002914 if (2 * free_clusters < 3 * dirty_clusters ||
2915 free_clusters < (dirty_clusters + EXT4_FREECLUSTERS_WATERMARK)) {
Aneesh Kumar K.V79f0be82008-10-08 23:13:30 -04002916 /*
Eric Sandeenc8afb442009-12-23 07:58:12 -05002917 * free block count is less than 150% of dirty blocks
2918 * or free blocks is less than watermark
Aneesh Kumar K.V79f0be82008-10-08 23:13:30 -04002919 */
2920 return 1;
2921 }
2922 return 0;
2923}
2924
Alex Tomas64769242008-07-11 19:27:31 -04002925static int ext4_da_write_begin(struct file *file, struct address_space *mapping,
Theodore Ts'ode9a55b2009-06-14 17:45:34 -04002926 loff_t pos, unsigned len, unsigned flags,
2927 struct page **pagep, void **fsdata)
Alex Tomas64769242008-07-11 19:27:31 -04002928{
Eric Sandeen72b8ab92010-05-16 11:00:00 -04002929 int ret, retries = 0;
Alex Tomas64769242008-07-11 19:27:31 -04002930 struct page *page;
2931 pgoff_t index;
Alex Tomas64769242008-07-11 19:27:31 -04002932 struct inode *inode = mapping->host;
Alex Tomas64769242008-07-11 19:27:31 -04002933
Theodore Ts'o0db1ff22017-02-05 01:28:48 -05002934 if (unlikely(ext4_forced_shutdown(EXT4_SB(inode->i_sb))))
2935 return -EIO;
2936
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002937 index = pos >> PAGE_SHIFT;
Aneesh Kumar K.V79f0be82008-10-08 23:13:30 -04002938
Eric Biggersc93d8f82019-07-22 09:26:24 -07002939 if (ext4_nonda_switch(inode->i_sb) || S_ISLNK(inode->i_mode) ||
2940 ext4_verity_in_progress(inode)) {
Aneesh Kumar K.V79f0be82008-10-08 23:13:30 -04002941 *fsdata = (void *)FALL_BACK_TO_NONDELALLOC;
2942 return ext4_write_begin(file, mapping, pos,
2943 len, flags, pagep, fsdata);
2944 }
2945 *fsdata = (void *)0;
Theodore Ts'o9bffad12009-06-17 11:48:11 -04002946 trace_ext4_da_write_begin(inode, pos, len, flags);
Tao Ma9c3569b2012-12-10 14:05:57 -05002947
2948 if (ext4_test_inode_state(inode, EXT4_STATE_MAY_INLINE_DATA)) {
2949 ret = ext4_da_write_inline_data_begin(mapping, inode,
2950 pos, len, flags,
2951 pagep, fsdata);
2952 if (ret < 0)
Theodore Ts'o47564bf2013-02-09 09:24:14 -05002953 return ret;
2954 if (ret == 1)
2955 return 0;
Tao Ma9c3569b2012-12-10 14:05:57 -05002956 }
2957
Zhang Yicc883232021-07-16 20:20:24 +08002958retry:
Theodore Ts'o47564bf2013-02-09 09:24:14 -05002959 page = grab_cache_page_write_begin(mapping, index, flags);
2960 if (!page)
2961 return -ENOMEM;
Theodore Ts'o47564bf2013-02-09 09:24:14 -05002962
Theodore Ts'o47564bf2013-02-09 09:24:14 -05002963 /* In case writeback began while the page was unlocked */
Dmitry Monakhov7afe5aa2013-08-28 14:30:47 -04002964 wait_for_stable_page(page);
Alex Tomas64769242008-07-11 19:27:31 -04002965
Chandan Rajendra643fa962018-12-12 15:20:12 +05302966#ifdef CONFIG_FS_ENCRYPTION
Michael Halcrow2058f832015-04-12 00:55:10 -04002967 ret = ext4_block_write_begin(page, pos, len,
2968 ext4_da_get_block_prep);
2969#else
Christoph Hellwig6e1db882010-06-04 11:29:57 +02002970 ret = __block_write_begin(page, pos, len, ext4_da_get_block_prep);
Michael Halcrow2058f832015-04-12 00:55:10 -04002971#endif
Alex Tomas64769242008-07-11 19:27:31 -04002972 if (ret < 0) {
2973 unlock_page(page);
Zhang Yicc883232021-07-16 20:20:24 +08002974 put_page(page);
Aneesh Kumar K.Vae4d5372008-09-13 13:10:25 -04002975 /*
2976 * block_write_begin may have instantiated a few blocks
2977 * outside i_size. Trim these off again. Don't need
Zhang Yicc883232021-07-16 20:20:24 +08002978 * i_size_read because we hold inode lock.
Aneesh Kumar K.Vae4d5372008-09-13 13:10:25 -04002979 */
2980 if (pos + len > inode->i_size)
Jan Karab9a42072009-12-08 21:24:33 -05002981 ext4_truncate_failed_write(inode);
Theodore Ts'o47564bf2013-02-09 09:24:14 -05002982
2983 if (ret == -ENOSPC &&
2984 ext4_should_retry_alloc(inode->i_sb, &retries))
Zhang Yicc883232021-07-16 20:20:24 +08002985 goto retry;
Theodore Ts'o47564bf2013-02-09 09:24:14 -05002986 return ret;
Alex Tomas64769242008-07-11 19:27:31 -04002987 }
2988
Theodore Ts'o47564bf2013-02-09 09:24:14 -05002989 *pagep = page;
Alex Tomas64769242008-07-11 19:27:31 -04002990 return ret;
2991}
2992
Mingming Cao632eaea2008-07-11 19:27:31 -04002993/*
2994 * Check if we should update i_disksize
2995 * when write to the end of file but not require block allocation
2996 */
2997static int ext4_da_should_update_i_disksize(struct page *page,
Theodore Ts'ode9a55b2009-06-14 17:45:34 -04002998 unsigned long offset)
Mingming Cao632eaea2008-07-11 19:27:31 -04002999{
3000 struct buffer_head *bh;
3001 struct inode *inode = page->mapping->host;
3002 unsigned int idx;
3003 int i;
3004
3005 bh = page_buffers(page);
3006 idx = offset >> inode->i_blkbits;
3007
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04003008 for (i = 0; i < idx; i++)
Mingming Cao632eaea2008-07-11 19:27:31 -04003009 bh = bh->b_this_page;
3010
Aneesh Kumar K.V29fa89d2009-05-12 16:30:27 -04003011 if (!buffer_mapped(bh) || (buffer_delay(bh)) || buffer_unwritten(bh))
Mingming Cao632eaea2008-07-11 19:27:31 -04003012 return 0;
3013 return 1;
3014}
3015
Alex Tomas64769242008-07-11 19:27:31 -04003016static int ext4_da_write_end(struct file *file,
Theodore Ts'ode9a55b2009-06-14 17:45:34 -04003017 struct address_space *mapping,
3018 loff_t pos, unsigned len, unsigned copied,
3019 struct page *page, void *fsdata)
Alex Tomas64769242008-07-11 19:27:31 -04003020{
3021 struct inode *inode = mapping->host;
Alex Tomas64769242008-07-11 19:27:31 -04003022 loff_t new_i_size;
Mingming Cao632eaea2008-07-11 19:27:31 -04003023 unsigned long start, end;
Aneesh Kumar K.V79f0be82008-10-08 23:13:30 -04003024 int write_mode = (int)(unsigned long)fsdata;
3025
Theodore Ts'o74d553a2013-04-03 12:39:17 -04003026 if (write_mode == FALL_BACK_TO_NONDELALLOC)
3027 return ext4_write_end(file, mapping, pos,
3028 len, copied, page, fsdata);
Mingming Cao632eaea2008-07-11 19:27:31 -04003029
Theodore Ts'o9bffad12009-06-17 11:48:11 -04003030 trace_ext4_da_write_end(inode, pos, len, copied);
Tao Ma9c3569b2012-12-10 14:05:57 -05003031
3032 if (write_mode != CONVERT_INLINE_DATA &&
3033 ext4_test_inode_state(inode, EXT4_STATE_MAY_INLINE_DATA) &&
3034 ext4_has_inline_data(inode))
Zhang Yi6984aef2021-07-16 20:20:23 +08003035 return ext4_write_inline_data_end(inode, pos, len, copied, page);
Tao Ma9c3569b2012-12-10 14:05:57 -05003036
Alex Tomas64769242008-07-11 19:27:31 -04003037 start = pos & (PAGE_SIZE - 1);
3038 end = start + copied - 1;
Alex Tomas64769242008-07-11 19:27:31 -04003039
Alex Tomas64769242008-07-11 19:27:31 -04003040 /*
Zhang Yi4df031f2021-07-16 20:20:21 +08003041 * Since we are holding inode lock, we are sure i_disksize <=
3042 * i_size. We also know that if i_disksize < i_size, there are
3043 * delalloc writes pending in the range upto i_size. If the end of
3044 * the current write is <= i_size, there's no need to touch
3045 * i_disksize since writeback will push i_disksize upto i_size
3046 * eventually. If the end of the current write is > i_size and
3047 * inside an allocated block (ext4_da_should_update_i_disksize()
3048 * check), we need to update i_disksize here as neither
3049 * ext4_writepage() nor certain ext4_writepages() paths not
3050 * allocating blocks update i_disksize.
3051 *
3052 * Note that we defer inode dirtying to generic_write_end() /
3053 * ext4_da_write_inline_data_end().
Mingming Caod2a17632008-07-14 17:52:37 -04003054 */
Alex Tomas64769242008-07-11 19:27:31 -04003055 new_i_size = pos + copied;
Zhang Yi6984aef2021-07-16 20:20:23 +08003056 if (copied && new_i_size > inode->i_size &&
3057 ext4_da_should_update_i_disksize(page, end))
3058 ext4_update_i_disksize(inode, new_i_size);
Theodore Ts'occd25062009-02-26 01:04:07 -05003059
Zhang Yicc883232021-07-16 20:20:24 +08003060 return generic_write_end(file, mapping, pos, len, copied, page, fsdata);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003061}
3062
Theodore Ts'occd25062009-02-26 01:04:07 -05003063/*
3064 * Force all delayed allocation blocks to be allocated for a given inode.
3065 */
3066int ext4_alloc_da_blocks(struct inode *inode)
3067{
3068 trace_ext4_alloc_da_blocks(inode);
3069
Theodore Ts'o71d4f7d2014-07-15 06:02:38 -04003070 if (!EXT4_I(inode)->i_reserved_data_blocks)
Theodore Ts'occd25062009-02-26 01:04:07 -05003071 return 0;
3072
3073 /*
3074 * We do something simple for now. The filemap_flush() will
3075 * also start triggering a write of the data blocks, which is
3076 * not strictly speaking necessary (and for users of
3077 * laptop_mode, not even desirable). However, to do otherwise
3078 * would require replicating code paths in:
Theodore Ts'ode9a55b2009-06-14 17:45:34 -04003079 *
Theodore Ts'o20970ba2013-06-06 14:00:46 -04003080 * ext4_writepages() ->
Theodore Ts'occd25062009-02-26 01:04:07 -05003081 * write_cache_pages() ---> (via passed in callback function)
3082 * __mpage_da_writepage() -->
3083 * mpage_add_bh_to_extent()
3084 * mpage_da_map_blocks()
3085 *
3086 * The problem is that write_cache_pages(), located in
3087 * mm/page-writeback.c, marks pages clean in preparation for
3088 * doing I/O, which is not desirable if we're not planning on
3089 * doing I/O at all.
3090 *
3091 * We could call write_cache_pages(), and then redirty all of
Wu Fengguang380cf092010-11-11 19:23:29 +08003092 * the pages by calling redirty_page_for_writepage() but that
Theodore Ts'occd25062009-02-26 01:04:07 -05003093 * would be ugly in the extreme. So instead we would need to
3094 * replicate parts of the code in the above functions,
Lucas De Marchi25985ed2011-03-30 22:57:33 -03003095 * simplifying them because we wouldn't actually intend to
Theodore Ts'occd25062009-02-26 01:04:07 -05003096 * write out the pages, but rather only collect contiguous
3097 * logical block extents, call the multi-block allocator, and
3098 * then update the buffer heads with the block allocations.
Theodore Ts'ode9a55b2009-06-14 17:45:34 -04003099 *
Theodore Ts'occd25062009-02-26 01:04:07 -05003100 * For now, though, we'll cheat by calling filemap_flush(),
3101 * which will map the blocks, and start the I/O, but not
3102 * actually wait for the I/O to complete.
3103 */
3104 return filemap_flush(inode->i_mapping);
3105}
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003106
3107/*
3108 * bmap() is special. It gets used by applications such as lilo and by
3109 * the swapper to find the on-disk block of a specific piece of data.
3110 *
3111 * Naturally, this is dangerous if the block concerned is still in the
3112 * journal. If somebody makes a swapfile on an ext4 data-journaling
3113 * filesystem and enables swap, then they may get a nasty shock when the
3114 * data getting swapped to that swapfile suddenly gets overwritten by
3115 * the original zero's written out previously to the journal and
3116 * awaiting writeback in the kernel's buffer cache.
3117 *
3118 * So, if we see any bmap calls here on a modified, data-journaled file,
3119 * take extra steps to flush any blocks which might be in the cache.
3120 */
3121static sector_t ext4_bmap(struct address_space *mapping, sector_t block)
3122{
3123 struct inode *inode = mapping->host;
3124 journal_t *journal;
3125 int err;
3126
Tao Ma46c7f252012-12-10 14:04:52 -05003127 /*
3128 * We can get here for an inline file via the FIBMAP ioctl
3129 */
3130 if (ext4_has_inline_data(inode))
3131 return 0;
3132
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003133 if (mapping_tagged(mapping, PAGECACHE_TAG_DIRTY) &&
3134 test_opt(inode->i_sb, DELALLOC)) {
3135 /*
3136 * With delalloc we want to sync the file
3137 * so that we can make sure we allocate
3138 * blocks for file
3139 */
3140 filemap_write_and_wait(mapping);
3141 }
3142
Theodore Ts'o19f5fb72010-01-24 14:34:07 -05003143 if (EXT4_JOURNAL(inode) &&
3144 ext4_test_inode_state(inode, EXT4_STATE_JDATA)) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003145 /*
3146 * This is a REALLY heavyweight approach, but the use of
3147 * bmap on dirty files is expected to be extremely rare:
3148 * only if we run lilo or swapon on a freshly made file
3149 * do we expect this to happen.
3150 *
3151 * (bmap requires CAP_SYS_RAWIO so this does not
3152 * represent an unprivileged user DOS attack --- we'd be
3153 * in trouble if mortal users could trigger this path at
3154 * will.)
3155 *
3156 * NB. EXT4_STATE_JDATA is not set on files other than
3157 * regular files. If somebody wants to bmap a directory
3158 * or symlink and gets confused because the buffer
3159 * hasn't yet been flushed to disk, they deserve
3160 * everything they get.
3161 */
3162
Theodore Ts'o19f5fb72010-01-24 14:34:07 -05003163 ext4_clear_inode_state(inode, EXT4_STATE_JDATA);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003164 journal = EXT4_JOURNAL(inode);
3165 jbd2_journal_lock_updates(journal);
Leah Rumancik01d5d962021-05-18 15:13:25 +00003166 err = jbd2_journal_flush(journal, 0);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003167 jbd2_journal_unlock_updates(journal);
3168
3169 if (err)
3170 return 0;
3171 }
3172
Ritesh Harjaniac58e4f2020-02-28 14:56:56 +05303173 return iomap_bmap(mapping, block, &ext4_iomap_ops);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003174}
3175
Mingming Cao617ba132006-10-11 01:20:53 -07003176static int ext4_readpage(struct file *file, struct page *page)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003177{
Tao Ma46c7f252012-12-10 14:04:52 -05003178 int ret = -EAGAIN;
3179 struct inode *inode = page->mapping->host;
3180
Jiaying Zhang0562e0b2011-03-21 21:38:05 -04003181 trace_ext4_readpage(page);
Tao Ma46c7f252012-12-10 14:04:52 -05003182
3183 if (ext4_has_inline_data(inode))
3184 ret = ext4_readpage_inline(inode, page);
3185
3186 if (ret == -EAGAIN)
Matthew Wilcox (Oracle)a07f6242020-06-01 21:47:20 -07003187 return ext4_mpage_readpages(inode, NULL, page);
Tao Ma46c7f252012-12-10 14:04:52 -05003188
3189 return ret;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003190}
3191
Matthew Wilcox (Oracle)6311f91f2020-06-01 21:47:16 -07003192static void ext4_readahead(struct readahead_control *rac)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003193{
Matthew Wilcox (Oracle)6311f91f2020-06-01 21:47:16 -07003194 struct inode *inode = rac->mapping->host;
Tao Ma46c7f252012-12-10 14:04:52 -05003195
Matthew Wilcox (Oracle)6311f91f2020-06-01 21:47:16 -07003196 /* If the file has inline data, no need to do readahead. */
Tao Ma46c7f252012-12-10 14:04:52 -05003197 if (ext4_has_inline_data(inode))
Matthew Wilcox (Oracle)6311f91f2020-06-01 21:47:16 -07003198 return;
Tao Ma46c7f252012-12-10 14:04:52 -05003199
Matthew Wilcox (Oracle)a07f6242020-06-01 21:47:20 -07003200 ext4_mpage_readpages(inode, rac, NULL);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003201}
3202
Lukas Czernerd47992f2013-05-21 23:17:23 -04003203static void ext4_invalidatepage(struct page *page, unsigned int offset,
3204 unsigned int length)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003205{
Lukas Czernerca99fdd2013-05-21 23:25:01 -04003206 trace_ext4_invalidatepage(page, offset, length);
Jiaying Zhang0562e0b2011-03-21 21:38:05 -04003207
Jan Kara4520fb32012-12-25 13:28:54 -05003208 /* No journalling happens on data buffers when this function is used */
3209 WARN_ON(page_has_buffers(page) && buffer_jbd(page_buffers(page)));
3210
Lukas Czernerca99fdd2013-05-21 23:25:01 -04003211 block_invalidatepage(page, offset, length);
Jan Kara4520fb32012-12-25 13:28:54 -05003212}
3213
Jan Kara53e87262012-12-25 13:29:52 -05003214static int __ext4_journalled_invalidatepage(struct page *page,
Lukas Czernerca99fdd2013-05-21 23:25:01 -04003215 unsigned int offset,
3216 unsigned int length)
Jan Kara4520fb32012-12-25 13:28:54 -05003217{
3218 journal_t *journal = EXT4_JOURNAL(page->mapping->host);
3219
Lukas Czernerca99fdd2013-05-21 23:25:01 -04003220 trace_ext4_journalled_invalidatepage(page, offset, length);
Jan Kara4520fb32012-12-25 13:28:54 -05003221
Jiaying Zhang744692d2010-03-04 16:14:02 -05003222 /*
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003223 * If it's a full truncate we just forget about the pending dirtying
3224 */
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03003225 if (offset == 0 && length == PAGE_SIZE)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003226 ClearPageChecked(page);
3227
Lukas Czernerca99fdd2013-05-21 23:25:01 -04003228 return jbd2_journal_invalidatepage(journal, page, offset, length);
Jan Kara53e87262012-12-25 13:29:52 -05003229}
3230
3231/* Wrapper for aops... */
3232static void ext4_journalled_invalidatepage(struct page *page,
Lukas Czernerd47992f2013-05-21 23:17:23 -04003233 unsigned int offset,
3234 unsigned int length)
Jan Kara53e87262012-12-25 13:29:52 -05003235{
Lukas Czernerca99fdd2013-05-21 23:25:01 -04003236 WARN_ON(__ext4_journalled_invalidatepage(page, offset, length) < 0);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003237}
3238
Mingming Cao617ba132006-10-11 01:20:53 -07003239static int ext4_releasepage(struct page *page, gfp_t wait)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003240{
Mingming Cao617ba132006-10-11 01:20:53 -07003241 journal_t *journal = EXT4_JOURNAL(page->mapping->host);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003242
Jiaying Zhang0562e0b2011-03-21 21:38:05 -04003243 trace_ext4_releasepage(page);
3244
Jan Karae1c36592013-03-10 22:19:00 -04003245 /* Page has dirty journalled data -> cannot release */
3246 if (PageChecked(page))
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003247 return 0;
Frank Mayhar03901312009-01-07 00:06:22 -05003248 if (journal)
zhangyi (F)529a7812020-06-20 10:54:27 +08003249 return jbd2_journal_try_to_free_buffers(journal, page);
Frank Mayhar03901312009-01-07 00:06:22 -05003250 else
3251 return try_to_free_buffers(page);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003252}
3253
Jan Karab8a61762017-11-01 16:36:45 +01003254static bool ext4_inode_datasync_dirty(struct inode *inode)
3255{
3256 journal_t *journal = EXT4_SB(inode->i_sb)->s_journal;
3257
Harshad Shirwadkaraa75f4d2020-10-15 13:37:57 -07003258 if (journal) {
3259 if (jbd2_transaction_committed(journal,
Andrea Righid0520df2020-10-26 21:49:13 -07003260 EXT4_I(inode)->i_datasync_tid))
3261 return false;
3262 if (test_opt2(inode->i_sb, JOURNAL_FAST_COMMIT))
Harshad Shirwadkar1ceecb52020-11-05 19:59:06 -08003263 return !list_empty(&EXT4_I(inode)->i_fc_list);
Andrea Righid0520df2020-10-26 21:49:13 -07003264 return true;
Harshad Shirwadkaraa75f4d2020-10-15 13:37:57 -07003265 }
3266
Jan Karab8a61762017-11-01 16:36:45 +01003267 /* Any metadata buffers to write? */
3268 if (!list_empty(&inode->i_mapping->private_list))
3269 return true;
3270 return inode->i_state & I_DIRTY_DATASYNC;
3271}
3272
Matthew Bobrowskic8fdfe292019-11-05 22:59:56 +11003273static void ext4_set_iomap(struct inode *inode, struct iomap *iomap,
3274 struct ext4_map_blocks *map, loff_t offset,
3275 loff_t length)
Jan Kara364443c2016-11-20 17:36:06 -05003276{
Matthew Bobrowskic8fdfe292019-11-05 22:59:56 +11003277 u8 blkbits = inode->i_blkbits;
3278
3279 /*
3280 * Writes that span EOF might trigger an I/O size update on completion,
3281 * so consider them to be dirty for the purpose of O_DSYNC, even if
3282 * there is no other metadata changes being made or are pending.
3283 */
3284 iomap->flags = 0;
3285 if (ext4_inode_datasync_dirty(inode) ||
3286 offset + length > i_size_read(inode))
3287 iomap->flags |= IOMAP_F_DIRTY;
3288
3289 if (map->m_flags & EXT4_MAP_NEW)
3290 iomap->flags |= IOMAP_F_NEW;
3291
3292 iomap->bdev = inode->i_sb->s_bdev;
3293 iomap->dax_dev = EXT4_SB(inode->i_sb)->s_daxdev;
3294 iomap->offset = (u64) map->m_lblk << blkbits;
3295 iomap->length = (u64) map->m_len << blkbits;
3296
Ritesh Harjani63867222020-02-28 14:56:54 +05303297 if ((map->m_flags & EXT4_MAP_MAPPED) &&
3298 !ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS))
3299 iomap->flags |= IOMAP_F_MERGED;
3300
Matthew Bobrowskic8fdfe292019-11-05 22:59:56 +11003301 /*
3302 * Flags passed to ext4_map_blocks() for direct I/O writes can result
3303 * in m_flags having both EXT4_MAP_MAPPED and EXT4_MAP_UNWRITTEN bits
3304 * set. In order for any allocated unwritten extents to be converted
3305 * into written extents correctly within the ->end_io() handler, we
3306 * need to ensure that the iomap->type is set appropriately. Hence, the
3307 * reason why we need to check whether the EXT4_MAP_UNWRITTEN bit has
3308 * been set first.
3309 */
3310 if (map->m_flags & EXT4_MAP_UNWRITTEN) {
3311 iomap->type = IOMAP_UNWRITTEN;
3312 iomap->addr = (u64) map->m_pblk << blkbits;
3313 } else if (map->m_flags & EXT4_MAP_MAPPED) {
3314 iomap->type = IOMAP_MAPPED;
3315 iomap->addr = (u64) map->m_pblk << blkbits;
3316 } else {
3317 iomap->type = IOMAP_HOLE;
3318 iomap->addr = IOMAP_NULL_ADDR;
3319 }
3320}
3321
Matthew Bobrowskif063db52019-11-05 23:00:14 +11003322static int ext4_iomap_alloc(struct inode *inode, struct ext4_map_blocks *map,
3323 unsigned int flags)
3324{
3325 handle_t *handle;
Matthew Bobrowski378f32b2019-11-05 23:02:39 +11003326 u8 blkbits = inode->i_blkbits;
3327 int ret, dio_credits, m_flags = 0, retries = 0;
Matthew Bobrowskif063db52019-11-05 23:00:14 +11003328
3329 /*
3330 * Trim the mapping request to the maximum value that we can map at
3331 * once for direct I/O.
3332 */
3333 if (map->m_len > DIO_MAX_BLOCKS)
3334 map->m_len = DIO_MAX_BLOCKS;
3335 dio_credits = ext4_chunk_trans_blocks(inode, map->m_len);
3336
3337retry:
3338 /*
3339 * Either we allocate blocks and then don't get an unwritten extent, so
3340 * in that case we have reserved enough credits. Or, the blocks are
3341 * already allocated and unwritten. In that case, the extent conversion
3342 * fits into the credits as well.
3343 */
3344 handle = ext4_journal_start(inode, EXT4_HT_MAP_BLOCKS, dio_credits);
3345 if (IS_ERR(handle))
3346 return PTR_ERR(handle);
3347
Matthew Bobrowski378f32b2019-11-05 23:02:39 +11003348 /*
3349 * DAX and direct I/O are the only two operations that are currently
3350 * supported with IOMAP_WRITE.
3351 */
3352 WARN_ON(!IS_DAX(inode) && !(flags & IOMAP_DIRECT));
3353 if (IS_DAX(inode))
3354 m_flags = EXT4_GET_BLOCKS_CREATE_ZERO;
3355 /*
3356 * We use i_size instead of i_disksize here because delalloc writeback
3357 * can complete at any point during the I/O and subsequently push the
3358 * i_disksize out to i_size. This could be beyond where direct I/O is
3359 * happening and thus expose allocated blocks to direct I/O reads.
3360 */
Jan Karad0b040f2021-04-12 12:23:33 +02003361 else if (((loff_t)map->m_lblk << blkbits) >= i_size_read(inode))
Matthew Bobrowski378f32b2019-11-05 23:02:39 +11003362 m_flags = EXT4_GET_BLOCKS_CREATE;
3363 else if (ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS))
3364 m_flags = EXT4_GET_BLOCKS_IO_CREATE_EXT;
3365
3366 ret = ext4_map_blocks(handle, inode, map, m_flags);
3367
3368 /*
3369 * We cannot fill holes in indirect tree based inodes as that could
3370 * expose stale data in the case of a crash. Use the magic error code
3371 * to fallback to buffered I/O.
3372 */
3373 if (!m_flags && !ret)
3374 ret = -ENOTBLK;
Matthew Bobrowskif063db52019-11-05 23:00:14 +11003375
Matthew Bobrowskif063db52019-11-05 23:00:14 +11003376 ext4_journal_stop(handle);
3377 if (ret == -ENOSPC && ext4_should_retry_alloc(inode->i_sb, &retries))
3378 goto retry;
3379
3380 return ret;
3381}
3382
3383
Jan Kara364443c2016-11-20 17:36:06 -05003384static int ext4_iomap_begin(struct inode *inode, loff_t offset, loff_t length,
Goldwyn Rodriguesc039b992019-10-18 16:44:10 -07003385 unsigned flags, struct iomap *iomap, struct iomap *srcmap)
Jan Kara364443c2016-11-20 17:36:06 -05003386{
Jan Kara364443c2016-11-20 17:36:06 -05003387 int ret;
Matthew Bobrowski09edf4d2019-11-05 23:03:31 +11003388 struct ext4_map_blocks map;
3389 u8 blkbits = inode->i_blkbits;
Jan Kara364443c2016-11-20 17:36:06 -05003390
Theodore Ts'obcd8e912018-09-01 12:45:04 -04003391 if ((offset >> blkbits) > EXT4_MAX_LOGICAL_BLOCK)
3392 return -EINVAL;
Andreas Gruenbacher7046ae32017-10-01 17:57:54 -04003393
Matthew Bobrowski09edf4d2019-11-05 23:03:31 +11003394 if (WARN_ON_ONCE(ext4_has_inline_data(inode)))
3395 return -ERANGE;
Jan Kara364443c2016-11-20 17:36:06 -05003396
Matthew Bobrowski09edf4d2019-11-05 23:03:31 +11003397 /*
3398 * Calculate the first and last logical blocks respectively.
3399 */
3400 map.m_lblk = offset >> blkbits;
3401 map.m_len = min_t(loff_t, (offset + length - 1) >> blkbits,
3402 EXT4_MAX_LOGICAL_BLOCK) - map.m_lblk + 1;
Jan Kara364443c2016-11-20 17:36:06 -05003403
Ritesh Harjani9faac622020-09-18 10:36:35 +05303404 if (flags & IOMAP_WRITE) {
3405 /*
3406 * We check here if the blocks are already allocated, then we
3407 * don't need to start a journal txn and we can directly return
3408 * the mapping information. This could boost performance
3409 * especially in multi-threaded overwrite requests.
3410 */
3411 if (offset + length <= i_size_read(inode)) {
3412 ret = ext4_map_blocks(NULL, inode, &map, 0);
3413 if (ret > 0 && (map.m_flags & EXT4_MAP_MAPPED))
3414 goto out;
3415 }
Matthew Bobrowskif063db52019-11-05 23:00:14 +11003416 ret = ext4_iomap_alloc(inode, &map, flags);
Ritesh Harjani9faac622020-09-18 10:36:35 +05303417 } else {
Jan Kara776722e2016-11-20 18:09:11 -05003418 ret = ext4_map_blocks(NULL, inode, &map, 0);
Ritesh Harjani9faac622020-09-18 10:36:35 +05303419 }
Christoph Hellwig545052e2017-10-01 17:58:54 -04003420
Matthew Bobrowskif063db52019-11-05 23:00:14 +11003421 if (ret < 0)
3422 return ret;
Ritesh Harjani9faac622020-09-18 10:36:35 +05303423out:
Matthew Bobrowskic8fdfe292019-11-05 22:59:56 +11003424 ext4_set_iomap(inode, iomap, &map, offset, length);
Christoph Hellwig545052e2017-10-01 17:58:54 -04003425
Jan Kara364443c2016-11-20 17:36:06 -05003426 return 0;
3427}
3428
Jan Kara8cd115b2019-12-18 18:44:33 +01003429static int ext4_iomap_overwrite_begin(struct inode *inode, loff_t offset,
3430 loff_t length, unsigned flags, struct iomap *iomap,
3431 struct iomap *srcmap)
3432{
3433 int ret;
3434
3435 /*
3436 * Even for writes we don't need to allocate blocks, so just pretend
3437 * we are reading to save overhead of starting a transaction.
3438 */
3439 flags &= ~IOMAP_WRITE;
3440 ret = ext4_iomap_begin(inode, offset, length, flags, iomap, srcmap);
3441 WARN_ON_ONCE(iomap->type != IOMAP_MAPPED);
3442 return ret;
3443}
3444
Jan Kara776722e2016-11-20 18:09:11 -05003445static int ext4_iomap_end(struct inode *inode, loff_t offset, loff_t length,
3446 ssize_t written, unsigned flags, struct iomap *iomap)
3447{
Jan Kara776722e2016-11-20 18:09:11 -05003448 /*
Matthew Bobrowski378f32b2019-11-05 23:02:39 +11003449 * Check to see whether an error occurred while writing out the data to
3450 * the allocated blocks. If so, return the magic error code so that we
3451 * fallback to buffered I/O and attempt to complete the remainder of
3452 * the I/O. Any blocks that may have been allocated in preparation for
3453 * the direct I/O will be reused during buffered I/O.
Jan Kara776722e2016-11-20 18:09:11 -05003454 */
Matthew Bobrowski378f32b2019-11-05 23:02:39 +11003455 if (flags & (IOMAP_WRITE | IOMAP_DIRECT) && written == 0)
3456 return -ENOTBLK;
Jan Kara776722e2016-11-20 18:09:11 -05003457
Matthew Bobrowski569342d2019-11-05 23:01:51 +11003458 return 0;
Jan Kara776722e2016-11-20 18:09:11 -05003459}
3460
Christoph Hellwig8ff6daa2017-01-27 23:20:26 -08003461const struct iomap_ops ext4_iomap_ops = {
Jan Kara364443c2016-11-20 17:36:06 -05003462 .iomap_begin = ext4_iomap_begin,
Jan Kara776722e2016-11-20 18:09:11 -05003463 .iomap_end = ext4_iomap_end,
Jan Kara364443c2016-11-20 17:36:06 -05003464};
3465
Jan Kara8cd115b2019-12-18 18:44:33 +01003466const struct iomap_ops ext4_iomap_overwrite_ops = {
3467 .iomap_begin = ext4_iomap_overwrite_begin,
3468 .iomap_end = ext4_iomap_end,
3469};
3470
Matthew Bobrowski09edf4d2019-11-05 23:03:31 +11003471static bool ext4_iomap_is_delalloc(struct inode *inode,
3472 struct ext4_map_blocks *map)
Mingming Cao4c0425f2009-09-28 15:48:41 -04003473{
Matthew Bobrowski09edf4d2019-11-05 23:03:31 +11003474 struct extent_status es;
3475 ext4_lblk_t offset = 0, end = map->m_lblk + map->m_len - 1;
Mingming Cao4c0425f2009-09-28 15:48:41 -04003476
Matthew Bobrowski09edf4d2019-11-05 23:03:31 +11003477 ext4_es_find_extent_range(inode, &ext4_es_is_delayed,
3478 map->m_lblk, end, &es);
Mingming4b70df12009-11-03 14:44:54 -05003479
Matthew Bobrowski09edf4d2019-11-05 23:03:31 +11003480 if (!es.es_len || es.es_lblk > end)
3481 return false;
3482
3483 if (es.es_lblk > map->m_lblk) {
3484 map->m_len = es.es_lblk - map->m_lblk;
3485 return false;
3486 }
3487
3488 offset = map->m_lblk - es.es_lblk;
3489 map->m_len = es.es_len - offset;
3490
3491 return true;
3492}
3493
3494static int ext4_iomap_begin_report(struct inode *inode, loff_t offset,
3495 loff_t length, unsigned int flags,
3496 struct iomap *iomap, struct iomap *srcmap)
3497{
3498 int ret;
3499 bool delalloc = false;
3500 struct ext4_map_blocks map;
3501 u8 blkbits = inode->i_blkbits;
3502
3503 if ((offset >> blkbits) > EXT4_MAX_LOGICAL_BLOCK)
3504 return -EINVAL;
3505
3506 if (ext4_has_inline_data(inode)) {
3507 ret = ext4_inline_data_iomap(inode, iomap);
3508 if (ret != -EAGAIN) {
3509 if (ret == 0 && offset >= iomap->length)
3510 ret = -ENOENT;
3511 return ret;
3512 }
3513 }
Mingming Cao8d5d02e2009-09-28 15:48:29 -04003514
Jan Kara74c66bc2016-02-29 08:36:38 +11003515 /*
Matthew Bobrowski09edf4d2019-11-05 23:03:31 +11003516 * Calculate the first and last logical block respectively.
Jan Kara74c66bc2016-02-29 08:36:38 +11003517 */
Matthew Bobrowski09edf4d2019-11-05 23:03:31 +11003518 map.m_lblk = offset >> blkbits;
3519 map.m_len = min_t(loff_t, (offset + length - 1) >> blkbits,
3520 EXT4_MAX_LOGICAL_BLOCK) - map.m_lblk + 1;
3521
Ritesh Harjanib2c57642020-02-28 14:56:57 +05303522 /*
3523 * Fiemap callers may call for offset beyond s_bitmap_maxbytes.
3524 * So handle it here itself instead of querying ext4_map_blocks().
3525 * Since ext4_map_blocks() will warn about it and will return
3526 * -EIO error.
3527 */
3528 if (!(ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS))) {
3529 struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb);
3530
3531 if (offset >= sbi->s_bitmap_maxbytes) {
3532 map.m_flags = 0;
3533 goto set_iomap;
3534 }
3535 }
3536
Matthew Bobrowski09edf4d2019-11-05 23:03:31 +11003537 ret = ext4_map_blocks(NULL, inode, &map, 0);
3538 if (ret < 0)
3539 return ret;
3540 if (ret == 0)
3541 delalloc = ext4_iomap_is_delalloc(inode, &map);
3542
Ritesh Harjanib2c57642020-02-28 14:56:57 +05303543set_iomap:
Matthew Bobrowski09edf4d2019-11-05 23:03:31 +11003544 ext4_set_iomap(inode, iomap, &map, offset, length);
3545 if (delalloc && iomap->type == IOMAP_HOLE)
3546 iomap->type = IOMAP_DELALLOC;
Christoph Hellwig187372a2016-02-08 14:40:51 +11003547
3548 return 0;
Mingming Cao4c0425f2009-09-28 15:48:41 -04003549}
Jiaying Zhangc7064ef2010-03-02 13:28:44 -05003550
Matthew Bobrowski09edf4d2019-11-05 23:03:31 +11003551const struct iomap_ops ext4_iomap_report_ops = {
3552 .iomap_begin = ext4_iomap_begin_report,
3553};
Mingming Cao4c0425f2009-09-28 15:48:41 -04003554
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003555/*
Mingming Cao617ba132006-10-11 01:20:53 -07003556 * Pages can be marked dirty completely asynchronously from ext4's journalling
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003557 * activity. By filemap_sync_pte(), try_to_unmap_one(), etc. We cannot do
3558 * much here because ->set_page_dirty is called under VFS locks. The page is
3559 * not necessarily locked.
3560 *
3561 * We cannot just dirty the page and leave attached buffers clean, because the
3562 * buffers' dirty state is "definitive". We cannot just set the buffers dirty
3563 * or jbddirty because all the journalling code will explode.
3564 *
3565 * So what we do is to mark the page "pending dirty" and next time writepage
3566 * is called, propagate that into the buffers appropriately.
3567 */
Mingming Cao617ba132006-10-11 01:20:53 -07003568static int ext4_journalled_set_page_dirty(struct page *page)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003569{
3570 SetPageChecked(page);
3571 return __set_page_dirty_nobuffers(page);
3572}
3573
Jan Kara6dcc6932016-12-01 11:46:40 -05003574static int ext4_set_page_dirty(struct page *page)
3575{
3576 WARN_ON_ONCE(!PageLocked(page) && !PageDirty(page));
3577 WARN_ON_ONCE(!page_has_buffers(page));
3578 return __set_page_dirty_buffers(page);
3579}
3580
Ritesh Harjani0e6895b2020-09-04 14:46:53 +05303581static int ext4_iomap_swap_activate(struct swap_info_struct *sis,
3582 struct file *file, sector_t *span)
3583{
3584 return iomap_swapfile_activate(sis, file, span,
3585 &ext4_iomap_report_ops);
3586}
3587
Theodore Ts'o74d553a2013-04-03 12:39:17 -04003588static const struct address_space_operations ext4_aops = {
Hisashi Hifumi8ab22b92008-07-28 15:46:36 -07003589 .readpage = ext4_readpage,
Matthew Wilcox (Oracle)6311f91f2020-06-01 21:47:16 -07003590 .readahead = ext4_readahead,
Aneesh Kumar K.V43ce1d22009-06-14 17:58:45 -04003591 .writepage = ext4_writepage,
Theodore Ts'o20970ba2013-06-06 14:00:46 -04003592 .writepages = ext4_writepages,
Hisashi Hifumi8ab22b92008-07-28 15:46:36 -07003593 .write_begin = ext4_write_begin,
Theodore Ts'o74d553a2013-04-03 12:39:17 -04003594 .write_end = ext4_write_end,
Jan Kara6dcc6932016-12-01 11:46:40 -05003595 .set_page_dirty = ext4_set_page_dirty,
Hisashi Hifumi8ab22b92008-07-28 15:46:36 -07003596 .bmap = ext4_bmap,
3597 .invalidatepage = ext4_invalidatepage,
3598 .releasepage = ext4_releasepage,
Matthew Bobrowski378f32b2019-11-05 23:02:39 +11003599 .direct_IO = noop_direct_IO,
Hisashi Hifumi8ab22b92008-07-28 15:46:36 -07003600 .migratepage = buffer_migrate_page,
3601 .is_partially_uptodate = block_is_partially_uptodate,
Andi Kleenaa261f52009-09-16 11:50:16 +02003602 .error_remove_page = generic_error_remove_page,
Ritesh Harjani0e6895b2020-09-04 14:46:53 +05303603 .swap_activate = ext4_iomap_swap_activate,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003604};
3605
Mingming Cao617ba132006-10-11 01:20:53 -07003606static const struct address_space_operations ext4_journalled_aops = {
Hisashi Hifumi8ab22b92008-07-28 15:46:36 -07003607 .readpage = ext4_readpage,
Matthew Wilcox (Oracle)6311f91f2020-06-01 21:47:16 -07003608 .readahead = ext4_readahead,
Aneesh Kumar K.V43ce1d22009-06-14 17:58:45 -04003609 .writepage = ext4_writepage,
Theodore Ts'o20970ba2013-06-06 14:00:46 -04003610 .writepages = ext4_writepages,
Hisashi Hifumi8ab22b92008-07-28 15:46:36 -07003611 .write_begin = ext4_write_begin,
3612 .write_end = ext4_journalled_write_end,
3613 .set_page_dirty = ext4_journalled_set_page_dirty,
3614 .bmap = ext4_bmap,
Jan Kara4520fb32012-12-25 13:28:54 -05003615 .invalidatepage = ext4_journalled_invalidatepage,
Hisashi Hifumi8ab22b92008-07-28 15:46:36 -07003616 .releasepage = ext4_releasepage,
Matthew Bobrowski378f32b2019-11-05 23:02:39 +11003617 .direct_IO = noop_direct_IO,
Hisashi Hifumi8ab22b92008-07-28 15:46:36 -07003618 .is_partially_uptodate = block_is_partially_uptodate,
Andi Kleenaa261f52009-09-16 11:50:16 +02003619 .error_remove_page = generic_error_remove_page,
Ritesh Harjani0e6895b2020-09-04 14:46:53 +05303620 .swap_activate = ext4_iomap_swap_activate,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003621};
3622
Alex Tomas64769242008-07-11 19:27:31 -04003623static const struct address_space_operations ext4_da_aops = {
Hisashi Hifumi8ab22b92008-07-28 15:46:36 -07003624 .readpage = ext4_readpage,
Matthew Wilcox (Oracle)6311f91f2020-06-01 21:47:16 -07003625 .readahead = ext4_readahead,
Aneesh Kumar K.V43ce1d22009-06-14 17:58:45 -04003626 .writepage = ext4_writepage,
Theodore Ts'o20970ba2013-06-06 14:00:46 -04003627 .writepages = ext4_writepages,
Hisashi Hifumi8ab22b92008-07-28 15:46:36 -07003628 .write_begin = ext4_da_write_begin,
3629 .write_end = ext4_da_write_end,
Jan Kara6dcc6932016-12-01 11:46:40 -05003630 .set_page_dirty = ext4_set_page_dirty,
Hisashi Hifumi8ab22b92008-07-28 15:46:36 -07003631 .bmap = ext4_bmap,
Eric Whitney8fcc3a52019-08-22 23:22:14 -04003632 .invalidatepage = ext4_invalidatepage,
Hisashi Hifumi8ab22b92008-07-28 15:46:36 -07003633 .releasepage = ext4_releasepage,
Matthew Bobrowski378f32b2019-11-05 23:02:39 +11003634 .direct_IO = noop_direct_IO,
Hisashi Hifumi8ab22b92008-07-28 15:46:36 -07003635 .migratepage = buffer_migrate_page,
3636 .is_partially_uptodate = block_is_partially_uptodate,
Andi Kleenaa261f52009-09-16 11:50:16 +02003637 .error_remove_page = generic_error_remove_page,
Ritesh Harjani0e6895b2020-09-04 14:46:53 +05303638 .swap_activate = ext4_iomap_swap_activate,
Alex Tomas64769242008-07-11 19:27:31 -04003639};
3640
Dan Williams5f0663b2017-12-21 12:25:11 -08003641static const struct address_space_operations ext4_dax_aops = {
3642 .writepages = ext4_dax_writepages,
3643 .direct_IO = noop_direct_IO,
Matthew Wilcox (Oracle)b82a96c2021-06-28 19:36:27 -07003644 .set_page_dirty = __set_page_dirty_no_writeback,
Toshi Kani94dbb632018-09-15 21:23:41 -04003645 .bmap = ext4_bmap,
Dan Williams5f0663b2017-12-21 12:25:11 -08003646 .invalidatepage = noop_invalidatepage,
Ritesh Harjani0e6895b2020-09-04 14:46:53 +05303647 .swap_activate = ext4_iomap_swap_activate,
Dan Williams5f0663b2017-12-21 12:25:11 -08003648};
3649
Mingming Cao617ba132006-10-11 01:20:53 -07003650void ext4_set_aops(struct inode *inode)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003651{
Lukas Czerner3d2b1582012-02-20 17:53:00 -05003652 switch (ext4_inode_journal_mode(inode)) {
3653 case EXT4_INODE_ORDERED_DATA_MODE:
Lukas Czerner3d2b1582012-02-20 17:53:00 -05003654 case EXT4_INODE_WRITEBACK_DATA_MODE:
Lukas Czerner3d2b1582012-02-20 17:53:00 -05003655 break;
3656 case EXT4_INODE_JOURNAL_DATA_MODE:
Mingming Cao617ba132006-10-11 01:20:53 -07003657 inode->i_mapping->a_ops = &ext4_journalled_aops;
Theodore Ts'o74d553a2013-04-03 12:39:17 -04003658 return;
Lukas Czerner3d2b1582012-02-20 17:53:00 -05003659 default:
3660 BUG();
3661 }
Dan Williams5f0663b2017-12-21 12:25:11 -08003662 if (IS_DAX(inode))
3663 inode->i_mapping->a_ops = &ext4_dax_aops;
3664 else if (test_opt(inode->i_sb, DELALLOC))
Theodore Ts'o74d553a2013-04-03 12:39:17 -04003665 inode->i_mapping->a_ops = &ext4_da_aops;
3666 else
3667 inode->i_mapping->a_ops = &ext4_aops;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003668}
3669
Ross Zwisler923ae0f2015-02-16 15:59:38 -08003670static int __ext4_block_zero_page_range(handle_t *handle,
Lukas Czernerd863dc32013-05-27 23:32:35 -04003671 struct address_space *mapping, loff_t from, loff_t length)
3672{
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03003673 ext4_fsblk_t index = from >> PAGE_SHIFT;
3674 unsigned offset = from & (PAGE_SIZE-1);
Ross Zwisler923ae0f2015-02-16 15:59:38 -08003675 unsigned blocksize, pos;
Lukas Czernerd863dc32013-05-27 23:32:35 -04003676 ext4_lblk_t iblock;
3677 struct inode *inode = mapping->host;
3678 struct buffer_head *bh;
3679 struct page *page;
3680 int err = 0;
3681
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03003682 page = find_or_create_page(mapping, from >> PAGE_SHIFT,
Michal Hockoc62d2552015-11-06 16:28:49 -08003683 mapping_gfp_constraint(mapping, ~__GFP_FS));
Lukas Czernerd863dc32013-05-27 23:32:35 -04003684 if (!page)
3685 return -ENOMEM;
3686
3687 blocksize = inode->i_sb->s_blocksize;
Lukas Czernerd863dc32013-05-27 23:32:35 -04003688
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03003689 iblock = index << (PAGE_SHIFT - inode->i_sb->s_blocksize_bits);
Lukas Czernerd863dc32013-05-27 23:32:35 -04003690
3691 if (!page_has_buffers(page))
3692 create_empty_buffers(page, blocksize, 0);
3693
3694 /* Find the buffer that contains "offset" */
3695 bh = page_buffers(page);
3696 pos = blocksize;
3697 while (offset >= pos) {
3698 bh = bh->b_this_page;
3699 iblock++;
3700 pos += blocksize;
3701 }
Lukas Czernerd863dc32013-05-27 23:32:35 -04003702 if (buffer_freed(bh)) {
3703 BUFFER_TRACE(bh, "freed: skip");
3704 goto unlock;
3705 }
Lukas Czernerd863dc32013-05-27 23:32:35 -04003706 if (!buffer_mapped(bh)) {
3707 BUFFER_TRACE(bh, "unmapped");
3708 ext4_get_block(inode, iblock, bh, 0);
3709 /* unmapped? It's a hole - nothing to do */
3710 if (!buffer_mapped(bh)) {
3711 BUFFER_TRACE(bh, "still unmapped");
3712 goto unlock;
3713 }
3714 }
3715
3716 /* Ok, it's mapped. Make sure it's up-to-date */
3717 if (PageUptodate(page))
3718 set_buffer_uptodate(bh);
3719
3720 if (!buffer_uptodate(bh)) {
zhangyi (F)2d069c02020-09-24 15:33:33 +08003721 err = ext4_read_bh_lock(bh, 0, true);
3722 if (err)
Lukas Czernerd863dc32013-05-27 23:32:35 -04003723 goto unlock;
Eric Biggers4f74d152020-07-02 01:56:07 +00003724 if (fscrypt_inode_uses_fs_layer_crypto(inode)) {
Michael Halcrowc9c74292015-04-12 00:56:10 -04003725 /* We expect the key to be set. */
Jaegeuk Kima7550b32016-07-10 14:01:03 -04003726 BUG_ON(!fscrypt_has_encryption_key(inode));
Eric Biggers834f1562019-12-26 09:41:05 -06003727 err = fscrypt_decrypt_pagecache_blocks(page, blocksize,
3728 bh_offset(bh));
3729 if (err) {
3730 clear_buffer_uptodate(bh);
3731 goto unlock;
3732 }
Michael Halcrowc9c74292015-04-12 00:56:10 -04003733 }
Lukas Czernerd863dc32013-05-27 23:32:35 -04003734 }
Lukas Czernerd863dc32013-05-27 23:32:35 -04003735 if (ext4_should_journal_data(inode)) {
3736 BUFFER_TRACE(bh, "get write access");
Jan Kara188c2992021-08-16 11:57:04 +02003737 err = ext4_journal_get_write_access(handle, inode->i_sb, bh,
3738 EXT4_JTR_NONE);
Lukas Czernerd863dc32013-05-27 23:32:35 -04003739 if (err)
3740 goto unlock;
3741 }
Lukas Czernerd863dc32013-05-27 23:32:35 -04003742 zero_user(page, offset, length);
Lukas Czernerd863dc32013-05-27 23:32:35 -04003743 BUFFER_TRACE(bh, "zeroed end of block");
3744
Lukas Czernerd863dc32013-05-27 23:32:35 -04003745 if (ext4_should_journal_data(inode)) {
3746 err = ext4_handle_dirty_metadata(handle, inode, bh);
Lukas Czerner0713ed02013-05-27 23:32:35 -04003747 } else {
jon ernst353eefd2013-07-01 08:12:39 -04003748 err = 0;
Lukas Czernerd863dc32013-05-27 23:32:35 -04003749 mark_buffer_dirty(bh);
Jan Kara3957ef52016-04-24 00:56:05 -04003750 if (ext4_should_order_data(inode))
Ross Zwisler73131fb2019-06-20 17:26:26 -04003751 err = ext4_jbd2_inode_add_write(handle, inode, from,
3752 length);
Lukas Czerner0713ed02013-05-27 23:32:35 -04003753 }
Lukas Czernerd863dc32013-05-27 23:32:35 -04003754
3755unlock:
3756 unlock_page(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03003757 put_page(page);
Lukas Czernerd863dc32013-05-27 23:32:35 -04003758 return err;
3759}
3760
Matthew Wilcox94350ab2014-03-24 15:09:16 -04003761/*
Ross Zwisler923ae0f2015-02-16 15:59:38 -08003762 * ext4_block_zero_page_range() zeros out a mapping of length 'length'
3763 * starting from file offset 'from'. The range to be zero'd must
3764 * be contained with in one block. If the specified range exceeds
3765 * the end of the block it will be shortened to end of the block
Bhaskar Chowdhury3088e5a2021-03-27 16:00:05 +05303766 * that corresponds to 'from'
Ross Zwisler923ae0f2015-02-16 15:59:38 -08003767 */
3768static int ext4_block_zero_page_range(handle_t *handle,
3769 struct address_space *mapping, loff_t from, loff_t length)
3770{
3771 struct inode *inode = mapping->host;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03003772 unsigned offset = from & (PAGE_SIZE-1);
Ross Zwisler923ae0f2015-02-16 15:59:38 -08003773 unsigned blocksize = inode->i_sb->s_blocksize;
3774 unsigned max = blocksize - (offset & (blocksize - 1));
3775
3776 /*
3777 * correct length if it does not fall between
3778 * 'from' and the end of the block
3779 */
3780 if (length > max || length < 0)
3781 length = max;
3782
Jan Kara47e69352016-11-20 18:08:05 -05003783 if (IS_DAX(inode)) {
3784 return iomap_zero_range(inode, from, length, NULL,
3785 &ext4_iomap_ops);
3786 }
Ross Zwisler923ae0f2015-02-16 15:59:38 -08003787 return __ext4_block_zero_page_range(handle, mapping, from, length);
3788}
3789
3790/*
Matthew Wilcox94350ab2014-03-24 15:09:16 -04003791 * ext4_block_truncate_page() zeroes out a mapping from file offset `from'
3792 * up to the end of the block which corresponds to `from'.
3793 * This required during truncate. We need to physically zero the tail end
3794 * of that block so it doesn't yield old data if the file is later grown.
3795 */
Stephen Hemmingerc1978552014-05-12 10:50:23 -04003796static int ext4_block_truncate_page(handle_t *handle,
Matthew Wilcox94350ab2014-03-24 15:09:16 -04003797 struct address_space *mapping, loff_t from)
3798{
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03003799 unsigned offset = from & (PAGE_SIZE-1);
Matthew Wilcox94350ab2014-03-24 15:09:16 -04003800 unsigned length;
3801 unsigned blocksize;
3802 struct inode *inode = mapping->host;
3803
Theodore Ts'o0d068632017-02-14 11:31:15 -05003804 /* If we are processing an encrypted inode during orphan list handling */
Chandan Rajendra592ddec2018-12-12 15:20:10 +05303805 if (IS_ENCRYPTED(inode) && !fscrypt_has_encryption_key(inode))
Theodore Ts'o0d068632017-02-14 11:31:15 -05003806 return 0;
3807
Matthew Wilcox94350ab2014-03-24 15:09:16 -04003808 blocksize = inode->i_sb->s_blocksize;
3809 length = blocksize - (offset & (blocksize - 1));
3810
3811 return ext4_block_zero_page_range(handle, mapping, from, length);
3812}
3813
Lukas Czernera87dd182013-05-27 23:32:35 -04003814int ext4_zero_partial_blocks(handle_t *handle, struct inode *inode,
3815 loff_t lstart, loff_t length)
3816{
3817 struct super_block *sb = inode->i_sb;
3818 struct address_space *mapping = inode->i_mapping;
Lukas Czernere1be3a92013-07-01 08:12:39 -04003819 unsigned partial_start, partial_end;
Lukas Czernera87dd182013-05-27 23:32:35 -04003820 ext4_fsblk_t start, end;
3821 loff_t byte_end = (lstart + length - 1);
3822 int err = 0;
3823
Lukas Czernere1be3a92013-07-01 08:12:39 -04003824 partial_start = lstart & (sb->s_blocksize - 1);
3825 partial_end = byte_end & (sb->s_blocksize - 1);
3826
Lukas Czernera87dd182013-05-27 23:32:35 -04003827 start = lstart >> sb->s_blocksize_bits;
3828 end = byte_end >> sb->s_blocksize_bits;
3829
3830 /* Handle partial zero within the single block */
Lukas Czernere1be3a92013-07-01 08:12:39 -04003831 if (start == end &&
3832 (partial_start || (partial_end != sb->s_blocksize - 1))) {
Lukas Czernera87dd182013-05-27 23:32:35 -04003833 err = ext4_block_zero_page_range(handle, mapping,
3834 lstart, length);
3835 return err;
3836 }
3837 /* Handle partial zero out on the start of the range */
Lukas Czernere1be3a92013-07-01 08:12:39 -04003838 if (partial_start) {
Lukas Czernera87dd182013-05-27 23:32:35 -04003839 err = ext4_block_zero_page_range(handle, mapping,
3840 lstart, sb->s_blocksize);
3841 if (err)
3842 return err;
3843 }
3844 /* Handle partial zero out on the end of the range */
Lukas Czernere1be3a92013-07-01 08:12:39 -04003845 if (partial_end != sb->s_blocksize - 1)
Lukas Czernera87dd182013-05-27 23:32:35 -04003846 err = ext4_block_zero_page_range(handle, mapping,
Lukas Czernere1be3a92013-07-01 08:12:39 -04003847 byte_end - partial_end,
3848 partial_end + 1);
Lukas Czernera87dd182013-05-27 23:32:35 -04003849 return err;
3850}
3851
Duane Griffin91ef4ca2008-07-11 19:27:31 -04003852int ext4_can_truncate(struct inode *inode)
3853{
Duane Griffin91ef4ca2008-07-11 19:27:31 -04003854 if (S_ISREG(inode->i_mode))
3855 return 1;
3856 if (S_ISDIR(inode->i_mode))
3857 return 1;
3858 if (S_ISLNK(inode->i_mode))
3859 return !ext4_inode_is_fast_symlink(inode);
3860 return 0;
3861}
3862
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003863/*
Jan Kara01127842015-12-07 14:34:49 -05003864 * We have to make sure i_disksize gets properly updated before we truncate
3865 * page cache due to hole punching or zero range. Otherwise i_disksize update
3866 * can get lost as it may have been postponed to submission of writeback but
3867 * that will never happen after we truncate page cache.
3868 */
3869int ext4_update_disksize_before_punch(struct inode *inode, loff_t offset,
3870 loff_t len)
3871{
3872 handle_t *handle;
Harshad Shirwadkar4209ae12020-04-26 18:34:37 -07003873 int ret;
3874
Jan Kara01127842015-12-07 14:34:49 -05003875 loff_t size = i_size_read(inode);
3876
Al Viro59551022016-01-22 15:40:57 -05003877 WARN_ON(!inode_is_locked(inode));
Jan Kara01127842015-12-07 14:34:49 -05003878 if (offset > size || offset + len < size)
3879 return 0;
3880
3881 if (EXT4_I(inode)->i_disksize >= size)
3882 return 0;
3883
3884 handle = ext4_journal_start(inode, EXT4_HT_MISC, 1);
3885 if (IS_ERR(handle))
3886 return PTR_ERR(handle);
3887 ext4_update_i_disksize(inode, size);
Harshad Shirwadkar4209ae12020-04-26 18:34:37 -07003888 ret = ext4_mark_inode_dirty(handle, inode);
Jan Kara01127842015-12-07 14:34:49 -05003889 ext4_journal_stop(handle);
3890
Harshad Shirwadkar4209ae12020-04-26 18:34:37 -07003891 return ret;
Jan Kara01127842015-12-07 14:34:49 -05003892}
3893
Jan Karad4f52582021-02-04 18:05:42 +01003894static void ext4_wait_dax_page(struct inode *inode)
Ross Zwisler430657b2018-07-29 17:00:22 -04003895{
Jan Karad4f52582021-02-04 18:05:42 +01003896 filemap_invalidate_unlock(inode->i_mapping);
Ross Zwisler430657b2018-07-29 17:00:22 -04003897 schedule();
Jan Karad4f52582021-02-04 18:05:42 +01003898 filemap_invalidate_lock(inode->i_mapping);
Ross Zwisler430657b2018-07-29 17:00:22 -04003899}
3900
3901int ext4_break_layouts(struct inode *inode)
3902{
Ross Zwisler430657b2018-07-29 17:00:22 -04003903 struct page *page;
Ross Zwisler430657b2018-07-29 17:00:22 -04003904 int error;
3905
Jan Karad4f52582021-02-04 18:05:42 +01003906 if (WARN_ON_ONCE(!rwsem_is_locked(&inode->i_mapping->invalidate_lock)))
Ross Zwisler430657b2018-07-29 17:00:22 -04003907 return -EINVAL;
3908
3909 do {
Ross Zwisler430657b2018-07-29 17:00:22 -04003910 page = dax_layout_busy_page(inode->i_mapping);
3911 if (!page)
3912 return 0;
3913
3914 error = ___wait_var_event(&page->_refcount,
3915 atomic_read(&page->_refcount) == 1,
3916 TASK_INTERRUPTIBLE, 0, 0,
Jan Karad4f52582021-02-04 18:05:42 +01003917 ext4_wait_dax_page(inode));
Ross Zwislerb1f38212018-09-11 13:31:16 -04003918 } while (error == 0);
Ross Zwisler430657b2018-07-29 17:00:22 -04003919
3920 return error;
3921}
3922
Jan Kara01127842015-12-07 14:34:49 -05003923/*
Ross Zwislercca32b72016-09-22 11:49:38 -04003924 * ext4_punch_hole: punches a hole in a file by releasing the blocks
Allison Hendersona4bb6b62011-05-25 07:41:50 -04003925 * associated with the given offset and length
3926 *
3927 * @inode: File inode
3928 * @offset: The offset where the hole will begin
3929 * @len: The length of the hole
3930 *
Anatol Pomozov4907cb72012-09-01 10:31:09 -07003931 * Returns: 0 on success or negative on failure
Allison Hendersona4bb6b62011-05-25 07:41:50 -04003932 */
3933
Ashish Sangwanaeb28172013-07-01 08:12:38 -04003934int ext4_punch_hole(struct inode *inode, loff_t offset, loff_t length)
Allison Hendersona4bb6b62011-05-25 07:41:50 -04003935{
Theodore Ts'o26a4c0c2013-04-03 12:45:17 -04003936 struct super_block *sb = inode->i_sb;
3937 ext4_lblk_t first_block, stop_block;
3938 struct address_space *mapping = inode->i_mapping;
Lukas Czernera87dd182013-05-27 23:32:35 -04003939 loff_t first_block_offset, last_block_offset;
Theodore Ts'o26a4c0c2013-04-03 12:45:17 -04003940 handle_t *handle;
3941 unsigned int credits;
Harshad Shirwadkar4209ae12020-04-26 18:34:37 -07003942 int ret = 0, ret2 = 0;
Theodore Ts'o26a4c0c2013-04-03 12:45:17 -04003943
Lukas Czernerb8a86842014-03-18 18:05:35 -04003944 trace_ext4_punch_hole(inode, offset, length, 0);
Zheng Liuaaddea82013-01-16 20:21:26 -05003945
Theodore Ts'oc1e82202019-08-23 22:38:00 -04003946 ext4_clear_inode_state(inode, EXT4_STATE_MAY_INLINE_DATA);
3947 if (ext4_has_inline_data(inode)) {
Jan Karad4f52582021-02-04 18:05:42 +01003948 filemap_invalidate_lock(mapping);
Theodore Ts'oc1e82202019-08-23 22:38:00 -04003949 ret = ext4_convert_inline_data(inode);
Jan Karad4f52582021-02-04 18:05:42 +01003950 filemap_invalidate_unlock(mapping);
Theodore Ts'oc1e82202019-08-23 22:38:00 -04003951 if (ret)
3952 return ret;
3953 }
3954
Theodore Ts'o26a4c0c2013-04-03 12:45:17 -04003955 /*
3956 * Write out all dirty pages to avoid race conditions
3957 * Then release them.
3958 */
Ross Zwislercca32b72016-09-22 11:49:38 -04003959 if (mapping_tagged(mapping, PAGECACHE_TAG_DIRTY)) {
Theodore Ts'o26a4c0c2013-04-03 12:45:17 -04003960 ret = filemap_write_and_wait_range(mapping, offset,
3961 offset + length - 1);
3962 if (ret)
3963 return ret;
3964 }
3965
Al Viro59551022016-01-22 15:40:57 -05003966 inode_lock(inode);
Lukas Czerner9ef06ce2014-04-12 09:47:00 -04003967
Theodore Ts'o26a4c0c2013-04-03 12:45:17 -04003968 /* No need to punch hole beyond i_size */
3969 if (offset >= inode->i_size)
3970 goto out_mutex;
3971
3972 /*
3973 * If the hole extends beyond i_size, set the hole
3974 * to end after the page that contains i_size
3975 */
3976 if (offset + length > inode->i_size) {
3977 length = inode->i_size +
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03003978 PAGE_SIZE - (inode->i_size & (PAGE_SIZE - 1)) -
Theodore Ts'o26a4c0c2013-04-03 12:45:17 -04003979 offset;
3980 }
3981
Jan Karaa3612932013-08-16 21:19:41 -04003982 if (offset & (sb->s_blocksize - 1) ||
3983 (offset + length) & (sb->s_blocksize - 1)) {
3984 /*
3985 * Attach jinode to inode for jbd2 if we do any zeroing of
3986 * partial block
3987 */
3988 ret = ext4_inode_attach_jinode(inode);
3989 if (ret < 0)
3990 goto out_mutex;
3991
3992 }
3993
Jan Karaea3d7202015-12-07 14:28:03 -05003994 /* Wait all existing dio workers, newcomers will block on i_mutex */
Jan Karaea3d7202015-12-07 14:28:03 -05003995 inode_dio_wait(inode);
3996
3997 /*
3998 * Prevent page faults from reinstantiating pages we have released from
3999 * page cache.
4000 */
Jan Karad4f52582021-02-04 18:05:42 +01004001 filemap_invalidate_lock(mapping);
Ross Zwisler430657b2018-07-29 17:00:22 -04004002
4003 ret = ext4_break_layouts(inode);
4004 if (ret)
4005 goto out_dio;
4006
Lukas Czernera87dd182013-05-27 23:32:35 -04004007 first_block_offset = round_up(offset, sb->s_blocksize);
4008 last_block_offset = round_down((offset + length), sb->s_blocksize) - 1;
Theodore Ts'o26a4c0c2013-04-03 12:45:17 -04004009
Lukas Czernera87dd182013-05-27 23:32:35 -04004010 /* Now release the pages and zero block aligned part of pages*/
Jan Kara01127842015-12-07 14:34:49 -05004011 if (last_block_offset > first_block_offset) {
4012 ret = ext4_update_disksize_before_punch(inode, offset, length);
4013 if (ret)
4014 goto out_dio;
Lukas Czernera87dd182013-05-27 23:32:35 -04004015 truncate_pagecache_range(inode, first_block_offset,
4016 last_block_offset);
Jan Kara01127842015-12-07 14:34:49 -05004017 }
Theodore Ts'o26a4c0c2013-04-03 12:45:17 -04004018
4019 if (ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS))
4020 credits = ext4_writepage_trans_blocks(inode);
4021 else
4022 credits = ext4_blocks_for_truncate(inode);
4023 handle = ext4_journal_start(inode, EXT4_HT_TRUNCATE, credits);
4024 if (IS_ERR(handle)) {
4025 ret = PTR_ERR(handle);
4026 ext4_std_error(sb, ret);
4027 goto out_dio;
4028 }
4029
Lukas Czernera87dd182013-05-27 23:32:35 -04004030 ret = ext4_zero_partial_blocks(handle, inode, offset,
4031 length);
4032 if (ret)
4033 goto out_stop;
Theodore Ts'o26a4c0c2013-04-03 12:45:17 -04004034
4035 first_block = (offset + sb->s_blocksize - 1) >>
4036 EXT4_BLOCK_SIZE_BITS(sb);
4037 stop_block = (offset + length) >> EXT4_BLOCK_SIZE_BITS(sb);
4038
Lukas Czernereee597a2018-05-13 19:28:35 -04004039 /* If there are blocks to remove, do it */
4040 if (stop_block > first_block) {
Theodore Ts'o26a4c0c2013-04-03 12:45:17 -04004041
Lukas Czernereee597a2018-05-13 19:28:35 -04004042 down_write(&EXT4_I(inode)->i_data_sem);
brookxu27bc4462020-08-17 15:36:15 +08004043 ext4_discard_preallocations(inode, 0);
Theodore Ts'o26a4c0c2013-04-03 12:45:17 -04004044
Lukas Czernereee597a2018-05-13 19:28:35 -04004045 ret = ext4_es_remove_extent(inode, first_block,
4046 stop_block - first_block);
4047 if (ret) {
4048 up_write(&EXT4_I(inode)->i_data_sem);
4049 goto out_stop;
4050 }
4051
4052 if (ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS))
4053 ret = ext4_ext_remove_space(inode, first_block,
4054 stop_block - 1);
4055 else
4056 ret = ext4_ind_remove_space(handle, inode, first_block,
4057 stop_block);
4058
Theodore Ts'o26a4c0c2013-04-03 12:45:17 -04004059 up_write(&EXT4_I(inode)->i_data_sem);
Theodore Ts'o26a4c0c2013-04-03 12:45:17 -04004060 }
Harshad Shirwadkara80f7fc2020-11-05 19:58:53 -08004061 ext4_fc_track_range(handle, inode, first_block, stop_block);
Theodore Ts'o26a4c0c2013-04-03 12:45:17 -04004062 if (IS_SYNC(inode))
4063 ext4_handle_sync(handle);
Maxim Patlasove251f9b2014-02-20 16:58:05 -05004064
Deepa Dinamanieeca7ea2016-11-14 21:40:10 -05004065 inode->i_mtime = inode->i_ctime = current_time(inode);
Harshad Shirwadkar4209ae12020-04-26 18:34:37 -07004066 ret2 = ext4_mark_inode_dirty(handle, inode);
4067 if (unlikely(ret2))
4068 ret = ret2;
Jan Kara67a7d5f2017-05-29 13:24:55 -04004069 if (ret >= 0)
4070 ext4_update_inode_fsync_trans(handle, inode, 1);
Theodore Ts'o26a4c0c2013-04-03 12:45:17 -04004071out_stop:
4072 ext4_journal_stop(handle);
4073out_dio:
Jan Karad4f52582021-02-04 18:05:42 +01004074 filemap_invalidate_unlock(mapping);
Theodore Ts'o26a4c0c2013-04-03 12:45:17 -04004075out_mutex:
Al Viro59551022016-01-22 15:40:57 -05004076 inode_unlock(inode);
Theodore Ts'o26a4c0c2013-04-03 12:45:17 -04004077 return ret;
Allison Hendersona4bb6b62011-05-25 07:41:50 -04004078}
4079
Jan Karaa3612932013-08-16 21:19:41 -04004080int ext4_inode_attach_jinode(struct inode *inode)
4081{
4082 struct ext4_inode_info *ei = EXT4_I(inode);
4083 struct jbd2_inode *jinode;
4084
4085 if (ei->jinode || !EXT4_SB(inode->i_sb)->s_journal)
4086 return 0;
4087
4088 jinode = jbd2_alloc_inode(GFP_KERNEL);
4089 spin_lock(&inode->i_lock);
4090 if (!ei->jinode) {
4091 if (!jinode) {
4092 spin_unlock(&inode->i_lock);
4093 return -ENOMEM;
4094 }
4095 ei->jinode = jinode;
4096 jbd2_journal_init_jbd_inode(ei->jinode, inode);
4097 jinode = NULL;
4098 }
4099 spin_unlock(&inode->i_lock);
4100 if (unlikely(jinode != NULL))
4101 jbd2_free_inode(jinode);
4102 return 0;
4103}
4104
Allison Hendersona4bb6b62011-05-25 07:41:50 -04004105/*
Mingming Cao617ba132006-10-11 01:20:53 -07004106 * ext4_truncate()
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004107 *
Mingming Cao617ba132006-10-11 01:20:53 -07004108 * We block out ext4_get_block() block instantiations across the entire
4109 * transaction, and VFS/VM ensures that ext4_truncate() cannot run
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004110 * simultaneously on behalf of the same inode.
4111 *
Justin P. Mattock42b2aa82011-11-28 20:31:00 -08004112 * As we work through the truncate and commit bits of it to the journal there
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004113 * is one core, guiding principle: the file's tree must always be consistent on
4114 * disk. We must be able to restart the truncate after a crash.
4115 *
4116 * The file's tree may be transiently inconsistent in memory (although it
4117 * probably isn't), but whenever we close off and commit a journal transaction,
4118 * the contents of (the filesystem + the journal) must be consistent and
4119 * restartable. It's pretty simple, really: bottom up, right to left (although
4120 * left-to-right works OK too).
4121 *
4122 * Note that at recovery time, journal replay occurs *before* the restart of
4123 * truncate against the orphan inode list.
4124 *
4125 * The committed inode has the new, desired i_size (which is the same as
Mingming Cao617ba132006-10-11 01:20:53 -07004126 * i_disksize in this case). After a crash, ext4_orphan_cleanup() will see
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004127 * that this inode's truncate did not complete and it will again call
Mingming Cao617ba132006-10-11 01:20:53 -07004128 * ext4_truncate() to have another go. So there will be instantiated blocks
4129 * to the right of the truncation point in a crashed ext4 filesystem. But
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004130 * that's fine - as long as they are linked from the inode, the post-crash
Mingming Cao617ba132006-10-11 01:20:53 -07004131 * ext4_truncate() run will find them and release them.
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004132 */
Theodore Ts'o2c98eb52016-11-13 22:02:26 -05004133int ext4_truncate(struct inode *inode)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004134{
Theodore Ts'o819c4922013-04-03 12:47:17 -04004135 struct ext4_inode_info *ei = EXT4_I(inode);
4136 unsigned int credits;
Harshad Shirwadkar4209ae12020-04-26 18:34:37 -07004137 int err = 0, err2;
Theodore Ts'o819c4922013-04-03 12:47:17 -04004138 handle_t *handle;
4139 struct address_space *mapping = inode->i_mapping;
Theodore Ts'o819c4922013-04-03 12:47:17 -04004140
Theodore Ts'o19b5ef62013-04-03 21:58:52 -04004141 /*
4142 * There is a possibility that we're either freeing the inode
Matthew Wilcoxe04027e2014-03-24 15:15:07 -04004143 * or it's a completely new inode. In those cases we might not
Theodore Ts'o19b5ef62013-04-03 21:58:52 -04004144 * have i_mutex locked because it's not necessary.
4145 */
4146 if (!(inode->i_state & (I_NEW|I_FREEING)))
Al Viro59551022016-01-22 15:40:57 -05004147 WARN_ON(!inode_is_locked(inode));
Jiaying Zhang0562e0b2011-03-21 21:38:05 -04004148 trace_ext4_truncate_enter(inode);
4149
Duane Griffin91ef4ca2008-07-11 19:27:31 -04004150 if (!ext4_can_truncate(inode))
zhengliang9a5d2652020-07-01 16:30:27 +08004151 goto out_trace;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004152
Theodore Ts'o5534fb52009-09-17 09:34:16 -04004153 if (inode->i_size == 0 && !test_opt(inode->i_sb, NO_AUTO_DA_ALLOC))
Theodore Ts'o19f5fb72010-01-24 14:34:07 -05004154 ext4_set_inode_state(inode, EXT4_STATE_DA_ALLOC_CLOSE);
Theodore Ts'o7d8f9f72009-02-24 08:21:14 -05004155
Tao Maaef1c852012-12-10 14:06:02 -05004156 if (ext4_has_inline_data(inode)) {
4157 int has_inline = 1;
4158
Theodore Ts'o01daf942017-01-22 19:35:49 -05004159 err = ext4_inline_data_truncate(inode, &has_inline);
zhengliang9a5d2652020-07-01 16:30:27 +08004160 if (err || has_inline)
4161 goto out_trace;
Tao Maaef1c852012-12-10 14:06:02 -05004162 }
4163
Jan Karaa3612932013-08-16 21:19:41 -04004164 /* If we zero-out tail of the page, we have to create jinode for jbd2 */
4165 if (inode->i_size & (inode->i_sb->s_blocksize - 1)) {
4166 if (ext4_inode_attach_jinode(inode) < 0)
zhengliang9a5d2652020-07-01 16:30:27 +08004167 goto out_trace;
Jan Karaa3612932013-08-16 21:19:41 -04004168 }
4169
Amir Goldsteinff9893d2011-06-27 16:36:31 -04004170 if (ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS))
Theodore Ts'o819c4922013-04-03 12:47:17 -04004171 credits = ext4_writepage_trans_blocks(inode);
Amir Goldsteinff9893d2011-06-27 16:36:31 -04004172 else
Theodore Ts'o819c4922013-04-03 12:47:17 -04004173 credits = ext4_blocks_for_truncate(inode);
4174
4175 handle = ext4_journal_start(inode, EXT4_HT_TRUNCATE, credits);
zhengliang9a5d2652020-07-01 16:30:27 +08004176 if (IS_ERR(handle)) {
4177 err = PTR_ERR(handle);
4178 goto out_trace;
4179 }
Theodore Ts'o819c4922013-04-03 12:47:17 -04004180
Lukas Czernereb3544c2013-05-27 23:32:35 -04004181 if (inode->i_size & (inode->i_sb->s_blocksize - 1))
4182 ext4_block_truncate_page(handle, mapping, inode->i_size);
Theodore Ts'o819c4922013-04-03 12:47:17 -04004183
4184 /*
4185 * We add the inode to the orphan list, so that if this
4186 * truncate spans multiple transactions, and we crash, we will
4187 * resume the truncate when the filesystem recovers. It also
4188 * marks the inode dirty, to catch the new size.
4189 *
4190 * Implication: the file must always be in a sane, consistent
4191 * truncatable state while each transaction commits.
4192 */
Theodore Ts'o2c98eb52016-11-13 22:02:26 -05004193 err = ext4_orphan_add(handle, inode);
4194 if (err)
Theodore Ts'o819c4922013-04-03 12:47:17 -04004195 goto out_stop;
4196
4197 down_write(&EXT4_I(inode)->i_data_sem);
4198
brookxu27bc4462020-08-17 15:36:15 +08004199 ext4_discard_preallocations(inode, 0);
Theodore Ts'o819c4922013-04-03 12:47:17 -04004200
4201 if (ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS))
Theodore Ts'od0abb362016-11-13 22:02:28 -05004202 err = ext4_ext_truncate(handle, inode);
Theodore Ts'o819c4922013-04-03 12:47:17 -04004203 else
4204 ext4_ind_truncate(handle, inode);
4205
4206 up_write(&ei->i_data_sem);
Theodore Ts'od0abb362016-11-13 22:02:28 -05004207 if (err)
4208 goto out_stop;
Theodore Ts'o819c4922013-04-03 12:47:17 -04004209
4210 if (IS_SYNC(inode))
4211 ext4_handle_sync(handle);
4212
4213out_stop:
4214 /*
4215 * If this was a simple ftruncate() and the file will remain alive,
4216 * then we need to clear up the orphan record which we created above.
4217 * However, if this was a real unlink then we were called by
Wang Shilong58d86a52014-11-25 16:17:29 -05004218 * ext4_evict_inode(), and we allow that function to clean up the
Theodore Ts'o819c4922013-04-03 12:47:17 -04004219 * orphan info for us.
4220 */
4221 if (inode->i_nlink)
4222 ext4_orphan_del(handle, inode);
4223
Deepa Dinamanieeca7ea2016-11-14 21:40:10 -05004224 inode->i_mtime = inode->i_ctime = current_time(inode);
Harshad Shirwadkar4209ae12020-04-26 18:34:37 -07004225 err2 = ext4_mark_inode_dirty(handle, inode);
4226 if (unlikely(err2 && !err))
4227 err = err2;
Theodore Ts'o819c4922013-04-03 12:47:17 -04004228 ext4_journal_stop(handle);
Alex Tomasa86c6182006-10-11 01:21:03 -07004229
zhengliang9a5d2652020-07-01 16:30:27 +08004230out_trace:
Jiaying Zhang0562e0b2011-03-21 21:38:05 -04004231 trace_ext4_truncate_exit(inode);
Theodore Ts'o2c98eb52016-11-13 22:02:26 -05004232 return err;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004233}
4234
Zhang Yi9a1bf322021-09-01 10:09:54 +08004235static inline u64 ext4_inode_peek_iversion(const struct inode *inode)
4236{
4237 if (unlikely(EXT4_I(inode)->i_flags & EXT4_EA_INODE_FL))
4238 return inode_peek_iversion_raw(inode);
4239 else
4240 return inode_peek_iversion(inode);
4241}
4242
4243static int ext4_inode_blocks_set(struct ext4_inode *raw_inode,
4244 struct ext4_inode_info *ei)
4245{
4246 struct inode *inode = &(ei->vfs_inode);
4247 u64 i_blocks = READ_ONCE(inode->i_blocks);
4248 struct super_block *sb = inode->i_sb;
4249
4250 if (i_blocks <= ~0U) {
4251 /*
4252 * i_blocks can be represented in a 32 bit variable
4253 * as multiple of 512 bytes
4254 */
4255 raw_inode->i_blocks_lo = cpu_to_le32(i_blocks);
4256 raw_inode->i_blocks_high = 0;
4257 ext4_clear_inode_flag(inode, EXT4_INODE_HUGE_FILE);
4258 return 0;
4259 }
4260
4261 /*
4262 * This should never happen since sb->s_maxbytes should not have
4263 * allowed this, sb->s_maxbytes was set according to the huge_file
4264 * feature in ext4_fill_super().
4265 */
4266 if (!ext4_has_feature_huge_file(sb))
4267 return -EFSCORRUPTED;
4268
4269 if (i_blocks <= 0xffffffffffffULL) {
4270 /*
4271 * i_blocks can be represented in a 48 bit variable
4272 * as multiple of 512 bytes
4273 */
4274 raw_inode->i_blocks_lo = cpu_to_le32(i_blocks);
4275 raw_inode->i_blocks_high = cpu_to_le16(i_blocks >> 32);
4276 ext4_clear_inode_flag(inode, EXT4_INODE_HUGE_FILE);
4277 } else {
4278 ext4_set_inode_flag(inode, EXT4_INODE_HUGE_FILE);
4279 /* i_block is stored in file system block size */
4280 i_blocks = i_blocks >> (inode->i_blkbits - 9);
4281 raw_inode->i_blocks_lo = cpu_to_le32(i_blocks);
4282 raw_inode->i_blocks_high = cpu_to_le16(i_blocks >> 32);
4283 }
4284 return 0;
4285}
4286
4287static int ext4_fill_raw_inode(struct inode *inode, struct ext4_inode *raw_inode)
4288{
4289 struct ext4_inode_info *ei = EXT4_I(inode);
4290 uid_t i_uid;
4291 gid_t i_gid;
4292 projid_t i_projid;
4293 int block;
4294 int err;
4295
4296 err = ext4_inode_blocks_set(raw_inode, ei);
4297
4298 raw_inode->i_mode = cpu_to_le16(inode->i_mode);
4299 i_uid = i_uid_read(inode);
4300 i_gid = i_gid_read(inode);
4301 i_projid = from_kprojid(&init_user_ns, ei->i_projid);
4302 if (!(test_opt(inode->i_sb, NO_UID32))) {
4303 raw_inode->i_uid_low = cpu_to_le16(low_16_bits(i_uid));
4304 raw_inode->i_gid_low = cpu_to_le16(low_16_bits(i_gid));
4305 /*
4306 * Fix up interoperability with old kernels. Otherwise,
4307 * old inodes get re-used with the upper 16 bits of the
4308 * uid/gid intact.
4309 */
4310 if (ei->i_dtime && list_empty(&ei->i_orphan)) {
4311 raw_inode->i_uid_high = 0;
4312 raw_inode->i_gid_high = 0;
4313 } else {
4314 raw_inode->i_uid_high =
4315 cpu_to_le16(high_16_bits(i_uid));
4316 raw_inode->i_gid_high =
4317 cpu_to_le16(high_16_bits(i_gid));
4318 }
4319 } else {
4320 raw_inode->i_uid_low = cpu_to_le16(fs_high2lowuid(i_uid));
4321 raw_inode->i_gid_low = cpu_to_le16(fs_high2lowgid(i_gid));
4322 raw_inode->i_uid_high = 0;
4323 raw_inode->i_gid_high = 0;
4324 }
4325 raw_inode->i_links_count = cpu_to_le16(inode->i_nlink);
4326
4327 EXT4_INODE_SET_XTIME(i_ctime, inode, raw_inode);
4328 EXT4_INODE_SET_XTIME(i_mtime, inode, raw_inode);
4329 EXT4_INODE_SET_XTIME(i_atime, inode, raw_inode);
4330 EXT4_EINODE_SET_XTIME(i_crtime, ei, raw_inode);
4331
4332 raw_inode->i_dtime = cpu_to_le32(ei->i_dtime);
4333 raw_inode->i_flags = cpu_to_le32(ei->i_flags & 0xFFFFFFFF);
4334 if (likely(!test_opt2(inode->i_sb, HURD_COMPAT)))
4335 raw_inode->i_file_acl_high =
4336 cpu_to_le16(ei->i_file_acl >> 32);
4337 raw_inode->i_file_acl_lo = cpu_to_le32(ei->i_file_acl);
4338 ext4_isize_set(raw_inode, ei->i_disksize);
4339
4340 raw_inode->i_generation = cpu_to_le32(inode->i_generation);
4341 if (S_ISCHR(inode->i_mode) || S_ISBLK(inode->i_mode)) {
4342 if (old_valid_dev(inode->i_rdev)) {
4343 raw_inode->i_block[0] =
4344 cpu_to_le32(old_encode_dev(inode->i_rdev));
4345 raw_inode->i_block[1] = 0;
4346 } else {
4347 raw_inode->i_block[0] = 0;
4348 raw_inode->i_block[1] =
4349 cpu_to_le32(new_encode_dev(inode->i_rdev));
4350 raw_inode->i_block[2] = 0;
4351 }
4352 } else if (!ext4_has_inline_data(inode)) {
4353 for (block = 0; block < EXT4_N_BLOCKS; block++)
4354 raw_inode->i_block[block] = ei->i_data[block];
4355 }
4356
4357 if (likely(!test_opt2(inode->i_sb, HURD_COMPAT))) {
4358 u64 ivers = ext4_inode_peek_iversion(inode);
4359
4360 raw_inode->i_disk_version = cpu_to_le32(ivers);
4361 if (ei->i_extra_isize) {
4362 if (EXT4_FITS_IN_INODE(raw_inode, ei, i_version_hi))
4363 raw_inode->i_version_hi =
4364 cpu_to_le32(ivers >> 32);
4365 raw_inode->i_extra_isize =
4366 cpu_to_le16(ei->i_extra_isize);
4367 }
4368 }
4369
4370 if (i_projid != EXT4_DEF_PROJID &&
4371 !ext4_has_feature_project(inode->i_sb))
4372 err = err ?: -EFSCORRUPTED;
4373
4374 if (EXT4_INODE_SIZE(inode->i_sb) > EXT4_GOOD_OLD_INODE_SIZE &&
4375 EXT4_FITS_IN_INODE(raw_inode, ei, i_projid))
4376 raw_inode->i_projid = cpu_to_le32(i_projid);
4377
4378 ext4_inode_csum_set(inode, raw_inode, ei);
4379 return err;
4380}
4381
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004382/*
Mingming Cao617ba132006-10-11 01:20:53 -07004383 * ext4_get_inode_loc returns with an extra refcount against the inode's
Zhang Yide01f482021-09-01 10:09:55 +08004384 * underlying buffer_head on success. If we pass 'inode' and it does not
4385 * have in-inode xattr, we have all inode data in memory that is needed
4386 * to recreate the on-disk version of this inode.
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004387 */
Harshad Shirwadkar8016e292020-10-15 13:37:59 -07004388static int __ext4_get_inode_loc(struct super_block *sb, unsigned long ino,
Zhang Yide01f482021-09-01 10:09:55 +08004389 struct inode *inode, struct ext4_iloc *iloc,
Harshad Shirwadkar8016e292020-10-15 13:37:59 -07004390 ext4_fsblk_t *ret_block)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004391{
Theodore Ts'o240799c2008-10-09 23:53:47 -04004392 struct ext4_group_desc *gdp;
4393 struct buffer_head *bh;
Theodore Ts'o240799c2008-10-09 23:53:47 -04004394 ext4_fsblk_t block;
Linus Torvalds02f03c42019-09-29 17:59:23 -07004395 struct blk_plug plug;
Theodore Ts'o240799c2008-10-09 23:53:47 -04004396 int inodes_per_block, inode_offset;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004397
Aneesh Kumar K.V3a06d772008-11-22 15:04:59 -05004398 iloc->bh = NULL;
Harshad Shirwadkar8016e292020-10-15 13:37:59 -07004399 if (ino < EXT4_ROOT_INO ||
4400 ino > le32_to_cpu(EXT4_SB(sb)->s_es->s_inodes_count))
Darrick J. Wong6a797d22015-10-17 16:16:04 -04004401 return -EFSCORRUPTED;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004402
Harshad Shirwadkar8016e292020-10-15 13:37:59 -07004403 iloc->block_group = (ino - 1) / EXT4_INODES_PER_GROUP(sb);
Theodore Ts'o240799c2008-10-09 23:53:47 -04004404 gdp = ext4_get_group_desc(sb, iloc->block_group, NULL);
4405 if (!gdp)
4406 return -EIO;
4407
4408 /*
4409 * Figure out the offset within the block group inode table
4410 */
Tao Ma00d09882011-05-09 10:26:41 -04004411 inodes_per_block = EXT4_SB(sb)->s_inodes_per_block;
Harshad Shirwadkar8016e292020-10-15 13:37:59 -07004412 inode_offset = ((ino - 1) %
Theodore Ts'o240799c2008-10-09 23:53:47 -04004413 EXT4_INODES_PER_GROUP(sb));
4414 block = ext4_inode_table(sb, gdp) + (inode_offset / inodes_per_block);
4415 iloc->offset = (inode_offset % inodes_per_block) * EXT4_INODE_SIZE(sb);
4416
4417 bh = sb_getblk(sb, block);
Wang Shilongaebf0242013-01-12 16:28:47 -05004418 if (unlikely(!bh))
Theodore Ts'o860d21e2013-01-12 16:19:36 -05004419 return -ENOMEM;
Zhang Yi8e33fad2021-08-26 21:04:08 +08004420 if (ext4_buffer_uptodate(bh))
4421 goto has_buffer;
Hidehiro Kawai9c83a922008-07-26 16:39:26 -04004422
Zhang Yi8e33fad2021-08-26 21:04:08 +08004423 lock_buffer(bh);
Zhang Yif2c779732021-09-10 16:03:16 +08004424 if (ext4_buffer_uptodate(bh)) {
4425 /* Someone brought it uptodate while we waited */
4426 unlock_buffer(bh);
4427 goto has_buffer;
4428 }
4429
Zhang Yi8e33fad2021-08-26 21:04:08 +08004430 /*
4431 * If we have all information of the inode in memory and this
4432 * is the only valid inode in the block, we need not read the
4433 * block.
4434 */
Zhang Yide01f482021-09-01 10:09:55 +08004435 if (inode && !ext4_test_inode_state(inode, EXT4_STATE_XATTR)) {
Zhang Yi8e33fad2021-08-26 21:04:08 +08004436 struct buffer_head *bitmap_bh;
4437 int i, start;
4438
4439 start = inode_offset & ~(inodes_per_block - 1);
4440
4441 /* Is the inode bitmap in cache? */
4442 bitmap_bh = sb_getblk(sb, ext4_inode_bitmap(sb, gdp));
4443 if (unlikely(!bitmap_bh))
4444 goto make_io;
4445
4446 /*
4447 * If the inode bitmap isn't in cache then the
4448 * optimisation may end up performing two reads instead
4449 * of one, so skip it.
4450 */
4451 if (!buffer_uptodate(bitmap_bh)) {
4452 brelse(bitmap_bh);
4453 goto make_io;
4454 }
4455 for (i = start; i < start + inodes_per_block; i++) {
4456 if (i == inode_offset)
4457 continue;
4458 if (ext4_test_bit(i, bitmap_bh->b_data))
4459 break;
4460 }
4461 brelse(bitmap_bh);
4462 if (i == start + inodes_per_block) {
Zhang Yide01f482021-09-01 10:09:55 +08004463 struct ext4_inode *raw_inode =
4464 (struct ext4_inode *) (bh->b_data + iloc->offset);
4465
Zhang Yi8e33fad2021-08-26 21:04:08 +08004466 /* all other inodes are free, so skip I/O */
4467 memset(bh->b_data, 0, bh->b_size);
Zhang Yide01f482021-09-01 10:09:55 +08004468 if (!ext4_test_inode_state(inode, EXT4_STATE_NEW))
4469 ext4_fill_raw_inode(inode, raw_inode);
Zhang Yi8e33fad2021-08-26 21:04:08 +08004470 set_buffer_uptodate(bh);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004471 unlock_buffer(bh);
4472 goto has_buffer;
4473 }
Zhang Yi8e33fad2021-08-26 21:04:08 +08004474 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004475
4476make_io:
Zhang Yi8e33fad2021-08-26 21:04:08 +08004477 /*
4478 * If we need to do any I/O, try to pre-readahead extra
4479 * blocks from the inode table.
4480 */
4481 blk_start_plug(&plug);
4482 if (EXT4_SB(sb)->s_inode_readahead_blks) {
4483 ext4_fsblk_t b, end, table;
4484 unsigned num;
4485 __u32 ra_blks = EXT4_SB(sb)->s_inode_readahead_blks;
Theodore Ts'o240799c2008-10-09 23:53:47 -04004486
Zhang Yi8e33fad2021-08-26 21:04:08 +08004487 table = ext4_inode_table(sb, gdp);
4488 /* s_inode_readahead_blks is always a power of 2 */
4489 b = block & ~((ext4_fsblk_t) ra_blks - 1);
4490 if (table > b)
4491 b = table;
4492 end = b + ra_blks;
4493 num = EXT4_INODES_PER_GROUP(sb);
4494 if (ext4_has_group_desc_csum(sb))
4495 num -= ext4_itable_unused_count(sb, gdp);
4496 table += num / inodes_per_block;
4497 if (end > table)
4498 end = table;
4499 while (b <= end)
4500 ext4_sb_breadahead_unmovable(sb, b++);
4501 }
Theodore Ts'o240799c2008-10-09 23:53:47 -04004502
Zhang Yi8e33fad2021-08-26 21:04:08 +08004503 /*
4504 * There are other valid inodes in the buffer, this inode
4505 * has in-inode xattrs, or we don't have this inode in memory.
4506 * Read the block from disk.
4507 */
4508 trace_ext4_load_inode(sb, ino);
4509 ext4_read_bh_nowait(bh, REQ_META | REQ_PRIO, NULL);
4510 blk_finish_plug(&plug);
4511 wait_on_buffer(bh);
4512 ext4_simulate_fail_bh(sb, bh, EXT4_SIM_INODE_EIO);
4513 if (!buffer_uptodate(bh)) {
4514 if (ret_block)
4515 *ret_block = block;
4516 brelse(bh);
4517 return -EIO;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004518 }
4519has_buffer:
4520 iloc->bh = bh;
4521 return 0;
4522}
4523
Harshad Shirwadkar8016e292020-10-15 13:37:59 -07004524static int __ext4_get_inode_loc_noinmem(struct inode *inode,
4525 struct ext4_iloc *iloc)
4526{
Harshad Shirwadkarc27c29c2021-12-01 08:34:21 -08004527 ext4_fsblk_t err_blk = 0;
Harshad Shirwadkar8016e292020-10-15 13:37:59 -07004528 int ret;
4529
Zhang Yide01f482021-09-01 10:09:55 +08004530 ret = __ext4_get_inode_loc(inode->i_sb, inode->i_ino, NULL, iloc,
Harshad Shirwadkar8016e292020-10-15 13:37:59 -07004531 &err_blk);
4532
4533 if (ret == -EIO)
4534 ext4_error_inode_block(inode, err_blk, EIO,
4535 "unable to read itable block");
4536
4537 return ret;
4538}
4539
Mingming Cao617ba132006-10-11 01:20:53 -07004540int ext4_get_inode_loc(struct inode *inode, struct ext4_iloc *iloc)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004541{
Harshad Shirwadkarc27c29c2021-12-01 08:34:21 -08004542 ext4_fsblk_t err_blk = 0;
Harshad Shirwadkar8016e292020-10-15 13:37:59 -07004543 int ret;
4544
Zhang Yide01f482021-09-01 10:09:55 +08004545 ret = __ext4_get_inode_loc(inode->i_sb, inode->i_ino, inode, iloc,
4546 &err_blk);
Harshad Shirwadkar8016e292020-10-15 13:37:59 -07004547
4548 if (ret == -EIO)
4549 ext4_error_inode_block(inode, err_blk, EIO,
4550 "unable to read itable block");
4551
4552 return ret;
4553}
4554
4555
4556int ext4_get_fc_inode_loc(struct super_block *sb, unsigned long ino,
4557 struct ext4_iloc *iloc)
4558{
Zhang Yide01f482021-09-01 10:09:55 +08004559 return __ext4_get_inode_loc(sb, ino, NULL, iloc, NULL);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004560}
4561
Ira Weinya8ab6d32020-05-28 07:59:58 -07004562static bool ext4_should_enable_dax(struct inode *inode)
Ross Zwisler66425862017-10-12 12:00:59 -04004563{
Ira Weinya8ab6d32020-05-28 07:59:58 -07004564 struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb);
4565
Ira Weiny9cb20f92020-05-28 08:00:00 -07004566 if (test_opt2(inode->i_sb, DAX_NEVER))
Ross Zwisler66425862017-10-12 12:00:59 -04004567 return false;
4568 if (!S_ISREG(inode->i_mode))
4569 return false;
4570 if (ext4_should_journal_data(inode))
4571 return false;
4572 if (ext4_has_inline_data(inode))
4573 return false;
Chandan Rajendra592ddec2018-12-12 15:20:10 +05304574 if (ext4_test_inode_flag(inode, EXT4_INODE_ENCRYPT))
Ross Zwisler66425862017-10-12 12:00:59 -04004575 return false;
Eric Biggersc93d8f82019-07-22 09:26:24 -07004576 if (ext4_test_inode_flag(inode, EXT4_INODE_VERITY))
4577 return false;
Ira Weinya8ab6d32020-05-28 07:59:58 -07004578 if (!test_bit(EXT4_FLAGS_BDEV_IS_DAX, &sbi->s_ext4_flags))
4579 return false;
4580 if (test_opt(inode->i_sb, DAX_ALWAYS))
4581 return true;
4582
Ira Weinyb383a732020-05-28 08:00:02 -07004583 return ext4_test_inode_flag(inode, EXT4_INODE_DAX);
Ross Zwisler66425862017-10-12 12:00:59 -04004584}
4585
Ira Weiny043546e2020-05-28 07:59:59 -07004586void ext4_set_inode_flags(struct inode *inode, bool init)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004587{
Mingming Cao617ba132006-10-11 01:20:53 -07004588 unsigned int flags = EXT4_I(inode)->i_flags;
Theodore Ts'o00a1a052014-03-30 10:20:01 -04004589 unsigned int new_fl = 0;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004590
Ira Weiny043546e2020-05-28 07:59:59 -07004591 WARN_ON_ONCE(IS_DAX(inode) && init);
4592
Mingming Cao617ba132006-10-11 01:20:53 -07004593 if (flags & EXT4_SYNC_FL)
Theodore Ts'o00a1a052014-03-30 10:20:01 -04004594 new_fl |= S_SYNC;
Mingming Cao617ba132006-10-11 01:20:53 -07004595 if (flags & EXT4_APPEND_FL)
Theodore Ts'o00a1a052014-03-30 10:20:01 -04004596 new_fl |= S_APPEND;
Mingming Cao617ba132006-10-11 01:20:53 -07004597 if (flags & EXT4_IMMUTABLE_FL)
Theodore Ts'o00a1a052014-03-30 10:20:01 -04004598 new_fl |= S_IMMUTABLE;
Mingming Cao617ba132006-10-11 01:20:53 -07004599 if (flags & EXT4_NOATIME_FL)
Theodore Ts'o00a1a052014-03-30 10:20:01 -04004600 new_fl |= S_NOATIME;
Mingming Cao617ba132006-10-11 01:20:53 -07004601 if (flags & EXT4_DIRSYNC_FL)
Theodore Ts'o00a1a052014-03-30 10:20:01 -04004602 new_fl |= S_DIRSYNC;
Ira Weiny043546e2020-05-28 07:59:59 -07004603
4604 /* Because of the way inode_set_flags() works we must preserve S_DAX
4605 * here if already set. */
4606 new_fl |= (inode->i_flags & S_DAX);
4607 if (init && ext4_should_enable_dax(inode))
Ross Zwisler923ae0f2015-02-16 15:59:38 -08004608 new_fl |= S_DAX;
Ira Weiny043546e2020-05-28 07:59:59 -07004609
Eric Biggers2ee6a572017-10-09 12:15:35 -07004610 if (flags & EXT4_ENCRYPT_FL)
4611 new_fl |= S_ENCRYPTED;
Gabriel Krisman Bertazib886ee32019-04-25 14:12:08 -04004612 if (flags & EXT4_CASEFOLD_FL)
4613 new_fl |= S_CASEFOLD;
Eric Biggersc93d8f82019-07-22 09:26:24 -07004614 if (flags & EXT4_VERITY_FL)
4615 new_fl |= S_VERITY;
Theodore Ts'o5f16f322014-03-24 14:43:12 -04004616 inode_set_flags(inode, new_fl,
Eric Biggers2ee6a572017-10-09 12:15:35 -07004617 S_SYNC|S_APPEND|S_IMMUTABLE|S_NOATIME|S_DIRSYNC|S_DAX|
Eric Biggersc93d8f82019-07-22 09:26:24 -07004618 S_ENCRYPTED|S_CASEFOLD|S_VERITY);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004619}
4620
Aneesh Kumar K.V0fc1b452008-01-28 23:58:26 -05004621static blkcnt_t ext4_inode_blocks(struct ext4_inode *raw_inode,
Theodore Ts'ode9a55b2009-06-14 17:45:34 -04004622 struct ext4_inode_info *ei)
Aneesh Kumar K.V0fc1b452008-01-28 23:58:26 -05004623{
4624 blkcnt_t i_blocks ;
Aneesh Kumar K.V8180a562008-01-28 23:58:27 -05004625 struct inode *inode = &(ei->vfs_inode);
4626 struct super_block *sb = inode->i_sb;
Aneesh Kumar K.V0fc1b452008-01-28 23:58:26 -05004627
Darrick J. Wonge2b911c2015-10-17 16:18:43 -04004628 if (ext4_has_feature_huge_file(sb)) {
Aneesh Kumar K.V0fc1b452008-01-28 23:58:26 -05004629 /* we are using combined 48 bit field */
4630 i_blocks = ((u64)le16_to_cpu(raw_inode->i_blocks_high)) << 32 |
4631 le32_to_cpu(raw_inode->i_blocks_lo);
Theodore Ts'o07a03822010-06-14 09:54:48 -04004632 if (ext4_test_inode_flag(inode, EXT4_INODE_HUGE_FILE)) {
Aneesh Kumar K.V8180a562008-01-28 23:58:27 -05004633 /* i_blocks represent file system block size */
4634 return i_blocks << (inode->i_blkbits - 9);
4635 } else {
4636 return i_blocks;
4637 }
Aneesh Kumar K.V0fc1b452008-01-28 23:58:26 -05004638 } else {
4639 return le32_to_cpu(raw_inode->i_blocks_lo);
4640 }
4641}
Jan Karaff9ddf72007-07-18 09:24:20 -04004642
Theodore Ts'oeb9b5f02018-05-22 17:14:07 -04004643static inline int ext4_iget_extra_inode(struct inode *inode,
Tao Ma152a7b02012-12-02 11:13:24 -05004644 struct ext4_inode *raw_inode,
4645 struct ext4_inode_info *ei)
4646{
4647 __le32 *magic = (void *)raw_inode +
4648 EXT4_GOOD_OLD_INODE_SIZE + ei->i_extra_isize;
Theodore Ts'oeb9b5f02018-05-22 17:14:07 -04004649
Eric Biggers290ab232016-12-01 14:51:58 -05004650 if (EXT4_GOOD_OLD_INODE_SIZE + ei->i_extra_isize + sizeof(__le32) <=
4651 EXT4_INODE_SIZE(inode->i_sb) &&
4652 *magic == cpu_to_le32(EXT4_XATTR_MAGIC)) {
Tao Ma152a7b02012-12-02 11:13:24 -05004653 ext4_set_inode_state(inode, EXT4_STATE_XATTR);
Theodore Ts'oeb9b5f02018-05-22 17:14:07 -04004654 return ext4_find_inline_data_nolock(inode);
Tao Maf19d5872012-12-10 14:05:51 -05004655 } else
4656 EXT4_I(inode)->i_inline_off = 0;
Theodore Ts'oeb9b5f02018-05-22 17:14:07 -04004657 return 0;
Tao Ma152a7b02012-12-02 11:13:24 -05004658}
4659
Li Xi040cb372016-01-08 16:01:21 -05004660int ext4_get_projid(struct inode *inode, kprojid_t *projid)
4661{
Kaho Ng0b7b7772016-09-05 23:11:58 -04004662 if (!ext4_has_feature_project(inode->i_sb))
Li Xi040cb372016-01-08 16:01:21 -05004663 return -EOPNOTSUPP;
4664 *projid = EXT4_I(inode)->i_projid;
4665 return 0;
4666}
4667
Eryu Guane254d1a2018-05-10 11:55:31 -04004668/*
4669 * ext4 has self-managed i_version for ea inodes, it stores the lower 32bit of
4670 * refcount in i_version, so use raw values if inode has EXT4_EA_INODE_FL flag
4671 * set.
4672 */
4673static inline void ext4_inode_set_iversion_queried(struct inode *inode, u64 val)
4674{
4675 if (unlikely(EXT4_I(inode)->i_flags & EXT4_EA_INODE_FL))
4676 inode_set_iversion_raw(inode, val);
4677 else
4678 inode_set_iversion_queried(inode, val);
4679}
Eryu Guane254d1a2018-05-10 11:55:31 -04004680
Theodore Ts'o8a363972018-12-19 12:29:13 -05004681struct inode *__ext4_iget(struct super_block *sb, unsigned long ino,
4682 ext4_iget_flags flags, const char *function,
4683 unsigned int line)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004684{
Mingming Cao617ba132006-10-11 01:20:53 -07004685 struct ext4_iloc iloc;
4686 struct ext4_inode *raw_inode;
David Howells1d1fe1e2008-02-07 00:15:37 -08004687 struct ext4_inode_info *ei;
Jan Karabd2c38c2021-08-12 15:31:22 +02004688 struct ext4_super_block *es = EXT4_SB(sb)->s_es;
David Howells1d1fe1e2008-02-07 00:15:37 -08004689 struct inode *inode;
Jan Karab436b9b2009-12-08 23:51:10 -05004690 journal_t *journal = EXT4_SB(sb)->s_journal;
David Howells1d1fe1e2008-02-07 00:15:37 -08004691 long ret;
Darrick J. Wong7e6e1ef2016-12-10 09:55:01 -05004692 loff_t size;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004693 int block;
Eric W. Biederman08cefc72012-02-07 15:41:49 -08004694 uid_t i_uid;
4695 gid_t i_gid;
Li Xi040cb372016-01-08 16:01:21 -05004696 projid_t i_projid;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004697
Theodore Ts'o191ce172018-12-31 22:34:31 -05004698 if ((!(flags & EXT4_IGET_SPECIAL) &&
Jan Karabd2c38c2021-08-12 15:31:22 +02004699 ((ino < EXT4_FIRST_INO(sb) && ino != EXT4_ROOT_INO) ||
4700 ino == le32_to_cpu(es->s_usr_quota_inum) ||
4701 ino == le32_to_cpu(es->s_grp_quota_inum) ||
Jan Kara02f310f2021-08-16 11:57:06 +02004702 ino == le32_to_cpu(es->s_prj_quota_inum) ||
4703 ino == le32_to_cpu(es->s_orphan_file_inum))) ||
Theodore Ts'o8a363972018-12-19 12:29:13 -05004704 (ino < EXT4_ROOT_INO) ||
Jan Karabd2c38c2021-08-12 15:31:22 +02004705 (ino > le32_to_cpu(es->s_inodes_count))) {
Theodore Ts'o8a363972018-12-19 12:29:13 -05004706 if (flags & EXT4_IGET_HANDLE)
4707 return ERR_PTR(-ESTALE);
Jan Kara014c9ca2020-11-27 12:33:57 +01004708 __ext4_error(sb, function, line, false, EFSCORRUPTED, 0,
Theodore Ts'o8a363972018-12-19 12:29:13 -05004709 "inode #%lu: comm %s: iget: illegal inode #",
4710 ino, current->comm);
4711 return ERR_PTR(-EFSCORRUPTED);
4712 }
4713
David Howells1d1fe1e2008-02-07 00:15:37 -08004714 inode = iget_locked(sb, ino);
4715 if (!inode)
4716 return ERR_PTR(-ENOMEM);
4717 if (!(inode->i_state & I_NEW))
4718 return inode;
4719
4720 ei = EXT4_I(inode);
Peter Huewe7dc57612011-02-21 21:01:42 -05004721 iloc.bh = NULL;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004722
Harshad Shirwadkar8016e292020-10-15 13:37:59 -07004723 ret = __ext4_get_inode_loc_noinmem(inode, &iloc);
David Howells1d1fe1e2008-02-07 00:15:37 -08004724 if (ret < 0)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004725 goto bad_inode;
Mingming Cao617ba132006-10-11 01:20:53 -07004726 raw_inode = ext4_raw_inode(&iloc);
Darrick J. Wong814525f2012-04-29 18:31:10 -04004727
Theodore Ts'o8e4b5ea2018-03-29 21:56:09 -04004728 if ((ino == EXT4_ROOT_INO) && (raw_inode->i_links_count == 0)) {
Theodore Ts'o8a363972018-12-19 12:29:13 -05004729 ext4_error_inode(inode, function, line, 0,
4730 "iget: root inode unallocated");
Theodore Ts'o8e4b5ea2018-03-29 21:56:09 -04004731 ret = -EFSCORRUPTED;
4732 goto bad_inode;
4733 }
4734
Theodore Ts'o8a363972018-12-19 12:29:13 -05004735 if ((flags & EXT4_IGET_HANDLE) &&
4736 (raw_inode->i_links_count == 0) && (raw_inode->i_mode == 0)) {
4737 ret = -ESTALE;
4738 goto bad_inode;
4739 }
4740
Darrick J. Wong814525f2012-04-29 18:31:10 -04004741 if (EXT4_INODE_SIZE(inode->i_sb) > EXT4_GOOD_OLD_INODE_SIZE) {
4742 ei->i_extra_isize = le16_to_cpu(raw_inode->i_extra_isize);
4743 if (EXT4_GOOD_OLD_INODE_SIZE + ei->i_extra_isize >
Eric Biggers2dc8d9e2016-12-01 14:43:33 -05004744 EXT4_INODE_SIZE(inode->i_sb) ||
4745 (ei->i_extra_isize & 3)) {
Theodore Ts'o8a363972018-12-19 12:29:13 -05004746 ext4_error_inode(inode, function, line, 0,
4747 "iget: bad extra_isize %u "
4748 "(inode size %u)",
Eric Biggers2dc8d9e2016-12-01 14:43:33 -05004749 ei->i_extra_isize,
4750 EXT4_INODE_SIZE(inode->i_sb));
Darrick J. Wong6a797d22015-10-17 16:16:04 -04004751 ret = -EFSCORRUPTED;
Darrick J. Wong814525f2012-04-29 18:31:10 -04004752 goto bad_inode;
4753 }
4754 } else
4755 ei->i_extra_isize = 0;
4756
4757 /* Precompute checksum seed for inode metadata */
Dmitry Monakhov9aa5d32b2014-10-13 03:36:16 -04004758 if (ext4_has_metadata_csum(sb)) {
Darrick J. Wong814525f2012-04-29 18:31:10 -04004759 struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb);
4760 __u32 csum;
4761 __le32 inum = cpu_to_le32(inode->i_ino);
4762 __le32 gen = raw_inode->i_generation;
4763 csum = ext4_chksum(sbi, sbi->s_csum_seed, (__u8 *)&inum,
4764 sizeof(inum));
4765 ei->i_csum_seed = ext4_chksum(sbi, csum, (__u8 *)&gen,
4766 sizeof(gen));
4767 }
4768
Harshad Shirwadkar8016e292020-10-15 13:37:59 -07004769 if ((!ext4_inode_csum_verify(inode, raw_inode, ei) ||
4770 ext4_simulate_fail(sb, EXT4_SIM_INODE_CRC)) &&
4771 (!(EXT4_SB(sb)->s_mount_state & EXT4_FC_REPLAY))) {
4772 ext4_error_inode_err(inode, function, line, 0,
4773 EFSBADCRC, "iget: checksum invalid");
Darrick J. Wong6a797d22015-10-17 16:16:04 -04004774 ret = -EFSBADCRC;
Darrick J. Wong814525f2012-04-29 18:31:10 -04004775 goto bad_inode;
4776 }
4777
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004778 inode->i_mode = le16_to_cpu(raw_inode->i_mode);
Eric W. Biederman08cefc72012-02-07 15:41:49 -08004779 i_uid = (uid_t)le16_to_cpu(raw_inode->i_uid_low);
4780 i_gid = (gid_t)le16_to_cpu(raw_inode->i_gid_low);
Kaho Ng0b7b7772016-09-05 23:11:58 -04004781 if (ext4_has_feature_project(sb) &&
Li Xi040cb372016-01-08 16:01:21 -05004782 EXT4_INODE_SIZE(sb) > EXT4_GOOD_OLD_INODE_SIZE &&
4783 EXT4_FITS_IN_INODE(raw_inode, ei, i_projid))
4784 i_projid = (projid_t)le32_to_cpu(raw_inode->i_projid);
4785 else
4786 i_projid = EXT4_DEF_PROJID;
4787
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04004788 if (!(test_opt(inode->i_sb, NO_UID32))) {
Eric W. Biederman08cefc72012-02-07 15:41:49 -08004789 i_uid |= le16_to_cpu(raw_inode->i_uid_high) << 16;
4790 i_gid |= le16_to_cpu(raw_inode->i_gid_high) << 16;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004791 }
Eric W. Biederman08cefc72012-02-07 15:41:49 -08004792 i_uid_write(inode, i_uid);
4793 i_gid_write(inode, i_gid);
Li Xi040cb372016-01-08 16:01:21 -05004794 ei->i_projid = make_kprojid(&init_user_ns, i_projid);
Miklos Szeredibfe86842011-10-28 14:13:29 +02004795 set_nlink(inode, le16_to_cpu(raw_inode->i_links_count));
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004796
Theodore Ts'o353eb832011-01-10 12:18:25 -05004797 ext4_clear_state_flags(ei); /* Only relevant on 32-bit archs */
Tao Ma67cf5b02012-12-10 14:04:46 -05004798 ei->i_inline_off = 0;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004799 ei->i_dir_start_lookup = 0;
4800 ei->i_dtime = le32_to_cpu(raw_inode->i_dtime);
4801 /* We now have enough fields to check if the inode was active or not.
4802 * This is needed because nfsd might try to access dead inodes
4803 * the test is that same one that e2fsck uses
4804 * NeilBrown 1999oct15
4805 */
4806 if (inode->i_nlink == 0) {
Dr. Tilmann Bubeck393d1d12013-04-08 12:54:05 -04004807 if ((inode->i_mode == 0 ||
4808 !(EXT4_SB(inode->i_sb)->s_mount_state & EXT4_ORPHAN_FS)) &&
4809 ino != EXT4_BOOT_LOADER_INO) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004810 /* this inode is deleted */
David Howells1d1fe1e2008-02-07 00:15:37 -08004811 ret = -ESTALE;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004812 goto bad_inode;
4813 }
4814 /* The only unlinked inodes we let through here have
4815 * valid i_mode and are being read by the orphan
4816 * recovery code: that's fine, we're about to complete
Dr. Tilmann Bubeck393d1d12013-04-08 12:54:05 -04004817 * the process of deleting those.
4818 * OR it is the EXT4_BOOT_LOADER_INO which is
4819 * not initialized on a new filesystem. */
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004820 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004821 ei->i_flags = le32_to_cpu(raw_inode->i_flags);
Ira Weiny043546e2020-05-28 07:59:59 -07004822 ext4_set_inode_flags(inode, true);
Aneesh Kumar K.V0fc1b452008-01-28 23:58:26 -05004823 inode->i_blocks = ext4_inode_blocks(raw_inode, ei);
Aneesh Kumar K.V7973c0c2008-01-28 23:58:27 -05004824 ei->i_file_acl = le32_to_cpu(raw_inode->i_file_acl_lo);
Darrick J. Wonge2b911c2015-10-17 16:18:43 -04004825 if (ext4_has_feature_64bit(sb))
Badari Pulavartya1ddeb72006-10-11 01:21:09 -07004826 ei->i_file_acl |=
4827 ((__u64)le16_to_cpu(raw_inode->i_file_acl_high)) << 32;
Artem Blagodarenkoe08ac992017-06-21 21:09:57 -04004828 inode->i_size = ext4_isize(sb, raw_inode);
Darrick J. Wong7e6e1ef2016-12-10 09:55:01 -05004829 if ((size = i_size_read(inode)) < 0) {
Theodore Ts'o8a363972018-12-19 12:29:13 -05004830 ext4_error_inode(inode, function, line, 0,
4831 "iget: bad i_size value: %lld", size);
Darrick J. Wong7e6e1ef2016-12-10 09:55:01 -05004832 ret = -EFSCORRUPTED;
4833 goto bad_inode;
4834 }
Jan Kara48a34312020-02-10 15:43:16 +01004835 /*
4836 * If dir_index is not enabled but there's dir with INDEX flag set,
4837 * we'd normally treat htree data as empty space. But with metadata
4838 * checksumming that corrupts checksums so forbid that.
4839 */
4840 if (!ext4_has_feature_dir_index(sb) && ext4_has_metadata_csum(sb) &&
4841 ext4_test_inode_flag(inode, EXT4_INODE_INDEX)) {
4842 ext4_error_inode(inode, function, line, 0,
4843 "iget: Dir with htree data on filesystem without dir_index feature.");
4844 ret = -EFSCORRUPTED;
4845 goto bad_inode;
4846 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004847 ei->i_disksize = inode->i_size;
Dmitry Monakhova9e7f442009-12-14 15:21:14 +03004848#ifdef CONFIG_QUOTA
4849 ei->i_reserved_quota = 0;
4850#endif
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004851 inode->i_generation = le32_to_cpu(raw_inode->i_generation);
4852 ei->i_block_group = iloc.block_group;
Theodore Ts'oa4912122009-03-12 12:18:34 -04004853 ei->i_last_alloc_group = ~0;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004854 /*
4855 * NOTE! The in-memory inode i_data array is in little-endian order
4856 * even on big-endian machines: we do NOT byteswap the block numbers!
4857 */
Mingming Cao617ba132006-10-11 01:20:53 -07004858 for (block = 0; block < EXT4_N_BLOCKS; block++)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004859 ei->i_data[block] = raw_inode->i_block[block];
4860 INIT_LIST_HEAD(&ei->i_orphan);
Harshad Shirwadkaraa75f4d2020-10-15 13:37:57 -07004861 ext4_fc_init_inode(&ei->vfs_inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004862
Jan Karab436b9b2009-12-08 23:51:10 -05004863 /*
4864 * Set transaction id's of transactions that have to be committed
4865 * to finish f[data]sync. We set them to currently running transaction
4866 * as we cannot be sure that the inode or some of its metadata isn't
4867 * part of the transaction - the inode could have been reclaimed and
4868 * now it is reread from disk.
4869 */
4870 if (journal) {
4871 transaction_t *transaction;
4872 tid_t tid;
4873
Theodore Ts'oa931da62010-08-03 21:35:12 -04004874 read_lock(&journal->j_state_lock);
Jan Karab436b9b2009-12-08 23:51:10 -05004875 if (journal->j_running_transaction)
4876 transaction = journal->j_running_transaction;
4877 else
4878 transaction = journal->j_committing_transaction;
4879 if (transaction)
4880 tid = transaction->t_tid;
4881 else
4882 tid = journal->j_commit_sequence;
Theodore Ts'oa931da62010-08-03 21:35:12 -04004883 read_unlock(&journal->j_state_lock);
Jan Karab436b9b2009-12-08 23:51:10 -05004884 ei->i_sync_tid = tid;
4885 ei->i_datasync_tid = tid;
4886 }
4887
Eric Sandeen0040d982008-02-05 22:36:43 -05004888 if (EXT4_INODE_SIZE(inode->i_sb) > EXT4_GOOD_OLD_INODE_SIZE) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004889 if (ei->i_extra_isize == 0) {
4890 /* The extra space is currently unused. Use it. */
Eric Biggers2dc8d9e2016-12-01 14:43:33 -05004891 BUILD_BUG_ON(sizeof(struct ext4_inode) & 3);
Mingming Cao617ba132006-10-11 01:20:53 -07004892 ei->i_extra_isize = sizeof(struct ext4_inode) -
4893 EXT4_GOOD_OLD_INODE_SIZE;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004894 } else {
Theodore Ts'oeb9b5f02018-05-22 17:14:07 -04004895 ret = ext4_iget_extra_inode(inode, raw_inode, ei);
4896 if (ret)
4897 goto bad_inode;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004898 }
Darrick J. Wong814525f2012-04-29 18:31:10 -04004899 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004900
Kalpak Shahef7f3832007-07-18 09:15:20 -04004901 EXT4_INODE_GET_XTIME(i_ctime, inode, raw_inode);
4902 EXT4_INODE_GET_XTIME(i_mtime, inode, raw_inode);
4903 EXT4_INODE_GET_XTIME(i_atime, inode, raw_inode);
4904 EXT4_EINODE_GET_XTIME(i_crtime, ei, raw_inode);
4905
Theodore Ts'oed3654e2014-03-24 14:09:06 -04004906 if (likely(!test_opt2(inode->i_sb, HURD_COMPAT))) {
Jeff Laytonee73f9a2018-01-09 08:21:39 -05004907 u64 ivers = le32_to_cpu(raw_inode->i_disk_version);
4908
Theodore Ts'oc4f65702014-03-20 00:32:57 -04004909 if (EXT4_INODE_SIZE(inode->i_sb) > EXT4_GOOD_OLD_INODE_SIZE) {
4910 if (EXT4_FITS_IN_INODE(raw_inode, ei, i_version_hi))
Jeff Laytonee73f9a2018-01-09 08:21:39 -05004911 ivers |=
Theodore Ts'oc4f65702014-03-20 00:32:57 -04004912 (__u64)(le32_to_cpu(raw_inode->i_version_hi)) << 32;
4913 }
Eryu Guane254d1a2018-05-10 11:55:31 -04004914 ext4_inode_set_iversion_queried(inode, ivers);
Jean Noel Cordenner25ec56b2008-01-28 23:58:27 -05004915 }
4916
Theodore Ts'oc4b5a612009-04-24 18:45:35 -04004917 ret = 0;
Theodore Ts'o485c26e2009-04-24 13:43:20 -04004918 if (ei->i_file_acl &&
Jan Karace9f24c2020-07-28 15:04:34 +02004919 !ext4_inode_block_valid(inode, ei->i_file_acl, 1)) {
Theodore Ts'o8a363972018-12-19 12:29:13 -05004920 ext4_error_inode(inode, function, line, 0,
4921 "iget: bad extended attribute block %llu",
Theodore Ts'o24676da2010-05-16 21:00:00 -04004922 ei->i_file_acl);
Darrick J. Wong6a797d22015-10-17 16:16:04 -04004923 ret = -EFSCORRUPTED;
Theodore Ts'o485c26e2009-04-24 13:43:20 -04004924 goto bad_inode;
Tao Maf19d5872012-12-10 14:05:51 -05004925 } else if (!ext4_has_inline_data(inode)) {
Liu Songbc716522018-08-02 00:11:16 -04004926 /* validate the block references in the inode */
Harshad Shirwadkar8016e292020-10-15 13:37:59 -07004927 if (!(EXT4_SB(sb)->s_mount_state & EXT4_FC_REPLAY) &&
4928 (S_ISREG(inode->i_mode) || S_ISDIR(inode->i_mode) ||
4929 (S_ISLNK(inode->i_mode) &&
4930 !ext4_inode_is_fast_symlink(inode)))) {
Liu Songbc716522018-08-02 00:11:16 -04004931 if (ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS))
Tao Maf19d5872012-12-10 14:05:51 -05004932 ret = ext4_ext_check_inode(inode);
Liu Songbc716522018-08-02 00:11:16 -04004933 else
4934 ret = ext4_ind_check_inode(inode);
Tao Maf19d5872012-12-10 14:05:51 -05004935 }
Thiemo Nagelfe2c8192009-03-31 08:36:10 -04004936 }
Theodore Ts'o567f3e92009-11-14 08:19:05 -05004937 if (ret)
Theodore Ts'ode9a55b2009-06-14 17:45:34 -04004938 goto bad_inode;
Aneesh Kumar K.V7a262f72009-03-27 16:39:58 -04004939
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004940 if (S_ISREG(inode->i_mode)) {
Mingming Cao617ba132006-10-11 01:20:53 -07004941 inode->i_op = &ext4_file_inode_operations;
Boaz Harroshbe64f882015-04-15 16:15:17 -07004942 inode->i_fop = &ext4_file_operations;
Mingming Cao617ba132006-10-11 01:20:53 -07004943 ext4_set_aops(inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004944 } else if (S_ISDIR(inode->i_mode)) {
Mingming Cao617ba132006-10-11 01:20:53 -07004945 inode->i_op = &ext4_dir_inode_operations;
4946 inode->i_fop = &ext4_dir_operations;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004947 } else if (S_ISLNK(inode->i_mode)) {
Luis R. Rodriguez6390d332018-05-13 16:45:56 -04004948 /* VFS does not allow setting these so must be corruption */
4949 if (IS_APPEND(inode) || IS_IMMUTABLE(inode)) {
Theodore Ts'o8a363972018-12-19 12:29:13 -05004950 ext4_error_inode(inode, function, line, 0,
4951 "iget: immutable or append flags "
4952 "not allowed on symlinks");
Luis R. Rodriguez6390d332018-05-13 16:45:56 -04004953 ret = -EFSCORRUPTED;
4954 goto bad_inode;
4955 }
Chandan Rajendra592ddec2018-12-12 15:20:10 +05304956 if (IS_ENCRYPTED(inode)) {
Al Viroa7a67e82015-04-27 17:51:30 -04004957 inode->i_op = &ext4_encrypted_symlink_inode_operations;
4958 ext4_set_aops(inode);
4959 } else if (ext4_inode_is_fast_symlink(inode)) {
Al Viro75e75662015-05-02 10:13:58 -04004960 inode->i_link = (char *)ei->i_data;
Mingming Cao617ba132006-10-11 01:20:53 -07004961 inode->i_op = &ext4_fast_symlink_inode_operations;
Duane Griffine83c1392008-12-19 20:47:15 +00004962 nd_terminate_link(ei->i_data, inode->i_size,
4963 sizeof(ei->i_data) - 1);
4964 } else {
Mingming Cao617ba132006-10-11 01:20:53 -07004965 inode->i_op = &ext4_symlink_inode_operations;
4966 ext4_set_aops(inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004967 }
Al Viro21fc61c2015-11-17 01:07:57 -05004968 inode_nohighmem(inode);
Theodore Ts'o563bdd62009-03-26 00:06:19 -04004969 } else if (S_ISCHR(inode->i_mode) || S_ISBLK(inode->i_mode) ||
4970 S_ISFIFO(inode->i_mode) || S_ISSOCK(inode->i_mode)) {
Mingming Cao617ba132006-10-11 01:20:53 -07004971 inode->i_op = &ext4_special_inode_operations;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004972 if (raw_inode->i_block[0])
4973 init_special_inode(inode, inode->i_mode,
4974 old_decode_dev(le32_to_cpu(raw_inode->i_block[0])));
4975 else
4976 init_special_inode(inode, inode->i_mode,
4977 new_decode_dev(le32_to_cpu(raw_inode->i_block[1])));
Dr. Tilmann Bubeck393d1d12013-04-08 12:54:05 -04004978 } else if (ino == EXT4_BOOT_LOADER_INO) {
4979 make_bad_inode(inode);
Theodore Ts'o563bdd62009-03-26 00:06:19 -04004980 } else {
Darrick J. Wong6a797d22015-10-17 16:16:04 -04004981 ret = -EFSCORRUPTED;
Theodore Ts'o8a363972018-12-19 12:29:13 -05004982 ext4_error_inode(inode, function, line, 0,
4983 "iget: bogus i_mode (%o)", inode->i_mode);
Theodore Ts'o563bdd62009-03-26 00:06:19 -04004984 goto bad_inode;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004985 }
Theodore Ts'o6456ca62019-09-03 01:43:17 -04004986 if (IS_CASEFOLDED(inode) && !ext4_has_feature_casefold(inode->i_sb))
4987 ext4_error_inode(inode, function, line, 0,
4988 "casefold flag without casefold feature");
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04004989 brelse(iloc.bh);
Tahsin Erdogandec214d2017-06-22 11:44:55 -04004990
David Howells1d1fe1e2008-02-07 00:15:37 -08004991 unlock_new_inode(inode);
4992 return inode;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004993
4994bad_inode:
Theodore Ts'o567f3e92009-11-14 08:19:05 -05004995 brelse(iloc.bh);
David Howells1d1fe1e2008-02-07 00:15:37 -08004996 iget_failed(inode);
4997 return ERR_PTR(ret);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004998}
4999
David Howells3f19b2a2017-12-01 11:40:16 +00005000static void __ext4_update_other_inode_time(struct super_block *sb,
5001 unsigned long orig_ino,
5002 unsigned long ino,
5003 struct ext4_inode *raw_inode)
Theodore Ts'oa26f4992015-02-02 00:37:02 -05005004{
David Howells3f19b2a2017-12-01 11:40:16 +00005005 struct inode *inode;
Theodore Ts'oa26f4992015-02-02 00:37:02 -05005006
David Howells3f19b2a2017-12-01 11:40:16 +00005007 inode = find_inode_by_ino_rcu(sb, ino);
5008 if (!inode)
5009 return;
5010
Eric Biggersed296c62021-01-12 11:02:53 -08005011 if (!inode_is_dirtytime_only(inode))
David Howells3f19b2a2017-12-01 11:40:16 +00005012 return;
5013
Theodore Ts'oa26f4992015-02-02 00:37:02 -05005014 spin_lock(&inode->i_lock);
Eric Biggersed296c62021-01-12 11:02:53 -08005015 if (inode_is_dirtytime_only(inode)) {
Theodore Ts'oa26f4992015-02-02 00:37:02 -05005016 struct ext4_inode_info *ei = EXT4_I(inode);
5017
Jan Kara5fcd5752020-05-29 16:24:43 +02005018 inode->i_state &= ~I_DIRTY_TIME;
Theodore Ts'oa26f4992015-02-02 00:37:02 -05005019 spin_unlock(&inode->i_lock);
5020
5021 spin_lock(&ei->i_raw_lock);
David Howells3f19b2a2017-12-01 11:40:16 +00005022 EXT4_INODE_SET_XTIME(i_ctime, inode, raw_inode);
5023 EXT4_INODE_SET_XTIME(i_mtime, inode, raw_inode);
5024 EXT4_INODE_SET_XTIME(i_atime, inode, raw_inode);
5025 ext4_inode_csum_set(inode, raw_inode, ei);
Theodore Ts'oa26f4992015-02-02 00:37:02 -05005026 spin_unlock(&ei->i_raw_lock);
David Howells3f19b2a2017-12-01 11:40:16 +00005027 trace_ext4_other_inode_update_time(inode, orig_ino);
5028 return;
Theodore Ts'oa26f4992015-02-02 00:37:02 -05005029 }
5030 spin_unlock(&inode->i_lock);
Theodore Ts'oa26f4992015-02-02 00:37:02 -05005031}
5032
5033/*
5034 * Opportunistically update the other time fields for other inodes in
5035 * the same inode table block.
5036 */
5037static void ext4_update_other_inodes_time(struct super_block *sb,
5038 unsigned long orig_ino, char *buf)
5039{
Theodore Ts'oa26f4992015-02-02 00:37:02 -05005040 unsigned long ino;
5041 int i, inodes_per_block = EXT4_SB(sb)->s_inodes_per_block;
5042 int inode_size = EXT4_INODE_SIZE(sb);
5043
Theodore Ts'o0f0ff9a2015-07-01 23:37:46 -04005044 /*
5045 * Calculate the first inode in the inode table block. Inode
5046 * numbers are one-based. That is, the first inode in a block
5047 * (assuming 4k blocks and 256 byte inodes) is (n*16 + 1).
5048 */
5049 ino = ((orig_ino - 1) & ~(inodes_per_block - 1)) + 1;
David Howells3f19b2a2017-12-01 11:40:16 +00005050 rcu_read_lock();
Theodore Ts'oa26f4992015-02-02 00:37:02 -05005051 for (i = 0; i < inodes_per_block; i++, ino++, buf += inode_size) {
5052 if (ino == orig_ino)
5053 continue;
David Howells3f19b2a2017-12-01 11:40:16 +00005054 __ext4_update_other_inode_time(sb, orig_ino, ino,
5055 (struct ext4_inode *)buf);
Theodore Ts'oa26f4992015-02-02 00:37:02 -05005056 }
David Howells3f19b2a2017-12-01 11:40:16 +00005057 rcu_read_unlock();
Theodore Ts'oa26f4992015-02-02 00:37:02 -05005058}
5059
Zhang Yi664bd382021-09-01 10:09:53 +08005060/*
5061 * Post the struct inode info into an on-disk inode location in the
5062 * buffer-cache. This gobbles the caller's reference to the
5063 * buffer_head in the inode location struct.
5064 *
5065 * The caller must have write access to iloc->bh.
5066 */
5067static int ext4_do_update_inode(handle_t *handle,
5068 struct inode *inode,
5069 struct ext4_iloc *iloc)
5070{
5071 struct ext4_inode *raw_inode = ext4_raw_inode(iloc);
5072 struct ext4_inode_info *ei = EXT4_I(inode);
5073 struct buffer_head *bh = iloc->bh;
5074 struct super_block *sb = inode->i_sb;
5075 int err;
5076 int need_datasync = 0, set_large_file = 0;
5077
5078 spin_lock(&ei->i_raw_lock);
5079
5080 /*
5081 * For fields not tracked in the in-memory inode, initialise them
5082 * to zero for new inodes.
5083 */
5084 if (ext4_test_inode_state(inode, EXT4_STATE_NEW))
5085 memset(raw_inode, 0, EXT4_SB(inode->i_sb)->s_inode_size);
5086
5087 if (READ_ONCE(ei->i_disksize) != ext4_isize(inode->i_sb, raw_inode))
5088 need_datasync = 1;
5089 if (ei->i_disksize > 0x7fffffffULL) {
5090 if (!ext4_has_feature_large_file(sb) ||
5091 EXT4_SB(sb)->s_es->s_rev_level == cpu_to_le32(EXT4_GOOD_OLD_REV))
5092 set_large_file = 1;
5093 }
5094
5095 err = ext4_fill_raw_inode(inode, raw_inode);
Theodore Ts'o202ee5d2014-04-21 14:37:55 -04005096 spin_unlock(&ei->i_raw_lock);
Zhang Yibaaae9792021-08-26 21:04:09 +08005097 if (err) {
5098 EXT4_ERROR_INODE(inode, "corrupted inode contents");
5099 goto out_brelse;
5100 }
5101
Linus Torvalds1751e8a2017-11-27 13:05:09 -08005102 if (inode->i_sb->s_flags & SB_LAZYTIME)
Theodore Ts'oa26f4992015-02-02 00:37:02 -05005103 ext4_update_other_inodes_time(inode->i_sb, inode->i_ino,
5104 bh->b_data);
Theodore Ts'o202ee5d2014-04-21 14:37:55 -04005105
Frank Mayhar830156c2009-09-29 10:07:47 -04005106 BUFFER_TRACE(bh, "call ext4_handle_dirty_metadata");
Shijie Luo7d8bd3c2021-03-12 01:50:51 -05005107 err = ext4_handle_dirty_metadata(handle, NULL, bh);
5108 if (err)
Zhang Yibaaae9792021-08-26 21:04:09 +08005109 goto out_error;
Theodore Ts'o19f5fb72010-01-24 14:34:07 -05005110 ext4_clear_inode_state(inode, EXT4_STATE_NEW);
Theodore Ts'o202ee5d2014-04-21 14:37:55 -04005111 if (set_large_file) {
liang xie5d601252014-05-12 22:06:43 -04005112 BUFFER_TRACE(EXT4_SB(sb)->s_sbh, "get write access");
Jan Kara188c2992021-08-16 11:57:04 +02005113 err = ext4_journal_get_write_access(handle, sb,
5114 EXT4_SB(sb)->s_sbh,
5115 EXT4_JTR_NONE);
Theodore Ts'o202ee5d2014-04-21 14:37:55 -04005116 if (err)
Zhang Yibaaae9792021-08-26 21:04:09 +08005117 goto out_error;
Jan Kara05c2c002020-12-16 11:18:39 +01005118 lock_buffer(EXT4_SB(sb)->s_sbh);
Darrick J. Wonge2b911c2015-10-17 16:18:43 -04005119 ext4_set_feature_large_file(sb);
Jan Kara05c2c002020-12-16 11:18:39 +01005120 ext4_superblock_csum_set(sb);
5121 unlock_buffer(EXT4_SB(sb)->s_sbh);
Theodore Ts'o202ee5d2014-04-21 14:37:55 -04005122 ext4_handle_sync(handle);
Jan Karaa3f5cf12020-12-16 11:18:44 +01005123 err = ext4_handle_dirty_metadata(handle, NULL,
5124 EXT4_SB(sb)->s_sbh);
Theodore Ts'o202ee5d2014-04-21 14:37:55 -04005125 }
Jan Karab71fc072012-09-26 21:52:20 -04005126 ext4_update_inode_fsync_trans(handle, inode, need_datasync);
Zhang Yibaaae9792021-08-26 21:04:09 +08005127out_error:
5128 ext4_std_error(inode->i_sb, err);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005129out_brelse:
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04005130 brelse(bh);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005131 return err;
5132}
5133
5134/*
Mingming Cao617ba132006-10-11 01:20:53 -07005135 * ext4_write_inode()
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005136 *
5137 * We are called from a few places:
5138 *
Theodore Ts'o87f7e412014-04-08 11:38:28 -04005139 * - Within generic_file_aio_write() -> generic_write_sync() for O_SYNC files.
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005140 * Here, there will be no transaction running. We wait for any running
Anatol Pomozov4907cb72012-09-01 10:31:09 -07005141 * transaction to commit.
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005142 *
Theodore Ts'o87f7e412014-04-08 11:38:28 -04005143 * - Within flush work (sys_sync(), kupdate and such).
5144 * We wait on commit, if told to.
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005145 *
Theodore Ts'o87f7e412014-04-08 11:38:28 -04005146 * - Within iput_final() -> write_inode_now()
5147 * We wait on commit, if told to.
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005148 *
5149 * In all cases it is actually safe for us to return without doing anything,
5150 * because the inode has been copied into a raw inode buffer in
Theodore Ts'o87f7e412014-04-08 11:38:28 -04005151 * ext4_mark_inode_dirty(). This is a correctness thing for WB_SYNC_ALL
5152 * writeback.
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005153 *
5154 * Note that we are absolutely dependent upon all inode dirtiers doing the
5155 * right thing: they *must* call mark_inode_dirty() after dirtying info in
5156 * which we are interested.
5157 *
5158 * It would be a bug for them to not do this. The code:
5159 *
5160 * mark_inode_dirty(inode)
5161 * stuff();
5162 * inode->i_size = expr;
5163 *
Theodore Ts'o87f7e412014-04-08 11:38:28 -04005164 * is in error because write_inode() could occur while `stuff()' is running,
5165 * and the new i_size will be lost. Plus the inode will no longer be on the
5166 * superblock's dirty inode list.
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005167 */
Christoph Hellwiga9185b42010-03-05 09:21:37 +01005168int ext4_write_inode(struct inode *inode, struct writeback_control *wbc)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005169{
Frank Mayhar91ac6f42009-09-09 22:33:47 -04005170 int err;
5171
Theodore Ts'o18f2c4f2018-12-19 14:36:58 -05005172 if (WARN_ON_ONCE(current->flags & PF_MEMALLOC) ||
5173 sb_rdonly(inode->i_sb))
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005174 return 0;
5175
Theodore Ts'o18f2c4f2018-12-19 14:36:58 -05005176 if (unlikely(ext4_forced_shutdown(EXT4_SB(inode->i_sb))))
5177 return -EIO;
5178
Frank Mayhar91ac6f42009-09-09 22:33:47 -04005179 if (EXT4_SB(inode->i_sb)->s_journal) {
5180 if (ext4_journal_current_handle()) {
5181 jbd_debug(1, "called recursively, non-PF_MEMALLOC!\n");
5182 dump_stack();
5183 return -EIO;
5184 }
5185
Jan Kara10542c22014-03-04 10:50:50 -05005186 /*
5187 * No need to force transaction in WB_SYNC_NONE mode. Also
5188 * ext4_sync_fs() will force the commit after everything is
5189 * written.
5190 */
5191 if (wbc->sync_mode != WB_SYNC_ALL || wbc->for_sync)
Frank Mayhar91ac6f42009-09-09 22:33:47 -04005192 return 0;
5193
Harshad Shirwadkaraa75f4d2020-10-15 13:37:57 -07005194 err = ext4_fc_commit(EXT4_SB(inode->i_sb)->s_journal,
Theodore Ts'o18f2c4f2018-12-19 14:36:58 -05005195 EXT4_I(inode)->i_sync_tid);
Frank Mayhar91ac6f42009-09-09 22:33:47 -04005196 } else {
5197 struct ext4_iloc iloc;
5198
Harshad Shirwadkar8016e292020-10-15 13:37:59 -07005199 err = __ext4_get_inode_loc_noinmem(inode, &iloc);
Frank Mayhar91ac6f42009-09-09 22:33:47 -04005200 if (err)
5201 return err;
Jan Kara10542c22014-03-04 10:50:50 -05005202 /*
5203 * sync(2) will flush the whole buffer cache. No need to do
5204 * it here separately for each inode.
5205 */
5206 if (wbc->sync_mode == WB_SYNC_ALL && !wbc->for_sync)
Frank Mayhar830156c2009-09-29 10:07:47 -04005207 sync_dirty_buffer(iloc.bh);
5208 if (buffer_req(iloc.bh) && !buffer_uptodate(iloc.bh)) {
Theodore Ts'o54d3adb2020-03-28 19:33:43 -04005209 ext4_error_inode_block(inode, iloc.bh->b_blocknr, EIO,
5210 "IO error syncing inode");
Frank Mayhar830156c2009-09-29 10:07:47 -04005211 err = -EIO;
5212 }
Curt Wohlgemuthfd2dd9f2010-04-03 17:44:16 -04005213 brelse(iloc.bh);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005214 }
Frank Mayhar91ac6f42009-09-09 22:33:47 -04005215 return err;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005216}
5217
5218/*
Jan Kara53e87262012-12-25 13:29:52 -05005219 * In data=journal mode ext4_journalled_invalidatepage() may fail to invalidate
5220 * buffers that are attached to a page stradding i_size and are undergoing
5221 * commit. In that case we have to wait for commit to finish and try again.
5222 */
5223static void ext4_wait_for_tail_page_commit(struct inode *inode)
5224{
5225 struct page *page;
5226 unsigned offset;
5227 journal_t *journal = EXT4_SB(inode->i_sb)->s_journal;
5228 tid_t commit_tid = 0;
5229 int ret;
5230
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005231 offset = inode->i_size & (PAGE_SIZE - 1);
Jan Kara53e87262012-12-25 13:29:52 -05005232 /*
yangerkun565333a2019-09-19 14:35:08 +08005233 * If the page is fully truncated, we don't need to wait for any commit
5234 * (and we even should not as __ext4_journalled_invalidatepage() may
5235 * strip all buffers from the page but keep the page dirty which can then
5236 * confuse e.g. concurrent ext4_writepage() seeing dirty page without
5237 * buffers). Also we don't need to wait for any commit if all buffers in
5238 * the page remain valid. This is most beneficial for the common case of
5239 * blocksize == PAGESIZE.
Jan Kara53e87262012-12-25 13:29:52 -05005240 */
yangerkun565333a2019-09-19 14:35:08 +08005241 if (!offset || offset > (PAGE_SIZE - i_blocksize(inode)))
Jan Kara53e87262012-12-25 13:29:52 -05005242 return;
5243 while (1) {
5244 page = find_lock_page(inode->i_mapping,
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005245 inode->i_size >> PAGE_SHIFT);
Jan Kara53e87262012-12-25 13:29:52 -05005246 if (!page)
5247 return;
Lukas Czernerca99fdd2013-05-21 23:25:01 -04005248 ret = __ext4_journalled_invalidatepage(page, offset,
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005249 PAGE_SIZE - offset);
Jan Kara53e87262012-12-25 13:29:52 -05005250 unlock_page(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005251 put_page(page);
Jan Kara53e87262012-12-25 13:29:52 -05005252 if (ret != -EBUSY)
5253 return;
5254 commit_tid = 0;
5255 read_lock(&journal->j_state_lock);
5256 if (journal->j_committing_transaction)
5257 commit_tid = journal->j_committing_transaction->t_tid;
5258 read_unlock(&journal->j_state_lock);
5259 if (commit_tid)
5260 jbd2_log_wait_commit(journal, commit_tid);
5261 }
5262}
5263
5264/*
Mingming Cao617ba132006-10-11 01:20:53 -07005265 * ext4_setattr()
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005266 *
5267 * Called from notify_change.
5268 *
5269 * We want to trap VFS attempts to truncate the file as soon as
5270 * possible. In particular, we want to make sure that when the VFS
5271 * shrinks i_size, we put the inode on the orphan list and modify
5272 * i_disksize immediately, so that during the subsequent flushing of
5273 * dirty pages and freeing of disk blocks, we can guarantee that any
5274 * commit will leave the blocks being flushed in an unused state on
5275 * disk. (On recovery, the inode will get truncated and the blocks will
5276 * be freed, so we have a strong guarantee that no future commit will
5277 * leave these blocks visible to the user.)
5278 *
Jan Kara678aaf42008-07-11 19:27:31 -04005279 * Another thing we have to assure is that if we are in ordered mode
5280 * and inode is still attached to the committing transaction, we must
5281 * we start writeout of all the dirty pages which are being truncated.
5282 * This way we are sure that all the data written in the previous
5283 * transaction are already on disk (truncate waits for pages under
5284 * writeback).
5285 *
5286 * Called with inode->i_mutex down.
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005287 */
Christian Brauner549c7292021-01-21 14:19:43 +01005288int ext4_setattr(struct user_namespace *mnt_userns, struct dentry *dentry,
5289 struct iattr *attr)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005290{
David Howells2b0143b2015-03-17 22:25:59 +00005291 struct inode *inode = d_inode(dentry);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005292 int error, rc = 0;
Dmitry Monakhov3d287de2010-10-27 22:08:46 -04005293 int orphan = 0;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005294 const unsigned int ia_valid = attr->ia_valid;
5295
Theodore Ts'o0db1ff22017-02-05 01:28:48 -05005296 if (unlikely(ext4_forced_shutdown(EXT4_SB(inode->i_sb))))
5297 return -EIO;
5298
Theodore Ts'o02b016c2019-06-09 22:04:33 -04005299 if (unlikely(IS_IMMUTABLE(inode)))
5300 return -EPERM;
5301
5302 if (unlikely(IS_APPEND(inode) &&
5303 (ia_valid & (ATTR_MODE | ATTR_UID |
5304 ATTR_GID | ATTR_TIMES_SET))))
5305 return -EPERM;
5306
Christian Brauner14f3db52021-01-21 14:19:57 +01005307 error = setattr_prepare(mnt_userns, dentry, attr);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005308 if (error)
5309 return error;
5310
Eric Biggers3ce2b8d2017-10-18 20:21:58 -04005311 error = fscrypt_prepare_setattr(dentry, attr);
5312 if (error)
5313 return error;
5314
Eric Biggersc93d8f82019-07-22 09:26:24 -07005315 error = fsverity_prepare_setattr(dentry, attr);
5316 if (error)
5317 return error;
5318
Jan Karaa7cdade2015-06-29 16:22:54 +02005319 if (is_quota_modification(inode, attr)) {
5320 error = dquot_initialize(inode);
5321 if (error)
5322 return error;
5323 }
Harshad Shirwadkar2729cfd2021-12-23 12:21:37 -08005324
Eric W. Biederman08cefc72012-02-07 15:41:49 -08005325 if ((ia_valid & ATTR_UID && !uid_eq(attr->ia_uid, inode->i_uid)) ||
5326 (ia_valid & ATTR_GID && !gid_eq(attr->ia_gid, inode->i_gid))) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005327 handle_t *handle;
5328
5329 /* (user+group)*(old+new) structure, inode write (sb,
5330 * inode block, ? - but truncate inode update has it) */
Theodore Ts'o9924a922013-02-08 21:59:22 -05005331 handle = ext4_journal_start(inode, EXT4_HT_QUOTA,
5332 (EXT4_MAXQUOTAS_INIT_BLOCKS(inode->i_sb) +
5333 EXT4_MAXQUOTAS_DEL_BLOCKS(inode->i_sb)) + 3);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005334 if (IS_ERR(handle)) {
5335 error = PTR_ERR(handle);
5336 goto err_out;
5337 }
Tahsin Erdogan7a9ca532017-06-22 11:46:48 -04005338
5339 /* dquot_transfer() calls back ext4_get_inode_usage() which
5340 * counts xattr inode references.
5341 */
5342 down_read(&EXT4_I(inode)->xattr_sem);
Christoph Hellwigb43fa822010-03-03 09:05:03 -05005343 error = dquot_transfer(inode, attr);
Tahsin Erdogan7a9ca532017-06-22 11:46:48 -04005344 up_read(&EXT4_I(inode)->xattr_sem);
5345
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005346 if (error) {
Mingming Cao617ba132006-10-11 01:20:53 -07005347 ext4_journal_stop(handle);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005348 return error;
5349 }
5350 /* Update corresponding info in inode so that everything is in
5351 * one transaction */
5352 if (attr->ia_valid & ATTR_UID)
5353 inode->i_uid = attr->ia_uid;
5354 if (attr->ia_valid & ATTR_GID)
5355 inode->i_gid = attr->ia_gid;
Mingming Cao617ba132006-10-11 01:20:53 -07005356 error = ext4_mark_inode_dirty(handle, inode);
5357 ext4_journal_stop(handle);
Pan Bian512c15e2021-01-17 00:57:32 -08005358 if (unlikely(error)) {
Harshad Shirwadkar4209ae12020-04-26 18:34:37 -07005359 return error;
Pan Bian512c15e2021-01-17 00:57:32 -08005360 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005361 }
5362
Josef Bacik3da40c72015-06-22 00:31:26 -04005363 if (attr->ia_valid & ATTR_SIZE) {
Jan Kara52083862013-08-17 10:07:17 -04005364 handle_t *handle;
Josef Bacik3da40c72015-06-22 00:31:26 -04005365 loff_t oldsize = inode->i_size;
Jan Karab9c1c262019-05-30 11:56:23 -04005366 int shrink = (attr->ia_size < inode->i_size);
Christoph Hellwig562c72aa52011-06-24 14:29:45 -04005367
Dmitry Monakhov12e9b892010-05-16 22:00:00 -04005368 if (!(ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS))) {
Eric Sandeene2b46572008-01-28 23:58:27 -05005369 struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb);
5370
Harshad Shirwadkaraa75f4d2020-10-15 13:37:57 -07005371 if (attr->ia_size > sbi->s_bitmap_maxbytes) {
Theodore Ts'o0c095c72010-07-27 11:56:06 -04005372 return -EFBIG;
Harshad Shirwadkaraa75f4d2020-10-15 13:37:57 -07005373 }
Eric Sandeene2b46572008-01-28 23:58:27 -05005374 }
Harshad Shirwadkaraa75f4d2020-10-15 13:37:57 -07005375 if (!S_ISREG(inode->i_mode)) {
Josef Bacik3da40c72015-06-22 00:31:26 -04005376 return -EINVAL;
Harshad Shirwadkaraa75f4d2020-10-15 13:37:57 -07005377 }
Christoph Hellwigdff6efc2013-11-19 07:17:07 -08005378
5379 if (IS_I_VERSION(inode) && attr->ia_size != inode->i_size)
5380 inode_inc_iversion(inode);
5381
Jan Karab9c1c262019-05-30 11:56:23 -04005382 if (shrink) {
5383 if (ext4_should_order_data(inode)) {
5384 error = ext4_begin_ordered_truncate(inode,
Jan Kara678aaf42008-07-11 19:27:31 -04005385 attr->ia_size);
Jan Karab9c1c262019-05-30 11:56:23 -04005386 if (error)
5387 goto err_out;
5388 }
5389 /*
5390 * Blocks are going to be removed from the inode. Wait
5391 * for dio in flight.
5392 */
5393 inode_dio_wait(inode);
Josef Bacik3da40c72015-06-22 00:31:26 -04005394 }
Jan Karab9c1c262019-05-30 11:56:23 -04005395
Jan Karad4f52582021-02-04 18:05:42 +01005396 filemap_invalidate_lock(inode->i_mapping);
Jan Karab9c1c262019-05-30 11:56:23 -04005397
5398 rc = ext4_break_layouts(inode);
5399 if (rc) {
Jan Karad4f52582021-02-04 18:05:42 +01005400 filemap_invalidate_unlock(inode->i_mapping);
Harshad Shirwadkaraa75f4d2020-10-15 13:37:57 -07005401 goto err_out;
Jan Karab9c1c262019-05-30 11:56:23 -04005402 }
5403
Josef Bacik3da40c72015-06-22 00:31:26 -04005404 if (attr->ia_size != inode->i_size) {
Jan Kara52083862013-08-17 10:07:17 -04005405 handle = ext4_journal_start(inode, EXT4_HT_INODE, 3);
5406 if (IS_ERR(handle)) {
5407 error = PTR_ERR(handle);
Jan Karab9c1c262019-05-30 11:56:23 -04005408 goto out_mmap_sem;
Jan Kara52083862013-08-17 10:07:17 -04005409 }
Josef Bacik3da40c72015-06-22 00:31:26 -04005410 if (ext4_handle_valid(handle) && shrink) {
Jan Kara52083862013-08-17 10:07:17 -04005411 error = ext4_orphan_add(handle, inode);
5412 orphan = 1;
5413 }
Eryu Guan911af572015-07-28 15:08:41 -04005414 /*
5415 * Update c/mtime on truncate up, ext4_truncate() will
5416 * update c/mtime in shrink case below
5417 */
5418 if (!shrink) {
Deepa Dinamanieeca7ea2016-11-14 21:40:10 -05005419 inode->i_mtime = current_time(inode);
Eryu Guan911af572015-07-28 15:08:41 -04005420 inode->i_ctime = inode->i_mtime;
5421 }
Harshad Shirwadkaraa75f4d2020-10-15 13:37:57 -07005422
5423 if (shrink)
Harshad Shirwadkara80f7fc2020-11-05 19:58:53 -08005424 ext4_fc_track_range(handle, inode,
Harshad Shirwadkaraa75f4d2020-10-15 13:37:57 -07005425 (attr->ia_size > 0 ? attr->ia_size - 1 : 0) >>
5426 inode->i_sb->s_blocksize_bits,
Xin Yin97259582021-12-23 11:23:37 +08005427 EXT_MAX_BLOCKS - 1);
Harshad Shirwadkaraa75f4d2020-10-15 13:37:57 -07005428 else
5429 ext4_fc_track_range(
Harshad Shirwadkara80f7fc2020-11-05 19:58:53 -08005430 handle, inode,
Harshad Shirwadkaraa75f4d2020-10-15 13:37:57 -07005431 (oldsize > 0 ? oldsize - 1 : oldsize) >>
5432 inode->i_sb->s_blocksize_bits,
5433 (attr->ia_size > 0 ? attr->ia_size - 1 : 0) >>
5434 inode->i_sb->s_blocksize_bits);
5435
Jan Kara90e775b2013-08-17 10:09:31 -04005436 down_write(&EXT4_I(inode)->i_data_sem);
Jan Kara52083862013-08-17 10:07:17 -04005437 EXT4_I(inode)->i_disksize = attr->ia_size;
5438 rc = ext4_mark_inode_dirty(handle, inode);
5439 if (!error)
5440 error = rc;
Jan Kara90e775b2013-08-17 10:09:31 -04005441 /*
5442 * We have to update i_size under i_data_sem together
5443 * with i_disksize to avoid races with writeback code
5444 * running ext4_wb_update_i_disksize().
5445 */
5446 if (!error)
5447 i_size_write(inode, attr->ia_size);
5448 up_write(&EXT4_I(inode)->i_data_sem);
Jan Kara52083862013-08-17 10:07:17 -04005449 ext4_journal_stop(handle);
Jan Karab9c1c262019-05-30 11:56:23 -04005450 if (error)
5451 goto out_mmap_sem;
5452 if (!shrink) {
5453 pagecache_isize_extended(inode, oldsize,
5454 inode->i_size);
5455 } else if (ext4_should_journal_data(inode)) {
5456 ext4_wait_for_tail_page_commit(inode);
Jan Kara678aaf42008-07-11 19:27:31 -04005457 }
Jan Karad6320cb2014-10-01 21:49:46 -04005458 }
Ross Zwisler430657b2018-07-29 17:00:22 -04005459
Jan Kara52083862013-08-17 10:07:17 -04005460 /*
5461 * Truncate pagecache after we've waited for commit
5462 * in data=journal mode to make pages freeable.
5463 */
Ross Zwisler923ae0f2015-02-16 15:59:38 -08005464 truncate_pagecache(inode, inode->i_size);
Jan Karab9c1c262019-05-30 11:56:23 -04005465 /*
5466 * Call ext4_truncate() even if i_size didn't change to
5467 * truncate possible preallocated blocks.
5468 */
5469 if (attr->ia_size <= oldsize) {
Theodore Ts'o2c98eb52016-11-13 22:02:26 -05005470 rc = ext4_truncate(inode);
5471 if (rc)
5472 error = rc;
5473 }
Jan Karab9c1c262019-05-30 11:56:23 -04005474out_mmap_sem:
Jan Karad4f52582021-02-04 18:05:42 +01005475 filemap_invalidate_unlock(inode->i_mapping);
Theodore Ts'o072bd7e2011-05-23 15:13:02 -04005476 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005477
Theodore Ts'o2c98eb52016-11-13 22:02:26 -05005478 if (!error) {
Christian Brauner14f3db52021-01-21 14:19:57 +01005479 setattr_copy(mnt_userns, inode, attr);
Christoph Hellwig10257742010-06-04 11:30:02 +02005480 mark_inode_dirty(inode);
5481 }
5482
5483 /*
5484 * If the call to ext4_truncate failed to get a transaction handle at
5485 * all, we need to clean up the in-core orphan list manually.
5486 */
Dmitry Monakhov3d287de2010-10-27 22:08:46 -04005487 if (orphan && inode->i_nlink)
Mingming Cao617ba132006-10-11 01:20:53 -07005488 ext4_orphan_del(NULL, inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005489
Theodore Ts'o2c98eb52016-11-13 22:02:26 -05005490 if (!error && (ia_valid & ATTR_MODE))
Christian Brauner14f3db52021-01-21 14:19:57 +01005491 rc = posix_acl_chmod(mnt_userns, inode, inode->i_mode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005492
5493err_out:
Harshad Shirwadkaraa75f4d2020-10-15 13:37:57 -07005494 if (error)
5495 ext4_std_error(inode->i_sb, error);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005496 if (!error)
5497 error = rc;
5498 return error;
5499}
5500
Christian Brauner549c7292021-01-21 14:19:43 +01005501int ext4_getattr(struct user_namespace *mnt_userns, const struct path *path,
5502 struct kstat *stat, u32 request_mask, unsigned int query_flags)
Mingming Cao3e3398a2008-07-11 19:27:31 -04005503{
David Howells99652ea2017-03-31 18:31:56 +01005504 struct inode *inode = d_inode(path->dentry);
5505 struct ext4_inode *raw_inode;
5506 struct ext4_inode_info *ei = EXT4_I(inode);
5507 unsigned int flags;
Mingming Cao3e3398a2008-07-11 19:27:31 -04005508
Theodore Ts'od4c5e962019-11-28 22:26:51 -05005509 if ((request_mask & STATX_BTIME) &&
5510 EXT4_FITS_IN_INODE(raw_inode, ei, i_crtime)) {
David Howells99652ea2017-03-31 18:31:56 +01005511 stat->result_mask |= STATX_BTIME;
5512 stat->btime.tv_sec = ei->i_crtime.tv_sec;
5513 stat->btime.tv_nsec = ei->i_crtime.tv_nsec;
5514 }
5515
5516 flags = ei->i_flags & EXT4_FL_USER_VISIBLE;
5517 if (flags & EXT4_APPEND_FL)
5518 stat->attributes |= STATX_ATTR_APPEND;
5519 if (flags & EXT4_COMPR_FL)
5520 stat->attributes |= STATX_ATTR_COMPRESSED;
5521 if (flags & EXT4_ENCRYPT_FL)
5522 stat->attributes |= STATX_ATTR_ENCRYPTED;
5523 if (flags & EXT4_IMMUTABLE_FL)
5524 stat->attributes |= STATX_ATTR_IMMUTABLE;
5525 if (flags & EXT4_NODUMP_FL)
5526 stat->attributes |= STATX_ATTR_NODUMP;
Eric Biggers1f607192019-10-29 13:41:39 -07005527 if (flags & EXT4_VERITY_FL)
5528 stat->attributes |= STATX_ATTR_VERITY;
David Howells99652ea2017-03-31 18:31:56 +01005529
David Howells3209f682017-03-31 18:32:17 +01005530 stat->attributes_mask |= (STATX_ATTR_APPEND |
5531 STATX_ATTR_COMPRESSED |
5532 STATX_ATTR_ENCRYPTED |
5533 STATX_ATTR_IMMUTABLE |
Eric Biggers1f607192019-10-29 13:41:39 -07005534 STATX_ATTR_NODUMP |
5535 STATX_ATTR_VERITY);
David Howells3209f682017-03-31 18:32:17 +01005536
Christian Brauner14f3db52021-01-21 14:19:57 +01005537 generic_fillattr(mnt_userns, inode, stat);
David Howells99652ea2017-03-31 18:31:56 +01005538 return 0;
5539}
5540
Christian Brauner549c7292021-01-21 14:19:43 +01005541int ext4_file_getattr(struct user_namespace *mnt_userns,
5542 const struct path *path, struct kstat *stat,
David Howells99652ea2017-03-31 18:31:56 +01005543 u32 request_mask, unsigned int query_flags)
5544{
5545 struct inode *inode = d_inode(path->dentry);
5546 u64 delalloc_blocks;
5547
Christian Brauner14f3db52021-01-21 14:19:57 +01005548 ext4_getattr(mnt_userns, path, stat, request_mask, query_flags);
Mingming Cao3e3398a2008-07-11 19:27:31 -04005549
5550 /*
Andreas Dilger9206c562013-11-11 22:38:12 -05005551 * If there is inline data in the inode, the inode will normally not
5552 * have data blocks allocated (it may have an external xattr block).
5553 * Report at least one sector for such files, so tools like tar, rsync,
Theodore Ts'od67d64f2017-03-25 17:33:31 -04005554 * others don't incorrectly think the file is completely sparse.
Andreas Dilger9206c562013-11-11 22:38:12 -05005555 */
5556 if (unlikely(ext4_has_inline_data(inode)))
5557 stat->blocks += (stat->size + 511) >> 9;
5558
5559 /*
Mingming Cao3e3398a2008-07-11 19:27:31 -04005560 * We can't update i_blocks if the block allocation is delayed
5561 * otherwise in the case of system crash before the real block
5562 * allocation is done, we will have i_blocks inconsistent with
5563 * on-disk file blocks.
5564 * We always keep i_blocks updated together with real
5565 * allocation. But to not confuse with user, stat
5566 * will return the blocks that include the delayed allocation
5567 * blocks for this file.
5568 */
Tao Ma96607552012-05-31 22:54:16 -04005569 delalloc_blocks = EXT4_C2B(EXT4_SB(inode->i_sb),
Andreas Dilger9206c562013-11-11 22:38:12 -05005570 EXT4_I(inode)->i_reserved_data_blocks);
5571 stat->blocks += delalloc_blocks << (inode->i_sb->s_blocksize_bits - 9);
Mingming Cao3e3398a2008-07-11 19:27:31 -04005572 return 0;
5573}
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005574
Jan Karafffb2732013-06-04 13:01:11 -04005575static int ext4_index_trans_blocks(struct inode *inode, int lblocks,
5576 int pextents)
Mingming Caoa02908f2008-08-19 22:16:07 -04005577{
Dmitry Monakhov12e9b892010-05-16 22:00:00 -04005578 if (!(ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS)))
Jan Karafffb2732013-06-04 13:01:11 -04005579 return ext4_ind_trans_blocks(inode, lblocks);
5580 return ext4_ext_index_trans_blocks(inode, pextents);
Mingming Caoa02908f2008-08-19 22:16:07 -04005581}
Theodore Ts'oac51d832008-11-06 16:49:36 -05005582
Mingming Caoa02908f2008-08-19 22:16:07 -04005583/*
5584 * Account for index blocks, block groups bitmaps and block group
5585 * descriptor blocks if modify datablocks and index blocks
5586 * worse case, the indexs blocks spread over different block groups
5587 *
5588 * If datablocks are discontiguous, they are possible to spread over
Anatol Pomozov4907cb72012-09-01 10:31:09 -07005589 * different block groups too. If they are contiguous, with flexbg,
Mingming Caoa02908f2008-08-19 22:16:07 -04005590 * they could still across block group boundary.
5591 *
5592 * Also account for superblock, inode, quota and xattr blocks
5593 */
Tahsin Erdogandec214d2017-06-22 11:44:55 -04005594static int ext4_meta_trans_blocks(struct inode *inode, int lblocks,
Jan Karafffb2732013-06-04 13:01:11 -04005595 int pextents)
Mingming Caoa02908f2008-08-19 22:16:07 -04005596{
Theodore Ts'o8df96752009-05-01 08:50:38 -04005597 ext4_group_t groups, ngroups = ext4_get_groups_count(inode->i_sb);
5598 int gdpblocks;
Mingming Caoa02908f2008-08-19 22:16:07 -04005599 int idxblocks;
5600 int ret = 0;
5601
5602 /*
Jan Karafffb2732013-06-04 13:01:11 -04005603 * How many index blocks need to touch to map @lblocks logical blocks
5604 * to @pextents physical extents?
Mingming Caoa02908f2008-08-19 22:16:07 -04005605 */
Jan Karafffb2732013-06-04 13:01:11 -04005606 idxblocks = ext4_index_trans_blocks(inode, lblocks, pextents);
Mingming Caoa02908f2008-08-19 22:16:07 -04005607
5608 ret = idxblocks;
5609
5610 /*
5611 * Now let's see how many group bitmaps and group descriptors need
5612 * to account
5613 */
Jan Karafffb2732013-06-04 13:01:11 -04005614 groups = idxblocks + pextents;
Mingming Caoa02908f2008-08-19 22:16:07 -04005615 gdpblocks = groups;
Theodore Ts'o8df96752009-05-01 08:50:38 -04005616 if (groups > ngroups)
5617 groups = ngroups;
Mingming Caoa02908f2008-08-19 22:16:07 -04005618 if (groups > EXT4_SB(inode->i_sb)->s_gdb_count)
5619 gdpblocks = EXT4_SB(inode->i_sb)->s_gdb_count;
5620
5621 /* bitmaps and block group descriptor blocks */
5622 ret += groups + gdpblocks;
5623
5624 /* Blocks for super block, inode, quota and xattr blocks */
5625 ret += EXT4_META_TRANS_BLOCKS(inode->i_sb);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005626
5627 return ret;
5628}
5629
5630/*
Lucas De Marchi25985ed2011-03-30 22:57:33 -03005631 * Calculate the total number of credits to reserve to fit
Mingming Caof3bd1f32008-08-19 22:16:03 -04005632 * the modification of a single pages into a single transaction,
5633 * which may include multiple chunks of block allocations.
Mingming Caoa02908f2008-08-19 22:16:07 -04005634 *
Mingming Cao525f4ed2008-08-19 22:15:58 -04005635 * This could be called via ext4_write_begin()
Mingming Caoa02908f2008-08-19 22:16:07 -04005636 *
Mingming Cao525f4ed2008-08-19 22:15:58 -04005637 * We need to consider the worse case, when
Mingming Caoa02908f2008-08-19 22:16:07 -04005638 * one new block per extent.
Mingming Caoa02908f2008-08-19 22:16:07 -04005639 */
5640int ext4_writepage_trans_blocks(struct inode *inode)
5641{
5642 int bpp = ext4_journal_blocks_per_page(inode);
5643 int ret;
5644
Jan Karafffb2732013-06-04 13:01:11 -04005645 ret = ext4_meta_trans_blocks(inode, bpp, bpp);
Mingming Caoa02908f2008-08-19 22:16:07 -04005646
5647 /* Account for data blocks for journalled mode */
5648 if (ext4_should_journal_data(inode))
5649 ret += bpp;
5650 return ret;
5651}
Mingming Caof3bd1f32008-08-19 22:16:03 -04005652
5653/*
5654 * Calculate the journal credits for a chunk of data modification.
5655 *
5656 * This is called from DIO, fallocate or whoever calling
Eric Sandeen79e83032010-07-27 11:56:07 -04005657 * ext4_map_blocks() to map/allocate a chunk of contiguous disk blocks.
Mingming Caof3bd1f32008-08-19 22:16:03 -04005658 *
5659 * journal buffers for data blocks are not included here, as DIO
5660 * and fallocate do no need to journal data buffers.
5661 */
5662int ext4_chunk_trans_blocks(struct inode *inode, int nrblocks)
5663{
5664 return ext4_meta_trans_blocks(inode, nrblocks, 1);
5665}
5666
Mingming Caoa02908f2008-08-19 22:16:07 -04005667/*
Mingming Cao617ba132006-10-11 01:20:53 -07005668 * The caller must have previously called ext4_reserve_inode_write().
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005669 * Give this, we know that the caller already has write access to iloc->bh.
5670 */
Mingming Cao617ba132006-10-11 01:20:53 -07005671int ext4_mark_iloc_dirty(handle_t *handle,
Theodore Ts'ode9a55b2009-06-14 17:45:34 -04005672 struct inode *inode, struct ext4_iloc *iloc)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005673{
5674 int err = 0;
5675
Vasily Averina6758302018-11-06 16:49:50 -05005676 if (unlikely(ext4_forced_shutdown(EXT4_SB(inode->i_sb)))) {
5677 put_bh(iloc->bh);
Theodore Ts'o0db1ff22017-02-05 01:28:48 -05005678 return -EIO;
Vasily Averina6758302018-11-06 16:49:50 -05005679 }
Harshad Shirwadkara80f7fc2020-11-05 19:58:53 -08005680 ext4_fc_track_inode(handle, inode);
Harshad Shirwadkaraa75f4d2020-10-15 13:37:57 -07005681
Theodore Ts'oc64db502012-03-02 12:23:11 -05005682 if (IS_I_VERSION(inode))
Jean Noel Cordenner25ec56b2008-01-28 23:58:27 -05005683 inode_inc_iversion(inode);
5684
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005685 /* the do_update_inode consumes one bh->b_count */
5686 get_bh(iloc->bh);
5687
Mingming Caodab291a2006-10-11 01:21:01 -07005688 /* ext4_do_update_inode() does jbd2_journal_dirty_metadata */
Frank Mayhar830156c2009-09-29 10:07:47 -04005689 err = ext4_do_update_inode(handle, inode, iloc);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005690 put_bh(iloc->bh);
5691 return err;
5692}
5693
5694/*
5695 * On success, We end up with an outstanding reference count against
5696 * iloc->bh. This _must_ be cleaned up later.
5697 */
5698
5699int
Mingming Cao617ba132006-10-11 01:20:53 -07005700ext4_reserve_inode_write(handle_t *handle, struct inode *inode,
5701 struct ext4_iloc *iloc)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005702{
Frank Mayhar03901312009-01-07 00:06:22 -05005703 int err;
5704
Theodore Ts'o0db1ff22017-02-05 01:28:48 -05005705 if (unlikely(ext4_forced_shutdown(EXT4_SB(inode->i_sb))))
5706 return -EIO;
5707
Frank Mayhar03901312009-01-07 00:06:22 -05005708 err = ext4_get_inode_loc(inode, iloc);
5709 if (!err) {
5710 BUFFER_TRACE(iloc->bh, "get_write_access");
Jan Kara188c2992021-08-16 11:57:04 +02005711 err = ext4_journal_get_write_access(handle, inode->i_sb,
5712 iloc->bh, EXT4_JTR_NONE);
Frank Mayhar03901312009-01-07 00:06:22 -05005713 if (err) {
5714 brelse(iloc->bh);
5715 iloc->bh = NULL;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005716 }
5717 }
Mingming Cao617ba132006-10-11 01:20:53 -07005718 ext4_std_error(inode->i_sb, err);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005719 return err;
5720}
5721
Miao Xiec03b45b2017-08-06 01:00:49 -04005722static int __ext4_expand_extra_isize(struct inode *inode,
5723 unsigned int new_extra_isize,
5724 struct ext4_iloc *iloc,
5725 handle_t *handle, int *no_expand)
5726{
5727 struct ext4_inode *raw_inode;
5728 struct ext4_xattr_ibody_header *header;
Theodore Ts'o4ea99932019-11-07 21:43:41 -05005729 unsigned int inode_size = EXT4_INODE_SIZE(inode->i_sb);
5730 struct ext4_inode_info *ei = EXT4_I(inode);
Miao Xiec03b45b2017-08-06 01:00:49 -04005731 int error;
5732
Theodore Ts'o4ea99932019-11-07 21:43:41 -05005733 /* this was checked at iget time, but double check for good measure */
5734 if ((EXT4_GOOD_OLD_INODE_SIZE + ei->i_extra_isize > inode_size) ||
5735 (ei->i_extra_isize & 3)) {
5736 EXT4_ERROR_INODE(inode, "bad extra_isize %u (inode size %u)",
5737 ei->i_extra_isize,
5738 EXT4_INODE_SIZE(inode->i_sb));
5739 return -EFSCORRUPTED;
5740 }
5741 if ((new_extra_isize < ei->i_extra_isize) ||
5742 (new_extra_isize < 4) ||
5743 (new_extra_isize > inode_size - EXT4_GOOD_OLD_INODE_SIZE))
5744 return -EINVAL; /* Should never happen */
5745
Miao Xiec03b45b2017-08-06 01:00:49 -04005746 raw_inode = ext4_raw_inode(iloc);
5747
5748 header = IHDR(inode, raw_inode);
5749
5750 /* No extended attributes present */
5751 if (!ext4_test_inode_state(inode, EXT4_STATE_XATTR) ||
5752 header->h_magic != cpu_to_le32(EXT4_XATTR_MAGIC)) {
5753 memset((void *)raw_inode + EXT4_GOOD_OLD_INODE_SIZE +
5754 EXT4_I(inode)->i_extra_isize, 0,
5755 new_extra_isize - EXT4_I(inode)->i_extra_isize);
5756 EXT4_I(inode)->i_extra_isize = new_extra_isize;
5757 return 0;
5758 }
5759
5760 /* try to expand with EAs present */
5761 error = ext4_expand_extra_isize_ea(inode, new_extra_isize,
5762 raw_inode, handle);
5763 if (error) {
5764 /*
5765 * Inode size expansion failed; don't try again
5766 */
5767 *no_expand = 1;
5768 }
5769
5770 return error;
5771}
5772
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005773/*
Kalpak Shah6dd4ee72007-07-18 09:19:57 -04005774 * Expand an inode by new_extra_isize bytes.
5775 * Returns 0 on success or negative error number on failure.
5776 */
Miao Xiecf0a5e82017-08-06 00:40:01 -04005777static int ext4_try_to_expand_extra_isize(struct inode *inode,
5778 unsigned int new_extra_isize,
5779 struct ext4_iloc iloc,
5780 handle_t *handle)
Kalpak Shah6dd4ee72007-07-18 09:19:57 -04005781{
Miao Xie3b10fdc2017-08-06 00:27:38 -04005782 int no_expand;
5783 int error;
Kalpak Shah6dd4ee72007-07-18 09:19:57 -04005784
Miao Xiecf0a5e82017-08-06 00:40:01 -04005785 if (ext4_test_inode_state(inode, EXT4_STATE_NO_EXPAND))
5786 return -EOVERFLOW;
5787
5788 /*
5789 * In nojournal mode, we can immediately attempt to expand
5790 * the inode. When journaled, we first need to obtain extra
5791 * buffer credits since we may write into the EA block
5792 * with this same handle. If journal_extend fails, then it will
5793 * only result in a minor loss of functionality for that inode.
5794 * If this is felt to be critical, then e2fsck should be run to
5795 * force a large enough s_min_extra_isize.
5796 */
Jan Kara6cb367c2019-11-05 17:44:14 +01005797 if (ext4_journal_extend(handle,
Jan Kara83448bd2019-11-05 17:44:29 +01005798 EXT4_DATA_TRANS_BLOCKS(inode->i_sb), 0) != 0)
Miao Xiecf0a5e82017-08-06 00:40:01 -04005799 return -ENOSPC;
Kalpak Shah6dd4ee72007-07-18 09:19:57 -04005800
Miao Xie3b10fdc2017-08-06 00:27:38 -04005801 if (ext4_write_trylock_xattr(inode, &no_expand) == 0)
Miao Xiecf0a5e82017-08-06 00:40:01 -04005802 return -EBUSY;
Miao Xie3b10fdc2017-08-06 00:27:38 -04005803
Miao Xiec03b45b2017-08-06 01:00:49 -04005804 error = __ext4_expand_extra_isize(inode, new_extra_isize, &iloc,
5805 handle, &no_expand);
Miao Xie3b10fdc2017-08-06 00:27:38 -04005806 ext4_write_unlock_xattr(inode, &no_expand);
Miao Xiecf0a5e82017-08-06 00:40:01 -04005807
Miao Xie3b10fdc2017-08-06 00:27:38 -04005808 return error;
Kalpak Shah6dd4ee72007-07-18 09:19:57 -04005809}
5810
Miao Xiec03b45b2017-08-06 01:00:49 -04005811int ext4_expand_extra_isize(struct inode *inode,
5812 unsigned int new_extra_isize,
5813 struct ext4_iloc *iloc)
5814{
5815 handle_t *handle;
5816 int no_expand;
5817 int error, rc;
5818
5819 if (ext4_test_inode_state(inode, EXT4_STATE_NO_EXPAND)) {
5820 brelse(iloc->bh);
5821 return -EOVERFLOW;
5822 }
5823
5824 handle = ext4_journal_start(inode, EXT4_HT_INODE,
5825 EXT4_DATA_TRANS_BLOCKS(inode->i_sb));
5826 if (IS_ERR(handle)) {
5827 error = PTR_ERR(handle);
5828 brelse(iloc->bh);
5829 return error;
5830 }
5831
5832 ext4_write_lock_xattr(inode, &no_expand);
5833
zhangyi (F)ddccb6d2019-02-21 11:29:10 -05005834 BUFFER_TRACE(iloc->bh, "get_write_access");
Jan Kara188c2992021-08-16 11:57:04 +02005835 error = ext4_journal_get_write_access(handle, inode->i_sb, iloc->bh,
5836 EXT4_JTR_NONE);
Miao Xiec03b45b2017-08-06 01:00:49 -04005837 if (error) {
5838 brelse(iloc->bh);
Dan Carpenter7f420d642019-12-13 21:50:11 +03005839 goto out_unlock;
Miao Xiec03b45b2017-08-06 01:00:49 -04005840 }
5841
5842 error = __ext4_expand_extra_isize(inode, new_extra_isize, iloc,
5843 handle, &no_expand);
5844
5845 rc = ext4_mark_iloc_dirty(handle, inode, iloc);
5846 if (!error)
5847 error = rc;
5848
Dan Carpenter7f420d642019-12-13 21:50:11 +03005849out_unlock:
Miao Xiec03b45b2017-08-06 01:00:49 -04005850 ext4_write_unlock_xattr(inode, &no_expand);
Miao Xiec03b45b2017-08-06 01:00:49 -04005851 ext4_journal_stop(handle);
5852 return error;
5853}
5854
Kalpak Shah6dd4ee72007-07-18 09:19:57 -04005855/*
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005856 * What we do here is to mark the in-core inode as clean with respect to inode
5857 * dirtiness (it may still be data-dirty).
5858 * This means that the in-core inode may be reaped by prune_icache
5859 * without having to perform any I/O. This is a very good thing,
5860 * because *any* task may call prune_icache - even ones which
5861 * have a transaction open against a different journal.
5862 *
5863 * Is this cheating? Not really. Sure, we haven't written the
5864 * inode out, but prune_icache isn't a user-visible syncing function.
5865 * Whenever the user wants stuff synced (sys_sync, sys_msync, sys_fsync)
5866 * we start and wait on commits.
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005867 */
Harshad Shirwadkar4209ae12020-04-26 18:34:37 -07005868int __ext4_mark_inode_dirty(handle_t *handle, struct inode *inode,
5869 const char *func, unsigned int line)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005870{
Mingming Cao617ba132006-10-11 01:20:53 -07005871 struct ext4_iloc iloc;
Kalpak Shah6dd4ee72007-07-18 09:19:57 -04005872 struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb);
Miao Xiecf0a5e82017-08-06 00:40:01 -04005873 int err;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005874
5875 might_sleep();
Theodore Ts'o7ff9c072010-11-08 13:51:33 -05005876 trace_ext4_mark_inode_dirty(inode, _RET_IP_);
Mingming Cao617ba132006-10-11 01:20:53 -07005877 err = ext4_reserve_inode_write(handle, inode, &iloc);
Eryu Guan5e1021f2016-03-12 21:40:32 -05005878 if (err)
Harshad Shirwadkar4209ae12020-04-26 18:34:37 -07005879 goto out;
Miao Xiecf0a5e82017-08-06 00:40:01 -04005880
5881 if (EXT4_I(inode)->i_extra_isize < sbi->s_want_extra_isize)
5882 ext4_try_to_expand_extra_isize(inode, sbi->s_want_extra_isize,
5883 iloc, handle);
5884
Harshad Shirwadkar4209ae12020-04-26 18:34:37 -07005885 err = ext4_mark_iloc_dirty(handle, inode, &iloc);
5886out:
5887 if (unlikely(err))
5888 ext4_error_inode_err(inode, func, line, 0, err,
5889 "mark_inode_dirty error");
5890 return err;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005891}
5892
5893/*
Mingming Cao617ba132006-10-11 01:20:53 -07005894 * ext4_dirty_inode() is called from __mark_inode_dirty()
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005895 *
5896 * We're really interested in the case where a file is being extended.
5897 * i_size has been changed by generic_commit_write() and we thus need
5898 * to include the updated inode in the current transaction.
5899 *
Christoph Hellwig5dd40562010-03-03 09:05:00 -05005900 * Also, dquot_alloc_block() will always dirty the inode when blocks
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005901 * are allocated to the file.
5902 *
5903 * If the inode is marked synchronous, we don't honour that here - doing
5904 * so would cause a commit on atime updates, which we don't bother doing.
5905 * We handle synchronous inodes at the highest possible level.
5906 */
Christoph Hellwigaa385722011-05-27 06:53:02 -04005907void ext4_dirty_inode(struct inode *inode, int flags)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005908{
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005909 handle_t *handle;
5910
Theodore Ts'o9924a922013-02-08 21:59:22 -05005911 handle = ext4_journal_start(inode, EXT4_HT_INODE, 2);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005912 if (IS_ERR(handle))
Eric Biggerse2728c52021-01-12 11:02:47 -08005913 return;
Curt Wohlgemuthf3dc2722009-09-29 16:06:01 -04005914 ext4_mark_inode_dirty(handle, inode);
Mingming Cao617ba132006-10-11 01:20:53 -07005915 ext4_journal_stop(handle);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005916}
5917
Mingming Cao617ba132006-10-11 01:20:53 -07005918int ext4_change_inode_journal_flag(struct inode *inode, int val)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005919{
5920 journal_t *journal;
5921 handle_t *handle;
5922 int err;
Daeho Jeongc8585c62016-04-25 23:22:35 -04005923 struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005924
5925 /*
5926 * We have to be very careful here: changing a data block's
5927 * journaling status dynamically is dangerous. If we write a
5928 * data block to the journal, change the status and then delete
5929 * that block, we risk forgetting to revoke the old log record
5930 * from the journal and so a subsequent replay can corrupt data.
5931 * So, first we make sure that the journal is empty and that
5932 * nobody is changing anything.
5933 */
5934
Mingming Cao617ba132006-10-11 01:20:53 -07005935 journal = EXT4_JOURNAL(inode);
Frank Mayhar03901312009-01-07 00:06:22 -05005936 if (!journal)
5937 return 0;
Dave Hansend6995942007-07-18 08:33:51 -04005938 if (is_journal_aborted(journal))
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005939 return -EROFS;
5940
Dmitry Monakhov17335dc2012-09-29 00:41:21 -04005941 /* Wait for all existing dio workers */
Dmitry Monakhov17335dc2012-09-29 00:41:21 -04005942 inode_dio_wait(inode);
5943
Daeho Jeong4c546592016-04-25 23:21:00 -04005944 /*
5945 * Before flushing the journal and switching inode's aops, we have
5946 * to flush all dirty data the inode has. There can be outstanding
5947 * delayed allocations, there can be unwritten extents created by
5948 * fallocate or buffered writes in dioread_nolock mode covered by
5949 * dirty data which can be converted only after flushing the dirty
5950 * data (and journalled aops don't know how to handle these cases).
5951 */
5952 if (val) {
Jan Karad4f52582021-02-04 18:05:42 +01005953 filemap_invalidate_lock(inode->i_mapping);
Daeho Jeong4c546592016-04-25 23:21:00 -04005954 err = filemap_write_and_wait(inode->i_mapping);
5955 if (err < 0) {
Jan Karad4f52582021-02-04 18:05:42 +01005956 filemap_invalidate_unlock(inode->i_mapping);
Daeho Jeong4c546592016-04-25 23:21:00 -04005957 return err;
5958 }
5959 }
5960
Eric Biggersbbd55932020-02-19 10:30:46 -08005961 percpu_down_write(&sbi->s_writepages_rwsem);
Mingming Caodab291a2006-10-11 01:21:01 -07005962 jbd2_journal_lock_updates(journal);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005963
5964 /*
5965 * OK, there are no updates running now, and all cached data is
5966 * synced to disk. We are now in a completely consistent state
5967 * which doesn't have anything in the journal, and we know that
5968 * no filesystem updates are running, so it is safe to modify
5969 * the inode's in-core data-journaling state flag now.
5970 */
5971
5972 if (val)
Dmitry Monakhov12e9b892010-05-16 22:00:00 -04005973 ext4_set_inode_flag(inode, EXT4_INODE_JOURNAL_DATA);
Yongqiang Yang5872dda2011-12-28 13:55:51 -05005974 else {
Leah Rumancik01d5d962021-05-18 15:13:25 +00005975 err = jbd2_journal_flush(journal, 0);
Jan Kara4f879ca2014-10-30 10:53:17 -04005976 if (err < 0) {
5977 jbd2_journal_unlock_updates(journal);
Eric Biggersbbd55932020-02-19 10:30:46 -08005978 percpu_up_write(&sbi->s_writepages_rwsem);
Jan Kara4f879ca2014-10-30 10:53:17 -04005979 return err;
5980 }
Dmitry Monakhov12e9b892010-05-16 22:00:00 -04005981 ext4_clear_inode_flag(inode, EXT4_INODE_JOURNAL_DATA);
Yongqiang Yang5872dda2011-12-28 13:55:51 -05005982 }
Mingming Cao617ba132006-10-11 01:20:53 -07005983 ext4_set_aops(inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005984
Mingming Caodab291a2006-10-11 01:21:01 -07005985 jbd2_journal_unlock_updates(journal);
Eric Biggersbbd55932020-02-19 10:30:46 -08005986 percpu_up_write(&sbi->s_writepages_rwsem);
Daeho Jeongc8585c62016-04-25 23:22:35 -04005987
Daeho Jeong4c546592016-04-25 23:21:00 -04005988 if (val)
Jan Karad4f52582021-02-04 18:05:42 +01005989 filemap_invalidate_unlock(inode->i_mapping);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005990
5991 /* Finally we can mark the inode as dirty. */
5992
Theodore Ts'o9924a922013-02-08 21:59:22 -05005993 handle = ext4_journal_start(inode, EXT4_HT_INODE, 1);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005994 if (IS_ERR(handle))
5995 return PTR_ERR(handle);
5996
Harshad Shirwadkaraa75f4d2020-10-15 13:37:57 -07005997 ext4_fc_mark_ineligible(inode->i_sb,
5998 EXT4_FC_REASON_JOURNAL_FLAG_CHANGE);
Mingming Cao617ba132006-10-11 01:20:53 -07005999 err = ext4_mark_inode_dirty(handle, inode);
Frank Mayhar03901312009-01-07 00:06:22 -05006000 ext4_handle_sync(handle);
Mingming Cao617ba132006-10-11 01:20:53 -07006001 ext4_journal_stop(handle);
6002 ext4_std_error(inode->i_sb, err);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07006003
6004 return err;
6005}
Aneesh Kumar K.V2e9ee852008-07-11 19:27:31 -04006006
Jan Kara188c2992021-08-16 11:57:04 +02006007static int ext4_bh_unmapped(handle_t *handle, struct inode *inode,
6008 struct buffer_head *bh)
Aneesh Kumar K.V2e9ee852008-07-11 19:27:31 -04006009{
6010 return !buffer_mapped(bh);
6011}
6012
Souptick Joarder401b25a2018-10-02 22:20:50 -04006013vm_fault_t ext4_page_mkwrite(struct vm_fault *vmf)
Aneesh Kumar K.V2e9ee852008-07-11 19:27:31 -04006014{
Dave Jiang11bac802017-02-24 14:56:41 -08006015 struct vm_area_struct *vma = vmf->vma;
Nick Pigginc2ec1752009-03-31 15:23:21 -07006016 struct page *page = vmf->page;
Aneesh Kumar K.V2e9ee852008-07-11 19:27:31 -04006017 loff_t size;
6018 unsigned long len;
Souptick Joarder401b25a2018-10-02 22:20:50 -04006019 int err;
6020 vm_fault_t ret;
Aneesh Kumar K.V2e9ee852008-07-11 19:27:31 -04006021 struct file *file = vma->vm_file;
Al Viro496ad9a2013-01-23 17:07:38 -05006022 struct inode *inode = file_inode(file);
Aneesh Kumar K.V2e9ee852008-07-11 19:27:31 -04006023 struct address_space *mapping = inode->i_mapping;
Jan Kara9ea7df52011-06-24 14:29:41 -04006024 handle_t *handle;
6025 get_block_t *get_block;
6026 int retries = 0;
Aneesh Kumar K.V2e9ee852008-07-11 19:27:31 -04006027
Theodore Ts'o02b016c2019-06-09 22:04:33 -04006028 if (unlikely(IS_IMMUTABLE(inode)))
6029 return VM_FAULT_SIGBUS;
6030
Jan Kara8e8ad8a2012-06-12 16:20:38 +02006031 sb_start_pagefault(inode->i_sb);
Theodore Ts'o041bbb6d2012-09-30 23:04:56 -04006032 file_update_time(vma->vm_file);
Jan Karaea3d7202015-12-07 14:28:03 -05006033
Jan Karad4f52582021-02-04 18:05:42 +01006034 filemap_invalidate_lock_shared(mapping);
Eric Biggers7b4cc972017-04-30 00:10:50 -04006035
Souptick Joarder401b25a2018-10-02 22:20:50 -04006036 err = ext4_convert_inline_data(inode);
6037 if (err)
Eric Biggers7b4cc972017-04-30 00:10:50 -04006038 goto out_ret;
6039
Mauricio Faria de Oliveira64a9f142020-10-05 21:48:40 -03006040 /*
6041 * On data journalling we skip straight to the transaction handle:
6042 * there's no delalloc; page truncated will be checked later; the
6043 * early return w/ all buffers mapped (calculates size/len) can't
6044 * be used; and there's no dioread_nolock, so only ext4_get_block.
6045 */
6046 if (ext4_should_journal_data(inode))
6047 goto retry_alloc;
6048
Jan Kara9ea7df52011-06-24 14:29:41 -04006049 /* Delalloc case is easy... */
6050 if (test_opt(inode->i_sb, DELALLOC) &&
Jan Kara9ea7df52011-06-24 14:29:41 -04006051 !ext4_nonda_switch(inode->i_sb)) {
6052 do {
Souptick Joarder401b25a2018-10-02 22:20:50 -04006053 err = block_page_mkwrite(vma, vmf,
Jan Kara9ea7df52011-06-24 14:29:41 -04006054 ext4_da_get_block_prep);
Souptick Joarder401b25a2018-10-02 22:20:50 -04006055 } while (err == -ENOSPC &&
Jan Kara9ea7df52011-06-24 14:29:41 -04006056 ext4_should_retry_alloc(inode->i_sb, &retries));
6057 goto out_ret;
Aneesh Kumar K.V2e9ee852008-07-11 19:27:31 -04006058 }
Darrick J. Wong0e499892011-05-18 13:55:20 -04006059
6060 lock_page(page);
Jan Kara9ea7df52011-06-24 14:29:41 -04006061 size = i_size_read(inode);
6062 /* Page got truncated from under us? */
6063 if (page->mapping != mapping || page_offset(page) > size) {
6064 unlock_page(page);
6065 ret = VM_FAULT_NOPAGE;
6066 goto out;
Darrick J. Wong0e499892011-05-18 13:55:20 -04006067 }
Aneesh Kumar K.V2e9ee852008-07-11 19:27:31 -04006068
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03006069 if (page->index == size >> PAGE_SHIFT)
6070 len = size & ~PAGE_MASK;
Aneesh Kumar K.V2e9ee852008-07-11 19:27:31 -04006071 else
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03006072 len = PAGE_SIZE;
Aneesh Kumar K.Va827eaf2009-09-09 22:36:03 -04006073 /*
Jan Kara9ea7df52011-06-24 14:29:41 -04006074 * Return if we have all the buffers mapped. This avoids the need to do
6075 * journal_start/journal_stop which can block and take a long time
Mauricio Faria de Oliveira64a9f142020-10-05 21:48:40 -03006076 *
6077 * This cannot be done for data journalling, as we have to add the
6078 * inode to the transaction's list to writeprotect pages on commit.
Aneesh Kumar K.Va827eaf2009-09-09 22:36:03 -04006079 */
Aneesh Kumar K.V2e9ee852008-07-11 19:27:31 -04006080 if (page_has_buffers(page)) {
Jan Kara188c2992021-08-16 11:57:04 +02006081 if (!ext4_walk_page_buffers(NULL, inode, page_buffers(page),
Tao Maf19d5872012-12-10 14:05:51 -05006082 0, len, NULL,
6083 ext4_bh_unmapped)) {
Jan Kara9ea7df52011-06-24 14:29:41 -04006084 /* Wait so that we don't change page under IO */
Darrick J. Wong1d1d1a72013-02-21 16:42:51 -08006085 wait_for_stable_page(page);
Jan Kara9ea7df52011-06-24 14:29:41 -04006086 ret = VM_FAULT_LOCKED;
6087 goto out;
Aneesh Kumar K.Va827eaf2009-09-09 22:36:03 -04006088 }
Aneesh Kumar K.V2e9ee852008-07-11 19:27:31 -04006089 }
Aneesh Kumar K.Va827eaf2009-09-09 22:36:03 -04006090 unlock_page(page);
Jan Kara9ea7df52011-06-24 14:29:41 -04006091 /* OK, we need to fill the hole... */
6092 if (ext4_should_dioread_nolock(inode))
Jan Kara705965b2016-03-08 23:08:10 -05006093 get_block = ext4_get_block_unwritten;
Jan Kara9ea7df52011-06-24 14:29:41 -04006094 else
6095 get_block = ext4_get_block;
6096retry_alloc:
Theodore Ts'o9924a922013-02-08 21:59:22 -05006097 handle = ext4_journal_start(inode, EXT4_HT_WRITE_PAGE,
6098 ext4_writepage_trans_blocks(inode));
Jan Kara9ea7df52011-06-24 14:29:41 -04006099 if (IS_ERR(handle)) {
Nick Pigginc2ec1752009-03-31 15:23:21 -07006100 ret = VM_FAULT_SIGBUS;
Jan Kara9ea7df52011-06-24 14:29:41 -04006101 goto out;
6102 }
Mauricio Faria de Oliveira64a9f142020-10-05 21:48:40 -03006103 /*
6104 * Data journalling can't use block_page_mkwrite() because it
6105 * will set_buffer_dirty() before do_journal_get_write_access()
6106 * thus might hit warning messages for dirty metadata buffers.
6107 */
6108 if (!ext4_should_journal_data(inode)) {
6109 err = block_page_mkwrite(vma, vmf, get_block);
6110 } else {
6111 lock_page(page);
6112 size = i_size_read(inode);
6113 /* Page got truncated from under us? */
6114 if (page->mapping != mapping || page_offset(page) > size) {
Mauricio Faria de Oliveira64a9f142020-10-05 21:48:40 -03006115 ret = VM_FAULT_NOPAGE;
Mauricio Faria de Oliveiraafb585a2020-10-05 21:48:41 -03006116 goto out_error;
Jan Kara9ea7df52011-06-24 14:29:41 -04006117 }
Mauricio Faria de Oliveira64a9f142020-10-05 21:48:40 -03006118
6119 if (page->index == size >> PAGE_SHIFT)
6120 len = size & ~PAGE_MASK;
6121 else
6122 len = PAGE_SIZE;
6123
6124 err = __block_write_begin(page, 0, len, ext4_get_block);
6125 if (!err) {
Mauricio Faria de Oliveiraafb585a2020-10-05 21:48:41 -03006126 ret = VM_FAULT_SIGBUS;
Jan Kara188c2992021-08-16 11:57:04 +02006127 if (ext4_walk_page_buffers(handle, inode,
6128 page_buffers(page), 0, len, NULL,
6129 do_journal_get_write_access))
Mauricio Faria de Oliveiraafb585a2020-10-05 21:48:41 -03006130 goto out_error;
Jan Kara188c2992021-08-16 11:57:04 +02006131 if (ext4_walk_page_buffers(handle, inode,
6132 page_buffers(page), 0, len, NULL,
6133 write_end_fn))
Mauricio Faria de Oliveiraafb585a2020-10-05 21:48:41 -03006134 goto out_error;
Jan Karab5b18162020-10-27 14:27:51 +01006135 if (ext4_jbd2_inode_add_write(handle, inode,
6136 page_offset(page), len))
Mauricio Faria de Oliveiraafb585a2020-10-05 21:48:41 -03006137 goto out_error;
Mauricio Faria de Oliveira64a9f142020-10-05 21:48:40 -03006138 ext4_set_inode_state(inode, EXT4_STATE_JDATA);
6139 } else {
6140 unlock_page(page);
6141 }
Jan Kara9ea7df52011-06-24 14:29:41 -04006142 }
6143 ext4_journal_stop(handle);
Souptick Joarder401b25a2018-10-02 22:20:50 -04006144 if (err == -ENOSPC && ext4_should_retry_alloc(inode->i_sb, &retries))
Jan Kara9ea7df52011-06-24 14:29:41 -04006145 goto retry_alloc;
6146out_ret:
Souptick Joarder401b25a2018-10-02 22:20:50 -04006147 ret = block_page_mkwrite_return(err);
Jan Kara9ea7df52011-06-24 14:29:41 -04006148out:
Jan Karad4f52582021-02-04 18:05:42 +01006149 filemap_invalidate_unlock_shared(mapping);
Jan Kara8e8ad8a2012-06-12 16:20:38 +02006150 sb_end_pagefault(inode->i_sb);
Aneesh Kumar K.V2e9ee852008-07-11 19:27:31 -04006151 return ret;
Mauricio Faria de Oliveiraafb585a2020-10-05 21:48:41 -03006152out_error:
6153 unlock_page(page);
6154 ext4_journal_stop(handle);
6155 goto out;
Aneesh Kumar K.V2e9ee852008-07-11 19:27:31 -04006156}