blob: f368dd5fd8d591000aa9dac0e3d53ffef3815640 [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))
Xin Yine85c81b2022-01-17 17:36:54 +0800340 ext4_fc_mark_ineligible(inode->i_sb, EXT4_FC_REASON_NOMEM, NULL);
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
Aneesh Kumar K.V62e086b2009-06-14 17:59:34 -04001848static int __ext4_journalled_writepage(struct page *page,
Aneesh Kumar K.V62e086b2009-06-14 17:59:34 -04001849 unsigned int len)
1850{
1851 struct address_space *mapping = page->mapping;
1852 struct inode *inode = mapping->host;
Aneesh Kumar K.V62e086b2009-06-14 17:59:34 -04001853 handle_t *handle = NULL;
Tao Ma3fdcfb62012-12-10 14:05:57 -05001854 int ret = 0, err = 0;
1855 int inline_data = ext4_has_inline_data(inode);
1856 struct buffer_head *inode_bh = NULL;
Zhang Yi5c48a7d2021-12-25 17:09:37 +08001857 loff_t size;
Aneesh Kumar K.V62e086b2009-06-14 17:59:34 -04001858
Theodore Ts'ocb20d512010-10-27 21:30:09 -04001859 ClearPageChecked(page);
Tao Ma3fdcfb62012-12-10 14:05:57 -05001860
1861 if (inline_data) {
1862 BUG_ON(page->index != 0);
1863 BUG_ON(len > ext4_get_max_inline_size(inode));
1864 inode_bh = ext4_journalled_write_inline_data(inode, len, page);
1865 if (inode_bh == NULL)
1866 goto out;
Tao Ma3fdcfb62012-12-10 14:05:57 -05001867 }
Theodore Ts'obdf96832015-06-12 23:45:33 -04001868 /*
1869 * We need to release the page lock before we start the
1870 * journal, so grab a reference so the page won't disappear
1871 * out from under us.
1872 */
1873 get_page(page);
Aneesh Kumar K.V62e086b2009-06-14 17:59:34 -04001874 unlock_page(page);
1875
Theodore Ts'o9924a922013-02-08 21:59:22 -05001876 handle = ext4_journal_start(inode, EXT4_HT_WRITE_PAGE,
1877 ext4_writepage_trans_blocks(inode));
Aneesh Kumar K.V62e086b2009-06-14 17:59:34 -04001878 if (IS_ERR(handle)) {
1879 ret = PTR_ERR(handle);
Theodore Ts'obdf96832015-06-12 23:45:33 -04001880 put_page(page);
1881 goto out_no_pagelock;
1882 }
1883 BUG_ON(!ext4_handle_valid(handle));
1884
1885 lock_page(page);
1886 put_page(page);
Zhang Yi5c48a7d2021-12-25 17:09:37 +08001887 size = i_size_read(inode);
1888 if (page->mapping != mapping || page_offset(page) > size) {
Theodore Ts'obdf96832015-06-12 23:45:33 -04001889 /* The page got truncated from under us */
1890 ext4_journal_stop(handle);
1891 ret = 0;
Aneesh Kumar K.V62e086b2009-06-14 17:59:34 -04001892 goto out;
1893 }
1894
Tao Ma3fdcfb62012-12-10 14:05:57 -05001895 if (inline_data) {
Theodore Ts'o362eca72018-07-10 01:07:43 -04001896 ret = ext4_mark_inode_dirty(handle, inode);
Tao Ma3fdcfb62012-12-10 14:05:57 -05001897 } else {
Zhang Yi5c48a7d2021-12-25 17:09:37 +08001898 struct buffer_head *page_bufs = page_buffers(page);
1899
1900 if (page->index == size >> PAGE_SHIFT)
1901 len = size & ~PAGE_MASK;
1902 else
1903 len = PAGE_SIZE;
1904
Jan Kara188c2992021-08-16 11:57:04 +02001905 ret = ext4_walk_page_buffers(handle, inode, page_bufs, 0, len,
1906 NULL, do_journal_get_write_access);
Tao Ma3fdcfb62012-12-10 14:05:57 -05001907
Jan Kara188c2992021-08-16 11:57:04 +02001908 err = ext4_walk_page_buffers(handle, inode, page_bufs, 0, len,
1909 NULL, write_end_fn);
Tao Ma3fdcfb62012-12-10 14:05:57 -05001910 }
Aneesh Kumar K.V62e086b2009-06-14 17:59:34 -04001911 if (ret == 0)
1912 ret = err;
Jan Karab5b18162020-10-27 14:27:51 +01001913 err = ext4_jbd2_inode_add_write(handle, inode, page_offset(page), len);
Mauricio Faria de Oliveiraafb585a2020-10-05 21:48:41 -03001914 if (ret == 0)
1915 ret = err;
Jan Kara2d859db2011-07-26 09:07:11 -04001916 EXT4_I(inode)->i_datasync_tid = handle->h_transaction->t_tid;
Aneesh Kumar K.V62e086b2009-06-14 17:59:34 -04001917 err = ext4_journal_stop(handle);
1918 if (!ret)
1919 ret = err;
1920
Theodore Ts'o19f5fb72010-01-24 14:34:07 -05001921 ext4_set_inode_state(inode, EXT4_STATE_JDATA);
Aneesh Kumar K.V62e086b2009-06-14 17:59:34 -04001922out:
Theodore Ts'obdf96832015-06-12 23:45:33 -04001923 unlock_page(page);
1924out_no_pagelock:
Tao Ma3fdcfb62012-12-10 14:05:57 -05001925 brelse(inode_bh);
Aneesh Kumar K.V62e086b2009-06-14 17:59:34 -04001926 return ret;
1927}
1928
Mingming Cao61628a32008-07-11 19:27:31 -04001929/*
Aneesh Kumar K.V43ce1d22009-06-14 17:58:45 -04001930 * Note that we don't need to start a transaction unless we're journaling data
1931 * because we should have holes filled from ext4_page_mkwrite(). We even don't
1932 * need to file the inode to the transaction's list in ordered mode because if
1933 * we are writing back data added by write(), the inode is already there and if
Lucas De Marchi25985ed2011-03-30 22:57:33 -03001934 * we are writing back data modified via mmap(), no one guarantees in which
Aneesh Kumar K.V43ce1d22009-06-14 17:58:45 -04001935 * transaction the data will hit the disk. In case we are journaling data, we
1936 * cannot start transaction directly because transaction start ranks above page
1937 * lock so we have to do some magic.
1938 *
Theodore Ts'ob920c752009-05-14 00:54:29 -04001939 * This function can get called via...
Theodore Ts'o20970ba2013-06-06 14:00:46 -04001940 * - ext4_writepages after taking page lock (have journal handle)
Theodore Ts'ob920c752009-05-14 00:54:29 -04001941 * - journal_submit_inode_data_buffers (no journal handle)
Artem Bityutskiyf6463b02012-07-25 18:12:04 +03001942 * - shrink_page_list via the kswapd/direct reclaim (no journal handle)
Theodore Ts'ob920c752009-05-14 00:54:29 -04001943 * - grab_page_cache when doing write_begin (have journal handle)
Aneesh Kumar K.V43ce1d22009-06-14 17:58:45 -04001944 *
1945 * We don't do any block allocation in this function. If we have page with
1946 * multiple blocks we need to write those buffer_heads that are mapped. This
1947 * is important for mmaped based write. So if we do with blocksize 1K
1948 * truncate(f, 1024);
1949 * a = mmap(f, 0, 4096);
1950 * a[0] = 'a';
1951 * truncate(f, 4096);
1952 * we have in the page first buffer_head mapped via page_mkwrite call back
Paul Bolle90802ed2011-12-05 13:00:34 +01001953 * but other buffer_heads would be unmapped but dirty (dirty done via the
Aneesh Kumar K.V43ce1d22009-06-14 17:58:45 -04001954 * do_wp_page). So writepage should write the first block. If we modify
1955 * the mmap area beyond 1024 we will again get a page_fault and the
1956 * page_mkwrite callback will do the block allocation and mark the
1957 * buffer_heads mapped.
1958 *
1959 * We redirty the page if we have any buffer_heads that is either delay or
1960 * unwritten in the page.
1961 *
1962 * We can get recursively called as show below.
1963 *
1964 * ext4_writepage() -> kmalloc() -> __alloc_pages() -> page_launder() ->
1965 * ext4_writepage()
1966 *
1967 * But since we don't do any block allocation we should not deadlock.
1968 * Page also have the dirty flag cleared so we don't get recurive page_lock.
Mingming Cao61628a32008-07-11 19:27:31 -04001969 */
Aneesh Kumar K.V43ce1d22009-06-14 17:58:45 -04001970static int ext4_writepage(struct page *page,
Aneesh Kumar K.V62e086b2009-06-14 17:59:34 -04001971 struct writeback_control *wbc)
Alex Tomas64769242008-07-11 19:27:31 -04001972{
Jan Karaf8bec372013-01-28 12:55:08 -05001973 int ret = 0;
Mingming Cao61628a32008-07-11 19:27:31 -04001974 loff_t size;
Theodore Ts'o498e5f22008-11-05 00:14:04 -05001975 unsigned int len;
Jiaying Zhang744692d2010-03-04 16:14:02 -05001976 struct buffer_head *page_bufs = NULL;
Mingming Cao61628a32008-07-11 19:27:31 -04001977 struct inode *inode = page->mapping->host;
Jan Kara36ade452013-01-28 09:30:52 -05001978 struct ext4_io_submit io_submit;
Namjae Jeon1c8349a2014-05-12 08:12:25 -04001979 bool keep_towrite = false;
Alex Tomas64769242008-07-11 19:27:31 -04001980
Theodore Ts'o0db1ff22017-02-05 01:28:48 -05001981 if (unlikely(ext4_forced_shutdown(EXT4_SB(inode->i_sb)))) {
yangerkunc2a559b2020-02-26 12:10:02 +08001982 inode->i_mapping->a_ops->invalidatepage(page, 0, PAGE_SIZE);
Theodore Ts'o0db1ff22017-02-05 01:28:48 -05001983 unlock_page(page);
1984 return -EIO;
1985 }
1986
Lukas Czernera9c667f2011-06-06 09:51:52 -04001987 trace_ext4_writepage(page);
Aneesh Kumar K.Vf0e6c982008-07-11 19:27:31 -04001988 size = i_size_read(inode);
Eric Biggersc93d8f82019-07-22 09:26:24 -07001989 if (page->index == size >> PAGE_SHIFT &&
1990 !ext4_verity_in_progress(inode))
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001991 len = size & ~PAGE_MASK;
Aneesh Kumar K.Vf0e6c982008-07-11 19:27:31 -04001992 else
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001993 len = PAGE_SIZE;
Alex Tomas64769242008-07-11 19:27:31 -04001994
Theodore Ts'oa42afc52010-10-27 21:30:09 -04001995 page_bufs = page_buffers(page);
Aneesh Kumar K.Vc364b222009-06-14 17:57:10 -04001996 /*
Jan Karafe386132013-01-28 21:06:42 -05001997 * We cannot do block allocation or other extent handling in this
1998 * function. If there are buffers needing that, we have to redirty
1999 * the page. But we may reach here when we do a journal commit via
2000 * journal_submit_inode_data_buffers() and in that case we must write
2001 * allocated buffers to achieve data=ordered mode guarantees.
Theodore Ts'occcd1472015-10-03 10:49:23 -04002002 *
2003 * Also, if there is only one buffer per page (the fs block
2004 * size == the page size), if one buffer needs block
2005 * allocation or needs to modify the extent tree to clear the
2006 * unwritten flag, we know that the page can't be written at
2007 * all, so we might as well refuse the write immediately.
2008 * Unfortunately if the block size != page size, we can't as
2009 * easily detect this case using ext4_walk_page_buffers(), but
2010 * for the extremely common case, this is an optimization that
2011 * skips a useless round trip through ext4_bio_write_page().
Aneesh Kumar K.Vcd1aac32008-07-11 19:27:31 -04002012 */
Jan Kara188c2992021-08-16 11:57:04 +02002013 if (ext4_walk_page_buffers(NULL, inode, page_bufs, 0, len, NULL,
Tao Maf19d5872012-12-10 14:05:51 -05002014 ext4_bh_delay_or_unwritten)) {
Jan Karaf8bec372013-01-28 12:55:08 -05002015 redirty_page_for_writepage(wbc, page);
Theodore Ts'occcd1472015-10-03 10:49:23 -04002016 if ((current->flags & PF_MEMALLOC) ||
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002017 (inode->i_sb->s_blocksize == PAGE_SIZE)) {
Jan Karafe386132013-01-28 21:06:42 -05002018 /*
2019 * For memory cleaning there's no point in writing only
2020 * some buffers. So just bail out. Warn if we came here
2021 * from direct reclaim.
2022 */
2023 WARN_ON_ONCE((current->flags & (PF_MEMALLOC|PF_KSWAPD))
2024 == PF_MEMALLOC);
Aneesh Kumar K.Vf0e6c982008-07-11 19:27:31 -04002025 unlock_page(page);
2026 return 0;
2027 }
Namjae Jeon1c8349a2014-05-12 08:12:25 -04002028 keep_towrite = true;
Theodore Ts'oa42afc52010-10-27 21:30:09 -04002029 }
Alex Tomas64769242008-07-11 19:27:31 -04002030
Theodore Ts'ocb20d512010-10-27 21:30:09 -04002031 if (PageChecked(page) && ext4_should_journal_data(inode))
Aneesh Kumar K.V43ce1d22009-06-14 17:58:45 -04002032 /*
2033 * It's mmapped pagecache. Add buffers and journal it. There
2034 * doesn't seem much point in redirtying the page here.
2035 */
Wu Fengguang3f0ca302009-11-24 11:15:44 -05002036 return __ext4_journalled_writepage(page, len);
Aneesh Kumar K.V43ce1d22009-06-14 17:58:45 -04002037
Jan Kara97a851e2013-06-04 11:58:58 -04002038 ext4_io_submit_init(&io_submit, wbc);
2039 io_submit.io_end = ext4_init_io_end(inode, GFP_NOFS);
2040 if (!io_submit.io_end) {
2041 redirty_page_for_writepage(wbc, page);
2042 unlock_page(page);
2043 return -ENOMEM;
2044 }
Lei Chenbe993932020-12-11 14:54:24 +08002045 ret = ext4_bio_write_page(&io_submit, page, len, keep_towrite);
Jan Kara36ade452013-01-28 09:30:52 -05002046 ext4_io_submit(&io_submit);
Jan Kara97a851e2013-06-04 11:58:58 -04002047 /* Drop io_end reference we got from init */
2048 ext4_put_io_end_defer(io_submit.io_end);
Alex Tomas64769242008-07-11 19:27:31 -04002049 return ret;
2050}
2051
Jan Kara5f1132b2013-08-17 10:02:33 -04002052static int mpage_submit_page(struct mpage_da_data *mpd, struct page *page)
2053{
2054 int len;
Jan Karaa056bda2017-05-26 17:45:45 -04002055 loff_t size;
Jan Kara5f1132b2013-08-17 10:02:33 -04002056 int err;
2057
2058 BUG_ON(page->index != mpd->first_page);
Jan Karaa056bda2017-05-26 17:45:45 -04002059 clear_page_dirty_for_io(page);
2060 /*
2061 * We have to be very careful here! Nothing protects writeback path
2062 * against i_size changes and the page can be writeably mapped into
2063 * page tables. So an application can be growing i_size and writing
2064 * data through mmap while writeback runs. clear_page_dirty_for_io()
2065 * write-protects our page in page tables and the page cannot get
2066 * written to again until we release page lock. So only after
2067 * clear_page_dirty_for_io() we are safe to sample i_size for
2068 * ext4_bio_write_page() to zero-out tail of the written page. We rely
2069 * on the barrier provided by TestClearPageDirty in
2070 * clear_page_dirty_for_io() to make sure i_size is really sampled only
2071 * after page tables are updated.
2072 */
2073 size = i_size_read(mpd->inode);
Eric Biggersc93d8f82019-07-22 09:26:24 -07002074 if (page->index == size >> PAGE_SHIFT &&
2075 !ext4_verity_in_progress(mpd->inode))
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002076 len = size & ~PAGE_MASK;
Jan Kara5f1132b2013-08-17 10:02:33 -04002077 else
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002078 len = PAGE_SIZE;
Lei Chenbe993932020-12-11 14:54:24 +08002079 err = ext4_bio_write_page(&mpd->io_submit, page, len, false);
Jan Kara5f1132b2013-08-17 10:02:33 -04002080 if (!err)
2081 mpd->wbc->nr_to_write--;
2082 mpd->first_page++;
2083
2084 return err;
2085}
2086
Ritesh Harjani6db07462020-05-10 11:54:51 +05302087#define BH_FLAGS (BIT(BH_Unwritten) | BIT(BH_Delay))
Jan Kara4e7ea812013-06-04 13:17:40 -04002088
Mingming Cao61628a32008-07-11 19:27:31 -04002089/*
Jan Karafffb2732013-06-04 13:01:11 -04002090 * mballoc gives us at most this number of blocks...
2091 * XXX: That seems to be only a limitation of ext4_mb_normalize_request().
Anatol Pomozov70261f52013-08-28 14:40:12 -04002092 * The rest of mballoc seems to handle chunks up to full group size.
Mingming Cao61628a32008-07-11 19:27:31 -04002093 */
Jan Karafffb2732013-06-04 13:01:11 -04002094#define MAX_WRITEPAGES_EXTENT_LEN 2048
Mingming Cao525f4ed2008-08-19 22:15:58 -04002095
Jan Karafffb2732013-06-04 13:01:11 -04002096/*
Jan Kara4e7ea812013-06-04 13:17:40 -04002097 * mpage_add_bh_to_extent - try to add bh to extent of blocks to map
2098 *
2099 * @mpd - extent of blocks
2100 * @lblk - logical number of the block in the file
Jan Kara09930042013-08-17 09:57:56 -04002101 * @bh - buffer head we want to add to the extent
Jan Kara4e7ea812013-06-04 13:17:40 -04002102 *
Jan Kara09930042013-08-17 09:57:56 -04002103 * The function is used to collect contig. blocks in the same state. If the
2104 * buffer doesn't require mapping for writeback and we haven't started the
2105 * extent of buffers to map yet, the function returns 'true' immediately - the
2106 * caller can write the buffer right away. Otherwise the function returns true
2107 * if the block has been added to the extent, false if the block couldn't be
2108 * added.
Jan Kara4e7ea812013-06-04 13:17:40 -04002109 */
Jan Kara09930042013-08-17 09:57:56 -04002110static bool mpage_add_bh_to_extent(struct mpage_da_data *mpd, ext4_lblk_t lblk,
2111 struct buffer_head *bh)
Jan Kara4e7ea812013-06-04 13:17:40 -04002112{
2113 struct ext4_map_blocks *map = &mpd->map;
2114
Jan Kara09930042013-08-17 09:57:56 -04002115 /* Buffer that doesn't need mapping for writeback? */
2116 if (!buffer_dirty(bh) || !buffer_mapped(bh) ||
2117 (!buffer_delay(bh) && !buffer_unwritten(bh))) {
2118 /* So far no extent to map => we write the buffer right away */
2119 if (map->m_len == 0)
2120 return true;
2121 return false;
2122 }
Jan Kara4e7ea812013-06-04 13:17:40 -04002123
2124 /* First block in the extent? */
2125 if (map->m_len == 0) {
Jan Karadddbd6a2017-04-30 18:29:10 -04002126 /* We cannot map unless handle is started... */
2127 if (!mpd->do_map)
2128 return false;
Jan Kara4e7ea812013-06-04 13:17:40 -04002129 map->m_lblk = lblk;
2130 map->m_len = 1;
Jan Kara09930042013-08-17 09:57:56 -04002131 map->m_flags = bh->b_state & BH_FLAGS;
2132 return true;
Jan Kara4e7ea812013-06-04 13:17:40 -04002133 }
2134
Jan Kara09930042013-08-17 09:57:56 -04002135 /* Don't go larger than mballoc is willing to allocate */
2136 if (map->m_len >= MAX_WRITEPAGES_EXTENT_LEN)
2137 return false;
2138
Jan Kara4e7ea812013-06-04 13:17:40 -04002139 /* Can we merge the block to our big extent? */
2140 if (lblk == map->m_lblk + map->m_len &&
Jan Kara09930042013-08-17 09:57:56 -04002141 (bh->b_state & BH_FLAGS) == map->m_flags) {
Jan Kara4e7ea812013-06-04 13:17:40 -04002142 map->m_len++;
Jan Kara09930042013-08-17 09:57:56 -04002143 return true;
Jan Kara4e7ea812013-06-04 13:17:40 -04002144 }
Jan Kara09930042013-08-17 09:57:56 -04002145 return false;
Jan Kara4e7ea812013-06-04 13:17:40 -04002146}
2147
Jan Kara5f1132b2013-08-17 10:02:33 -04002148/*
2149 * mpage_process_page_bufs - submit page buffers for IO or add them to extent
2150 *
2151 * @mpd - extent of blocks for mapping
2152 * @head - the first buffer in the page
2153 * @bh - buffer we should start processing from
2154 * @lblk - logical number of the block in the file corresponding to @bh
2155 *
2156 * Walk through page buffers from @bh upto @head (exclusive) and either submit
2157 * the page for IO if all buffers in this page were mapped and there's no
2158 * accumulated extent of buffers to map or add buffers in the page to the
2159 * extent of buffers to map. The function returns 1 if the caller can continue
2160 * by processing the next page, 0 if it should stop adding buffers to the
2161 * extent to map because we cannot extend it anymore. It can also return value
2162 * < 0 in case of error during IO submission.
2163 */
2164static int mpage_process_page_bufs(struct mpage_da_data *mpd,
2165 struct buffer_head *head,
2166 struct buffer_head *bh,
2167 ext4_lblk_t lblk)
Jan Kara4e7ea812013-06-04 13:17:40 -04002168{
2169 struct inode *inode = mpd->inode;
Jan Kara5f1132b2013-08-17 10:02:33 -04002170 int err;
Fabian Frederick93407472017-02-27 14:28:32 -08002171 ext4_lblk_t blocks = (i_size_read(inode) + i_blocksize(inode) - 1)
Jan Kara4e7ea812013-06-04 13:17:40 -04002172 >> inode->i_blkbits;
2173
Eric Biggersc93d8f82019-07-22 09:26:24 -07002174 if (ext4_verity_in_progress(inode))
2175 blocks = EXT_MAX_BLOCKS;
2176
Jan Kara4e7ea812013-06-04 13:17:40 -04002177 do {
2178 BUG_ON(buffer_locked(bh));
2179
Jan Kara09930042013-08-17 09:57:56 -04002180 if (lblk >= blocks || !mpage_add_bh_to_extent(mpd, lblk, bh)) {
Jan Kara4e7ea812013-06-04 13:17:40 -04002181 /* Found extent to map? */
2182 if (mpd->map.m_len)
Jan Kara5f1132b2013-08-17 10:02:33 -04002183 return 0;
Jan Karadddbd6a2017-04-30 18:29:10 -04002184 /* Buffer needs mapping and handle is not started? */
2185 if (!mpd->do_map)
2186 return 0;
Jan Kara09930042013-08-17 09:57:56 -04002187 /* Everything mapped so far and we hit EOF */
Jan Kara5f1132b2013-08-17 10:02:33 -04002188 break;
Jan Kara4e7ea812013-06-04 13:17:40 -04002189 }
Jan Kara4e7ea812013-06-04 13:17:40 -04002190 } while (lblk++, (bh = bh->b_this_page) != head);
Jan Kara5f1132b2013-08-17 10:02:33 -04002191 /* So far everything mapped? Submit the page for IO. */
2192 if (mpd->map.m_len == 0) {
2193 err = mpage_submit_page(mpd, head->b_page);
2194 if (err < 0)
2195 return err;
2196 }
Jan Kara6b8ed622020-05-25 10:12:15 +02002197 if (lblk >= blocks) {
2198 mpd->scanned_until_end = 1;
2199 return 0;
2200 }
2201 return 1;
Jan Kara4e7ea812013-06-04 13:17:40 -04002202}
2203
2204/*
Ritesh Harjani2943fdb2019-10-16 13:07:09 +05302205 * mpage_process_page - update page buffers corresponding to changed extent and
2206 * may submit fully mapped page for IO
2207 *
2208 * @mpd - description of extent to map, on return next extent to map
2209 * @m_lblk - logical block mapping.
2210 * @m_pblk - corresponding physical mapping.
2211 * @map_bh - determines on return whether this page requires any further
2212 * mapping or not.
2213 * Scan given page buffers corresponding to changed extent and update buffer
2214 * state according to new extent state.
2215 * We map delalloc buffers to their physical location, clear unwritten bits.
2216 * If the given page is not fully mapped, we update @map to the next extent in
2217 * the given page that needs mapping & return @map_bh as true.
2218 */
2219static int mpage_process_page(struct mpage_da_data *mpd, struct page *page,
2220 ext4_lblk_t *m_lblk, ext4_fsblk_t *m_pblk,
2221 bool *map_bh)
2222{
2223 struct buffer_head *head, *bh;
2224 ext4_io_end_t *io_end = mpd->io_submit.io_end;
2225 ext4_lblk_t lblk = *m_lblk;
2226 ext4_fsblk_t pblock = *m_pblk;
2227 int err = 0;
Ritesh Harjanic8cc8812019-10-16 13:07:10 +05302228 int blkbits = mpd->inode->i_blkbits;
2229 ssize_t io_end_size = 0;
2230 struct ext4_io_end_vec *io_end_vec = ext4_last_io_end_vec(io_end);
Ritesh Harjani2943fdb2019-10-16 13:07:09 +05302231
2232 bh = head = page_buffers(page);
2233 do {
2234 if (lblk < mpd->map.m_lblk)
2235 continue;
2236 if (lblk >= mpd->map.m_lblk + mpd->map.m_len) {
2237 /*
2238 * Buffer after end of mapped extent.
2239 * Find next buffer in the page to map.
2240 */
2241 mpd->map.m_len = 0;
2242 mpd->map.m_flags = 0;
Ritesh Harjanic8cc8812019-10-16 13:07:10 +05302243 io_end_vec->size += io_end_size;
Ritesh Harjani2943fdb2019-10-16 13:07:09 +05302244
Ritesh Harjani2943fdb2019-10-16 13:07:09 +05302245 err = mpage_process_page_bufs(mpd, head, bh, lblk);
2246 if (err > 0)
2247 err = 0;
Ritesh Harjanic8cc8812019-10-16 13:07:10 +05302248 if (!err && mpd->map.m_len && mpd->map.m_lblk > lblk) {
2249 io_end_vec = ext4_alloc_io_end_vec(io_end);
Ritesh Harjani4d06bfb2019-11-06 15:08:09 +05302250 if (IS_ERR(io_end_vec)) {
2251 err = PTR_ERR(io_end_vec);
2252 goto out;
2253 }
Ritesh Harjanid1e18b82020-10-08 20:32:48 +05302254 io_end_vec->offset = (loff_t)mpd->map.m_lblk << blkbits;
Ritesh Harjanic8cc8812019-10-16 13:07:10 +05302255 }
Ritesh Harjani2943fdb2019-10-16 13:07:09 +05302256 *map_bh = true;
2257 goto out;
2258 }
2259 if (buffer_delay(bh)) {
2260 clear_buffer_delay(bh);
2261 bh->b_blocknr = pblock++;
2262 }
2263 clear_buffer_unwritten(bh);
Ritesh Harjanic8cc8812019-10-16 13:07:10 +05302264 io_end_size += (1 << blkbits);
Ritesh Harjani2943fdb2019-10-16 13:07:09 +05302265 } while (lblk++, (bh = bh->b_this_page) != head);
Ritesh Harjanic8cc8812019-10-16 13:07:10 +05302266
2267 io_end_vec->size += io_end_size;
Ritesh Harjani2943fdb2019-10-16 13:07:09 +05302268 *map_bh = false;
2269out:
2270 *m_lblk = lblk;
2271 *m_pblk = pblock;
2272 return err;
2273}
2274
2275/*
Jan Kara4e7ea812013-06-04 13:17:40 -04002276 * mpage_map_buffers - update buffers corresponding to changed extent and
2277 * submit fully mapped pages for IO
2278 *
2279 * @mpd - description of extent to map, on return next extent to map
2280 *
2281 * Scan buffers corresponding to changed extent (we expect corresponding pages
2282 * to be already locked) and update buffer state according to new extent state.
2283 * We map delalloc buffers to their physical location, clear unwritten bits,
Lukas Czerner556615d2014-04-20 23:45:47 -04002284 * and mark buffers as uninit when we perform writes to unwritten extents
Jan Kara4e7ea812013-06-04 13:17:40 -04002285 * and do extent conversion after IO is finished. If the last page is not fully
2286 * mapped, we update @map to the next extent in the last page that needs
2287 * mapping. Otherwise we submit the page for IO.
2288 */
2289static int mpage_map_and_submit_buffers(struct mpage_da_data *mpd)
2290{
2291 struct pagevec pvec;
2292 int nr_pages, i;
2293 struct inode *inode = mpd->inode;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002294 int bpp_bits = PAGE_SHIFT - inode->i_blkbits;
Jan Kara4e7ea812013-06-04 13:17:40 -04002295 pgoff_t start, end;
2296 ext4_lblk_t lblk;
Ritesh Harjani2943fdb2019-10-16 13:07:09 +05302297 ext4_fsblk_t pblock;
Jan Kara4e7ea812013-06-04 13:17:40 -04002298 int err;
Ritesh Harjani2943fdb2019-10-16 13:07:09 +05302299 bool map_bh = false;
Jan Kara4e7ea812013-06-04 13:17:40 -04002300
2301 start = mpd->map.m_lblk >> bpp_bits;
2302 end = (mpd->map.m_lblk + mpd->map.m_len - 1) >> bpp_bits;
2303 lblk = start << bpp_bits;
2304 pblock = mpd->map.m_pblk;
2305
Mel Gorman86679822017-11-15 17:37:52 -08002306 pagevec_init(&pvec);
Jan Kara4e7ea812013-06-04 13:17:40 -04002307 while (start <= end) {
Jan Kara2b85a612017-09-06 16:21:30 -07002308 nr_pages = pagevec_lookup_range(&pvec, inode->i_mapping,
Jan Kara397162f2017-09-06 16:21:43 -07002309 &start, end);
Jan Kara4e7ea812013-06-04 13:17:40 -04002310 if (nr_pages == 0)
2311 break;
2312 for (i = 0; i < nr_pages; i++) {
2313 struct page *page = pvec.pages[i];
2314
Ritesh Harjani2943fdb2019-10-16 13:07:09 +05302315 err = mpage_process_page(mpd, page, &lblk, &pblock,
2316 &map_bh);
Jan Kara4e7ea812013-06-04 13:17:40 -04002317 /*
Ritesh Harjani2943fdb2019-10-16 13:07:09 +05302318 * If map_bh is true, means page may require further bh
2319 * mapping, or maybe the page was submitted for IO.
2320 * So we return to call further extent mapping.
Jan Kara4e7ea812013-06-04 13:17:40 -04002321 */
Jason Yan39c0ae12020-04-20 12:29:18 +08002322 if (err < 0 || map_bh)
Ritesh Harjani2943fdb2019-10-16 13:07:09 +05302323 goto out;
Jan Kara4e7ea812013-06-04 13:17:40 -04002324 /* Page fully mapped - let IO run! */
2325 err = mpage_submit_page(mpd, page);
Ritesh Harjani2943fdb2019-10-16 13:07:09 +05302326 if (err < 0)
2327 goto out;
Jan Kara4e7ea812013-06-04 13:17:40 -04002328 }
2329 pagevec_release(&pvec);
2330 }
2331 /* Extent fully mapped and matches with page boundary. We are done. */
2332 mpd->map.m_len = 0;
2333 mpd->map.m_flags = 0;
2334 return 0;
Ritesh Harjani2943fdb2019-10-16 13:07:09 +05302335out:
2336 pagevec_release(&pvec);
2337 return err;
Jan Kara4e7ea812013-06-04 13:17:40 -04002338}
2339
2340static int mpage_map_one_extent(handle_t *handle, struct mpage_da_data *mpd)
2341{
2342 struct inode *inode = mpd->inode;
2343 struct ext4_map_blocks *map = &mpd->map;
2344 int get_blocks_flags;
Lukas Czerner090f32e2014-04-20 23:44:47 -04002345 int err, dioread_nolock;
Jan Kara4e7ea812013-06-04 13:17:40 -04002346
2347 trace_ext4_da_write_pages_extent(inode, map);
2348 /*
2349 * Call ext4_map_blocks() to allocate any delayed allocation blocks, or
Lukas Czerner556615d2014-04-20 23:45:47 -04002350 * to convert an unwritten extent to be initialized (in the case
Jan Kara4e7ea812013-06-04 13:17:40 -04002351 * where we have written into one or more preallocated blocks). It is
2352 * possible that we're going to need more metadata blocks than
2353 * previously reserved. However we must not fail because we're in
2354 * writeback and there is nothing we can do about it so it might result
2355 * in data loss. So use reserved blocks to allocate metadata if
2356 * possible.
2357 *
Theodore Ts'o754cfed2014-09-04 18:08:22 -04002358 * We pass in the magic EXT4_GET_BLOCKS_DELALLOC_RESERVE if
2359 * the blocks in question are delalloc blocks. This indicates
2360 * that the blocks and quotas has already been checked when
2361 * the data was copied into the page cache.
Jan Kara4e7ea812013-06-04 13:17:40 -04002362 */
2363 get_blocks_flags = EXT4_GET_BLOCKS_CREATE |
Jan Karaee0876b2016-04-24 00:56:08 -04002364 EXT4_GET_BLOCKS_METADATA_NOFAIL |
2365 EXT4_GET_BLOCKS_IO_SUBMIT;
Lukas Czerner090f32e2014-04-20 23:44:47 -04002366 dioread_nolock = ext4_should_dioread_nolock(inode);
2367 if (dioread_nolock)
Jan Kara4e7ea812013-06-04 13:17:40 -04002368 get_blocks_flags |= EXT4_GET_BLOCKS_IO_CREATE_EXT;
Ritesh Harjani6db07462020-05-10 11:54:51 +05302369 if (map->m_flags & BIT(BH_Delay))
Jan Kara4e7ea812013-06-04 13:17:40 -04002370 get_blocks_flags |= EXT4_GET_BLOCKS_DELALLOC_RESERVE;
2371
2372 err = ext4_map_blocks(handle, inode, map, get_blocks_flags);
2373 if (err < 0)
2374 return err;
Lukas Czerner090f32e2014-04-20 23:44:47 -04002375 if (dioread_nolock && (map->m_flags & EXT4_MAP_UNWRITTEN)) {
Jan Kara6b523df2013-06-04 13:21:11 -04002376 if (!mpd->io_submit.io_end->handle &&
2377 ext4_handle_valid(handle)) {
2378 mpd->io_submit.io_end->handle = handle->h_rsv_handle;
2379 handle->h_rsv_handle = NULL;
2380 }
Jan Kara3613d222013-06-04 13:19:34 -04002381 ext4_set_io_unwritten_flag(inode, mpd->io_submit.io_end);
Jan Kara6b523df2013-06-04 13:21:11 -04002382 }
Jan Kara4e7ea812013-06-04 13:17:40 -04002383
2384 BUG_ON(map->m_len == 0);
Jan Kara4e7ea812013-06-04 13:17:40 -04002385 return 0;
2386}
2387
2388/*
2389 * mpage_map_and_submit_extent - map extent starting at mpd->lblk of length
2390 * mpd->len and submit pages underlying it for IO
2391 *
2392 * @handle - handle for journal operations
2393 * @mpd - extent to map
Jan Kara7534e852013-10-16 08:26:08 -04002394 * @give_up_on_write - we set this to true iff there is a fatal error and there
2395 * is no hope of writing the data. The caller should discard
2396 * dirty pages to avoid infinite loops.
Jan Kara4e7ea812013-06-04 13:17:40 -04002397 *
2398 * The function maps extent starting at mpd->lblk of length mpd->len. If it is
2399 * delayed, blocks are allocated, if it is unwritten, we may need to convert
2400 * them to initialized or split the described range from larger unwritten
2401 * extent. Note that we need not map all the described range since allocation
2402 * can return less blocks or the range is covered by more unwritten extents. We
2403 * cannot map more because we are limited by reserved transaction credits. On
2404 * the other hand we always make sure that the last touched page is fully
2405 * mapped so that it can be written out (and thus forward progress is
2406 * guaranteed). After mapping we submit all mapped pages for IO.
2407 */
2408static int mpage_map_and_submit_extent(handle_t *handle,
Theodore Ts'ocb530542013-07-01 08:12:40 -04002409 struct mpage_da_data *mpd,
2410 bool *give_up_on_write)
Jan Kara4e7ea812013-06-04 13:17:40 -04002411{
2412 struct inode *inode = mpd->inode;
2413 struct ext4_map_blocks *map = &mpd->map;
2414 int err;
2415 loff_t disksize;
Dmitry Monakhov66031202014-08-27 18:40:03 -04002416 int progress = 0;
Ritesh Harjanic8cc8812019-10-16 13:07:10 +05302417 ext4_io_end_t *io_end = mpd->io_submit.io_end;
Ritesh Harjani4d06bfb2019-11-06 15:08:09 +05302418 struct ext4_io_end_vec *io_end_vec;
Jan Kara4e7ea812013-06-04 13:17:40 -04002419
Ritesh Harjani4d06bfb2019-11-06 15:08:09 +05302420 io_end_vec = ext4_alloc_io_end_vec(io_end);
2421 if (IS_ERR(io_end_vec))
2422 return PTR_ERR(io_end_vec);
Ritesh Harjanic8cc8812019-10-16 13:07:10 +05302423 io_end_vec->offset = ((loff_t)map->m_lblk) << inode->i_blkbits;
Jan Kara27d7c4e2013-07-05 21:57:22 -04002424 do {
Jan Kara4e7ea812013-06-04 13:17:40 -04002425 err = mpage_map_one_extent(handle, mpd);
2426 if (err < 0) {
2427 struct super_block *sb = inode->i_sb;
2428
Theodore Ts'o0db1ff22017-02-05 01:28:48 -05002429 if (ext4_forced_shutdown(EXT4_SB(sb)) ||
Harshad Shirwadkar9b5f6c92020-11-05 19:59:09 -08002430 ext4_test_mount_flag(sb, EXT4_MF_FS_ABORTED))
Theodore Ts'ocb530542013-07-01 08:12:40 -04002431 goto invalidate_dirty_pages;
Jan Kara4e7ea812013-06-04 13:17:40 -04002432 /*
Theodore Ts'ocb530542013-07-01 08:12:40 -04002433 * Let the uper layers retry transient errors.
2434 * In the case of ENOSPC, if ext4_count_free_blocks()
2435 * is non-zero, a commit should free up blocks.
Jan Kara4e7ea812013-06-04 13:17:40 -04002436 */
Theodore Ts'ocb530542013-07-01 08:12:40 -04002437 if ((err == -ENOMEM) ||
Dmitry Monakhov66031202014-08-27 18:40:03 -04002438 (err == -ENOSPC && ext4_count_free_clusters(sb))) {
2439 if (progress)
2440 goto update_disksize;
Theodore Ts'ocb530542013-07-01 08:12:40 -04002441 return err;
Dmitry Monakhov66031202014-08-27 18:40:03 -04002442 }
Theodore Ts'ocb530542013-07-01 08:12:40 -04002443 ext4_msg(sb, KERN_CRIT,
2444 "Delayed block allocation failed for "
2445 "inode %lu at logical offset %llu with"
2446 " max blocks %u with error %d",
2447 inode->i_ino,
2448 (unsigned long long)map->m_lblk,
2449 (unsigned)map->m_len, -err);
2450 ext4_msg(sb, KERN_CRIT,
2451 "This should not happen!! Data will "
2452 "be lost\n");
2453 if (err == -ENOSPC)
2454 ext4_print_free_blocks(inode);
2455 invalidate_dirty_pages:
2456 *give_up_on_write = true;
Jan Kara4e7ea812013-06-04 13:17:40 -04002457 return err;
2458 }
Dmitry Monakhov66031202014-08-27 18:40:03 -04002459 progress = 1;
Jan Kara4e7ea812013-06-04 13:17:40 -04002460 /*
2461 * Update buffer state, submit mapped pages, and get us new
2462 * extent to map
2463 */
2464 err = mpage_map_and_submit_buffers(mpd);
2465 if (err < 0)
Dmitry Monakhov66031202014-08-27 18:40:03 -04002466 goto update_disksize;
Jan Kara27d7c4e2013-07-05 21:57:22 -04002467 } while (map->m_len);
Jan Kara4e7ea812013-06-04 13:17:40 -04002468
Dmitry Monakhov66031202014-08-27 18:40:03 -04002469update_disksize:
Theodore Ts'o622cad12014-04-11 10:35:17 -04002470 /*
2471 * Update on-disk size after IO is submitted. Races with
2472 * truncate are avoided by checking i_size under i_data_sem.
2473 */
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002474 disksize = ((loff_t)mpd->first_page) << PAGE_SHIFT;
Qian Cai35df4292020-02-07 09:29:11 -05002475 if (disksize > READ_ONCE(EXT4_I(inode)->i_disksize)) {
Jan Kara4e7ea812013-06-04 13:17:40 -04002476 int err2;
Theodore Ts'o622cad12014-04-11 10:35:17 -04002477 loff_t i_size;
Jan Kara4e7ea812013-06-04 13:17:40 -04002478
Theodore Ts'o622cad12014-04-11 10:35:17 -04002479 down_write(&EXT4_I(inode)->i_data_sem);
2480 i_size = i_size_read(inode);
2481 if (disksize > i_size)
2482 disksize = i_size;
2483 if (disksize > EXT4_I(inode)->i_disksize)
2484 EXT4_I(inode)->i_disksize = disksize;
Theodore Ts'o622cad12014-04-11 10:35:17 -04002485 up_write(&EXT4_I(inode)->i_data_sem);
Theodore Ts'ob907f2d2017-01-11 22:14:49 -05002486 err2 = ext4_mark_inode_dirty(handle, inode);
Theodore Ts'o878520a2019-11-19 21:54:15 -05002487 if (err2) {
Theodore Ts'o54d3adb2020-03-28 19:33:43 -04002488 ext4_error_err(inode->i_sb, -err2,
2489 "Failed to mark inode %lu dirty",
2490 inode->i_ino);
Theodore Ts'o878520a2019-11-19 21:54:15 -05002491 }
Jan Kara4e7ea812013-06-04 13:17:40 -04002492 if (!err)
2493 err = err2;
2494 }
2495 return err;
2496}
2497
2498/*
Jan Karafffb2732013-06-04 13:01:11 -04002499 * Calculate the total number of credits to reserve for one writepages
Theodore Ts'o20970ba2013-06-06 14:00:46 -04002500 * iteration. This is called from ext4_writepages(). We map an extent of
Anatol Pomozov70261f52013-08-28 14:40:12 -04002501 * up to MAX_WRITEPAGES_EXTENT_LEN blocks and then we go on and finish mapping
Jan Karafffb2732013-06-04 13:01:11 -04002502 * the last partial page. So in total we can map MAX_WRITEPAGES_EXTENT_LEN +
2503 * bpp - 1 blocks in bpp different extents.
2504 */
Mingming Cao525f4ed2008-08-19 22:15:58 -04002505static int ext4_da_writepages_trans_blocks(struct inode *inode)
2506{
Jan Karafffb2732013-06-04 13:01:11 -04002507 int bpp = ext4_journal_blocks_per_page(inode);
Mingming Cao525f4ed2008-08-19 22:15:58 -04002508
Jan Karafffb2732013-06-04 13:01:11 -04002509 return ext4_meta_trans_blocks(inode,
2510 MAX_WRITEPAGES_EXTENT_LEN + bpp - 1, bpp);
Mingming Cao525f4ed2008-08-19 22:15:58 -04002511}
Mingming Cao61628a32008-07-11 19:27:31 -04002512
Theodore Ts'o8e48dcf2010-05-16 18:00:00 -04002513/*
Jan Kara4e7ea812013-06-04 13:17:40 -04002514 * mpage_prepare_extent_to_map - find & lock contiguous range of dirty pages
2515 * and underlying extent to map
2516 *
2517 * @mpd - where to look for pages
2518 *
2519 * Walk dirty pages in the mapping. If they are fully mapped, submit them for
2520 * IO immediately. When we find a page which isn't mapped we start accumulating
2521 * extent of buffers underlying these pages that needs mapping (formed by
2522 * either delayed or unwritten buffers). We also lock the pages containing
2523 * these buffers. The extent found is returned in @mpd structure (starting at
2524 * mpd->lblk with length mpd->len blocks).
2525 *
2526 * Note that this function can attach bios to one io_end structure which are
2527 * neither logically nor physically contiguous. Although it may seem as an
2528 * unnecessary complication, it is actually inevitable in blocksize < pagesize
2529 * 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 -04002530 */
Jan Kara4e7ea812013-06-04 13:17:40 -04002531static int mpage_prepare_extent_to_map(struct mpage_da_data *mpd)
Theodore Ts'o8e48dcf2010-05-16 18:00:00 -04002532{
Jan Kara4e7ea812013-06-04 13:17:40 -04002533 struct address_space *mapping = mpd->inode->i_mapping;
2534 struct pagevec pvec;
2535 unsigned int nr_pages;
Ming Leiaeac5892013-10-17 18:56:16 -04002536 long left = mpd->wbc->nr_to_write;
Jan Kara4e7ea812013-06-04 13:17:40 -04002537 pgoff_t index = mpd->first_page;
2538 pgoff_t end = mpd->last_page;
Matthew Wilcox10bbd232017-12-05 17:30:38 -05002539 xa_mark_t tag;
Jan Kara4e7ea812013-06-04 13:17:40 -04002540 int i, err = 0;
2541 int blkbits = mpd->inode->i_blkbits;
2542 ext4_lblk_t lblk;
2543 struct buffer_head *head;
Theodore Ts'o8e48dcf2010-05-16 18:00:00 -04002544
Jan Kara4e7ea812013-06-04 13:17:40 -04002545 if (mpd->wbc->sync_mode == WB_SYNC_ALL || mpd->wbc->tagged_writepages)
Eric Sandeen5b41d922010-10-27 21:30:13 -04002546 tag = PAGECACHE_TAG_TOWRITE;
2547 else
2548 tag = PAGECACHE_TAG_DIRTY;
2549
Mel Gorman86679822017-11-15 17:37:52 -08002550 pagevec_init(&pvec);
Jan Kara4e7ea812013-06-04 13:17:40 -04002551 mpd->map.m_len = 0;
2552 mpd->next_page = index;
Theodore Ts'o4f01b022011-02-26 14:07:37 -05002553 while (index <= end) {
Jan Karadc7f3e82017-11-15 17:34:44 -08002554 nr_pages = pagevec_lookup_range_tag(&pvec, mapping, &index, end,
Jan Kara67fd7072017-11-15 17:35:19 -08002555 tag);
Theodore Ts'o8e48dcf2010-05-16 18:00:00 -04002556 if (nr_pages == 0)
Jan Kara6b8ed622020-05-25 10:12:15 +02002557 break;
Theodore Ts'o8e48dcf2010-05-16 18:00:00 -04002558
2559 for (i = 0; i < nr_pages; i++) {
2560 struct page *page = pvec.pages[i];
2561
2562 /*
Ming Leiaeac5892013-10-17 18:56:16 -04002563 * Accumulated enough dirty pages? This doesn't apply
2564 * to WB_SYNC_ALL mode. For integrity sync we have to
2565 * keep going because someone may be concurrently
2566 * dirtying pages, and we might have synced a lot of
2567 * newly appeared dirty pages, but have not synced all
2568 * of the old dirty pages.
2569 */
2570 if (mpd->wbc->sync_mode == WB_SYNC_NONE && left <= 0)
2571 goto out;
2572
Jan Kara4e7ea812013-06-04 13:17:40 -04002573 /* If we can't merge this page, we are done. */
2574 if (mpd->map.m_len > 0 && mpd->next_page != page->index)
2575 goto out;
Theodore Ts'o78aaced2011-02-26 14:09:14 -05002576
Theodore Ts'o8e48dcf2010-05-16 18:00:00 -04002577 lock_page(page);
Theodore Ts'o8e48dcf2010-05-16 18:00:00 -04002578 /*
Jan Kara4e7ea812013-06-04 13:17:40 -04002579 * If the page is no longer dirty, or its mapping no
2580 * longer corresponds to inode we are writing (which
2581 * means it has been truncated or invalidated), or the
2582 * page is already under writeback and we are not doing
2583 * a data integrity writeback, skip the page
Theodore Ts'o8e48dcf2010-05-16 18:00:00 -04002584 */
Theodore Ts'o4f01b022011-02-26 14:07:37 -05002585 if (!PageDirty(page) ||
2586 (PageWriteback(page) &&
Jan Kara4e7ea812013-06-04 13:17:40 -04002587 (mpd->wbc->sync_mode == WB_SYNC_NONE)) ||
Theodore Ts'o4f01b022011-02-26 14:07:37 -05002588 unlikely(page->mapping != mapping)) {
Theodore Ts'o8e48dcf2010-05-16 18:00:00 -04002589 unlock_page(page);
2590 continue;
2591 }
2592
Darrick J. Wong7cb1a532011-05-18 13:53:20 -04002593 wait_on_page_writeback(page);
Theodore Ts'o8e48dcf2010-05-16 18:00:00 -04002594 BUG_ON(PageWriteback(page));
Theodore Ts'o8e48dcf2010-05-16 18:00:00 -04002595
Jan Kara4e7ea812013-06-04 13:17:40 -04002596 if (mpd->map.m_len == 0)
Theodore Ts'o8eb9e5c2011-02-26 14:07:31 -05002597 mpd->first_page = page->index;
Theodore Ts'o8eb9e5c2011-02-26 14:07:31 -05002598 mpd->next_page = page->index + 1;
Jan Karaf8bec372013-01-28 12:55:08 -05002599 /* Add all dirty buffers to mpd */
Jan Kara4e7ea812013-06-04 13:17:40 -04002600 lblk = ((ext4_lblk_t)page->index) <<
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002601 (PAGE_SHIFT - blkbits);
Jan Karaf8bec372013-01-28 12:55:08 -05002602 head = page_buffers(page);
Jan Kara5f1132b2013-08-17 10:02:33 -04002603 err = mpage_process_page_bufs(mpd, head, head, lblk);
2604 if (err <= 0)
Jan Kara4e7ea812013-06-04 13:17:40 -04002605 goto out;
Jan Kara5f1132b2013-08-17 10:02:33 -04002606 err = 0;
Ming Leiaeac5892013-10-17 18:56:16 -04002607 left--;
Theodore Ts'o8e48dcf2010-05-16 18:00:00 -04002608 }
2609 pagevec_release(&pvec);
2610 cond_resched();
2611 }
Jan Kara6b8ed622020-05-25 10:12:15 +02002612 mpd->scanned_until_end = 1;
Theodore Ts'o4f01b022011-02-26 14:07:37 -05002613 return 0;
Theodore Ts'o8eb9e5c2011-02-26 14:07:31 -05002614out:
2615 pagevec_release(&pvec);
Jan Kara4e7ea812013-06-04 13:17:40 -04002616 return err;
Theodore Ts'o8e48dcf2010-05-16 18:00:00 -04002617}
2618
Theodore Ts'o20970ba2013-06-06 14:00:46 -04002619static int ext4_writepages(struct address_space *mapping,
2620 struct writeback_control *wbc)
Alex Tomas64769242008-07-11 19:27:31 -04002621{
Jan Kara4e7ea812013-06-04 13:17:40 -04002622 pgoff_t writeback_index = 0;
2623 long nr_to_write = wbc->nr_to_write;
Aneesh Kumar K.V22208de2008-10-16 10:10:36 -04002624 int range_whole = 0;
Jan Kara4e7ea812013-06-04 13:17:40 -04002625 int cycled = 1;
Mingming Cao61628a32008-07-11 19:27:31 -04002626 handle_t *handle = NULL;
Aneesh Kumar K.Vdf222912008-09-08 23:05:34 -04002627 struct mpage_da_data mpd;
Aneesh Kumar K.V5e745b02008-08-18 18:00:57 -04002628 struct inode *inode = mapping->host;
Jan Kara6b523df2013-06-04 13:21:11 -04002629 int needed_blocks, rsv_blocks = 0, ret = 0;
Aneesh Kumar K.V5e745b02008-08-18 18:00:57 -04002630 struct ext4_sb_info *sbi = EXT4_SB(mapping->host->i_sb);
Shaohua Li1bce63d12011-10-18 10:55:51 -04002631 struct blk_plug plug;
Theodore Ts'ocb530542013-07-01 08:12:40 -04002632 bool give_up_on_write = false;
Mingming Cao61628a32008-07-11 19:27:31 -04002633
Theodore Ts'o0db1ff22017-02-05 01:28:48 -05002634 if (unlikely(ext4_forced_shutdown(EXT4_SB(inode->i_sb))))
2635 return -EIO;
2636
Eric Biggersbbd55932020-02-19 10:30:46 -08002637 percpu_down_read(&sbi->s_writepages_rwsem);
Theodore Ts'o20970ba2013-06-06 14:00:46 -04002638 trace_ext4_writepages(inode, wbc);
Theodore Ts'oba80b102009-01-03 20:03:21 -05002639
Mingming Cao61628a32008-07-11 19:27:31 -04002640 /*
2641 * No pages to write? This is mainly a kludge to avoid starting
2642 * a transaction for special inodes like journal inode on last iput()
2643 * because that could violate lock ordering on umount
2644 */
Aneesh Kumar K.Va1d6cc52008-08-19 21:55:02 -04002645 if (!mapping->nrpages || !mapping_tagged(mapping, PAGECACHE_TAG_DIRTY))
Ming Leibbf023c72013-10-30 07:27:16 -04002646 goto out_writepages;
Theodore Ts'o2a21e372008-11-05 09:22:24 -05002647
Theodore Ts'o20970ba2013-06-06 14:00:46 -04002648 if (ext4_should_journal_data(inode)) {
Goldwyn Rodrigues043d20d2018-03-26 01:32:50 -04002649 ret = generic_writepages(mapping, wbc);
Ming Leibbf023c72013-10-30 07:27:16 -04002650 goto out_writepages;
Theodore Ts'o20970ba2013-06-06 14:00:46 -04002651 }
2652
Theodore Ts'o2a21e372008-11-05 09:22:24 -05002653 /*
2654 * If the filesystem has aborted, it is read-only, so return
2655 * right away instead of dumping stack traces later on that
2656 * will obscure the real source of the problem. We test
Linus Torvalds1751e8a2017-11-27 13:05:09 -08002657 * EXT4_MF_FS_ABORTED instead of sb->s_flag's SB_RDONLY because
Theodore Ts'o2a21e372008-11-05 09:22:24 -05002658 * the latter could be true if the filesystem is mounted
Theodore Ts'o20970ba2013-06-06 14:00:46 -04002659 * read-only, and in that case, ext4_writepages should
Theodore Ts'o2a21e372008-11-05 09:22:24 -05002660 * *never* be called, so if that ever happens, we would want
2661 * the stack trace.
2662 */
Theodore Ts'o0db1ff22017-02-05 01:28:48 -05002663 if (unlikely(ext4_forced_shutdown(EXT4_SB(mapping->host->i_sb)) ||
Harshad Shirwadkar9b5f6c92020-11-05 19:59:09 -08002664 ext4_test_mount_flag(inode->i_sb, EXT4_MF_FS_ABORTED))) {
Ming Leibbf023c72013-10-30 07:27:16 -04002665 ret = -EROFS;
2666 goto out_writepages;
2667 }
Theodore Ts'o2a21e372008-11-05 09:22:24 -05002668
Jan Kara4e7ea812013-06-04 13:17:40 -04002669 /*
2670 * If we have inline data and arrive here, it means that
2671 * we will soon create the block for the 1st page, so
2672 * we'd better clear the inline data here.
2673 */
2674 if (ext4_has_inline_data(inode)) {
2675 /* Just inode will be modified... */
2676 handle = ext4_journal_start(inode, EXT4_HT_INODE, 1);
2677 if (IS_ERR(handle)) {
2678 ret = PTR_ERR(handle);
2679 goto out_writepages;
2680 }
2681 BUG_ON(ext4_test_inode_state(inode,
2682 EXT4_STATE_MAY_INLINE_DATA));
2683 ext4_destroy_inline_data(handle, inode);
2684 ext4_journal_stop(handle);
2685 }
2686
yangerkun4e343232019-08-11 16:27:41 -04002687 if (ext4_should_dioread_nolock(inode)) {
2688 /*
2689 * We may need to convert up to one extent per block in
2690 * the page and we may dirty the inode.
2691 */
2692 rsv_blocks = 1 + ext4_chunk_trans_blocks(inode,
2693 PAGE_SIZE >> inode->i_blkbits);
2694 }
2695
Aneesh Kumar K.V22208de2008-10-16 10:10:36 -04002696 if (wbc->range_start == 0 && wbc->range_end == LLONG_MAX)
2697 range_whole = 1;
Mingming Cao61628a32008-07-11 19:27:31 -04002698
Aneesh Kumar K.V2acf2c22009-02-14 10:42:58 -05002699 if (wbc->range_cyclic) {
Jan Kara4e7ea812013-06-04 13:17:40 -04002700 writeback_index = mapping->writeback_index;
2701 if (writeback_index)
Aneesh Kumar K.V2acf2c22009-02-14 10:42:58 -05002702 cycled = 0;
Jan Kara4e7ea812013-06-04 13:17:40 -04002703 mpd.first_page = writeback_index;
2704 mpd.last_page = -1;
Eric Sandeen5b41d922010-10-27 21:30:13 -04002705 } else {
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002706 mpd.first_page = wbc->range_start >> PAGE_SHIFT;
2707 mpd.last_page = wbc->range_end >> PAGE_SHIFT;
Eric Sandeen5b41d922010-10-27 21:30:13 -04002708 }
Aneesh Kumar K.Va1d6cc52008-08-19 21:55:02 -04002709
Jan Kara4e7ea812013-06-04 13:17:40 -04002710 mpd.inode = inode;
2711 mpd.wbc = wbc;
2712 ext4_io_submit_init(&mpd.io_submit, wbc);
Aneesh Kumar K.V2acf2c22009-02-14 10:42:58 -05002713retry:
Wu Fengguang6e6938b2010-06-06 10:38:15 -06002714 if (wbc->sync_mode == WB_SYNC_ALL || wbc->tagged_writepages)
Jan Kara4e7ea812013-06-04 13:17:40 -04002715 tag_pages_for_writeback(mapping, mpd.first_page, mpd.last_page);
Shaohua Li1bce63d12011-10-18 10:55:51 -04002716 blk_start_plug(&plug);
Jan Karadddbd6a2017-04-30 18:29:10 -04002717
2718 /*
2719 * First writeback pages that don't need mapping - we can avoid
2720 * starting a transaction unnecessarily and also avoid being blocked
2721 * in the block layer on device congestion while having transaction
2722 * started.
2723 */
2724 mpd.do_map = 0;
Jan Kara6b8ed622020-05-25 10:12:15 +02002725 mpd.scanned_until_end = 0;
Jan Karadddbd6a2017-04-30 18:29:10 -04002726 mpd.io_submit.io_end = ext4_init_io_end(inode, GFP_KERNEL);
2727 if (!mpd.io_submit.io_end) {
2728 ret = -ENOMEM;
2729 goto unplug;
2730 }
2731 ret = mpage_prepare_extent_to_map(&mpd);
Xiaoguang Wanga297b2f2019-02-10 23:53:21 -05002732 /* Unlock pages we didn't use */
2733 mpage_release_unused_pages(&mpd, false);
Jan Karadddbd6a2017-04-30 18:29:10 -04002734 /* Submit prepared bio */
2735 ext4_io_submit(&mpd.io_submit);
2736 ext4_put_io_end_defer(mpd.io_submit.io_end);
2737 mpd.io_submit.io_end = NULL;
Jan Karadddbd6a2017-04-30 18:29:10 -04002738 if (ret < 0)
2739 goto unplug;
2740
Jan Kara6b8ed622020-05-25 10:12:15 +02002741 while (!mpd.scanned_until_end && wbc->nr_to_write > 0) {
Jan Kara4e7ea812013-06-04 13:17:40 -04002742 /* For each extent of pages we use new io_end */
2743 mpd.io_submit.io_end = ext4_init_io_end(inode, GFP_KERNEL);
2744 if (!mpd.io_submit.io_end) {
2745 ret = -ENOMEM;
2746 break;
2747 }
Aneesh Kumar K.Va1d6cc52008-08-19 21:55:02 -04002748
2749 /*
Jan Kara4e7ea812013-06-04 13:17:40 -04002750 * We have two constraints: We find one extent to map and we
2751 * must always write out whole page (makes a difference when
2752 * blocksize < pagesize) so that we don't block on IO when we
2753 * try to write out the rest of the page. Journalled mode is
2754 * not supported by delalloc.
Aneesh Kumar K.Va1d6cc52008-08-19 21:55:02 -04002755 */
2756 BUG_ON(ext4_should_journal_data(inode));
Mingming Cao525f4ed2008-08-19 22:15:58 -04002757 needed_blocks = ext4_da_writepages_trans_blocks(inode);
Aneesh Kumar K.Va1d6cc52008-08-19 21:55:02 -04002758
Jan Kara4e7ea812013-06-04 13:17:40 -04002759 /* start a new transaction */
Jan Kara6b523df2013-06-04 13:21:11 -04002760 handle = ext4_journal_start_with_reserve(inode,
2761 EXT4_HT_WRITE_PAGE, needed_blocks, rsv_blocks);
Mingming Cao61628a32008-07-11 19:27:31 -04002762 if (IS_ERR(handle)) {
2763 ret = PTR_ERR(handle);
Theodore Ts'o16939182009-09-26 17:43:59 -04002764 ext4_msg(inode->i_sb, KERN_CRIT, "%s: jbd2_start: "
Curt Wohlgemuthfbe845d2010-05-16 13:00:00 -04002765 "%ld pages, ino %lu; err %d", __func__,
Aneesh Kumar K.Va1d6cc52008-08-19 21:55:02 -04002766 wbc->nr_to_write, inode->i_ino, ret);
Jan Kara4e7ea812013-06-04 13:17:40 -04002767 /* Release allocated io_end */
2768 ext4_put_io_end(mpd.io_submit.io_end);
Jan Karadddbd6a2017-04-30 18:29:10 -04002769 mpd.io_submit.io_end = NULL;
Jan Kara4e7ea812013-06-04 13:17:40 -04002770 break;
Mingming Cao61628a32008-07-11 19:27:31 -04002771 }
Jan Karadddbd6a2017-04-30 18:29:10 -04002772 mpd.do_map = 1;
Theodore Ts'of63e60052009-02-23 16:42:39 -05002773
Jan Kara4e7ea812013-06-04 13:17:40 -04002774 trace_ext4_da_write_pages(inode, mpd.first_page, mpd.wbc);
2775 ret = mpage_prepare_extent_to_map(&mpd);
Jan Kara6b8ed622020-05-25 10:12:15 +02002776 if (!ret && mpd.map.m_len)
2777 ret = mpage_map_and_submit_extent(handle, &mpd,
Theodore Ts'ocb530542013-07-01 08:12:40 -04002778 &give_up_on_write);
Jan Kara646caa92016-07-04 10:14:01 -04002779 /*
2780 * Caution: If the handle is synchronous,
2781 * ext4_journal_stop() can wait for transaction commit
2782 * to finish which may depend on writeback of pages to
2783 * complete or on page lock to be released. In that
Randy Dunlapb483bb72020-08-04 19:48:50 -07002784 * case, we have to wait until after we have
Jan Kara646caa92016-07-04 10:14:01 -04002785 * submitted all the IO, released page locks we hold,
2786 * and dropped io_end reference (for extent conversion
2787 * to be able to complete) before stopping the handle.
2788 */
2789 if (!ext4_handle_valid(handle) || handle->h_sync == 0) {
2790 ext4_journal_stop(handle);
2791 handle = NULL;
Jan Karadddbd6a2017-04-30 18:29:10 -04002792 mpd.do_map = 0;
Jan Kara646caa92016-07-04 10:14:01 -04002793 }
Jan Kara4e7ea812013-06-04 13:17:40 -04002794 /* Unlock pages we didn't use */
Theodore Ts'ocb530542013-07-01 08:12:40 -04002795 mpage_release_unused_pages(&mpd, give_up_on_write);
Xiaoguang Wanga297b2f2019-02-10 23:53:21 -05002796 /* Submit prepared bio */
2797 ext4_io_submit(&mpd.io_submit);
2798
Jan Kara646caa92016-07-04 10:14:01 -04002799 /*
2800 * Drop our io_end reference we got from init. We have
2801 * to be careful and use deferred io_end finishing if
2802 * we are still holding the transaction as we can
2803 * release the last reference to io_end which may end
2804 * up doing unwritten extent conversion.
2805 */
2806 if (handle) {
2807 ext4_put_io_end_defer(mpd.io_submit.io_end);
2808 ext4_journal_stop(handle);
2809 } else
2810 ext4_put_io_end(mpd.io_submit.io_end);
Jan Karadddbd6a2017-04-30 18:29:10 -04002811 mpd.io_submit.io_end = NULL;
Aneesh Kumar K.Vdf222912008-09-08 23:05:34 -04002812
Jan Kara4e7ea812013-06-04 13:17:40 -04002813 if (ret == -ENOSPC && sbi->s_journal) {
2814 /*
2815 * Commit the transaction which would
Aneesh Kumar K.V22208de2008-10-16 10:10:36 -04002816 * free blocks released in the transaction
2817 * and try again
2818 */
Aneesh Kumar K.Vdf222912008-09-08 23:05:34 -04002819 jbd2_journal_force_commit_nested(sbi->s_journal);
Aneesh Kumar K.V22208de2008-10-16 10:10:36 -04002820 ret = 0;
Jan Kara4e7ea812013-06-04 13:17:40 -04002821 continue;
2822 }
2823 /* Fatal error - ENOMEM, EIO... */
2824 if (ret)
Mingming Cao61628a32008-07-11 19:27:31 -04002825 break;
Mingming Cao61628a32008-07-11 19:27:31 -04002826 }
Jan Karadddbd6a2017-04-30 18:29:10 -04002827unplug:
Shaohua Li1bce63d12011-10-18 10:55:51 -04002828 blk_finish_plug(&plug);
Jan Kara9c12a832013-09-16 08:24:26 -04002829 if (!ret && !cycled && wbc->nr_to_write > 0) {
Aneesh Kumar K.V2acf2c22009-02-14 10:42:58 -05002830 cycled = 1;
Jan Kara4e7ea812013-06-04 13:17:40 -04002831 mpd.last_page = writeback_index - 1;
2832 mpd.first_page = 0;
Aneesh Kumar K.V2acf2c22009-02-14 10:42:58 -05002833 goto retry;
2834 }
Mingming Cao61628a32008-07-11 19:27:31 -04002835
Aneesh Kumar K.V22208de2008-10-16 10:10:36 -04002836 /* Update index */
Aneesh Kumar K.V22208de2008-10-16 10:10:36 -04002837 if (wbc->range_cyclic || (range_whole && wbc->nr_to_write > 0))
2838 /*
Jan Kara4e7ea812013-06-04 13:17:40 -04002839 * Set the writeback_index so that range_cyclic
Aneesh Kumar K.V22208de2008-10-16 10:10:36 -04002840 * mode will write it back later
2841 */
Jan Kara4e7ea812013-06-04 13:17:40 -04002842 mapping->writeback_index = mpd.first_page;
Aneesh Kumar K.Va1d6cc52008-08-19 21:55:02 -04002843
Mingming Cao61628a32008-07-11 19:27:31 -04002844out_writepages:
Theodore Ts'o20970ba2013-06-06 14:00:46 -04002845 trace_ext4_writepages_result(inode, wbc, ret,
2846 nr_to_write - wbc->nr_to_write);
Eric Biggersbbd55932020-02-19 10:30:46 -08002847 percpu_up_read(&sbi->s_writepages_rwsem);
Mingming Cao61628a32008-07-11 19:27:31 -04002848 return ret;
Alex Tomas64769242008-07-11 19:27:31 -04002849}
2850
Dan Williams5f0663b2017-12-21 12:25:11 -08002851static int ext4_dax_writepages(struct address_space *mapping,
2852 struct writeback_control *wbc)
2853{
2854 int ret;
2855 long nr_to_write = wbc->nr_to_write;
2856 struct inode *inode = mapping->host;
2857 struct ext4_sb_info *sbi = EXT4_SB(mapping->host->i_sb);
2858
2859 if (unlikely(ext4_forced_shutdown(EXT4_SB(inode->i_sb))))
2860 return -EIO;
2861
Eric Biggersbbd55932020-02-19 10:30:46 -08002862 percpu_down_read(&sbi->s_writepages_rwsem);
Dan Williams5f0663b2017-12-21 12:25:11 -08002863 trace_ext4_writepages(inode, wbc);
2864
Vivek Goyal3f666c52020-01-03 13:33:07 -05002865 ret = dax_writeback_mapping_range(mapping, sbi->s_daxdev, wbc);
Dan Williams5f0663b2017-12-21 12:25:11 -08002866 trace_ext4_writepages_result(inode, wbc, ret,
2867 nr_to_write - wbc->nr_to_write);
Eric Biggersbbd55932020-02-19 10:30:46 -08002868 percpu_up_read(&sbi->s_writepages_rwsem);
Dan Williams5f0663b2017-12-21 12:25:11 -08002869 return ret;
2870}
2871
Aneesh Kumar K.V79f0be82008-10-08 23:13:30 -04002872static int ext4_nonda_switch(struct super_block *sb)
2873{
Eric Whitney5c1ff332013-04-09 09:27:31 -04002874 s64 free_clusters, dirty_clusters;
Aneesh Kumar K.V79f0be82008-10-08 23:13:30 -04002875 struct ext4_sb_info *sbi = EXT4_SB(sb);
2876
2877 /*
2878 * switch to non delalloc mode if we are running low
2879 * on free block. The free block accounting via percpu
Eric Dumazet179f7eb2009-01-06 14:41:04 -08002880 * counters can get slightly wrong with percpu_counter_batch getting
Aneesh Kumar K.V79f0be82008-10-08 23:13:30 -04002881 * accumulated on each CPU without updating global counters
2882 * Delalloc need an accurate free block accounting. So switch
2883 * to non delalloc when we are near to error range.
2884 */
Eric Whitney5c1ff332013-04-09 09:27:31 -04002885 free_clusters =
2886 percpu_counter_read_positive(&sbi->s_freeclusters_counter);
2887 dirty_clusters =
2888 percpu_counter_read_positive(&sbi->s_dirtyclusters_counter);
Theodore Ts'o00d4e732012-09-19 22:42:36 -04002889 /*
2890 * Start pushing delalloc when 1/2 of free blocks are dirty.
2891 */
Eric Whitney5c1ff332013-04-09 09:27:31 -04002892 if (dirty_clusters && (free_clusters < 2 * dirty_clusters))
Miao Xie10ee27a2013-01-10 13:47:57 +08002893 try_to_writeback_inodes_sb(sb, WB_REASON_FS_FREE_SPACE);
Theodore Ts'o00d4e732012-09-19 22:42:36 -04002894
Eric Whitney5c1ff332013-04-09 09:27:31 -04002895 if (2 * free_clusters < 3 * dirty_clusters ||
2896 free_clusters < (dirty_clusters + EXT4_FREECLUSTERS_WATERMARK)) {
Aneesh Kumar K.V79f0be82008-10-08 23:13:30 -04002897 /*
Eric Sandeenc8afb442009-12-23 07:58:12 -05002898 * free block count is less than 150% of dirty blocks
2899 * or free blocks is less than watermark
Aneesh Kumar K.V79f0be82008-10-08 23:13:30 -04002900 */
2901 return 1;
2902 }
2903 return 0;
2904}
2905
Alex Tomas64769242008-07-11 19:27:31 -04002906static int ext4_da_write_begin(struct file *file, struct address_space *mapping,
Theodore Ts'ode9a55b2009-06-14 17:45:34 -04002907 loff_t pos, unsigned len, unsigned flags,
2908 struct page **pagep, void **fsdata)
Alex Tomas64769242008-07-11 19:27:31 -04002909{
Eric Sandeen72b8ab92010-05-16 11:00:00 -04002910 int ret, retries = 0;
Alex Tomas64769242008-07-11 19:27:31 -04002911 struct page *page;
2912 pgoff_t index;
Alex Tomas64769242008-07-11 19:27:31 -04002913 struct inode *inode = mapping->host;
Alex Tomas64769242008-07-11 19:27:31 -04002914
Theodore Ts'o0db1ff22017-02-05 01:28:48 -05002915 if (unlikely(ext4_forced_shutdown(EXT4_SB(inode->i_sb))))
2916 return -EIO;
2917
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002918 index = pos >> PAGE_SHIFT;
Aneesh Kumar K.V79f0be82008-10-08 23:13:30 -04002919
Eric Biggersc93d8f82019-07-22 09:26:24 -07002920 if (ext4_nonda_switch(inode->i_sb) || S_ISLNK(inode->i_mode) ||
2921 ext4_verity_in_progress(inode)) {
Aneesh Kumar K.V79f0be82008-10-08 23:13:30 -04002922 *fsdata = (void *)FALL_BACK_TO_NONDELALLOC;
2923 return ext4_write_begin(file, mapping, pos,
2924 len, flags, pagep, fsdata);
2925 }
2926 *fsdata = (void *)0;
Theodore Ts'o9bffad12009-06-17 11:48:11 -04002927 trace_ext4_da_write_begin(inode, pos, len, flags);
Tao Ma9c3569b2012-12-10 14:05:57 -05002928
2929 if (ext4_test_inode_state(inode, EXT4_STATE_MAY_INLINE_DATA)) {
2930 ret = ext4_da_write_inline_data_begin(mapping, inode,
2931 pos, len, flags,
2932 pagep, fsdata);
2933 if (ret < 0)
Theodore Ts'o47564bf2013-02-09 09:24:14 -05002934 return ret;
2935 if (ret == 1)
2936 return 0;
Tao Ma9c3569b2012-12-10 14:05:57 -05002937 }
2938
Zhang Yicc883232021-07-16 20:20:24 +08002939retry:
Theodore Ts'o47564bf2013-02-09 09:24:14 -05002940 page = grab_cache_page_write_begin(mapping, index, flags);
2941 if (!page)
2942 return -ENOMEM;
Theodore Ts'o47564bf2013-02-09 09:24:14 -05002943
Theodore Ts'o47564bf2013-02-09 09:24:14 -05002944 /* In case writeback began while the page was unlocked */
Dmitry Monakhov7afe5aa2013-08-28 14:30:47 -04002945 wait_for_stable_page(page);
Alex Tomas64769242008-07-11 19:27:31 -04002946
Chandan Rajendra643fa962018-12-12 15:20:12 +05302947#ifdef CONFIG_FS_ENCRYPTION
Michael Halcrow2058f832015-04-12 00:55:10 -04002948 ret = ext4_block_write_begin(page, pos, len,
2949 ext4_da_get_block_prep);
2950#else
Christoph Hellwig6e1db882010-06-04 11:29:57 +02002951 ret = __block_write_begin(page, pos, len, ext4_da_get_block_prep);
Michael Halcrow2058f832015-04-12 00:55:10 -04002952#endif
Alex Tomas64769242008-07-11 19:27:31 -04002953 if (ret < 0) {
2954 unlock_page(page);
Zhang Yicc883232021-07-16 20:20:24 +08002955 put_page(page);
Aneesh Kumar K.Vae4d5372008-09-13 13:10:25 -04002956 /*
2957 * block_write_begin may have instantiated a few blocks
2958 * outside i_size. Trim these off again. Don't need
Zhang Yicc883232021-07-16 20:20:24 +08002959 * i_size_read because we hold inode lock.
Aneesh Kumar K.Vae4d5372008-09-13 13:10:25 -04002960 */
2961 if (pos + len > inode->i_size)
Jan Karab9a42072009-12-08 21:24:33 -05002962 ext4_truncate_failed_write(inode);
Theodore Ts'o47564bf2013-02-09 09:24:14 -05002963
2964 if (ret == -ENOSPC &&
2965 ext4_should_retry_alloc(inode->i_sb, &retries))
Zhang Yicc883232021-07-16 20:20:24 +08002966 goto retry;
Theodore Ts'o47564bf2013-02-09 09:24:14 -05002967 return ret;
Alex Tomas64769242008-07-11 19:27:31 -04002968 }
2969
Theodore Ts'o47564bf2013-02-09 09:24:14 -05002970 *pagep = page;
Alex Tomas64769242008-07-11 19:27:31 -04002971 return ret;
2972}
2973
Mingming Cao632eaea2008-07-11 19:27:31 -04002974/*
2975 * Check if we should update i_disksize
2976 * when write to the end of file but not require block allocation
2977 */
2978static int ext4_da_should_update_i_disksize(struct page *page,
Theodore Ts'ode9a55b2009-06-14 17:45:34 -04002979 unsigned long offset)
Mingming Cao632eaea2008-07-11 19:27:31 -04002980{
2981 struct buffer_head *bh;
2982 struct inode *inode = page->mapping->host;
2983 unsigned int idx;
2984 int i;
2985
2986 bh = page_buffers(page);
2987 idx = offset >> inode->i_blkbits;
2988
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04002989 for (i = 0; i < idx; i++)
Mingming Cao632eaea2008-07-11 19:27:31 -04002990 bh = bh->b_this_page;
2991
Aneesh Kumar K.V29fa89d2009-05-12 16:30:27 -04002992 if (!buffer_mapped(bh) || (buffer_delay(bh)) || buffer_unwritten(bh))
Mingming Cao632eaea2008-07-11 19:27:31 -04002993 return 0;
2994 return 1;
2995}
2996
Alex Tomas64769242008-07-11 19:27:31 -04002997static int ext4_da_write_end(struct file *file,
Theodore Ts'ode9a55b2009-06-14 17:45:34 -04002998 struct address_space *mapping,
2999 loff_t pos, unsigned len, unsigned copied,
3000 struct page *page, void *fsdata)
Alex Tomas64769242008-07-11 19:27:31 -04003001{
3002 struct inode *inode = mapping->host;
Alex Tomas64769242008-07-11 19:27:31 -04003003 loff_t new_i_size;
Mingming Cao632eaea2008-07-11 19:27:31 -04003004 unsigned long start, end;
Aneesh Kumar K.V79f0be82008-10-08 23:13:30 -04003005 int write_mode = (int)(unsigned long)fsdata;
3006
Theodore Ts'o74d553a2013-04-03 12:39:17 -04003007 if (write_mode == FALL_BACK_TO_NONDELALLOC)
3008 return ext4_write_end(file, mapping, pos,
3009 len, copied, page, fsdata);
Mingming Cao632eaea2008-07-11 19:27:31 -04003010
Theodore Ts'o9bffad12009-06-17 11:48:11 -04003011 trace_ext4_da_write_end(inode, pos, len, copied);
Tao Ma9c3569b2012-12-10 14:05:57 -05003012
3013 if (write_mode != CONVERT_INLINE_DATA &&
3014 ext4_test_inode_state(inode, EXT4_STATE_MAY_INLINE_DATA) &&
3015 ext4_has_inline_data(inode))
Zhang Yi6984aef2021-07-16 20:20:23 +08003016 return ext4_write_inline_data_end(inode, pos, len, copied, page);
Tao Ma9c3569b2012-12-10 14:05:57 -05003017
Alex Tomas64769242008-07-11 19:27:31 -04003018 start = pos & (PAGE_SIZE - 1);
3019 end = start + copied - 1;
Alex Tomas64769242008-07-11 19:27:31 -04003020
Alex Tomas64769242008-07-11 19:27:31 -04003021 /*
Zhang Yi4df031f2021-07-16 20:20:21 +08003022 * Since we are holding inode lock, we are sure i_disksize <=
3023 * i_size. We also know that if i_disksize < i_size, there are
3024 * delalloc writes pending in the range upto i_size. If the end of
3025 * the current write is <= i_size, there's no need to touch
3026 * i_disksize since writeback will push i_disksize upto i_size
3027 * eventually. If the end of the current write is > i_size and
3028 * inside an allocated block (ext4_da_should_update_i_disksize()
3029 * check), we need to update i_disksize here as neither
3030 * ext4_writepage() nor certain ext4_writepages() paths not
3031 * allocating blocks update i_disksize.
3032 *
3033 * Note that we defer inode dirtying to generic_write_end() /
3034 * ext4_da_write_inline_data_end().
Mingming Caod2a17632008-07-14 17:52:37 -04003035 */
Alex Tomas64769242008-07-11 19:27:31 -04003036 new_i_size = pos + copied;
Zhang Yi6984aef2021-07-16 20:20:23 +08003037 if (copied && new_i_size > inode->i_size &&
3038 ext4_da_should_update_i_disksize(page, end))
3039 ext4_update_i_disksize(inode, new_i_size);
Theodore Ts'occd25062009-02-26 01:04:07 -05003040
Zhang Yicc883232021-07-16 20:20:24 +08003041 return generic_write_end(file, mapping, pos, len, copied, page, fsdata);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003042}
3043
Theodore Ts'occd25062009-02-26 01:04:07 -05003044/*
3045 * Force all delayed allocation blocks to be allocated for a given inode.
3046 */
3047int ext4_alloc_da_blocks(struct inode *inode)
3048{
3049 trace_ext4_alloc_da_blocks(inode);
3050
Theodore Ts'o71d4f7d2014-07-15 06:02:38 -04003051 if (!EXT4_I(inode)->i_reserved_data_blocks)
Theodore Ts'occd25062009-02-26 01:04:07 -05003052 return 0;
3053
3054 /*
3055 * We do something simple for now. The filemap_flush() will
3056 * also start triggering a write of the data blocks, which is
3057 * not strictly speaking necessary (and for users of
3058 * laptop_mode, not even desirable). However, to do otherwise
3059 * would require replicating code paths in:
Theodore Ts'ode9a55b2009-06-14 17:45:34 -04003060 *
Theodore Ts'o20970ba2013-06-06 14:00:46 -04003061 * ext4_writepages() ->
Theodore Ts'occd25062009-02-26 01:04:07 -05003062 * write_cache_pages() ---> (via passed in callback function)
3063 * __mpage_da_writepage() -->
3064 * mpage_add_bh_to_extent()
3065 * mpage_da_map_blocks()
3066 *
3067 * The problem is that write_cache_pages(), located in
3068 * mm/page-writeback.c, marks pages clean in preparation for
3069 * doing I/O, which is not desirable if we're not planning on
3070 * doing I/O at all.
3071 *
3072 * We could call write_cache_pages(), and then redirty all of
Wu Fengguang380cf092010-11-11 19:23:29 +08003073 * the pages by calling redirty_page_for_writepage() but that
Theodore Ts'occd25062009-02-26 01:04:07 -05003074 * would be ugly in the extreme. So instead we would need to
3075 * replicate parts of the code in the above functions,
Lucas De Marchi25985ed2011-03-30 22:57:33 -03003076 * simplifying them because we wouldn't actually intend to
Theodore Ts'occd25062009-02-26 01:04:07 -05003077 * write out the pages, but rather only collect contiguous
3078 * logical block extents, call the multi-block allocator, and
3079 * then update the buffer heads with the block allocations.
Theodore Ts'ode9a55b2009-06-14 17:45:34 -04003080 *
Theodore Ts'occd25062009-02-26 01:04:07 -05003081 * For now, though, we'll cheat by calling filemap_flush(),
3082 * which will map the blocks, and start the I/O, but not
3083 * actually wait for the I/O to complete.
3084 */
3085 return filemap_flush(inode->i_mapping);
3086}
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003087
3088/*
3089 * bmap() is special. It gets used by applications such as lilo and by
3090 * the swapper to find the on-disk block of a specific piece of data.
3091 *
3092 * Naturally, this is dangerous if the block concerned is still in the
3093 * journal. If somebody makes a swapfile on an ext4 data-journaling
3094 * filesystem and enables swap, then they may get a nasty shock when the
3095 * data getting swapped to that swapfile suddenly gets overwritten by
3096 * the original zero's written out previously to the journal and
3097 * awaiting writeback in the kernel's buffer cache.
3098 *
3099 * So, if we see any bmap calls here on a modified, data-journaled file,
3100 * take extra steps to flush any blocks which might be in the cache.
3101 */
3102static sector_t ext4_bmap(struct address_space *mapping, sector_t block)
3103{
3104 struct inode *inode = mapping->host;
3105 journal_t *journal;
3106 int err;
3107
Tao Ma46c7f252012-12-10 14:04:52 -05003108 /*
3109 * We can get here for an inline file via the FIBMAP ioctl
3110 */
3111 if (ext4_has_inline_data(inode))
3112 return 0;
3113
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003114 if (mapping_tagged(mapping, PAGECACHE_TAG_DIRTY) &&
3115 test_opt(inode->i_sb, DELALLOC)) {
3116 /*
3117 * With delalloc we want to sync the file
3118 * so that we can make sure we allocate
3119 * blocks for file
3120 */
3121 filemap_write_and_wait(mapping);
3122 }
3123
Theodore Ts'o19f5fb72010-01-24 14:34:07 -05003124 if (EXT4_JOURNAL(inode) &&
3125 ext4_test_inode_state(inode, EXT4_STATE_JDATA)) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003126 /*
3127 * This is a REALLY heavyweight approach, but the use of
3128 * bmap on dirty files is expected to be extremely rare:
3129 * only if we run lilo or swapon on a freshly made file
3130 * do we expect this to happen.
3131 *
3132 * (bmap requires CAP_SYS_RAWIO so this does not
3133 * represent an unprivileged user DOS attack --- we'd be
3134 * in trouble if mortal users could trigger this path at
3135 * will.)
3136 *
3137 * NB. EXT4_STATE_JDATA is not set on files other than
3138 * regular files. If somebody wants to bmap a directory
3139 * or symlink and gets confused because the buffer
3140 * hasn't yet been flushed to disk, they deserve
3141 * everything they get.
3142 */
3143
Theodore Ts'o19f5fb72010-01-24 14:34:07 -05003144 ext4_clear_inode_state(inode, EXT4_STATE_JDATA);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003145 journal = EXT4_JOURNAL(inode);
3146 jbd2_journal_lock_updates(journal);
Leah Rumancik01d5d962021-05-18 15:13:25 +00003147 err = jbd2_journal_flush(journal, 0);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003148 jbd2_journal_unlock_updates(journal);
3149
3150 if (err)
3151 return 0;
3152 }
3153
Ritesh Harjaniac58e4f2020-02-28 14:56:56 +05303154 return iomap_bmap(mapping, block, &ext4_iomap_ops);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003155}
3156
Mingming Cao617ba132006-10-11 01:20:53 -07003157static int ext4_readpage(struct file *file, struct page *page)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003158{
Tao Ma46c7f252012-12-10 14:04:52 -05003159 int ret = -EAGAIN;
3160 struct inode *inode = page->mapping->host;
3161
Jiaying Zhang0562e0b2011-03-21 21:38:05 -04003162 trace_ext4_readpage(page);
Tao Ma46c7f252012-12-10 14:04:52 -05003163
3164 if (ext4_has_inline_data(inode))
3165 ret = ext4_readpage_inline(inode, page);
3166
3167 if (ret == -EAGAIN)
Matthew Wilcox (Oracle)a07f6242020-06-01 21:47:20 -07003168 return ext4_mpage_readpages(inode, NULL, page);
Tao Ma46c7f252012-12-10 14:04:52 -05003169
3170 return ret;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003171}
3172
Matthew Wilcox (Oracle)6311f91f2020-06-01 21:47:16 -07003173static void ext4_readahead(struct readahead_control *rac)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003174{
Matthew Wilcox (Oracle)6311f91f2020-06-01 21:47:16 -07003175 struct inode *inode = rac->mapping->host;
Tao Ma46c7f252012-12-10 14:04:52 -05003176
Matthew Wilcox (Oracle)6311f91f2020-06-01 21:47:16 -07003177 /* If the file has inline data, no need to do readahead. */
Tao Ma46c7f252012-12-10 14:04:52 -05003178 if (ext4_has_inline_data(inode))
Matthew Wilcox (Oracle)6311f91f2020-06-01 21:47:16 -07003179 return;
Tao Ma46c7f252012-12-10 14:04:52 -05003180
Matthew Wilcox (Oracle)a07f6242020-06-01 21:47:20 -07003181 ext4_mpage_readpages(inode, rac, NULL);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003182}
3183
Lukas Czernerd47992f2013-05-21 23:17:23 -04003184static void ext4_invalidatepage(struct page *page, unsigned int offset,
3185 unsigned int length)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003186{
Lukas Czernerca99fdd2013-05-21 23:25:01 -04003187 trace_ext4_invalidatepage(page, offset, length);
Jiaying Zhang0562e0b2011-03-21 21:38:05 -04003188
Jan Kara4520fb32012-12-25 13:28:54 -05003189 /* No journalling happens on data buffers when this function is used */
3190 WARN_ON(page_has_buffers(page) && buffer_jbd(page_buffers(page)));
3191
Lukas Czernerca99fdd2013-05-21 23:25:01 -04003192 block_invalidatepage(page, offset, length);
Jan Kara4520fb32012-12-25 13:28:54 -05003193}
3194
Jan Kara53e87262012-12-25 13:29:52 -05003195static int __ext4_journalled_invalidatepage(struct page *page,
Lukas Czernerca99fdd2013-05-21 23:25:01 -04003196 unsigned int offset,
3197 unsigned int length)
Jan Kara4520fb32012-12-25 13:28:54 -05003198{
3199 journal_t *journal = EXT4_JOURNAL(page->mapping->host);
3200
Lukas Czernerca99fdd2013-05-21 23:25:01 -04003201 trace_ext4_journalled_invalidatepage(page, offset, length);
Jan Kara4520fb32012-12-25 13:28:54 -05003202
Jiaying Zhang744692d2010-03-04 16:14:02 -05003203 /*
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003204 * If it's a full truncate we just forget about the pending dirtying
3205 */
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03003206 if (offset == 0 && length == PAGE_SIZE)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003207 ClearPageChecked(page);
3208
Lukas Czernerca99fdd2013-05-21 23:25:01 -04003209 return jbd2_journal_invalidatepage(journal, page, offset, length);
Jan Kara53e87262012-12-25 13:29:52 -05003210}
3211
3212/* Wrapper for aops... */
3213static void ext4_journalled_invalidatepage(struct page *page,
Lukas Czernerd47992f2013-05-21 23:17:23 -04003214 unsigned int offset,
3215 unsigned int length)
Jan Kara53e87262012-12-25 13:29:52 -05003216{
Lukas Czernerca99fdd2013-05-21 23:25:01 -04003217 WARN_ON(__ext4_journalled_invalidatepage(page, offset, length) < 0);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003218}
3219
Mingming Cao617ba132006-10-11 01:20:53 -07003220static int ext4_releasepage(struct page *page, gfp_t wait)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003221{
Mingming Cao617ba132006-10-11 01:20:53 -07003222 journal_t *journal = EXT4_JOURNAL(page->mapping->host);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003223
Jiaying Zhang0562e0b2011-03-21 21:38:05 -04003224 trace_ext4_releasepage(page);
3225
Jan Karae1c36592013-03-10 22:19:00 -04003226 /* Page has dirty journalled data -> cannot release */
3227 if (PageChecked(page))
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003228 return 0;
Frank Mayhar03901312009-01-07 00:06:22 -05003229 if (journal)
zhangyi (F)529a7812020-06-20 10:54:27 +08003230 return jbd2_journal_try_to_free_buffers(journal, page);
Frank Mayhar03901312009-01-07 00:06:22 -05003231 else
3232 return try_to_free_buffers(page);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003233}
3234
Jan Karab8a61762017-11-01 16:36:45 +01003235static bool ext4_inode_datasync_dirty(struct inode *inode)
3236{
3237 journal_t *journal = EXT4_SB(inode->i_sb)->s_journal;
3238
Harshad Shirwadkaraa75f4d2020-10-15 13:37:57 -07003239 if (journal) {
3240 if (jbd2_transaction_committed(journal,
Andrea Righid0520df2020-10-26 21:49:13 -07003241 EXT4_I(inode)->i_datasync_tid))
3242 return false;
3243 if (test_opt2(inode->i_sb, JOURNAL_FAST_COMMIT))
Harshad Shirwadkar1ceecb52020-11-05 19:59:06 -08003244 return !list_empty(&EXT4_I(inode)->i_fc_list);
Andrea Righid0520df2020-10-26 21:49:13 -07003245 return true;
Harshad Shirwadkaraa75f4d2020-10-15 13:37:57 -07003246 }
3247
Jan Karab8a61762017-11-01 16:36:45 +01003248 /* Any metadata buffers to write? */
3249 if (!list_empty(&inode->i_mapping->private_list))
3250 return true;
3251 return inode->i_state & I_DIRTY_DATASYNC;
3252}
3253
Matthew Bobrowskic8fdfe292019-11-05 22:59:56 +11003254static void ext4_set_iomap(struct inode *inode, struct iomap *iomap,
3255 struct ext4_map_blocks *map, loff_t offset,
3256 loff_t length)
Jan Kara364443c2016-11-20 17:36:06 -05003257{
Matthew Bobrowskic8fdfe292019-11-05 22:59:56 +11003258 u8 blkbits = inode->i_blkbits;
3259
3260 /*
3261 * Writes that span EOF might trigger an I/O size update on completion,
3262 * so consider them to be dirty for the purpose of O_DSYNC, even if
3263 * there is no other metadata changes being made or are pending.
3264 */
3265 iomap->flags = 0;
3266 if (ext4_inode_datasync_dirty(inode) ||
3267 offset + length > i_size_read(inode))
3268 iomap->flags |= IOMAP_F_DIRTY;
3269
3270 if (map->m_flags & EXT4_MAP_NEW)
3271 iomap->flags |= IOMAP_F_NEW;
3272
3273 iomap->bdev = inode->i_sb->s_bdev;
3274 iomap->dax_dev = EXT4_SB(inode->i_sb)->s_daxdev;
3275 iomap->offset = (u64) map->m_lblk << blkbits;
3276 iomap->length = (u64) map->m_len << blkbits;
3277
Ritesh Harjani63867222020-02-28 14:56:54 +05303278 if ((map->m_flags & EXT4_MAP_MAPPED) &&
3279 !ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS))
3280 iomap->flags |= IOMAP_F_MERGED;
3281
Matthew Bobrowskic8fdfe292019-11-05 22:59:56 +11003282 /*
3283 * Flags passed to ext4_map_blocks() for direct I/O writes can result
3284 * in m_flags having both EXT4_MAP_MAPPED and EXT4_MAP_UNWRITTEN bits
3285 * set. In order for any allocated unwritten extents to be converted
3286 * into written extents correctly within the ->end_io() handler, we
3287 * need to ensure that the iomap->type is set appropriately. Hence, the
3288 * reason why we need to check whether the EXT4_MAP_UNWRITTEN bit has
3289 * been set first.
3290 */
3291 if (map->m_flags & EXT4_MAP_UNWRITTEN) {
3292 iomap->type = IOMAP_UNWRITTEN;
3293 iomap->addr = (u64) map->m_pblk << blkbits;
3294 } else if (map->m_flags & EXT4_MAP_MAPPED) {
3295 iomap->type = IOMAP_MAPPED;
3296 iomap->addr = (u64) map->m_pblk << blkbits;
3297 } else {
3298 iomap->type = IOMAP_HOLE;
3299 iomap->addr = IOMAP_NULL_ADDR;
3300 }
3301}
3302
Matthew Bobrowskif063db52019-11-05 23:00:14 +11003303static int ext4_iomap_alloc(struct inode *inode, struct ext4_map_blocks *map,
3304 unsigned int flags)
3305{
3306 handle_t *handle;
Matthew Bobrowski378f32b2019-11-05 23:02:39 +11003307 u8 blkbits = inode->i_blkbits;
3308 int ret, dio_credits, m_flags = 0, retries = 0;
Matthew Bobrowskif063db52019-11-05 23:00:14 +11003309
3310 /*
3311 * Trim the mapping request to the maximum value that we can map at
3312 * once for direct I/O.
3313 */
3314 if (map->m_len > DIO_MAX_BLOCKS)
3315 map->m_len = DIO_MAX_BLOCKS;
3316 dio_credits = ext4_chunk_trans_blocks(inode, map->m_len);
3317
3318retry:
3319 /*
3320 * Either we allocate blocks and then don't get an unwritten extent, so
3321 * in that case we have reserved enough credits. Or, the blocks are
3322 * already allocated and unwritten. In that case, the extent conversion
3323 * fits into the credits as well.
3324 */
3325 handle = ext4_journal_start(inode, EXT4_HT_MAP_BLOCKS, dio_credits);
3326 if (IS_ERR(handle))
3327 return PTR_ERR(handle);
3328
Matthew Bobrowski378f32b2019-11-05 23:02:39 +11003329 /*
3330 * DAX and direct I/O are the only two operations that are currently
3331 * supported with IOMAP_WRITE.
3332 */
3333 WARN_ON(!IS_DAX(inode) && !(flags & IOMAP_DIRECT));
3334 if (IS_DAX(inode))
3335 m_flags = EXT4_GET_BLOCKS_CREATE_ZERO;
3336 /*
3337 * We use i_size instead of i_disksize here because delalloc writeback
3338 * can complete at any point during the I/O and subsequently push the
3339 * i_disksize out to i_size. This could be beyond where direct I/O is
3340 * happening and thus expose allocated blocks to direct I/O reads.
3341 */
Jan Karad0b040f2021-04-12 12:23:33 +02003342 else if (((loff_t)map->m_lblk << blkbits) >= i_size_read(inode))
Matthew Bobrowski378f32b2019-11-05 23:02:39 +11003343 m_flags = EXT4_GET_BLOCKS_CREATE;
3344 else if (ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS))
3345 m_flags = EXT4_GET_BLOCKS_IO_CREATE_EXT;
3346
3347 ret = ext4_map_blocks(handle, inode, map, m_flags);
3348
3349 /*
3350 * We cannot fill holes in indirect tree based inodes as that could
3351 * expose stale data in the case of a crash. Use the magic error code
3352 * to fallback to buffered I/O.
3353 */
3354 if (!m_flags && !ret)
3355 ret = -ENOTBLK;
Matthew Bobrowskif063db52019-11-05 23:00:14 +11003356
Matthew Bobrowskif063db52019-11-05 23:00:14 +11003357 ext4_journal_stop(handle);
3358 if (ret == -ENOSPC && ext4_should_retry_alloc(inode->i_sb, &retries))
3359 goto retry;
3360
3361 return ret;
3362}
3363
3364
Jan Kara364443c2016-11-20 17:36:06 -05003365static int ext4_iomap_begin(struct inode *inode, loff_t offset, loff_t length,
Goldwyn Rodriguesc039b992019-10-18 16:44:10 -07003366 unsigned flags, struct iomap *iomap, struct iomap *srcmap)
Jan Kara364443c2016-11-20 17:36:06 -05003367{
Jan Kara364443c2016-11-20 17:36:06 -05003368 int ret;
Matthew Bobrowski09edf4d2019-11-05 23:03:31 +11003369 struct ext4_map_blocks map;
3370 u8 blkbits = inode->i_blkbits;
Jan Kara364443c2016-11-20 17:36:06 -05003371
Theodore Ts'obcd8e912018-09-01 12:45:04 -04003372 if ((offset >> blkbits) > EXT4_MAX_LOGICAL_BLOCK)
3373 return -EINVAL;
Andreas Gruenbacher7046ae32017-10-01 17:57:54 -04003374
Matthew Bobrowski09edf4d2019-11-05 23:03:31 +11003375 if (WARN_ON_ONCE(ext4_has_inline_data(inode)))
3376 return -ERANGE;
Jan Kara364443c2016-11-20 17:36:06 -05003377
Matthew Bobrowski09edf4d2019-11-05 23:03:31 +11003378 /*
3379 * Calculate the first and last logical blocks respectively.
3380 */
3381 map.m_lblk = offset >> blkbits;
3382 map.m_len = min_t(loff_t, (offset + length - 1) >> blkbits,
3383 EXT4_MAX_LOGICAL_BLOCK) - map.m_lblk + 1;
Jan Kara364443c2016-11-20 17:36:06 -05003384
Ritesh Harjani9faac622020-09-18 10:36:35 +05303385 if (flags & IOMAP_WRITE) {
3386 /*
3387 * We check here if the blocks are already allocated, then we
3388 * don't need to start a journal txn and we can directly return
3389 * the mapping information. This could boost performance
3390 * especially in multi-threaded overwrite requests.
3391 */
3392 if (offset + length <= i_size_read(inode)) {
3393 ret = ext4_map_blocks(NULL, inode, &map, 0);
3394 if (ret > 0 && (map.m_flags & EXT4_MAP_MAPPED))
3395 goto out;
3396 }
Matthew Bobrowskif063db52019-11-05 23:00:14 +11003397 ret = ext4_iomap_alloc(inode, &map, flags);
Ritesh Harjani9faac622020-09-18 10:36:35 +05303398 } else {
Jan Kara776722e2016-11-20 18:09:11 -05003399 ret = ext4_map_blocks(NULL, inode, &map, 0);
Ritesh Harjani9faac622020-09-18 10:36:35 +05303400 }
Christoph Hellwig545052e2017-10-01 17:58:54 -04003401
Matthew Bobrowskif063db52019-11-05 23:00:14 +11003402 if (ret < 0)
3403 return ret;
Ritesh Harjani9faac622020-09-18 10:36:35 +05303404out:
Matthew Bobrowskic8fdfe292019-11-05 22:59:56 +11003405 ext4_set_iomap(inode, iomap, &map, offset, length);
Christoph Hellwig545052e2017-10-01 17:58:54 -04003406
Jan Kara364443c2016-11-20 17:36:06 -05003407 return 0;
3408}
3409
Jan Kara8cd115b2019-12-18 18:44:33 +01003410static int ext4_iomap_overwrite_begin(struct inode *inode, loff_t offset,
3411 loff_t length, unsigned flags, struct iomap *iomap,
3412 struct iomap *srcmap)
3413{
3414 int ret;
3415
3416 /*
3417 * Even for writes we don't need to allocate blocks, so just pretend
3418 * we are reading to save overhead of starting a transaction.
3419 */
3420 flags &= ~IOMAP_WRITE;
3421 ret = ext4_iomap_begin(inode, offset, length, flags, iomap, srcmap);
3422 WARN_ON_ONCE(iomap->type != IOMAP_MAPPED);
3423 return ret;
3424}
3425
Jan Kara776722e2016-11-20 18:09:11 -05003426static int ext4_iomap_end(struct inode *inode, loff_t offset, loff_t length,
3427 ssize_t written, unsigned flags, struct iomap *iomap)
3428{
Jan Kara776722e2016-11-20 18:09:11 -05003429 /*
Matthew Bobrowski378f32b2019-11-05 23:02:39 +11003430 * Check to see whether an error occurred while writing out the data to
3431 * the allocated blocks. If so, return the magic error code so that we
3432 * fallback to buffered I/O and attempt to complete the remainder of
3433 * the I/O. Any blocks that may have been allocated in preparation for
3434 * the direct I/O will be reused during buffered I/O.
Jan Kara776722e2016-11-20 18:09:11 -05003435 */
Matthew Bobrowski378f32b2019-11-05 23:02:39 +11003436 if (flags & (IOMAP_WRITE | IOMAP_DIRECT) && written == 0)
3437 return -ENOTBLK;
Jan Kara776722e2016-11-20 18:09:11 -05003438
Matthew Bobrowski569342d2019-11-05 23:01:51 +11003439 return 0;
Jan Kara776722e2016-11-20 18:09:11 -05003440}
3441
Christoph Hellwig8ff6daa2017-01-27 23:20:26 -08003442const struct iomap_ops ext4_iomap_ops = {
Jan Kara364443c2016-11-20 17:36:06 -05003443 .iomap_begin = ext4_iomap_begin,
Jan Kara776722e2016-11-20 18:09:11 -05003444 .iomap_end = ext4_iomap_end,
Jan Kara364443c2016-11-20 17:36:06 -05003445};
3446
Jan Kara8cd115b2019-12-18 18:44:33 +01003447const struct iomap_ops ext4_iomap_overwrite_ops = {
3448 .iomap_begin = ext4_iomap_overwrite_begin,
3449 .iomap_end = ext4_iomap_end,
3450};
3451
Matthew Bobrowski09edf4d2019-11-05 23:03:31 +11003452static bool ext4_iomap_is_delalloc(struct inode *inode,
3453 struct ext4_map_blocks *map)
Mingming Cao4c0425f2009-09-28 15:48:41 -04003454{
Matthew Bobrowski09edf4d2019-11-05 23:03:31 +11003455 struct extent_status es;
3456 ext4_lblk_t offset = 0, end = map->m_lblk + map->m_len - 1;
Mingming Cao4c0425f2009-09-28 15:48:41 -04003457
Matthew Bobrowski09edf4d2019-11-05 23:03:31 +11003458 ext4_es_find_extent_range(inode, &ext4_es_is_delayed,
3459 map->m_lblk, end, &es);
Mingming4b70df12009-11-03 14:44:54 -05003460
Matthew Bobrowski09edf4d2019-11-05 23:03:31 +11003461 if (!es.es_len || es.es_lblk > end)
3462 return false;
3463
3464 if (es.es_lblk > map->m_lblk) {
3465 map->m_len = es.es_lblk - map->m_lblk;
3466 return false;
3467 }
3468
3469 offset = map->m_lblk - es.es_lblk;
3470 map->m_len = es.es_len - offset;
3471
3472 return true;
3473}
3474
3475static int ext4_iomap_begin_report(struct inode *inode, loff_t offset,
3476 loff_t length, unsigned int flags,
3477 struct iomap *iomap, struct iomap *srcmap)
3478{
3479 int ret;
3480 bool delalloc = false;
3481 struct ext4_map_blocks map;
3482 u8 blkbits = inode->i_blkbits;
3483
3484 if ((offset >> blkbits) > EXT4_MAX_LOGICAL_BLOCK)
3485 return -EINVAL;
3486
3487 if (ext4_has_inline_data(inode)) {
3488 ret = ext4_inline_data_iomap(inode, iomap);
3489 if (ret != -EAGAIN) {
3490 if (ret == 0 && offset >= iomap->length)
3491 ret = -ENOENT;
3492 return ret;
3493 }
3494 }
Mingming Cao8d5d02e2009-09-28 15:48:29 -04003495
Jan Kara74c66bc2016-02-29 08:36:38 +11003496 /*
Matthew Bobrowski09edf4d2019-11-05 23:03:31 +11003497 * Calculate the first and last logical block respectively.
Jan Kara74c66bc2016-02-29 08:36:38 +11003498 */
Matthew Bobrowski09edf4d2019-11-05 23:03:31 +11003499 map.m_lblk = offset >> blkbits;
3500 map.m_len = min_t(loff_t, (offset + length - 1) >> blkbits,
3501 EXT4_MAX_LOGICAL_BLOCK) - map.m_lblk + 1;
3502
Ritesh Harjanib2c57642020-02-28 14:56:57 +05303503 /*
3504 * Fiemap callers may call for offset beyond s_bitmap_maxbytes.
3505 * So handle it here itself instead of querying ext4_map_blocks().
3506 * Since ext4_map_blocks() will warn about it and will return
3507 * -EIO error.
3508 */
3509 if (!(ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS))) {
3510 struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb);
3511
3512 if (offset >= sbi->s_bitmap_maxbytes) {
3513 map.m_flags = 0;
3514 goto set_iomap;
3515 }
3516 }
3517
Matthew Bobrowski09edf4d2019-11-05 23:03:31 +11003518 ret = ext4_map_blocks(NULL, inode, &map, 0);
3519 if (ret < 0)
3520 return ret;
3521 if (ret == 0)
3522 delalloc = ext4_iomap_is_delalloc(inode, &map);
3523
Ritesh Harjanib2c57642020-02-28 14:56:57 +05303524set_iomap:
Matthew Bobrowski09edf4d2019-11-05 23:03:31 +11003525 ext4_set_iomap(inode, iomap, &map, offset, length);
3526 if (delalloc && iomap->type == IOMAP_HOLE)
3527 iomap->type = IOMAP_DELALLOC;
Christoph Hellwig187372a2016-02-08 14:40:51 +11003528
3529 return 0;
Mingming Cao4c0425f2009-09-28 15:48:41 -04003530}
Jiaying Zhangc7064ef2010-03-02 13:28:44 -05003531
Matthew Bobrowski09edf4d2019-11-05 23:03:31 +11003532const struct iomap_ops ext4_iomap_report_ops = {
3533 .iomap_begin = ext4_iomap_begin_report,
3534};
Mingming Cao4c0425f2009-09-28 15:48:41 -04003535
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003536/*
Mingming Cao617ba132006-10-11 01:20:53 -07003537 * Pages can be marked dirty completely asynchronously from ext4's journalling
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003538 * activity. By filemap_sync_pte(), try_to_unmap_one(), etc. We cannot do
3539 * much here because ->set_page_dirty is called under VFS locks. The page is
3540 * not necessarily locked.
3541 *
3542 * We cannot just dirty the page and leave attached buffers clean, because the
3543 * buffers' dirty state is "definitive". We cannot just set the buffers dirty
3544 * or jbddirty because all the journalling code will explode.
3545 *
3546 * So what we do is to mark the page "pending dirty" and next time writepage
3547 * is called, propagate that into the buffers appropriately.
3548 */
Mingming Cao617ba132006-10-11 01:20:53 -07003549static int ext4_journalled_set_page_dirty(struct page *page)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003550{
3551 SetPageChecked(page);
3552 return __set_page_dirty_nobuffers(page);
3553}
3554
Jan Kara6dcc6932016-12-01 11:46:40 -05003555static int ext4_set_page_dirty(struct page *page)
3556{
3557 WARN_ON_ONCE(!PageLocked(page) && !PageDirty(page));
3558 WARN_ON_ONCE(!page_has_buffers(page));
3559 return __set_page_dirty_buffers(page);
3560}
3561
Ritesh Harjani0e6895b2020-09-04 14:46:53 +05303562static int ext4_iomap_swap_activate(struct swap_info_struct *sis,
3563 struct file *file, sector_t *span)
3564{
3565 return iomap_swapfile_activate(sis, file, span,
3566 &ext4_iomap_report_ops);
3567}
3568
Theodore Ts'o74d553a2013-04-03 12:39:17 -04003569static const struct address_space_operations ext4_aops = {
Hisashi Hifumi8ab22b92008-07-28 15:46:36 -07003570 .readpage = ext4_readpage,
Matthew Wilcox (Oracle)6311f91f2020-06-01 21:47:16 -07003571 .readahead = ext4_readahead,
Aneesh Kumar K.V43ce1d22009-06-14 17:58:45 -04003572 .writepage = ext4_writepage,
Theodore Ts'o20970ba2013-06-06 14:00:46 -04003573 .writepages = ext4_writepages,
Hisashi Hifumi8ab22b92008-07-28 15:46:36 -07003574 .write_begin = ext4_write_begin,
Theodore Ts'o74d553a2013-04-03 12:39:17 -04003575 .write_end = ext4_write_end,
Jan Kara6dcc6932016-12-01 11:46:40 -05003576 .set_page_dirty = ext4_set_page_dirty,
Hisashi Hifumi8ab22b92008-07-28 15:46:36 -07003577 .bmap = ext4_bmap,
3578 .invalidatepage = ext4_invalidatepage,
3579 .releasepage = ext4_releasepage,
Matthew Bobrowski378f32b2019-11-05 23:02:39 +11003580 .direct_IO = noop_direct_IO,
Hisashi Hifumi8ab22b92008-07-28 15:46:36 -07003581 .migratepage = buffer_migrate_page,
3582 .is_partially_uptodate = block_is_partially_uptodate,
Andi Kleenaa261f52009-09-16 11:50:16 +02003583 .error_remove_page = generic_error_remove_page,
Ritesh Harjani0e6895b2020-09-04 14:46:53 +05303584 .swap_activate = ext4_iomap_swap_activate,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003585};
3586
Mingming Cao617ba132006-10-11 01:20:53 -07003587static const struct address_space_operations ext4_journalled_aops = {
Hisashi Hifumi8ab22b92008-07-28 15:46:36 -07003588 .readpage = ext4_readpage,
Matthew Wilcox (Oracle)6311f91f2020-06-01 21:47:16 -07003589 .readahead = ext4_readahead,
Aneesh Kumar K.V43ce1d22009-06-14 17:58:45 -04003590 .writepage = ext4_writepage,
Theodore Ts'o20970ba2013-06-06 14:00:46 -04003591 .writepages = ext4_writepages,
Hisashi Hifumi8ab22b92008-07-28 15:46:36 -07003592 .write_begin = ext4_write_begin,
3593 .write_end = ext4_journalled_write_end,
3594 .set_page_dirty = ext4_journalled_set_page_dirty,
3595 .bmap = ext4_bmap,
Jan Kara4520fb32012-12-25 13:28:54 -05003596 .invalidatepage = ext4_journalled_invalidatepage,
Hisashi Hifumi8ab22b92008-07-28 15:46:36 -07003597 .releasepage = ext4_releasepage,
Matthew Bobrowski378f32b2019-11-05 23:02:39 +11003598 .direct_IO = noop_direct_IO,
Hisashi Hifumi8ab22b92008-07-28 15:46:36 -07003599 .is_partially_uptodate = block_is_partially_uptodate,
Andi Kleenaa261f52009-09-16 11:50:16 +02003600 .error_remove_page = generic_error_remove_page,
Ritesh Harjani0e6895b2020-09-04 14:46:53 +05303601 .swap_activate = ext4_iomap_swap_activate,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003602};
3603
Alex Tomas64769242008-07-11 19:27:31 -04003604static const struct address_space_operations ext4_da_aops = {
Hisashi Hifumi8ab22b92008-07-28 15:46:36 -07003605 .readpage = ext4_readpage,
Matthew Wilcox (Oracle)6311f91f2020-06-01 21:47:16 -07003606 .readahead = ext4_readahead,
Aneesh Kumar K.V43ce1d22009-06-14 17:58:45 -04003607 .writepage = ext4_writepage,
Theodore Ts'o20970ba2013-06-06 14:00:46 -04003608 .writepages = ext4_writepages,
Hisashi Hifumi8ab22b92008-07-28 15:46:36 -07003609 .write_begin = ext4_da_write_begin,
3610 .write_end = ext4_da_write_end,
Jan Kara6dcc6932016-12-01 11:46:40 -05003611 .set_page_dirty = ext4_set_page_dirty,
Hisashi Hifumi8ab22b92008-07-28 15:46:36 -07003612 .bmap = ext4_bmap,
Eric Whitney8fcc3a52019-08-22 23:22:14 -04003613 .invalidatepage = ext4_invalidatepage,
Hisashi Hifumi8ab22b92008-07-28 15:46:36 -07003614 .releasepage = ext4_releasepage,
Matthew Bobrowski378f32b2019-11-05 23:02:39 +11003615 .direct_IO = noop_direct_IO,
Hisashi Hifumi8ab22b92008-07-28 15:46:36 -07003616 .migratepage = buffer_migrate_page,
3617 .is_partially_uptodate = block_is_partially_uptodate,
Andi Kleenaa261f52009-09-16 11:50:16 +02003618 .error_remove_page = generic_error_remove_page,
Ritesh Harjani0e6895b2020-09-04 14:46:53 +05303619 .swap_activate = ext4_iomap_swap_activate,
Alex Tomas64769242008-07-11 19:27:31 -04003620};
3621
Dan Williams5f0663b2017-12-21 12:25:11 -08003622static const struct address_space_operations ext4_dax_aops = {
3623 .writepages = ext4_dax_writepages,
3624 .direct_IO = noop_direct_IO,
Matthew Wilcox (Oracle)b82a96c2021-06-28 19:36:27 -07003625 .set_page_dirty = __set_page_dirty_no_writeback,
Toshi Kani94dbb632018-09-15 21:23:41 -04003626 .bmap = ext4_bmap,
Dan Williams5f0663b2017-12-21 12:25:11 -08003627 .invalidatepage = noop_invalidatepage,
Ritesh Harjani0e6895b2020-09-04 14:46:53 +05303628 .swap_activate = ext4_iomap_swap_activate,
Dan Williams5f0663b2017-12-21 12:25:11 -08003629};
3630
Mingming Cao617ba132006-10-11 01:20:53 -07003631void ext4_set_aops(struct inode *inode)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003632{
Lukas Czerner3d2b1582012-02-20 17:53:00 -05003633 switch (ext4_inode_journal_mode(inode)) {
3634 case EXT4_INODE_ORDERED_DATA_MODE:
Lukas Czerner3d2b1582012-02-20 17:53:00 -05003635 case EXT4_INODE_WRITEBACK_DATA_MODE:
Lukas Czerner3d2b1582012-02-20 17:53:00 -05003636 break;
3637 case EXT4_INODE_JOURNAL_DATA_MODE:
Mingming Cao617ba132006-10-11 01:20:53 -07003638 inode->i_mapping->a_ops = &ext4_journalled_aops;
Theodore Ts'o74d553a2013-04-03 12:39:17 -04003639 return;
Lukas Czerner3d2b1582012-02-20 17:53:00 -05003640 default:
3641 BUG();
3642 }
Dan Williams5f0663b2017-12-21 12:25:11 -08003643 if (IS_DAX(inode))
3644 inode->i_mapping->a_ops = &ext4_dax_aops;
3645 else if (test_opt(inode->i_sb, DELALLOC))
Theodore Ts'o74d553a2013-04-03 12:39:17 -04003646 inode->i_mapping->a_ops = &ext4_da_aops;
3647 else
3648 inode->i_mapping->a_ops = &ext4_aops;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003649}
3650
Ross Zwisler923ae0f2015-02-16 15:59:38 -08003651static int __ext4_block_zero_page_range(handle_t *handle,
Lukas Czernerd863dc32013-05-27 23:32:35 -04003652 struct address_space *mapping, loff_t from, loff_t length)
3653{
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03003654 ext4_fsblk_t index = from >> PAGE_SHIFT;
3655 unsigned offset = from & (PAGE_SIZE-1);
Ross Zwisler923ae0f2015-02-16 15:59:38 -08003656 unsigned blocksize, pos;
Lukas Czernerd863dc32013-05-27 23:32:35 -04003657 ext4_lblk_t iblock;
3658 struct inode *inode = mapping->host;
3659 struct buffer_head *bh;
3660 struct page *page;
3661 int err = 0;
3662
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03003663 page = find_or_create_page(mapping, from >> PAGE_SHIFT,
Michal Hockoc62d2552015-11-06 16:28:49 -08003664 mapping_gfp_constraint(mapping, ~__GFP_FS));
Lukas Czernerd863dc32013-05-27 23:32:35 -04003665 if (!page)
3666 return -ENOMEM;
3667
3668 blocksize = inode->i_sb->s_blocksize;
Lukas Czernerd863dc32013-05-27 23:32:35 -04003669
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03003670 iblock = index << (PAGE_SHIFT - inode->i_sb->s_blocksize_bits);
Lukas Czernerd863dc32013-05-27 23:32:35 -04003671
3672 if (!page_has_buffers(page))
3673 create_empty_buffers(page, blocksize, 0);
3674
3675 /* Find the buffer that contains "offset" */
3676 bh = page_buffers(page);
3677 pos = blocksize;
3678 while (offset >= pos) {
3679 bh = bh->b_this_page;
3680 iblock++;
3681 pos += blocksize;
3682 }
Lukas Czernerd863dc32013-05-27 23:32:35 -04003683 if (buffer_freed(bh)) {
3684 BUFFER_TRACE(bh, "freed: skip");
3685 goto unlock;
3686 }
Lukas Czernerd863dc32013-05-27 23:32:35 -04003687 if (!buffer_mapped(bh)) {
3688 BUFFER_TRACE(bh, "unmapped");
3689 ext4_get_block(inode, iblock, bh, 0);
3690 /* unmapped? It's a hole - nothing to do */
3691 if (!buffer_mapped(bh)) {
3692 BUFFER_TRACE(bh, "still unmapped");
3693 goto unlock;
3694 }
3695 }
3696
3697 /* Ok, it's mapped. Make sure it's up-to-date */
3698 if (PageUptodate(page))
3699 set_buffer_uptodate(bh);
3700
3701 if (!buffer_uptodate(bh)) {
zhangyi (F)2d069c02020-09-24 15:33:33 +08003702 err = ext4_read_bh_lock(bh, 0, true);
3703 if (err)
Lukas Czernerd863dc32013-05-27 23:32:35 -04003704 goto unlock;
Eric Biggers4f74d152020-07-02 01:56:07 +00003705 if (fscrypt_inode_uses_fs_layer_crypto(inode)) {
Michael Halcrowc9c74292015-04-12 00:56:10 -04003706 /* We expect the key to be set. */
Jaegeuk Kima7550b32016-07-10 14:01:03 -04003707 BUG_ON(!fscrypt_has_encryption_key(inode));
Eric Biggers834f1562019-12-26 09:41:05 -06003708 err = fscrypt_decrypt_pagecache_blocks(page, blocksize,
3709 bh_offset(bh));
3710 if (err) {
3711 clear_buffer_uptodate(bh);
3712 goto unlock;
3713 }
Michael Halcrowc9c74292015-04-12 00:56:10 -04003714 }
Lukas Czernerd863dc32013-05-27 23:32:35 -04003715 }
Lukas Czernerd863dc32013-05-27 23:32:35 -04003716 if (ext4_should_journal_data(inode)) {
3717 BUFFER_TRACE(bh, "get write access");
Jan Kara188c2992021-08-16 11:57:04 +02003718 err = ext4_journal_get_write_access(handle, inode->i_sb, bh,
3719 EXT4_JTR_NONE);
Lukas Czernerd863dc32013-05-27 23:32:35 -04003720 if (err)
3721 goto unlock;
3722 }
Lukas Czernerd863dc32013-05-27 23:32:35 -04003723 zero_user(page, offset, length);
Lukas Czernerd863dc32013-05-27 23:32:35 -04003724 BUFFER_TRACE(bh, "zeroed end of block");
3725
Lukas Czernerd863dc32013-05-27 23:32:35 -04003726 if (ext4_should_journal_data(inode)) {
3727 err = ext4_handle_dirty_metadata(handle, inode, bh);
Lukas Czerner0713ed02013-05-27 23:32:35 -04003728 } else {
jon ernst353eefd2013-07-01 08:12:39 -04003729 err = 0;
Lukas Czernerd863dc32013-05-27 23:32:35 -04003730 mark_buffer_dirty(bh);
Jan Kara3957ef52016-04-24 00:56:05 -04003731 if (ext4_should_order_data(inode))
Ross Zwisler73131fb2019-06-20 17:26:26 -04003732 err = ext4_jbd2_inode_add_write(handle, inode, from,
3733 length);
Lukas Czerner0713ed02013-05-27 23:32:35 -04003734 }
Lukas Czernerd863dc32013-05-27 23:32:35 -04003735
3736unlock:
3737 unlock_page(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03003738 put_page(page);
Lukas Czernerd863dc32013-05-27 23:32:35 -04003739 return err;
3740}
3741
Matthew Wilcox94350ab2014-03-24 15:09:16 -04003742/*
Ross Zwisler923ae0f2015-02-16 15:59:38 -08003743 * ext4_block_zero_page_range() zeros out a mapping of length 'length'
3744 * starting from file offset 'from'. The range to be zero'd must
3745 * be contained with in one block. If the specified range exceeds
3746 * the end of the block it will be shortened to end of the block
Bhaskar Chowdhury3088e5a2021-03-27 16:00:05 +05303747 * that corresponds to 'from'
Ross Zwisler923ae0f2015-02-16 15:59:38 -08003748 */
3749static int ext4_block_zero_page_range(handle_t *handle,
3750 struct address_space *mapping, loff_t from, loff_t length)
3751{
3752 struct inode *inode = mapping->host;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03003753 unsigned offset = from & (PAGE_SIZE-1);
Ross Zwisler923ae0f2015-02-16 15:59:38 -08003754 unsigned blocksize = inode->i_sb->s_blocksize;
3755 unsigned max = blocksize - (offset & (blocksize - 1));
3756
3757 /*
3758 * correct length if it does not fall between
3759 * 'from' and the end of the block
3760 */
3761 if (length > max || length < 0)
3762 length = max;
3763
Jan Kara47e69352016-11-20 18:08:05 -05003764 if (IS_DAX(inode)) {
3765 return iomap_zero_range(inode, from, length, NULL,
3766 &ext4_iomap_ops);
3767 }
Ross Zwisler923ae0f2015-02-16 15:59:38 -08003768 return __ext4_block_zero_page_range(handle, mapping, from, length);
3769}
3770
3771/*
Matthew Wilcox94350ab2014-03-24 15:09:16 -04003772 * ext4_block_truncate_page() zeroes out a mapping from file offset `from'
3773 * up to the end of the block which corresponds to `from'.
3774 * This required during truncate. We need to physically zero the tail end
3775 * of that block so it doesn't yield old data if the file is later grown.
3776 */
Stephen Hemmingerc1978552014-05-12 10:50:23 -04003777static int ext4_block_truncate_page(handle_t *handle,
Matthew Wilcox94350ab2014-03-24 15:09:16 -04003778 struct address_space *mapping, loff_t from)
3779{
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03003780 unsigned offset = from & (PAGE_SIZE-1);
Matthew Wilcox94350ab2014-03-24 15:09:16 -04003781 unsigned length;
3782 unsigned blocksize;
3783 struct inode *inode = mapping->host;
3784
Theodore Ts'o0d068632017-02-14 11:31:15 -05003785 /* If we are processing an encrypted inode during orphan list handling */
Chandan Rajendra592ddec2018-12-12 15:20:10 +05303786 if (IS_ENCRYPTED(inode) && !fscrypt_has_encryption_key(inode))
Theodore Ts'o0d068632017-02-14 11:31:15 -05003787 return 0;
3788
Matthew Wilcox94350ab2014-03-24 15:09:16 -04003789 blocksize = inode->i_sb->s_blocksize;
3790 length = blocksize - (offset & (blocksize - 1));
3791
3792 return ext4_block_zero_page_range(handle, mapping, from, length);
3793}
3794
Lukas Czernera87dd182013-05-27 23:32:35 -04003795int ext4_zero_partial_blocks(handle_t *handle, struct inode *inode,
3796 loff_t lstart, loff_t length)
3797{
3798 struct super_block *sb = inode->i_sb;
3799 struct address_space *mapping = inode->i_mapping;
Lukas Czernere1be3a92013-07-01 08:12:39 -04003800 unsigned partial_start, partial_end;
Lukas Czernera87dd182013-05-27 23:32:35 -04003801 ext4_fsblk_t start, end;
3802 loff_t byte_end = (lstart + length - 1);
3803 int err = 0;
3804
Lukas Czernere1be3a92013-07-01 08:12:39 -04003805 partial_start = lstart & (sb->s_blocksize - 1);
3806 partial_end = byte_end & (sb->s_blocksize - 1);
3807
Lukas Czernera87dd182013-05-27 23:32:35 -04003808 start = lstart >> sb->s_blocksize_bits;
3809 end = byte_end >> sb->s_blocksize_bits;
3810
3811 /* Handle partial zero within the single block */
Lukas Czernere1be3a92013-07-01 08:12:39 -04003812 if (start == end &&
3813 (partial_start || (partial_end != sb->s_blocksize - 1))) {
Lukas Czernera87dd182013-05-27 23:32:35 -04003814 err = ext4_block_zero_page_range(handle, mapping,
3815 lstart, length);
3816 return err;
3817 }
3818 /* Handle partial zero out on the start of the range */
Lukas Czernere1be3a92013-07-01 08:12:39 -04003819 if (partial_start) {
Lukas Czernera87dd182013-05-27 23:32:35 -04003820 err = ext4_block_zero_page_range(handle, mapping,
3821 lstart, sb->s_blocksize);
3822 if (err)
3823 return err;
3824 }
3825 /* Handle partial zero out on the end of the range */
Lukas Czernere1be3a92013-07-01 08:12:39 -04003826 if (partial_end != sb->s_blocksize - 1)
Lukas Czernera87dd182013-05-27 23:32:35 -04003827 err = ext4_block_zero_page_range(handle, mapping,
Lukas Czernere1be3a92013-07-01 08:12:39 -04003828 byte_end - partial_end,
3829 partial_end + 1);
Lukas Czernera87dd182013-05-27 23:32:35 -04003830 return err;
3831}
3832
Duane Griffin91ef4ca2008-07-11 19:27:31 -04003833int ext4_can_truncate(struct inode *inode)
3834{
Duane Griffin91ef4ca2008-07-11 19:27:31 -04003835 if (S_ISREG(inode->i_mode))
3836 return 1;
3837 if (S_ISDIR(inode->i_mode))
3838 return 1;
3839 if (S_ISLNK(inode->i_mode))
3840 return !ext4_inode_is_fast_symlink(inode);
3841 return 0;
3842}
3843
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003844/*
Jan Kara01127842015-12-07 14:34:49 -05003845 * We have to make sure i_disksize gets properly updated before we truncate
3846 * page cache due to hole punching or zero range. Otherwise i_disksize update
3847 * can get lost as it may have been postponed to submission of writeback but
3848 * that will never happen after we truncate page cache.
3849 */
3850int ext4_update_disksize_before_punch(struct inode *inode, loff_t offset,
3851 loff_t len)
3852{
3853 handle_t *handle;
Harshad Shirwadkar4209ae12020-04-26 18:34:37 -07003854 int ret;
3855
Jan Kara01127842015-12-07 14:34:49 -05003856 loff_t size = i_size_read(inode);
3857
Al Viro59551022016-01-22 15:40:57 -05003858 WARN_ON(!inode_is_locked(inode));
Jan Kara01127842015-12-07 14:34:49 -05003859 if (offset > size || offset + len < size)
3860 return 0;
3861
3862 if (EXT4_I(inode)->i_disksize >= size)
3863 return 0;
3864
3865 handle = ext4_journal_start(inode, EXT4_HT_MISC, 1);
3866 if (IS_ERR(handle))
3867 return PTR_ERR(handle);
3868 ext4_update_i_disksize(inode, size);
Harshad Shirwadkar4209ae12020-04-26 18:34:37 -07003869 ret = ext4_mark_inode_dirty(handle, inode);
Jan Kara01127842015-12-07 14:34:49 -05003870 ext4_journal_stop(handle);
3871
Harshad Shirwadkar4209ae12020-04-26 18:34:37 -07003872 return ret;
Jan Kara01127842015-12-07 14:34:49 -05003873}
3874
Jan Karad4f52582021-02-04 18:05:42 +01003875static void ext4_wait_dax_page(struct inode *inode)
Ross Zwisler430657b2018-07-29 17:00:22 -04003876{
Jan Karad4f52582021-02-04 18:05:42 +01003877 filemap_invalidate_unlock(inode->i_mapping);
Ross Zwisler430657b2018-07-29 17:00:22 -04003878 schedule();
Jan Karad4f52582021-02-04 18:05:42 +01003879 filemap_invalidate_lock(inode->i_mapping);
Ross Zwisler430657b2018-07-29 17:00:22 -04003880}
3881
3882int ext4_break_layouts(struct inode *inode)
3883{
Ross Zwisler430657b2018-07-29 17:00:22 -04003884 struct page *page;
Ross Zwisler430657b2018-07-29 17:00:22 -04003885 int error;
3886
Jan Karad4f52582021-02-04 18:05:42 +01003887 if (WARN_ON_ONCE(!rwsem_is_locked(&inode->i_mapping->invalidate_lock)))
Ross Zwisler430657b2018-07-29 17:00:22 -04003888 return -EINVAL;
3889
3890 do {
Ross Zwisler430657b2018-07-29 17:00:22 -04003891 page = dax_layout_busy_page(inode->i_mapping);
3892 if (!page)
3893 return 0;
3894
3895 error = ___wait_var_event(&page->_refcount,
3896 atomic_read(&page->_refcount) == 1,
3897 TASK_INTERRUPTIBLE, 0, 0,
Jan Karad4f52582021-02-04 18:05:42 +01003898 ext4_wait_dax_page(inode));
Ross Zwislerb1f38212018-09-11 13:31:16 -04003899 } while (error == 0);
Ross Zwisler430657b2018-07-29 17:00:22 -04003900
3901 return error;
3902}
3903
Jan Kara01127842015-12-07 14:34:49 -05003904/*
Ross Zwislercca32b72016-09-22 11:49:38 -04003905 * ext4_punch_hole: punches a hole in a file by releasing the blocks
Allison Hendersona4bb6b62011-05-25 07:41:50 -04003906 * associated with the given offset and length
3907 *
3908 * @inode: File inode
3909 * @offset: The offset where the hole will begin
3910 * @len: The length of the hole
3911 *
Anatol Pomozov4907cb72012-09-01 10:31:09 -07003912 * Returns: 0 on success or negative on failure
Allison Hendersona4bb6b62011-05-25 07:41:50 -04003913 */
3914
Ashish Sangwanaeb28172013-07-01 08:12:38 -04003915int ext4_punch_hole(struct inode *inode, loff_t offset, loff_t length)
Allison Hendersona4bb6b62011-05-25 07:41:50 -04003916{
Theodore Ts'o26a4c0c2013-04-03 12:45:17 -04003917 struct super_block *sb = inode->i_sb;
3918 ext4_lblk_t first_block, stop_block;
3919 struct address_space *mapping = inode->i_mapping;
Lukas Czernera87dd182013-05-27 23:32:35 -04003920 loff_t first_block_offset, last_block_offset;
Theodore Ts'o26a4c0c2013-04-03 12:45:17 -04003921 handle_t *handle;
3922 unsigned int credits;
Harshad Shirwadkar4209ae12020-04-26 18:34:37 -07003923 int ret = 0, ret2 = 0;
Theodore Ts'o26a4c0c2013-04-03 12:45:17 -04003924
Lukas Czernerb8a86842014-03-18 18:05:35 -04003925 trace_ext4_punch_hole(inode, offset, length, 0);
Zheng Liuaaddea82013-01-16 20:21:26 -05003926
Theodore Ts'oc1e82202019-08-23 22:38:00 -04003927 ext4_clear_inode_state(inode, EXT4_STATE_MAY_INLINE_DATA);
3928 if (ext4_has_inline_data(inode)) {
Jan Karad4f52582021-02-04 18:05:42 +01003929 filemap_invalidate_lock(mapping);
Theodore Ts'oc1e82202019-08-23 22:38:00 -04003930 ret = ext4_convert_inline_data(inode);
Jan Karad4f52582021-02-04 18:05:42 +01003931 filemap_invalidate_unlock(mapping);
Theodore Ts'oc1e82202019-08-23 22:38:00 -04003932 if (ret)
3933 return ret;
3934 }
3935
Theodore Ts'o26a4c0c2013-04-03 12:45:17 -04003936 /*
3937 * Write out all dirty pages to avoid race conditions
3938 * Then release them.
3939 */
Ross Zwislercca32b72016-09-22 11:49:38 -04003940 if (mapping_tagged(mapping, PAGECACHE_TAG_DIRTY)) {
Theodore Ts'o26a4c0c2013-04-03 12:45:17 -04003941 ret = filemap_write_and_wait_range(mapping, offset,
3942 offset + length - 1);
3943 if (ret)
3944 return ret;
3945 }
3946
Al Viro59551022016-01-22 15:40:57 -05003947 inode_lock(inode);
Lukas Czerner9ef06ce2014-04-12 09:47:00 -04003948
Theodore Ts'o26a4c0c2013-04-03 12:45:17 -04003949 /* No need to punch hole beyond i_size */
3950 if (offset >= inode->i_size)
3951 goto out_mutex;
3952
3953 /*
3954 * If the hole extends beyond i_size, set the hole
3955 * to end after the page that contains i_size
3956 */
3957 if (offset + length > inode->i_size) {
3958 length = inode->i_size +
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03003959 PAGE_SIZE - (inode->i_size & (PAGE_SIZE - 1)) -
Theodore Ts'o26a4c0c2013-04-03 12:45:17 -04003960 offset;
3961 }
3962
Jan Karaa3612932013-08-16 21:19:41 -04003963 if (offset & (sb->s_blocksize - 1) ||
3964 (offset + length) & (sb->s_blocksize - 1)) {
3965 /*
3966 * Attach jinode to inode for jbd2 if we do any zeroing of
3967 * partial block
3968 */
3969 ret = ext4_inode_attach_jinode(inode);
3970 if (ret < 0)
3971 goto out_mutex;
3972
3973 }
3974
Jan Karaea3d7202015-12-07 14:28:03 -05003975 /* Wait all existing dio workers, newcomers will block on i_mutex */
Jan Karaea3d7202015-12-07 14:28:03 -05003976 inode_dio_wait(inode);
3977
3978 /*
3979 * Prevent page faults from reinstantiating pages we have released from
3980 * page cache.
3981 */
Jan Karad4f52582021-02-04 18:05:42 +01003982 filemap_invalidate_lock(mapping);
Ross Zwisler430657b2018-07-29 17:00:22 -04003983
3984 ret = ext4_break_layouts(inode);
3985 if (ret)
3986 goto out_dio;
3987
Lukas Czernera87dd182013-05-27 23:32:35 -04003988 first_block_offset = round_up(offset, sb->s_blocksize);
3989 last_block_offset = round_down((offset + length), sb->s_blocksize) - 1;
Theodore Ts'o26a4c0c2013-04-03 12:45:17 -04003990
Lukas Czernera87dd182013-05-27 23:32:35 -04003991 /* Now release the pages and zero block aligned part of pages*/
Jan Kara01127842015-12-07 14:34:49 -05003992 if (last_block_offset > first_block_offset) {
3993 ret = ext4_update_disksize_before_punch(inode, offset, length);
3994 if (ret)
3995 goto out_dio;
Lukas Czernera87dd182013-05-27 23:32:35 -04003996 truncate_pagecache_range(inode, first_block_offset,
3997 last_block_offset);
Jan Kara01127842015-12-07 14:34:49 -05003998 }
Theodore Ts'o26a4c0c2013-04-03 12:45:17 -04003999
4000 if (ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS))
4001 credits = ext4_writepage_trans_blocks(inode);
4002 else
4003 credits = ext4_blocks_for_truncate(inode);
4004 handle = ext4_journal_start(inode, EXT4_HT_TRUNCATE, credits);
4005 if (IS_ERR(handle)) {
4006 ret = PTR_ERR(handle);
4007 ext4_std_error(sb, ret);
4008 goto out_dio;
4009 }
4010
Lukas Czernera87dd182013-05-27 23:32:35 -04004011 ret = ext4_zero_partial_blocks(handle, inode, offset,
4012 length);
4013 if (ret)
4014 goto out_stop;
Theodore Ts'o26a4c0c2013-04-03 12:45:17 -04004015
4016 first_block = (offset + sb->s_blocksize - 1) >>
4017 EXT4_BLOCK_SIZE_BITS(sb);
4018 stop_block = (offset + length) >> EXT4_BLOCK_SIZE_BITS(sb);
4019
Lukas Czernereee597a2018-05-13 19:28:35 -04004020 /* If there are blocks to remove, do it */
4021 if (stop_block > first_block) {
Theodore Ts'o26a4c0c2013-04-03 12:45:17 -04004022
Lukas Czernereee597a2018-05-13 19:28:35 -04004023 down_write(&EXT4_I(inode)->i_data_sem);
brookxu27bc4462020-08-17 15:36:15 +08004024 ext4_discard_preallocations(inode, 0);
Theodore Ts'o26a4c0c2013-04-03 12:45:17 -04004025
Lukas Czernereee597a2018-05-13 19:28:35 -04004026 ret = ext4_es_remove_extent(inode, first_block,
4027 stop_block - first_block);
4028 if (ret) {
4029 up_write(&EXT4_I(inode)->i_data_sem);
4030 goto out_stop;
4031 }
4032
4033 if (ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS))
4034 ret = ext4_ext_remove_space(inode, first_block,
4035 stop_block - 1);
4036 else
4037 ret = ext4_ind_remove_space(handle, inode, first_block,
4038 stop_block);
4039
Theodore Ts'o26a4c0c2013-04-03 12:45:17 -04004040 up_write(&EXT4_I(inode)->i_data_sem);
Theodore Ts'o26a4c0c2013-04-03 12:45:17 -04004041 }
Harshad Shirwadkara80f7fc2020-11-05 19:58:53 -08004042 ext4_fc_track_range(handle, inode, first_block, stop_block);
Theodore Ts'o26a4c0c2013-04-03 12:45:17 -04004043 if (IS_SYNC(inode))
4044 ext4_handle_sync(handle);
Maxim Patlasove251f9b2014-02-20 16:58:05 -05004045
Deepa Dinamanieeca7ea2016-11-14 21:40:10 -05004046 inode->i_mtime = inode->i_ctime = current_time(inode);
Harshad Shirwadkar4209ae12020-04-26 18:34:37 -07004047 ret2 = ext4_mark_inode_dirty(handle, inode);
4048 if (unlikely(ret2))
4049 ret = ret2;
Jan Kara67a7d5f2017-05-29 13:24:55 -04004050 if (ret >= 0)
4051 ext4_update_inode_fsync_trans(handle, inode, 1);
Theodore Ts'o26a4c0c2013-04-03 12:45:17 -04004052out_stop:
4053 ext4_journal_stop(handle);
4054out_dio:
Jan Karad4f52582021-02-04 18:05:42 +01004055 filemap_invalidate_unlock(mapping);
Theodore Ts'o26a4c0c2013-04-03 12:45:17 -04004056out_mutex:
Al Viro59551022016-01-22 15:40:57 -05004057 inode_unlock(inode);
Theodore Ts'o26a4c0c2013-04-03 12:45:17 -04004058 return ret;
Allison Hendersona4bb6b62011-05-25 07:41:50 -04004059}
4060
Jan Karaa3612932013-08-16 21:19:41 -04004061int ext4_inode_attach_jinode(struct inode *inode)
4062{
4063 struct ext4_inode_info *ei = EXT4_I(inode);
4064 struct jbd2_inode *jinode;
4065
4066 if (ei->jinode || !EXT4_SB(inode->i_sb)->s_journal)
4067 return 0;
4068
4069 jinode = jbd2_alloc_inode(GFP_KERNEL);
4070 spin_lock(&inode->i_lock);
4071 if (!ei->jinode) {
4072 if (!jinode) {
4073 spin_unlock(&inode->i_lock);
4074 return -ENOMEM;
4075 }
4076 ei->jinode = jinode;
4077 jbd2_journal_init_jbd_inode(ei->jinode, inode);
4078 jinode = NULL;
4079 }
4080 spin_unlock(&inode->i_lock);
4081 if (unlikely(jinode != NULL))
4082 jbd2_free_inode(jinode);
4083 return 0;
4084}
4085
Allison Hendersona4bb6b62011-05-25 07:41:50 -04004086/*
Mingming Cao617ba132006-10-11 01:20:53 -07004087 * ext4_truncate()
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004088 *
Mingming Cao617ba132006-10-11 01:20:53 -07004089 * We block out ext4_get_block() block instantiations across the entire
4090 * transaction, and VFS/VM ensures that ext4_truncate() cannot run
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004091 * simultaneously on behalf of the same inode.
4092 *
Justin P. Mattock42b2aa82011-11-28 20:31:00 -08004093 * As we work through the truncate and commit bits of it to the journal there
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004094 * is one core, guiding principle: the file's tree must always be consistent on
4095 * disk. We must be able to restart the truncate after a crash.
4096 *
4097 * The file's tree may be transiently inconsistent in memory (although it
4098 * probably isn't), but whenever we close off and commit a journal transaction,
4099 * the contents of (the filesystem + the journal) must be consistent and
4100 * restartable. It's pretty simple, really: bottom up, right to left (although
4101 * left-to-right works OK too).
4102 *
4103 * Note that at recovery time, journal replay occurs *before* the restart of
4104 * truncate against the orphan inode list.
4105 *
4106 * The committed inode has the new, desired i_size (which is the same as
Mingming Cao617ba132006-10-11 01:20:53 -07004107 * i_disksize in this case). After a crash, ext4_orphan_cleanup() will see
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004108 * that this inode's truncate did not complete and it will again call
Mingming Cao617ba132006-10-11 01:20:53 -07004109 * ext4_truncate() to have another go. So there will be instantiated blocks
4110 * to the right of the truncation point in a crashed ext4 filesystem. But
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004111 * that's fine - as long as they are linked from the inode, the post-crash
Mingming Cao617ba132006-10-11 01:20:53 -07004112 * ext4_truncate() run will find them and release them.
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004113 */
Theodore Ts'o2c98eb52016-11-13 22:02:26 -05004114int ext4_truncate(struct inode *inode)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004115{
Theodore Ts'o819c4922013-04-03 12:47:17 -04004116 struct ext4_inode_info *ei = EXT4_I(inode);
4117 unsigned int credits;
Harshad Shirwadkar4209ae12020-04-26 18:34:37 -07004118 int err = 0, err2;
Theodore Ts'o819c4922013-04-03 12:47:17 -04004119 handle_t *handle;
4120 struct address_space *mapping = inode->i_mapping;
Theodore Ts'o819c4922013-04-03 12:47:17 -04004121
Theodore Ts'o19b5ef62013-04-03 21:58:52 -04004122 /*
4123 * There is a possibility that we're either freeing the inode
Matthew Wilcoxe04027e2014-03-24 15:15:07 -04004124 * or it's a completely new inode. In those cases we might not
Theodore Ts'o19b5ef62013-04-03 21:58:52 -04004125 * have i_mutex locked because it's not necessary.
4126 */
4127 if (!(inode->i_state & (I_NEW|I_FREEING)))
Al Viro59551022016-01-22 15:40:57 -05004128 WARN_ON(!inode_is_locked(inode));
Jiaying Zhang0562e0b2011-03-21 21:38:05 -04004129 trace_ext4_truncate_enter(inode);
4130
Duane Griffin91ef4ca2008-07-11 19:27:31 -04004131 if (!ext4_can_truncate(inode))
zhengliang9a5d2652020-07-01 16:30:27 +08004132 goto out_trace;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004133
Theodore Ts'o5534fb52009-09-17 09:34:16 -04004134 if (inode->i_size == 0 && !test_opt(inode->i_sb, NO_AUTO_DA_ALLOC))
Theodore Ts'o19f5fb72010-01-24 14:34:07 -05004135 ext4_set_inode_state(inode, EXT4_STATE_DA_ALLOC_CLOSE);
Theodore Ts'o7d8f9f72009-02-24 08:21:14 -05004136
Tao Maaef1c852012-12-10 14:06:02 -05004137 if (ext4_has_inline_data(inode)) {
4138 int has_inline = 1;
4139
Theodore Ts'o01daf942017-01-22 19:35:49 -05004140 err = ext4_inline_data_truncate(inode, &has_inline);
zhengliang9a5d2652020-07-01 16:30:27 +08004141 if (err || has_inline)
4142 goto out_trace;
Tao Maaef1c852012-12-10 14:06:02 -05004143 }
4144
Jan Karaa3612932013-08-16 21:19:41 -04004145 /* If we zero-out tail of the page, we have to create jinode for jbd2 */
4146 if (inode->i_size & (inode->i_sb->s_blocksize - 1)) {
4147 if (ext4_inode_attach_jinode(inode) < 0)
zhengliang9a5d2652020-07-01 16:30:27 +08004148 goto out_trace;
Jan Karaa3612932013-08-16 21:19:41 -04004149 }
4150
Amir Goldsteinff9893d2011-06-27 16:36:31 -04004151 if (ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS))
Theodore Ts'o819c4922013-04-03 12:47:17 -04004152 credits = ext4_writepage_trans_blocks(inode);
Amir Goldsteinff9893d2011-06-27 16:36:31 -04004153 else
Theodore Ts'o819c4922013-04-03 12:47:17 -04004154 credits = ext4_blocks_for_truncate(inode);
4155
4156 handle = ext4_journal_start(inode, EXT4_HT_TRUNCATE, credits);
zhengliang9a5d2652020-07-01 16:30:27 +08004157 if (IS_ERR(handle)) {
4158 err = PTR_ERR(handle);
4159 goto out_trace;
4160 }
Theodore Ts'o819c4922013-04-03 12:47:17 -04004161
Lukas Czernereb3544c2013-05-27 23:32:35 -04004162 if (inode->i_size & (inode->i_sb->s_blocksize - 1))
4163 ext4_block_truncate_page(handle, mapping, inode->i_size);
Theodore Ts'o819c4922013-04-03 12:47:17 -04004164
4165 /*
4166 * We add the inode to the orphan list, so that if this
4167 * truncate spans multiple transactions, and we crash, we will
4168 * resume the truncate when the filesystem recovers. It also
4169 * marks the inode dirty, to catch the new size.
4170 *
4171 * Implication: the file must always be in a sane, consistent
4172 * truncatable state while each transaction commits.
4173 */
Theodore Ts'o2c98eb52016-11-13 22:02:26 -05004174 err = ext4_orphan_add(handle, inode);
4175 if (err)
Theodore Ts'o819c4922013-04-03 12:47:17 -04004176 goto out_stop;
4177
4178 down_write(&EXT4_I(inode)->i_data_sem);
4179
brookxu27bc4462020-08-17 15:36:15 +08004180 ext4_discard_preallocations(inode, 0);
Theodore Ts'o819c4922013-04-03 12:47:17 -04004181
4182 if (ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS))
Theodore Ts'od0abb362016-11-13 22:02:28 -05004183 err = ext4_ext_truncate(handle, inode);
Theodore Ts'o819c4922013-04-03 12:47:17 -04004184 else
4185 ext4_ind_truncate(handle, inode);
4186
4187 up_write(&ei->i_data_sem);
Theodore Ts'od0abb362016-11-13 22:02:28 -05004188 if (err)
4189 goto out_stop;
Theodore Ts'o819c4922013-04-03 12:47:17 -04004190
4191 if (IS_SYNC(inode))
4192 ext4_handle_sync(handle);
4193
4194out_stop:
4195 /*
4196 * If this was a simple ftruncate() and the file will remain alive,
4197 * then we need to clear up the orphan record which we created above.
4198 * However, if this was a real unlink then we were called by
Wang Shilong58d86a52014-11-25 16:17:29 -05004199 * ext4_evict_inode(), and we allow that function to clean up the
Theodore Ts'o819c4922013-04-03 12:47:17 -04004200 * orphan info for us.
4201 */
4202 if (inode->i_nlink)
4203 ext4_orphan_del(handle, inode);
4204
Deepa Dinamanieeca7ea2016-11-14 21:40:10 -05004205 inode->i_mtime = inode->i_ctime = current_time(inode);
Harshad Shirwadkar4209ae12020-04-26 18:34:37 -07004206 err2 = ext4_mark_inode_dirty(handle, inode);
4207 if (unlikely(err2 && !err))
4208 err = err2;
Theodore Ts'o819c4922013-04-03 12:47:17 -04004209 ext4_journal_stop(handle);
Alex Tomasa86c6182006-10-11 01:21:03 -07004210
zhengliang9a5d2652020-07-01 16:30:27 +08004211out_trace:
Jiaying Zhang0562e0b2011-03-21 21:38:05 -04004212 trace_ext4_truncate_exit(inode);
Theodore Ts'o2c98eb52016-11-13 22:02:26 -05004213 return err;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004214}
4215
Zhang Yi9a1bf322021-09-01 10:09:54 +08004216static inline u64 ext4_inode_peek_iversion(const struct inode *inode)
4217{
4218 if (unlikely(EXT4_I(inode)->i_flags & EXT4_EA_INODE_FL))
4219 return inode_peek_iversion_raw(inode);
4220 else
4221 return inode_peek_iversion(inode);
4222}
4223
4224static int ext4_inode_blocks_set(struct ext4_inode *raw_inode,
4225 struct ext4_inode_info *ei)
4226{
4227 struct inode *inode = &(ei->vfs_inode);
4228 u64 i_blocks = READ_ONCE(inode->i_blocks);
4229 struct super_block *sb = inode->i_sb;
4230
4231 if (i_blocks <= ~0U) {
4232 /*
4233 * i_blocks can be represented in a 32 bit variable
4234 * as multiple of 512 bytes
4235 */
4236 raw_inode->i_blocks_lo = cpu_to_le32(i_blocks);
4237 raw_inode->i_blocks_high = 0;
4238 ext4_clear_inode_flag(inode, EXT4_INODE_HUGE_FILE);
4239 return 0;
4240 }
4241
4242 /*
4243 * This should never happen since sb->s_maxbytes should not have
4244 * allowed this, sb->s_maxbytes was set according to the huge_file
4245 * feature in ext4_fill_super().
4246 */
4247 if (!ext4_has_feature_huge_file(sb))
4248 return -EFSCORRUPTED;
4249
4250 if (i_blocks <= 0xffffffffffffULL) {
4251 /*
4252 * i_blocks can be represented in a 48 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 = cpu_to_le16(i_blocks >> 32);
4257 ext4_clear_inode_flag(inode, EXT4_INODE_HUGE_FILE);
4258 } else {
4259 ext4_set_inode_flag(inode, EXT4_INODE_HUGE_FILE);
4260 /* i_block is stored in file system block size */
4261 i_blocks = i_blocks >> (inode->i_blkbits - 9);
4262 raw_inode->i_blocks_lo = cpu_to_le32(i_blocks);
4263 raw_inode->i_blocks_high = cpu_to_le16(i_blocks >> 32);
4264 }
4265 return 0;
4266}
4267
4268static int ext4_fill_raw_inode(struct inode *inode, struct ext4_inode *raw_inode)
4269{
4270 struct ext4_inode_info *ei = EXT4_I(inode);
4271 uid_t i_uid;
4272 gid_t i_gid;
4273 projid_t i_projid;
4274 int block;
4275 int err;
4276
4277 err = ext4_inode_blocks_set(raw_inode, ei);
4278
4279 raw_inode->i_mode = cpu_to_le16(inode->i_mode);
4280 i_uid = i_uid_read(inode);
4281 i_gid = i_gid_read(inode);
4282 i_projid = from_kprojid(&init_user_ns, ei->i_projid);
4283 if (!(test_opt(inode->i_sb, NO_UID32))) {
4284 raw_inode->i_uid_low = cpu_to_le16(low_16_bits(i_uid));
4285 raw_inode->i_gid_low = cpu_to_le16(low_16_bits(i_gid));
4286 /*
4287 * Fix up interoperability with old kernels. Otherwise,
4288 * old inodes get re-used with the upper 16 bits of the
4289 * uid/gid intact.
4290 */
4291 if (ei->i_dtime && list_empty(&ei->i_orphan)) {
4292 raw_inode->i_uid_high = 0;
4293 raw_inode->i_gid_high = 0;
4294 } else {
4295 raw_inode->i_uid_high =
4296 cpu_to_le16(high_16_bits(i_uid));
4297 raw_inode->i_gid_high =
4298 cpu_to_le16(high_16_bits(i_gid));
4299 }
4300 } else {
4301 raw_inode->i_uid_low = cpu_to_le16(fs_high2lowuid(i_uid));
4302 raw_inode->i_gid_low = cpu_to_le16(fs_high2lowgid(i_gid));
4303 raw_inode->i_uid_high = 0;
4304 raw_inode->i_gid_high = 0;
4305 }
4306 raw_inode->i_links_count = cpu_to_le16(inode->i_nlink);
4307
4308 EXT4_INODE_SET_XTIME(i_ctime, inode, raw_inode);
4309 EXT4_INODE_SET_XTIME(i_mtime, inode, raw_inode);
4310 EXT4_INODE_SET_XTIME(i_atime, inode, raw_inode);
4311 EXT4_EINODE_SET_XTIME(i_crtime, ei, raw_inode);
4312
4313 raw_inode->i_dtime = cpu_to_le32(ei->i_dtime);
4314 raw_inode->i_flags = cpu_to_le32(ei->i_flags & 0xFFFFFFFF);
4315 if (likely(!test_opt2(inode->i_sb, HURD_COMPAT)))
4316 raw_inode->i_file_acl_high =
4317 cpu_to_le16(ei->i_file_acl >> 32);
4318 raw_inode->i_file_acl_lo = cpu_to_le32(ei->i_file_acl);
4319 ext4_isize_set(raw_inode, ei->i_disksize);
4320
4321 raw_inode->i_generation = cpu_to_le32(inode->i_generation);
4322 if (S_ISCHR(inode->i_mode) || S_ISBLK(inode->i_mode)) {
4323 if (old_valid_dev(inode->i_rdev)) {
4324 raw_inode->i_block[0] =
4325 cpu_to_le32(old_encode_dev(inode->i_rdev));
4326 raw_inode->i_block[1] = 0;
4327 } else {
4328 raw_inode->i_block[0] = 0;
4329 raw_inode->i_block[1] =
4330 cpu_to_le32(new_encode_dev(inode->i_rdev));
4331 raw_inode->i_block[2] = 0;
4332 }
4333 } else if (!ext4_has_inline_data(inode)) {
4334 for (block = 0; block < EXT4_N_BLOCKS; block++)
4335 raw_inode->i_block[block] = ei->i_data[block];
4336 }
4337
4338 if (likely(!test_opt2(inode->i_sb, HURD_COMPAT))) {
4339 u64 ivers = ext4_inode_peek_iversion(inode);
4340
4341 raw_inode->i_disk_version = cpu_to_le32(ivers);
4342 if (ei->i_extra_isize) {
4343 if (EXT4_FITS_IN_INODE(raw_inode, ei, i_version_hi))
4344 raw_inode->i_version_hi =
4345 cpu_to_le32(ivers >> 32);
4346 raw_inode->i_extra_isize =
4347 cpu_to_le16(ei->i_extra_isize);
4348 }
4349 }
4350
4351 if (i_projid != EXT4_DEF_PROJID &&
4352 !ext4_has_feature_project(inode->i_sb))
4353 err = err ?: -EFSCORRUPTED;
4354
4355 if (EXT4_INODE_SIZE(inode->i_sb) > EXT4_GOOD_OLD_INODE_SIZE &&
4356 EXT4_FITS_IN_INODE(raw_inode, ei, i_projid))
4357 raw_inode->i_projid = cpu_to_le32(i_projid);
4358
4359 ext4_inode_csum_set(inode, raw_inode, ei);
4360 return err;
4361}
4362
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004363/*
Mingming Cao617ba132006-10-11 01:20:53 -07004364 * ext4_get_inode_loc returns with an extra refcount against the inode's
Zhang Yide01f482021-09-01 10:09:55 +08004365 * underlying buffer_head on success. If we pass 'inode' and it does not
4366 * have in-inode xattr, we have all inode data in memory that is needed
4367 * to recreate the on-disk version of this inode.
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004368 */
Harshad Shirwadkar8016e292020-10-15 13:37:59 -07004369static int __ext4_get_inode_loc(struct super_block *sb, unsigned long ino,
Zhang Yide01f482021-09-01 10:09:55 +08004370 struct inode *inode, struct ext4_iloc *iloc,
Harshad Shirwadkar8016e292020-10-15 13:37:59 -07004371 ext4_fsblk_t *ret_block)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004372{
Theodore Ts'o240799c2008-10-09 23:53:47 -04004373 struct ext4_group_desc *gdp;
4374 struct buffer_head *bh;
Theodore Ts'o240799c2008-10-09 23:53:47 -04004375 ext4_fsblk_t block;
Linus Torvalds02f03c42019-09-29 17:59:23 -07004376 struct blk_plug plug;
Theodore Ts'o240799c2008-10-09 23:53:47 -04004377 int inodes_per_block, inode_offset;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004378
Aneesh Kumar K.V3a06d772008-11-22 15:04:59 -05004379 iloc->bh = NULL;
Harshad Shirwadkar8016e292020-10-15 13:37:59 -07004380 if (ino < EXT4_ROOT_INO ||
4381 ino > le32_to_cpu(EXT4_SB(sb)->s_es->s_inodes_count))
Darrick J. Wong6a797d22015-10-17 16:16:04 -04004382 return -EFSCORRUPTED;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004383
Harshad Shirwadkar8016e292020-10-15 13:37:59 -07004384 iloc->block_group = (ino - 1) / EXT4_INODES_PER_GROUP(sb);
Theodore Ts'o240799c2008-10-09 23:53:47 -04004385 gdp = ext4_get_group_desc(sb, iloc->block_group, NULL);
4386 if (!gdp)
4387 return -EIO;
4388
4389 /*
4390 * Figure out the offset within the block group inode table
4391 */
Tao Ma00d09882011-05-09 10:26:41 -04004392 inodes_per_block = EXT4_SB(sb)->s_inodes_per_block;
Harshad Shirwadkar8016e292020-10-15 13:37:59 -07004393 inode_offset = ((ino - 1) %
Theodore Ts'o240799c2008-10-09 23:53:47 -04004394 EXT4_INODES_PER_GROUP(sb));
4395 block = ext4_inode_table(sb, gdp) + (inode_offset / inodes_per_block);
4396 iloc->offset = (inode_offset % inodes_per_block) * EXT4_INODE_SIZE(sb);
4397
4398 bh = sb_getblk(sb, block);
Wang Shilongaebf0242013-01-12 16:28:47 -05004399 if (unlikely(!bh))
Theodore Ts'o860d21e2013-01-12 16:19:36 -05004400 return -ENOMEM;
Zhang Yi8e33fad2021-08-26 21:04:08 +08004401 if (ext4_buffer_uptodate(bh))
4402 goto has_buffer;
Hidehiro Kawai9c83a922008-07-26 16:39:26 -04004403
Zhang Yi8e33fad2021-08-26 21:04:08 +08004404 lock_buffer(bh);
Zhang Yif2c779732021-09-10 16:03:16 +08004405 if (ext4_buffer_uptodate(bh)) {
4406 /* Someone brought it uptodate while we waited */
4407 unlock_buffer(bh);
4408 goto has_buffer;
4409 }
4410
Zhang Yi8e33fad2021-08-26 21:04:08 +08004411 /*
4412 * If we have all information of the inode in memory and this
4413 * is the only valid inode in the block, we need not read the
4414 * block.
4415 */
Zhang Yide01f482021-09-01 10:09:55 +08004416 if (inode && !ext4_test_inode_state(inode, EXT4_STATE_XATTR)) {
Zhang Yi8e33fad2021-08-26 21:04:08 +08004417 struct buffer_head *bitmap_bh;
4418 int i, start;
4419
4420 start = inode_offset & ~(inodes_per_block - 1);
4421
4422 /* Is the inode bitmap in cache? */
4423 bitmap_bh = sb_getblk(sb, ext4_inode_bitmap(sb, gdp));
4424 if (unlikely(!bitmap_bh))
4425 goto make_io;
4426
4427 /*
4428 * If the inode bitmap isn't in cache then the
4429 * optimisation may end up performing two reads instead
4430 * of one, so skip it.
4431 */
4432 if (!buffer_uptodate(bitmap_bh)) {
4433 brelse(bitmap_bh);
4434 goto make_io;
4435 }
4436 for (i = start; i < start + inodes_per_block; i++) {
4437 if (i == inode_offset)
4438 continue;
4439 if (ext4_test_bit(i, bitmap_bh->b_data))
4440 break;
4441 }
4442 brelse(bitmap_bh);
4443 if (i == start + inodes_per_block) {
Zhang Yide01f482021-09-01 10:09:55 +08004444 struct ext4_inode *raw_inode =
4445 (struct ext4_inode *) (bh->b_data + iloc->offset);
4446
Zhang Yi8e33fad2021-08-26 21:04:08 +08004447 /* all other inodes are free, so skip I/O */
4448 memset(bh->b_data, 0, bh->b_size);
Zhang Yide01f482021-09-01 10:09:55 +08004449 if (!ext4_test_inode_state(inode, EXT4_STATE_NEW))
4450 ext4_fill_raw_inode(inode, raw_inode);
Zhang Yi8e33fad2021-08-26 21:04:08 +08004451 set_buffer_uptodate(bh);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004452 unlock_buffer(bh);
4453 goto has_buffer;
4454 }
Zhang Yi8e33fad2021-08-26 21:04:08 +08004455 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004456
4457make_io:
Zhang Yi8e33fad2021-08-26 21:04:08 +08004458 /*
4459 * If we need to do any I/O, try to pre-readahead extra
4460 * blocks from the inode table.
4461 */
4462 blk_start_plug(&plug);
4463 if (EXT4_SB(sb)->s_inode_readahead_blks) {
4464 ext4_fsblk_t b, end, table;
4465 unsigned num;
4466 __u32 ra_blks = EXT4_SB(sb)->s_inode_readahead_blks;
Theodore Ts'o240799c2008-10-09 23:53:47 -04004467
Zhang Yi8e33fad2021-08-26 21:04:08 +08004468 table = ext4_inode_table(sb, gdp);
4469 /* s_inode_readahead_blks is always a power of 2 */
4470 b = block & ~((ext4_fsblk_t) ra_blks - 1);
4471 if (table > b)
4472 b = table;
4473 end = b + ra_blks;
4474 num = EXT4_INODES_PER_GROUP(sb);
4475 if (ext4_has_group_desc_csum(sb))
4476 num -= ext4_itable_unused_count(sb, gdp);
4477 table += num / inodes_per_block;
4478 if (end > table)
4479 end = table;
4480 while (b <= end)
4481 ext4_sb_breadahead_unmovable(sb, b++);
4482 }
Theodore Ts'o240799c2008-10-09 23:53:47 -04004483
Zhang Yi8e33fad2021-08-26 21:04:08 +08004484 /*
4485 * There are other valid inodes in the buffer, this inode
4486 * has in-inode xattrs, or we don't have this inode in memory.
4487 * Read the block from disk.
4488 */
4489 trace_ext4_load_inode(sb, ino);
4490 ext4_read_bh_nowait(bh, REQ_META | REQ_PRIO, NULL);
4491 blk_finish_plug(&plug);
4492 wait_on_buffer(bh);
4493 ext4_simulate_fail_bh(sb, bh, EXT4_SIM_INODE_EIO);
4494 if (!buffer_uptodate(bh)) {
4495 if (ret_block)
4496 *ret_block = block;
4497 brelse(bh);
4498 return -EIO;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004499 }
4500has_buffer:
4501 iloc->bh = bh;
4502 return 0;
4503}
4504
Harshad Shirwadkar8016e292020-10-15 13:37:59 -07004505static int __ext4_get_inode_loc_noinmem(struct inode *inode,
4506 struct ext4_iloc *iloc)
4507{
Harshad Shirwadkarc27c29c2021-12-01 08:34:21 -08004508 ext4_fsblk_t err_blk = 0;
Harshad Shirwadkar8016e292020-10-15 13:37:59 -07004509 int ret;
4510
Zhang Yide01f482021-09-01 10:09:55 +08004511 ret = __ext4_get_inode_loc(inode->i_sb, inode->i_ino, NULL, iloc,
Harshad Shirwadkar8016e292020-10-15 13:37:59 -07004512 &err_blk);
4513
4514 if (ret == -EIO)
4515 ext4_error_inode_block(inode, err_blk, EIO,
4516 "unable to read itable block");
4517
4518 return ret;
4519}
4520
Mingming Cao617ba132006-10-11 01:20:53 -07004521int ext4_get_inode_loc(struct inode *inode, struct ext4_iloc *iloc)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004522{
Harshad Shirwadkarc27c29c2021-12-01 08:34:21 -08004523 ext4_fsblk_t err_blk = 0;
Harshad Shirwadkar8016e292020-10-15 13:37:59 -07004524 int ret;
4525
Zhang Yide01f482021-09-01 10:09:55 +08004526 ret = __ext4_get_inode_loc(inode->i_sb, inode->i_ino, inode, iloc,
4527 &err_blk);
Harshad Shirwadkar8016e292020-10-15 13:37:59 -07004528
4529 if (ret == -EIO)
4530 ext4_error_inode_block(inode, err_blk, EIO,
4531 "unable to read itable block");
4532
4533 return ret;
4534}
4535
4536
4537int ext4_get_fc_inode_loc(struct super_block *sb, unsigned long ino,
4538 struct ext4_iloc *iloc)
4539{
Zhang Yide01f482021-09-01 10:09:55 +08004540 return __ext4_get_inode_loc(sb, ino, NULL, iloc, NULL);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004541}
4542
Ira Weinya8ab6d32020-05-28 07:59:58 -07004543static bool ext4_should_enable_dax(struct inode *inode)
Ross Zwisler66425862017-10-12 12:00:59 -04004544{
Ira Weinya8ab6d32020-05-28 07:59:58 -07004545 struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb);
4546
Ira Weiny9cb20f92020-05-28 08:00:00 -07004547 if (test_opt2(inode->i_sb, DAX_NEVER))
Ross Zwisler66425862017-10-12 12:00:59 -04004548 return false;
4549 if (!S_ISREG(inode->i_mode))
4550 return false;
4551 if (ext4_should_journal_data(inode))
4552 return false;
4553 if (ext4_has_inline_data(inode))
4554 return false;
Chandan Rajendra592ddec2018-12-12 15:20:10 +05304555 if (ext4_test_inode_flag(inode, EXT4_INODE_ENCRYPT))
Ross Zwisler66425862017-10-12 12:00:59 -04004556 return false;
Eric Biggersc93d8f82019-07-22 09:26:24 -07004557 if (ext4_test_inode_flag(inode, EXT4_INODE_VERITY))
4558 return false;
Ira Weinya8ab6d32020-05-28 07:59:58 -07004559 if (!test_bit(EXT4_FLAGS_BDEV_IS_DAX, &sbi->s_ext4_flags))
4560 return false;
4561 if (test_opt(inode->i_sb, DAX_ALWAYS))
4562 return true;
4563
Ira Weinyb383a732020-05-28 08:00:02 -07004564 return ext4_test_inode_flag(inode, EXT4_INODE_DAX);
Ross Zwisler66425862017-10-12 12:00:59 -04004565}
4566
Ira Weiny043546e2020-05-28 07:59:59 -07004567void ext4_set_inode_flags(struct inode *inode, bool init)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004568{
Mingming Cao617ba132006-10-11 01:20:53 -07004569 unsigned int flags = EXT4_I(inode)->i_flags;
Theodore Ts'o00a1a052014-03-30 10:20:01 -04004570 unsigned int new_fl = 0;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004571
Ira Weiny043546e2020-05-28 07:59:59 -07004572 WARN_ON_ONCE(IS_DAX(inode) && init);
4573
Mingming Cao617ba132006-10-11 01:20:53 -07004574 if (flags & EXT4_SYNC_FL)
Theodore Ts'o00a1a052014-03-30 10:20:01 -04004575 new_fl |= S_SYNC;
Mingming Cao617ba132006-10-11 01:20:53 -07004576 if (flags & EXT4_APPEND_FL)
Theodore Ts'o00a1a052014-03-30 10:20:01 -04004577 new_fl |= S_APPEND;
Mingming Cao617ba132006-10-11 01:20:53 -07004578 if (flags & EXT4_IMMUTABLE_FL)
Theodore Ts'o00a1a052014-03-30 10:20:01 -04004579 new_fl |= S_IMMUTABLE;
Mingming Cao617ba132006-10-11 01:20:53 -07004580 if (flags & EXT4_NOATIME_FL)
Theodore Ts'o00a1a052014-03-30 10:20:01 -04004581 new_fl |= S_NOATIME;
Mingming Cao617ba132006-10-11 01:20:53 -07004582 if (flags & EXT4_DIRSYNC_FL)
Theodore Ts'o00a1a052014-03-30 10:20:01 -04004583 new_fl |= S_DIRSYNC;
Ira Weiny043546e2020-05-28 07:59:59 -07004584
4585 /* Because of the way inode_set_flags() works we must preserve S_DAX
4586 * here if already set. */
4587 new_fl |= (inode->i_flags & S_DAX);
4588 if (init && ext4_should_enable_dax(inode))
Ross Zwisler923ae0f2015-02-16 15:59:38 -08004589 new_fl |= S_DAX;
Ira Weiny043546e2020-05-28 07:59:59 -07004590
Eric Biggers2ee6a572017-10-09 12:15:35 -07004591 if (flags & EXT4_ENCRYPT_FL)
4592 new_fl |= S_ENCRYPTED;
Gabriel Krisman Bertazib886ee32019-04-25 14:12:08 -04004593 if (flags & EXT4_CASEFOLD_FL)
4594 new_fl |= S_CASEFOLD;
Eric Biggersc93d8f82019-07-22 09:26:24 -07004595 if (flags & EXT4_VERITY_FL)
4596 new_fl |= S_VERITY;
Theodore Ts'o5f16f322014-03-24 14:43:12 -04004597 inode_set_flags(inode, new_fl,
Eric Biggers2ee6a572017-10-09 12:15:35 -07004598 S_SYNC|S_APPEND|S_IMMUTABLE|S_NOATIME|S_DIRSYNC|S_DAX|
Eric Biggersc93d8f82019-07-22 09:26:24 -07004599 S_ENCRYPTED|S_CASEFOLD|S_VERITY);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004600}
4601
Aneesh Kumar K.V0fc1b452008-01-28 23:58:26 -05004602static blkcnt_t ext4_inode_blocks(struct ext4_inode *raw_inode,
Theodore Ts'ode9a55b2009-06-14 17:45:34 -04004603 struct ext4_inode_info *ei)
Aneesh Kumar K.V0fc1b452008-01-28 23:58:26 -05004604{
4605 blkcnt_t i_blocks ;
Aneesh Kumar K.V8180a562008-01-28 23:58:27 -05004606 struct inode *inode = &(ei->vfs_inode);
4607 struct super_block *sb = inode->i_sb;
Aneesh Kumar K.V0fc1b452008-01-28 23:58:26 -05004608
Darrick J. Wonge2b911c2015-10-17 16:18:43 -04004609 if (ext4_has_feature_huge_file(sb)) {
Aneesh Kumar K.V0fc1b452008-01-28 23:58:26 -05004610 /* we are using combined 48 bit field */
4611 i_blocks = ((u64)le16_to_cpu(raw_inode->i_blocks_high)) << 32 |
4612 le32_to_cpu(raw_inode->i_blocks_lo);
Theodore Ts'o07a03822010-06-14 09:54:48 -04004613 if (ext4_test_inode_flag(inode, EXT4_INODE_HUGE_FILE)) {
Aneesh Kumar K.V8180a562008-01-28 23:58:27 -05004614 /* i_blocks represent file system block size */
4615 return i_blocks << (inode->i_blkbits - 9);
4616 } else {
4617 return i_blocks;
4618 }
Aneesh Kumar K.V0fc1b452008-01-28 23:58:26 -05004619 } else {
4620 return le32_to_cpu(raw_inode->i_blocks_lo);
4621 }
4622}
Jan Karaff9ddf72007-07-18 09:24:20 -04004623
Theodore Ts'oeb9b5f02018-05-22 17:14:07 -04004624static inline int ext4_iget_extra_inode(struct inode *inode,
Tao Ma152a7b02012-12-02 11:13:24 -05004625 struct ext4_inode *raw_inode,
4626 struct ext4_inode_info *ei)
4627{
4628 __le32 *magic = (void *)raw_inode +
4629 EXT4_GOOD_OLD_INODE_SIZE + ei->i_extra_isize;
Theodore Ts'oeb9b5f02018-05-22 17:14:07 -04004630
Eric Biggers290ab232016-12-01 14:51:58 -05004631 if (EXT4_GOOD_OLD_INODE_SIZE + ei->i_extra_isize + sizeof(__le32) <=
4632 EXT4_INODE_SIZE(inode->i_sb) &&
4633 *magic == cpu_to_le32(EXT4_XATTR_MAGIC)) {
Tao Ma152a7b02012-12-02 11:13:24 -05004634 ext4_set_inode_state(inode, EXT4_STATE_XATTR);
Theodore Ts'oeb9b5f02018-05-22 17:14:07 -04004635 return ext4_find_inline_data_nolock(inode);
Tao Maf19d5872012-12-10 14:05:51 -05004636 } else
4637 EXT4_I(inode)->i_inline_off = 0;
Theodore Ts'oeb9b5f02018-05-22 17:14:07 -04004638 return 0;
Tao Ma152a7b02012-12-02 11:13:24 -05004639}
4640
Li Xi040cb372016-01-08 16:01:21 -05004641int ext4_get_projid(struct inode *inode, kprojid_t *projid)
4642{
Kaho Ng0b7b7772016-09-05 23:11:58 -04004643 if (!ext4_has_feature_project(inode->i_sb))
Li Xi040cb372016-01-08 16:01:21 -05004644 return -EOPNOTSUPP;
4645 *projid = EXT4_I(inode)->i_projid;
4646 return 0;
4647}
4648
Eryu Guane254d1a2018-05-10 11:55:31 -04004649/*
4650 * ext4 has self-managed i_version for ea inodes, it stores the lower 32bit of
4651 * refcount in i_version, so use raw values if inode has EXT4_EA_INODE_FL flag
4652 * set.
4653 */
4654static inline void ext4_inode_set_iversion_queried(struct inode *inode, u64 val)
4655{
4656 if (unlikely(EXT4_I(inode)->i_flags & EXT4_EA_INODE_FL))
4657 inode_set_iversion_raw(inode, val);
4658 else
4659 inode_set_iversion_queried(inode, val);
4660}
Eryu Guane254d1a2018-05-10 11:55:31 -04004661
Theodore Ts'o8a363972018-12-19 12:29:13 -05004662struct inode *__ext4_iget(struct super_block *sb, unsigned long ino,
4663 ext4_iget_flags flags, const char *function,
4664 unsigned int line)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004665{
Mingming Cao617ba132006-10-11 01:20:53 -07004666 struct ext4_iloc iloc;
4667 struct ext4_inode *raw_inode;
David Howells1d1fe1e2008-02-07 00:15:37 -08004668 struct ext4_inode_info *ei;
Jan Karabd2c38c2021-08-12 15:31:22 +02004669 struct ext4_super_block *es = EXT4_SB(sb)->s_es;
David Howells1d1fe1e2008-02-07 00:15:37 -08004670 struct inode *inode;
Jan Karab436b9b2009-12-08 23:51:10 -05004671 journal_t *journal = EXT4_SB(sb)->s_journal;
David Howells1d1fe1e2008-02-07 00:15:37 -08004672 long ret;
Darrick J. Wong7e6e1ef2016-12-10 09:55:01 -05004673 loff_t size;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004674 int block;
Eric W. Biederman08cefc72012-02-07 15:41:49 -08004675 uid_t i_uid;
4676 gid_t i_gid;
Li Xi040cb372016-01-08 16:01:21 -05004677 projid_t i_projid;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004678
Theodore Ts'o191ce172018-12-31 22:34:31 -05004679 if ((!(flags & EXT4_IGET_SPECIAL) &&
Jan Karabd2c38c2021-08-12 15:31:22 +02004680 ((ino < EXT4_FIRST_INO(sb) && ino != EXT4_ROOT_INO) ||
4681 ino == le32_to_cpu(es->s_usr_quota_inum) ||
4682 ino == le32_to_cpu(es->s_grp_quota_inum) ||
Jan Kara02f310f2021-08-16 11:57:06 +02004683 ino == le32_to_cpu(es->s_prj_quota_inum) ||
4684 ino == le32_to_cpu(es->s_orphan_file_inum))) ||
Theodore Ts'o8a363972018-12-19 12:29:13 -05004685 (ino < EXT4_ROOT_INO) ||
Jan Karabd2c38c2021-08-12 15:31:22 +02004686 (ino > le32_to_cpu(es->s_inodes_count))) {
Theodore Ts'o8a363972018-12-19 12:29:13 -05004687 if (flags & EXT4_IGET_HANDLE)
4688 return ERR_PTR(-ESTALE);
Jan Kara014c9ca2020-11-27 12:33:57 +01004689 __ext4_error(sb, function, line, false, EFSCORRUPTED, 0,
Theodore Ts'o8a363972018-12-19 12:29:13 -05004690 "inode #%lu: comm %s: iget: illegal inode #",
4691 ino, current->comm);
4692 return ERR_PTR(-EFSCORRUPTED);
4693 }
4694
David Howells1d1fe1e2008-02-07 00:15:37 -08004695 inode = iget_locked(sb, ino);
4696 if (!inode)
4697 return ERR_PTR(-ENOMEM);
4698 if (!(inode->i_state & I_NEW))
4699 return inode;
4700
4701 ei = EXT4_I(inode);
Peter Huewe7dc57612011-02-21 21:01:42 -05004702 iloc.bh = NULL;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004703
Harshad Shirwadkar8016e292020-10-15 13:37:59 -07004704 ret = __ext4_get_inode_loc_noinmem(inode, &iloc);
David Howells1d1fe1e2008-02-07 00:15:37 -08004705 if (ret < 0)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004706 goto bad_inode;
Mingming Cao617ba132006-10-11 01:20:53 -07004707 raw_inode = ext4_raw_inode(&iloc);
Darrick J. Wong814525f2012-04-29 18:31:10 -04004708
Theodore Ts'o8e4b5ea2018-03-29 21:56:09 -04004709 if ((ino == EXT4_ROOT_INO) && (raw_inode->i_links_count == 0)) {
Theodore Ts'o8a363972018-12-19 12:29:13 -05004710 ext4_error_inode(inode, function, line, 0,
4711 "iget: root inode unallocated");
Theodore Ts'o8e4b5ea2018-03-29 21:56:09 -04004712 ret = -EFSCORRUPTED;
4713 goto bad_inode;
4714 }
4715
Theodore Ts'o8a363972018-12-19 12:29:13 -05004716 if ((flags & EXT4_IGET_HANDLE) &&
4717 (raw_inode->i_links_count == 0) && (raw_inode->i_mode == 0)) {
4718 ret = -ESTALE;
4719 goto bad_inode;
4720 }
4721
Darrick J. Wong814525f2012-04-29 18:31:10 -04004722 if (EXT4_INODE_SIZE(inode->i_sb) > EXT4_GOOD_OLD_INODE_SIZE) {
4723 ei->i_extra_isize = le16_to_cpu(raw_inode->i_extra_isize);
4724 if (EXT4_GOOD_OLD_INODE_SIZE + ei->i_extra_isize >
Eric Biggers2dc8d9e2016-12-01 14:43:33 -05004725 EXT4_INODE_SIZE(inode->i_sb) ||
4726 (ei->i_extra_isize & 3)) {
Theodore Ts'o8a363972018-12-19 12:29:13 -05004727 ext4_error_inode(inode, function, line, 0,
4728 "iget: bad extra_isize %u "
4729 "(inode size %u)",
Eric Biggers2dc8d9e2016-12-01 14:43:33 -05004730 ei->i_extra_isize,
4731 EXT4_INODE_SIZE(inode->i_sb));
Darrick J. Wong6a797d22015-10-17 16:16:04 -04004732 ret = -EFSCORRUPTED;
Darrick J. Wong814525f2012-04-29 18:31:10 -04004733 goto bad_inode;
4734 }
4735 } else
4736 ei->i_extra_isize = 0;
4737
4738 /* Precompute checksum seed for inode metadata */
Dmitry Monakhov9aa5d32b2014-10-13 03:36:16 -04004739 if (ext4_has_metadata_csum(sb)) {
Darrick J. Wong814525f2012-04-29 18:31:10 -04004740 struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb);
4741 __u32 csum;
4742 __le32 inum = cpu_to_le32(inode->i_ino);
4743 __le32 gen = raw_inode->i_generation;
4744 csum = ext4_chksum(sbi, sbi->s_csum_seed, (__u8 *)&inum,
4745 sizeof(inum));
4746 ei->i_csum_seed = ext4_chksum(sbi, csum, (__u8 *)&gen,
4747 sizeof(gen));
4748 }
4749
Harshad Shirwadkar8016e292020-10-15 13:37:59 -07004750 if ((!ext4_inode_csum_verify(inode, raw_inode, ei) ||
4751 ext4_simulate_fail(sb, EXT4_SIM_INODE_CRC)) &&
4752 (!(EXT4_SB(sb)->s_mount_state & EXT4_FC_REPLAY))) {
4753 ext4_error_inode_err(inode, function, line, 0,
4754 EFSBADCRC, "iget: checksum invalid");
Darrick J. Wong6a797d22015-10-17 16:16:04 -04004755 ret = -EFSBADCRC;
Darrick J. Wong814525f2012-04-29 18:31:10 -04004756 goto bad_inode;
4757 }
4758
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004759 inode->i_mode = le16_to_cpu(raw_inode->i_mode);
Eric W. Biederman08cefc72012-02-07 15:41:49 -08004760 i_uid = (uid_t)le16_to_cpu(raw_inode->i_uid_low);
4761 i_gid = (gid_t)le16_to_cpu(raw_inode->i_gid_low);
Kaho Ng0b7b7772016-09-05 23:11:58 -04004762 if (ext4_has_feature_project(sb) &&
Li Xi040cb372016-01-08 16:01:21 -05004763 EXT4_INODE_SIZE(sb) > EXT4_GOOD_OLD_INODE_SIZE &&
4764 EXT4_FITS_IN_INODE(raw_inode, ei, i_projid))
4765 i_projid = (projid_t)le32_to_cpu(raw_inode->i_projid);
4766 else
4767 i_projid = EXT4_DEF_PROJID;
4768
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04004769 if (!(test_opt(inode->i_sb, NO_UID32))) {
Eric W. Biederman08cefc72012-02-07 15:41:49 -08004770 i_uid |= le16_to_cpu(raw_inode->i_uid_high) << 16;
4771 i_gid |= le16_to_cpu(raw_inode->i_gid_high) << 16;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004772 }
Eric W. Biederman08cefc72012-02-07 15:41:49 -08004773 i_uid_write(inode, i_uid);
4774 i_gid_write(inode, i_gid);
Li Xi040cb372016-01-08 16:01:21 -05004775 ei->i_projid = make_kprojid(&init_user_ns, i_projid);
Miklos Szeredibfe86842011-10-28 14:13:29 +02004776 set_nlink(inode, le16_to_cpu(raw_inode->i_links_count));
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004777
Theodore Ts'o353eb832011-01-10 12:18:25 -05004778 ext4_clear_state_flags(ei); /* Only relevant on 32-bit archs */
Tao Ma67cf5b02012-12-10 14:04:46 -05004779 ei->i_inline_off = 0;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004780 ei->i_dir_start_lookup = 0;
4781 ei->i_dtime = le32_to_cpu(raw_inode->i_dtime);
4782 /* We now have enough fields to check if the inode was active or not.
4783 * This is needed because nfsd might try to access dead inodes
4784 * the test is that same one that e2fsck uses
4785 * NeilBrown 1999oct15
4786 */
4787 if (inode->i_nlink == 0) {
Dr. Tilmann Bubeck393d1d12013-04-08 12:54:05 -04004788 if ((inode->i_mode == 0 ||
4789 !(EXT4_SB(inode->i_sb)->s_mount_state & EXT4_ORPHAN_FS)) &&
4790 ino != EXT4_BOOT_LOADER_INO) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004791 /* this inode is deleted */
David Howells1d1fe1e2008-02-07 00:15:37 -08004792 ret = -ESTALE;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004793 goto bad_inode;
4794 }
4795 /* The only unlinked inodes we let through here have
4796 * valid i_mode and are being read by the orphan
4797 * recovery code: that's fine, we're about to complete
Dr. Tilmann Bubeck393d1d12013-04-08 12:54:05 -04004798 * the process of deleting those.
4799 * OR it is the EXT4_BOOT_LOADER_INO which is
4800 * not initialized on a new filesystem. */
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004801 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004802 ei->i_flags = le32_to_cpu(raw_inode->i_flags);
Ira Weiny043546e2020-05-28 07:59:59 -07004803 ext4_set_inode_flags(inode, true);
Aneesh Kumar K.V0fc1b452008-01-28 23:58:26 -05004804 inode->i_blocks = ext4_inode_blocks(raw_inode, ei);
Aneesh Kumar K.V7973c0c2008-01-28 23:58:27 -05004805 ei->i_file_acl = le32_to_cpu(raw_inode->i_file_acl_lo);
Darrick J. Wonge2b911c2015-10-17 16:18:43 -04004806 if (ext4_has_feature_64bit(sb))
Badari Pulavartya1ddeb72006-10-11 01:21:09 -07004807 ei->i_file_acl |=
4808 ((__u64)le16_to_cpu(raw_inode->i_file_acl_high)) << 32;
Artem Blagodarenkoe08ac992017-06-21 21:09:57 -04004809 inode->i_size = ext4_isize(sb, raw_inode);
Darrick J. Wong7e6e1ef2016-12-10 09:55:01 -05004810 if ((size = i_size_read(inode)) < 0) {
Theodore Ts'o8a363972018-12-19 12:29:13 -05004811 ext4_error_inode(inode, function, line, 0,
4812 "iget: bad i_size value: %lld", size);
Darrick J. Wong7e6e1ef2016-12-10 09:55:01 -05004813 ret = -EFSCORRUPTED;
4814 goto bad_inode;
4815 }
Jan Kara48a34312020-02-10 15:43:16 +01004816 /*
4817 * If dir_index is not enabled but there's dir with INDEX flag set,
4818 * we'd normally treat htree data as empty space. But with metadata
4819 * checksumming that corrupts checksums so forbid that.
4820 */
4821 if (!ext4_has_feature_dir_index(sb) && ext4_has_metadata_csum(sb) &&
4822 ext4_test_inode_flag(inode, EXT4_INODE_INDEX)) {
4823 ext4_error_inode(inode, function, line, 0,
4824 "iget: Dir with htree data on filesystem without dir_index feature.");
4825 ret = -EFSCORRUPTED;
4826 goto bad_inode;
4827 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004828 ei->i_disksize = inode->i_size;
Dmitry Monakhova9e7f442009-12-14 15:21:14 +03004829#ifdef CONFIG_QUOTA
4830 ei->i_reserved_quota = 0;
4831#endif
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004832 inode->i_generation = le32_to_cpu(raw_inode->i_generation);
4833 ei->i_block_group = iloc.block_group;
Theodore Ts'oa4912122009-03-12 12:18:34 -04004834 ei->i_last_alloc_group = ~0;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004835 /*
4836 * NOTE! The in-memory inode i_data array is in little-endian order
4837 * even on big-endian machines: we do NOT byteswap the block numbers!
4838 */
Mingming Cao617ba132006-10-11 01:20:53 -07004839 for (block = 0; block < EXT4_N_BLOCKS; block++)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004840 ei->i_data[block] = raw_inode->i_block[block];
4841 INIT_LIST_HEAD(&ei->i_orphan);
Harshad Shirwadkaraa75f4d2020-10-15 13:37:57 -07004842 ext4_fc_init_inode(&ei->vfs_inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004843
Jan Karab436b9b2009-12-08 23:51:10 -05004844 /*
4845 * Set transaction id's of transactions that have to be committed
4846 * to finish f[data]sync. We set them to currently running transaction
4847 * as we cannot be sure that the inode or some of its metadata isn't
4848 * part of the transaction - the inode could have been reclaimed and
4849 * now it is reread from disk.
4850 */
4851 if (journal) {
4852 transaction_t *transaction;
4853 tid_t tid;
4854
Theodore Ts'oa931da62010-08-03 21:35:12 -04004855 read_lock(&journal->j_state_lock);
Jan Karab436b9b2009-12-08 23:51:10 -05004856 if (journal->j_running_transaction)
4857 transaction = journal->j_running_transaction;
4858 else
4859 transaction = journal->j_committing_transaction;
4860 if (transaction)
4861 tid = transaction->t_tid;
4862 else
4863 tid = journal->j_commit_sequence;
Theodore Ts'oa931da62010-08-03 21:35:12 -04004864 read_unlock(&journal->j_state_lock);
Jan Karab436b9b2009-12-08 23:51:10 -05004865 ei->i_sync_tid = tid;
4866 ei->i_datasync_tid = tid;
4867 }
4868
Eric Sandeen0040d982008-02-05 22:36:43 -05004869 if (EXT4_INODE_SIZE(inode->i_sb) > EXT4_GOOD_OLD_INODE_SIZE) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004870 if (ei->i_extra_isize == 0) {
4871 /* The extra space is currently unused. Use it. */
Eric Biggers2dc8d9e2016-12-01 14:43:33 -05004872 BUILD_BUG_ON(sizeof(struct ext4_inode) & 3);
Mingming Cao617ba132006-10-11 01:20:53 -07004873 ei->i_extra_isize = sizeof(struct ext4_inode) -
4874 EXT4_GOOD_OLD_INODE_SIZE;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004875 } else {
Theodore Ts'oeb9b5f02018-05-22 17:14:07 -04004876 ret = ext4_iget_extra_inode(inode, raw_inode, ei);
4877 if (ret)
4878 goto bad_inode;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004879 }
Darrick J. Wong814525f2012-04-29 18:31:10 -04004880 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004881
Kalpak Shahef7f3832007-07-18 09:15:20 -04004882 EXT4_INODE_GET_XTIME(i_ctime, inode, raw_inode);
4883 EXT4_INODE_GET_XTIME(i_mtime, inode, raw_inode);
4884 EXT4_INODE_GET_XTIME(i_atime, inode, raw_inode);
4885 EXT4_EINODE_GET_XTIME(i_crtime, ei, raw_inode);
4886
Theodore Ts'oed3654e2014-03-24 14:09:06 -04004887 if (likely(!test_opt2(inode->i_sb, HURD_COMPAT))) {
Jeff Laytonee73f9a2018-01-09 08:21:39 -05004888 u64 ivers = le32_to_cpu(raw_inode->i_disk_version);
4889
Theodore Ts'oc4f65702014-03-20 00:32:57 -04004890 if (EXT4_INODE_SIZE(inode->i_sb) > EXT4_GOOD_OLD_INODE_SIZE) {
4891 if (EXT4_FITS_IN_INODE(raw_inode, ei, i_version_hi))
Jeff Laytonee73f9a2018-01-09 08:21:39 -05004892 ivers |=
Theodore Ts'oc4f65702014-03-20 00:32:57 -04004893 (__u64)(le32_to_cpu(raw_inode->i_version_hi)) << 32;
4894 }
Eryu Guane254d1a2018-05-10 11:55:31 -04004895 ext4_inode_set_iversion_queried(inode, ivers);
Jean Noel Cordenner25ec56b2008-01-28 23:58:27 -05004896 }
4897
Theodore Ts'oc4b5a612009-04-24 18:45:35 -04004898 ret = 0;
Theodore Ts'o485c26e2009-04-24 13:43:20 -04004899 if (ei->i_file_acl &&
Jan Karace9f24c2020-07-28 15:04:34 +02004900 !ext4_inode_block_valid(inode, ei->i_file_acl, 1)) {
Theodore Ts'o8a363972018-12-19 12:29:13 -05004901 ext4_error_inode(inode, function, line, 0,
4902 "iget: bad extended attribute block %llu",
Theodore Ts'o24676da2010-05-16 21:00:00 -04004903 ei->i_file_acl);
Darrick J. Wong6a797d22015-10-17 16:16:04 -04004904 ret = -EFSCORRUPTED;
Theodore Ts'o485c26e2009-04-24 13:43:20 -04004905 goto bad_inode;
Tao Maf19d5872012-12-10 14:05:51 -05004906 } else if (!ext4_has_inline_data(inode)) {
Liu Songbc716522018-08-02 00:11:16 -04004907 /* validate the block references in the inode */
Harshad Shirwadkar8016e292020-10-15 13:37:59 -07004908 if (!(EXT4_SB(sb)->s_mount_state & EXT4_FC_REPLAY) &&
4909 (S_ISREG(inode->i_mode) || S_ISDIR(inode->i_mode) ||
4910 (S_ISLNK(inode->i_mode) &&
4911 !ext4_inode_is_fast_symlink(inode)))) {
Liu Songbc716522018-08-02 00:11:16 -04004912 if (ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS))
Tao Maf19d5872012-12-10 14:05:51 -05004913 ret = ext4_ext_check_inode(inode);
Liu Songbc716522018-08-02 00:11:16 -04004914 else
4915 ret = ext4_ind_check_inode(inode);
Tao Maf19d5872012-12-10 14:05:51 -05004916 }
Thiemo Nagelfe2c8192009-03-31 08:36:10 -04004917 }
Theodore Ts'o567f3e92009-11-14 08:19:05 -05004918 if (ret)
Theodore Ts'ode9a55b2009-06-14 17:45:34 -04004919 goto bad_inode;
Aneesh Kumar K.V7a262f72009-03-27 16:39:58 -04004920
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004921 if (S_ISREG(inode->i_mode)) {
Mingming Cao617ba132006-10-11 01:20:53 -07004922 inode->i_op = &ext4_file_inode_operations;
Boaz Harroshbe64f882015-04-15 16:15:17 -07004923 inode->i_fop = &ext4_file_operations;
Mingming Cao617ba132006-10-11 01:20:53 -07004924 ext4_set_aops(inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004925 } else if (S_ISDIR(inode->i_mode)) {
Mingming Cao617ba132006-10-11 01:20:53 -07004926 inode->i_op = &ext4_dir_inode_operations;
4927 inode->i_fop = &ext4_dir_operations;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004928 } else if (S_ISLNK(inode->i_mode)) {
Luis R. Rodriguez6390d332018-05-13 16:45:56 -04004929 /* VFS does not allow setting these so must be corruption */
4930 if (IS_APPEND(inode) || IS_IMMUTABLE(inode)) {
Theodore Ts'o8a363972018-12-19 12:29:13 -05004931 ext4_error_inode(inode, function, line, 0,
4932 "iget: immutable or append flags "
4933 "not allowed on symlinks");
Luis R. Rodriguez6390d332018-05-13 16:45:56 -04004934 ret = -EFSCORRUPTED;
4935 goto bad_inode;
4936 }
Chandan Rajendra592ddec2018-12-12 15:20:10 +05304937 if (IS_ENCRYPTED(inode)) {
Al Viroa7a67e82015-04-27 17:51:30 -04004938 inode->i_op = &ext4_encrypted_symlink_inode_operations;
4939 ext4_set_aops(inode);
4940 } else if (ext4_inode_is_fast_symlink(inode)) {
Al Viro75e75662015-05-02 10:13:58 -04004941 inode->i_link = (char *)ei->i_data;
Mingming Cao617ba132006-10-11 01:20:53 -07004942 inode->i_op = &ext4_fast_symlink_inode_operations;
Duane Griffine83c1392008-12-19 20:47:15 +00004943 nd_terminate_link(ei->i_data, inode->i_size,
4944 sizeof(ei->i_data) - 1);
4945 } else {
Mingming Cao617ba132006-10-11 01:20:53 -07004946 inode->i_op = &ext4_symlink_inode_operations;
4947 ext4_set_aops(inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004948 }
Al Viro21fc61c2015-11-17 01:07:57 -05004949 inode_nohighmem(inode);
Theodore Ts'o563bdd62009-03-26 00:06:19 -04004950 } else if (S_ISCHR(inode->i_mode) || S_ISBLK(inode->i_mode) ||
4951 S_ISFIFO(inode->i_mode) || S_ISSOCK(inode->i_mode)) {
Mingming Cao617ba132006-10-11 01:20:53 -07004952 inode->i_op = &ext4_special_inode_operations;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004953 if (raw_inode->i_block[0])
4954 init_special_inode(inode, inode->i_mode,
4955 old_decode_dev(le32_to_cpu(raw_inode->i_block[0])));
4956 else
4957 init_special_inode(inode, inode->i_mode,
4958 new_decode_dev(le32_to_cpu(raw_inode->i_block[1])));
Dr. Tilmann Bubeck393d1d12013-04-08 12:54:05 -04004959 } else if (ino == EXT4_BOOT_LOADER_INO) {
4960 make_bad_inode(inode);
Theodore Ts'o563bdd62009-03-26 00:06:19 -04004961 } else {
Darrick J. Wong6a797d22015-10-17 16:16:04 -04004962 ret = -EFSCORRUPTED;
Theodore Ts'o8a363972018-12-19 12:29:13 -05004963 ext4_error_inode(inode, function, line, 0,
4964 "iget: bogus i_mode (%o)", inode->i_mode);
Theodore Ts'o563bdd62009-03-26 00:06:19 -04004965 goto bad_inode;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004966 }
Theodore Ts'o6456ca62019-09-03 01:43:17 -04004967 if (IS_CASEFOLDED(inode) && !ext4_has_feature_casefold(inode->i_sb))
4968 ext4_error_inode(inode, function, line, 0,
4969 "casefold flag without casefold feature");
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04004970 brelse(iloc.bh);
Tahsin Erdogandec214d2017-06-22 11:44:55 -04004971
David Howells1d1fe1e2008-02-07 00:15:37 -08004972 unlock_new_inode(inode);
4973 return inode;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004974
4975bad_inode:
Theodore Ts'o567f3e92009-11-14 08:19:05 -05004976 brelse(iloc.bh);
David Howells1d1fe1e2008-02-07 00:15:37 -08004977 iget_failed(inode);
4978 return ERR_PTR(ret);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004979}
4980
David Howells3f19b2a2017-12-01 11:40:16 +00004981static void __ext4_update_other_inode_time(struct super_block *sb,
4982 unsigned long orig_ino,
4983 unsigned long ino,
4984 struct ext4_inode *raw_inode)
Theodore Ts'oa26f4992015-02-02 00:37:02 -05004985{
David Howells3f19b2a2017-12-01 11:40:16 +00004986 struct inode *inode;
Theodore Ts'oa26f4992015-02-02 00:37:02 -05004987
David Howells3f19b2a2017-12-01 11:40:16 +00004988 inode = find_inode_by_ino_rcu(sb, ino);
4989 if (!inode)
4990 return;
4991
Eric Biggersed296c62021-01-12 11:02:53 -08004992 if (!inode_is_dirtytime_only(inode))
David Howells3f19b2a2017-12-01 11:40:16 +00004993 return;
4994
Theodore Ts'oa26f4992015-02-02 00:37:02 -05004995 spin_lock(&inode->i_lock);
Eric Biggersed296c62021-01-12 11:02:53 -08004996 if (inode_is_dirtytime_only(inode)) {
Theodore Ts'oa26f4992015-02-02 00:37:02 -05004997 struct ext4_inode_info *ei = EXT4_I(inode);
4998
Jan Kara5fcd5752020-05-29 16:24:43 +02004999 inode->i_state &= ~I_DIRTY_TIME;
Theodore Ts'oa26f4992015-02-02 00:37:02 -05005000 spin_unlock(&inode->i_lock);
5001
5002 spin_lock(&ei->i_raw_lock);
David Howells3f19b2a2017-12-01 11:40:16 +00005003 EXT4_INODE_SET_XTIME(i_ctime, inode, raw_inode);
5004 EXT4_INODE_SET_XTIME(i_mtime, inode, raw_inode);
5005 EXT4_INODE_SET_XTIME(i_atime, inode, raw_inode);
5006 ext4_inode_csum_set(inode, raw_inode, ei);
Theodore Ts'oa26f4992015-02-02 00:37:02 -05005007 spin_unlock(&ei->i_raw_lock);
David Howells3f19b2a2017-12-01 11:40:16 +00005008 trace_ext4_other_inode_update_time(inode, orig_ino);
5009 return;
Theodore Ts'oa26f4992015-02-02 00:37:02 -05005010 }
5011 spin_unlock(&inode->i_lock);
Theodore Ts'oa26f4992015-02-02 00:37:02 -05005012}
5013
5014/*
5015 * Opportunistically update the other time fields for other inodes in
5016 * the same inode table block.
5017 */
5018static void ext4_update_other_inodes_time(struct super_block *sb,
5019 unsigned long orig_ino, char *buf)
5020{
Theodore Ts'oa26f4992015-02-02 00:37:02 -05005021 unsigned long ino;
5022 int i, inodes_per_block = EXT4_SB(sb)->s_inodes_per_block;
5023 int inode_size = EXT4_INODE_SIZE(sb);
5024
Theodore Ts'o0f0ff9a2015-07-01 23:37:46 -04005025 /*
5026 * Calculate the first inode in the inode table block. Inode
5027 * numbers are one-based. That is, the first inode in a block
5028 * (assuming 4k blocks and 256 byte inodes) is (n*16 + 1).
5029 */
5030 ino = ((orig_ino - 1) & ~(inodes_per_block - 1)) + 1;
David Howells3f19b2a2017-12-01 11:40:16 +00005031 rcu_read_lock();
Theodore Ts'oa26f4992015-02-02 00:37:02 -05005032 for (i = 0; i < inodes_per_block; i++, ino++, buf += inode_size) {
5033 if (ino == orig_ino)
5034 continue;
David Howells3f19b2a2017-12-01 11:40:16 +00005035 __ext4_update_other_inode_time(sb, orig_ino, ino,
5036 (struct ext4_inode *)buf);
Theodore Ts'oa26f4992015-02-02 00:37:02 -05005037 }
David Howells3f19b2a2017-12-01 11:40:16 +00005038 rcu_read_unlock();
Theodore Ts'oa26f4992015-02-02 00:37:02 -05005039}
5040
Zhang Yi664bd382021-09-01 10:09:53 +08005041/*
5042 * Post the struct inode info into an on-disk inode location in the
5043 * buffer-cache. This gobbles the caller's reference to the
5044 * buffer_head in the inode location struct.
5045 *
5046 * The caller must have write access to iloc->bh.
5047 */
5048static int ext4_do_update_inode(handle_t *handle,
5049 struct inode *inode,
5050 struct ext4_iloc *iloc)
5051{
5052 struct ext4_inode *raw_inode = ext4_raw_inode(iloc);
5053 struct ext4_inode_info *ei = EXT4_I(inode);
5054 struct buffer_head *bh = iloc->bh;
5055 struct super_block *sb = inode->i_sb;
5056 int err;
5057 int need_datasync = 0, set_large_file = 0;
5058
5059 spin_lock(&ei->i_raw_lock);
5060
5061 /*
5062 * For fields not tracked in the in-memory inode, initialise them
5063 * to zero for new inodes.
5064 */
5065 if (ext4_test_inode_state(inode, EXT4_STATE_NEW))
5066 memset(raw_inode, 0, EXT4_SB(inode->i_sb)->s_inode_size);
5067
5068 if (READ_ONCE(ei->i_disksize) != ext4_isize(inode->i_sb, raw_inode))
5069 need_datasync = 1;
5070 if (ei->i_disksize > 0x7fffffffULL) {
5071 if (!ext4_has_feature_large_file(sb) ||
5072 EXT4_SB(sb)->s_es->s_rev_level == cpu_to_le32(EXT4_GOOD_OLD_REV))
5073 set_large_file = 1;
5074 }
5075
5076 err = ext4_fill_raw_inode(inode, raw_inode);
Theodore Ts'o202ee5d2014-04-21 14:37:55 -04005077 spin_unlock(&ei->i_raw_lock);
Zhang Yibaaae9792021-08-26 21:04:09 +08005078 if (err) {
5079 EXT4_ERROR_INODE(inode, "corrupted inode contents");
5080 goto out_brelse;
5081 }
5082
Linus Torvalds1751e8a2017-11-27 13:05:09 -08005083 if (inode->i_sb->s_flags & SB_LAZYTIME)
Theodore Ts'oa26f4992015-02-02 00:37:02 -05005084 ext4_update_other_inodes_time(inode->i_sb, inode->i_ino,
5085 bh->b_data);
Theodore Ts'o202ee5d2014-04-21 14:37:55 -04005086
Frank Mayhar830156c2009-09-29 10:07:47 -04005087 BUFFER_TRACE(bh, "call ext4_handle_dirty_metadata");
Shijie Luo7d8bd3c2021-03-12 01:50:51 -05005088 err = ext4_handle_dirty_metadata(handle, NULL, bh);
5089 if (err)
Zhang Yibaaae9792021-08-26 21:04:09 +08005090 goto out_error;
Theodore Ts'o19f5fb72010-01-24 14:34:07 -05005091 ext4_clear_inode_state(inode, EXT4_STATE_NEW);
Theodore Ts'o202ee5d2014-04-21 14:37:55 -04005092 if (set_large_file) {
liang xie5d601252014-05-12 22:06:43 -04005093 BUFFER_TRACE(EXT4_SB(sb)->s_sbh, "get write access");
Jan Kara188c2992021-08-16 11:57:04 +02005094 err = ext4_journal_get_write_access(handle, sb,
5095 EXT4_SB(sb)->s_sbh,
5096 EXT4_JTR_NONE);
Theodore Ts'o202ee5d2014-04-21 14:37:55 -04005097 if (err)
Zhang Yibaaae9792021-08-26 21:04:09 +08005098 goto out_error;
Jan Kara05c2c002020-12-16 11:18:39 +01005099 lock_buffer(EXT4_SB(sb)->s_sbh);
Darrick J. Wonge2b911c2015-10-17 16:18:43 -04005100 ext4_set_feature_large_file(sb);
Jan Kara05c2c002020-12-16 11:18:39 +01005101 ext4_superblock_csum_set(sb);
5102 unlock_buffer(EXT4_SB(sb)->s_sbh);
Theodore Ts'o202ee5d2014-04-21 14:37:55 -04005103 ext4_handle_sync(handle);
Jan Karaa3f5cf12020-12-16 11:18:44 +01005104 err = ext4_handle_dirty_metadata(handle, NULL,
5105 EXT4_SB(sb)->s_sbh);
Theodore Ts'o202ee5d2014-04-21 14:37:55 -04005106 }
Jan Karab71fc072012-09-26 21:52:20 -04005107 ext4_update_inode_fsync_trans(handle, inode, need_datasync);
Zhang Yibaaae9792021-08-26 21:04:09 +08005108out_error:
5109 ext4_std_error(inode->i_sb, err);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005110out_brelse:
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04005111 brelse(bh);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005112 return err;
5113}
5114
5115/*
Mingming Cao617ba132006-10-11 01:20:53 -07005116 * ext4_write_inode()
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005117 *
5118 * We are called from a few places:
5119 *
Theodore Ts'o87f7e412014-04-08 11:38:28 -04005120 * - Within generic_file_aio_write() -> generic_write_sync() for O_SYNC files.
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005121 * Here, there will be no transaction running. We wait for any running
Anatol Pomozov4907cb72012-09-01 10:31:09 -07005122 * transaction to commit.
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005123 *
Theodore Ts'o87f7e412014-04-08 11:38:28 -04005124 * - Within flush work (sys_sync(), kupdate and such).
5125 * We wait on commit, if told to.
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005126 *
Theodore Ts'o87f7e412014-04-08 11:38:28 -04005127 * - Within iput_final() -> write_inode_now()
5128 * We wait on commit, if told to.
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005129 *
5130 * In all cases it is actually safe for us to return without doing anything,
5131 * because the inode has been copied into a raw inode buffer in
Theodore Ts'o87f7e412014-04-08 11:38:28 -04005132 * ext4_mark_inode_dirty(). This is a correctness thing for WB_SYNC_ALL
5133 * writeback.
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005134 *
5135 * Note that we are absolutely dependent upon all inode dirtiers doing the
5136 * right thing: they *must* call mark_inode_dirty() after dirtying info in
5137 * which we are interested.
5138 *
5139 * It would be a bug for them to not do this. The code:
5140 *
5141 * mark_inode_dirty(inode)
5142 * stuff();
5143 * inode->i_size = expr;
5144 *
Theodore Ts'o87f7e412014-04-08 11:38:28 -04005145 * is in error because write_inode() could occur while `stuff()' is running,
5146 * and the new i_size will be lost. Plus the inode will no longer be on the
5147 * superblock's dirty inode list.
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005148 */
Christoph Hellwiga9185b42010-03-05 09:21:37 +01005149int ext4_write_inode(struct inode *inode, struct writeback_control *wbc)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005150{
Frank Mayhar91ac6f42009-09-09 22:33:47 -04005151 int err;
5152
Theodore Ts'o18f2c4f2018-12-19 14:36:58 -05005153 if (WARN_ON_ONCE(current->flags & PF_MEMALLOC) ||
5154 sb_rdonly(inode->i_sb))
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005155 return 0;
5156
Theodore Ts'o18f2c4f2018-12-19 14:36:58 -05005157 if (unlikely(ext4_forced_shutdown(EXT4_SB(inode->i_sb))))
5158 return -EIO;
5159
Frank Mayhar91ac6f42009-09-09 22:33:47 -04005160 if (EXT4_SB(inode->i_sb)->s_journal) {
5161 if (ext4_journal_current_handle()) {
5162 jbd_debug(1, "called recursively, non-PF_MEMALLOC!\n");
5163 dump_stack();
5164 return -EIO;
5165 }
5166
Jan Kara10542c22014-03-04 10:50:50 -05005167 /*
5168 * No need to force transaction in WB_SYNC_NONE mode. Also
5169 * ext4_sync_fs() will force the commit after everything is
5170 * written.
5171 */
5172 if (wbc->sync_mode != WB_SYNC_ALL || wbc->for_sync)
Frank Mayhar91ac6f42009-09-09 22:33:47 -04005173 return 0;
5174
Harshad Shirwadkaraa75f4d2020-10-15 13:37:57 -07005175 err = ext4_fc_commit(EXT4_SB(inode->i_sb)->s_journal,
Theodore Ts'o18f2c4f2018-12-19 14:36:58 -05005176 EXT4_I(inode)->i_sync_tid);
Frank Mayhar91ac6f42009-09-09 22:33:47 -04005177 } else {
5178 struct ext4_iloc iloc;
5179
Harshad Shirwadkar8016e292020-10-15 13:37:59 -07005180 err = __ext4_get_inode_loc_noinmem(inode, &iloc);
Frank Mayhar91ac6f42009-09-09 22:33:47 -04005181 if (err)
5182 return err;
Jan Kara10542c22014-03-04 10:50:50 -05005183 /*
5184 * sync(2) will flush the whole buffer cache. No need to do
5185 * it here separately for each inode.
5186 */
5187 if (wbc->sync_mode == WB_SYNC_ALL && !wbc->for_sync)
Frank Mayhar830156c2009-09-29 10:07:47 -04005188 sync_dirty_buffer(iloc.bh);
5189 if (buffer_req(iloc.bh) && !buffer_uptodate(iloc.bh)) {
Theodore Ts'o54d3adb2020-03-28 19:33:43 -04005190 ext4_error_inode_block(inode, iloc.bh->b_blocknr, EIO,
5191 "IO error syncing inode");
Frank Mayhar830156c2009-09-29 10:07:47 -04005192 err = -EIO;
5193 }
Curt Wohlgemuthfd2dd9f2010-04-03 17:44:16 -04005194 brelse(iloc.bh);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005195 }
Frank Mayhar91ac6f42009-09-09 22:33:47 -04005196 return err;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005197}
5198
5199/*
Jan Kara53e87262012-12-25 13:29:52 -05005200 * In data=journal mode ext4_journalled_invalidatepage() may fail to invalidate
5201 * buffers that are attached to a page stradding i_size and are undergoing
5202 * commit. In that case we have to wait for commit to finish and try again.
5203 */
5204static void ext4_wait_for_tail_page_commit(struct inode *inode)
5205{
5206 struct page *page;
5207 unsigned offset;
5208 journal_t *journal = EXT4_SB(inode->i_sb)->s_journal;
5209 tid_t commit_tid = 0;
5210 int ret;
5211
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005212 offset = inode->i_size & (PAGE_SIZE - 1);
Jan Kara53e87262012-12-25 13:29:52 -05005213 /*
yangerkun565333a2019-09-19 14:35:08 +08005214 * If the page is fully truncated, we don't need to wait for any commit
5215 * (and we even should not as __ext4_journalled_invalidatepage() may
5216 * strip all buffers from the page but keep the page dirty which can then
5217 * confuse e.g. concurrent ext4_writepage() seeing dirty page without
5218 * buffers). Also we don't need to wait for any commit if all buffers in
5219 * the page remain valid. This is most beneficial for the common case of
5220 * blocksize == PAGESIZE.
Jan Kara53e87262012-12-25 13:29:52 -05005221 */
yangerkun565333a2019-09-19 14:35:08 +08005222 if (!offset || offset > (PAGE_SIZE - i_blocksize(inode)))
Jan Kara53e87262012-12-25 13:29:52 -05005223 return;
5224 while (1) {
5225 page = find_lock_page(inode->i_mapping,
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005226 inode->i_size >> PAGE_SHIFT);
Jan Kara53e87262012-12-25 13:29:52 -05005227 if (!page)
5228 return;
Lukas Czernerca99fdd2013-05-21 23:25:01 -04005229 ret = __ext4_journalled_invalidatepage(page, offset,
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005230 PAGE_SIZE - offset);
Jan Kara53e87262012-12-25 13:29:52 -05005231 unlock_page(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005232 put_page(page);
Jan Kara53e87262012-12-25 13:29:52 -05005233 if (ret != -EBUSY)
5234 return;
5235 commit_tid = 0;
5236 read_lock(&journal->j_state_lock);
5237 if (journal->j_committing_transaction)
5238 commit_tid = journal->j_committing_transaction->t_tid;
5239 read_unlock(&journal->j_state_lock);
5240 if (commit_tid)
5241 jbd2_log_wait_commit(journal, commit_tid);
5242 }
5243}
5244
5245/*
Mingming Cao617ba132006-10-11 01:20:53 -07005246 * ext4_setattr()
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005247 *
5248 * Called from notify_change.
5249 *
5250 * We want to trap VFS attempts to truncate the file as soon as
5251 * possible. In particular, we want to make sure that when the VFS
5252 * shrinks i_size, we put the inode on the orphan list and modify
5253 * i_disksize immediately, so that during the subsequent flushing of
5254 * dirty pages and freeing of disk blocks, we can guarantee that any
5255 * commit will leave the blocks being flushed in an unused state on
5256 * disk. (On recovery, the inode will get truncated and the blocks will
5257 * be freed, so we have a strong guarantee that no future commit will
5258 * leave these blocks visible to the user.)
5259 *
Jan Kara678aaf42008-07-11 19:27:31 -04005260 * Another thing we have to assure is that if we are in ordered mode
5261 * and inode is still attached to the committing transaction, we must
5262 * we start writeout of all the dirty pages which are being truncated.
5263 * This way we are sure that all the data written in the previous
5264 * transaction are already on disk (truncate waits for pages under
5265 * writeback).
5266 *
5267 * Called with inode->i_mutex down.
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005268 */
Christian Brauner549c7292021-01-21 14:19:43 +01005269int ext4_setattr(struct user_namespace *mnt_userns, struct dentry *dentry,
5270 struct iattr *attr)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005271{
David Howells2b0143b2015-03-17 22:25:59 +00005272 struct inode *inode = d_inode(dentry);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005273 int error, rc = 0;
Dmitry Monakhov3d287de2010-10-27 22:08:46 -04005274 int orphan = 0;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005275 const unsigned int ia_valid = attr->ia_valid;
5276
Theodore Ts'o0db1ff22017-02-05 01:28:48 -05005277 if (unlikely(ext4_forced_shutdown(EXT4_SB(inode->i_sb))))
5278 return -EIO;
5279
Theodore Ts'o02b016c2019-06-09 22:04:33 -04005280 if (unlikely(IS_IMMUTABLE(inode)))
5281 return -EPERM;
5282
5283 if (unlikely(IS_APPEND(inode) &&
5284 (ia_valid & (ATTR_MODE | ATTR_UID |
5285 ATTR_GID | ATTR_TIMES_SET))))
5286 return -EPERM;
5287
Christian Brauner14f3db52021-01-21 14:19:57 +01005288 error = setattr_prepare(mnt_userns, dentry, attr);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005289 if (error)
5290 return error;
5291
Eric Biggers3ce2b8d2017-10-18 20:21:58 -04005292 error = fscrypt_prepare_setattr(dentry, attr);
5293 if (error)
5294 return error;
5295
Eric Biggersc93d8f82019-07-22 09:26:24 -07005296 error = fsverity_prepare_setattr(dentry, attr);
5297 if (error)
5298 return error;
5299
Jan Karaa7cdade2015-06-29 16:22:54 +02005300 if (is_quota_modification(inode, attr)) {
5301 error = dquot_initialize(inode);
5302 if (error)
5303 return error;
5304 }
Harshad Shirwadkar2729cfd2021-12-23 12:21:37 -08005305
Eric W. Biederman08cefc72012-02-07 15:41:49 -08005306 if ((ia_valid & ATTR_UID && !uid_eq(attr->ia_uid, inode->i_uid)) ||
5307 (ia_valid & ATTR_GID && !gid_eq(attr->ia_gid, inode->i_gid))) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005308 handle_t *handle;
5309
5310 /* (user+group)*(old+new) structure, inode write (sb,
5311 * inode block, ? - but truncate inode update has it) */
Theodore Ts'o9924a922013-02-08 21:59:22 -05005312 handle = ext4_journal_start(inode, EXT4_HT_QUOTA,
5313 (EXT4_MAXQUOTAS_INIT_BLOCKS(inode->i_sb) +
5314 EXT4_MAXQUOTAS_DEL_BLOCKS(inode->i_sb)) + 3);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005315 if (IS_ERR(handle)) {
5316 error = PTR_ERR(handle);
5317 goto err_out;
5318 }
Tahsin Erdogan7a9ca532017-06-22 11:46:48 -04005319
5320 /* dquot_transfer() calls back ext4_get_inode_usage() which
5321 * counts xattr inode references.
5322 */
5323 down_read(&EXT4_I(inode)->xattr_sem);
Christoph Hellwigb43fa822010-03-03 09:05:03 -05005324 error = dquot_transfer(inode, attr);
Tahsin Erdogan7a9ca532017-06-22 11:46:48 -04005325 up_read(&EXT4_I(inode)->xattr_sem);
5326
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005327 if (error) {
Mingming Cao617ba132006-10-11 01:20:53 -07005328 ext4_journal_stop(handle);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005329 return error;
5330 }
5331 /* Update corresponding info in inode so that everything is in
5332 * one transaction */
5333 if (attr->ia_valid & ATTR_UID)
5334 inode->i_uid = attr->ia_uid;
5335 if (attr->ia_valid & ATTR_GID)
5336 inode->i_gid = attr->ia_gid;
Mingming Cao617ba132006-10-11 01:20:53 -07005337 error = ext4_mark_inode_dirty(handle, inode);
5338 ext4_journal_stop(handle);
Pan Bian512c15e2021-01-17 00:57:32 -08005339 if (unlikely(error)) {
Harshad Shirwadkar4209ae12020-04-26 18:34:37 -07005340 return error;
Pan Bian512c15e2021-01-17 00:57:32 -08005341 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005342 }
5343
Josef Bacik3da40c72015-06-22 00:31:26 -04005344 if (attr->ia_valid & ATTR_SIZE) {
Jan Kara52083862013-08-17 10:07:17 -04005345 handle_t *handle;
Josef Bacik3da40c72015-06-22 00:31:26 -04005346 loff_t oldsize = inode->i_size;
Jan Karab9c1c262019-05-30 11:56:23 -04005347 int shrink = (attr->ia_size < inode->i_size);
Christoph Hellwig562c72aa52011-06-24 14:29:45 -04005348
Dmitry Monakhov12e9b892010-05-16 22:00:00 -04005349 if (!(ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS))) {
Eric Sandeene2b46572008-01-28 23:58:27 -05005350 struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb);
5351
Harshad Shirwadkaraa75f4d2020-10-15 13:37:57 -07005352 if (attr->ia_size > sbi->s_bitmap_maxbytes) {
Theodore Ts'o0c095c72010-07-27 11:56:06 -04005353 return -EFBIG;
Harshad Shirwadkaraa75f4d2020-10-15 13:37:57 -07005354 }
Eric Sandeene2b46572008-01-28 23:58:27 -05005355 }
Harshad Shirwadkaraa75f4d2020-10-15 13:37:57 -07005356 if (!S_ISREG(inode->i_mode)) {
Josef Bacik3da40c72015-06-22 00:31:26 -04005357 return -EINVAL;
Harshad Shirwadkaraa75f4d2020-10-15 13:37:57 -07005358 }
Christoph Hellwigdff6efc2013-11-19 07:17:07 -08005359
5360 if (IS_I_VERSION(inode) && attr->ia_size != inode->i_size)
5361 inode_inc_iversion(inode);
5362
Jan Karab9c1c262019-05-30 11:56:23 -04005363 if (shrink) {
5364 if (ext4_should_order_data(inode)) {
5365 error = ext4_begin_ordered_truncate(inode,
Jan Kara678aaf42008-07-11 19:27:31 -04005366 attr->ia_size);
Jan Karab9c1c262019-05-30 11:56:23 -04005367 if (error)
5368 goto err_out;
5369 }
5370 /*
5371 * Blocks are going to be removed from the inode. Wait
5372 * for dio in flight.
5373 */
5374 inode_dio_wait(inode);
Josef Bacik3da40c72015-06-22 00:31:26 -04005375 }
Jan Karab9c1c262019-05-30 11:56:23 -04005376
Jan Karad4f52582021-02-04 18:05:42 +01005377 filemap_invalidate_lock(inode->i_mapping);
Jan Karab9c1c262019-05-30 11:56:23 -04005378
5379 rc = ext4_break_layouts(inode);
5380 if (rc) {
Jan Karad4f52582021-02-04 18:05:42 +01005381 filemap_invalidate_unlock(inode->i_mapping);
Harshad Shirwadkaraa75f4d2020-10-15 13:37:57 -07005382 goto err_out;
Jan Karab9c1c262019-05-30 11:56:23 -04005383 }
5384
Josef Bacik3da40c72015-06-22 00:31:26 -04005385 if (attr->ia_size != inode->i_size) {
Jan Kara52083862013-08-17 10:07:17 -04005386 handle = ext4_journal_start(inode, EXT4_HT_INODE, 3);
5387 if (IS_ERR(handle)) {
5388 error = PTR_ERR(handle);
Jan Karab9c1c262019-05-30 11:56:23 -04005389 goto out_mmap_sem;
Jan Kara52083862013-08-17 10:07:17 -04005390 }
Josef Bacik3da40c72015-06-22 00:31:26 -04005391 if (ext4_handle_valid(handle) && shrink) {
Jan Kara52083862013-08-17 10:07:17 -04005392 error = ext4_orphan_add(handle, inode);
5393 orphan = 1;
5394 }
Eryu Guan911af572015-07-28 15:08:41 -04005395 /*
5396 * Update c/mtime on truncate up, ext4_truncate() will
5397 * update c/mtime in shrink case below
5398 */
5399 if (!shrink) {
Deepa Dinamanieeca7ea2016-11-14 21:40:10 -05005400 inode->i_mtime = current_time(inode);
Eryu Guan911af572015-07-28 15:08:41 -04005401 inode->i_ctime = inode->i_mtime;
5402 }
Harshad Shirwadkaraa75f4d2020-10-15 13:37:57 -07005403
5404 if (shrink)
Harshad Shirwadkara80f7fc2020-11-05 19:58:53 -08005405 ext4_fc_track_range(handle, inode,
Harshad Shirwadkaraa75f4d2020-10-15 13:37:57 -07005406 (attr->ia_size > 0 ? attr->ia_size - 1 : 0) >>
5407 inode->i_sb->s_blocksize_bits,
Xin Yin97259582021-12-23 11:23:37 +08005408 EXT_MAX_BLOCKS - 1);
Harshad Shirwadkaraa75f4d2020-10-15 13:37:57 -07005409 else
5410 ext4_fc_track_range(
Harshad Shirwadkara80f7fc2020-11-05 19:58:53 -08005411 handle, inode,
Harshad Shirwadkaraa75f4d2020-10-15 13:37:57 -07005412 (oldsize > 0 ? oldsize - 1 : oldsize) >>
5413 inode->i_sb->s_blocksize_bits,
5414 (attr->ia_size > 0 ? attr->ia_size - 1 : 0) >>
5415 inode->i_sb->s_blocksize_bits);
5416
Jan Kara90e775b2013-08-17 10:09:31 -04005417 down_write(&EXT4_I(inode)->i_data_sem);
Jan Kara52083862013-08-17 10:07:17 -04005418 EXT4_I(inode)->i_disksize = attr->ia_size;
5419 rc = ext4_mark_inode_dirty(handle, inode);
5420 if (!error)
5421 error = rc;
Jan Kara90e775b2013-08-17 10:09:31 -04005422 /*
5423 * We have to update i_size under i_data_sem together
5424 * with i_disksize to avoid races with writeback code
5425 * running ext4_wb_update_i_disksize().
5426 */
5427 if (!error)
5428 i_size_write(inode, attr->ia_size);
5429 up_write(&EXT4_I(inode)->i_data_sem);
Jan Kara52083862013-08-17 10:07:17 -04005430 ext4_journal_stop(handle);
Jan Karab9c1c262019-05-30 11:56:23 -04005431 if (error)
5432 goto out_mmap_sem;
5433 if (!shrink) {
5434 pagecache_isize_extended(inode, oldsize,
5435 inode->i_size);
5436 } else if (ext4_should_journal_data(inode)) {
5437 ext4_wait_for_tail_page_commit(inode);
Jan Kara678aaf42008-07-11 19:27:31 -04005438 }
Jan Karad6320cb2014-10-01 21:49:46 -04005439 }
Ross Zwisler430657b2018-07-29 17:00:22 -04005440
Jan Kara52083862013-08-17 10:07:17 -04005441 /*
5442 * Truncate pagecache after we've waited for commit
5443 * in data=journal mode to make pages freeable.
5444 */
Ross Zwisler923ae0f2015-02-16 15:59:38 -08005445 truncate_pagecache(inode, inode->i_size);
Jan Karab9c1c262019-05-30 11:56:23 -04005446 /*
5447 * Call ext4_truncate() even if i_size didn't change to
5448 * truncate possible preallocated blocks.
5449 */
5450 if (attr->ia_size <= oldsize) {
Theodore Ts'o2c98eb52016-11-13 22:02:26 -05005451 rc = ext4_truncate(inode);
5452 if (rc)
5453 error = rc;
5454 }
Jan Karab9c1c262019-05-30 11:56:23 -04005455out_mmap_sem:
Jan Karad4f52582021-02-04 18:05:42 +01005456 filemap_invalidate_unlock(inode->i_mapping);
Theodore Ts'o072bd7e2011-05-23 15:13:02 -04005457 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005458
Theodore Ts'o2c98eb52016-11-13 22:02:26 -05005459 if (!error) {
Christian Brauner14f3db52021-01-21 14:19:57 +01005460 setattr_copy(mnt_userns, inode, attr);
Christoph Hellwig10257742010-06-04 11:30:02 +02005461 mark_inode_dirty(inode);
5462 }
5463
5464 /*
5465 * If the call to ext4_truncate failed to get a transaction handle at
5466 * all, we need to clean up the in-core orphan list manually.
5467 */
Dmitry Monakhov3d287de2010-10-27 22:08:46 -04005468 if (orphan && inode->i_nlink)
Mingming Cao617ba132006-10-11 01:20:53 -07005469 ext4_orphan_del(NULL, inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005470
Theodore Ts'o2c98eb52016-11-13 22:02:26 -05005471 if (!error && (ia_valid & ATTR_MODE))
Christian Brauner14f3db52021-01-21 14:19:57 +01005472 rc = posix_acl_chmod(mnt_userns, inode, inode->i_mode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005473
5474err_out:
Harshad Shirwadkaraa75f4d2020-10-15 13:37:57 -07005475 if (error)
5476 ext4_std_error(inode->i_sb, error);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005477 if (!error)
5478 error = rc;
5479 return error;
5480}
5481
Christian Brauner549c7292021-01-21 14:19:43 +01005482int ext4_getattr(struct user_namespace *mnt_userns, const struct path *path,
5483 struct kstat *stat, u32 request_mask, unsigned int query_flags)
Mingming Cao3e3398a2008-07-11 19:27:31 -04005484{
David Howells99652ea2017-03-31 18:31:56 +01005485 struct inode *inode = d_inode(path->dentry);
5486 struct ext4_inode *raw_inode;
5487 struct ext4_inode_info *ei = EXT4_I(inode);
5488 unsigned int flags;
Mingming Cao3e3398a2008-07-11 19:27:31 -04005489
Theodore Ts'od4c5e962019-11-28 22:26:51 -05005490 if ((request_mask & STATX_BTIME) &&
5491 EXT4_FITS_IN_INODE(raw_inode, ei, i_crtime)) {
David Howells99652ea2017-03-31 18:31:56 +01005492 stat->result_mask |= STATX_BTIME;
5493 stat->btime.tv_sec = ei->i_crtime.tv_sec;
5494 stat->btime.tv_nsec = ei->i_crtime.tv_nsec;
5495 }
5496
5497 flags = ei->i_flags & EXT4_FL_USER_VISIBLE;
5498 if (flags & EXT4_APPEND_FL)
5499 stat->attributes |= STATX_ATTR_APPEND;
5500 if (flags & EXT4_COMPR_FL)
5501 stat->attributes |= STATX_ATTR_COMPRESSED;
5502 if (flags & EXT4_ENCRYPT_FL)
5503 stat->attributes |= STATX_ATTR_ENCRYPTED;
5504 if (flags & EXT4_IMMUTABLE_FL)
5505 stat->attributes |= STATX_ATTR_IMMUTABLE;
5506 if (flags & EXT4_NODUMP_FL)
5507 stat->attributes |= STATX_ATTR_NODUMP;
Eric Biggers1f607192019-10-29 13:41:39 -07005508 if (flags & EXT4_VERITY_FL)
5509 stat->attributes |= STATX_ATTR_VERITY;
David Howells99652ea2017-03-31 18:31:56 +01005510
David Howells3209f682017-03-31 18:32:17 +01005511 stat->attributes_mask |= (STATX_ATTR_APPEND |
5512 STATX_ATTR_COMPRESSED |
5513 STATX_ATTR_ENCRYPTED |
5514 STATX_ATTR_IMMUTABLE |
Eric Biggers1f607192019-10-29 13:41:39 -07005515 STATX_ATTR_NODUMP |
5516 STATX_ATTR_VERITY);
David Howells3209f682017-03-31 18:32:17 +01005517
Christian Brauner14f3db52021-01-21 14:19:57 +01005518 generic_fillattr(mnt_userns, inode, stat);
David Howells99652ea2017-03-31 18:31:56 +01005519 return 0;
5520}
5521
Christian Brauner549c7292021-01-21 14:19:43 +01005522int ext4_file_getattr(struct user_namespace *mnt_userns,
5523 const struct path *path, struct kstat *stat,
David Howells99652ea2017-03-31 18:31:56 +01005524 u32 request_mask, unsigned int query_flags)
5525{
5526 struct inode *inode = d_inode(path->dentry);
5527 u64 delalloc_blocks;
5528
Christian Brauner14f3db52021-01-21 14:19:57 +01005529 ext4_getattr(mnt_userns, path, stat, request_mask, query_flags);
Mingming Cao3e3398a2008-07-11 19:27:31 -04005530
5531 /*
Andreas Dilger9206c562013-11-11 22:38:12 -05005532 * If there is inline data in the inode, the inode will normally not
5533 * have data blocks allocated (it may have an external xattr block).
5534 * Report at least one sector for such files, so tools like tar, rsync,
Theodore Ts'od67d64f2017-03-25 17:33:31 -04005535 * others don't incorrectly think the file is completely sparse.
Andreas Dilger9206c562013-11-11 22:38:12 -05005536 */
5537 if (unlikely(ext4_has_inline_data(inode)))
5538 stat->blocks += (stat->size + 511) >> 9;
5539
5540 /*
Mingming Cao3e3398a2008-07-11 19:27:31 -04005541 * We can't update i_blocks if the block allocation is delayed
5542 * otherwise in the case of system crash before the real block
5543 * allocation is done, we will have i_blocks inconsistent with
5544 * on-disk file blocks.
5545 * We always keep i_blocks updated together with real
5546 * allocation. But to not confuse with user, stat
5547 * will return the blocks that include the delayed allocation
5548 * blocks for this file.
5549 */
Tao Ma96607552012-05-31 22:54:16 -04005550 delalloc_blocks = EXT4_C2B(EXT4_SB(inode->i_sb),
Andreas Dilger9206c562013-11-11 22:38:12 -05005551 EXT4_I(inode)->i_reserved_data_blocks);
5552 stat->blocks += delalloc_blocks << (inode->i_sb->s_blocksize_bits - 9);
Mingming Cao3e3398a2008-07-11 19:27:31 -04005553 return 0;
5554}
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005555
Jan Karafffb2732013-06-04 13:01:11 -04005556static int ext4_index_trans_blocks(struct inode *inode, int lblocks,
5557 int pextents)
Mingming Caoa02908f2008-08-19 22:16:07 -04005558{
Dmitry Monakhov12e9b892010-05-16 22:00:00 -04005559 if (!(ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS)))
Jan Karafffb2732013-06-04 13:01:11 -04005560 return ext4_ind_trans_blocks(inode, lblocks);
5561 return ext4_ext_index_trans_blocks(inode, pextents);
Mingming Caoa02908f2008-08-19 22:16:07 -04005562}
Theodore Ts'oac51d832008-11-06 16:49:36 -05005563
Mingming Caoa02908f2008-08-19 22:16:07 -04005564/*
5565 * Account for index blocks, block groups bitmaps and block group
5566 * descriptor blocks if modify datablocks and index blocks
5567 * worse case, the indexs blocks spread over different block groups
5568 *
5569 * If datablocks are discontiguous, they are possible to spread over
Anatol Pomozov4907cb72012-09-01 10:31:09 -07005570 * different block groups too. If they are contiguous, with flexbg,
Mingming Caoa02908f2008-08-19 22:16:07 -04005571 * they could still across block group boundary.
5572 *
5573 * Also account for superblock, inode, quota and xattr blocks
5574 */
Tahsin Erdogandec214d2017-06-22 11:44:55 -04005575static int ext4_meta_trans_blocks(struct inode *inode, int lblocks,
Jan Karafffb2732013-06-04 13:01:11 -04005576 int pextents)
Mingming Caoa02908f2008-08-19 22:16:07 -04005577{
Theodore Ts'o8df96752009-05-01 08:50:38 -04005578 ext4_group_t groups, ngroups = ext4_get_groups_count(inode->i_sb);
5579 int gdpblocks;
Mingming Caoa02908f2008-08-19 22:16:07 -04005580 int idxblocks;
5581 int ret = 0;
5582
5583 /*
Jan Karafffb2732013-06-04 13:01:11 -04005584 * How many index blocks need to touch to map @lblocks logical blocks
5585 * to @pextents physical extents?
Mingming Caoa02908f2008-08-19 22:16:07 -04005586 */
Jan Karafffb2732013-06-04 13:01:11 -04005587 idxblocks = ext4_index_trans_blocks(inode, lblocks, pextents);
Mingming Caoa02908f2008-08-19 22:16:07 -04005588
5589 ret = idxblocks;
5590
5591 /*
5592 * Now let's see how many group bitmaps and group descriptors need
5593 * to account
5594 */
Jan Karafffb2732013-06-04 13:01:11 -04005595 groups = idxblocks + pextents;
Mingming Caoa02908f2008-08-19 22:16:07 -04005596 gdpblocks = groups;
Theodore Ts'o8df96752009-05-01 08:50:38 -04005597 if (groups > ngroups)
5598 groups = ngroups;
Mingming Caoa02908f2008-08-19 22:16:07 -04005599 if (groups > EXT4_SB(inode->i_sb)->s_gdb_count)
5600 gdpblocks = EXT4_SB(inode->i_sb)->s_gdb_count;
5601
5602 /* bitmaps and block group descriptor blocks */
5603 ret += groups + gdpblocks;
5604
5605 /* Blocks for super block, inode, quota and xattr blocks */
5606 ret += EXT4_META_TRANS_BLOCKS(inode->i_sb);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005607
5608 return ret;
5609}
5610
5611/*
Lucas De Marchi25985ed2011-03-30 22:57:33 -03005612 * Calculate the total number of credits to reserve to fit
Mingming Caof3bd1f32008-08-19 22:16:03 -04005613 * the modification of a single pages into a single transaction,
5614 * which may include multiple chunks of block allocations.
Mingming Caoa02908f2008-08-19 22:16:07 -04005615 *
Mingming Cao525f4ed2008-08-19 22:15:58 -04005616 * This could be called via ext4_write_begin()
Mingming Caoa02908f2008-08-19 22:16:07 -04005617 *
Mingming Cao525f4ed2008-08-19 22:15:58 -04005618 * We need to consider the worse case, when
Mingming Caoa02908f2008-08-19 22:16:07 -04005619 * one new block per extent.
Mingming Caoa02908f2008-08-19 22:16:07 -04005620 */
5621int ext4_writepage_trans_blocks(struct inode *inode)
5622{
5623 int bpp = ext4_journal_blocks_per_page(inode);
5624 int ret;
5625
Jan Karafffb2732013-06-04 13:01:11 -04005626 ret = ext4_meta_trans_blocks(inode, bpp, bpp);
Mingming Caoa02908f2008-08-19 22:16:07 -04005627
5628 /* Account for data blocks for journalled mode */
5629 if (ext4_should_journal_data(inode))
5630 ret += bpp;
5631 return ret;
5632}
Mingming Caof3bd1f32008-08-19 22:16:03 -04005633
5634/*
5635 * Calculate the journal credits for a chunk of data modification.
5636 *
5637 * This is called from DIO, fallocate or whoever calling
Eric Sandeen79e83032010-07-27 11:56:07 -04005638 * ext4_map_blocks() to map/allocate a chunk of contiguous disk blocks.
Mingming Caof3bd1f32008-08-19 22:16:03 -04005639 *
5640 * journal buffers for data blocks are not included here, as DIO
5641 * and fallocate do no need to journal data buffers.
5642 */
5643int ext4_chunk_trans_blocks(struct inode *inode, int nrblocks)
5644{
5645 return ext4_meta_trans_blocks(inode, nrblocks, 1);
5646}
5647
Mingming Caoa02908f2008-08-19 22:16:07 -04005648/*
Mingming Cao617ba132006-10-11 01:20:53 -07005649 * The caller must have previously called ext4_reserve_inode_write().
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005650 * Give this, we know that the caller already has write access to iloc->bh.
5651 */
Mingming Cao617ba132006-10-11 01:20:53 -07005652int ext4_mark_iloc_dirty(handle_t *handle,
Theodore Ts'ode9a55b2009-06-14 17:45:34 -04005653 struct inode *inode, struct ext4_iloc *iloc)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005654{
5655 int err = 0;
5656
Vasily Averina6758302018-11-06 16:49:50 -05005657 if (unlikely(ext4_forced_shutdown(EXT4_SB(inode->i_sb)))) {
5658 put_bh(iloc->bh);
Theodore Ts'o0db1ff22017-02-05 01:28:48 -05005659 return -EIO;
Vasily Averina6758302018-11-06 16:49:50 -05005660 }
Harshad Shirwadkara80f7fc2020-11-05 19:58:53 -08005661 ext4_fc_track_inode(handle, inode);
Harshad Shirwadkaraa75f4d2020-10-15 13:37:57 -07005662
Theodore Ts'oc64db502012-03-02 12:23:11 -05005663 if (IS_I_VERSION(inode))
Jean Noel Cordenner25ec56b2008-01-28 23:58:27 -05005664 inode_inc_iversion(inode);
5665
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005666 /* the do_update_inode consumes one bh->b_count */
5667 get_bh(iloc->bh);
5668
Mingming Caodab291a2006-10-11 01:21:01 -07005669 /* ext4_do_update_inode() does jbd2_journal_dirty_metadata */
Frank Mayhar830156c2009-09-29 10:07:47 -04005670 err = ext4_do_update_inode(handle, inode, iloc);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005671 put_bh(iloc->bh);
5672 return err;
5673}
5674
5675/*
5676 * On success, We end up with an outstanding reference count against
5677 * iloc->bh. This _must_ be cleaned up later.
5678 */
5679
5680int
Mingming Cao617ba132006-10-11 01:20:53 -07005681ext4_reserve_inode_write(handle_t *handle, struct inode *inode,
5682 struct ext4_iloc *iloc)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005683{
Frank Mayhar03901312009-01-07 00:06:22 -05005684 int err;
5685
Theodore Ts'o0db1ff22017-02-05 01:28:48 -05005686 if (unlikely(ext4_forced_shutdown(EXT4_SB(inode->i_sb))))
5687 return -EIO;
5688
Frank Mayhar03901312009-01-07 00:06:22 -05005689 err = ext4_get_inode_loc(inode, iloc);
5690 if (!err) {
5691 BUFFER_TRACE(iloc->bh, "get_write_access");
Jan Kara188c2992021-08-16 11:57:04 +02005692 err = ext4_journal_get_write_access(handle, inode->i_sb,
5693 iloc->bh, EXT4_JTR_NONE);
Frank Mayhar03901312009-01-07 00:06:22 -05005694 if (err) {
5695 brelse(iloc->bh);
5696 iloc->bh = NULL;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005697 }
5698 }
Mingming Cao617ba132006-10-11 01:20:53 -07005699 ext4_std_error(inode->i_sb, err);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005700 return err;
5701}
5702
Miao Xiec03b45b2017-08-06 01:00:49 -04005703static int __ext4_expand_extra_isize(struct inode *inode,
5704 unsigned int new_extra_isize,
5705 struct ext4_iloc *iloc,
5706 handle_t *handle, int *no_expand)
5707{
5708 struct ext4_inode *raw_inode;
5709 struct ext4_xattr_ibody_header *header;
Theodore Ts'o4ea99932019-11-07 21:43:41 -05005710 unsigned int inode_size = EXT4_INODE_SIZE(inode->i_sb);
5711 struct ext4_inode_info *ei = EXT4_I(inode);
Miao Xiec03b45b2017-08-06 01:00:49 -04005712 int error;
5713
Theodore Ts'o4ea99932019-11-07 21:43:41 -05005714 /* this was checked at iget time, but double check for good measure */
5715 if ((EXT4_GOOD_OLD_INODE_SIZE + ei->i_extra_isize > inode_size) ||
5716 (ei->i_extra_isize & 3)) {
5717 EXT4_ERROR_INODE(inode, "bad extra_isize %u (inode size %u)",
5718 ei->i_extra_isize,
5719 EXT4_INODE_SIZE(inode->i_sb));
5720 return -EFSCORRUPTED;
5721 }
5722 if ((new_extra_isize < ei->i_extra_isize) ||
5723 (new_extra_isize < 4) ||
5724 (new_extra_isize > inode_size - EXT4_GOOD_OLD_INODE_SIZE))
5725 return -EINVAL; /* Should never happen */
5726
Miao Xiec03b45b2017-08-06 01:00:49 -04005727 raw_inode = ext4_raw_inode(iloc);
5728
5729 header = IHDR(inode, raw_inode);
5730
5731 /* No extended attributes present */
5732 if (!ext4_test_inode_state(inode, EXT4_STATE_XATTR) ||
5733 header->h_magic != cpu_to_le32(EXT4_XATTR_MAGIC)) {
5734 memset((void *)raw_inode + EXT4_GOOD_OLD_INODE_SIZE +
5735 EXT4_I(inode)->i_extra_isize, 0,
5736 new_extra_isize - EXT4_I(inode)->i_extra_isize);
5737 EXT4_I(inode)->i_extra_isize = new_extra_isize;
5738 return 0;
5739 }
5740
5741 /* try to expand with EAs present */
5742 error = ext4_expand_extra_isize_ea(inode, new_extra_isize,
5743 raw_inode, handle);
5744 if (error) {
5745 /*
5746 * Inode size expansion failed; don't try again
5747 */
5748 *no_expand = 1;
5749 }
5750
5751 return error;
5752}
5753
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005754/*
Kalpak Shah6dd4ee72007-07-18 09:19:57 -04005755 * Expand an inode by new_extra_isize bytes.
5756 * Returns 0 on success or negative error number on failure.
5757 */
Miao Xiecf0a5e82017-08-06 00:40:01 -04005758static int ext4_try_to_expand_extra_isize(struct inode *inode,
5759 unsigned int new_extra_isize,
5760 struct ext4_iloc iloc,
5761 handle_t *handle)
Kalpak Shah6dd4ee72007-07-18 09:19:57 -04005762{
Miao Xie3b10fdc2017-08-06 00:27:38 -04005763 int no_expand;
5764 int error;
Kalpak Shah6dd4ee72007-07-18 09:19:57 -04005765
Miao Xiecf0a5e82017-08-06 00:40:01 -04005766 if (ext4_test_inode_state(inode, EXT4_STATE_NO_EXPAND))
5767 return -EOVERFLOW;
5768
5769 /*
5770 * In nojournal mode, we can immediately attempt to expand
5771 * the inode. When journaled, we first need to obtain extra
5772 * buffer credits since we may write into the EA block
5773 * with this same handle. If journal_extend fails, then it will
5774 * only result in a minor loss of functionality for that inode.
5775 * If this is felt to be critical, then e2fsck should be run to
5776 * force a large enough s_min_extra_isize.
5777 */
Jan Kara6cb367c2019-11-05 17:44:14 +01005778 if (ext4_journal_extend(handle,
Jan Kara83448bd2019-11-05 17:44:29 +01005779 EXT4_DATA_TRANS_BLOCKS(inode->i_sb), 0) != 0)
Miao Xiecf0a5e82017-08-06 00:40:01 -04005780 return -ENOSPC;
Kalpak Shah6dd4ee72007-07-18 09:19:57 -04005781
Miao Xie3b10fdc2017-08-06 00:27:38 -04005782 if (ext4_write_trylock_xattr(inode, &no_expand) == 0)
Miao Xiecf0a5e82017-08-06 00:40:01 -04005783 return -EBUSY;
Miao Xie3b10fdc2017-08-06 00:27:38 -04005784
Miao Xiec03b45b2017-08-06 01:00:49 -04005785 error = __ext4_expand_extra_isize(inode, new_extra_isize, &iloc,
5786 handle, &no_expand);
Miao Xie3b10fdc2017-08-06 00:27:38 -04005787 ext4_write_unlock_xattr(inode, &no_expand);
Miao Xiecf0a5e82017-08-06 00:40:01 -04005788
Miao Xie3b10fdc2017-08-06 00:27:38 -04005789 return error;
Kalpak Shah6dd4ee72007-07-18 09:19:57 -04005790}
5791
Miao Xiec03b45b2017-08-06 01:00:49 -04005792int ext4_expand_extra_isize(struct inode *inode,
5793 unsigned int new_extra_isize,
5794 struct ext4_iloc *iloc)
5795{
5796 handle_t *handle;
5797 int no_expand;
5798 int error, rc;
5799
5800 if (ext4_test_inode_state(inode, EXT4_STATE_NO_EXPAND)) {
5801 brelse(iloc->bh);
5802 return -EOVERFLOW;
5803 }
5804
5805 handle = ext4_journal_start(inode, EXT4_HT_INODE,
5806 EXT4_DATA_TRANS_BLOCKS(inode->i_sb));
5807 if (IS_ERR(handle)) {
5808 error = PTR_ERR(handle);
5809 brelse(iloc->bh);
5810 return error;
5811 }
5812
5813 ext4_write_lock_xattr(inode, &no_expand);
5814
zhangyi (F)ddccb6d2019-02-21 11:29:10 -05005815 BUFFER_TRACE(iloc->bh, "get_write_access");
Jan Kara188c2992021-08-16 11:57:04 +02005816 error = ext4_journal_get_write_access(handle, inode->i_sb, iloc->bh,
5817 EXT4_JTR_NONE);
Miao Xiec03b45b2017-08-06 01:00:49 -04005818 if (error) {
5819 brelse(iloc->bh);
Dan Carpenter7f420d642019-12-13 21:50:11 +03005820 goto out_unlock;
Miao Xiec03b45b2017-08-06 01:00:49 -04005821 }
5822
5823 error = __ext4_expand_extra_isize(inode, new_extra_isize, iloc,
5824 handle, &no_expand);
5825
5826 rc = ext4_mark_iloc_dirty(handle, inode, iloc);
5827 if (!error)
5828 error = rc;
5829
Dan Carpenter7f420d642019-12-13 21:50:11 +03005830out_unlock:
Miao Xiec03b45b2017-08-06 01:00:49 -04005831 ext4_write_unlock_xattr(inode, &no_expand);
Miao Xiec03b45b2017-08-06 01:00:49 -04005832 ext4_journal_stop(handle);
5833 return error;
5834}
5835
Kalpak Shah6dd4ee72007-07-18 09:19:57 -04005836/*
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005837 * What we do here is to mark the in-core inode as clean with respect to inode
5838 * dirtiness (it may still be data-dirty).
5839 * This means that the in-core inode may be reaped by prune_icache
5840 * without having to perform any I/O. This is a very good thing,
5841 * because *any* task may call prune_icache - even ones which
5842 * have a transaction open against a different journal.
5843 *
5844 * Is this cheating? Not really. Sure, we haven't written the
5845 * inode out, but prune_icache isn't a user-visible syncing function.
5846 * Whenever the user wants stuff synced (sys_sync, sys_msync, sys_fsync)
5847 * we start and wait on commits.
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005848 */
Harshad Shirwadkar4209ae12020-04-26 18:34:37 -07005849int __ext4_mark_inode_dirty(handle_t *handle, struct inode *inode,
5850 const char *func, unsigned int line)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005851{
Mingming Cao617ba132006-10-11 01:20:53 -07005852 struct ext4_iloc iloc;
Kalpak Shah6dd4ee72007-07-18 09:19:57 -04005853 struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb);
Miao Xiecf0a5e82017-08-06 00:40:01 -04005854 int err;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005855
5856 might_sleep();
Theodore Ts'o7ff9c072010-11-08 13:51:33 -05005857 trace_ext4_mark_inode_dirty(inode, _RET_IP_);
Mingming Cao617ba132006-10-11 01:20:53 -07005858 err = ext4_reserve_inode_write(handle, inode, &iloc);
Eryu Guan5e1021f2016-03-12 21:40:32 -05005859 if (err)
Harshad Shirwadkar4209ae12020-04-26 18:34:37 -07005860 goto out;
Miao Xiecf0a5e82017-08-06 00:40:01 -04005861
5862 if (EXT4_I(inode)->i_extra_isize < sbi->s_want_extra_isize)
5863 ext4_try_to_expand_extra_isize(inode, sbi->s_want_extra_isize,
5864 iloc, handle);
5865
Harshad Shirwadkar4209ae12020-04-26 18:34:37 -07005866 err = ext4_mark_iloc_dirty(handle, inode, &iloc);
5867out:
5868 if (unlikely(err))
5869 ext4_error_inode_err(inode, func, line, 0, err,
5870 "mark_inode_dirty error");
5871 return err;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005872}
5873
5874/*
Mingming Cao617ba132006-10-11 01:20:53 -07005875 * ext4_dirty_inode() is called from __mark_inode_dirty()
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005876 *
5877 * We're really interested in the case where a file is being extended.
5878 * i_size has been changed by generic_commit_write() and we thus need
5879 * to include the updated inode in the current transaction.
5880 *
Christoph Hellwig5dd40562010-03-03 09:05:00 -05005881 * Also, dquot_alloc_block() will always dirty the inode when blocks
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005882 * are allocated to the file.
5883 *
5884 * If the inode is marked synchronous, we don't honour that here - doing
5885 * so would cause a commit on atime updates, which we don't bother doing.
5886 * We handle synchronous inodes at the highest possible level.
5887 */
Christoph Hellwigaa385722011-05-27 06:53:02 -04005888void ext4_dirty_inode(struct inode *inode, int flags)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005889{
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005890 handle_t *handle;
5891
Theodore Ts'o9924a922013-02-08 21:59:22 -05005892 handle = ext4_journal_start(inode, EXT4_HT_INODE, 2);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005893 if (IS_ERR(handle))
Eric Biggerse2728c52021-01-12 11:02:47 -08005894 return;
Curt Wohlgemuthf3dc2722009-09-29 16:06:01 -04005895 ext4_mark_inode_dirty(handle, inode);
Mingming Cao617ba132006-10-11 01:20:53 -07005896 ext4_journal_stop(handle);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005897}
5898
Mingming Cao617ba132006-10-11 01:20:53 -07005899int ext4_change_inode_journal_flag(struct inode *inode, int val)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005900{
5901 journal_t *journal;
5902 handle_t *handle;
5903 int err;
Daeho Jeongc8585c62016-04-25 23:22:35 -04005904 struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005905
5906 /*
5907 * We have to be very careful here: changing a data block's
5908 * journaling status dynamically is dangerous. If we write a
5909 * data block to the journal, change the status and then delete
5910 * that block, we risk forgetting to revoke the old log record
5911 * from the journal and so a subsequent replay can corrupt data.
5912 * So, first we make sure that the journal is empty and that
5913 * nobody is changing anything.
5914 */
5915
Mingming Cao617ba132006-10-11 01:20:53 -07005916 journal = EXT4_JOURNAL(inode);
Frank Mayhar03901312009-01-07 00:06:22 -05005917 if (!journal)
5918 return 0;
Dave Hansend6995942007-07-18 08:33:51 -04005919 if (is_journal_aborted(journal))
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005920 return -EROFS;
5921
Dmitry Monakhov17335dc2012-09-29 00:41:21 -04005922 /* Wait for all existing dio workers */
Dmitry Monakhov17335dc2012-09-29 00:41:21 -04005923 inode_dio_wait(inode);
5924
Daeho Jeong4c546592016-04-25 23:21:00 -04005925 /*
5926 * Before flushing the journal and switching inode's aops, we have
5927 * to flush all dirty data the inode has. There can be outstanding
5928 * delayed allocations, there can be unwritten extents created by
5929 * fallocate or buffered writes in dioread_nolock mode covered by
5930 * dirty data which can be converted only after flushing the dirty
5931 * data (and journalled aops don't know how to handle these cases).
5932 */
5933 if (val) {
Jan Karad4f52582021-02-04 18:05:42 +01005934 filemap_invalidate_lock(inode->i_mapping);
Daeho Jeong4c546592016-04-25 23:21:00 -04005935 err = filemap_write_and_wait(inode->i_mapping);
5936 if (err < 0) {
Jan Karad4f52582021-02-04 18:05:42 +01005937 filemap_invalidate_unlock(inode->i_mapping);
Daeho Jeong4c546592016-04-25 23:21:00 -04005938 return err;
5939 }
5940 }
5941
Eric Biggersbbd55932020-02-19 10:30:46 -08005942 percpu_down_write(&sbi->s_writepages_rwsem);
Mingming Caodab291a2006-10-11 01:21:01 -07005943 jbd2_journal_lock_updates(journal);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005944
5945 /*
5946 * OK, there are no updates running now, and all cached data is
5947 * synced to disk. We are now in a completely consistent state
5948 * which doesn't have anything in the journal, and we know that
5949 * no filesystem updates are running, so it is safe to modify
5950 * the inode's in-core data-journaling state flag now.
5951 */
5952
5953 if (val)
Dmitry Monakhov12e9b892010-05-16 22:00:00 -04005954 ext4_set_inode_flag(inode, EXT4_INODE_JOURNAL_DATA);
Yongqiang Yang5872dda2011-12-28 13:55:51 -05005955 else {
Leah Rumancik01d5d962021-05-18 15:13:25 +00005956 err = jbd2_journal_flush(journal, 0);
Jan Kara4f879ca2014-10-30 10:53:17 -04005957 if (err < 0) {
5958 jbd2_journal_unlock_updates(journal);
Eric Biggersbbd55932020-02-19 10:30:46 -08005959 percpu_up_write(&sbi->s_writepages_rwsem);
Jan Kara4f879ca2014-10-30 10:53:17 -04005960 return err;
5961 }
Dmitry Monakhov12e9b892010-05-16 22:00:00 -04005962 ext4_clear_inode_flag(inode, EXT4_INODE_JOURNAL_DATA);
Yongqiang Yang5872dda2011-12-28 13:55:51 -05005963 }
Mingming Cao617ba132006-10-11 01:20:53 -07005964 ext4_set_aops(inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005965
Mingming Caodab291a2006-10-11 01:21:01 -07005966 jbd2_journal_unlock_updates(journal);
Eric Biggersbbd55932020-02-19 10:30:46 -08005967 percpu_up_write(&sbi->s_writepages_rwsem);
Daeho Jeongc8585c62016-04-25 23:22:35 -04005968
Daeho Jeong4c546592016-04-25 23:21:00 -04005969 if (val)
Jan Karad4f52582021-02-04 18:05:42 +01005970 filemap_invalidate_unlock(inode->i_mapping);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005971
5972 /* Finally we can mark the inode as dirty. */
5973
Theodore Ts'o9924a922013-02-08 21:59:22 -05005974 handle = ext4_journal_start(inode, EXT4_HT_INODE, 1);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005975 if (IS_ERR(handle))
5976 return PTR_ERR(handle);
5977
Harshad Shirwadkaraa75f4d2020-10-15 13:37:57 -07005978 ext4_fc_mark_ineligible(inode->i_sb,
Xin Yine85c81b2022-01-17 17:36:54 +08005979 EXT4_FC_REASON_JOURNAL_FLAG_CHANGE, handle);
Mingming Cao617ba132006-10-11 01:20:53 -07005980 err = ext4_mark_inode_dirty(handle, inode);
Frank Mayhar03901312009-01-07 00:06:22 -05005981 ext4_handle_sync(handle);
Mingming Cao617ba132006-10-11 01:20:53 -07005982 ext4_journal_stop(handle);
5983 ext4_std_error(inode->i_sb, err);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005984
5985 return err;
5986}
Aneesh Kumar K.V2e9ee852008-07-11 19:27:31 -04005987
Jan Kara188c2992021-08-16 11:57:04 +02005988static int ext4_bh_unmapped(handle_t *handle, struct inode *inode,
5989 struct buffer_head *bh)
Aneesh Kumar K.V2e9ee852008-07-11 19:27:31 -04005990{
5991 return !buffer_mapped(bh);
5992}
5993
Souptick Joarder401b25a2018-10-02 22:20:50 -04005994vm_fault_t ext4_page_mkwrite(struct vm_fault *vmf)
Aneesh Kumar K.V2e9ee852008-07-11 19:27:31 -04005995{
Dave Jiang11bac802017-02-24 14:56:41 -08005996 struct vm_area_struct *vma = vmf->vma;
Nick Pigginc2ec1752009-03-31 15:23:21 -07005997 struct page *page = vmf->page;
Aneesh Kumar K.V2e9ee852008-07-11 19:27:31 -04005998 loff_t size;
5999 unsigned long len;
Souptick Joarder401b25a2018-10-02 22:20:50 -04006000 int err;
6001 vm_fault_t ret;
Aneesh Kumar K.V2e9ee852008-07-11 19:27:31 -04006002 struct file *file = vma->vm_file;
Al Viro496ad9a2013-01-23 17:07:38 -05006003 struct inode *inode = file_inode(file);
Aneesh Kumar K.V2e9ee852008-07-11 19:27:31 -04006004 struct address_space *mapping = inode->i_mapping;
Jan Kara9ea7df52011-06-24 14:29:41 -04006005 handle_t *handle;
6006 get_block_t *get_block;
6007 int retries = 0;
Aneesh Kumar K.V2e9ee852008-07-11 19:27:31 -04006008
Theodore Ts'o02b016c2019-06-09 22:04:33 -04006009 if (unlikely(IS_IMMUTABLE(inode)))
6010 return VM_FAULT_SIGBUS;
6011
Jan Kara8e8ad8a2012-06-12 16:20:38 +02006012 sb_start_pagefault(inode->i_sb);
Theodore Ts'o041bbb6d2012-09-30 23:04:56 -04006013 file_update_time(vma->vm_file);
Jan Karaea3d7202015-12-07 14:28:03 -05006014
Jan Karad4f52582021-02-04 18:05:42 +01006015 filemap_invalidate_lock_shared(mapping);
Eric Biggers7b4cc972017-04-30 00:10:50 -04006016
Souptick Joarder401b25a2018-10-02 22:20:50 -04006017 err = ext4_convert_inline_data(inode);
6018 if (err)
Eric Biggers7b4cc972017-04-30 00:10:50 -04006019 goto out_ret;
6020
Mauricio Faria de Oliveira64a9f142020-10-05 21:48:40 -03006021 /*
6022 * On data journalling we skip straight to the transaction handle:
6023 * there's no delalloc; page truncated will be checked later; the
6024 * early return w/ all buffers mapped (calculates size/len) can't
6025 * be used; and there's no dioread_nolock, so only ext4_get_block.
6026 */
6027 if (ext4_should_journal_data(inode))
6028 goto retry_alloc;
6029
Jan Kara9ea7df52011-06-24 14:29:41 -04006030 /* Delalloc case is easy... */
6031 if (test_opt(inode->i_sb, DELALLOC) &&
Jan Kara9ea7df52011-06-24 14:29:41 -04006032 !ext4_nonda_switch(inode->i_sb)) {
6033 do {
Souptick Joarder401b25a2018-10-02 22:20:50 -04006034 err = block_page_mkwrite(vma, vmf,
Jan Kara9ea7df52011-06-24 14:29:41 -04006035 ext4_da_get_block_prep);
Souptick Joarder401b25a2018-10-02 22:20:50 -04006036 } while (err == -ENOSPC &&
Jan Kara9ea7df52011-06-24 14:29:41 -04006037 ext4_should_retry_alloc(inode->i_sb, &retries));
6038 goto out_ret;
Aneesh Kumar K.V2e9ee852008-07-11 19:27:31 -04006039 }
Darrick J. Wong0e499892011-05-18 13:55:20 -04006040
6041 lock_page(page);
Jan Kara9ea7df52011-06-24 14:29:41 -04006042 size = i_size_read(inode);
6043 /* Page got truncated from under us? */
6044 if (page->mapping != mapping || page_offset(page) > size) {
6045 unlock_page(page);
6046 ret = VM_FAULT_NOPAGE;
6047 goto out;
Darrick J. Wong0e499892011-05-18 13:55:20 -04006048 }
Aneesh Kumar K.V2e9ee852008-07-11 19:27:31 -04006049
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03006050 if (page->index == size >> PAGE_SHIFT)
6051 len = size & ~PAGE_MASK;
Aneesh Kumar K.V2e9ee852008-07-11 19:27:31 -04006052 else
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03006053 len = PAGE_SIZE;
Aneesh Kumar K.Va827eaf2009-09-09 22:36:03 -04006054 /*
Jan Kara9ea7df52011-06-24 14:29:41 -04006055 * Return if we have all the buffers mapped. This avoids the need to do
6056 * journal_start/journal_stop which can block and take a long time
Mauricio Faria de Oliveira64a9f142020-10-05 21:48:40 -03006057 *
6058 * This cannot be done for data journalling, as we have to add the
6059 * inode to the transaction's list to writeprotect pages on commit.
Aneesh Kumar K.Va827eaf2009-09-09 22:36:03 -04006060 */
Aneesh Kumar K.V2e9ee852008-07-11 19:27:31 -04006061 if (page_has_buffers(page)) {
Jan Kara188c2992021-08-16 11:57:04 +02006062 if (!ext4_walk_page_buffers(NULL, inode, page_buffers(page),
Tao Maf19d5872012-12-10 14:05:51 -05006063 0, len, NULL,
6064 ext4_bh_unmapped)) {
Jan Kara9ea7df52011-06-24 14:29:41 -04006065 /* Wait so that we don't change page under IO */
Darrick J. Wong1d1d1a72013-02-21 16:42:51 -08006066 wait_for_stable_page(page);
Jan Kara9ea7df52011-06-24 14:29:41 -04006067 ret = VM_FAULT_LOCKED;
6068 goto out;
Aneesh Kumar K.Va827eaf2009-09-09 22:36:03 -04006069 }
Aneesh Kumar K.V2e9ee852008-07-11 19:27:31 -04006070 }
Aneesh Kumar K.Va827eaf2009-09-09 22:36:03 -04006071 unlock_page(page);
Jan Kara9ea7df52011-06-24 14:29:41 -04006072 /* OK, we need to fill the hole... */
6073 if (ext4_should_dioread_nolock(inode))
Jan Kara705965b2016-03-08 23:08:10 -05006074 get_block = ext4_get_block_unwritten;
Jan Kara9ea7df52011-06-24 14:29:41 -04006075 else
6076 get_block = ext4_get_block;
6077retry_alloc:
Theodore Ts'o9924a922013-02-08 21:59:22 -05006078 handle = ext4_journal_start(inode, EXT4_HT_WRITE_PAGE,
6079 ext4_writepage_trans_blocks(inode));
Jan Kara9ea7df52011-06-24 14:29:41 -04006080 if (IS_ERR(handle)) {
Nick Pigginc2ec1752009-03-31 15:23:21 -07006081 ret = VM_FAULT_SIGBUS;
Jan Kara9ea7df52011-06-24 14:29:41 -04006082 goto out;
6083 }
Mauricio Faria de Oliveira64a9f142020-10-05 21:48:40 -03006084 /*
6085 * Data journalling can't use block_page_mkwrite() because it
6086 * will set_buffer_dirty() before do_journal_get_write_access()
6087 * thus might hit warning messages for dirty metadata buffers.
6088 */
6089 if (!ext4_should_journal_data(inode)) {
6090 err = block_page_mkwrite(vma, vmf, get_block);
6091 } else {
6092 lock_page(page);
6093 size = i_size_read(inode);
6094 /* Page got truncated from under us? */
6095 if (page->mapping != mapping || page_offset(page) > size) {
Mauricio Faria de Oliveira64a9f142020-10-05 21:48:40 -03006096 ret = VM_FAULT_NOPAGE;
Mauricio Faria de Oliveiraafb585a2020-10-05 21:48:41 -03006097 goto out_error;
Jan Kara9ea7df52011-06-24 14:29:41 -04006098 }
Mauricio Faria de Oliveira64a9f142020-10-05 21:48:40 -03006099
6100 if (page->index == size >> PAGE_SHIFT)
6101 len = size & ~PAGE_MASK;
6102 else
6103 len = PAGE_SIZE;
6104
6105 err = __block_write_begin(page, 0, len, ext4_get_block);
6106 if (!err) {
Mauricio Faria de Oliveiraafb585a2020-10-05 21:48:41 -03006107 ret = VM_FAULT_SIGBUS;
Jan Kara188c2992021-08-16 11:57:04 +02006108 if (ext4_walk_page_buffers(handle, inode,
6109 page_buffers(page), 0, len, NULL,
6110 do_journal_get_write_access))
Mauricio Faria de Oliveiraafb585a2020-10-05 21:48:41 -03006111 goto out_error;
Jan Kara188c2992021-08-16 11:57:04 +02006112 if (ext4_walk_page_buffers(handle, inode,
6113 page_buffers(page), 0, len, NULL,
6114 write_end_fn))
Mauricio Faria de Oliveiraafb585a2020-10-05 21:48:41 -03006115 goto out_error;
Jan Karab5b18162020-10-27 14:27:51 +01006116 if (ext4_jbd2_inode_add_write(handle, inode,
6117 page_offset(page), len))
Mauricio Faria de Oliveiraafb585a2020-10-05 21:48:41 -03006118 goto out_error;
Mauricio Faria de Oliveira64a9f142020-10-05 21:48:40 -03006119 ext4_set_inode_state(inode, EXT4_STATE_JDATA);
6120 } else {
6121 unlock_page(page);
6122 }
Jan Kara9ea7df52011-06-24 14:29:41 -04006123 }
6124 ext4_journal_stop(handle);
Souptick Joarder401b25a2018-10-02 22:20:50 -04006125 if (err == -ENOSPC && ext4_should_retry_alloc(inode->i_sb, &retries))
Jan Kara9ea7df52011-06-24 14:29:41 -04006126 goto retry_alloc;
6127out_ret:
Souptick Joarder401b25a2018-10-02 22:20:50 -04006128 ret = block_page_mkwrite_return(err);
Jan Kara9ea7df52011-06-24 14:29:41 -04006129out:
Jan Karad4f52582021-02-04 18:05:42 +01006130 filemap_invalidate_unlock_shared(mapping);
Jan Kara8e8ad8a2012-06-12 16:20:38 +02006131 sb_end_pagefault(inode->i_sb);
Aneesh Kumar K.V2e9ee852008-07-11 19:27:31 -04006132 return ret;
Mauricio Faria de Oliveiraafb585a2020-10-05 21:48:41 -03006133out_error:
6134 unlock_page(page);
6135 ext4_journal_stop(handle);
6136 goto out;
Aneesh Kumar K.V2e9ee852008-07-11 19:27:31 -04006137}