blob: 5f79d265d06a023d7204ea773e59ffc852f2c40a [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>
Christoph Hellwigc6f40462021-11-29 11:21:52 +010044#include <linux/dax.h>
Theodore Ts'o9bffad12009-06-17 11:48:11 -040045
Christoph Hellwig3dcf5452008-04-29 18:13:32 -040046#include "ext4_jbd2.h"
Dave Kleikampac27a0e2006-10-11 01:20:50 -070047#include "xattr.h"
48#include "acl.h"
Theodore Ts'o9f125d62011-06-27 19:16:04 -040049#include "truncate.h"
Dave Kleikampac27a0e2006-10-11 01:20:50 -070050
Theodore Ts'o9bffad12009-06-17 11:48:11 -040051#include <trace/events/ext4.h>
52
Darrick J. Wong814525f2012-04-29 18:31:10 -040053static __u32 ext4_inode_csum(struct inode *inode, struct ext4_inode *raw,
54 struct ext4_inode_info *ei)
55{
56 struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb);
Darrick J. Wong814525f2012-04-29 18:31:10 -040057 __u32 csum;
Daeho Jeongb47820e2016-07-03 17:51:39 -040058 __u16 dummy_csum = 0;
59 int offset = offsetof(struct ext4_inode, i_checksum_lo);
60 unsigned int csum_size = sizeof(dummy_csum);
Darrick J. Wong814525f2012-04-29 18:31:10 -040061
Daeho Jeongb47820e2016-07-03 17:51:39 -040062 csum = ext4_chksum(sbi, ei->i_csum_seed, (__u8 *)raw, offset);
63 csum = ext4_chksum(sbi, csum, (__u8 *)&dummy_csum, csum_size);
64 offset += csum_size;
65 csum = ext4_chksum(sbi, csum, (__u8 *)raw + offset,
66 EXT4_GOOD_OLD_INODE_SIZE - offset);
67
68 if (EXT4_INODE_SIZE(inode->i_sb) > EXT4_GOOD_OLD_INODE_SIZE) {
69 offset = offsetof(struct ext4_inode, i_checksum_hi);
70 csum = ext4_chksum(sbi, csum, (__u8 *)raw +
71 EXT4_GOOD_OLD_INODE_SIZE,
72 offset - EXT4_GOOD_OLD_INODE_SIZE);
73 if (EXT4_FITS_IN_INODE(raw, ei, i_checksum_hi)) {
74 csum = ext4_chksum(sbi, csum, (__u8 *)&dummy_csum,
75 csum_size);
76 offset += csum_size;
Daeho Jeongb47820e2016-07-03 17:51:39 -040077 }
Daeho Jeong05ac5aa2016-12-01 11:49:12 -050078 csum = ext4_chksum(sbi, csum, (__u8 *)raw + offset,
79 EXT4_INODE_SIZE(inode->i_sb) - offset);
Darrick J. Wong814525f2012-04-29 18:31:10 -040080 }
81
Darrick J. Wong814525f2012-04-29 18:31:10 -040082 return csum;
83}
84
85static int ext4_inode_csum_verify(struct inode *inode, struct ext4_inode *raw,
86 struct ext4_inode_info *ei)
87{
88 __u32 provided, calculated;
89
90 if (EXT4_SB(inode->i_sb)->s_es->s_creator_os !=
91 cpu_to_le32(EXT4_OS_LINUX) ||
Dmitry Monakhov9aa5d32b2014-10-13 03:36:16 -040092 !ext4_has_metadata_csum(inode->i_sb))
Darrick J. Wong814525f2012-04-29 18:31:10 -040093 return 1;
94
95 provided = le16_to_cpu(raw->i_checksum_lo);
96 calculated = ext4_inode_csum(inode, raw, ei);
97 if (EXT4_INODE_SIZE(inode->i_sb) > EXT4_GOOD_OLD_INODE_SIZE &&
98 EXT4_FITS_IN_INODE(raw, ei, i_checksum_hi))
99 provided |= ((__u32)le16_to_cpu(raw->i_checksum_hi)) << 16;
100 else
101 calculated &= 0xFFFF;
102
103 return provided == calculated;
104}
105
Harshad Shirwadkar8016e292020-10-15 13:37:59 -0700106void ext4_inode_csum_set(struct inode *inode, struct ext4_inode *raw,
107 struct ext4_inode_info *ei)
Darrick J. Wong814525f2012-04-29 18:31:10 -0400108{
109 __u32 csum;
110
111 if (EXT4_SB(inode->i_sb)->s_es->s_creator_os !=
112 cpu_to_le32(EXT4_OS_LINUX) ||
Dmitry Monakhov9aa5d32b2014-10-13 03:36:16 -0400113 !ext4_has_metadata_csum(inode->i_sb))
Darrick J. Wong814525f2012-04-29 18:31:10 -0400114 return;
115
116 csum = ext4_inode_csum(inode, raw, ei);
117 raw->i_checksum_lo = cpu_to_le16(csum & 0xFFFF);
118 if (EXT4_INODE_SIZE(inode->i_sb) > EXT4_GOOD_OLD_INODE_SIZE &&
119 EXT4_FITS_IN_INODE(raw, ei, i_checksum_hi))
120 raw->i_checksum_hi = cpu_to_le16(csum >> 16);
121}
122
Jan Kara678aaf42008-07-11 19:27:31 -0400123static inline int ext4_begin_ordered_truncate(struct inode *inode,
124 loff_t new_size)
125{
Theodore Ts'o7ff9c072010-11-08 13:51:33 -0500126 trace_ext4_begin_ordered_truncate(inode, new_size);
Theodore Ts'o8aefcd52011-01-10 12:29:43 -0500127 /*
128 * If jinode is zero, then we never opened the file for
129 * writing, so there's no need to call
130 * jbd2_journal_begin_ordered_truncate() since there's no
131 * outstanding writes we need to flush.
132 */
133 if (!EXT4_I(inode)->jinode)
134 return 0;
135 return jbd2_journal_begin_ordered_truncate(EXT4_JOURNAL(inode),
136 EXT4_I(inode)->jinode,
137 new_size);
Jan Kara678aaf42008-07-11 19:27:31 -0400138}
139
Lukas Czernerd47992f2013-05-21 23:17:23 -0400140static void ext4_invalidatepage(struct page *page, unsigned int offset,
141 unsigned int length);
Theodore Ts'ocb20d512010-10-27 21:30:09 -0400142static int __ext4_journalled_writepage(struct page *page, unsigned int len);
Tahsin Erdogandec214d2017-06-22 11:44:55 -0400143static int ext4_meta_trans_blocks(struct inode *inode, int lblocks,
144 int pextents);
Alex Tomas64769242008-07-11 19:27:31 -0400145
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700146/*
147 * Test whether an inode is a fast symlink.
Tahsin Erdogan407cd7f2017-07-04 00:11:21 -0400148 * A fast symlink has its symlink data stored in ext4_inode_info->i_data.
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700149 */
Theodore Ts'of348c252015-04-16 01:55:00 -0400150int ext4_inode_is_fast_symlink(struct inode *inode)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700151{
Andi Kleenfc822282017-12-03 20:38:01 -0500152 if (!(EXT4_I(inode)->i_flags & EXT4_EA_INODE_FL)) {
153 int ea_blocks = EXT4_I(inode)->i_file_acl ?
154 EXT4_CLUSTER_SIZE(inode->i_sb) >> 9 : 0;
155
156 if (ext4_has_inline_data(inode))
157 return 0;
158
159 return (S_ISLNK(inode->i_mode) && inode->i_blocks - ea_blocks == 0);
160 }
Tahsin Erdogan407cd7f2017-07-04 00:11:21 -0400161 return S_ISLNK(inode->i_mode) && inode->i_size &&
162 (inode->i_size < EXT4_N_BLOCKS * 4);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700163}
164
165/*
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700166 * Called at the last iput() if i_nlink is zero.
167 */
Al Viro0930fcc2010-06-07 13:16:22 -0400168void ext4_evict_inode(struct inode *inode)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700169{
170 handle_t *handle;
Theodore Ts'obc965ab2008-08-02 21:10:38 -0400171 int err;
Jan Kara65db8692019-11-05 17:44:12 +0100172 /*
173 * Credits for final inode cleanup and freeing:
174 * sb + inode (ext4_orphan_del()), block bitmap, group descriptor
175 * (xattr block freeing), bitmap, group descriptor (inode freeing)
176 */
177 int extra_credits = 6;
Tahsin Erdogan0421a182017-06-22 10:26:31 -0400178 struct ext4_xattr_inode_array *ea_inode_array = NULL;
Jan Kara46e294e2020-11-27 12:06:49 +0100179 bool freeze_protected = false;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700180
Theodore Ts'o7ff9c072010-11-08 13:51:33 -0500181 trace_ext4_evict_inode(inode);
Jiaying Zhang2581fdc2011-08-13 12:17:13 -0400182
Al Viro0930fcc2010-06-07 13:16:22 -0400183 if (inode->i_nlink) {
Jan Kara2d859db2011-07-26 09:07:11 -0400184 /*
185 * When journalling data dirty buffers are tracked only in the
186 * journal. So although mm thinks everything is clean and
187 * ready for reaping the inode might still have some pages to
188 * write in the running transaction or waiting to be
189 * checkpointed. Thus calling jbd2_journal_invalidatepage()
190 * (via truncate_inode_pages()) to discard these buffers can
191 * cause data loss. Also even if we did not discard these
192 * buffers, we would have no way to find them after the inode
193 * is reaped and thus user could see stale data if he tries to
194 * read them before the transaction is checkpointed. So be
195 * careful and force everything to disk here... We use
196 * ei->i_datasync_tid to store the newest transaction
197 * containing inode's data.
198 *
199 * Note that directories do not have this problem because they
200 * don't use page cache.
201 */
Vegard Nossum6a7fd522016-07-04 11:03:00 -0400202 if (inode->i_ino != EXT4_JOURNAL_INO &&
203 ext4_should_journal_data(inode) &&
Jan Kara3abb1a02017-06-22 23:49:46 -0400204 (S_ISLNK(inode->i_mode) || S_ISREG(inode->i_mode)) &&
205 inode->i_data.nrpages) {
Jan Kara2d859db2011-07-26 09:07:11 -0400206 journal_t *journal = EXT4_SB(inode->i_sb)->s_journal;
207 tid_t commit_tid = EXT4_I(inode)->i_datasync_tid;
208
Theodore Ts'od76a3a772013-04-03 22:02:52 -0400209 jbd2_complete_transaction(journal, commit_tid);
Jan Kara2d859db2011-07-26 09:07:11 -0400210 filemap_write_and_wait(&inode->i_data);
211 }
Johannes Weiner91b0abe2014-04-03 14:47:49 -0700212 truncate_inode_pages_final(&inode->i_data);
Jan Kara5dc23bd2013-06-04 14:46:12 -0400213
Al Viro0930fcc2010-06-07 13:16:22 -0400214 goto no_delete;
215 }
216
Theodore Ts'oe2bfb082014-10-05 22:47:07 -0400217 if (is_bad_inode(inode))
218 goto no_delete;
219 dquot_initialize(inode);
Christoph Hellwig907f4552010-03-03 09:05:06 -0500220
Jan Kara678aaf42008-07-11 19:27:31 -0400221 if (ext4_should_order_data(inode))
222 ext4_begin_ordered_truncate(inode, 0);
Johannes Weiner91b0abe2014-04-03 14:47:49 -0700223 truncate_inode_pages_final(&inode->i_data);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700224
Jan Kara8e8ad8a2012-06-12 16:20:38 +0200225 /*
Jan Karaceff86f2020-04-21 10:54:45 +0200226 * For inodes with journalled data, transaction commit could have
227 * dirtied the inode. Flush worker is ignoring it because of I_FREEING
228 * flag but we still need to remove the inode from the writeback lists.
229 */
230 if (!list_empty_careful(&inode->i_io_list)) {
231 WARN_ON_ONCE(!ext4_should_journal_data(inode));
232 inode_io_list_del(inode);
233 }
234
235 /*
Jan Kara8e8ad8a2012-06-12 16:20:38 +0200236 * Protect us against freezing - iput() caller didn't have to have any
Jan Kara46e294e2020-11-27 12:06:49 +0100237 * protection against it. When we are in a running transaction though,
238 * we are already protected against freezing and we cannot grab further
239 * protection due to lock ordering constraints.
Jan Kara8e8ad8a2012-06-12 16:20:38 +0200240 */
Jan Kara46e294e2020-11-27 12:06:49 +0100241 if (!ext4_journal_current_handle()) {
242 sb_start_intwrite(inode->i_sb);
243 freeze_protected = true;
244 }
Andreas Dilgere50e5122017-06-21 21:10:32 -0400245
Tahsin Erdogan30a7eb92017-06-22 11:42:09 -0400246 if (!IS_NOQUOTA(inode))
247 extra_credits += EXT4_MAXQUOTAS_DEL_BLOCKS(inode->i_sb);
248
Jan Kara65db8692019-11-05 17:44:12 +0100249 /*
250 * Block bitmap, group descriptor, and inode are accounted in both
251 * ext4_blocks_for_truncate() and extra_credits. So subtract 3.
252 */
Tahsin Erdogan30a7eb92017-06-22 11:42:09 -0400253 handle = ext4_journal_start(inode, EXT4_HT_TRUNCATE,
Jan Kara65db8692019-11-05 17:44:12 +0100254 ext4_blocks_for_truncate(inode) + extra_credits - 3);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700255 if (IS_ERR(handle)) {
Theodore Ts'obc965ab2008-08-02 21:10:38 -0400256 ext4_std_error(inode->i_sb, PTR_ERR(handle));
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700257 /*
258 * If we're going to skip the normal cleanup, we still need to
259 * make sure that the in-core orphan linked list is properly
260 * cleaned up.
261 */
Mingming Cao617ba132006-10-11 01:20:53 -0700262 ext4_orphan_del(NULL, inode);
Jan Kara46e294e2020-11-27 12:06:49 +0100263 if (freeze_protected)
264 sb_end_intwrite(inode->i_sb);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700265 goto no_delete;
266 }
Tahsin Erdogan30a7eb92017-06-22 11:42:09 -0400267
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700268 if (IS_SYNC(inode))
Frank Mayhar03901312009-01-07 00:06:22 -0500269 ext4_handle_sync(handle);
Tahsin Erdogan407cd7f2017-07-04 00:11:21 -0400270
271 /*
272 * Set inode->i_size to 0 before calling ext4_truncate(). We need
273 * special handling of symlinks here because i_size is used to
274 * determine whether ext4_inode_info->i_data contains symlink data or
275 * block mappings. Setting i_size to 0 will remove its fast symlink
276 * status. Erase i_data so that it becomes a valid empty block map.
277 */
278 if (ext4_inode_is_fast_symlink(inode))
279 memset(EXT4_I(inode)->i_data, 0, sizeof(EXT4_I(inode)->i_data));
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700280 inode->i_size = 0;
Theodore Ts'obc965ab2008-08-02 21:10:38 -0400281 err = ext4_mark_inode_dirty(handle, inode);
282 if (err) {
Eric Sandeen12062dd2010-02-15 14:19:27 -0500283 ext4_warning(inode->i_sb,
Theodore Ts'obc965ab2008-08-02 21:10:38 -0400284 "couldn't mark inode dirty (err %d)", err);
285 goto stop_handle;
286 }
Theodore Ts'o2c98eb52016-11-13 22:02:26 -0500287 if (inode->i_blocks) {
288 err = ext4_truncate(inode);
289 if (err) {
Theodore Ts'o54d3adb2020-03-28 19:33:43 -0400290 ext4_error_err(inode->i_sb, -err,
291 "couldn't truncate inode %lu (err %d)",
292 inode->i_ino, err);
Theodore Ts'o2c98eb52016-11-13 22:02:26 -0500293 goto stop_handle;
294 }
295 }
Theodore Ts'obc965ab2008-08-02 21:10:38 -0400296
Tahsin Erdogan30a7eb92017-06-22 11:42:09 -0400297 /* Remove xattr references. */
298 err = ext4_xattr_delete_inode(handle, inode, &ea_inode_array,
299 extra_credits);
300 if (err) {
301 ext4_warning(inode->i_sb, "xattr delete (err %d)", err);
302stop_handle:
303 ext4_journal_stop(handle);
304 ext4_orphan_del(NULL, inode);
Jan Kara46e294e2020-11-27 12:06:49 +0100305 if (freeze_protected)
306 sb_end_intwrite(inode->i_sb);
Tahsin Erdogan30a7eb92017-06-22 11:42:09 -0400307 ext4_xattr_inode_array_free(ea_inode_array);
308 goto no_delete;
Theodore Ts'obc965ab2008-08-02 21:10:38 -0400309 }
310
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700311 /*
Mingming Cao617ba132006-10-11 01:20:53 -0700312 * Kill off the orphan record which ext4_truncate created.
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700313 * AKPM: I think this can be inside the above `if'.
Mingming Cao617ba132006-10-11 01:20:53 -0700314 * Note that ext4_orphan_del() has to be able to cope with the
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700315 * deletion of a non-existent orphan - this is because we don't
Mingming Cao617ba132006-10-11 01:20:53 -0700316 * know if ext4_truncate() actually created an orphan record.
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700317 * (Well, we could do this if we need to, but heck - it works)
318 */
Mingming Cao617ba132006-10-11 01:20:53 -0700319 ext4_orphan_del(handle, inode);
Arnd Bergmann5ffff832018-07-29 15:50:00 -0400320 EXT4_I(inode)->i_dtime = (__u32)ktime_get_real_seconds();
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700321
322 /*
323 * One subtle ordering requirement: if anything has gone wrong
324 * (transaction abort, IO errors, whatever), then we can still
325 * do these next steps (the fs will already have been marked as
326 * having errors), but we can't free the inode if the mark_dirty
327 * fails.
328 */
Mingming Cao617ba132006-10-11 01:20:53 -0700329 if (ext4_mark_inode_dirty(handle, inode))
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700330 /* If that failed, just do the required in-core inode clear. */
Al Viro0930fcc2010-06-07 13:16:22 -0400331 ext4_clear_inode(inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700332 else
Mingming Cao617ba132006-10-11 01:20:53 -0700333 ext4_free_inode(handle, inode);
334 ext4_journal_stop(handle);
Jan Kara46e294e2020-11-27 12:06:49 +0100335 if (freeze_protected)
336 sb_end_intwrite(inode->i_sb);
Tahsin Erdogan0421a182017-06-22 10:26:31 -0400337 ext4_xattr_inode_array_free(ea_inode_array);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700338 return;
339no_delete:
Harshad Shirwadkarb21ebf12020-11-05 19:58:51 -0800340 if (!list_empty(&EXT4_I(inode)->i_fc_list))
341 ext4_fc_mark_ineligible(inode->i_sb, EXT4_FC_REASON_NOMEM);
Al Viro0930fcc2010-06-07 13:16:22 -0400342 ext4_clear_inode(inode); /* We must guarantee clearing of inode... */
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700343}
344
Dmitry Monakhova9e7f442009-12-14 15:21:14 +0300345#ifdef CONFIG_QUOTA
346qsize_t *ext4_get_reserved_space(struct inode *inode)
Mingming Cao60e58e02009-01-22 18:13:05 +0100347{
Dmitry Monakhova9e7f442009-12-14 15:21:14 +0300348 return &EXT4_I(inode)->i_reserved_quota;
Mingming Cao60e58e02009-01-22 18:13:05 +0100349}
Dmitry Monakhova9e7f442009-12-14 15:21:14 +0300350#endif
Theodore Ts'o9d0be502010-01-01 02:41:30 -0500351
Aneesh Kumar K.V12219ae2008-07-17 16:12:08 -0400352/*
Theodore Ts'o0637c6f2009-12-30 14:20:45 -0500353 * Called with i_data_sem down, which is important since we can call
354 * ext4_discard_preallocations() from here.
355 */
Aneesh Kumar K.V5f634d02010-01-25 04:00:31 -0500356void ext4_da_update_reserve_space(struct inode *inode,
357 int used, int quota_claim)
Aneesh Kumar K.V12219ae2008-07-17 16:12:08 -0400358{
359 struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb);
Theodore Ts'o0637c6f2009-12-30 14:20:45 -0500360 struct ext4_inode_info *ei = EXT4_I(inode);
Aneesh Kumar K.V12219ae2008-07-17 16:12:08 -0400361
Theodore Ts'o0637c6f2009-12-30 14:20:45 -0500362 spin_lock(&ei->i_block_reservation_lock);
Aditya Kalid8990242011-09-09 19:18:51 -0400363 trace_ext4_da_update_reserve_space(inode, used, quota_claim);
Theodore Ts'o0637c6f2009-12-30 14:20:45 -0500364 if (unlikely(used > ei->i_reserved_data_blocks)) {
Theodore Ts'o8de5c322013-02-14 15:11:41 -0500365 ext4_warning(inode->i_sb, "%s: ino %lu, used %d "
Theodore Ts'o1084f252012-03-19 23:13:43 -0400366 "with only %d reserved data blocks",
Theodore Ts'o0637c6f2009-12-30 14:20:45 -0500367 __func__, inode->i_ino, used,
368 ei->i_reserved_data_blocks);
369 WARN_ON(1);
370 used = ei->i_reserved_data_blocks;
Aneesh Kumar K.V6bc6e632008-10-10 09:39:00 -0400371 }
Aneesh Kumar K.V12219ae2008-07-17 16:12:08 -0400372
Theodore Ts'o0637c6f2009-12-30 14:20:45 -0500373 /* Update per-inode reservations */
374 ei->i_reserved_data_blocks -= used;
Theodore Ts'o71d4f7d2014-07-15 06:02:38 -0400375 percpu_counter_sub(&sbi->s_dirtyclusters_counter, used);
Theodore Ts'o0637c6f2009-12-30 14:20:45 -0500376
chenyichongf9505c72021-05-26 13:29:30 +0800377 spin_unlock(&ei->i_block_reservation_lock);
Mingming Cao60e58e02009-01-22 18:13:05 +0100378
Eric Sandeen72b8ab92010-05-16 11:00:00 -0400379 /* Update quota subsystem for data blocks */
380 if (quota_claim)
Aditya Kali7b415bf2011-09-09 19:04:51 -0400381 dquot_claim_block(inode, EXT4_C2B(sbi, used));
Eric Sandeen72b8ab92010-05-16 11:00:00 -0400382 else {
Aneesh Kumar K.V5f634d02010-01-25 04:00:31 -0500383 /*
384 * We did fallocate with an offset that is already delayed
385 * allocated. So on delayed allocated writeback we should
Eric Sandeen72b8ab92010-05-16 11:00:00 -0400386 * not re-claim the quota for fallocated blocks.
Aneesh Kumar K.V5f634d02010-01-25 04:00:31 -0500387 */
Aditya Kali7b415bf2011-09-09 19:04:51 -0400388 dquot_release_reservation_block(inode, EXT4_C2B(sbi, used));
Aneesh Kumar K.V5f634d02010-01-25 04:00:31 -0500389 }
Aneesh Kumar K.Vd6014302009-03-27 22:36:43 -0400390
391 /*
392 * If we have done all the pending block allocations and if
393 * there aren't any writers on the inode, we can discard the
394 * inode's preallocations.
395 */
Theodore Ts'o0637c6f2009-12-30 14:20:45 -0500396 if ((ei->i_reserved_data_blocks == 0) &&
Nikolay Borisov82dd1242019-02-10 23:04:16 -0500397 !inode_is_open_for_write(inode))
brookxu27bc4462020-08-17 15:36:15 +0800398 ext4_discard_preallocations(inode, 0);
Aneesh Kumar K.V12219ae2008-07-17 16:12:08 -0400399}
400
Theodore Ts'oe29136f2010-06-29 12:54:28 -0400401static int __check_block_validity(struct inode *inode, const char *func,
Theodore Ts'oc398eda2010-07-27 11:56:40 -0400402 unsigned int line,
403 struct ext4_map_blocks *map)
Theodore Ts'o6fd058f2009-05-17 15:38:01 -0400404{
Theodore Ts'o345c0db2019-04-09 23:37:08 -0400405 if (ext4_has_feature_journal(inode->i_sb) &&
406 (inode->i_ino ==
407 le32_to_cpu(EXT4_SB(inode->i_sb)->s_es->s_journal_inum)))
408 return 0;
Jan Karace9f24c2020-07-28 15:04:34 +0200409 if (!ext4_inode_block_valid(inode, map->m_pblk, map->m_len)) {
Theodore Ts'oc398eda2010-07-27 11:56:40 -0400410 ext4_error_inode(inode, func, line, map->m_pblk,
Theodore Ts'obdbd6ce2018-06-15 12:27:16 -0400411 "lblock %lu mapped to illegal pblock %llu "
Theodore Ts'oc398eda2010-07-27 11:56:40 -0400412 "(length %d)", (unsigned long) map->m_lblk,
Theodore Ts'obdbd6ce2018-06-15 12:27:16 -0400413 map->m_pblk, map->m_len);
Darrick J. Wong6a797d22015-10-17 16:16:04 -0400414 return -EFSCORRUPTED;
Theodore Ts'o6fd058f2009-05-17 15:38:01 -0400415 }
416 return 0;
417}
418
Jan Kara53085fa2015-12-07 15:09:35 -0500419int ext4_issue_zeroout(struct inode *inode, ext4_lblk_t lblk, ext4_fsblk_t pblk,
420 ext4_lblk_t len)
421{
422 int ret;
423
Eric Biggers33b4cc22019-12-26 10:10:22 -0600424 if (IS_ENCRYPTED(inode) && S_ISREG(inode->i_mode))
Jaegeuk Kima7550b32016-07-10 14:01:03 -0400425 return fscrypt_zeroout_range(inode, lblk, pblk, len);
Jan Kara53085fa2015-12-07 15:09:35 -0500426
427 ret = sb_issue_zeroout(inode->i_sb, pblk, len, GFP_NOFS);
428 if (ret > 0)
429 ret = 0;
430
431 return ret;
432}
433
Theodore Ts'oe29136f2010-06-29 12:54:28 -0400434#define check_block_validity(inode, map) \
Theodore Ts'oc398eda2010-07-27 11:56:40 -0400435 __check_block_validity((inode), __func__, __LINE__, (map))
Theodore Ts'oe29136f2010-06-29 12:54:28 -0400436
Dmitry Monakhov921f2662013-03-10 21:01:03 -0400437#ifdef ES_AGGRESSIVE_TEST
438static void ext4_map_blocks_es_recheck(handle_t *handle,
439 struct inode *inode,
440 struct ext4_map_blocks *es_map,
441 struct ext4_map_blocks *map,
442 int flags)
443{
444 int retval;
445
446 map->m_flags = 0;
447 /*
448 * There is a race window that the result is not the same.
449 * e.g. xfstests #223 when dioread_nolock enables. The reason
450 * is that we lookup a block mapping in extent status tree with
451 * out taking i_data_sem. So at the time the unwritten extent
452 * could be converted.
453 */
Jan Kara2dcba472015-12-07 15:04:57 -0500454 down_read(&EXT4_I(inode)->i_data_sem);
Dmitry Monakhov921f2662013-03-10 21:01:03 -0400455 if (ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS)) {
Eric Whitney9e524842020-04-15 16:31:39 -0400456 retval = ext4_ext_map_blocks(handle, inode, map, 0);
Dmitry Monakhov921f2662013-03-10 21:01:03 -0400457 } else {
Eric Whitney9e524842020-04-15 16:31:39 -0400458 retval = ext4_ind_map_blocks(handle, inode, map, 0);
Dmitry Monakhov921f2662013-03-10 21:01:03 -0400459 }
Jan Kara2dcba472015-12-07 15:04:57 -0500460 up_read((&EXT4_I(inode)->i_data_sem));
Dmitry Monakhov921f2662013-03-10 21:01:03 -0400461
462 /*
463 * We don't check m_len because extent will be collpased in status
464 * tree. So the m_len might not equal.
465 */
466 if (es_map->m_lblk != map->m_lblk ||
467 es_map->m_flags != map->m_flags ||
468 es_map->m_pblk != map->m_pblk) {
Theodore Ts'obdafe422013-07-13 00:40:31 -0400469 printk("ES cache assertion failed for inode: %lu "
Dmitry Monakhov921f2662013-03-10 21:01:03 -0400470 "es_cached ex [%d/%d/%llu/%x] != "
471 "found ex [%d/%d/%llu/%x] retval %d flags %x\n",
472 inode->i_ino, es_map->m_lblk, es_map->m_len,
473 es_map->m_pblk, es_map->m_flags, map->m_lblk,
474 map->m_len, map->m_pblk, map->m_flags,
475 retval, flags);
476 }
477}
478#endif /* ES_AGGRESSIVE_TEST */
479
Theodore Ts'o55138e0b2009-09-29 13:31:31 -0400480/*
Theodore Ts'oe35fd662010-05-16 19:00:00 -0400481 * The ext4_map_blocks() function tries to look up the requested blocks,
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -0400482 * and returns if the blocks are already mapped.
Mingming Caof5ab0d12008-02-25 15:29:55 -0500483 *
Mingming Caof5ab0d12008-02-25 15:29:55 -0500484 * Otherwise it takes the write lock of the i_data_sem and allocate blocks
485 * and store the allocated blocks in the result buffer head and mark it
486 * mapped.
487 *
Theodore Ts'oe35fd662010-05-16 19:00:00 -0400488 * If file type is extents based, it will call ext4_ext_map_blocks(),
489 * Otherwise, call with ext4_ind_map_blocks() to handle indirect mapping
Mingming Caof5ab0d12008-02-25 15:29:55 -0500490 * based files
491 *
Jan Karafacab4d2016-03-09 22:54:00 -0500492 * On success, it returns the number of blocks being mapped or allocated. if
493 * create==0 and the blocks are pre-allocated and unwritten, the resulting @map
494 * is marked as unwritten. If the create == 1, it will mark @map as mapped.
Mingming Caof5ab0d12008-02-25 15:29:55 -0500495 *
496 * It returns 0 if plain look up failed (blocks have not been allocated), in
Jan Karafacab4d2016-03-09 22:54:00 -0500497 * that case, @map is returned as unmapped but we still do fill map->m_len to
498 * indicate the length of a hole starting at map->m_lblk.
Mingming Caof5ab0d12008-02-25 15:29:55 -0500499 *
500 * It returns the error in case of allocation failure.
501 */
Theodore Ts'oe35fd662010-05-16 19:00:00 -0400502int ext4_map_blocks(handle_t *handle, struct inode *inode,
503 struct ext4_map_blocks *map, int flags)
Aneesh Kumar K.V0e855ac2008-01-28 23:58:26 -0500504{
Zheng Liud100eef2013-02-18 00:29:59 -0500505 struct extent_status es;
Aneesh Kumar K.V0e855ac2008-01-28 23:58:26 -0500506 int retval;
Lukas Czernerb8a86842014-03-18 18:05:35 -0400507 int ret = 0;
Dmitry Monakhov921f2662013-03-10 21:01:03 -0400508#ifdef ES_AGGRESSIVE_TEST
509 struct ext4_map_blocks orig_map;
510
511 memcpy(&orig_map, map, sizeof(*map));
512#endif
Mingming Caof5ab0d12008-02-25 15:29:55 -0500513
Theodore Ts'oe35fd662010-05-16 19:00:00 -0400514 map->m_flags = 0;
Ritesh Harjani70aa1552020-05-10 11:54:55 +0530515 ext_debug(inode, "flag 0x%x, max_blocks %u, logical block %lu\n",
516 flags, map->m_len, (unsigned long) map->m_lblk);
Zheng Liud100eef2013-02-18 00:29:59 -0500517
Theodore Ts'oe861b5e2014-02-20 12:54:05 -0500518 /*
519 * ext4_map_blocks returns an int, and m_len is an unsigned int
520 */
521 if (unlikely(map->m_len > INT_MAX))
522 map->m_len = INT_MAX;
523
Kazuya Mio4adb6ab2014-04-07 10:53:28 -0400524 /* We can handle the block number less than EXT_MAX_BLOCKS */
525 if (unlikely(map->m_lblk >= EXT_MAX_BLOCKS))
Darrick J. Wong6a797d22015-10-17 16:16:04 -0400526 return -EFSCORRUPTED;
Kazuya Mio4adb6ab2014-04-07 10:53:28 -0400527
Zheng Liud100eef2013-02-18 00:29:59 -0500528 /* Lookup extent status tree firstly */
Harshad Shirwadkar8016e292020-10-15 13:37:59 -0700529 if (!(EXT4_SB(inode->i_sb)->s_mount_state & EXT4_FC_REPLAY) &&
530 ext4_es_lookup_extent(inode, map->m_lblk, NULL, &es)) {
Zheng Liud100eef2013-02-18 00:29:59 -0500531 if (ext4_es_is_written(&es) || ext4_es_is_unwritten(&es)) {
532 map->m_pblk = ext4_es_pblock(&es) +
533 map->m_lblk - es.es_lblk;
534 map->m_flags |= ext4_es_is_written(&es) ?
535 EXT4_MAP_MAPPED : EXT4_MAP_UNWRITTEN;
536 retval = es.es_len - (map->m_lblk - es.es_lblk);
537 if (retval > map->m_len)
538 retval = map->m_len;
539 map->m_len = retval;
540 } else if (ext4_es_is_delayed(&es) || ext4_es_is_hole(&es)) {
Jan Karafacab4d2016-03-09 22:54:00 -0500541 map->m_pblk = 0;
542 retval = es.es_len - (map->m_lblk - es.es_lblk);
543 if (retval > map->m_len)
544 retval = map->m_len;
545 map->m_len = retval;
Zheng Liud100eef2013-02-18 00:29:59 -0500546 retval = 0;
547 } else {
Arnd Bergmann1e83bc82019-04-07 12:24:43 -0400548 BUG();
Zheng Liud100eef2013-02-18 00:29:59 -0500549 }
Dmitry Monakhov921f2662013-03-10 21:01:03 -0400550#ifdef ES_AGGRESSIVE_TEST
551 ext4_map_blocks_es_recheck(handle, inode, map,
552 &orig_map, flags);
553#endif
Zheng Liud100eef2013-02-18 00:29:59 -0500554 goto found;
555 }
556
Aneesh Kumar K.V4df3d262008-01-28 23:58:29 -0500557 /*
Theodore Ts'ob920c752009-05-14 00:54:29 -0400558 * Try to see if we can get the block without requesting a new
559 * file system block.
Aneesh Kumar K.V4df3d262008-01-28 23:58:29 -0500560 */
Jan Kara2dcba472015-12-07 15:04:57 -0500561 down_read(&EXT4_I(inode)->i_data_sem);
Dmitry Monakhov12e9b892010-05-16 22:00:00 -0400562 if (ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS)) {
Eric Whitney9e524842020-04-15 16:31:39 -0400563 retval = ext4_ext_map_blocks(handle, inode, map, 0);
Aneesh Kumar K.V0e855ac2008-01-28 23:58:26 -0500564 } else {
Eric Whitney9e524842020-04-15 16:31:39 -0400565 retval = ext4_ind_map_blocks(handle, inode, map, 0);
Aneesh Kumar K.V0e855ac2008-01-28 23:58:26 -0500566 }
Zheng Liuf7fec032013-02-18 00:28:47 -0500567 if (retval > 0) {
Theodore Ts'o3be78c72013-08-16 21:22:41 -0400568 unsigned int status;
Zheng Liuf7fec032013-02-18 00:28:47 -0500569
Zheng Liu44fb851d2013-07-29 12:51:42 -0400570 if (unlikely(retval != map->m_len)) {
571 ext4_warning(inode->i_sb,
572 "ES len assertion failed for inode "
573 "%lu: retval %d != map->m_len %d",
574 inode->i_ino, retval, map->m_len);
575 WARN_ON(1);
Dmitry Monakhov921f2662013-03-10 21:01:03 -0400576 }
Dmitry Monakhov921f2662013-03-10 21:01:03 -0400577
Zheng Liuf7fec032013-02-18 00:28:47 -0500578 status = map->m_flags & EXT4_MAP_UNWRITTEN ?
579 EXTENT_STATUS_UNWRITTEN : EXTENT_STATUS_WRITTEN;
580 if (!(flags & EXT4_GET_BLOCKS_DELALLOC_RESERVE) &&
Lukas Czernerd2dc3172015-05-02 21:36:55 -0400581 !(status & EXTENT_STATUS_WRITTEN) &&
Eric Whitneyad431022018-10-01 14:10:39 -0400582 ext4_es_scan_range(inode, &ext4_es_is_delayed, map->m_lblk,
583 map->m_lblk + map->m_len - 1))
Zheng Liuf7fec032013-02-18 00:28:47 -0500584 status |= EXTENT_STATUS_DELAYED;
585 ret = ext4_es_insert_extent(inode, map->m_lblk,
586 map->m_len, map->m_pblk, status);
587 if (ret < 0)
588 retval = ret;
589 }
Jan Kara2dcba472015-12-07 15:04:57 -0500590 up_read((&EXT4_I(inode)->i_data_sem));
Mingming Caof5ab0d12008-02-25 15:29:55 -0500591
Zheng Liud100eef2013-02-18 00:29:59 -0500592found:
Theodore Ts'oe35fd662010-05-16 19:00:00 -0400593 if (retval > 0 && map->m_flags & EXT4_MAP_MAPPED) {
Lukas Czernerb8a86842014-03-18 18:05:35 -0400594 ret = check_block_validity(inode, map);
Theodore Ts'o6fd058f2009-05-17 15:38:01 -0400595 if (ret != 0)
596 return ret;
597 }
598
Mingming Caof5ab0d12008-02-25 15:29:55 -0500599 /* If it is only a block(s) look up */
Theodore Ts'oc2177052009-05-14 00:58:52 -0400600 if ((flags & EXT4_GET_BLOCKS_CREATE) == 0)
Aneesh Kumar K.V4df3d262008-01-28 23:58:29 -0500601 return retval;
602
603 /*
Mingming Caof5ab0d12008-02-25 15:29:55 -0500604 * Returns if the blocks have already allocated
605 *
606 * Note that if blocks have been preallocated
Tao Madf3ab172011-10-08 15:53:49 -0400607 * ext4_ext_get_block() returns the create = 0
Mingming Caof5ab0d12008-02-25 15:29:55 -0500608 * with buffer head unmapped.
609 */
Theodore Ts'oe35fd662010-05-16 19:00:00 -0400610 if (retval > 0 && map->m_flags & EXT4_MAP_MAPPED)
Lukas Czernerb8a86842014-03-18 18:05:35 -0400611 /*
612 * If we need to convert extent to unwritten
613 * we continue and do the actual work in
614 * ext4_ext_map_blocks()
615 */
616 if (!(flags & EXT4_GET_BLOCKS_CONVERT_UNWRITTEN))
617 return retval;
Mingming Caof5ab0d12008-02-25 15:29:55 -0500618
619 /*
Zheng Liua25a4e12013-02-18 00:28:04 -0500620 * Here we clear m_flags because after allocating an new extent,
621 * it will be set again.
Aneesh Kumar K.V2a8964d2009-05-14 17:05:39 -0400622 */
Zheng Liua25a4e12013-02-18 00:28:04 -0500623 map->m_flags &= ~EXT4_MAP_FLAGS;
Aneesh Kumar K.V2a8964d2009-05-14 17:05:39 -0400624
625 /*
Lukas Czerner556615d2014-04-20 23:45:47 -0400626 * New blocks allocate and/or writing to unwritten extent
Mingming Caof5ab0d12008-02-25 15:29:55 -0500627 * will possibly result in updating i_data, so we take
Seunghun Leed91bd2c2014-09-01 22:15:30 -0400628 * the write lock of i_data_sem, and call get_block()
Mingming Caof5ab0d12008-02-25 15:29:55 -0500629 * with create == 1 flag.
Aneesh Kumar K.V4df3d262008-01-28 23:58:29 -0500630 */
Lukas Czernerc8b459f2014-05-12 12:55:07 -0400631 down_write(&EXT4_I(inode)->i_data_sem);
Mingming Caod2a17632008-07-14 17:52:37 -0400632
633 /*
Aneesh Kumar K.V4df3d262008-01-28 23:58:29 -0500634 * We need to check for EXT4 here because migrate
635 * could have changed the inode type in between
636 */
Dmitry Monakhov12e9b892010-05-16 22:00:00 -0400637 if (ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS)) {
Theodore Ts'oe35fd662010-05-16 19:00:00 -0400638 retval = ext4_ext_map_blocks(handle, inode, map, flags);
Aneesh Kumar K.V0e855ac2008-01-28 23:58:26 -0500639 } else {
Theodore Ts'oe35fd662010-05-16 19:00:00 -0400640 retval = ext4_ind_map_blocks(handle, inode, map, flags);
Aneesh Kumar K.V267e4db2008-04-29 08:11:12 -0400641
Theodore Ts'oe35fd662010-05-16 19:00:00 -0400642 if (retval > 0 && map->m_flags & EXT4_MAP_NEW) {
Aneesh Kumar K.V267e4db2008-04-29 08:11:12 -0400643 /*
644 * We allocated new blocks which will result in
645 * i_data's format changing. Force the migrate
646 * to fail by clearing migrate flags
647 */
Theodore Ts'o19f5fb72010-01-24 14:34:07 -0500648 ext4_clear_inode_state(inode, EXT4_STATE_EXT_MIGRATE);
Aneesh Kumar K.V267e4db2008-04-29 08:11:12 -0400649 }
Mingming Caod2a17632008-07-14 17:52:37 -0400650
Aneesh Kumar K.V5f634d02010-01-25 04:00:31 -0500651 /*
652 * Update reserved blocks/metadata blocks after successful
653 * block allocation which had been deferred till now. We don't
654 * support fallocate for non extent files. So we can update
655 * reserve space here.
656 */
657 if ((retval > 0) &&
Aneesh Kumar K.V1296cc82010-01-15 01:27:59 -0500658 (flags & EXT4_GET_BLOCKS_DELALLOC_RESERVE))
Aneesh Kumar K.V5f634d02010-01-25 04:00:31 -0500659 ext4_da_update_reserve_space(inode, retval, 1);
660 }
Theodore Ts'o2ac3b6e2009-05-14 13:57:08 -0400661
Zheng Liuf7fec032013-02-18 00:28:47 -0500662 if (retval > 0) {
Theodore Ts'o3be78c72013-08-16 21:22:41 -0400663 unsigned int status;
Zheng Liuf7fec032013-02-18 00:28:47 -0500664
Zheng Liu44fb851d2013-07-29 12:51:42 -0400665 if (unlikely(retval != map->m_len)) {
666 ext4_warning(inode->i_sb,
667 "ES len assertion failed for inode "
668 "%lu: retval %d != map->m_len %d",
669 inode->i_ino, retval, map->m_len);
670 WARN_ON(1);
Dmitry Monakhov921f2662013-03-10 21:01:03 -0400671 }
Dmitry Monakhov921f2662013-03-10 21:01:03 -0400672
Zheng Liuadb23552013-03-10 21:13:05 -0400673 /*
Jan Karac86d8db2015-12-07 15:10:26 -0500674 * We have to zeroout blocks before inserting them into extent
675 * status tree. Otherwise someone could look them up there and
Jan Kara9b623df2016-09-30 02:02:29 -0400676 * use them before they are really zeroed. We also have to
677 * unmap metadata before zeroing as otherwise writeback can
678 * overwrite zeros with stale data from block device.
Jan Karac86d8db2015-12-07 15:10:26 -0500679 */
680 if (flags & EXT4_GET_BLOCKS_ZERO &&
681 map->m_flags & EXT4_MAP_MAPPED &&
682 map->m_flags & EXT4_MAP_NEW) {
683 ret = ext4_issue_zeroout(inode, map->m_lblk,
684 map->m_pblk, map->m_len);
685 if (ret) {
686 retval = ret;
687 goto out_sem;
688 }
689 }
690
691 /*
Zheng Liuadb23552013-03-10 21:13:05 -0400692 * If the extent has been zeroed out, we don't need to update
693 * extent status tree.
694 */
695 if ((flags & EXT4_GET_BLOCKS_PRE_IO) &&
Theodore Ts'obb5835e2019-08-11 16:32:41 -0400696 ext4_es_lookup_extent(inode, map->m_lblk, NULL, &es)) {
Zheng Liuadb23552013-03-10 21:13:05 -0400697 if (ext4_es_is_written(&es))
Jan Karac86d8db2015-12-07 15:10:26 -0500698 goto out_sem;
Zheng Liuadb23552013-03-10 21:13:05 -0400699 }
Zheng Liuf7fec032013-02-18 00:28:47 -0500700 status = map->m_flags & EXT4_MAP_UNWRITTEN ?
701 EXTENT_STATUS_UNWRITTEN : EXTENT_STATUS_WRITTEN;
702 if (!(flags & EXT4_GET_BLOCKS_DELALLOC_RESERVE) &&
Lukas Czernerd2dc3172015-05-02 21:36:55 -0400703 !(status & EXTENT_STATUS_WRITTEN) &&
Eric Whitneyad431022018-10-01 14:10:39 -0400704 ext4_es_scan_range(inode, &ext4_es_is_delayed, map->m_lblk,
705 map->m_lblk + map->m_len - 1))
Zheng Liuf7fec032013-02-18 00:28:47 -0500706 status |= EXTENT_STATUS_DELAYED;
707 ret = ext4_es_insert_extent(inode, map->m_lblk, map->m_len,
708 map->m_pblk, status);
Jan Karac86d8db2015-12-07 15:10:26 -0500709 if (ret < 0) {
Zheng Liuf7fec032013-02-18 00:28:47 -0500710 retval = ret;
Jan Karac86d8db2015-12-07 15:10:26 -0500711 goto out_sem;
712 }
Aditya Kali5356f2612011-09-09 19:20:51 -0400713 }
714
Jan Karac86d8db2015-12-07 15:10:26 -0500715out_sem:
Aneesh Kumar K.V4df3d262008-01-28 23:58:29 -0500716 up_write((&EXT4_I(inode)->i_data_sem));
Theodore Ts'oe35fd662010-05-16 19:00:00 -0400717 if (retval > 0 && map->m_flags & EXT4_MAP_MAPPED) {
Lukas Czernerb8a86842014-03-18 18:05:35 -0400718 ret = check_block_validity(inode, map);
Theodore Ts'o6fd058f2009-05-17 15:38:01 -0400719 if (ret != 0)
720 return ret;
Jan Kara06bd3c32016-04-24 00:56:03 -0400721
722 /*
723 * Inodes with freshly allocated blocks where contents will be
724 * visible after transaction commit must be on transaction's
725 * ordered data list.
726 */
727 if (map->m_flags & EXT4_MAP_NEW &&
728 !(map->m_flags & EXT4_MAP_UNWRITTEN) &&
729 !(flags & EXT4_GET_BLOCKS_ZERO) &&
Tahsin Erdogan02749a42017-06-22 11:31:25 -0400730 !ext4_is_quota_file(inode) &&
Jan Kara06bd3c32016-04-24 00:56:03 -0400731 ext4_should_order_data(inode)) {
Ross Zwisler73131fb2019-06-20 17:26:26 -0400732 loff_t start_byte =
733 (loff_t)map->m_lblk << inode->i_blkbits;
734 loff_t length = (loff_t)map->m_len << inode->i_blkbits;
735
Jan Karaee0876b2016-04-24 00:56:08 -0400736 if (flags & EXT4_GET_BLOCKS_IO_SUBMIT)
Ross Zwisler73131fb2019-06-20 17:26:26 -0400737 ret = ext4_jbd2_inode_add_wait(handle, inode,
738 start_byte, length);
Jan Karaee0876b2016-04-24 00:56:08 -0400739 else
Ross Zwisler73131fb2019-06-20 17:26:26 -0400740 ret = ext4_jbd2_inode_add_write(handle, inode,
741 start_byte, length);
Jan Kara06bd3c32016-04-24 00:56:03 -0400742 if (ret)
743 return ret;
744 }
Theodore Ts'o6fd058f2009-05-17 15:38:01 -0400745 }
Xin Yin5e4d0eb2021-12-21 10:28:39 +0800746 if (retval > 0 && (map->m_flags & EXT4_MAP_UNWRITTEN ||
747 map->m_flags & EXT4_MAP_MAPPED))
748 ext4_fc_track_range(handle, inode, map->m_lblk,
749 map->m_lblk + map->m_len - 1);
Ritesh Harjaniec8c60b2020-05-10 11:54:52 +0530750 if (retval < 0)
Ritesh Harjani70aa1552020-05-10 11:54:55 +0530751 ext_debug(inode, "failed with err %d\n", retval);
Aneesh Kumar K.V0e855ac2008-01-28 23:58:26 -0500752 return retval;
753}
754
Jan Karaed8ad832016-02-19 00:18:25 -0500755/*
756 * Update EXT4_MAP_FLAGS in bh->b_state. For buffer heads attached to pages
757 * we have to be careful as someone else may be manipulating b_state as well.
758 */
759static void ext4_update_bh_state(struct buffer_head *bh, unsigned long flags)
760{
761 unsigned long old_state;
762 unsigned long new_state;
763
764 flags &= EXT4_MAP_FLAGS;
765
766 /* Dummy buffer_head? Set non-atomically. */
767 if (!bh->b_page) {
768 bh->b_state = (bh->b_state & ~EXT4_MAP_FLAGS) | flags;
769 return;
770 }
771 /*
772 * Someone else may be modifying b_state. Be careful! This is ugly but
773 * once we get rid of using bh as a container for mapping information
774 * to pass to / from get_block functions, this can go away.
775 */
776 do {
777 old_state = READ_ONCE(bh->b_state);
778 new_state = (old_state & ~EXT4_MAP_FLAGS) | flags;
779 } while (unlikely(
780 cmpxchg(&bh->b_state, old_state, new_state) != old_state));
781}
782
Theodore Ts'o2ed88682010-05-16 20:00:00 -0400783static int _ext4_get_block(struct inode *inode, sector_t iblock,
784 struct buffer_head *bh, int flags)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700785{
Theodore Ts'o2ed88682010-05-16 20:00:00 -0400786 struct ext4_map_blocks map;
Jan Karaefe70c22016-03-08 23:35:46 -0500787 int ret = 0;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700788
Tao Ma46c7f252012-12-10 14:04:52 -0500789 if (ext4_has_inline_data(inode))
790 return -ERANGE;
791
Theodore Ts'o2ed88682010-05-16 20:00:00 -0400792 map.m_lblk = iblock;
793 map.m_len = bh->b_size >> inode->i_blkbits;
794
Jan Karaefe70c22016-03-08 23:35:46 -0500795 ret = ext4_map_blocks(ext4_journal_current_handle(), inode, &map,
796 flags);
Jan Kara7fb54092008-02-10 01:08:38 -0500797 if (ret > 0) {
Theodore Ts'o2ed88682010-05-16 20:00:00 -0400798 map_bh(bh, inode->i_sb, map.m_pblk);
Jan Karaed8ad832016-02-19 00:18:25 -0500799 ext4_update_bh_state(bh, map.m_flags);
Theodore Ts'o2ed88682010-05-16 20:00:00 -0400800 bh->b_size = inode->i_sb->s_blocksize * map.m_len;
Jan Kara7fb54092008-02-10 01:08:38 -0500801 ret = 0;
Ross Zwisler547edce2016-11-08 11:30:58 +1100802 } else if (ret == 0) {
803 /* hole case, need to fill in bh->b_size */
804 bh->b_size = inode->i_sb->s_blocksize * map.m_len;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700805 }
806 return ret;
807}
808
Theodore Ts'o2ed88682010-05-16 20:00:00 -0400809int ext4_get_block(struct inode *inode, sector_t iblock,
810 struct buffer_head *bh, int create)
811{
812 return _ext4_get_block(inode, iblock, bh,
813 create ? EXT4_GET_BLOCKS_CREATE : 0);
814}
815
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700816/*
Jan Kara705965b2016-03-08 23:08:10 -0500817 * Get block function used when preparing for buffered write if we require
818 * creating an unwritten extent if blocks haven't been allocated. The extent
819 * will be converted to written after the IO is complete.
820 */
821int ext4_get_block_unwritten(struct inode *inode, sector_t iblock,
822 struct buffer_head *bh_result, int create)
823{
824 ext4_debug("ext4_get_block_unwritten: inode %lu, create flag %d\n",
825 inode->i_ino, create);
826 return _ext4_get_block(inode, iblock, bh_result,
827 EXT4_GET_BLOCKS_IO_CREATE_EXT);
828}
829
Jan Karaefe70c22016-03-08 23:35:46 -0500830/* Maximum number of blocks we map for direct IO at once. */
831#define DIO_MAX_BLOCKS 4096
832
Jan Karae84dfbe2016-04-01 02:07:22 -0400833/*
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700834 * `handle' can be NULL if create is zero
835 */
Mingming Cao617ba132006-10-11 01:20:53 -0700836struct buffer_head *ext4_getblk(handle_t *handle, struct inode *inode,
Theodore Ts'oc5e298a2015-06-21 01:25:29 -0400837 ext4_lblk_t block, int map_flags)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700838{
Theodore Ts'o2ed88682010-05-16 20:00:00 -0400839 struct ext4_map_blocks map;
840 struct buffer_head *bh;
Theodore Ts'oc5e298a2015-06-21 01:25:29 -0400841 int create = map_flags & EXT4_GET_BLOCKS_CREATE;
Theodore Ts'o10560082014-08-29 20:51:32 -0400842 int err;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700843
Chunguang Xu837c23f2020-11-07 23:58:11 +0800844 ASSERT((EXT4_SB(inode->i_sb)->s_mount_state & EXT4_FC_REPLAY)
845 || handle != NULL || create == 0);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700846
Theodore Ts'o2ed88682010-05-16 20:00:00 -0400847 map.m_lblk = block;
848 map.m_len = 1;
Theodore Ts'oc5e298a2015-06-21 01:25:29 -0400849 err = ext4_map_blocks(handle, inode, &map, map_flags);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700850
Theodore Ts'o10560082014-08-29 20:51:32 -0400851 if (err == 0)
852 return create ? ERR_PTR(-ENOSPC) : NULL;
Theodore Ts'o2ed88682010-05-16 20:00:00 -0400853 if (err < 0)
Theodore Ts'o10560082014-08-29 20:51:32 -0400854 return ERR_PTR(err);
Theodore Ts'o2ed88682010-05-16 20:00:00 -0400855
856 bh = sb_getblk(inode->i_sb, map.m_pblk);
Theodore Ts'o10560082014-08-29 20:51:32 -0400857 if (unlikely(!bh))
858 return ERR_PTR(-ENOMEM);
Theodore Ts'o2ed88682010-05-16 20:00:00 -0400859 if (map.m_flags & EXT4_MAP_NEW) {
Chunguang Xu837c23f2020-11-07 23:58:11 +0800860 ASSERT(create != 0);
861 ASSERT((EXT4_SB(inode->i_sb)->s_mount_state & EXT4_FC_REPLAY)
862 || (handle != NULL));
Theodore Ts'o2ed88682010-05-16 20:00:00 -0400863
864 /*
865 * Now that we do not always journal data, we should
866 * keep in mind whether this should always journal the
867 * new buffer as metadata. For now, regular file
868 * writes use ext4_get_block instead, so it's not a
869 * problem.
870 */
871 lock_buffer(bh);
872 BUFFER_TRACE(bh, "call get_create_access");
Jan Kara188c2992021-08-16 11:57:04 +0200873 err = ext4_journal_get_create_access(handle, inode->i_sb, bh,
874 EXT4_JTR_NONE);
Theodore Ts'o10560082014-08-29 20:51:32 -0400875 if (unlikely(err)) {
876 unlock_buffer(bh);
877 goto errout;
878 }
879 if (!buffer_uptodate(bh)) {
Theodore Ts'o2ed88682010-05-16 20:00:00 -0400880 memset(bh->b_data, 0, inode->i_sb->s_blocksize);
881 set_buffer_uptodate(bh);
882 }
883 unlock_buffer(bh);
884 BUFFER_TRACE(bh, "call ext4_handle_dirty_metadata");
885 err = ext4_handle_dirty_metadata(handle, inode, bh);
Theodore Ts'o10560082014-08-29 20:51:32 -0400886 if (unlikely(err))
887 goto errout;
888 } else
Theodore Ts'o2ed88682010-05-16 20:00:00 -0400889 BUFFER_TRACE(bh, "not a new buffer");
Theodore Ts'o2ed88682010-05-16 20:00:00 -0400890 return bh;
Theodore Ts'o10560082014-08-29 20:51:32 -0400891errout:
892 brelse(bh);
893 return ERR_PTR(err);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700894}
895
Mingming Cao617ba132006-10-11 01:20:53 -0700896struct buffer_head *ext4_bread(handle_t *handle, struct inode *inode,
Theodore Ts'oc5e298a2015-06-21 01:25:29 -0400897 ext4_lblk_t block, int map_flags)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700898{
Theodore Ts'oaf5bc922008-09-08 22:25:24 -0400899 struct buffer_head *bh;
zhangyi (F)2d069c02020-09-24 15:33:33 +0800900 int ret;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700901
Theodore Ts'oc5e298a2015-06-21 01:25:29 -0400902 bh = ext4_getblk(handle, inode, block, map_flags);
Theodore Ts'o1c215022014-08-29 20:52:15 -0400903 if (IS_ERR(bh))
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700904 return bh;
ZhangXiaoxu7963e5a2019-08-22 23:00:32 -0400905 if (!bh || ext4_buffer_uptodate(bh))
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700906 return bh;
zhangyi (F)2d069c02020-09-24 15:33:33 +0800907
908 ret = ext4_read_bh_lock(bh, REQ_META | REQ_PRIO, true);
909 if (ret) {
910 put_bh(bh);
911 return ERR_PTR(ret);
912 }
913 return bh;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700914}
915
Tahsin Erdogan9699d4f2017-08-06 00:07:01 -0400916/* Read a contiguous batch of blocks. */
917int ext4_bread_batch(struct inode *inode, ext4_lblk_t block, int bh_count,
918 bool wait, struct buffer_head **bhs)
919{
920 int i, err;
921
922 for (i = 0; i < bh_count; i++) {
923 bhs[i] = ext4_getblk(NULL, inode, block + i, 0 /* map_flags */);
924 if (IS_ERR(bhs[i])) {
925 err = PTR_ERR(bhs[i]);
926 bh_count = i;
927 goto out_brelse;
928 }
929 }
930
931 for (i = 0; i < bh_count; i++)
932 /* Note that NULL bhs[i] is valid because of holes. */
zhangyi (F)2d069c02020-09-24 15:33:33 +0800933 if (bhs[i] && !ext4_buffer_uptodate(bhs[i]))
934 ext4_read_bh_lock(bhs[i], REQ_META | REQ_PRIO, false);
Tahsin Erdogan9699d4f2017-08-06 00:07:01 -0400935
936 if (!wait)
937 return 0;
938
939 for (i = 0; i < bh_count; i++)
940 if (bhs[i])
941 wait_on_buffer(bhs[i]);
942
943 for (i = 0; i < bh_count; i++) {
944 if (bhs[i] && !buffer_uptodate(bhs[i])) {
945 err = -EIO;
946 goto out_brelse;
947 }
948 }
949 return 0;
950
951out_brelse:
952 for (i = 0; i < bh_count; i++) {
953 brelse(bhs[i]);
954 bhs[i] = NULL;
955 }
956 return err;
957}
958
Jan Kara188c2992021-08-16 11:57:04 +0200959int ext4_walk_page_buffers(handle_t *handle, struct inode *inode,
Tao Maf19d5872012-12-10 14:05:51 -0500960 struct buffer_head *head,
961 unsigned from,
962 unsigned to,
963 int *partial,
Jan Kara188c2992021-08-16 11:57:04 +0200964 int (*fn)(handle_t *handle, struct inode *inode,
Tao Maf19d5872012-12-10 14:05:51 -0500965 struct buffer_head *bh))
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700966{
967 struct buffer_head *bh;
968 unsigned block_start, block_end;
969 unsigned blocksize = head->b_size;
970 int err, ret = 0;
971 struct buffer_head *next;
972
Theodore Ts'oaf5bc922008-09-08 22:25:24 -0400973 for (bh = head, block_start = 0;
974 ret == 0 && (bh != head || !block_start);
Theodore Ts'ode9a55b2009-06-14 17:45:34 -0400975 block_start = block_end, bh = next) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700976 next = bh->b_this_page;
977 block_end = block_start + blocksize;
978 if (block_end <= from || block_start >= to) {
979 if (partial && !buffer_uptodate(bh))
980 *partial = 1;
981 continue;
982 }
Jan Kara188c2992021-08-16 11:57:04 +0200983 err = (*fn)(handle, inode, bh);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700984 if (!ret)
985 ret = err;
986 }
987 return ret;
988}
989
990/*
991 * To preserve ordering, it is essential that the hole instantiation and
992 * the data write be encapsulated in a single transaction. We cannot
Mingming Cao617ba132006-10-11 01:20:53 -0700993 * close off a transaction and start a new one between the ext4_get_block()
Mingming Caodab291a2006-10-11 01:21:01 -0700994 * and the commit_write(). So doing the jbd2_journal_start at the start of
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700995 * prepare_write() is the right place.
996 *
Jan Kara36ade452013-01-28 09:30:52 -0500997 * Also, this function can nest inside ext4_writepage(). In that case, we
998 * *know* that ext4_writepage() has generated enough buffer credits to do the
999 * whole page. So we won't block on the journal in that case, which is good,
1000 * because the caller may be PF_MEMALLOC.
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001001 *
Mingming Cao617ba132006-10-11 01:20:53 -07001002 * By accident, ext4 can be reentered when a transaction is open via
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001003 * quota file writes. If we were to commit the transaction while thus
1004 * reentered, there can be a deadlock - we would be holding a quota
1005 * lock, and the commit would never complete if another thread had a
1006 * transaction open and was blocking on the quota lock - a ranking
1007 * violation.
1008 *
Mingming Caodab291a2006-10-11 01:21:01 -07001009 * So what we do is to rely on the fact that jbd2_journal_stop/journal_start
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001010 * will _not_ run commit under these circumstances because handle->h_ref
1011 * is elevated. We'll still have enough credits for the tiny quotafile
1012 * write.
1013 */
Jan Kara188c2992021-08-16 11:57:04 +02001014int do_journal_get_write_access(handle_t *handle, struct inode *inode,
Tao Maf19d5872012-12-10 14:05:51 -05001015 struct buffer_head *bh)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001016{
Jan Kara56d35a42010-08-05 14:41:42 -04001017 int dirty = buffer_dirty(bh);
1018 int ret;
1019
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001020 if (!buffer_mapped(bh) || buffer_freed(bh))
1021 return 0;
Jan Kara56d35a42010-08-05 14:41:42 -04001022 /*
Christoph Hellwigebdec242010-10-06 10:47:23 +02001023 * __block_write_begin() could have dirtied some buffers. Clean
Jan Kara56d35a42010-08-05 14:41:42 -04001024 * the dirty bit as jbd2_journal_get_write_access() could complain
1025 * otherwise about fs integrity issues. Setting of the dirty bit
Christoph Hellwigebdec242010-10-06 10:47:23 +02001026 * by __block_write_begin() isn't a real problem here as we clear
Jan Kara56d35a42010-08-05 14:41:42 -04001027 * the bit before releasing a page lock and thus writeback cannot
1028 * ever write the buffer.
1029 */
1030 if (dirty)
1031 clear_buffer_dirty(bh);
liang xie5d601252014-05-12 22:06:43 -04001032 BUFFER_TRACE(bh, "get write access");
Jan Kara188c2992021-08-16 11:57:04 +02001033 ret = ext4_journal_get_write_access(handle, inode->i_sb, bh,
1034 EXT4_JTR_NONE);
Jan Kara56d35a42010-08-05 14:41:42 -04001035 if (!ret && dirty)
1036 ret = ext4_handle_dirty_metadata(handle, NULL, bh);
1037 return ret;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001038}
1039
Chandan Rajendra643fa962018-12-12 15:20:12 +05301040#ifdef CONFIG_FS_ENCRYPTION
Michael Halcrow2058f832015-04-12 00:55:10 -04001041static int ext4_block_write_begin(struct page *page, loff_t pos, unsigned len,
1042 get_block_t *get_block)
1043{
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001044 unsigned from = pos & (PAGE_SIZE - 1);
Michael Halcrow2058f832015-04-12 00:55:10 -04001045 unsigned to = from + len;
1046 struct inode *inode = page->mapping->host;
1047 unsigned block_start, block_end;
1048 sector_t block;
1049 int err = 0;
1050 unsigned blocksize = inode->i_sb->s_blocksize;
1051 unsigned bbits;
Chandan Rajendra0b578f32019-05-20 09:29:50 -07001052 struct buffer_head *bh, *head, *wait[2];
1053 int nr_wait = 0;
1054 int i;
Michael Halcrow2058f832015-04-12 00:55:10 -04001055
1056 BUG_ON(!PageLocked(page));
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001057 BUG_ON(from > PAGE_SIZE);
1058 BUG_ON(to > PAGE_SIZE);
Michael Halcrow2058f832015-04-12 00:55:10 -04001059 BUG_ON(from > to);
1060
1061 if (!page_has_buffers(page))
1062 create_empty_buffers(page, blocksize, 0);
1063 head = page_buffers(page);
1064 bbits = ilog2(blocksize);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001065 block = (sector_t)page->index << (PAGE_SHIFT - bbits);
Michael Halcrow2058f832015-04-12 00:55:10 -04001066
1067 for (bh = head, block_start = 0; bh != head || !block_start;
1068 block++, block_start = block_end, bh = bh->b_this_page) {
1069 block_end = block_start + blocksize;
1070 if (block_end <= from || block_start >= to) {
1071 if (PageUptodate(page)) {
Yang Guo3cd46172021-04-01 15:03:30 +08001072 set_buffer_uptodate(bh);
Michael Halcrow2058f832015-04-12 00:55:10 -04001073 }
1074 continue;
1075 }
1076 if (buffer_new(bh))
1077 clear_buffer_new(bh);
1078 if (!buffer_mapped(bh)) {
1079 WARN_ON(bh->b_size != blocksize);
1080 err = get_block(inode, block, bh, 1);
1081 if (err)
1082 break;
1083 if (buffer_new(bh)) {
Michael Halcrow2058f832015-04-12 00:55:10 -04001084 if (PageUptodate(page)) {
1085 clear_buffer_new(bh);
1086 set_buffer_uptodate(bh);
1087 mark_buffer_dirty(bh);
1088 continue;
1089 }
1090 if (block_end > to || block_start < from)
1091 zero_user_segments(page, to, block_end,
1092 block_start, from);
1093 continue;
1094 }
1095 }
1096 if (PageUptodate(page)) {
Yang Guo3cd46172021-04-01 15:03:30 +08001097 set_buffer_uptodate(bh);
Michael Halcrow2058f832015-04-12 00:55:10 -04001098 continue;
1099 }
1100 if (!buffer_uptodate(bh) && !buffer_delay(bh) &&
1101 !buffer_unwritten(bh) &&
1102 (block_start < from || block_end > to)) {
zhangyi (F)2d069c02020-09-24 15:33:33 +08001103 ext4_read_bh_lock(bh, 0, false);
Chandan Rajendra0b578f32019-05-20 09:29:50 -07001104 wait[nr_wait++] = bh;
Michael Halcrow2058f832015-04-12 00:55:10 -04001105 }
1106 }
1107 /*
1108 * If we issued read requests, let them complete.
1109 */
Chandan Rajendra0b578f32019-05-20 09:29:50 -07001110 for (i = 0; i < nr_wait; i++) {
1111 wait_on_buffer(wait[i]);
1112 if (!buffer_uptodate(wait[i]))
Michael Halcrow2058f832015-04-12 00:55:10 -04001113 err = -EIO;
1114 }
Chandan Rajendra7e0785f2019-05-20 09:29:49 -07001115 if (unlikely(err)) {
Michael Halcrow2058f832015-04-12 00:55:10 -04001116 page_zero_new_buffers(page, from, to);
Eric Biggers4f74d152020-07-02 01:56:07 +00001117 } else if (fscrypt_inode_uses_fs_layer_crypto(inode)) {
Chandan Rajendra0b578f32019-05-20 09:29:50 -07001118 for (i = 0; i < nr_wait; i++) {
1119 int err2;
1120
1121 err2 = fscrypt_decrypt_pagecache_blocks(page, blocksize,
1122 bh_offset(wait[i]));
1123 if (err2) {
1124 clear_buffer_uptodate(wait[i]);
1125 err = err2;
1126 }
1127 }
Chandan Rajendra7e0785f2019-05-20 09:29:49 -07001128 }
1129
Michael Halcrow2058f832015-04-12 00:55:10 -04001130 return err;
1131}
1132#endif
1133
Nick Pigginbfc1af62007-10-16 01:25:05 -07001134static int ext4_write_begin(struct file *file, struct address_space *mapping,
Theodore Ts'ode9a55b2009-06-14 17:45:34 -04001135 loff_t pos, unsigned len, unsigned flags,
1136 struct page **pagep, void **fsdata)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001137{
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04001138 struct inode *inode = mapping->host;
Aneesh Kumar K.V1938a152009-06-05 01:00:26 -04001139 int ret, needed_blocks;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001140 handle_t *handle;
1141 int retries = 0;
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04001142 struct page *page;
Theodore Ts'ode9a55b2009-06-14 17:45:34 -04001143 pgoff_t index;
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04001144 unsigned from, to;
Nick Pigginbfc1af62007-10-16 01:25:05 -07001145
Theodore Ts'o0db1ff22017-02-05 01:28:48 -05001146 if (unlikely(ext4_forced_shutdown(EXT4_SB(inode->i_sb))))
1147 return -EIO;
1148
Theodore Ts'o9bffad12009-06-17 11:48:11 -04001149 trace_ext4_write_begin(inode, pos, len, flags);
Aneesh Kumar K.V1938a152009-06-05 01:00:26 -04001150 /*
1151 * Reserve one block more for addition to orphan list in case
1152 * we allocate blocks but write fails for some reason
1153 */
1154 needed_blocks = ext4_writepage_trans_blocks(inode) + 1;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001155 index = pos >> PAGE_SHIFT;
1156 from = pos & (PAGE_SIZE - 1);
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04001157 to = from + len;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001158
Tao Maf19d5872012-12-10 14:05:51 -05001159 if (ext4_test_inode_state(inode, EXT4_STATE_MAY_INLINE_DATA)) {
1160 ret = ext4_try_to_write_inline_data(mapping, inode, pos, len,
1161 flags, pagep);
1162 if (ret < 0)
Theodore Ts'o47564bf2013-02-09 09:24:14 -05001163 return ret;
1164 if (ret == 1)
1165 return 0;
Tao Maf19d5872012-12-10 14:05:51 -05001166 }
1167
Theodore Ts'o47564bf2013-02-09 09:24:14 -05001168 /*
1169 * grab_cache_page_write_begin() can take a long time if the
1170 * system is thrashing due to memory pressure, or if the page
1171 * is being written back. So grab it first before we start
1172 * the transaction handle. This also allows us to allocate
1173 * the page (if needed) without using GFP_NOFS.
1174 */
1175retry_grab:
Nick Piggin54566b22009-01-04 12:00:53 -08001176 page = grab_cache_page_write_begin(mapping, index, flags);
Theodore Ts'o47564bf2013-02-09 09:24:14 -05001177 if (!page)
1178 return -ENOMEM;
1179 unlock_page(page);
1180
1181retry_journal:
Theodore Ts'o9924a922013-02-08 21:59:22 -05001182 handle = ext4_journal_start(inode, EXT4_HT_WRITE_PAGE, needed_blocks);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001183 if (IS_ERR(handle)) {
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001184 put_page(page);
Theodore Ts'o47564bf2013-02-09 09:24:14 -05001185 return PTR_ERR(handle);
Jan Karacf108bc2008-07-11 19:27:31 -04001186 }
Tao Maf19d5872012-12-10 14:05:51 -05001187
Theodore Ts'o47564bf2013-02-09 09:24:14 -05001188 lock_page(page);
1189 if (page->mapping != mapping) {
1190 /* The page got truncated from under us */
1191 unlock_page(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001192 put_page(page);
Jan Karacf108bc2008-07-11 19:27:31 -04001193 ext4_journal_stop(handle);
Theodore Ts'o47564bf2013-02-09 09:24:14 -05001194 goto retry_grab;
Jan Karacf108bc2008-07-11 19:27:31 -04001195 }
Dmitry Monakhov7afe5aa2013-08-28 14:30:47 -04001196 /* In case writeback began while the page was unlocked */
1197 wait_for_stable_page(page);
Jan Karacf108bc2008-07-11 19:27:31 -04001198
Chandan Rajendra643fa962018-12-12 15:20:12 +05301199#ifdef CONFIG_FS_ENCRYPTION
Michael Halcrow2058f832015-04-12 00:55:10 -04001200 if (ext4_should_dioread_nolock(inode))
1201 ret = ext4_block_write_begin(page, pos, len,
Jan Kara705965b2016-03-08 23:08:10 -05001202 ext4_get_block_unwritten);
Michael Halcrow2058f832015-04-12 00:55:10 -04001203 else
1204 ret = ext4_block_write_begin(page, pos, len,
1205 ext4_get_block);
1206#else
Jiaying Zhang744692d2010-03-04 16:14:02 -05001207 if (ext4_should_dioread_nolock(inode))
Jan Kara705965b2016-03-08 23:08:10 -05001208 ret = __block_write_begin(page, pos, len,
1209 ext4_get_block_unwritten);
Jiaying Zhang744692d2010-03-04 16:14:02 -05001210 else
Christoph Hellwig6e1db882010-06-04 11:29:57 +02001211 ret = __block_write_begin(page, pos, len, ext4_get_block);
Michael Halcrow2058f832015-04-12 00:55:10 -04001212#endif
Nick Pigginbfc1af62007-10-16 01:25:05 -07001213 if (!ret && ext4_should_journal_data(inode)) {
Jan Kara188c2992021-08-16 11:57:04 +02001214 ret = ext4_walk_page_buffers(handle, inode,
1215 page_buffers(page), from, to, NULL,
Tao Maf19d5872012-12-10 14:05:51 -05001216 do_journal_get_write_access);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001217 }
Nick Pigginbfc1af62007-10-16 01:25:05 -07001218
1219 if (ret) {
Eric Biggersc93d8f82019-07-22 09:26:24 -07001220 bool extended = (pos + len > inode->i_size) &&
1221 !ext4_verity_in_progress(inode);
1222
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04001223 unlock_page(page);
Aneesh Kumar K.Vae4d5372008-09-13 13:10:25 -04001224 /*
Christoph Hellwig6e1db882010-06-04 11:29:57 +02001225 * __block_write_begin may have instantiated a few blocks
Aneesh Kumar K.Vae4d5372008-09-13 13:10:25 -04001226 * outside i_size. Trim these off again. Don't need
1227 * i_size_read because we hold i_mutex.
Aneesh Kumar K.V1938a152009-06-05 01:00:26 -04001228 *
1229 * Add inode to orphan list in case we crash before
1230 * truncate finishes
Aneesh Kumar K.Vae4d5372008-09-13 13:10:25 -04001231 */
Eric Biggersc93d8f82019-07-22 09:26:24 -07001232 if (extended && ext4_can_truncate(inode))
Aneesh Kumar K.V1938a152009-06-05 01:00:26 -04001233 ext4_orphan_add(handle, inode);
1234
1235 ext4_journal_stop(handle);
Eric Biggersc93d8f82019-07-22 09:26:24 -07001236 if (extended) {
Jan Karab9a42072009-12-08 21:24:33 -05001237 ext4_truncate_failed_write(inode);
Theodore Ts'ode9a55b2009-06-14 17:45:34 -04001238 /*
Jan Karaffacfa72009-07-13 16:22:22 -04001239 * If truncate failed early the inode might
Aneesh Kumar K.V1938a152009-06-05 01:00:26 -04001240 * still be on the orphan list; we need to
1241 * make sure the inode is removed from the
1242 * orphan list in that case.
1243 */
1244 if (inode->i_nlink)
1245 ext4_orphan_del(NULL, inode);
1246 }
Nick Pigginbfc1af62007-10-16 01:25:05 -07001247
Theodore Ts'o47564bf2013-02-09 09:24:14 -05001248 if (ret == -ENOSPC &&
1249 ext4_should_retry_alloc(inode->i_sb, &retries))
1250 goto retry_journal;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001251 put_page(page);
Theodore Ts'o47564bf2013-02-09 09:24:14 -05001252 return ret;
1253 }
1254 *pagep = page;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001255 return ret;
1256}
1257
Nick Pigginbfc1af62007-10-16 01:25:05 -07001258/* For write_end() in data=journal mode */
Jan Kara188c2992021-08-16 11:57:04 +02001259static int write_end_fn(handle_t *handle, struct inode *inode,
1260 struct buffer_head *bh)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001261{
Theodore Ts'o13fca322013-04-21 16:45:54 -04001262 int ret;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001263 if (!buffer_mapped(bh) || buffer_freed(bh))
1264 return 0;
1265 set_buffer_uptodate(bh);
Theodore Ts'o13fca322013-04-21 16:45:54 -04001266 ret = ext4_handle_dirty_metadata(handle, NULL, bh);
1267 clear_buffer_meta(bh);
1268 clear_buffer_prio(bh);
1269 return ret;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001270}
1271
Zheng Liueed43332013-04-03 12:41:17 -04001272/*
1273 * We need to pick up the new inode size which generic_commit_write gave us
1274 * `file' can be NULL - eg, when called from page_symlink().
1275 *
1276 * ext4 never places buffers on inode->i_mapping->private_list. metadata
1277 * buffers are managed internally.
1278 */
1279static int ext4_write_end(struct file *file,
1280 struct address_space *mapping,
1281 loff_t pos, unsigned len, unsigned copied,
1282 struct page *page, void *fsdata)
Aneesh Kumar K.Vf8514082009-06-05 00:56:49 -04001283{
Aneesh Kumar K.Vf8514082009-06-05 00:56:49 -04001284 handle_t *handle = ext4_journal_current_handle();
Zheng Liueed43332013-04-03 12:41:17 -04001285 struct inode *inode = mapping->host;
Xiaoguang Wang05726392015-02-12 23:00:17 -05001286 loff_t old_size = inode->i_size;
Zheng Liueed43332013-04-03 12:41:17 -04001287 int ret = 0, ret2;
1288 int i_size_changed = 0;
Eric Biggersc93d8f82019-07-22 09:26:24 -07001289 bool verity = ext4_verity_in_progress(inode);
Zheng Liueed43332013-04-03 12:41:17 -04001290
1291 trace_ext4_write_end(inode, pos, len, copied);
Zhang Yi6984aef2021-07-16 20:20:23 +08001292
1293 if (ext4_has_inline_data(inode))
1294 return ext4_write_inline_data_end(inode, pos, len, copied, page);
1295
1296 copied = block_write_end(file, mapping, pos, len, copied, page, fsdata);
Aneesh Kumar K.Vf8514082009-06-05 00:56:49 -04001297 /*
Dmitry Monakhov4631dbf2014-08-23 17:48:28 -04001298 * it's important to update i_size while still holding page lock:
Aneesh Kumar K.Vf8514082009-06-05 00:56:49 -04001299 * page writeout could otherwise come in and zero beyond i_size.
Eric Biggersc93d8f82019-07-22 09:26:24 -07001300 *
1301 * If FS_IOC_ENABLE_VERITY is running on this inode, then Merkle tree
1302 * blocks are being written past EOF, so skip the i_size update.
Aneesh Kumar K.Vf8514082009-06-05 00:56:49 -04001303 */
Eric Biggersc93d8f82019-07-22 09:26:24 -07001304 if (!verity)
1305 i_size_changed = ext4_update_inode_size(inode, pos + copied);
Aneesh Kumar K.Vf8514082009-06-05 00:56:49 -04001306 unlock_page(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001307 put_page(page);
Aneesh Kumar K.Vf8514082009-06-05 00:56:49 -04001308
Eric Biggersc93d8f82019-07-22 09:26:24 -07001309 if (old_size < pos && !verity)
Xiaoguang Wang05726392015-02-12 23:00:17 -05001310 pagecache_isize_extended(inode, old_size, pos);
Aneesh Kumar K.Vf8514082009-06-05 00:56:49 -04001311 /*
1312 * Don't mark the inode dirty under page lock. First, it unnecessarily
1313 * makes the holding time of page lock longer. Second, it forces lock
1314 * ordering of page lock and transaction start for journaling
1315 * filesystems.
1316 */
Zhang Yi6984aef2021-07-16 20:20:23 +08001317 if (i_size_changed)
Harshad Shirwadkar4209ae12020-04-26 18:34:37 -07001318 ret = ext4_mark_inode_dirty(handle, inode);
Aneesh Kumar K.Vf8514082009-06-05 00:56:49 -04001319
Eric Biggersc93d8f82019-07-22 09:26:24 -07001320 if (pos + len > inode->i_size && !verity && ext4_can_truncate(inode))
Aneesh Kumar K.Vf8514082009-06-05 00:56:49 -04001321 /* if we have allocated more blocks and copied
1322 * less. We will have blocks allocated outside
1323 * inode->i_size. So truncate them
1324 */
1325 ext4_orphan_add(handle, inode);
Zhang Yi55ce2f62021-07-16 20:20:22 +08001326
Mingming Cao617ba132006-10-11 01:20:53 -07001327 ret2 = ext4_journal_stop(handle);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001328 if (!ret)
1329 ret = ret2;
Nick Pigginbfc1af62007-10-16 01:25:05 -07001330
Eric Biggersc93d8f82019-07-22 09:26:24 -07001331 if (pos + len > inode->i_size && !verity) {
Jan Karab9a42072009-12-08 21:24:33 -05001332 ext4_truncate_failed_write(inode);
Theodore Ts'ode9a55b2009-06-14 17:45:34 -04001333 /*
Jan Karaffacfa72009-07-13 16:22:22 -04001334 * If truncate failed early the inode might still be
Aneesh Kumar K.Vf8514082009-06-05 00:56:49 -04001335 * on the orphan list; we need to make sure the inode
1336 * is removed from the orphan list in that case.
1337 */
1338 if (inode->i_nlink)
1339 ext4_orphan_del(NULL, inode);
1340 }
1341
Nick Pigginbfc1af62007-10-16 01:25:05 -07001342 return ret ? ret : copied;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001343}
1344
Theodore Ts'ob90197b2015-10-15 10:29:05 -04001345/*
1346 * This is a private version of page_zero_new_buffers() which doesn't
1347 * set the buffer to be dirty, since in data=journalled mode we need
1348 * to call ext4_handle_dirty_metadata() instead.
1349 */
Jan Kara3b136492017-01-27 14:35:38 -05001350static void ext4_journalled_zero_new_buffers(handle_t *handle,
Jan Kara188c2992021-08-16 11:57:04 +02001351 struct inode *inode,
Jan Kara3b136492017-01-27 14:35:38 -05001352 struct page *page,
1353 unsigned from, unsigned to)
Theodore Ts'ob90197b2015-10-15 10:29:05 -04001354{
1355 unsigned int block_start = 0, block_end;
1356 struct buffer_head *head, *bh;
1357
1358 bh = head = page_buffers(page);
1359 do {
1360 block_end = block_start + bh->b_size;
1361 if (buffer_new(bh)) {
1362 if (block_end > from && block_start < to) {
1363 if (!PageUptodate(page)) {
1364 unsigned start, size;
1365
1366 start = max(from, block_start);
1367 size = min(to, block_end) - start;
1368
1369 zero_user(page, start, size);
Jan Kara188c2992021-08-16 11:57:04 +02001370 write_end_fn(handle, inode, bh);
Theodore Ts'ob90197b2015-10-15 10:29:05 -04001371 }
1372 clear_buffer_new(bh);
1373 }
1374 }
1375 block_start = block_end;
1376 bh = bh->b_this_page;
1377 } while (bh != head);
1378}
1379
Nick Pigginbfc1af62007-10-16 01:25:05 -07001380static int ext4_journalled_write_end(struct file *file,
Theodore Ts'ode9a55b2009-06-14 17:45:34 -04001381 struct address_space *mapping,
1382 loff_t pos, unsigned len, unsigned copied,
1383 struct page *page, void *fsdata)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001384{
Mingming Cao617ba132006-10-11 01:20:53 -07001385 handle_t *handle = ext4_journal_current_handle();
Nick Pigginbfc1af62007-10-16 01:25:05 -07001386 struct inode *inode = mapping->host;
Xiaoguang Wang05726392015-02-12 23:00:17 -05001387 loff_t old_size = inode->i_size;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001388 int ret = 0, ret2;
1389 int partial = 0;
Nick Pigginbfc1af62007-10-16 01:25:05 -07001390 unsigned from, to;
Dmitry Monakhov4631dbf2014-08-23 17:48:28 -04001391 int size_changed = 0;
Eric Biggersc93d8f82019-07-22 09:26:24 -07001392 bool verity = ext4_verity_in_progress(inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001393
Theodore Ts'o9bffad12009-06-17 11:48:11 -04001394 trace_ext4_journalled_write_end(inode, pos, len, copied);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001395 from = pos & (PAGE_SIZE - 1);
Nick Pigginbfc1af62007-10-16 01:25:05 -07001396 to = from + len;
1397
Curt Wohlgemuth441c8502011-08-13 11:25:18 -04001398 BUG_ON(!ext4_handle_valid(handle));
1399
Zhang Yi6984aef2021-07-16 20:20:23 +08001400 if (ext4_has_inline_data(inode))
1401 return ext4_write_inline_data_end(inode, pos, len, copied, page);
1402
1403 if (unlikely(copied < len) && !PageUptodate(page)) {
Jan Kara3b136492017-01-27 14:35:38 -05001404 copied = 0;
Jan Kara188c2992021-08-16 11:57:04 +02001405 ext4_journalled_zero_new_buffers(handle, inode, page, from, to);
Jan Kara3b136492017-01-27 14:35:38 -05001406 } else {
1407 if (unlikely(copied < len))
Jan Kara188c2992021-08-16 11:57:04 +02001408 ext4_journalled_zero_new_buffers(handle, inode, page,
Jan Kara3b136492017-01-27 14:35:38 -05001409 from + copied, to);
Jan Kara188c2992021-08-16 11:57:04 +02001410 ret = ext4_walk_page_buffers(handle, inode, page_buffers(page),
1411 from, from + copied, &partial,
Jan Kara3b136492017-01-27 14:35:38 -05001412 write_end_fn);
Tao Ma3fdcfb62012-12-10 14:05:57 -05001413 if (!partial)
1414 SetPageUptodate(page);
1415 }
Eric Biggersc93d8f82019-07-22 09:26:24 -07001416 if (!verity)
1417 size_changed = ext4_update_inode_size(inode, pos + copied);
Theodore Ts'o19f5fb72010-01-24 14:34:07 -05001418 ext4_set_inode_state(inode, EXT4_STATE_JDATA);
Jan Kara2d859db2011-07-26 09:07:11 -04001419 EXT4_I(inode)->i_datasync_tid = handle->h_transaction->t_tid;
Dmitry Monakhov4631dbf2014-08-23 17:48:28 -04001420 unlock_page(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001421 put_page(page);
Dmitry Monakhov4631dbf2014-08-23 17:48:28 -04001422
Eric Biggersc93d8f82019-07-22 09:26:24 -07001423 if (old_size < pos && !verity)
Xiaoguang Wang05726392015-02-12 23:00:17 -05001424 pagecache_isize_extended(inode, old_size, pos);
1425
Zhang Yi6984aef2021-07-16 20:20:23 +08001426 if (size_changed) {
Mingming Cao617ba132006-10-11 01:20:53 -07001427 ret2 = ext4_mark_inode_dirty(handle, inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001428 if (!ret)
1429 ret = ret2;
1430 }
Nick Pigginbfc1af62007-10-16 01:25:05 -07001431
Eric Biggersc93d8f82019-07-22 09:26:24 -07001432 if (pos + len > inode->i_size && !verity && ext4_can_truncate(inode))
Aneesh Kumar K.Vf8514082009-06-05 00:56:49 -04001433 /* if we have allocated more blocks and copied
1434 * less. We will have blocks allocated outside
1435 * inode->i_size. So truncate them
1436 */
1437 ext4_orphan_add(handle, inode);
1438
Mingming Cao617ba132006-10-11 01:20:53 -07001439 ret2 = ext4_journal_stop(handle);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001440 if (!ret)
1441 ret = ret2;
Eric Biggersc93d8f82019-07-22 09:26:24 -07001442 if (pos + len > inode->i_size && !verity) {
Jan Karab9a42072009-12-08 21:24:33 -05001443 ext4_truncate_failed_write(inode);
Theodore Ts'ode9a55b2009-06-14 17:45:34 -04001444 /*
Jan Karaffacfa72009-07-13 16:22:22 -04001445 * If truncate failed early the inode might still be
Aneesh Kumar K.Vf8514082009-06-05 00:56:49 -04001446 * on the orphan list; we need to make sure the inode
1447 * is removed from the orphan list in that case.
1448 */
1449 if (inode->i_nlink)
1450 ext4_orphan_del(NULL, inode);
1451 }
Nick Pigginbfc1af62007-10-16 01:25:05 -07001452
1453 return ret ? ret : copied;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001454}
Mingming Caod2a17632008-07-14 17:52:37 -04001455
Theodore Ts'o9d0be502010-01-01 02:41:30 -05001456/*
Eric Whitneyc27e43a2015-06-21 21:37:05 -04001457 * Reserve space for a single cluster
Theodore Ts'o9d0be502010-01-01 02:41:30 -05001458 */
Eric Whitneyc27e43a2015-06-21 21:37:05 -04001459static int ext4_da_reserve_space(struct inode *inode)
Mingming Caod2a17632008-07-14 17:52:37 -04001460{
Mingming Cao60e58e02009-01-22 18:13:05 +01001461 struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb);
Theodore Ts'o0637c6f2009-12-30 14:20:45 -05001462 struct ext4_inode_info *ei = EXT4_I(inode);
Christoph Hellwig5dd40562010-03-03 09:05:00 -05001463 int ret;
Mingming Caod2a17632008-07-14 17:52:37 -04001464
Mingming Cao60e58e02009-01-22 18:13:05 +01001465 /*
Eric Sandeen72b8ab92010-05-16 11:00:00 -04001466 * We will charge metadata quota at writeout time; this saves
1467 * us from metadata over-estimation, though we may go over by
1468 * a small amount in the end. Here we just reserve for data.
Mingming Cao60e58e02009-01-22 18:13:05 +01001469 */
Aditya Kali7b415bf2011-09-09 19:04:51 -04001470 ret = dquot_reserve_block(inode, EXT4_C2B(sbi, 1));
Christoph Hellwig5dd40562010-03-03 09:05:00 -05001471 if (ret)
1472 return ret;
Theodore Ts'o03179fe2012-07-23 00:00:20 -04001473
Theodore Ts'o03179fe2012-07-23 00:00:20 -04001474 spin_lock(&ei->i_block_reservation_lock);
Theodore Ts'o71d4f7d2014-07-15 06:02:38 -04001475 if (ext4_claim_free_clusters(sbi, 1, 0)) {
Theodore Ts'o03179fe2012-07-23 00:00:20 -04001476 spin_unlock(&ei->i_block_reservation_lock);
Theodore Ts'o03179fe2012-07-23 00:00:20 -04001477 dquot_release_reservation_block(inode, EXT4_C2B(sbi, 1));
Mingming Caod2a17632008-07-14 17:52:37 -04001478 return -ENOSPC;
1479 }
Theodore Ts'o9d0be502010-01-01 02:41:30 -05001480 ei->i_reserved_data_blocks++;
Eric Whitneyc27e43a2015-06-21 21:37:05 -04001481 trace_ext4_da_reserve_space(inode);
Theodore Ts'o0637c6f2009-12-30 14:20:45 -05001482 spin_unlock(&ei->i_block_reservation_lock);
Dmitry Monakhov39bc6802009-12-10 16:36:27 +00001483
Mingming Caod2a17632008-07-14 17:52:37 -04001484 return 0; /* success */
1485}
1486
Eric Whitneyf4567672018-10-01 14:33:24 -04001487void ext4_da_release_space(struct inode *inode, int to_free)
Mingming Caod2a17632008-07-14 17:52:37 -04001488{
1489 struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb);
Theodore Ts'o0637c6f2009-12-30 14:20:45 -05001490 struct ext4_inode_info *ei = EXT4_I(inode);
Mingming Caod2a17632008-07-14 17:52:37 -04001491
Mingming Caocd213222008-08-19 22:16:59 -04001492 if (!to_free)
1493 return; /* Nothing to release, exit */
1494
Mingming Caod2a17632008-07-14 17:52:37 -04001495 spin_lock(&EXT4_I(inode)->i_block_reservation_lock);
Mingming Caocd213222008-08-19 22:16:59 -04001496
Li Zefan5a58ec872010-05-17 02:00:00 -04001497 trace_ext4_da_release_space(inode, to_free);
Theodore Ts'o0637c6f2009-12-30 14:20:45 -05001498 if (unlikely(to_free > ei->i_reserved_data_blocks)) {
Mingming Caocd213222008-08-19 22:16:59 -04001499 /*
Theodore Ts'o0637c6f2009-12-30 14:20:45 -05001500 * if there aren't enough reserved blocks, then the
1501 * counter is messed up somewhere. Since this
1502 * function is called from invalidate page, it's
1503 * harmless to return without any action.
Mingming Caocd213222008-08-19 22:16:59 -04001504 */
Theodore Ts'o8de5c322013-02-14 15:11:41 -05001505 ext4_warning(inode->i_sb, "ext4_da_release_space: "
Theodore Ts'o0637c6f2009-12-30 14:20:45 -05001506 "ino %lu, to_free %d with only %d reserved "
Theodore Ts'o1084f252012-03-19 23:13:43 -04001507 "data blocks", inode->i_ino, to_free,
Theodore Ts'o0637c6f2009-12-30 14:20:45 -05001508 ei->i_reserved_data_blocks);
1509 WARN_ON(1);
1510 to_free = ei->i_reserved_data_blocks;
1511 }
1512 ei->i_reserved_data_blocks -= to_free;
1513
Eric Sandeen72b8ab92010-05-16 11:00:00 -04001514 /* update fs dirty data blocks counter */
Theodore Ts'o57042652011-09-09 18:56:51 -04001515 percpu_counter_sub(&sbi->s_dirtyclusters_counter, to_free);
Mingming Caod2a17632008-07-14 17:52:37 -04001516
Mingming Caod2a17632008-07-14 17:52:37 -04001517 spin_unlock(&EXT4_I(inode)->i_block_reservation_lock);
Mingming Cao60e58e02009-01-22 18:13:05 +01001518
Aditya Kali7b415bf2011-09-09 19:04:51 -04001519 dquot_release_reservation_block(inode, EXT4_C2B(sbi, to_free));
Mingming Caod2a17632008-07-14 17:52:37 -04001520}
1521
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001522/*
Alex Tomas64769242008-07-11 19:27:31 -04001523 * Delayed allocation stuff
1524 */
1525
Jan Kara4e7ea812013-06-04 13:17:40 -04001526struct mpage_da_data {
1527 struct inode *inode;
1528 struct writeback_control *wbc;
Jan Kara6b523df2013-06-04 13:21:11 -04001529
Jan Kara4e7ea812013-06-04 13:17:40 -04001530 pgoff_t first_page; /* The first page to write */
1531 pgoff_t next_page; /* Current page to examine */
1532 pgoff_t last_page; /* Last page to examine */
Aneesh Kumar K.V791b7f02009-01-05 21:50:43 -05001533 /*
Jan Kara4e7ea812013-06-04 13:17:40 -04001534 * Extent to map - this can be after first_page because that can be
1535 * fully mapped. We somewhat abuse m_flags to store whether the extent
1536 * is delalloc or unwritten.
Aneesh Kumar K.V791b7f02009-01-05 21:50:43 -05001537 */
Jan Kara4e7ea812013-06-04 13:17:40 -04001538 struct ext4_map_blocks map;
1539 struct ext4_io_submit io_submit; /* IO submission data */
Jan Karadddbd6a2017-04-30 18:29:10 -04001540 unsigned int do_map:1;
Jan Kara6b8ed622020-05-25 10:12:15 +02001541 unsigned int scanned_until_end:1;
Jan Kara4e7ea812013-06-04 13:17:40 -04001542};
Alex Tomas64769242008-07-11 19:27:31 -04001543
Jan Kara4e7ea812013-06-04 13:17:40 -04001544static void mpage_release_unused_pages(struct mpage_da_data *mpd,
1545 bool invalidate)
Aneesh Kumar K.Vc4a0c462008-08-19 21:08:18 -04001546{
1547 int nr_pages, i;
1548 pgoff_t index, end;
1549 struct pagevec pvec;
1550 struct inode *inode = mpd->inode;
1551 struct address_space *mapping = inode->i_mapping;
Jan Kara4e7ea812013-06-04 13:17:40 -04001552
1553 /* This is necessary when next_page == 0. */
1554 if (mpd->first_page >= mpd->next_page)
1555 return;
Aneesh Kumar K.Vc4a0c462008-08-19 21:08:18 -04001556
Jan Kara6b8ed622020-05-25 10:12:15 +02001557 mpd->scanned_until_end = 0;
Curt Wohlgemuthc7f59382011-02-26 12:27:52 -05001558 index = mpd->first_page;
1559 end = mpd->next_page - 1;
Jan Kara4e7ea812013-06-04 13:17:40 -04001560 if (invalidate) {
1561 ext4_lblk_t start, last;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001562 start = index << (PAGE_SHIFT - inode->i_blkbits);
1563 last = end << (PAGE_SHIFT - inode->i_blkbits);
Jan Kara4e7ea812013-06-04 13:17:40 -04001564 ext4_es_remove_extent(inode, start, last - start + 1);
1565 }
Zheng Liu51865fd2012-11-08 21:57:32 -05001566
Mel Gorman86679822017-11-15 17:37:52 -08001567 pagevec_init(&pvec);
Aneesh Kumar K.Vc4a0c462008-08-19 21:08:18 -04001568 while (index <= end) {
Jan Kara397162f2017-09-06 16:21:43 -07001569 nr_pages = pagevec_lookup_range(&pvec, mapping, &index, end);
Aneesh Kumar K.Vc4a0c462008-08-19 21:08:18 -04001570 if (nr_pages == 0)
1571 break;
1572 for (i = 0; i < nr_pages; i++) {
1573 struct page *page = pvec.pages[i];
Jan Kara2b85a612017-09-06 16:21:30 -07001574
Aneesh Kumar K.Vc4a0c462008-08-19 21:08:18 -04001575 BUG_ON(!PageLocked(page));
1576 BUG_ON(PageWriteback(page));
Jan Kara4e7ea812013-06-04 13:17:40 -04001577 if (invalidate) {
wangguang4e800c02016-09-15 11:32:46 -04001578 if (page_mapped(page))
1579 clear_page_dirty_for_io(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001580 block_invalidatepage(page, 0, PAGE_SIZE);
Jan Kara4e7ea812013-06-04 13:17:40 -04001581 ClearPageUptodate(page);
1582 }
Aneesh Kumar K.Vc4a0c462008-08-19 21:08:18 -04001583 unlock_page(page);
1584 }
Jan Kara9b1d09982010-03-03 16:19:32 -05001585 pagevec_release(&pvec);
Aneesh Kumar K.Vc4a0c462008-08-19 21:08:18 -04001586 }
Aneesh Kumar K.Vc4a0c462008-08-19 21:08:18 -04001587}
1588
Aneesh Kumar K.Vdf222912008-09-08 23:05:34 -04001589static void ext4_print_free_blocks(struct inode *inode)
1590{
1591 struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb);
Theodore Ts'o92b97812012-03-19 23:41:49 -04001592 struct super_block *sb = inode->i_sb;
Lukas Czernerf78ee70d2013-04-03 23:33:30 -04001593 struct ext4_inode_info *ei = EXT4_I(inode);
Theodore Ts'o92b97812012-03-19 23:41:49 -04001594
1595 ext4_msg(sb, KERN_CRIT, "Total free blocks count %lld",
Theodore Ts'o5dee5432011-09-09 19:10:51 -04001596 EXT4_C2B(EXT4_SB(inode->i_sb),
Lukas Czernerf78ee70d2013-04-03 23:33:30 -04001597 ext4_count_free_clusters(sb)));
Theodore Ts'o92b97812012-03-19 23:41:49 -04001598 ext4_msg(sb, KERN_CRIT, "Free/Dirty block details");
1599 ext4_msg(sb, KERN_CRIT, "free_blocks=%lld",
Lukas Czernerf78ee70d2013-04-03 23:33:30 -04001600 (long long) EXT4_C2B(EXT4_SB(sb),
Theodore Ts'o57042652011-09-09 18:56:51 -04001601 percpu_counter_sum(&sbi->s_freeclusters_counter)));
Theodore Ts'o92b97812012-03-19 23:41:49 -04001602 ext4_msg(sb, KERN_CRIT, "dirty_blocks=%lld",
Lukas Czernerf78ee70d2013-04-03 23:33:30 -04001603 (long long) EXT4_C2B(EXT4_SB(sb),
Aditya Kali7b415bf2011-09-09 19:04:51 -04001604 percpu_counter_sum(&sbi->s_dirtyclusters_counter)));
Theodore Ts'o92b97812012-03-19 23:41:49 -04001605 ext4_msg(sb, KERN_CRIT, "Block reservation details");
1606 ext4_msg(sb, KERN_CRIT, "i_reserved_data_blocks=%u",
Lukas Czernerf78ee70d2013-04-03 23:33:30 -04001607 ei->i_reserved_data_blocks);
Aneesh Kumar K.Vdf222912008-09-08 23:05:34 -04001608 return;
1609}
1610
Jan Kara188c2992021-08-16 11:57:04 +02001611static int ext4_bh_delay_or_unwritten(handle_t *handle, struct inode *inode,
1612 struct buffer_head *bh)
Aneesh Kumar K.V29fa89d2009-05-12 16:30:27 -04001613{
Aneesh Kumar K.Vc364b222009-06-14 17:57:10 -04001614 return (buffer_delay(bh) || buffer_unwritten(bh)) && buffer_dirty(bh);
Aneesh Kumar K.V29fa89d2009-05-12 16:30:27 -04001615}
1616
Alex Tomas64769242008-07-11 19:27:31 -04001617/*
Eric Whitney0b02f4c2018-10-01 14:19:37 -04001618 * ext4_insert_delayed_block - adds a delayed block to the extents status
1619 * tree, incrementing the reserved cluster/block
1620 * count or making a pending reservation
1621 * where needed
1622 *
1623 * @inode - file containing the newly added block
1624 * @lblk - logical block to be added
1625 *
1626 * Returns 0 on success, negative error code on failure.
1627 */
1628static int ext4_insert_delayed_block(struct inode *inode, ext4_lblk_t lblk)
1629{
1630 struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb);
1631 int ret;
1632 bool allocated = false;
Jeffle Xu6fed8392021-08-23 14:13:58 +08001633 bool reserved = false;
Eric Whitney0b02f4c2018-10-01 14:19:37 -04001634
1635 /*
1636 * If the cluster containing lblk is shared with a delayed,
1637 * written, or unwritten extent in a bigalloc file system, it's
1638 * already been accounted for and does not need to be reserved.
1639 * A pending reservation must be made for the cluster if it's
1640 * shared with a written or unwritten extent and doesn't already
1641 * have one. Written and unwritten extents can be purged from the
1642 * extents status tree if the system is under memory pressure, so
1643 * it's necessary to examine the extent tree if a search of the
1644 * extents status tree doesn't get a match.
1645 */
1646 if (sbi->s_cluster_ratio == 1) {
1647 ret = ext4_da_reserve_space(inode);
1648 if (ret != 0) /* ENOSPC */
1649 goto errout;
Jeffle Xu6fed8392021-08-23 14:13:58 +08001650 reserved = true;
Eric Whitney0b02f4c2018-10-01 14:19:37 -04001651 } else { /* bigalloc */
1652 if (!ext4_es_scan_clu(inode, &ext4_es_is_delonly, lblk)) {
1653 if (!ext4_es_scan_clu(inode,
1654 &ext4_es_is_mapped, lblk)) {
1655 ret = ext4_clu_mapped(inode,
1656 EXT4_B2C(sbi, lblk));
1657 if (ret < 0)
1658 goto errout;
1659 if (ret == 0) {
1660 ret = ext4_da_reserve_space(inode);
1661 if (ret != 0) /* ENOSPC */
1662 goto errout;
Jeffle Xu6fed8392021-08-23 14:13:58 +08001663 reserved = true;
Eric Whitney0b02f4c2018-10-01 14:19:37 -04001664 } else {
1665 allocated = true;
1666 }
1667 } else {
1668 allocated = true;
1669 }
1670 }
1671 }
1672
1673 ret = ext4_es_insert_delayed_block(inode, lblk, allocated);
Jeffle Xu6fed8392021-08-23 14:13:58 +08001674 if (ret && reserved)
1675 ext4_da_release_space(inode, 1);
Eric Whitney0b02f4c2018-10-01 14:19:37 -04001676
1677errout:
1678 return ret;
1679}
1680
1681/*
Aditya Kali5356f2612011-09-09 19:20:51 -04001682 * This function is grabs code from the very beginning of
1683 * ext4_map_blocks, but assumes that the caller is from delayed write
1684 * time. This function looks up the requested blocks and sets the
1685 * buffer delay bit under the protection of i_data_sem.
1686 */
1687static int ext4_da_map_blocks(struct inode *inode, sector_t iblock,
1688 struct ext4_map_blocks *map,
1689 struct buffer_head *bh)
1690{
Zheng Liud100eef2013-02-18 00:29:59 -05001691 struct extent_status es;
Aditya Kali5356f2612011-09-09 19:20:51 -04001692 int retval;
1693 sector_t invalid_block = ~((sector_t) 0xffff);
Dmitry Monakhov921f2662013-03-10 21:01:03 -04001694#ifdef ES_AGGRESSIVE_TEST
1695 struct ext4_map_blocks orig_map;
1696
1697 memcpy(&orig_map, map, sizeof(*map));
1698#endif
Aditya Kali5356f2612011-09-09 19:20:51 -04001699
1700 if (invalid_block < ext4_blocks_count(EXT4_SB(inode->i_sb)->s_es))
1701 invalid_block = ~0;
1702
1703 map->m_flags = 0;
Ritesh Harjani70aa1552020-05-10 11:54:55 +05301704 ext_debug(inode, "max_blocks %u, logical block %lu\n", map->m_len,
Aditya Kali5356f2612011-09-09 19:20:51 -04001705 (unsigned long) map->m_lblk);
Zheng Liud100eef2013-02-18 00:29:59 -05001706
1707 /* Lookup extent status tree firstly */
Theodore Ts'obb5835e2019-08-11 16:32:41 -04001708 if (ext4_es_lookup_extent(inode, iblock, NULL, &es)) {
Zheng Liud100eef2013-02-18 00:29:59 -05001709 if (ext4_es_is_hole(&es)) {
1710 retval = 0;
Lukas Czernerc8b459f2014-05-12 12:55:07 -04001711 down_read(&EXT4_I(inode)->i_data_sem);
Zheng Liud100eef2013-02-18 00:29:59 -05001712 goto add_delayed;
1713 }
1714
1715 /*
Eric Whitney3eda41d2021-10-12 13:19:01 -04001716 * Delayed extent could be allocated by fallocate.
1717 * So we need to check it.
Zheng Liud100eef2013-02-18 00:29:59 -05001718 */
Eric Whitney3eda41d2021-10-12 13:19:01 -04001719 if (ext4_es_is_delayed(&es) && !ext4_es_is_unwritten(&es)) {
1720 map_bh(bh, inode->i_sb, invalid_block);
1721 set_buffer_new(bh);
1722 set_buffer_delay(bh);
Zheng Liud100eef2013-02-18 00:29:59 -05001723 return 0;
1724 }
1725
1726 map->m_pblk = ext4_es_pblock(&es) + iblock - es.es_lblk;
1727 retval = es.es_len - (iblock - es.es_lblk);
1728 if (retval > map->m_len)
1729 retval = map->m_len;
1730 map->m_len = retval;
1731 if (ext4_es_is_written(&es))
1732 map->m_flags |= EXT4_MAP_MAPPED;
1733 else if (ext4_es_is_unwritten(&es))
1734 map->m_flags |= EXT4_MAP_UNWRITTEN;
1735 else
Arnd Bergmann1e83bc82019-04-07 12:24:43 -04001736 BUG();
Zheng Liud100eef2013-02-18 00:29:59 -05001737
Dmitry Monakhov921f2662013-03-10 21:01:03 -04001738#ifdef ES_AGGRESSIVE_TEST
1739 ext4_map_blocks_es_recheck(NULL, inode, map, &orig_map, 0);
1740#endif
Zheng Liud100eef2013-02-18 00:29:59 -05001741 return retval;
1742 }
1743
Aditya Kali5356f2612011-09-09 19:20:51 -04001744 /*
1745 * Try to see if we can get the block without requesting a new
1746 * file system block.
1747 */
Lukas Czernerc8b459f2014-05-12 12:55:07 -04001748 down_read(&EXT4_I(inode)->i_data_sem);
Jan Karacbd75842014-11-25 11:41:49 -05001749 if (ext4_has_inline_data(inode))
Tao Ma9c3569b2012-12-10 14:05:57 -05001750 retval = 0;
Jan Karacbd75842014-11-25 11:41:49 -05001751 else if (ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS))
Zheng Liu2f8e0a72014-11-25 11:44:37 -05001752 retval = ext4_ext_map_blocks(NULL, inode, map, 0);
Aditya Kali5356f2612011-09-09 19:20:51 -04001753 else
Zheng Liu2f8e0a72014-11-25 11:44:37 -05001754 retval = ext4_ind_map_blocks(NULL, inode, map, 0);
Aditya Kali5356f2612011-09-09 19:20:51 -04001755
Zheng Liud100eef2013-02-18 00:29:59 -05001756add_delayed:
Aditya Kali5356f2612011-09-09 19:20:51 -04001757 if (retval == 0) {
Zheng Liuf7fec032013-02-18 00:28:47 -05001758 int ret;
Eric Whitneyad431022018-10-01 14:10:39 -04001759
Aditya Kali5356f2612011-09-09 19:20:51 -04001760 /*
1761 * XXX: __block_prepare_write() unmaps passed block,
1762 * is it OK?
1763 */
Aditya Kali5356f2612011-09-09 19:20:51 -04001764
Eric Whitney0b02f4c2018-10-01 14:19:37 -04001765 ret = ext4_insert_delayed_block(inode, map->m_lblk);
1766 if (ret != 0) {
Zheng Liuf7fec032013-02-18 00:28:47 -05001767 retval = ret;
Zheng Liu51865fd2012-11-08 21:57:32 -05001768 goto out_unlock;
Zheng Liuf7fec032013-02-18 00:28:47 -05001769 }
Zheng Liu51865fd2012-11-08 21:57:32 -05001770
Aditya Kali5356f2612011-09-09 19:20:51 -04001771 map_bh(bh, inode->i_sb, invalid_block);
1772 set_buffer_new(bh);
1773 set_buffer_delay(bh);
Zheng Liuf7fec032013-02-18 00:28:47 -05001774 } else if (retval > 0) {
1775 int ret;
Theodore Ts'o3be78c72013-08-16 21:22:41 -04001776 unsigned int status;
Zheng Liuf7fec032013-02-18 00:28:47 -05001777
Zheng Liu44fb851d2013-07-29 12:51:42 -04001778 if (unlikely(retval != map->m_len)) {
1779 ext4_warning(inode->i_sb,
1780 "ES len assertion failed for inode "
1781 "%lu: retval %d != map->m_len %d",
1782 inode->i_ino, retval, map->m_len);
1783 WARN_ON(1);
Dmitry Monakhov921f2662013-03-10 21:01:03 -04001784 }
Dmitry Monakhov921f2662013-03-10 21:01:03 -04001785
Zheng Liuf7fec032013-02-18 00:28:47 -05001786 status = map->m_flags & EXT4_MAP_UNWRITTEN ?
1787 EXTENT_STATUS_UNWRITTEN : EXTENT_STATUS_WRITTEN;
1788 ret = ext4_es_insert_extent(inode, map->m_lblk, map->m_len,
1789 map->m_pblk, status);
1790 if (ret != 0)
1791 retval = ret;
Aditya Kali5356f2612011-09-09 19:20:51 -04001792 }
1793
1794out_unlock:
1795 up_read((&EXT4_I(inode)->i_data_sem));
1796
1797 return retval;
1798}
1799
1800/*
Seunghun Leed91bd2c2014-09-01 22:15:30 -04001801 * This is a special get_block_t callback which is used by
Theodore Ts'ob920c752009-05-14 00:54:29 -04001802 * ext4_da_write_begin(). It will either return mapped block or
1803 * reserve space for a single block.
Aneesh Kumar K.V29fa89d2009-05-12 16:30:27 -04001804 *
1805 * For delayed buffer_head we have BH_Mapped, BH_New, BH_Delay set.
1806 * We also have b_blocknr = -1 and b_bdev initialized properly
1807 *
1808 * For unwritten buffer_head we have BH_Mapped, BH_New, BH_Unwritten set.
1809 * We also have b_blocknr = physicalblock mapping unwritten extent and b_bdev
1810 * initialized properly.
Alex Tomas64769242008-07-11 19:27:31 -04001811 */
Tao Ma9c3569b2012-12-10 14:05:57 -05001812int ext4_da_get_block_prep(struct inode *inode, sector_t iblock,
1813 struct buffer_head *bh, int create)
Alex Tomas64769242008-07-11 19:27:31 -04001814{
Theodore Ts'o2ed88682010-05-16 20:00:00 -04001815 struct ext4_map_blocks map;
Alex Tomas64769242008-07-11 19:27:31 -04001816 int ret = 0;
1817
1818 BUG_ON(create == 0);
Theodore Ts'o2ed88682010-05-16 20:00:00 -04001819 BUG_ON(bh->b_size != inode->i_sb->s_blocksize);
1820
1821 map.m_lblk = iblock;
1822 map.m_len = 1;
Alex Tomas64769242008-07-11 19:27:31 -04001823
1824 /*
1825 * first, we need to know whether the block is allocated already
1826 * preallocated blocks are unmapped but should treated
1827 * the same as allocated blocks.
1828 */
Aditya Kali5356f2612011-09-09 19:20:51 -04001829 ret = ext4_da_map_blocks(inode, iblock, &map, bh);
1830 if (ret <= 0)
Theodore Ts'o2ed88682010-05-16 20:00:00 -04001831 return ret;
Alex Tomas64769242008-07-11 19:27:31 -04001832
Theodore Ts'o2ed88682010-05-16 20:00:00 -04001833 map_bh(bh, inode->i_sb, map.m_pblk);
Jan Karaed8ad832016-02-19 00:18:25 -05001834 ext4_update_bh_state(bh, map.m_flags);
Theodore Ts'o2ed88682010-05-16 20:00:00 -04001835
1836 if (buffer_unwritten(bh)) {
1837 /* A delayed write to unwritten bh should be marked
1838 * new and mapped. Mapped ensures that we don't do
1839 * get_block multiple times when we write to the same
1840 * offset and new ensures that we do proper zero out
1841 * for partial write.
1842 */
1843 set_buffer_new(bh);
Theodore Ts'oc8205632011-04-10 22:30:07 -04001844 set_buffer_mapped(bh);
Theodore Ts'o2ed88682010-05-16 20:00:00 -04001845 }
1846 return 0;
Alex Tomas64769242008-07-11 19:27:31 -04001847}
Mingming Cao61628a32008-07-11 19:27:31 -04001848
Aneesh Kumar K.V62e086b2009-06-14 17:59:34 -04001849static int __ext4_journalled_writepage(struct page *page,
Aneesh Kumar K.V62e086b2009-06-14 17:59:34 -04001850 unsigned int len)
1851{
1852 struct address_space *mapping = page->mapping;
1853 struct inode *inode = mapping->host;
Aneesh Kumar K.V62e086b2009-06-14 17:59:34 -04001854 handle_t *handle = NULL;
Tao Ma3fdcfb62012-12-10 14:05:57 -05001855 int ret = 0, err = 0;
1856 int inline_data = ext4_has_inline_data(inode);
1857 struct buffer_head *inode_bh = NULL;
Zhang Yi5c48a7d2021-12-25 17:09:37 +08001858 loff_t size;
Aneesh Kumar K.V62e086b2009-06-14 17:59:34 -04001859
Theodore Ts'ocb20d512010-10-27 21:30:09 -04001860 ClearPageChecked(page);
Tao Ma3fdcfb62012-12-10 14:05:57 -05001861
1862 if (inline_data) {
1863 BUG_ON(page->index != 0);
1864 BUG_ON(len > ext4_get_max_inline_size(inode));
1865 inode_bh = ext4_journalled_write_inline_data(inode, len, page);
1866 if (inode_bh == NULL)
1867 goto out;
Tao Ma3fdcfb62012-12-10 14:05:57 -05001868 }
Theodore Ts'obdf96832015-06-12 23:45:33 -04001869 /*
1870 * We need to release the page lock before we start the
1871 * journal, so grab a reference so the page won't disappear
1872 * out from under us.
1873 */
1874 get_page(page);
Aneesh Kumar K.V62e086b2009-06-14 17:59:34 -04001875 unlock_page(page);
1876
Theodore Ts'o9924a922013-02-08 21:59:22 -05001877 handle = ext4_journal_start(inode, EXT4_HT_WRITE_PAGE,
1878 ext4_writepage_trans_blocks(inode));
Aneesh Kumar K.V62e086b2009-06-14 17:59:34 -04001879 if (IS_ERR(handle)) {
1880 ret = PTR_ERR(handle);
Theodore Ts'obdf96832015-06-12 23:45:33 -04001881 put_page(page);
1882 goto out_no_pagelock;
1883 }
1884 BUG_ON(!ext4_handle_valid(handle));
1885
1886 lock_page(page);
1887 put_page(page);
Zhang Yi5c48a7d2021-12-25 17:09:37 +08001888 size = i_size_read(inode);
1889 if (page->mapping != mapping || page_offset(page) > size) {
Theodore Ts'obdf96832015-06-12 23:45:33 -04001890 /* The page got truncated from under us */
1891 ext4_journal_stop(handle);
1892 ret = 0;
Aneesh Kumar K.V62e086b2009-06-14 17:59:34 -04001893 goto out;
1894 }
1895
Tao Ma3fdcfb62012-12-10 14:05:57 -05001896 if (inline_data) {
Theodore Ts'o362eca72018-07-10 01:07:43 -04001897 ret = ext4_mark_inode_dirty(handle, inode);
Tao Ma3fdcfb62012-12-10 14:05:57 -05001898 } else {
Zhang Yi5c48a7d2021-12-25 17:09:37 +08001899 struct buffer_head *page_bufs = page_buffers(page);
1900
1901 if (page->index == size >> PAGE_SHIFT)
1902 len = size & ~PAGE_MASK;
1903 else
1904 len = PAGE_SIZE;
1905
Jan Kara188c2992021-08-16 11:57:04 +02001906 ret = ext4_walk_page_buffers(handle, inode, page_bufs, 0, len,
1907 NULL, do_journal_get_write_access);
Tao Ma3fdcfb62012-12-10 14:05:57 -05001908
Jan Kara188c2992021-08-16 11:57:04 +02001909 err = ext4_walk_page_buffers(handle, inode, page_bufs, 0, len,
1910 NULL, write_end_fn);
Tao Ma3fdcfb62012-12-10 14:05:57 -05001911 }
Aneesh Kumar K.V62e086b2009-06-14 17:59:34 -04001912 if (ret == 0)
1913 ret = err;
Jan Karab5b18162020-10-27 14:27:51 +01001914 err = ext4_jbd2_inode_add_write(handle, inode, page_offset(page), len);
Mauricio Faria de Oliveiraafb585a2020-10-05 21:48:41 -03001915 if (ret == 0)
1916 ret = err;
Jan Kara2d859db2011-07-26 09:07:11 -04001917 EXT4_I(inode)->i_datasync_tid = handle->h_transaction->t_tid;
Aneesh Kumar K.V62e086b2009-06-14 17:59:34 -04001918 err = ext4_journal_stop(handle);
1919 if (!ret)
1920 ret = err;
1921
Theodore Ts'o19f5fb72010-01-24 14:34:07 -05001922 ext4_set_inode_state(inode, EXT4_STATE_JDATA);
Aneesh Kumar K.V62e086b2009-06-14 17:59:34 -04001923out:
Theodore Ts'obdf96832015-06-12 23:45:33 -04001924 unlock_page(page);
1925out_no_pagelock:
Tao Ma3fdcfb62012-12-10 14:05:57 -05001926 brelse(inode_bh);
Aneesh Kumar K.V62e086b2009-06-14 17:59:34 -04001927 return ret;
1928}
1929
Mingming Cao61628a32008-07-11 19:27:31 -04001930/*
Aneesh Kumar K.V43ce1d22009-06-14 17:58:45 -04001931 * Note that we don't need to start a transaction unless we're journaling data
1932 * because we should have holes filled from ext4_page_mkwrite(). We even don't
1933 * need to file the inode to the transaction's list in ordered mode because if
1934 * we are writing back data added by write(), the inode is already there and if
Lucas De Marchi25985ed2011-03-30 22:57:33 -03001935 * we are writing back data modified via mmap(), no one guarantees in which
Aneesh Kumar K.V43ce1d22009-06-14 17:58:45 -04001936 * transaction the data will hit the disk. In case we are journaling data, we
1937 * cannot start transaction directly because transaction start ranks above page
1938 * lock so we have to do some magic.
1939 *
Theodore Ts'ob920c752009-05-14 00:54:29 -04001940 * This function can get called via...
Theodore Ts'o20970ba2013-06-06 14:00:46 -04001941 * - ext4_writepages after taking page lock (have journal handle)
Theodore Ts'ob920c752009-05-14 00:54:29 -04001942 * - journal_submit_inode_data_buffers (no journal handle)
Artem Bityutskiyf6463b02012-07-25 18:12:04 +03001943 * - shrink_page_list via the kswapd/direct reclaim (no journal handle)
Theodore Ts'ob920c752009-05-14 00:54:29 -04001944 * - grab_page_cache when doing write_begin (have journal handle)
Aneesh Kumar K.V43ce1d22009-06-14 17:58:45 -04001945 *
1946 * We don't do any block allocation in this function. If we have page with
1947 * multiple blocks we need to write those buffer_heads that are mapped. This
1948 * is important for mmaped based write. So if we do with blocksize 1K
1949 * truncate(f, 1024);
1950 * a = mmap(f, 0, 4096);
1951 * a[0] = 'a';
1952 * truncate(f, 4096);
1953 * we have in the page first buffer_head mapped via page_mkwrite call back
Paul Bolle90802ed2011-12-05 13:00:34 +01001954 * but other buffer_heads would be unmapped but dirty (dirty done via the
Aneesh Kumar K.V43ce1d22009-06-14 17:58:45 -04001955 * do_wp_page). So writepage should write the first block. If we modify
1956 * the mmap area beyond 1024 we will again get a page_fault and the
1957 * page_mkwrite callback will do the block allocation and mark the
1958 * buffer_heads mapped.
1959 *
1960 * We redirty the page if we have any buffer_heads that is either delay or
1961 * unwritten in the page.
1962 *
1963 * We can get recursively called as show below.
1964 *
1965 * ext4_writepage() -> kmalloc() -> __alloc_pages() -> page_launder() ->
1966 * ext4_writepage()
1967 *
1968 * But since we don't do any block allocation we should not deadlock.
1969 * Page also have the dirty flag cleared so we don't get recurive page_lock.
Mingming Cao61628a32008-07-11 19:27:31 -04001970 */
Aneesh Kumar K.V43ce1d22009-06-14 17:58:45 -04001971static int ext4_writepage(struct page *page,
Aneesh Kumar K.V62e086b2009-06-14 17:59:34 -04001972 struct writeback_control *wbc)
Alex Tomas64769242008-07-11 19:27:31 -04001973{
Jan Karaf8bec372013-01-28 12:55:08 -05001974 int ret = 0;
Mingming Cao61628a32008-07-11 19:27:31 -04001975 loff_t size;
Theodore Ts'o498e5f22008-11-05 00:14:04 -05001976 unsigned int len;
Jiaying Zhang744692d2010-03-04 16:14:02 -05001977 struct buffer_head *page_bufs = NULL;
Mingming Cao61628a32008-07-11 19:27:31 -04001978 struct inode *inode = page->mapping->host;
Jan Kara36ade452013-01-28 09:30:52 -05001979 struct ext4_io_submit io_submit;
Namjae Jeon1c8349a2014-05-12 08:12:25 -04001980 bool keep_towrite = false;
Alex Tomas64769242008-07-11 19:27:31 -04001981
Theodore Ts'o0db1ff22017-02-05 01:28:48 -05001982 if (unlikely(ext4_forced_shutdown(EXT4_SB(inode->i_sb)))) {
yangerkunc2a559b2020-02-26 12:10:02 +08001983 inode->i_mapping->a_ops->invalidatepage(page, 0, PAGE_SIZE);
Theodore Ts'o0db1ff22017-02-05 01:28:48 -05001984 unlock_page(page);
1985 return -EIO;
1986 }
1987
Lukas Czernera9c667f2011-06-06 09:51:52 -04001988 trace_ext4_writepage(page);
Aneesh Kumar K.Vf0e6c982008-07-11 19:27:31 -04001989 size = i_size_read(inode);
Eric Biggersc93d8f82019-07-22 09:26:24 -07001990 if (page->index == size >> PAGE_SHIFT &&
1991 !ext4_verity_in_progress(inode))
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001992 len = size & ~PAGE_MASK;
Aneesh Kumar K.Vf0e6c982008-07-11 19:27:31 -04001993 else
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001994 len = PAGE_SIZE;
Alex Tomas64769242008-07-11 19:27:31 -04001995
Theodore Ts'oa42afc52010-10-27 21:30:09 -04001996 page_bufs = page_buffers(page);
Aneesh Kumar K.Vc364b222009-06-14 17:57:10 -04001997 /*
Jan Karafe386132013-01-28 21:06:42 -05001998 * We cannot do block allocation or other extent handling in this
1999 * function. If there are buffers needing that, we have to redirty
2000 * the page. But we may reach here when we do a journal commit via
2001 * journal_submit_inode_data_buffers() and in that case we must write
2002 * allocated buffers to achieve data=ordered mode guarantees.
Theodore Ts'occcd1472015-10-03 10:49:23 -04002003 *
2004 * Also, if there is only one buffer per page (the fs block
2005 * size == the page size), if one buffer needs block
2006 * allocation or needs to modify the extent tree to clear the
2007 * unwritten flag, we know that the page can't be written at
2008 * all, so we might as well refuse the write immediately.
2009 * Unfortunately if the block size != page size, we can't as
2010 * easily detect this case using ext4_walk_page_buffers(), but
2011 * for the extremely common case, this is an optimization that
2012 * skips a useless round trip through ext4_bio_write_page().
Aneesh Kumar K.Vcd1aac32008-07-11 19:27:31 -04002013 */
Jan Kara188c2992021-08-16 11:57:04 +02002014 if (ext4_walk_page_buffers(NULL, inode, page_bufs, 0, len, NULL,
Tao Maf19d5872012-12-10 14:05:51 -05002015 ext4_bh_delay_or_unwritten)) {
Jan Karaf8bec372013-01-28 12:55:08 -05002016 redirty_page_for_writepage(wbc, page);
Theodore Ts'occcd1472015-10-03 10:49:23 -04002017 if ((current->flags & PF_MEMALLOC) ||
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002018 (inode->i_sb->s_blocksize == PAGE_SIZE)) {
Jan Karafe386132013-01-28 21:06:42 -05002019 /*
2020 * For memory cleaning there's no point in writing only
2021 * some buffers. So just bail out. Warn if we came here
2022 * from direct reclaim.
2023 */
2024 WARN_ON_ONCE((current->flags & (PF_MEMALLOC|PF_KSWAPD))
2025 == PF_MEMALLOC);
Aneesh Kumar K.Vf0e6c982008-07-11 19:27:31 -04002026 unlock_page(page);
2027 return 0;
2028 }
Namjae Jeon1c8349a2014-05-12 08:12:25 -04002029 keep_towrite = true;
Theodore Ts'oa42afc52010-10-27 21:30:09 -04002030 }
Alex Tomas64769242008-07-11 19:27:31 -04002031
Theodore Ts'ocb20d512010-10-27 21:30:09 -04002032 if (PageChecked(page) && ext4_should_journal_data(inode))
Aneesh Kumar K.V43ce1d22009-06-14 17:58:45 -04002033 /*
2034 * It's mmapped pagecache. Add buffers and journal it. There
2035 * doesn't seem much point in redirtying the page here.
2036 */
Wu Fengguang3f0ca302009-11-24 11:15:44 -05002037 return __ext4_journalled_writepage(page, len);
Aneesh Kumar K.V43ce1d22009-06-14 17:58:45 -04002038
Jan Kara97a851e2013-06-04 11:58:58 -04002039 ext4_io_submit_init(&io_submit, wbc);
2040 io_submit.io_end = ext4_init_io_end(inode, GFP_NOFS);
2041 if (!io_submit.io_end) {
2042 redirty_page_for_writepage(wbc, page);
2043 unlock_page(page);
2044 return -ENOMEM;
2045 }
Lei Chenbe993932020-12-11 14:54:24 +08002046 ret = ext4_bio_write_page(&io_submit, page, len, keep_towrite);
Jan Kara36ade452013-01-28 09:30:52 -05002047 ext4_io_submit(&io_submit);
Jan Kara97a851e2013-06-04 11:58:58 -04002048 /* Drop io_end reference we got from init */
2049 ext4_put_io_end_defer(io_submit.io_end);
Alex Tomas64769242008-07-11 19:27:31 -04002050 return ret;
2051}
2052
Jan Kara5f1132b2013-08-17 10:02:33 -04002053static int mpage_submit_page(struct mpage_da_data *mpd, struct page *page)
2054{
2055 int len;
Jan Karaa056bda2017-05-26 17:45:45 -04002056 loff_t size;
Jan Kara5f1132b2013-08-17 10:02:33 -04002057 int err;
2058
2059 BUG_ON(page->index != mpd->first_page);
Jan Karaa056bda2017-05-26 17:45:45 -04002060 clear_page_dirty_for_io(page);
2061 /*
2062 * We have to be very careful here! Nothing protects writeback path
2063 * against i_size changes and the page can be writeably mapped into
2064 * page tables. So an application can be growing i_size and writing
2065 * data through mmap while writeback runs. clear_page_dirty_for_io()
2066 * write-protects our page in page tables and the page cannot get
2067 * written to again until we release page lock. So only after
2068 * clear_page_dirty_for_io() we are safe to sample i_size for
2069 * ext4_bio_write_page() to zero-out tail of the written page. We rely
2070 * on the barrier provided by TestClearPageDirty in
2071 * clear_page_dirty_for_io() to make sure i_size is really sampled only
2072 * after page tables are updated.
2073 */
2074 size = i_size_read(mpd->inode);
Eric Biggersc93d8f82019-07-22 09:26:24 -07002075 if (page->index == size >> PAGE_SHIFT &&
2076 !ext4_verity_in_progress(mpd->inode))
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002077 len = size & ~PAGE_MASK;
Jan Kara5f1132b2013-08-17 10:02:33 -04002078 else
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002079 len = PAGE_SIZE;
Lei Chenbe993932020-12-11 14:54:24 +08002080 err = ext4_bio_write_page(&mpd->io_submit, page, len, false);
Jan Kara5f1132b2013-08-17 10:02:33 -04002081 if (!err)
2082 mpd->wbc->nr_to_write--;
2083 mpd->first_page++;
2084
2085 return err;
2086}
2087
Ritesh Harjani6db07462020-05-10 11:54:51 +05302088#define BH_FLAGS (BIT(BH_Unwritten) | BIT(BH_Delay))
Jan Kara4e7ea812013-06-04 13:17:40 -04002089
Mingming Cao61628a32008-07-11 19:27:31 -04002090/*
Jan Karafffb2732013-06-04 13:01:11 -04002091 * mballoc gives us at most this number of blocks...
2092 * XXX: That seems to be only a limitation of ext4_mb_normalize_request().
Anatol Pomozov70261f52013-08-28 14:40:12 -04002093 * The rest of mballoc seems to handle chunks up to full group size.
Mingming Cao61628a32008-07-11 19:27:31 -04002094 */
Jan Karafffb2732013-06-04 13:01:11 -04002095#define MAX_WRITEPAGES_EXTENT_LEN 2048
Mingming Cao525f4ed2008-08-19 22:15:58 -04002096
Jan Karafffb2732013-06-04 13:01:11 -04002097/*
Jan Kara4e7ea812013-06-04 13:17:40 -04002098 * mpage_add_bh_to_extent - try to add bh to extent of blocks to map
2099 *
2100 * @mpd - extent of blocks
2101 * @lblk - logical number of the block in the file
Jan Kara09930042013-08-17 09:57:56 -04002102 * @bh - buffer head we want to add to the extent
Jan Kara4e7ea812013-06-04 13:17:40 -04002103 *
Jan Kara09930042013-08-17 09:57:56 -04002104 * The function is used to collect contig. blocks in the same state. If the
2105 * buffer doesn't require mapping for writeback and we haven't started the
2106 * extent of buffers to map yet, the function returns 'true' immediately - the
2107 * caller can write the buffer right away. Otherwise the function returns true
2108 * if the block has been added to the extent, false if the block couldn't be
2109 * added.
Jan Kara4e7ea812013-06-04 13:17:40 -04002110 */
Jan Kara09930042013-08-17 09:57:56 -04002111static bool mpage_add_bh_to_extent(struct mpage_da_data *mpd, ext4_lblk_t lblk,
2112 struct buffer_head *bh)
Jan Kara4e7ea812013-06-04 13:17:40 -04002113{
2114 struct ext4_map_blocks *map = &mpd->map;
2115
Jan Kara09930042013-08-17 09:57:56 -04002116 /* Buffer that doesn't need mapping for writeback? */
2117 if (!buffer_dirty(bh) || !buffer_mapped(bh) ||
2118 (!buffer_delay(bh) && !buffer_unwritten(bh))) {
2119 /* So far no extent to map => we write the buffer right away */
2120 if (map->m_len == 0)
2121 return true;
2122 return false;
2123 }
Jan Kara4e7ea812013-06-04 13:17:40 -04002124
2125 /* First block in the extent? */
2126 if (map->m_len == 0) {
Jan Karadddbd6a2017-04-30 18:29:10 -04002127 /* We cannot map unless handle is started... */
2128 if (!mpd->do_map)
2129 return false;
Jan Kara4e7ea812013-06-04 13:17:40 -04002130 map->m_lblk = lblk;
2131 map->m_len = 1;
Jan Kara09930042013-08-17 09:57:56 -04002132 map->m_flags = bh->b_state & BH_FLAGS;
2133 return true;
Jan Kara4e7ea812013-06-04 13:17:40 -04002134 }
2135
Jan Kara09930042013-08-17 09:57:56 -04002136 /* Don't go larger than mballoc is willing to allocate */
2137 if (map->m_len >= MAX_WRITEPAGES_EXTENT_LEN)
2138 return false;
2139
Jan Kara4e7ea812013-06-04 13:17:40 -04002140 /* Can we merge the block to our big extent? */
2141 if (lblk == map->m_lblk + map->m_len &&
Jan Kara09930042013-08-17 09:57:56 -04002142 (bh->b_state & BH_FLAGS) == map->m_flags) {
Jan Kara4e7ea812013-06-04 13:17:40 -04002143 map->m_len++;
Jan Kara09930042013-08-17 09:57:56 -04002144 return true;
Jan Kara4e7ea812013-06-04 13:17:40 -04002145 }
Jan Kara09930042013-08-17 09:57:56 -04002146 return false;
Jan Kara4e7ea812013-06-04 13:17:40 -04002147}
2148
Jan Kara5f1132b2013-08-17 10:02:33 -04002149/*
2150 * mpage_process_page_bufs - submit page buffers for IO or add them to extent
2151 *
2152 * @mpd - extent of blocks for mapping
2153 * @head - the first buffer in the page
2154 * @bh - buffer we should start processing from
2155 * @lblk - logical number of the block in the file corresponding to @bh
2156 *
2157 * Walk through page buffers from @bh upto @head (exclusive) and either submit
2158 * the page for IO if all buffers in this page were mapped and there's no
2159 * accumulated extent of buffers to map or add buffers in the page to the
2160 * extent of buffers to map. The function returns 1 if the caller can continue
2161 * by processing the next page, 0 if it should stop adding buffers to the
2162 * extent to map because we cannot extend it anymore. It can also return value
2163 * < 0 in case of error during IO submission.
2164 */
2165static int mpage_process_page_bufs(struct mpage_da_data *mpd,
2166 struct buffer_head *head,
2167 struct buffer_head *bh,
2168 ext4_lblk_t lblk)
Jan Kara4e7ea812013-06-04 13:17:40 -04002169{
2170 struct inode *inode = mpd->inode;
Jan Kara5f1132b2013-08-17 10:02:33 -04002171 int err;
Fabian Frederick93407472017-02-27 14:28:32 -08002172 ext4_lblk_t blocks = (i_size_read(inode) + i_blocksize(inode) - 1)
Jan Kara4e7ea812013-06-04 13:17:40 -04002173 >> inode->i_blkbits;
2174
Eric Biggersc93d8f82019-07-22 09:26:24 -07002175 if (ext4_verity_in_progress(inode))
2176 blocks = EXT_MAX_BLOCKS;
2177
Jan Kara4e7ea812013-06-04 13:17:40 -04002178 do {
2179 BUG_ON(buffer_locked(bh));
2180
Jan Kara09930042013-08-17 09:57:56 -04002181 if (lblk >= blocks || !mpage_add_bh_to_extent(mpd, lblk, bh)) {
Jan Kara4e7ea812013-06-04 13:17:40 -04002182 /* Found extent to map? */
2183 if (mpd->map.m_len)
Jan Kara5f1132b2013-08-17 10:02:33 -04002184 return 0;
Jan Karadddbd6a2017-04-30 18:29:10 -04002185 /* Buffer needs mapping and handle is not started? */
2186 if (!mpd->do_map)
2187 return 0;
Jan Kara09930042013-08-17 09:57:56 -04002188 /* Everything mapped so far and we hit EOF */
Jan Kara5f1132b2013-08-17 10:02:33 -04002189 break;
Jan Kara4e7ea812013-06-04 13:17:40 -04002190 }
Jan Kara4e7ea812013-06-04 13:17:40 -04002191 } while (lblk++, (bh = bh->b_this_page) != head);
Jan Kara5f1132b2013-08-17 10:02:33 -04002192 /* So far everything mapped? Submit the page for IO. */
2193 if (mpd->map.m_len == 0) {
2194 err = mpage_submit_page(mpd, head->b_page);
2195 if (err < 0)
2196 return err;
2197 }
Jan Kara6b8ed622020-05-25 10:12:15 +02002198 if (lblk >= blocks) {
2199 mpd->scanned_until_end = 1;
2200 return 0;
2201 }
2202 return 1;
Jan Kara4e7ea812013-06-04 13:17:40 -04002203}
2204
2205/*
Ritesh Harjani2943fdb2019-10-16 13:07:09 +05302206 * mpage_process_page - update page buffers corresponding to changed extent and
2207 * may submit fully mapped page for IO
2208 *
2209 * @mpd - description of extent to map, on return next extent to map
2210 * @m_lblk - logical block mapping.
2211 * @m_pblk - corresponding physical mapping.
2212 * @map_bh - determines on return whether this page requires any further
2213 * mapping or not.
2214 * Scan given page buffers corresponding to changed extent and update buffer
2215 * state according to new extent state.
2216 * We map delalloc buffers to their physical location, clear unwritten bits.
2217 * If the given page is not fully mapped, we update @map to the next extent in
2218 * the given page that needs mapping & return @map_bh as true.
2219 */
2220static int mpage_process_page(struct mpage_da_data *mpd, struct page *page,
2221 ext4_lblk_t *m_lblk, ext4_fsblk_t *m_pblk,
2222 bool *map_bh)
2223{
2224 struct buffer_head *head, *bh;
2225 ext4_io_end_t *io_end = mpd->io_submit.io_end;
2226 ext4_lblk_t lblk = *m_lblk;
2227 ext4_fsblk_t pblock = *m_pblk;
2228 int err = 0;
Ritesh Harjanic8cc8812019-10-16 13:07:10 +05302229 int blkbits = mpd->inode->i_blkbits;
2230 ssize_t io_end_size = 0;
2231 struct ext4_io_end_vec *io_end_vec = ext4_last_io_end_vec(io_end);
Ritesh Harjani2943fdb2019-10-16 13:07:09 +05302232
2233 bh = head = page_buffers(page);
2234 do {
2235 if (lblk < mpd->map.m_lblk)
2236 continue;
2237 if (lblk >= mpd->map.m_lblk + mpd->map.m_len) {
2238 /*
2239 * Buffer after end of mapped extent.
2240 * Find next buffer in the page to map.
2241 */
2242 mpd->map.m_len = 0;
2243 mpd->map.m_flags = 0;
Ritesh Harjanic8cc8812019-10-16 13:07:10 +05302244 io_end_vec->size += io_end_size;
Ritesh Harjani2943fdb2019-10-16 13:07:09 +05302245
Ritesh Harjani2943fdb2019-10-16 13:07:09 +05302246 err = mpage_process_page_bufs(mpd, head, bh, lblk);
2247 if (err > 0)
2248 err = 0;
Ritesh Harjanic8cc8812019-10-16 13:07:10 +05302249 if (!err && mpd->map.m_len && mpd->map.m_lblk > lblk) {
2250 io_end_vec = ext4_alloc_io_end_vec(io_end);
Ritesh Harjani4d06bfb2019-11-06 15:08:09 +05302251 if (IS_ERR(io_end_vec)) {
2252 err = PTR_ERR(io_end_vec);
2253 goto out;
2254 }
Ritesh Harjanid1e18b82020-10-08 20:32:48 +05302255 io_end_vec->offset = (loff_t)mpd->map.m_lblk << blkbits;
Ritesh Harjanic8cc8812019-10-16 13:07:10 +05302256 }
Ritesh Harjani2943fdb2019-10-16 13:07:09 +05302257 *map_bh = true;
2258 goto out;
2259 }
2260 if (buffer_delay(bh)) {
2261 clear_buffer_delay(bh);
2262 bh->b_blocknr = pblock++;
2263 }
2264 clear_buffer_unwritten(bh);
Ritesh Harjanic8cc8812019-10-16 13:07:10 +05302265 io_end_size += (1 << blkbits);
Ritesh Harjani2943fdb2019-10-16 13:07:09 +05302266 } while (lblk++, (bh = bh->b_this_page) != head);
Ritesh Harjanic8cc8812019-10-16 13:07:10 +05302267
2268 io_end_vec->size += io_end_size;
Ritesh Harjani2943fdb2019-10-16 13:07:09 +05302269 *map_bh = false;
2270out:
2271 *m_lblk = lblk;
2272 *m_pblk = pblock;
2273 return err;
2274}
2275
2276/*
Jan Kara4e7ea812013-06-04 13:17:40 -04002277 * mpage_map_buffers - update buffers corresponding to changed extent and
2278 * submit fully mapped pages for IO
2279 *
2280 * @mpd - description of extent to map, on return next extent to map
2281 *
2282 * Scan buffers corresponding to changed extent (we expect corresponding pages
2283 * to be already locked) and update buffer state according to new extent state.
2284 * We map delalloc buffers to their physical location, clear unwritten bits,
Lukas Czerner556615d2014-04-20 23:45:47 -04002285 * and mark buffers as uninit when we perform writes to unwritten extents
Jan Kara4e7ea812013-06-04 13:17:40 -04002286 * and do extent conversion after IO is finished. If the last page is not fully
2287 * mapped, we update @map to the next extent in the last page that needs
2288 * mapping. Otherwise we submit the page for IO.
2289 */
2290static int mpage_map_and_submit_buffers(struct mpage_da_data *mpd)
2291{
2292 struct pagevec pvec;
2293 int nr_pages, i;
2294 struct inode *inode = mpd->inode;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002295 int bpp_bits = PAGE_SHIFT - inode->i_blkbits;
Jan Kara4e7ea812013-06-04 13:17:40 -04002296 pgoff_t start, end;
2297 ext4_lblk_t lblk;
Ritesh Harjani2943fdb2019-10-16 13:07:09 +05302298 ext4_fsblk_t pblock;
Jan Kara4e7ea812013-06-04 13:17:40 -04002299 int err;
Ritesh Harjani2943fdb2019-10-16 13:07:09 +05302300 bool map_bh = false;
Jan Kara4e7ea812013-06-04 13:17:40 -04002301
2302 start = mpd->map.m_lblk >> bpp_bits;
2303 end = (mpd->map.m_lblk + mpd->map.m_len - 1) >> bpp_bits;
2304 lblk = start << bpp_bits;
2305 pblock = mpd->map.m_pblk;
2306
Mel Gorman86679822017-11-15 17:37:52 -08002307 pagevec_init(&pvec);
Jan Kara4e7ea812013-06-04 13:17:40 -04002308 while (start <= end) {
Jan Kara2b85a612017-09-06 16:21:30 -07002309 nr_pages = pagevec_lookup_range(&pvec, inode->i_mapping,
Jan Kara397162f2017-09-06 16:21:43 -07002310 &start, end);
Jan Kara4e7ea812013-06-04 13:17:40 -04002311 if (nr_pages == 0)
2312 break;
2313 for (i = 0; i < nr_pages; i++) {
2314 struct page *page = pvec.pages[i];
2315
Ritesh Harjani2943fdb2019-10-16 13:07:09 +05302316 err = mpage_process_page(mpd, page, &lblk, &pblock,
2317 &map_bh);
Jan Kara4e7ea812013-06-04 13:17:40 -04002318 /*
Ritesh Harjani2943fdb2019-10-16 13:07:09 +05302319 * If map_bh is true, means page may require further bh
2320 * mapping, or maybe the page was submitted for IO.
2321 * So we return to call further extent mapping.
Jan Kara4e7ea812013-06-04 13:17:40 -04002322 */
Jason Yan39c0ae12020-04-20 12:29:18 +08002323 if (err < 0 || map_bh)
Ritesh Harjani2943fdb2019-10-16 13:07:09 +05302324 goto out;
Jan Kara4e7ea812013-06-04 13:17:40 -04002325 /* Page fully mapped - let IO run! */
2326 err = mpage_submit_page(mpd, page);
Ritesh Harjani2943fdb2019-10-16 13:07:09 +05302327 if (err < 0)
2328 goto out;
Jan Kara4e7ea812013-06-04 13:17:40 -04002329 }
2330 pagevec_release(&pvec);
2331 }
2332 /* Extent fully mapped and matches with page boundary. We are done. */
2333 mpd->map.m_len = 0;
2334 mpd->map.m_flags = 0;
2335 return 0;
Ritesh Harjani2943fdb2019-10-16 13:07:09 +05302336out:
2337 pagevec_release(&pvec);
2338 return err;
Jan Kara4e7ea812013-06-04 13:17:40 -04002339}
2340
2341static int mpage_map_one_extent(handle_t *handle, struct mpage_da_data *mpd)
2342{
2343 struct inode *inode = mpd->inode;
2344 struct ext4_map_blocks *map = &mpd->map;
2345 int get_blocks_flags;
Lukas Czerner090f32e2014-04-20 23:44:47 -04002346 int err, dioread_nolock;
Jan Kara4e7ea812013-06-04 13:17:40 -04002347
2348 trace_ext4_da_write_pages_extent(inode, map);
2349 /*
2350 * Call ext4_map_blocks() to allocate any delayed allocation blocks, or
Lukas Czerner556615d2014-04-20 23:45:47 -04002351 * to convert an unwritten extent to be initialized (in the case
Jan Kara4e7ea812013-06-04 13:17:40 -04002352 * where we have written into one or more preallocated blocks). It is
2353 * possible that we're going to need more metadata blocks than
2354 * previously reserved. However we must not fail because we're in
2355 * writeback and there is nothing we can do about it so it might result
2356 * in data loss. So use reserved blocks to allocate metadata if
2357 * possible.
2358 *
Theodore Ts'o754cfed2014-09-04 18:08:22 -04002359 * We pass in the magic EXT4_GET_BLOCKS_DELALLOC_RESERVE if
2360 * the blocks in question are delalloc blocks. This indicates
2361 * that the blocks and quotas has already been checked when
2362 * the data was copied into the page cache.
Jan Kara4e7ea812013-06-04 13:17:40 -04002363 */
2364 get_blocks_flags = EXT4_GET_BLOCKS_CREATE |
Jan Karaee0876b2016-04-24 00:56:08 -04002365 EXT4_GET_BLOCKS_METADATA_NOFAIL |
2366 EXT4_GET_BLOCKS_IO_SUBMIT;
Lukas Czerner090f32e2014-04-20 23:44:47 -04002367 dioread_nolock = ext4_should_dioread_nolock(inode);
2368 if (dioread_nolock)
Jan Kara4e7ea812013-06-04 13:17:40 -04002369 get_blocks_flags |= EXT4_GET_BLOCKS_IO_CREATE_EXT;
Ritesh Harjani6db07462020-05-10 11:54:51 +05302370 if (map->m_flags & BIT(BH_Delay))
Jan Kara4e7ea812013-06-04 13:17:40 -04002371 get_blocks_flags |= EXT4_GET_BLOCKS_DELALLOC_RESERVE;
2372
2373 err = ext4_map_blocks(handle, inode, map, get_blocks_flags);
2374 if (err < 0)
2375 return err;
Lukas Czerner090f32e2014-04-20 23:44:47 -04002376 if (dioread_nolock && (map->m_flags & EXT4_MAP_UNWRITTEN)) {
Jan Kara6b523df2013-06-04 13:21:11 -04002377 if (!mpd->io_submit.io_end->handle &&
2378 ext4_handle_valid(handle)) {
2379 mpd->io_submit.io_end->handle = handle->h_rsv_handle;
2380 handle->h_rsv_handle = NULL;
2381 }
Jan Kara3613d222013-06-04 13:19:34 -04002382 ext4_set_io_unwritten_flag(inode, mpd->io_submit.io_end);
Jan Kara6b523df2013-06-04 13:21:11 -04002383 }
Jan Kara4e7ea812013-06-04 13:17:40 -04002384
2385 BUG_ON(map->m_len == 0);
Jan Kara4e7ea812013-06-04 13:17:40 -04002386 return 0;
2387}
2388
2389/*
2390 * mpage_map_and_submit_extent - map extent starting at mpd->lblk of length
2391 * mpd->len and submit pages underlying it for IO
2392 *
2393 * @handle - handle for journal operations
2394 * @mpd - extent to map
Jan Kara7534e852013-10-16 08:26:08 -04002395 * @give_up_on_write - we set this to true iff there is a fatal error and there
2396 * is no hope of writing the data. The caller should discard
2397 * dirty pages to avoid infinite loops.
Jan Kara4e7ea812013-06-04 13:17:40 -04002398 *
2399 * The function maps extent starting at mpd->lblk of length mpd->len. If it is
2400 * delayed, blocks are allocated, if it is unwritten, we may need to convert
2401 * them to initialized or split the described range from larger unwritten
2402 * extent. Note that we need not map all the described range since allocation
2403 * can return less blocks or the range is covered by more unwritten extents. We
2404 * cannot map more because we are limited by reserved transaction credits. On
2405 * the other hand we always make sure that the last touched page is fully
2406 * mapped so that it can be written out (and thus forward progress is
2407 * guaranteed). After mapping we submit all mapped pages for IO.
2408 */
2409static int mpage_map_and_submit_extent(handle_t *handle,
Theodore Ts'ocb530542013-07-01 08:12:40 -04002410 struct mpage_da_data *mpd,
2411 bool *give_up_on_write)
Jan Kara4e7ea812013-06-04 13:17:40 -04002412{
2413 struct inode *inode = mpd->inode;
2414 struct ext4_map_blocks *map = &mpd->map;
2415 int err;
2416 loff_t disksize;
Dmitry Monakhov66031202014-08-27 18:40:03 -04002417 int progress = 0;
Ritesh Harjanic8cc8812019-10-16 13:07:10 +05302418 ext4_io_end_t *io_end = mpd->io_submit.io_end;
Ritesh Harjani4d06bfb2019-11-06 15:08:09 +05302419 struct ext4_io_end_vec *io_end_vec;
Jan Kara4e7ea812013-06-04 13:17:40 -04002420
Ritesh Harjani4d06bfb2019-11-06 15:08:09 +05302421 io_end_vec = ext4_alloc_io_end_vec(io_end);
2422 if (IS_ERR(io_end_vec))
2423 return PTR_ERR(io_end_vec);
Ritesh Harjanic8cc8812019-10-16 13:07:10 +05302424 io_end_vec->offset = ((loff_t)map->m_lblk) << inode->i_blkbits;
Jan Kara27d7c4e2013-07-05 21:57:22 -04002425 do {
Jan Kara4e7ea812013-06-04 13:17:40 -04002426 err = mpage_map_one_extent(handle, mpd);
2427 if (err < 0) {
2428 struct super_block *sb = inode->i_sb;
2429
Theodore Ts'o0db1ff22017-02-05 01:28:48 -05002430 if (ext4_forced_shutdown(EXT4_SB(sb)) ||
Harshad Shirwadkar9b5f6c92020-11-05 19:59:09 -08002431 ext4_test_mount_flag(sb, EXT4_MF_FS_ABORTED))
Theodore Ts'ocb530542013-07-01 08:12:40 -04002432 goto invalidate_dirty_pages;
Jan Kara4e7ea812013-06-04 13:17:40 -04002433 /*
Theodore Ts'ocb530542013-07-01 08:12:40 -04002434 * Let the uper layers retry transient errors.
2435 * In the case of ENOSPC, if ext4_count_free_blocks()
2436 * is non-zero, a commit should free up blocks.
Jan Kara4e7ea812013-06-04 13:17:40 -04002437 */
Theodore Ts'ocb530542013-07-01 08:12:40 -04002438 if ((err == -ENOMEM) ||
Dmitry Monakhov66031202014-08-27 18:40:03 -04002439 (err == -ENOSPC && ext4_count_free_clusters(sb))) {
2440 if (progress)
2441 goto update_disksize;
Theodore Ts'ocb530542013-07-01 08:12:40 -04002442 return err;
Dmitry Monakhov66031202014-08-27 18:40:03 -04002443 }
Theodore Ts'ocb530542013-07-01 08:12:40 -04002444 ext4_msg(sb, KERN_CRIT,
2445 "Delayed block allocation failed for "
2446 "inode %lu at logical offset %llu with"
2447 " max blocks %u with error %d",
2448 inode->i_ino,
2449 (unsigned long long)map->m_lblk,
2450 (unsigned)map->m_len, -err);
2451 ext4_msg(sb, KERN_CRIT,
2452 "This should not happen!! Data will "
2453 "be lost\n");
2454 if (err == -ENOSPC)
2455 ext4_print_free_blocks(inode);
2456 invalidate_dirty_pages:
2457 *give_up_on_write = true;
Jan Kara4e7ea812013-06-04 13:17:40 -04002458 return err;
2459 }
Dmitry Monakhov66031202014-08-27 18:40:03 -04002460 progress = 1;
Jan Kara4e7ea812013-06-04 13:17:40 -04002461 /*
2462 * Update buffer state, submit mapped pages, and get us new
2463 * extent to map
2464 */
2465 err = mpage_map_and_submit_buffers(mpd);
2466 if (err < 0)
Dmitry Monakhov66031202014-08-27 18:40:03 -04002467 goto update_disksize;
Jan Kara27d7c4e2013-07-05 21:57:22 -04002468 } while (map->m_len);
Jan Kara4e7ea812013-06-04 13:17:40 -04002469
Dmitry Monakhov66031202014-08-27 18:40:03 -04002470update_disksize:
Theodore Ts'o622cad12014-04-11 10:35:17 -04002471 /*
2472 * Update on-disk size after IO is submitted. Races with
2473 * truncate are avoided by checking i_size under i_data_sem.
2474 */
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002475 disksize = ((loff_t)mpd->first_page) << PAGE_SHIFT;
Qian Cai35df4292020-02-07 09:29:11 -05002476 if (disksize > READ_ONCE(EXT4_I(inode)->i_disksize)) {
Jan Kara4e7ea812013-06-04 13:17:40 -04002477 int err2;
Theodore Ts'o622cad12014-04-11 10:35:17 -04002478 loff_t i_size;
Jan Kara4e7ea812013-06-04 13:17:40 -04002479
Theodore Ts'o622cad12014-04-11 10:35:17 -04002480 down_write(&EXT4_I(inode)->i_data_sem);
2481 i_size = i_size_read(inode);
2482 if (disksize > i_size)
2483 disksize = i_size;
2484 if (disksize > EXT4_I(inode)->i_disksize)
2485 EXT4_I(inode)->i_disksize = disksize;
Theodore Ts'o622cad12014-04-11 10:35:17 -04002486 up_write(&EXT4_I(inode)->i_data_sem);
Theodore Ts'ob907f2d2017-01-11 22:14:49 -05002487 err2 = ext4_mark_inode_dirty(handle, inode);
Theodore Ts'o878520a2019-11-19 21:54:15 -05002488 if (err2) {
Theodore Ts'o54d3adb2020-03-28 19:33:43 -04002489 ext4_error_err(inode->i_sb, -err2,
2490 "Failed to mark inode %lu dirty",
2491 inode->i_ino);
Theodore Ts'o878520a2019-11-19 21:54:15 -05002492 }
Jan Kara4e7ea812013-06-04 13:17:40 -04002493 if (!err)
2494 err = err2;
2495 }
2496 return err;
2497}
2498
2499/*
Jan Karafffb2732013-06-04 13:01:11 -04002500 * Calculate the total number of credits to reserve for one writepages
Theodore Ts'o20970ba2013-06-06 14:00:46 -04002501 * iteration. This is called from ext4_writepages(). We map an extent of
Anatol Pomozov70261f52013-08-28 14:40:12 -04002502 * up to MAX_WRITEPAGES_EXTENT_LEN blocks and then we go on and finish mapping
Jan Karafffb2732013-06-04 13:01:11 -04002503 * the last partial page. So in total we can map MAX_WRITEPAGES_EXTENT_LEN +
2504 * bpp - 1 blocks in bpp different extents.
2505 */
Mingming Cao525f4ed2008-08-19 22:15:58 -04002506static int ext4_da_writepages_trans_blocks(struct inode *inode)
2507{
Jan Karafffb2732013-06-04 13:01:11 -04002508 int bpp = ext4_journal_blocks_per_page(inode);
Mingming Cao525f4ed2008-08-19 22:15:58 -04002509
Jan Karafffb2732013-06-04 13:01:11 -04002510 return ext4_meta_trans_blocks(inode,
2511 MAX_WRITEPAGES_EXTENT_LEN + bpp - 1, bpp);
Mingming Cao525f4ed2008-08-19 22:15:58 -04002512}
Mingming Cao61628a32008-07-11 19:27:31 -04002513
Theodore Ts'o8e48dcf2010-05-16 18:00:00 -04002514/*
Jan Kara4e7ea812013-06-04 13:17:40 -04002515 * mpage_prepare_extent_to_map - find & lock contiguous range of dirty pages
2516 * and underlying extent to map
2517 *
2518 * @mpd - where to look for pages
2519 *
2520 * Walk dirty pages in the mapping. If they are fully mapped, submit them for
2521 * IO immediately. When we find a page which isn't mapped we start accumulating
2522 * extent of buffers underlying these pages that needs mapping (formed by
2523 * either delayed or unwritten buffers). We also lock the pages containing
2524 * these buffers. The extent found is returned in @mpd structure (starting at
2525 * mpd->lblk with length mpd->len blocks).
2526 *
2527 * Note that this function can attach bios to one io_end structure which are
2528 * neither logically nor physically contiguous. Although it may seem as an
2529 * unnecessary complication, it is actually inevitable in blocksize < pagesize
2530 * 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 -04002531 */
Jan Kara4e7ea812013-06-04 13:17:40 -04002532static int mpage_prepare_extent_to_map(struct mpage_da_data *mpd)
Theodore Ts'o8e48dcf2010-05-16 18:00:00 -04002533{
Jan Kara4e7ea812013-06-04 13:17:40 -04002534 struct address_space *mapping = mpd->inode->i_mapping;
2535 struct pagevec pvec;
2536 unsigned int nr_pages;
Ming Leiaeac5892013-10-17 18:56:16 -04002537 long left = mpd->wbc->nr_to_write;
Jan Kara4e7ea812013-06-04 13:17:40 -04002538 pgoff_t index = mpd->first_page;
2539 pgoff_t end = mpd->last_page;
Matthew Wilcox10bbd232017-12-05 17:30:38 -05002540 xa_mark_t tag;
Jan Kara4e7ea812013-06-04 13:17:40 -04002541 int i, err = 0;
2542 int blkbits = mpd->inode->i_blkbits;
2543 ext4_lblk_t lblk;
2544 struct buffer_head *head;
Theodore Ts'o8e48dcf2010-05-16 18:00:00 -04002545
Jan Kara4e7ea812013-06-04 13:17:40 -04002546 if (mpd->wbc->sync_mode == WB_SYNC_ALL || mpd->wbc->tagged_writepages)
Eric Sandeen5b41d922010-10-27 21:30:13 -04002547 tag = PAGECACHE_TAG_TOWRITE;
2548 else
2549 tag = PAGECACHE_TAG_DIRTY;
2550
Mel Gorman86679822017-11-15 17:37:52 -08002551 pagevec_init(&pvec);
Jan Kara4e7ea812013-06-04 13:17:40 -04002552 mpd->map.m_len = 0;
2553 mpd->next_page = index;
Theodore Ts'o4f01b022011-02-26 14:07:37 -05002554 while (index <= end) {
Jan Karadc7f3e82017-11-15 17:34:44 -08002555 nr_pages = pagevec_lookup_range_tag(&pvec, mapping, &index, end,
Jan Kara67fd7072017-11-15 17:35:19 -08002556 tag);
Theodore Ts'o8e48dcf2010-05-16 18:00:00 -04002557 if (nr_pages == 0)
Jan Kara6b8ed622020-05-25 10:12:15 +02002558 break;
Theodore Ts'o8e48dcf2010-05-16 18:00:00 -04002559
2560 for (i = 0; i < nr_pages; i++) {
2561 struct page *page = pvec.pages[i];
2562
2563 /*
Ming Leiaeac5892013-10-17 18:56:16 -04002564 * Accumulated enough dirty pages? This doesn't apply
2565 * to WB_SYNC_ALL mode. For integrity sync we have to
2566 * keep going because someone may be concurrently
2567 * dirtying pages, and we might have synced a lot of
2568 * newly appeared dirty pages, but have not synced all
2569 * of the old dirty pages.
2570 */
2571 if (mpd->wbc->sync_mode == WB_SYNC_NONE && left <= 0)
2572 goto out;
2573
Jan Kara4e7ea812013-06-04 13:17:40 -04002574 /* If we can't merge this page, we are done. */
2575 if (mpd->map.m_len > 0 && mpd->next_page != page->index)
2576 goto out;
Theodore Ts'o78aaced2011-02-26 14:09:14 -05002577
Theodore Ts'o8e48dcf2010-05-16 18:00:00 -04002578 lock_page(page);
Theodore Ts'o8e48dcf2010-05-16 18:00:00 -04002579 /*
Jan Kara4e7ea812013-06-04 13:17:40 -04002580 * If the page is no longer dirty, or its mapping no
2581 * longer corresponds to inode we are writing (which
2582 * means it has been truncated or invalidated), or the
2583 * page is already under writeback and we are not doing
2584 * a data integrity writeback, skip the page
Theodore Ts'o8e48dcf2010-05-16 18:00:00 -04002585 */
Theodore Ts'o4f01b022011-02-26 14:07:37 -05002586 if (!PageDirty(page) ||
2587 (PageWriteback(page) &&
Jan Kara4e7ea812013-06-04 13:17:40 -04002588 (mpd->wbc->sync_mode == WB_SYNC_NONE)) ||
Theodore Ts'o4f01b022011-02-26 14:07:37 -05002589 unlikely(page->mapping != mapping)) {
Theodore Ts'o8e48dcf2010-05-16 18:00:00 -04002590 unlock_page(page);
2591 continue;
2592 }
2593
Darrick J. Wong7cb1a532011-05-18 13:53:20 -04002594 wait_on_page_writeback(page);
Theodore Ts'o8e48dcf2010-05-16 18:00:00 -04002595 BUG_ON(PageWriteback(page));
Theodore Ts'o8e48dcf2010-05-16 18:00:00 -04002596
Jan Kara4e7ea812013-06-04 13:17:40 -04002597 if (mpd->map.m_len == 0)
Theodore Ts'o8eb9e5c2011-02-26 14:07:31 -05002598 mpd->first_page = page->index;
Theodore Ts'o8eb9e5c2011-02-26 14:07:31 -05002599 mpd->next_page = page->index + 1;
Jan Karaf8bec372013-01-28 12:55:08 -05002600 /* Add all dirty buffers to mpd */
Jan Kara4e7ea812013-06-04 13:17:40 -04002601 lblk = ((ext4_lblk_t)page->index) <<
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002602 (PAGE_SHIFT - blkbits);
Jan Karaf8bec372013-01-28 12:55:08 -05002603 head = page_buffers(page);
Jan Kara5f1132b2013-08-17 10:02:33 -04002604 err = mpage_process_page_bufs(mpd, head, head, lblk);
2605 if (err <= 0)
Jan Kara4e7ea812013-06-04 13:17:40 -04002606 goto out;
Jan Kara5f1132b2013-08-17 10:02:33 -04002607 err = 0;
Ming Leiaeac5892013-10-17 18:56:16 -04002608 left--;
Theodore Ts'o8e48dcf2010-05-16 18:00:00 -04002609 }
2610 pagevec_release(&pvec);
2611 cond_resched();
2612 }
Jan Kara6b8ed622020-05-25 10:12:15 +02002613 mpd->scanned_until_end = 1;
Theodore Ts'o4f01b022011-02-26 14:07:37 -05002614 return 0;
Theodore Ts'o8eb9e5c2011-02-26 14:07:31 -05002615out:
2616 pagevec_release(&pvec);
Jan Kara4e7ea812013-06-04 13:17:40 -04002617 return err;
Theodore Ts'o8e48dcf2010-05-16 18:00:00 -04002618}
2619
Theodore Ts'o20970ba2013-06-06 14:00:46 -04002620static int ext4_writepages(struct address_space *mapping,
2621 struct writeback_control *wbc)
Alex Tomas64769242008-07-11 19:27:31 -04002622{
Jan Kara4e7ea812013-06-04 13:17:40 -04002623 pgoff_t writeback_index = 0;
2624 long nr_to_write = wbc->nr_to_write;
Aneesh Kumar K.V22208de2008-10-16 10:10:36 -04002625 int range_whole = 0;
Jan Kara4e7ea812013-06-04 13:17:40 -04002626 int cycled = 1;
Mingming Cao61628a32008-07-11 19:27:31 -04002627 handle_t *handle = NULL;
Aneesh Kumar K.Vdf222912008-09-08 23:05:34 -04002628 struct mpage_da_data mpd;
Aneesh Kumar K.V5e745b02008-08-18 18:00:57 -04002629 struct inode *inode = mapping->host;
Jan Kara6b523df2013-06-04 13:21:11 -04002630 int needed_blocks, rsv_blocks = 0, ret = 0;
Aneesh Kumar K.V5e745b02008-08-18 18:00:57 -04002631 struct ext4_sb_info *sbi = EXT4_SB(mapping->host->i_sb);
Shaohua Li1bce63d12011-10-18 10:55:51 -04002632 struct blk_plug plug;
Theodore Ts'ocb530542013-07-01 08:12:40 -04002633 bool give_up_on_write = false;
Mingming Cao61628a32008-07-11 19:27:31 -04002634
Theodore Ts'o0db1ff22017-02-05 01:28:48 -05002635 if (unlikely(ext4_forced_shutdown(EXT4_SB(inode->i_sb))))
2636 return -EIO;
2637
Eric Biggersbbd55932020-02-19 10:30:46 -08002638 percpu_down_read(&sbi->s_writepages_rwsem);
Theodore Ts'o20970ba2013-06-06 14:00:46 -04002639 trace_ext4_writepages(inode, wbc);
Theodore Ts'oba80b102009-01-03 20:03:21 -05002640
Mingming Cao61628a32008-07-11 19:27:31 -04002641 /*
2642 * No pages to write? This is mainly a kludge to avoid starting
2643 * a transaction for special inodes like journal inode on last iput()
2644 * because that could violate lock ordering on umount
2645 */
Aneesh Kumar K.Va1d6cc52008-08-19 21:55:02 -04002646 if (!mapping->nrpages || !mapping_tagged(mapping, PAGECACHE_TAG_DIRTY))
Ming Leibbf023c72013-10-30 07:27:16 -04002647 goto out_writepages;
Theodore Ts'o2a21e372008-11-05 09:22:24 -05002648
Theodore Ts'o20970ba2013-06-06 14:00:46 -04002649 if (ext4_should_journal_data(inode)) {
Goldwyn Rodrigues043d20d2018-03-26 01:32:50 -04002650 ret = generic_writepages(mapping, wbc);
Ming Leibbf023c72013-10-30 07:27:16 -04002651 goto out_writepages;
Theodore Ts'o20970ba2013-06-06 14:00:46 -04002652 }
2653
Theodore Ts'o2a21e372008-11-05 09:22:24 -05002654 /*
2655 * If the filesystem has aborted, it is read-only, so return
2656 * right away instead of dumping stack traces later on that
2657 * will obscure the real source of the problem. We test
Linus Torvalds1751e8a2017-11-27 13:05:09 -08002658 * EXT4_MF_FS_ABORTED instead of sb->s_flag's SB_RDONLY because
Theodore Ts'o2a21e372008-11-05 09:22:24 -05002659 * the latter could be true if the filesystem is mounted
Theodore Ts'o20970ba2013-06-06 14:00:46 -04002660 * read-only, and in that case, ext4_writepages should
Theodore Ts'o2a21e372008-11-05 09:22:24 -05002661 * *never* be called, so if that ever happens, we would want
2662 * the stack trace.
2663 */
Theodore Ts'o0db1ff22017-02-05 01:28:48 -05002664 if (unlikely(ext4_forced_shutdown(EXT4_SB(mapping->host->i_sb)) ||
Harshad Shirwadkar9b5f6c92020-11-05 19:59:09 -08002665 ext4_test_mount_flag(inode->i_sb, EXT4_MF_FS_ABORTED))) {
Ming Leibbf023c72013-10-30 07:27:16 -04002666 ret = -EROFS;
2667 goto out_writepages;
2668 }
Theodore Ts'o2a21e372008-11-05 09:22:24 -05002669
Jan Kara4e7ea812013-06-04 13:17:40 -04002670 /*
2671 * If we have inline data and arrive here, it means that
2672 * we will soon create the block for the 1st page, so
2673 * we'd better clear the inline data here.
2674 */
2675 if (ext4_has_inline_data(inode)) {
2676 /* Just inode will be modified... */
2677 handle = ext4_journal_start(inode, EXT4_HT_INODE, 1);
2678 if (IS_ERR(handle)) {
2679 ret = PTR_ERR(handle);
2680 goto out_writepages;
2681 }
2682 BUG_ON(ext4_test_inode_state(inode,
2683 EXT4_STATE_MAY_INLINE_DATA));
2684 ext4_destroy_inline_data(handle, inode);
2685 ext4_journal_stop(handle);
2686 }
2687
yangerkun4e343232019-08-11 16:27:41 -04002688 if (ext4_should_dioread_nolock(inode)) {
2689 /*
2690 * We may need to convert up to one extent per block in
2691 * the page and we may dirty the inode.
2692 */
2693 rsv_blocks = 1 + ext4_chunk_trans_blocks(inode,
2694 PAGE_SIZE >> inode->i_blkbits);
2695 }
2696
Aneesh Kumar K.V22208de2008-10-16 10:10:36 -04002697 if (wbc->range_start == 0 && wbc->range_end == LLONG_MAX)
2698 range_whole = 1;
Mingming Cao61628a32008-07-11 19:27:31 -04002699
Aneesh Kumar K.V2acf2c22009-02-14 10:42:58 -05002700 if (wbc->range_cyclic) {
Jan Kara4e7ea812013-06-04 13:17:40 -04002701 writeback_index = mapping->writeback_index;
2702 if (writeback_index)
Aneesh Kumar K.V2acf2c22009-02-14 10:42:58 -05002703 cycled = 0;
Jan Kara4e7ea812013-06-04 13:17:40 -04002704 mpd.first_page = writeback_index;
2705 mpd.last_page = -1;
Eric Sandeen5b41d922010-10-27 21:30:13 -04002706 } else {
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002707 mpd.first_page = wbc->range_start >> PAGE_SHIFT;
2708 mpd.last_page = wbc->range_end >> PAGE_SHIFT;
Eric Sandeen5b41d922010-10-27 21:30:13 -04002709 }
Aneesh Kumar K.Va1d6cc52008-08-19 21:55:02 -04002710
Jan Kara4e7ea812013-06-04 13:17:40 -04002711 mpd.inode = inode;
2712 mpd.wbc = wbc;
2713 ext4_io_submit_init(&mpd.io_submit, wbc);
Aneesh Kumar K.V2acf2c22009-02-14 10:42:58 -05002714retry:
Wu Fengguang6e6938b2010-06-06 10:38:15 -06002715 if (wbc->sync_mode == WB_SYNC_ALL || wbc->tagged_writepages)
Jan Kara4e7ea812013-06-04 13:17:40 -04002716 tag_pages_for_writeback(mapping, mpd.first_page, mpd.last_page);
Shaohua Li1bce63d12011-10-18 10:55:51 -04002717 blk_start_plug(&plug);
Jan Karadddbd6a2017-04-30 18:29:10 -04002718
2719 /*
2720 * First writeback pages that don't need mapping - we can avoid
2721 * starting a transaction unnecessarily and also avoid being blocked
2722 * in the block layer on device congestion while having transaction
2723 * started.
2724 */
2725 mpd.do_map = 0;
Jan Kara6b8ed622020-05-25 10:12:15 +02002726 mpd.scanned_until_end = 0;
Jan Karadddbd6a2017-04-30 18:29:10 -04002727 mpd.io_submit.io_end = ext4_init_io_end(inode, GFP_KERNEL);
2728 if (!mpd.io_submit.io_end) {
2729 ret = -ENOMEM;
2730 goto unplug;
2731 }
2732 ret = mpage_prepare_extent_to_map(&mpd);
Xiaoguang Wanga297b2f2019-02-10 23:53:21 -05002733 /* Unlock pages we didn't use */
2734 mpage_release_unused_pages(&mpd, false);
Jan Karadddbd6a2017-04-30 18:29:10 -04002735 /* Submit prepared bio */
2736 ext4_io_submit(&mpd.io_submit);
2737 ext4_put_io_end_defer(mpd.io_submit.io_end);
2738 mpd.io_submit.io_end = NULL;
Jan Karadddbd6a2017-04-30 18:29:10 -04002739 if (ret < 0)
2740 goto unplug;
2741
Jan Kara6b8ed622020-05-25 10:12:15 +02002742 while (!mpd.scanned_until_end && wbc->nr_to_write > 0) {
Jan Kara4e7ea812013-06-04 13:17:40 -04002743 /* For each extent of pages we use new io_end */
2744 mpd.io_submit.io_end = ext4_init_io_end(inode, GFP_KERNEL);
2745 if (!mpd.io_submit.io_end) {
2746 ret = -ENOMEM;
2747 break;
2748 }
Aneesh Kumar K.Va1d6cc52008-08-19 21:55:02 -04002749
2750 /*
Jan Kara4e7ea812013-06-04 13:17:40 -04002751 * We have two constraints: We find one extent to map and we
2752 * must always write out whole page (makes a difference when
2753 * blocksize < pagesize) so that we don't block on IO when we
2754 * try to write out the rest of the page. Journalled mode is
2755 * not supported by delalloc.
Aneesh Kumar K.Va1d6cc52008-08-19 21:55:02 -04002756 */
2757 BUG_ON(ext4_should_journal_data(inode));
Mingming Cao525f4ed2008-08-19 22:15:58 -04002758 needed_blocks = ext4_da_writepages_trans_blocks(inode);
Aneesh Kumar K.Va1d6cc52008-08-19 21:55:02 -04002759
Jan Kara4e7ea812013-06-04 13:17:40 -04002760 /* start a new transaction */
Jan Kara6b523df2013-06-04 13:21:11 -04002761 handle = ext4_journal_start_with_reserve(inode,
2762 EXT4_HT_WRITE_PAGE, needed_blocks, rsv_blocks);
Mingming Cao61628a32008-07-11 19:27:31 -04002763 if (IS_ERR(handle)) {
2764 ret = PTR_ERR(handle);
Theodore Ts'o16939182009-09-26 17:43:59 -04002765 ext4_msg(inode->i_sb, KERN_CRIT, "%s: jbd2_start: "
Curt Wohlgemuthfbe845d2010-05-16 13:00:00 -04002766 "%ld pages, ino %lu; err %d", __func__,
Aneesh Kumar K.Va1d6cc52008-08-19 21:55:02 -04002767 wbc->nr_to_write, inode->i_ino, ret);
Jan Kara4e7ea812013-06-04 13:17:40 -04002768 /* Release allocated io_end */
2769 ext4_put_io_end(mpd.io_submit.io_end);
Jan Karadddbd6a2017-04-30 18:29:10 -04002770 mpd.io_submit.io_end = NULL;
Jan Kara4e7ea812013-06-04 13:17:40 -04002771 break;
Mingming Cao61628a32008-07-11 19:27:31 -04002772 }
Jan Karadddbd6a2017-04-30 18:29:10 -04002773 mpd.do_map = 1;
Theodore Ts'of63e60052009-02-23 16:42:39 -05002774
Jan Kara4e7ea812013-06-04 13:17:40 -04002775 trace_ext4_da_write_pages(inode, mpd.first_page, mpd.wbc);
2776 ret = mpage_prepare_extent_to_map(&mpd);
Jan Kara6b8ed622020-05-25 10:12:15 +02002777 if (!ret && mpd.map.m_len)
2778 ret = mpage_map_and_submit_extent(handle, &mpd,
Theodore Ts'ocb530542013-07-01 08:12:40 -04002779 &give_up_on_write);
Jan Kara646caa92016-07-04 10:14:01 -04002780 /*
2781 * Caution: If the handle is synchronous,
2782 * ext4_journal_stop() can wait for transaction commit
2783 * to finish which may depend on writeback of pages to
2784 * complete or on page lock to be released. In that
Randy Dunlapb483bb72020-08-04 19:48:50 -07002785 * case, we have to wait until after we have
Jan Kara646caa92016-07-04 10:14:01 -04002786 * submitted all the IO, released page locks we hold,
2787 * and dropped io_end reference (for extent conversion
2788 * to be able to complete) before stopping the handle.
2789 */
2790 if (!ext4_handle_valid(handle) || handle->h_sync == 0) {
2791 ext4_journal_stop(handle);
2792 handle = NULL;
Jan Karadddbd6a2017-04-30 18:29:10 -04002793 mpd.do_map = 0;
Jan Kara646caa92016-07-04 10:14:01 -04002794 }
Jan Kara4e7ea812013-06-04 13:17:40 -04002795 /* Unlock pages we didn't use */
Theodore Ts'ocb530542013-07-01 08:12:40 -04002796 mpage_release_unused_pages(&mpd, give_up_on_write);
Xiaoguang Wanga297b2f2019-02-10 23:53:21 -05002797 /* Submit prepared bio */
2798 ext4_io_submit(&mpd.io_submit);
2799
Jan Kara646caa92016-07-04 10:14:01 -04002800 /*
2801 * Drop our io_end reference we got from init. We have
2802 * to be careful and use deferred io_end finishing if
2803 * we are still holding the transaction as we can
2804 * release the last reference to io_end which may end
2805 * up doing unwritten extent conversion.
2806 */
2807 if (handle) {
2808 ext4_put_io_end_defer(mpd.io_submit.io_end);
2809 ext4_journal_stop(handle);
2810 } else
2811 ext4_put_io_end(mpd.io_submit.io_end);
Jan Karadddbd6a2017-04-30 18:29:10 -04002812 mpd.io_submit.io_end = NULL;
Aneesh Kumar K.Vdf222912008-09-08 23:05:34 -04002813
Jan Kara4e7ea812013-06-04 13:17:40 -04002814 if (ret == -ENOSPC && sbi->s_journal) {
2815 /*
2816 * Commit the transaction which would
Aneesh Kumar K.V22208de2008-10-16 10:10:36 -04002817 * free blocks released in the transaction
2818 * and try again
2819 */
Aneesh Kumar K.Vdf222912008-09-08 23:05:34 -04002820 jbd2_journal_force_commit_nested(sbi->s_journal);
Aneesh Kumar K.V22208de2008-10-16 10:10:36 -04002821 ret = 0;
Jan Kara4e7ea812013-06-04 13:17:40 -04002822 continue;
2823 }
2824 /* Fatal error - ENOMEM, EIO... */
2825 if (ret)
Mingming Cao61628a32008-07-11 19:27:31 -04002826 break;
Mingming Cao61628a32008-07-11 19:27:31 -04002827 }
Jan Karadddbd6a2017-04-30 18:29:10 -04002828unplug:
Shaohua Li1bce63d12011-10-18 10:55:51 -04002829 blk_finish_plug(&plug);
Jan Kara9c12a832013-09-16 08:24:26 -04002830 if (!ret && !cycled && wbc->nr_to_write > 0) {
Aneesh Kumar K.V2acf2c22009-02-14 10:42:58 -05002831 cycled = 1;
Jan Kara4e7ea812013-06-04 13:17:40 -04002832 mpd.last_page = writeback_index - 1;
2833 mpd.first_page = 0;
Aneesh Kumar K.V2acf2c22009-02-14 10:42:58 -05002834 goto retry;
2835 }
Mingming Cao61628a32008-07-11 19:27:31 -04002836
Aneesh Kumar K.V22208de2008-10-16 10:10:36 -04002837 /* Update index */
Aneesh Kumar K.V22208de2008-10-16 10:10:36 -04002838 if (wbc->range_cyclic || (range_whole && wbc->nr_to_write > 0))
2839 /*
Jan Kara4e7ea812013-06-04 13:17:40 -04002840 * Set the writeback_index so that range_cyclic
Aneesh Kumar K.V22208de2008-10-16 10:10:36 -04002841 * mode will write it back later
2842 */
Jan Kara4e7ea812013-06-04 13:17:40 -04002843 mapping->writeback_index = mpd.first_page;
Aneesh Kumar K.Va1d6cc52008-08-19 21:55:02 -04002844
Mingming Cao61628a32008-07-11 19:27:31 -04002845out_writepages:
Theodore Ts'o20970ba2013-06-06 14:00:46 -04002846 trace_ext4_writepages_result(inode, wbc, ret,
2847 nr_to_write - wbc->nr_to_write);
Eric Biggersbbd55932020-02-19 10:30:46 -08002848 percpu_up_read(&sbi->s_writepages_rwsem);
Mingming Cao61628a32008-07-11 19:27:31 -04002849 return ret;
Alex Tomas64769242008-07-11 19:27:31 -04002850}
2851
Dan Williams5f0663b2017-12-21 12:25:11 -08002852static int ext4_dax_writepages(struct address_space *mapping,
2853 struct writeback_control *wbc)
2854{
2855 int ret;
2856 long nr_to_write = wbc->nr_to_write;
2857 struct inode *inode = mapping->host;
2858 struct ext4_sb_info *sbi = EXT4_SB(mapping->host->i_sb);
2859
2860 if (unlikely(ext4_forced_shutdown(EXT4_SB(inode->i_sb))))
2861 return -EIO;
2862
Eric Biggersbbd55932020-02-19 10:30:46 -08002863 percpu_down_read(&sbi->s_writepages_rwsem);
Dan Williams5f0663b2017-12-21 12:25:11 -08002864 trace_ext4_writepages(inode, wbc);
2865
Vivek Goyal3f666c52020-01-03 13:33:07 -05002866 ret = dax_writeback_mapping_range(mapping, sbi->s_daxdev, wbc);
Dan Williams5f0663b2017-12-21 12:25:11 -08002867 trace_ext4_writepages_result(inode, wbc, ret,
2868 nr_to_write - wbc->nr_to_write);
Eric Biggersbbd55932020-02-19 10:30:46 -08002869 percpu_up_read(&sbi->s_writepages_rwsem);
Dan Williams5f0663b2017-12-21 12:25:11 -08002870 return ret;
2871}
2872
Aneesh Kumar K.V79f0be82008-10-08 23:13:30 -04002873static int ext4_nonda_switch(struct super_block *sb)
2874{
Eric Whitney5c1ff332013-04-09 09:27:31 -04002875 s64 free_clusters, dirty_clusters;
Aneesh Kumar K.V79f0be82008-10-08 23:13:30 -04002876 struct ext4_sb_info *sbi = EXT4_SB(sb);
2877
2878 /*
2879 * switch to non delalloc mode if we are running low
2880 * on free block. The free block accounting via percpu
Eric Dumazet179f7eb2009-01-06 14:41:04 -08002881 * counters can get slightly wrong with percpu_counter_batch getting
Aneesh Kumar K.V79f0be82008-10-08 23:13:30 -04002882 * accumulated on each CPU without updating global counters
2883 * Delalloc need an accurate free block accounting. So switch
2884 * to non delalloc when we are near to error range.
2885 */
Eric Whitney5c1ff332013-04-09 09:27:31 -04002886 free_clusters =
2887 percpu_counter_read_positive(&sbi->s_freeclusters_counter);
2888 dirty_clusters =
2889 percpu_counter_read_positive(&sbi->s_dirtyclusters_counter);
Theodore Ts'o00d4e732012-09-19 22:42:36 -04002890 /*
2891 * Start pushing delalloc when 1/2 of free blocks are dirty.
2892 */
Eric Whitney5c1ff332013-04-09 09:27:31 -04002893 if (dirty_clusters && (free_clusters < 2 * dirty_clusters))
Miao Xie10ee27a2013-01-10 13:47:57 +08002894 try_to_writeback_inodes_sb(sb, WB_REASON_FS_FREE_SPACE);
Theodore Ts'o00d4e732012-09-19 22:42:36 -04002895
Eric Whitney5c1ff332013-04-09 09:27:31 -04002896 if (2 * free_clusters < 3 * dirty_clusters ||
2897 free_clusters < (dirty_clusters + EXT4_FREECLUSTERS_WATERMARK)) {
Aneesh Kumar K.V79f0be82008-10-08 23:13:30 -04002898 /*
Eric Sandeenc8afb442009-12-23 07:58:12 -05002899 * free block count is less than 150% of dirty blocks
2900 * or free blocks is less than watermark
Aneesh Kumar K.V79f0be82008-10-08 23:13:30 -04002901 */
2902 return 1;
2903 }
2904 return 0;
2905}
2906
Alex Tomas64769242008-07-11 19:27:31 -04002907static int ext4_da_write_begin(struct file *file, struct address_space *mapping,
Theodore Ts'ode9a55b2009-06-14 17:45:34 -04002908 loff_t pos, unsigned len, unsigned flags,
2909 struct page **pagep, void **fsdata)
Alex Tomas64769242008-07-11 19:27:31 -04002910{
Eric Sandeen72b8ab92010-05-16 11:00:00 -04002911 int ret, retries = 0;
Alex Tomas64769242008-07-11 19:27:31 -04002912 struct page *page;
2913 pgoff_t index;
Alex Tomas64769242008-07-11 19:27:31 -04002914 struct inode *inode = mapping->host;
Alex Tomas64769242008-07-11 19:27:31 -04002915
Theodore Ts'o0db1ff22017-02-05 01:28:48 -05002916 if (unlikely(ext4_forced_shutdown(EXT4_SB(inode->i_sb))))
2917 return -EIO;
2918
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002919 index = pos >> PAGE_SHIFT;
Aneesh Kumar K.V79f0be82008-10-08 23:13:30 -04002920
Eric Biggersc93d8f82019-07-22 09:26:24 -07002921 if (ext4_nonda_switch(inode->i_sb) || S_ISLNK(inode->i_mode) ||
2922 ext4_verity_in_progress(inode)) {
Aneesh Kumar K.V79f0be82008-10-08 23:13:30 -04002923 *fsdata = (void *)FALL_BACK_TO_NONDELALLOC;
2924 return ext4_write_begin(file, mapping, pos,
2925 len, flags, pagep, fsdata);
2926 }
2927 *fsdata = (void *)0;
Theodore Ts'o9bffad12009-06-17 11:48:11 -04002928 trace_ext4_da_write_begin(inode, pos, len, flags);
Tao Ma9c3569b2012-12-10 14:05:57 -05002929
2930 if (ext4_test_inode_state(inode, EXT4_STATE_MAY_INLINE_DATA)) {
2931 ret = ext4_da_write_inline_data_begin(mapping, inode,
2932 pos, len, flags,
2933 pagep, fsdata);
2934 if (ret < 0)
Theodore Ts'o47564bf2013-02-09 09:24:14 -05002935 return ret;
2936 if (ret == 1)
2937 return 0;
Tao Ma9c3569b2012-12-10 14:05:57 -05002938 }
2939
Zhang Yicc883232021-07-16 20:20:24 +08002940retry:
Theodore Ts'o47564bf2013-02-09 09:24:14 -05002941 page = grab_cache_page_write_begin(mapping, index, flags);
2942 if (!page)
2943 return -ENOMEM;
Theodore Ts'o47564bf2013-02-09 09:24:14 -05002944
Theodore Ts'o47564bf2013-02-09 09:24:14 -05002945 /* In case writeback began while the page was unlocked */
Dmitry Monakhov7afe5aa2013-08-28 14:30:47 -04002946 wait_for_stable_page(page);
Alex Tomas64769242008-07-11 19:27:31 -04002947
Chandan Rajendra643fa962018-12-12 15:20:12 +05302948#ifdef CONFIG_FS_ENCRYPTION
Michael Halcrow2058f832015-04-12 00:55:10 -04002949 ret = ext4_block_write_begin(page, pos, len,
2950 ext4_da_get_block_prep);
2951#else
Christoph Hellwig6e1db882010-06-04 11:29:57 +02002952 ret = __block_write_begin(page, pos, len, ext4_da_get_block_prep);
Michael Halcrow2058f832015-04-12 00:55:10 -04002953#endif
Alex Tomas64769242008-07-11 19:27:31 -04002954 if (ret < 0) {
2955 unlock_page(page);
Zhang Yicc883232021-07-16 20:20:24 +08002956 put_page(page);
Aneesh Kumar K.Vae4d5372008-09-13 13:10:25 -04002957 /*
2958 * block_write_begin may have instantiated a few blocks
2959 * outside i_size. Trim these off again. Don't need
Zhang Yicc883232021-07-16 20:20:24 +08002960 * i_size_read because we hold inode lock.
Aneesh Kumar K.Vae4d5372008-09-13 13:10:25 -04002961 */
2962 if (pos + len > inode->i_size)
Jan Karab9a42072009-12-08 21:24:33 -05002963 ext4_truncate_failed_write(inode);
Theodore Ts'o47564bf2013-02-09 09:24:14 -05002964
2965 if (ret == -ENOSPC &&
2966 ext4_should_retry_alloc(inode->i_sb, &retries))
Zhang Yicc883232021-07-16 20:20:24 +08002967 goto retry;
Theodore Ts'o47564bf2013-02-09 09:24:14 -05002968 return ret;
Alex Tomas64769242008-07-11 19:27:31 -04002969 }
2970
Theodore Ts'o47564bf2013-02-09 09:24:14 -05002971 *pagep = page;
Alex Tomas64769242008-07-11 19:27:31 -04002972 return ret;
2973}
2974
Mingming Cao632eaea2008-07-11 19:27:31 -04002975/*
2976 * Check if we should update i_disksize
2977 * when write to the end of file but not require block allocation
2978 */
2979static int ext4_da_should_update_i_disksize(struct page *page,
Theodore Ts'ode9a55b2009-06-14 17:45:34 -04002980 unsigned long offset)
Mingming Cao632eaea2008-07-11 19:27:31 -04002981{
2982 struct buffer_head *bh;
2983 struct inode *inode = page->mapping->host;
2984 unsigned int idx;
2985 int i;
2986
2987 bh = page_buffers(page);
2988 idx = offset >> inode->i_blkbits;
2989
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04002990 for (i = 0; i < idx; i++)
Mingming Cao632eaea2008-07-11 19:27:31 -04002991 bh = bh->b_this_page;
2992
Aneesh Kumar K.V29fa89d2009-05-12 16:30:27 -04002993 if (!buffer_mapped(bh) || (buffer_delay(bh)) || buffer_unwritten(bh))
Mingming Cao632eaea2008-07-11 19:27:31 -04002994 return 0;
2995 return 1;
2996}
2997
Alex Tomas64769242008-07-11 19:27:31 -04002998static int ext4_da_write_end(struct file *file,
Theodore Ts'ode9a55b2009-06-14 17:45:34 -04002999 struct address_space *mapping,
3000 loff_t pos, unsigned len, unsigned copied,
3001 struct page *page, void *fsdata)
Alex Tomas64769242008-07-11 19:27:31 -04003002{
3003 struct inode *inode = mapping->host;
Alex Tomas64769242008-07-11 19:27:31 -04003004 loff_t new_i_size;
Mingming Cao632eaea2008-07-11 19:27:31 -04003005 unsigned long start, end;
Aneesh Kumar K.V79f0be82008-10-08 23:13:30 -04003006 int write_mode = (int)(unsigned long)fsdata;
3007
Theodore Ts'o74d553a2013-04-03 12:39:17 -04003008 if (write_mode == FALL_BACK_TO_NONDELALLOC)
3009 return ext4_write_end(file, mapping, pos,
3010 len, copied, page, fsdata);
Mingming Cao632eaea2008-07-11 19:27:31 -04003011
Theodore Ts'o9bffad12009-06-17 11:48:11 -04003012 trace_ext4_da_write_end(inode, pos, len, copied);
Tao Ma9c3569b2012-12-10 14:05:57 -05003013
3014 if (write_mode != CONVERT_INLINE_DATA &&
3015 ext4_test_inode_state(inode, EXT4_STATE_MAY_INLINE_DATA) &&
3016 ext4_has_inline_data(inode))
Zhang Yi6984aef2021-07-16 20:20:23 +08003017 return ext4_write_inline_data_end(inode, pos, len, copied, page);
Tao Ma9c3569b2012-12-10 14:05:57 -05003018
Alex Tomas64769242008-07-11 19:27:31 -04003019 start = pos & (PAGE_SIZE - 1);
3020 end = start + copied - 1;
Alex Tomas64769242008-07-11 19:27:31 -04003021
Alex Tomas64769242008-07-11 19:27:31 -04003022 /*
Zhang Yi4df031f2021-07-16 20:20:21 +08003023 * Since we are holding inode lock, we are sure i_disksize <=
3024 * i_size. We also know that if i_disksize < i_size, there are
3025 * delalloc writes pending in the range upto i_size. If the end of
3026 * the current write is <= i_size, there's no need to touch
3027 * i_disksize since writeback will push i_disksize upto i_size
3028 * eventually. If the end of the current write is > i_size and
3029 * inside an allocated block (ext4_da_should_update_i_disksize()
3030 * check), we need to update i_disksize here as neither
3031 * ext4_writepage() nor certain ext4_writepages() paths not
3032 * allocating blocks update i_disksize.
3033 *
3034 * Note that we defer inode dirtying to generic_write_end() /
3035 * ext4_da_write_inline_data_end().
Mingming Caod2a17632008-07-14 17:52:37 -04003036 */
Alex Tomas64769242008-07-11 19:27:31 -04003037 new_i_size = pos + copied;
Zhang Yi6984aef2021-07-16 20:20:23 +08003038 if (copied && new_i_size > inode->i_size &&
3039 ext4_da_should_update_i_disksize(page, end))
3040 ext4_update_i_disksize(inode, new_i_size);
Theodore Ts'occd25062009-02-26 01:04:07 -05003041
Zhang Yicc883232021-07-16 20:20:24 +08003042 return generic_write_end(file, mapping, pos, len, copied, page, fsdata);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003043}
3044
Theodore Ts'occd25062009-02-26 01:04:07 -05003045/*
3046 * Force all delayed allocation blocks to be allocated for a given inode.
3047 */
3048int ext4_alloc_da_blocks(struct inode *inode)
3049{
3050 trace_ext4_alloc_da_blocks(inode);
3051
Theodore Ts'o71d4f7d2014-07-15 06:02:38 -04003052 if (!EXT4_I(inode)->i_reserved_data_blocks)
Theodore Ts'occd25062009-02-26 01:04:07 -05003053 return 0;
3054
3055 /*
3056 * We do something simple for now. The filemap_flush() will
3057 * also start triggering a write of the data blocks, which is
3058 * not strictly speaking necessary (and for users of
3059 * laptop_mode, not even desirable). However, to do otherwise
3060 * would require replicating code paths in:
Theodore Ts'ode9a55b2009-06-14 17:45:34 -04003061 *
Theodore Ts'o20970ba2013-06-06 14:00:46 -04003062 * ext4_writepages() ->
Theodore Ts'occd25062009-02-26 01:04:07 -05003063 * write_cache_pages() ---> (via passed in callback function)
3064 * __mpage_da_writepage() -->
3065 * mpage_add_bh_to_extent()
3066 * mpage_da_map_blocks()
3067 *
3068 * The problem is that write_cache_pages(), located in
3069 * mm/page-writeback.c, marks pages clean in preparation for
3070 * doing I/O, which is not desirable if we're not planning on
3071 * doing I/O at all.
3072 *
3073 * We could call write_cache_pages(), and then redirty all of
Wu Fengguang380cf092010-11-11 19:23:29 +08003074 * the pages by calling redirty_page_for_writepage() but that
Theodore Ts'occd25062009-02-26 01:04:07 -05003075 * would be ugly in the extreme. So instead we would need to
3076 * replicate parts of the code in the above functions,
Lucas De Marchi25985ed2011-03-30 22:57:33 -03003077 * simplifying them because we wouldn't actually intend to
Theodore Ts'occd25062009-02-26 01:04:07 -05003078 * write out the pages, but rather only collect contiguous
3079 * logical block extents, call the multi-block allocator, and
3080 * then update the buffer heads with the block allocations.
Theodore Ts'ode9a55b2009-06-14 17:45:34 -04003081 *
Theodore Ts'occd25062009-02-26 01:04:07 -05003082 * For now, though, we'll cheat by calling filemap_flush(),
3083 * which will map the blocks, and start the I/O, but not
3084 * actually wait for the I/O to complete.
3085 */
3086 return filemap_flush(inode->i_mapping);
3087}
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003088
3089/*
3090 * bmap() is special. It gets used by applications such as lilo and by
3091 * the swapper to find the on-disk block of a specific piece of data.
3092 *
3093 * Naturally, this is dangerous if the block concerned is still in the
3094 * journal. If somebody makes a swapfile on an ext4 data-journaling
3095 * filesystem and enables swap, then they may get a nasty shock when the
3096 * data getting swapped to that swapfile suddenly gets overwritten by
3097 * the original zero's written out previously to the journal and
3098 * awaiting writeback in the kernel's buffer cache.
3099 *
3100 * So, if we see any bmap calls here on a modified, data-journaled file,
3101 * take extra steps to flush any blocks which might be in the cache.
3102 */
3103static sector_t ext4_bmap(struct address_space *mapping, sector_t block)
3104{
3105 struct inode *inode = mapping->host;
3106 journal_t *journal;
3107 int err;
3108
Tao Ma46c7f252012-12-10 14:04:52 -05003109 /*
3110 * We can get here for an inline file via the FIBMAP ioctl
3111 */
3112 if (ext4_has_inline_data(inode))
3113 return 0;
3114
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003115 if (mapping_tagged(mapping, PAGECACHE_TAG_DIRTY) &&
3116 test_opt(inode->i_sb, DELALLOC)) {
3117 /*
3118 * With delalloc we want to sync the file
3119 * so that we can make sure we allocate
3120 * blocks for file
3121 */
3122 filemap_write_and_wait(mapping);
3123 }
3124
Theodore Ts'o19f5fb72010-01-24 14:34:07 -05003125 if (EXT4_JOURNAL(inode) &&
3126 ext4_test_inode_state(inode, EXT4_STATE_JDATA)) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003127 /*
3128 * This is a REALLY heavyweight approach, but the use of
3129 * bmap on dirty files is expected to be extremely rare:
3130 * only if we run lilo or swapon on a freshly made file
3131 * do we expect this to happen.
3132 *
3133 * (bmap requires CAP_SYS_RAWIO so this does not
3134 * represent an unprivileged user DOS attack --- we'd be
3135 * in trouble if mortal users could trigger this path at
3136 * will.)
3137 *
3138 * NB. EXT4_STATE_JDATA is not set on files other than
3139 * regular files. If somebody wants to bmap a directory
3140 * or symlink and gets confused because the buffer
3141 * hasn't yet been flushed to disk, they deserve
3142 * everything they get.
3143 */
3144
Theodore Ts'o19f5fb72010-01-24 14:34:07 -05003145 ext4_clear_inode_state(inode, EXT4_STATE_JDATA);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003146 journal = EXT4_JOURNAL(inode);
3147 jbd2_journal_lock_updates(journal);
Leah Rumancik01d5d962021-05-18 15:13:25 +00003148 err = jbd2_journal_flush(journal, 0);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003149 jbd2_journal_unlock_updates(journal);
3150
3151 if (err)
3152 return 0;
3153 }
3154
Ritesh Harjaniac58e4f2020-02-28 14:56:56 +05303155 return iomap_bmap(mapping, block, &ext4_iomap_ops);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003156}
3157
Mingming Cao617ba132006-10-11 01:20:53 -07003158static int ext4_readpage(struct file *file, struct page *page)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003159{
Tao Ma46c7f252012-12-10 14:04:52 -05003160 int ret = -EAGAIN;
3161 struct inode *inode = page->mapping->host;
3162
Jiaying Zhang0562e0b2011-03-21 21:38:05 -04003163 trace_ext4_readpage(page);
Tao Ma46c7f252012-12-10 14:04:52 -05003164
3165 if (ext4_has_inline_data(inode))
3166 ret = ext4_readpage_inline(inode, page);
3167
3168 if (ret == -EAGAIN)
Matthew Wilcox (Oracle)a07f6242020-06-01 21:47:20 -07003169 return ext4_mpage_readpages(inode, NULL, page);
Tao Ma46c7f252012-12-10 14:04:52 -05003170
3171 return ret;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003172}
3173
Matthew Wilcox (Oracle)6311f91f2020-06-01 21:47:16 -07003174static void ext4_readahead(struct readahead_control *rac)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003175{
Matthew Wilcox (Oracle)6311f91f2020-06-01 21:47:16 -07003176 struct inode *inode = rac->mapping->host;
Tao Ma46c7f252012-12-10 14:04:52 -05003177
Matthew Wilcox (Oracle)6311f91f2020-06-01 21:47:16 -07003178 /* If the file has inline data, no need to do readahead. */
Tao Ma46c7f252012-12-10 14:04:52 -05003179 if (ext4_has_inline_data(inode))
Matthew Wilcox (Oracle)6311f91f2020-06-01 21:47:16 -07003180 return;
Tao Ma46c7f252012-12-10 14:04:52 -05003181
Matthew Wilcox (Oracle)a07f6242020-06-01 21:47:20 -07003182 ext4_mpage_readpages(inode, rac, NULL);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003183}
3184
Lukas Czernerd47992f2013-05-21 23:17:23 -04003185static void ext4_invalidatepage(struct page *page, unsigned int offset,
3186 unsigned int length)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003187{
Lukas Czernerca99fdd2013-05-21 23:25:01 -04003188 trace_ext4_invalidatepage(page, offset, length);
Jiaying Zhang0562e0b2011-03-21 21:38:05 -04003189
Jan Kara4520fb32012-12-25 13:28:54 -05003190 /* No journalling happens on data buffers when this function is used */
3191 WARN_ON(page_has_buffers(page) && buffer_jbd(page_buffers(page)));
3192
Lukas Czernerca99fdd2013-05-21 23:25:01 -04003193 block_invalidatepage(page, offset, length);
Jan Kara4520fb32012-12-25 13:28:54 -05003194}
3195
Jan Kara53e87262012-12-25 13:29:52 -05003196static int __ext4_journalled_invalidatepage(struct page *page,
Lukas Czernerca99fdd2013-05-21 23:25:01 -04003197 unsigned int offset,
3198 unsigned int length)
Jan Kara4520fb32012-12-25 13:28:54 -05003199{
3200 journal_t *journal = EXT4_JOURNAL(page->mapping->host);
3201
Lukas Czernerca99fdd2013-05-21 23:25:01 -04003202 trace_ext4_journalled_invalidatepage(page, offset, length);
Jan Kara4520fb32012-12-25 13:28:54 -05003203
Jiaying Zhang744692d2010-03-04 16:14:02 -05003204 /*
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003205 * If it's a full truncate we just forget about the pending dirtying
3206 */
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03003207 if (offset == 0 && length == PAGE_SIZE)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003208 ClearPageChecked(page);
3209
Lukas Czernerca99fdd2013-05-21 23:25:01 -04003210 return jbd2_journal_invalidatepage(journal, page, offset, length);
Jan Kara53e87262012-12-25 13:29:52 -05003211}
3212
3213/* Wrapper for aops... */
3214static void ext4_journalled_invalidatepage(struct page *page,
Lukas Czernerd47992f2013-05-21 23:17:23 -04003215 unsigned int offset,
3216 unsigned int length)
Jan Kara53e87262012-12-25 13:29:52 -05003217{
Lukas Czernerca99fdd2013-05-21 23:25:01 -04003218 WARN_ON(__ext4_journalled_invalidatepage(page, offset, length) < 0);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003219}
3220
Mingming Cao617ba132006-10-11 01:20:53 -07003221static int ext4_releasepage(struct page *page, gfp_t wait)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003222{
Mingming Cao617ba132006-10-11 01:20:53 -07003223 journal_t *journal = EXT4_JOURNAL(page->mapping->host);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003224
Jiaying Zhang0562e0b2011-03-21 21:38:05 -04003225 trace_ext4_releasepage(page);
3226
Jan Karae1c36592013-03-10 22:19:00 -04003227 /* Page has dirty journalled data -> cannot release */
3228 if (PageChecked(page))
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003229 return 0;
Frank Mayhar03901312009-01-07 00:06:22 -05003230 if (journal)
zhangyi (F)529a7812020-06-20 10:54:27 +08003231 return jbd2_journal_try_to_free_buffers(journal, page);
Frank Mayhar03901312009-01-07 00:06:22 -05003232 else
3233 return try_to_free_buffers(page);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003234}
3235
Jan Karab8a61762017-11-01 16:36:45 +01003236static bool ext4_inode_datasync_dirty(struct inode *inode)
3237{
3238 journal_t *journal = EXT4_SB(inode->i_sb)->s_journal;
3239
Harshad Shirwadkaraa75f4d2020-10-15 13:37:57 -07003240 if (journal) {
3241 if (jbd2_transaction_committed(journal,
Andrea Righid0520df2020-10-26 21:49:13 -07003242 EXT4_I(inode)->i_datasync_tid))
3243 return false;
3244 if (test_opt2(inode->i_sb, JOURNAL_FAST_COMMIT))
Harshad Shirwadkar1ceecb52020-11-05 19:59:06 -08003245 return !list_empty(&EXT4_I(inode)->i_fc_list);
Andrea Righid0520df2020-10-26 21:49:13 -07003246 return true;
Harshad Shirwadkaraa75f4d2020-10-15 13:37:57 -07003247 }
3248
Jan Karab8a61762017-11-01 16:36:45 +01003249 /* Any metadata buffers to write? */
3250 if (!list_empty(&inode->i_mapping->private_list))
3251 return true;
3252 return inode->i_state & I_DIRTY_DATASYNC;
3253}
3254
Matthew Bobrowskic8fdfe292019-11-05 22:59:56 +11003255static void ext4_set_iomap(struct inode *inode, struct iomap *iomap,
3256 struct ext4_map_blocks *map, loff_t offset,
Christoph Hellwigde205112021-11-29 11:22:00 +01003257 loff_t length, unsigned int flags)
Jan Kara364443c2016-11-20 17:36:06 -05003258{
Matthew Bobrowskic8fdfe292019-11-05 22:59:56 +11003259 u8 blkbits = inode->i_blkbits;
3260
3261 /*
3262 * Writes that span EOF might trigger an I/O size update on completion,
3263 * so consider them to be dirty for the purpose of O_DSYNC, even if
3264 * there is no other metadata changes being made or are pending.
3265 */
3266 iomap->flags = 0;
3267 if (ext4_inode_datasync_dirty(inode) ||
3268 offset + length > i_size_read(inode))
3269 iomap->flags |= IOMAP_F_DIRTY;
3270
3271 if (map->m_flags & EXT4_MAP_NEW)
3272 iomap->flags |= IOMAP_F_NEW;
3273
Christoph Hellwigde205112021-11-29 11:22:00 +01003274 if (flags & IOMAP_DAX)
3275 iomap->dax_dev = EXT4_SB(inode->i_sb)->s_daxdev;
3276 else
3277 iomap->bdev = inode->i_sb->s_bdev;
Matthew Bobrowskic8fdfe292019-11-05 22:59:56 +11003278 iomap->offset = (u64) map->m_lblk << blkbits;
3279 iomap->length = (u64) map->m_len << blkbits;
3280
Ritesh Harjani63867222020-02-28 14:56:54 +05303281 if ((map->m_flags & EXT4_MAP_MAPPED) &&
3282 !ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS))
3283 iomap->flags |= IOMAP_F_MERGED;
3284
Matthew Bobrowskic8fdfe292019-11-05 22:59:56 +11003285 /*
3286 * Flags passed to ext4_map_blocks() for direct I/O writes can result
3287 * in m_flags having both EXT4_MAP_MAPPED and EXT4_MAP_UNWRITTEN bits
3288 * set. In order for any allocated unwritten extents to be converted
3289 * into written extents correctly within the ->end_io() handler, we
3290 * need to ensure that the iomap->type is set appropriately. Hence, the
3291 * reason why we need to check whether the EXT4_MAP_UNWRITTEN bit has
3292 * been set first.
3293 */
3294 if (map->m_flags & EXT4_MAP_UNWRITTEN) {
3295 iomap->type = IOMAP_UNWRITTEN;
3296 iomap->addr = (u64) map->m_pblk << blkbits;
Christoph Hellwigde205112021-11-29 11:22:00 +01003297 if (flags & IOMAP_DAX)
3298 iomap->addr += EXT4_SB(inode->i_sb)->s_dax_part_off;
Matthew Bobrowskic8fdfe292019-11-05 22:59:56 +11003299 } else if (map->m_flags & EXT4_MAP_MAPPED) {
3300 iomap->type = IOMAP_MAPPED;
3301 iomap->addr = (u64) map->m_pblk << blkbits;
Christoph Hellwigde205112021-11-29 11:22:00 +01003302 if (flags & IOMAP_DAX)
3303 iomap->addr += EXT4_SB(inode->i_sb)->s_dax_part_off;
Matthew Bobrowskic8fdfe292019-11-05 22:59:56 +11003304 } else {
3305 iomap->type = IOMAP_HOLE;
3306 iomap->addr = IOMAP_NULL_ADDR;
3307 }
3308}
3309
Matthew Bobrowskif063db52019-11-05 23:00:14 +11003310static int ext4_iomap_alloc(struct inode *inode, struct ext4_map_blocks *map,
3311 unsigned int flags)
3312{
3313 handle_t *handle;
Matthew Bobrowski378f32b2019-11-05 23:02:39 +11003314 u8 blkbits = inode->i_blkbits;
3315 int ret, dio_credits, m_flags = 0, retries = 0;
Matthew Bobrowskif063db52019-11-05 23:00:14 +11003316
3317 /*
3318 * Trim the mapping request to the maximum value that we can map at
3319 * once for direct I/O.
3320 */
3321 if (map->m_len > DIO_MAX_BLOCKS)
3322 map->m_len = DIO_MAX_BLOCKS;
3323 dio_credits = ext4_chunk_trans_blocks(inode, map->m_len);
3324
3325retry:
3326 /*
3327 * Either we allocate blocks and then don't get an unwritten extent, so
3328 * in that case we have reserved enough credits. Or, the blocks are
3329 * already allocated and unwritten. In that case, the extent conversion
3330 * fits into the credits as well.
3331 */
3332 handle = ext4_journal_start(inode, EXT4_HT_MAP_BLOCKS, dio_credits);
3333 if (IS_ERR(handle))
3334 return PTR_ERR(handle);
3335
Matthew Bobrowski378f32b2019-11-05 23:02:39 +11003336 /*
3337 * DAX and direct I/O are the only two operations that are currently
3338 * supported with IOMAP_WRITE.
3339 */
Christoph Hellwig952da062021-11-29 11:21:58 +01003340 WARN_ON(!(flags & (IOMAP_DAX | IOMAP_DIRECT)));
3341 if (flags & IOMAP_DAX)
Matthew Bobrowski378f32b2019-11-05 23:02:39 +11003342 m_flags = EXT4_GET_BLOCKS_CREATE_ZERO;
3343 /*
3344 * We use i_size instead of i_disksize here because delalloc writeback
3345 * can complete at any point during the I/O and subsequently push the
3346 * i_disksize out to i_size. This could be beyond where direct I/O is
3347 * happening and thus expose allocated blocks to direct I/O reads.
3348 */
Jan Karad0b040f2021-04-12 12:23:33 +02003349 else if (((loff_t)map->m_lblk << blkbits) >= i_size_read(inode))
Matthew Bobrowski378f32b2019-11-05 23:02:39 +11003350 m_flags = EXT4_GET_BLOCKS_CREATE;
3351 else if (ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS))
3352 m_flags = EXT4_GET_BLOCKS_IO_CREATE_EXT;
3353
3354 ret = ext4_map_blocks(handle, inode, map, m_flags);
3355
3356 /*
3357 * We cannot fill holes in indirect tree based inodes as that could
3358 * expose stale data in the case of a crash. Use the magic error code
3359 * to fallback to buffered I/O.
3360 */
3361 if (!m_flags && !ret)
3362 ret = -ENOTBLK;
Matthew Bobrowskif063db52019-11-05 23:00:14 +11003363
Matthew Bobrowskif063db52019-11-05 23:00:14 +11003364 ext4_journal_stop(handle);
3365 if (ret == -ENOSPC && ext4_should_retry_alloc(inode->i_sb, &retries))
3366 goto retry;
3367
3368 return ret;
3369}
3370
3371
Jan Kara364443c2016-11-20 17:36:06 -05003372static int ext4_iomap_begin(struct inode *inode, loff_t offset, loff_t length,
Goldwyn Rodriguesc039b992019-10-18 16:44:10 -07003373 unsigned flags, struct iomap *iomap, struct iomap *srcmap)
Jan Kara364443c2016-11-20 17:36:06 -05003374{
Jan Kara364443c2016-11-20 17:36:06 -05003375 int ret;
Matthew Bobrowski09edf4d2019-11-05 23:03:31 +11003376 struct ext4_map_blocks map;
3377 u8 blkbits = inode->i_blkbits;
Jan Kara364443c2016-11-20 17:36:06 -05003378
Theodore Ts'obcd8e912018-09-01 12:45:04 -04003379 if ((offset >> blkbits) > EXT4_MAX_LOGICAL_BLOCK)
3380 return -EINVAL;
Andreas Gruenbacher7046ae32017-10-01 17:57:54 -04003381
Matthew Bobrowski09edf4d2019-11-05 23:03:31 +11003382 if (WARN_ON_ONCE(ext4_has_inline_data(inode)))
3383 return -ERANGE;
Jan Kara364443c2016-11-20 17:36:06 -05003384
Matthew Bobrowski09edf4d2019-11-05 23:03:31 +11003385 /*
3386 * Calculate the first and last logical blocks respectively.
3387 */
3388 map.m_lblk = offset >> blkbits;
3389 map.m_len = min_t(loff_t, (offset + length - 1) >> blkbits,
3390 EXT4_MAX_LOGICAL_BLOCK) - map.m_lblk + 1;
Jan Kara364443c2016-11-20 17:36:06 -05003391
Ritesh Harjani9faac622020-09-18 10:36:35 +05303392 if (flags & IOMAP_WRITE) {
3393 /*
3394 * We check here if the blocks are already allocated, then we
3395 * don't need to start a journal txn and we can directly return
3396 * the mapping information. This could boost performance
3397 * especially in multi-threaded overwrite requests.
3398 */
3399 if (offset + length <= i_size_read(inode)) {
3400 ret = ext4_map_blocks(NULL, inode, &map, 0);
3401 if (ret > 0 && (map.m_flags & EXT4_MAP_MAPPED))
3402 goto out;
3403 }
Matthew Bobrowskif063db52019-11-05 23:00:14 +11003404 ret = ext4_iomap_alloc(inode, &map, flags);
Ritesh Harjani9faac622020-09-18 10:36:35 +05303405 } else {
Jan Kara776722e2016-11-20 18:09:11 -05003406 ret = ext4_map_blocks(NULL, inode, &map, 0);
Ritesh Harjani9faac622020-09-18 10:36:35 +05303407 }
Christoph Hellwig545052e2017-10-01 17:58:54 -04003408
Matthew Bobrowskif063db52019-11-05 23:00:14 +11003409 if (ret < 0)
3410 return ret;
Ritesh Harjani9faac622020-09-18 10:36:35 +05303411out:
Christoph Hellwigde205112021-11-29 11:22:00 +01003412 ext4_set_iomap(inode, iomap, &map, offset, length, flags);
Christoph Hellwig545052e2017-10-01 17:58:54 -04003413
Jan Kara364443c2016-11-20 17:36:06 -05003414 return 0;
3415}
3416
Jan Kara8cd115b2019-12-18 18:44:33 +01003417static int ext4_iomap_overwrite_begin(struct inode *inode, loff_t offset,
3418 loff_t length, unsigned flags, struct iomap *iomap,
3419 struct iomap *srcmap)
3420{
3421 int ret;
3422
3423 /*
3424 * Even for writes we don't need to allocate blocks, so just pretend
3425 * we are reading to save overhead of starting a transaction.
3426 */
3427 flags &= ~IOMAP_WRITE;
3428 ret = ext4_iomap_begin(inode, offset, length, flags, iomap, srcmap);
3429 WARN_ON_ONCE(iomap->type != IOMAP_MAPPED);
3430 return ret;
3431}
3432
Jan Kara776722e2016-11-20 18:09:11 -05003433static int ext4_iomap_end(struct inode *inode, loff_t offset, loff_t length,
3434 ssize_t written, unsigned flags, struct iomap *iomap)
3435{
Jan Kara776722e2016-11-20 18:09:11 -05003436 /*
Matthew Bobrowski378f32b2019-11-05 23:02:39 +11003437 * Check to see whether an error occurred while writing out the data to
3438 * the allocated blocks. If so, return the magic error code so that we
3439 * fallback to buffered I/O and attempt to complete the remainder of
3440 * the I/O. Any blocks that may have been allocated in preparation for
3441 * the direct I/O will be reused during buffered I/O.
Jan Kara776722e2016-11-20 18:09:11 -05003442 */
Matthew Bobrowski378f32b2019-11-05 23:02:39 +11003443 if (flags & (IOMAP_WRITE | IOMAP_DIRECT) && written == 0)
3444 return -ENOTBLK;
Jan Kara776722e2016-11-20 18:09:11 -05003445
Matthew Bobrowski569342d2019-11-05 23:01:51 +11003446 return 0;
Jan Kara776722e2016-11-20 18:09:11 -05003447}
3448
Christoph Hellwig8ff6daa2017-01-27 23:20:26 -08003449const struct iomap_ops ext4_iomap_ops = {
Jan Kara364443c2016-11-20 17:36:06 -05003450 .iomap_begin = ext4_iomap_begin,
Jan Kara776722e2016-11-20 18:09:11 -05003451 .iomap_end = ext4_iomap_end,
Jan Kara364443c2016-11-20 17:36:06 -05003452};
3453
Jan Kara8cd115b2019-12-18 18:44:33 +01003454const struct iomap_ops ext4_iomap_overwrite_ops = {
3455 .iomap_begin = ext4_iomap_overwrite_begin,
3456 .iomap_end = ext4_iomap_end,
3457};
3458
Matthew Bobrowski09edf4d2019-11-05 23:03:31 +11003459static bool ext4_iomap_is_delalloc(struct inode *inode,
3460 struct ext4_map_blocks *map)
Mingming Cao4c0425f2009-09-28 15:48:41 -04003461{
Matthew Bobrowski09edf4d2019-11-05 23:03:31 +11003462 struct extent_status es;
3463 ext4_lblk_t offset = 0, end = map->m_lblk + map->m_len - 1;
Mingming Cao4c0425f2009-09-28 15:48:41 -04003464
Matthew Bobrowski09edf4d2019-11-05 23:03:31 +11003465 ext4_es_find_extent_range(inode, &ext4_es_is_delayed,
3466 map->m_lblk, end, &es);
Mingming4b70df12009-11-03 14:44:54 -05003467
Matthew Bobrowski09edf4d2019-11-05 23:03:31 +11003468 if (!es.es_len || es.es_lblk > end)
3469 return false;
3470
3471 if (es.es_lblk > map->m_lblk) {
3472 map->m_len = es.es_lblk - map->m_lblk;
3473 return false;
3474 }
3475
3476 offset = map->m_lblk - es.es_lblk;
3477 map->m_len = es.es_len - offset;
3478
3479 return true;
3480}
3481
3482static int ext4_iomap_begin_report(struct inode *inode, loff_t offset,
3483 loff_t length, unsigned int flags,
3484 struct iomap *iomap, struct iomap *srcmap)
3485{
3486 int ret;
3487 bool delalloc = false;
3488 struct ext4_map_blocks map;
3489 u8 blkbits = inode->i_blkbits;
3490
3491 if ((offset >> blkbits) > EXT4_MAX_LOGICAL_BLOCK)
3492 return -EINVAL;
3493
3494 if (ext4_has_inline_data(inode)) {
3495 ret = ext4_inline_data_iomap(inode, iomap);
3496 if (ret != -EAGAIN) {
3497 if (ret == 0 && offset >= iomap->length)
3498 ret = -ENOENT;
3499 return ret;
3500 }
3501 }
Mingming Cao8d5d02e2009-09-28 15:48:29 -04003502
Jan Kara74c66bc2016-02-29 08:36:38 +11003503 /*
Matthew Bobrowski09edf4d2019-11-05 23:03:31 +11003504 * Calculate the first and last logical block respectively.
Jan Kara74c66bc2016-02-29 08:36:38 +11003505 */
Matthew Bobrowski09edf4d2019-11-05 23:03:31 +11003506 map.m_lblk = offset >> blkbits;
3507 map.m_len = min_t(loff_t, (offset + length - 1) >> blkbits,
3508 EXT4_MAX_LOGICAL_BLOCK) - map.m_lblk + 1;
3509
Ritesh Harjanib2c57642020-02-28 14:56:57 +05303510 /*
3511 * Fiemap callers may call for offset beyond s_bitmap_maxbytes.
3512 * So handle it here itself instead of querying ext4_map_blocks().
3513 * Since ext4_map_blocks() will warn about it and will return
3514 * -EIO error.
3515 */
3516 if (!(ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS))) {
3517 struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb);
3518
3519 if (offset >= sbi->s_bitmap_maxbytes) {
3520 map.m_flags = 0;
3521 goto set_iomap;
3522 }
3523 }
3524
Matthew Bobrowski09edf4d2019-11-05 23:03:31 +11003525 ret = ext4_map_blocks(NULL, inode, &map, 0);
3526 if (ret < 0)
3527 return ret;
3528 if (ret == 0)
3529 delalloc = ext4_iomap_is_delalloc(inode, &map);
3530
Ritesh Harjanib2c57642020-02-28 14:56:57 +05303531set_iomap:
Christoph Hellwigde205112021-11-29 11:22:00 +01003532 ext4_set_iomap(inode, iomap, &map, offset, length, flags);
Matthew Bobrowski09edf4d2019-11-05 23:03:31 +11003533 if (delalloc && iomap->type == IOMAP_HOLE)
3534 iomap->type = IOMAP_DELALLOC;
Christoph Hellwig187372a2016-02-08 14:40:51 +11003535
3536 return 0;
Mingming Cao4c0425f2009-09-28 15:48:41 -04003537}
Jiaying Zhangc7064ef2010-03-02 13:28:44 -05003538
Matthew Bobrowski09edf4d2019-11-05 23:03:31 +11003539const struct iomap_ops ext4_iomap_report_ops = {
3540 .iomap_begin = ext4_iomap_begin_report,
3541};
Mingming Cao4c0425f2009-09-28 15:48:41 -04003542
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003543/*
Mingming Cao617ba132006-10-11 01:20:53 -07003544 * Pages can be marked dirty completely asynchronously from ext4's journalling
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003545 * activity. By filemap_sync_pte(), try_to_unmap_one(), etc. We cannot do
3546 * much here because ->set_page_dirty is called under VFS locks. The page is
3547 * not necessarily locked.
3548 *
3549 * We cannot just dirty the page and leave attached buffers clean, because the
3550 * buffers' dirty state is "definitive". We cannot just set the buffers dirty
3551 * or jbddirty because all the journalling code will explode.
3552 *
3553 * So what we do is to mark the page "pending dirty" and next time writepage
3554 * is called, propagate that into the buffers appropriately.
3555 */
Mingming Cao617ba132006-10-11 01:20:53 -07003556static int ext4_journalled_set_page_dirty(struct page *page)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003557{
3558 SetPageChecked(page);
3559 return __set_page_dirty_nobuffers(page);
3560}
3561
Jan Kara6dcc6932016-12-01 11:46:40 -05003562static int ext4_set_page_dirty(struct page *page)
3563{
3564 WARN_ON_ONCE(!PageLocked(page) && !PageDirty(page));
3565 WARN_ON_ONCE(!page_has_buffers(page));
3566 return __set_page_dirty_buffers(page);
3567}
3568
Ritesh Harjani0e6895b2020-09-04 14:46:53 +05303569static int ext4_iomap_swap_activate(struct swap_info_struct *sis,
3570 struct file *file, sector_t *span)
3571{
3572 return iomap_swapfile_activate(sis, file, span,
3573 &ext4_iomap_report_ops);
3574}
3575
Theodore Ts'o74d553a2013-04-03 12:39:17 -04003576static const struct address_space_operations ext4_aops = {
Hisashi Hifumi8ab22b92008-07-28 15:46:36 -07003577 .readpage = ext4_readpage,
Matthew Wilcox (Oracle)6311f91f2020-06-01 21:47:16 -07003578 .readahead = ext4_readahead,
Aneesh Kumar K.V43ce1d22009-06-14 17:58:45 -04003579 .writepage = ext4_writepage,
Theodore Ts'o20970ba2013-06-06 14:00:46 -04003580 .writepages = ext4_writepages,
Hisashi Hifumi8ab22b92008-07-28 15:46:36 -07003581 .write_begin = ext4_write_begin,
Theodore Ts'o74d553a2013-04-03 12:39:17 -04003582 .write_end = ext4_write_end,
Jan Kara6dcc6932016-12-01 11:46:40 -05003583 .set_page_dirty = ext4_set_page_dirty,
Hisashi Hifumi8ab22b92008-07-28 15:46:36 -07003584 .bmap = ext4_bmap,
3585 .invalidatepage = ext4_invalidatepage,
3586 .releasepage = ext4_releasepage,
Matthew Bobrowski378f32b2019-11-05 23:02:39 +11003587 .direct_IO = noop_direct_IO,
Hisashi Hifumi8ab22b92008-07-28 15:46:36 -07003588 .migratepage = buffer_migrate_page,
3589 .is_partially_uptodate = block_is_partially_uptodate,
Andi Kleenaa261f52009-09-16 11:50:16 +02003590 .error_remove_page = generic_error_remove_page,
Ritesh Harjani0e6895b2020-09-04 14:46:53 +05303591 .swap_activate = ext4_iomap_swap_activate,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003592};
3593
Mingming Cao617ba132006-10-11 01:20:53 -07003594static const struct address_space_operations ext4_journalled_aops = {
Hisashi Hifumi8ab22b92008-07-28 15:46:36 -07003595 .readpage = ext4_readpage,
Matthew Wilcox (Oracle)6311f91f2020-06-01 21:47:16 -07003596 .readahead = ext4_readahead,
Aneesh Kumar K.V43ce1d22009-06-14 17:58:45 -04003597 .writepage = ext4_writepage,
Theodore Ts'o20970ba2013-06-06 14:00:46 -04003598 .writepages = ext4_writepages,
Hisashi Hifumi8ab22b92008-07-28 15:46:36 -07003599 .write_begin = ext4_write_begin,
3600 .write_end = ext4_journalled_write_end,
3601 .set_page_dirty = ext4_journalled_set_page_dirty,
3602 .bmap = ext4_bmap,
Jan Kara4520fb32012-12-25 13:28:54 -05003603 .invalidatepage = ext4_journalled_invalidatepage,
Hisashi Hifumi8ab22b92008-07-28 15:46:36 -07003604 .releasepage = ext4_releasepage,
Matthew Bobrowski378f32b2019-11-05 23:02:39 +11003605 .direct_IO = noop_direct_IO,
Hisashi Hifumi8ab22b92008-07-28 15:46:36 -07003606 .is_partially_uptodate = block_is_partially_uptodate,
Andi Kleenaa261f52009-09-16 11:50:16 +02003607 .error_remove_page = generic_error_remove_page,
Ritesh Harjani0e6895b2020-09-04 14:46:53 +05303608 .swap_activate = ext4_iomap_swap_activate,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003609};
3610
Alex Tomas64769242008-07-11 19:27:31 -04003611static const struct address_space_operations ext4_da_aops = {
Hisashi Hifumi8ab22b92008-07-28 15:46:36 -07003612 .readpage = ext4_readpage,
Matthew Wilcox (Oracle)6311f91f2020-06-01 21:47:16 -07003613 .readahead = ext4_readahead,
Aneesh Kumar K.V43ce1d22009-06-14 17:58:45 -04003614 .writepage = ext4_writepage,
Theodore Ts'o20970ba2013-06-06 14:00:46 -04003615 .writepages = ext4_writepages,
Hisashi Hifumi8ab22b92008-07-28 15:46:36 -07003616 .write_begin = ext4_da_write_begin,
3617 .write_end = ext4_da_write_end,
Jan Kara6dcc6932016-12-01 11:46:40 -05003618 .set_page_dirty = ext4_set_page_dirty,
Hisashi Hifumi8ab22b92008-07-28 15:46:36 -07003619 .bmap = ext4_bmap,
Eric Whitney8fcc3a52019-08-22 23:22:14 -04003620 .invalidatepage = ext4_invalidatepage,
Hisashi Hifumi8ab22b92008-07-28 15:46:36 -07003621 .releasepage = ext4_releasepage,
Matthew Bobrowski378f32b2019-11-05 23:02:39 +11003622 .direct_IO = noop_direct_IO,
Hisashi Hifumi8ab22b92008-07-28 15:46:36 -07003623 .migratepage = buffer_migrate_page,
3624 .is_partially_uptodate = block_is_partially_uptodate,
Andi Kleenaa261f52009-09-16 11:50:16 +02003625 .error_remove_page = generic_error_remove_page,
Ritesh Harjani0e6895b2020-09-04 14:46:53 +05303626 .swap_activate = ext4_iomap_swap_activate,
Alex Tomas64769242008-07-11 19:27:31 -04003627};
3628
Dan Williams5f0663b2017-12-21 12:25:11 -08003629static const struct address_space_operations ext4_dax_aops = {
3630 .writepages = ext4_dax_writepages,
3631 .direct_IO = noop_direct_IO,
Matthew Wilcox (Oracle)b82a96c2021-06-28 19:36:27 -07003632 .set_page_dirty = __set_page_dirty_no_writeback,
Toshi Kani94dbb632018-09-15 21:23:41 -04003633 .bmap = ext4_bmap,
Dan Williams5f0663b2017-12-21 12:25:11 -08003634 .invalidatepage = noop_invalidatepage,
Ritesh Harjani0e6895b2020-09-04 14:46:53 +05303635 .swap_activate = ext4_iomap_swap_activate,
Dan Williams5f0663b2017-12-21 12:25:11 -08003636};
3637
Mingming Cao617ba132006-10-11 01:20:53 -07003638void ext4_set_aops(struct inode *inode)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003639{
Lukas Czerner3d2b1582012-02-20 17:53:00 -05003640 switch (ext4_inode_journal_mode(inode)) {
3641 case EXT4_INODE_ORDERED_DATA_MODE:
Lukas Czerner3d2b1582012-02-20 17:53:00 -05003642 case EXT4_INODE_WRITEBACK_DATA_MODE:
Lukas Czerner3d2b1582012-02-20 17:53:00 -05003643 break;
3644 case EXT4_INODE_JOURNAL_DATA_MODE:
Mingming Cao617ba132006-10-11 01:20:53 -07003645 inode->i_mapping->a_ops = &ext4_journalled_aops;
Theodore Ts'o74d553a2013-04-03 12:39:17 -04003646 return;
Lukas Czerner3d2b1582012-02-20 17:53:00 -05003647 default:
3648 BUG();
3649 }
Dan Williams5f0663b2017-12-21 12:25:11 -08003650 if (IS_DAX(inode))
3651 inode->i_mapping->a_ops = &ext4_dax_aops;
3652 else if (test_opt(inode->i_sb, DELALLOC))
Theodore Ts'o74d553a2013-04-03 12:39:17 -04003653 inode->i_mapping->a_ops = &ext4_da_aops;
3654 else
3655 inode->i_mapping->a_ops = &ext4_aops;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003656}
3657
Ross Zwisler923ae0f2015-02-16 15:59:38 -08003658static int __ext4_block_zero_page_range(handle_t *handle,
Lukas Czernerd863dc32013-05-27 23:32:35 -04003659 struct address_space *mapping, loff_t from, loff_t length)
3660{
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03003661 ext4_fsblk_t index = from >> PAGE_SHIFT;
3662 unsigned offset = from & (PAGE_SIZE-1);
Ross Zwisler923ae0f2015-02-16 15:59:38 -08003663 unsigned blocksize, pos;
Lukas Czernerd863dc32013-05-27 23:32:35 -04003664 ext4_lblk_t iblock;
3665 struct inode *inode = mapping->host;
3666 struct buffer_head *bh;
3667 struct page *page;
3668 int err = 0;
3669
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03003670 page = find_or_create_page(mapping, from >> PAGE_SHIFT,
Michal Hockoc62d2552015-11-06 16:28:49 -08003671 mapping_gfp_constraint(mapping, ~__GFP_FS));
Lukas Czernerd863dc32013-05-27 23:32:35 -04003672 if (!page)
3673 return -ENOMEM;
3674
3675 blocksize = inode->i_sb->s_blocksize;
Lukas Czernerd863dc32013-05-27 23:32:35 -04003676
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03003677 iblock = index << (PAGE_SHIFT - inode->i_sb->s_blocksize_bits);
Lukas Czernerd863dc32013-05-27 23:32:35 -04003678
3679 if (!page_has_buffers(page))
3680 create_empty_buffers(page, blocksize, 0);
3681
3682 /* Find the buffer that contains "offset" */
3683 bh = page_buffers(page);
3684 pos = blocksize;
3685 while (offset >= pos) {
3686 bh = bh->b_this_page;
3687 iblock++;
3688 pos += blocksize;
3689 }
Lukas Czernerd863dc32013-05-27 23:32:35 -04003690 if (buffer_freed(bh)) {
3691 BUFFER_TRACE(bh, "freed: skip");
3692 goto unlock;
3693 }
Lukas Czernerd863dc32013-05-27 23:32:35 -04003694 if (!buffer_mapped(bh)) {
3695 BUFFER_TRACE(bh, "unmapped");
3696 ext4_get_block(inode, iblock, bh, 0);
3697 /* unmapped? It's a hole - nothing to do */
3698 if (!buffer_mapped(bh)) {
3699 BUFFER_TRACE(bh, "still unmapped");
3700 goto unlock;
3701 }
3702 }
3703
3704 /* Ok, it's mapped. Make sure it's up-to-date */
3705 if (PageUptodate(page))
3706 set_buffer_uptodate(bh);
3707
3708 if (!buffer_uptodate(bh)) {
zhangyi (F)2d069c02020-09-24 15:33:33 +08003709 err = ext4_read_bh_lock(bh, 0, true);
3710 if (err)
Lukas Czernerd863dc32013-05-27 23:32:35 -04003711 goto unlock;
Eric Biggers4f74d152020-07-02 01:56:07 +00003712 if (fscrypt_inode_uses_fs_layer_crypto(inode)) {
Michael Halcrowc9c74292015-04-12 00:56:10 -04003713 /* We expect the key to be set. */
Jaegeuk Kima7550b32016-07-10 14:01:03 -04003714 BUG_ON(!fscrypt_has_encryption_key(inode));
Eric Biggers834f1562019-12-26 09:41:05 -06003715 err = fscrypt_decrypt_pagecache_blocks(page, blocksize,
3716 bh_offset(bh));
3717 if (err) {
3718 clear_buffer_uptodate(bh);
3719 goto unlock;
3720 }
Michael Halcrowc9c74292015-04-12 00:56:10 -04003721 }
Lukas Czernerd863dc32013-05-27 23:32:35 -04003722 }
Lukas Czernerd863dc32013-05-27 23:32:35 -04003723 if (ext4_should_journal_data(inode)) {
3724 BUFFER_TRACE(bh, "get write access");
Jan Kara188c2992021-08-16 11:57:04 +02003725 err = ext4_journal_get_write_access(handle, inode->i_sb, bh,
3726 EXT4_JTR_NONE);
Lukas Czernerd863dc32013-05-27 23:32:35 -04003727 if (err)
3728 goto unlock;
3729 }
Lukas Czernerd863dc32013-05-27 23:32:35 -04003730 zero_user(page, offset, length);
Lukas Czernerd863dc32013-05-27 23:32:35 -04003731 BUFFER_TRACE(bh, "zeroed end of block");
3732
Lukas Czernerd863dc32013-05-27 23:32:35 -04003733 if (ext4_should_journal_data(inode)) {
3734 err = ext4_handle_dirty_metadata(handle, inode, bh);
Lukas Czerner0713ed02013-05-27 23:32:35 -04003735 } else {
jon ernst353eefd2013-07-01 08:12:39 -04003736 err = 0;
Lukas Czernerd863dc32013-05-27 23:32:35 -04003737 mark_buffer_dirty(bh);
Jan Kara3957ef52016-04-24 00:56:05 -04003738 if (ext4_should_order_data(inode))
Ross Zwisler73131fb2019-06-20 17:26:26 -04003739 err = ext4_jbd2_inode_add_write(handle, inode, from,
3740 length);
Lukas Czerner0713ed02013-05-27 23:32:35 -04003741 }
Lukas Czernerd863dc32013-05-27 23:32:35 -04003742
3743unlock:
3744 unlock_page(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03003745 put_page(page);
Lukas Czernerd863dc32013-05-27 23:32:35 -04003746 return err;
3747}
3748
Matthew Wilcox94350ab2014-03-24 15:09:16 -04003749/*
Ross Zwisler923ae0f2015-02-16 15:59:38 -08003750 * ext4_block_zero_page_range() zeros out a mapping of length 'length'
3751 * starting from file offset 'from'. The range to be zero'd must
3752 * be contained with in one block. If the specified range exceeds
3753 * the end of the block it will be shortened to end of the block
Bhaskar Chowdhury3088e5a2021-03-27 16:00:05 +05303754 * that corresponds to 'from'
Ross Zwisler923ae0f2015-02-16 15:59:38 -08003755 */
3756static int ext4_block_zero_page_range(handle_t *handle,
3757 struct address_space *mapping, loff_t from, loff_t length)
3758{
3759 struct inode *inode = mapping->host;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03003760 unsigned offset = from & (PAGE_SIZE-1);
Ross Zwisler923ae0f2015-02-16 15:59:38 -08003761 unsigned blocksize = inode->i_sb->s_blocksize;
3762 unsigned max = blocksize - (offset & (blocksize - 1));
3763
3764 /*
3765 * correct length if it does not fall between
3766 * 'from' and the end of the block
3767 */
3768 if (length > max || length < 0)
3769 length = max;
3770
Jan Kara47e69352016-11-20 18:08:05 -05003771 if (IS_DAX(inode)) {
Christoph Hellwigc6f40462021-11-29 11:21:52 +01003772 return dax_zero_range(inode, from, length, NULL,
3773 &ext4_iomap_ops);
Jan Kara47e69352016-11-20 18:08:05 -05003774 }
Ross Zwisler923ae0f2015-02-16 15:59:38 -08003775 return __ext4_block_zero_page_range(handle, mapping, from, length);
3776}
3777
3778/*
Matthew Wilcox94350ab2014-03-24 15:09:16 -04003779 * ext4_block_truncate_page() zeroes out a mapping from file offset `from'
3780 * up to the end of the block which corresponds to `from'.
3781 * This required during truncate. We need to physically zero the tail end
3782 * of that block so it doesn't yield old data if the file is later grown.
3783 */
Stephen Hemmingerc1978552014-05-12 10:50:23 -04003784static int ext4_block_truncate_page(handle_t *handle,
Matthew Wilcox94350ab2014-03-24 15:09:16 -04003785 struct address_space *mapping, loff_t from)
3786{
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03003787 unsigned offset = from & (PAGE_SIZE-1);
Matthew Wilcox94350ab2014-03-24 15:09:16 -04003788 unsigned length;
3789 unsigned blocksize;
3790 struct inode *inode = mapping->host;
3791
Theodore Ts'o0d068632017-02-14 11:31:15 -05003792 /* If we are processing an encrypted inode during orphan list handling */
Chandan Rajendra592ddec2018-12-12 15:20:10 +05303793 if (IS_ENCRYPTED(inode) && !fscrypt_has_encryption_key(inode))
Theodore Ts'o0d068632017-02-14 11:31:15 -05003794 return 0;
3795
Matthew Wilcox94350ab2014-03-24 15:09:16 -04003796 blocksize = inode->i_sb->s_blocksize;
3797 length = blocksize - (offset & (blocksize - 1));
3798
3799 return ext4_block_zero_page_range(handle, mapping, from, length);
3800}
3801
Lukas Czernera87dd182013-05-27 23:32:35 -04003802int ext4_zero_partial_blocks(handle_t *handle, struct inode *inode,
3803 loff_t lstart, loff_t length)
3804{
3805 struct super_block *sb = inode->i_sb;
3806 struct address_space *mapping = inode->i_mapping;
Lukas Czernere1be3a92013-07-01 08:12:39 -04003807 unsigned partial_start, partial_end;
Lukas Czernera87dd182013-05-27 23:32:35 -04003808 ext4_fsblk_t start, end;
3809 loff_t byte_end = (lstart + length - 1);
3810 int err = 0;
3811
Lukas Czernere1be3a92013-07-01 08:12:39 -04003812 partial_start = lstart & (sb->s_blocksize - 1);
3813 partial_end = byte_end & (sb->s_blocksize - 1);
3814
Lukas Czernera87dd182013-05-27 23:32:35 -04003815 start = lstart >> sb->s_blocksize_bits;
3816 end = byte_end >> sb->s_blocksize_bits;
3817
3818 /* Handle partial zero within the single block */
Lukas Czernere1be3a92013-07-01 08:12:39 -04003819 if (start == end &&
3820 (partial_start || (partial_end != sb->s_blocksize - 1))) {
Lukas Czernera87dd182013-05-27 23:32:35 -04003821 err = ext4_block_zero_page_range(handle, mapping,
3822 lstart, length);
3823 return err;
3824 }
3825 /* Handle partial zero out on the start of the range */
Lukas Czernere1be3a92013-07-01 08:12:39 -04003826 if (partial_start) {
Lukas Czernera87dd182013-05-27 23:32:35 -04003827 err = ext4_block_zero_page_range(handle, mapping,
3828 lstart, sb->s_blocksize);
3829 if (err)
3830 return err;
3831 }
3832 /* Handle partial zero out on the end of the range */
Lukas Czernere1be3a92013-07-01 08:12:39 -04003833 if (partial_end != sb->s_blocksize - 1)
Lukas Czernera87dd182013-05-27 23:32:35 -04003834 err = ext4_block_zero_page_range(handle, mapping,
Lukas Czernere1be3a92013-07-01 08:12:39 -04003835 byte_end - partial_end,
3836 partial_end + 1);
Lukas Czernera87dd182013-05-27 23:32:35 -04003837 return err;
3838}
3839
Duane Griffin91ef4ca2008-07-11 19:27:31 -04003840int ext4_can_truncate(struct inode *inode)
3841{
Duane Griffin91ef4ca2008-07-11 19:27:31 -04003842 if (S_ISREG(inode->i_mode))
3843 return 1;
3844 if (S_ISDIR(inode->i_mode))
3845 return 1;
3846 if (S_ISLNK(inode->i_mode))
3847 return !ext4_inode_is_fast_symlink(inode);
3848 return 0;
3849}
3850
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003851/*
Jan Kara01127842015-12-07 14:34:49 -05003852 * We have to make sure i_disksize gets properly updated before we truncate
3853 * page cache due to hole punching or zero range. Otherwise i_disksize update
3854 * can get lost as it may have been postponed to submission of writeback but
3855 * that will never happen after we truncate page cache.
3856 */
3857int ext4_update_disksize_before_punch(struct inode *inode, loff_t offset,
3858 loff_t len)
3859{
3860 handle_t *handle;
Harshad Shirwadkar4209ae12020-04-26 18:34:37 -07003861 int ret;
3862
Jan Kara01127842015-12-07 14:34:49 -05003863 loff_t size = i_size_read(inode);
3864
Al Viro59551022016-01-22 15:40:57 -05003865 WARN_ON(!inode_is_locked(inode));
Jan Kara01127842015-12-07 14:34:49 -05003866 if (offset > size || offset + len < size)
3867 return 0;
3868
3869 if (EXT4_I(inode)->i_disksize >= size)
3870 return 0;
3871
3872 handle = ext4_journal_start(inode, EXT4_HT_MISC, 1);
3873 if (IS_ERR(handle))
3874 return PTR_ERR(handle);
3875 ext4_update_i_disksize(inode, size);
Harshad Shirwadkar4209ae12020-04-26 18:34:37 -07003876 ret = ext4_mark_inode_dirty(handle, inode);
Jan Kara01127842015-12-07 14:34:49 -05003877 ext4_journal_stop(handle);
3878
Harshad Shirwadkar4209ae12020-04-26 18:34:37 -07003879 return ret;
Jan Kara01127842015-12-07 14:34:49 -05003880}
3881
Jan Karad4f52582021-02-04 18:05:42 +01003882static void ext4_wait_dax_page(struct inode *inode)
Ross Zwisler430657b2018-07-29 17:00:22 -04003883{
Jan Karad4f52582021-02-04 18:05:42 +01003884 filemap_invalidate_unlock(inode->i_mapping);
Ross Zwisler430657b2018-07-29 17:00:22 -04003885 schedule();
Jan Karad4f52582021-02-04 18:05:42 +01003886 filemap_invalidate_lock(inode->i_mapping);
Ross Zwisler430657b2018-07-29 17:00:22 -04003887}
3888
3889int ext4_break_layouts(struct inode *inode)
3890{
Ross Zwisler430657b2018-07-29 17:00:22 -04003891 struct page *page;
Ross Zwisler430657b2018-07-29 17:00:22 -04003892 int error;
3893
Jan Karad4f52582021-02-04 18:05:42 +01003894 if (WARN_ON_ONCE(!rwsem_is_locked(&inode->i_mapping->invalidate_lock)))
Ross Zwisler430657b2018-07-29 17:00:22 -04003895 return -EINVAL;
3896
3897 do {
Ross Zwisler430657b2018-07-29 17:00:22 -04003898 page = dax_layout_busy_page(inode->i_mapping);
3899 if (!page)
3900 return 0;
3901
3902 error = ___wait_var_event(&page->_refcount,
3903 atomic_read(&page->_refcount) == 1,
3904 TASK_INTERRUPTIBLE, 0, 0,
Jan Karad4f52582021-02-04 18:05:42 +01003905 ext4_wait_dax_page(inode));
Ross Zwislerb1f38212018-09-11 13:31:16 -04003906 } while (error == 0);
Ross Zwisler430657b2018-07-29 17:00:22 -04003907
3908 return error;
3909}
3910
Jan Kara01127842015-12-07 14:34:49 -05003911/*
Ross Zwislercca32b72016-09-22 11:49:38 -04003912 * ext4_punch_hole: punches a hole in a file by releasing the blocks
Allison Hendersona4bb6b62011-05-25 07:41:50 -04003913 * associated with the given offset and length
3914 *
3915 * @inode: File inode
3916 * @offset: The offset where the hole will begin
3917 * @len: The length of the hole
3918 *
Anatol Pomozov4907cb72012-09-01 10:31:09 -07003919 * Returns: 0 on success or negative on failure
Allison Hendersona4bb6b62011-05-25 07:41:50 -04003920 */
3921
Ashish Sangwanaeb28172013-07-01 08:12:38 -04003922int ext4_punch_hole(struct inode *inode, loff_t offset, loff_t length)
Allison Hendersona4bb6b62011-05-25 07:41:50 -04003923{
Theodore Ts'o26a4c0c2013-04-03 12:45:17 -04003924 struct super_block *sb = inode->i_sb;
3925 ext4_lblk_t first_block, stop_block;
3926 struct address_space *mapping = inode->i_mapping;
Lukas Czernera87dd182013-05-27 23:32:35 -04003927 loff_t first_block_offset, last_block_offset;
Theodore Ts'o26a4c0c2013-04-03 12:45:17 -04003928 handle_t *handle;
3929 unsigned int credits;
Harshad Shirwadkar4209ae12020-04-26 18:34:37 -07003930 int ret = 0, ret2 = 0;
Theodore Ts'o26a4c0c2013-04-03 12:45:17 -04003931
Lukas Czernerb8a86842014-03-18 18:05:35 -04003932 trace_ext4_punch_hole(inode, offset, length, 0);
Zheng Liuaaddea82013-01-16 20:21:26 -05003933
Theodore Ts'oc1e82202019-08-23 22:38:00 -04003934 ext4_clear_inode_state(inode, EXT4_STATE_MAY_INLINE_DATA);
3935 if (ext4_has_inline_data(inode)) {
Jan Karad4f52582021-02-04 18:05:42 +01003936 filemap_invalidate_lock(mapping);
Theodore Ts'oc1e82202019-08-23 22:38:00 -04003937 ret = ext4_convert_inline_data(inode);
Jan Karad4f52582021-02-04 18:05:42 +01003938 filemap_invalidate_unlock(mapping);
Theodore Ts'oc1e82202019-08-23 22:38:00 -04003939 if (ret)
3940 return ret;
3941 }
3942
Theodore Ts'o26a4c0c2013-04-03 12:45:17 -04003943 /*
3944 * Write out all dirty pages to avoid race conditions
3945 * Then release them.
3946 */
Ross Zwislercca32b72016-09-22 11:49:38 -04003947 if (mapping_tagged(mapping, PAGECACHE_TAG_DIRTY)) {
Theodore Ts'o26a4c0c2013-04-03 12:45:17 -04003948 ret = filemap_write_and_wait_range(mapping, offset,
3949 offset + length - 1);
3950 if (ret)
3951 return ret;
3952 }
3953
Al Viro59551022016-01-22 15:40:57 -05003954 inode_lock(inode);
Lukas Czerner9ef06ce2014-04-12 09:47:00 -04003955
Theodore Ts'o26a4c0c2013-04-03 12:45:17 -04003956 /* No need to punch hole beyond i_size */
3957 if (offset >= inode->i_size)
3958 goto out_mutex;
3959
3960 /*
3961 * If the hole extends beyond i_size, set the hole
3962 * to end after the page that contains i_size
3963 */
3964 if (offset + length > inode->i_size) {
3965 length = inode->i_size +
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03003966 PAGE_SIZE - (inode->i_size & (PAGE_SIZE - 1)) -
Theodore Ts'o26a4c0c2013-04-03 12:45:17 -04003967 offset;
3968 }
3969
Jan Karaa3612932013-08-16 21:19:41 -04003970 if (offset & (sb->s_blocksize - 1) ||
3971 (offset + length) & (sb->s_blocksize - 1)) {
3972 /*
3973 * Attach jinode to inode for jbd2 if we do any zeroing of
3974 * partial block
3975 */
3976 ret = ext4_inode_attach_jinode(inode);
3977 if (ret < 0)
3978 goto out_mutex;
3979
3980 }
3981
Jan Karaea3d7202015-12-07 14:28:03 -05003982 /* Wait all existing dio workers, newcomers will block on i_mutex */
Jan Karaea3d7202015-12-07 14:28:03 -05003983 inode_dio_wait(inode);
3984
3985 /*
3986 * Prevent page faults from reinstantiating pages we have released from
3987 * page cache.
3988 */
Jan Karad4f52582021-02-04 18:05:42 +01003989 filemap_invalidate_lock(mapping);
Ross Zwisler430657b2018-07-29 17:00:22 -04003990
3991 ret = ext4_break_layouts(inode);
3992 if (ret)
3993 goto out_dio;
3994
Lukas Czernera87dd182013-05-27 23:32:35 -04003995 first_block_offset = round_up(offset, sb->s_blocksize);
3996 last_block_offset = round_down((offset + length), sb->s_blocksize) - 1;
Theodore Ts'o26a4c0c2013-04-03 12:45:17 -04003997
Lukas Czernera87dd182013-05-27 23:32:35 -04003998 /* Now release the pages and zero block aligned part of pages*/
Jan Kara01127842015-12-07 14:34:49 -05003999 if (last_block_offset > first_block_offset) {
4000 ret = ext4_update_disksize_before_punch(inode, offset, length);
4001 if (ret)
4002 goto out_dio;
Lukas Czernera87dd182013-05-27 23:32:35 -04004003 truncate_pagecache_range(inode, first_block_offset,
4004 last_block_offset);
Jan Kara01127842015-12-07 14:34:49 -05004005 }
Theodore Ts'o26a4c0c2013-04-03 12:45:17 -04004006
4007 if (ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS))
4008 credits = ext4_writepage_trans_blocks(inode);
4009 else
4010 credits = ext4_blocks_for_truncate(inode);
4011 handle = ext4_journal_start(inode, EXT4_HT_TRUNCATE, credits);
4012 if (IS_ERR(handle)) {
4013 ret = PTR_ERR(handle);
4014 ext4_std_error(sb, ret);
4015 goto out_dio;
4016 }
4017
Lukas Czernera87dd182013-05-27 23:32:35 -04004018 ret = ext4_zero_partial_blocks(handle, inode, offset,
4019 length);
4020 if (ret)
4021 goto out_stop;
Theodore Ts'o26a4c0c2013-04-03 12:45:17 -04004022
4023 first_block = (offset + sb->s_blocksize - 1) >>
4024 EXT4_BLOCK_SIZE_BITS(sb);
4025 stop_block = (offset + length) >> EXT4_BLOCK_SIZE_BITS(sb);
4026
Lukas Czernereee597a2018-05-13 19:28:35 -04004027 /* If there are blocks to remove, do it */
4028 if (stop_block > first_block) {
Theodore Ts'o26a4c0c2013-04-03 12:45:17 -04004029
Lukas Czernereee597a2018-05-13 19:28:35 -04004030 down_write(&EXT4_I(inode)->i_data_sem);
brookxu27bc4462020-08-17 15:36:15 +08004031 ext4_discard_preallocations(inode, 0);
Theodore Ts'o26a4c0c2013-04-03 12:45:17 -04004032
Lukas Czernereee597a2018-05-13 19:28:35 -04004033 ret = ext4_es_remove_extent(inode, first_block,
4034 stop_block - first_block);
4035 if (ret) {
4036 up_write(&EXT4_I(inode)->i_data_sem);
4037 goto out_stop;
4038 }
4039
4040 if (ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS))
4041 ret = ext4_ext_remove_space(inode, first_block,
4042 stop_block - 1);
4043 else
4044 ret = ext4_ind_remove_space(handle, inode, first_block,
4045 stop_block);
4046
Theodore Ts'o26a4c0c2013-04-03 12:45:17 -04004047 up_write(&EXT4_I(inode)->i_data_sem);
Theodore Ts'o26a4c0c2013-04-03 12:45:17 -04004048 }
Harshad Shirwadkara80f7fc2020-11-05 19:58:53 -08004049 ext4_fc_track_range(handle, inode, first_block, stop_block);
Theodore Ts'o26a4c0c2013-04-03 12:45:17 -04004050 if (IS_SYNC(inode))
4051 ext4_handle_sync(handle);
Maxim Patlasove251f9b2014-02-20 16:58:05 -05004052
Deepa Dinamanieeca7ea2016-11-14 21:40:10 -05004053 inode->i_mtime = inode->i_ctime = current_time(inode);
Harshad Shirwadkar4209ae12020-04-26 18:34:37 -07004054 ret2 = ext4_mark_inode_dirty(handle, inode);
4055 if (unlikely(ret2))
4056 ret = ret2;
Jan Kara67a7d5f2017-05-29 13:24:55 -04004057 if (ret >= 0)
4058 ext4_update_inode_fsync_trans(handle, inode, 1);
Theodore Ts'o26a4c0c2013-04-03 12:45:17 -04004059out_stop:
4060 ext4_journal_stop(handle);
4061out_dio:
Jan Karad4f52582021-02-04 18:05:42 +01004062 filemap_invalidate_unlock(mapping);
Theodore Ts'o26a4c0c2013-04-03 12:45:17 -04004063out_mutex:
Al Viro59551022016-01-22 15:40:57 -05004064 inode_unlock(inode);
Theodore Ts'o26a4c0c2013-04-03 12:45:17 -04004065 return ret;
Allison Hendersona4bb6b62011-05-25 07:41:50 -04004066}
4067
Jan Karaa3612932013-08-16 21:19:41 -04004068int ext4_inode_attach_jinode(struct inode *inode)
4069{
4070 struct ext4_inode_info *ei = EXT4_I(inode);
4071 struct jbd2_inode *jinode;
4072
4073 if (ei->jinode || !EXT4_SB(inode->i_sb)->s_journal)
4074 return 0;
4075
4076 jinode = jbd2_alloc_inode(GFP_KERNEL);
4077 spin_lock(&inode->i_lock);
4078 if (!ei->jinode) {
4079 if (!jinode) {
4080 spin_unlock(&inode->i_lock);
4081 return -ENOMEM;
4082 }
4083 ei->jinode = jinode;
4084 jbd2_journal_init_jbd_inode(ei->jinode, inode);
4085 jinode = NULL;
4086 }
4087 spin_unlock(&inode->i_lock);
4088 if (unlikely(jinode != NULL))
4089 jbd2_free_inode(jinode);
4090 return 0;
4091}
4092
Allison Hendersona4bb6b62011-05-25 07:41:50 -04004093/*
Mingming Cao617ba132006-10-11 01:20:53 -07004094 * ext4_truncate()
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004095 *
Mingming Cao617ba132006-10-11 01:20:53 -07004096 * We block out ext4_get_block() block instantiations across the entire
4097 * transaction, and VFS/VM ensures that ext4_truncate() cannot run
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004098 * simultaneously on behalf of the same inode.
4099 *
Justin P. Mattock42b2aa82011-11-28 20:31:00 -08004100 * As we work through the truncate and commit bits of it to the journal there
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004101 * is one core, guiding principle: the file's tree must always be consistent on
4102 * disk. We must be able to restart the truncate after a crash.
4103 *
4104 * The file's tree may be transiently inconsistent in memory (although it
4105 * probably isn't), but whenever we close off and commit a journal transaction,
4106 * the contents of (the filesystem + the journal) must be consistent and
4107 * restartable. It's pretty simple, really: bottom up, right to left (although
4108 * left-to-right works OK too).
4109 *
4110 * Note that at recovery time, journal replay occurs *before* the restart of
4111 * truncate against the orphan inode list.
4112 *
4113 * The committed inode has the new, desired i_size (which is the same as
Mingming Cao617ba132006-10-11 01:20:53 -07004114 * i_disksize in this case). After a crash, ext4_orphan_cleanup() will see
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004115 * that this inode's truncate did not complete and it will again call
Mingming Cao617ba132006-10-11 01:20:53 -07004116 * ext4_truncate() to have another go. So there will be instantiated blocks
4117 * to the right of the truncation point in a crashed ext4 filesystem. But
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004118 * that's fine - as long as they are linked from the inode, the post-crash
Mingming Cao617ba132006-10-11 01:20:53 -07004119 * ext4_truncate() run will find them and release them.
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004120 */
Theodore Ts'o2c98eb52016-11-13 22:02:26 -05004121int ext4_truncate(struct inode *inode)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004122{
Theodore Ts'o819c4922013-04-03 12:47:17 -04004123 struct ext4_inode_info *ei = EXT4_I(inode);
4124 unsigned int credits;
Harshad Shirwadkar4209ae12020-04-26 18:34:37 -07004125 int err = 0, err2;
Theodore Ts'o819c4922013-04-03 12:47:17 -04004126 handle_t *handle;
4127 struct address_space *mapping = inode->i_mapping;
Theodore Ts'o819c4922013-04-03 12:47:17 -04004128
Theodore Ts'o19b5ef62013-04-03 21:58:52 -04004129 /*
4130 * There is a possibility that we're either freeing the inode
Matthew Wilcoxe04027e2014-03-24 15:15:07 -04004131 * or it's a completely new inode. In those cases we might not
Theodore Ts'o19b5ef62013-04-03 21:58:52 -04004132 * have i_mutex locked because it's not necessary.
4133 */
4134 if (!(inode->i_state & (I_NEW|I_FREEING)))
Al Viro59551022016-01-22 15:40:57 -05004135 WARN_ON(!inode_is_locked(inode));
Jiaying Zhang0562e0b2011-03-21 21:38:05 -04004136 trace_ext4_truncate_enter(inode);
4137
Duane Griffin91ef4ca2008-07-11 19:27:31 -04004138 if (!ext4_can_truncate(inode))
zhengliang9a5d2652020-07-01 16:30:27 +08004139 goto out_trace;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004140
Theodore Ts'o5534fb52009-09-17 09:34:16 -04004141 if (inode->i_size == 0 && !test_opt(inode->i_sb, NO_AUTO_DA_ALLOC))
Theodore Ts'o19f5fb72010-01-24 14:34:07 -05004142 ext4_set_inode_state(inode, EXT4_STATE_DA_ALLOC_CLOSE);
Theodore Ts'o7d8f9f72009-02-24 08:21:14 -05004143
Tao Maaef1c852012-12-10 14:06:02 -05004144 if (ext4_has_inline_data(inode)) {
4145 int has_inline = 1;
4146
Theodore Ts'o01daf942017-01-22 19:35:49 -05004147 err = ext4_inline_data_truncate(inode, &has_inline);
zhengliang9a5d2652020-07-01 16:30:27 +08004148 if (err || has_inline)
4149 goto out_trace;
Tao Maaef1c852012-12-10 14:06:02 -05004150 }
4151
Jan Karaa3612932013-08-16 21:19:41 -04004152 /* If we zero-out tail of the page, we have to create jinode for jbd2 */
4153 if (inode->i_size & (inode->i_sb->s_blocksize - 1)) {
4154 if (ext4_inode_attach_jinode(inode) < 0)
zhengliang9a5d2652020-07-01 16:30:27 +08004155 goto out_trace;
Jan Karaa3612932013-08-16 21:19:41 -04004156 }
4157
Amir Goldsteinff9893d2011-06-27 16:36:31 -04004158 if (ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS))
Theodore Ts'o819c4922013-04-03 12:47:17 -04004159 credits = ext4_writepage_trans_blocks(inode);
Amir Goldsteinff9893d2011-06-27 16:36:31 -04004160 else
Theodore Ts'o819c4922013-04-03 12:47:17 -04004161 credits = ext4_blocks_for_truncate(inode);
4162
4163 handle = ext4_journal_start(inode, EXT4_HT_TRUNCATE, credits);
zhengliang9a5d2652020-07-01 16:30:27 +08004164 if (IS_ERR(handle)) {
4165 err = PTR_ERR(handle);
4166 goto out_trace;
4167 }
Theodore Ts'o819c4922013-04-03 12:47:17 -04004168
Lukas Czernereb3544c2013-05-27 23:32:35 -04004169 if (inode->i_size & (inode->i_sb->s_blocksize - 1))
4170 ext4_block_truncate_page(handle, mapping, inode->i_size);
Theodore Ts'o819c4922013-04-03 12:47:17 -04004171
4172 /*
4173 * We add the inode to the orphan list, so that if this
4174 * truncate spans multiple transactions, and we crash, we will
4175 * resume the truncate when the filesystem recovers. It also
4176 * marks the inode dirty, to catch the new size.
4177 *
4178 * Implication: the file must always be in a sane, consistent
4179 * truncatable state while each transaction commits.
4180 */
Theodore Ts'o2c98eb52016-11-13 22:02:26 -05004181 err = ext4_orphan_add(handle, inode);
4182 if (err)
Theodore Ts'o819c4922013-04-03 12:47:17 -04004183 goto out_stop;
4184
4185 down_write(&EXT4_I(inode)->i_data_sem);
4186
brookxu27bc4462020-08-17 15:36:15 +08004187 ext4_discard_preallocations(inode, 0);
Theodore Ts'o819c4922013-04-03 12:47:17 -04004188
4189 if (ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS))
Theodore Ts'od0abb362016-11-13 22:02:28 -05004190 err = ext4_ext_truncate(handle, inode);
Theodore Ts'o819c4922013-04-03 12:47:17 -04004191 else
4192 ext4_ind_truncate(handle, inode);
4193
4194 up_write(&ei->i_data_sem);
Theodore Ts'od0abb362016-11-13 22:02:28 -05004195 if (err)
4196 goto out_stop;
Theodore Ts'o819c4922013-04-03 12:47:17 -04004197
4198 if (IS_SYNC(inode))
4199 ext4_handle_sync(handle);
4200
4201out_stop:
4202 /*
4203 * If this was a simple ftruncate() and the file will remain alive,
4204 * then we need to clear up the orphan record which we created above.
4205 * However, if this was a real unlink then we were called by
Wang Shilong58d86a52014-11-25 16:17:29 -05004206 * ext4_evict_inode(), and we allow that function to clean up the
Theodore Ts'o819c4922013-04-03 12:47:17 -04004207 * orphan info for us.
4208 */
4209 if (inode->i_nlink)
4210 ext4_orphan_del(handle, inode);
4211
Deepa Dinamanieeca7ea2016-11-14 21:40:10 -05004212 inode->i_mtime = inode->i_ctime = current_time(inode);
Harshad Shirwadkar4209ae12020-04-26 18:34:37 -07004213 err2 = ext4_mark_inode_dirty(handle, inode);
4214 if (unlikely(err2 && !err))
4215 err = err2;
Theodore Ts'o819c4922013-04-03 12:47:17 -04004216 ext4_journal_stop(handle);
Alex Tomasa86c6182006-10-11 01:21:03 -07004217
zhengliang9a5d2652020-07-01 16:30:27 +08004218out_trace:
Jiaying Zhang0562e0b2011-03-21 21:38:05 -04004219 trace_ext4_truncate_exit(inode);
Theodore Ts'o2c98eb52016-11-13 22:02:26 -05004220 return err;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004221}
4222
Zhang Yi9a1bf322021-09-01 10:09:54 +08004223static inline u64 ext4_inode_peek_iversion(const struct inode *inode)
4224{
4225 if (unlikely(EXT4_I(inode)->i_flags & EXT4_EA_INODE_FL))
4226 return inode_peek_iversion_raw(inode);
4227 else
4228 return inode_peek_iversion(inode);
4229}
4230
4231static int ext4_inode_blocks_set(struct ext4_inode *raw_inode,
4232 struct ext4_inode_info *ei)
4233{
4234 struct inode *inode = &(ei->vfs_inode);
4235 u64 i_blocks = READ_ONCE(inode->i_blocks);
4236 struct super_block *sb = inode->i_sb;
4237
4238 if (i_blocks <= ~0U) {
4239 /*
4240 * i_blocks can be represented in a 32 bit variable
4241 * as multiple of 512 bytes
4242 */
4243 raw_inode->i_blocks_lo = cpu_to_le32(i_blocks);
4244 raw_inode->i_blocks_high = 0;
4245 ext4_clear_inode_flag(inode, EXT4_INODE_HUGE_FILE);
4246 return 0;
4247 }
4248
4249 /*
4250 * This should never happen since sb->s_maxbytes should not have
4251 * allowed this, sb->s_maxbytes was set according to the huge_file
4252 * feature in ext4_fill_super().
4253 */
4254 if (!ext4_has_feature_huge_file(sb))
4255 return -EFSCORRUPTED;
4256
4257 if (i_blocks <= 0xffffffffffffULL) {
4258 /*
4259 * i_blocks can be represented in a 48 bit variable
4260 * as multiple of 512 bytes
4261 */
4262 raw_inode->i_blocks_lo = cpu_to_le32(i_blocks);
4263 raw_inode->i_blocks_high = cpu_to_le16(i_blocks >> 32);
4264 ext4_clear_inode_flag(inode, EXT4_INODE_HUGE_FILE);
4265 } else {
4266 ext4_set_inode_flag(inode, EXT4_INODE_HUGE_FILE);
4267 /* i_block is stored in file system block size */
4268 i_blocks = i_blocks >> (inode->i_blkbits - 9);
4269 raw_inode->i_blocks_lo = cpu_to_le32(i_blocks);
4270 raw_inode->i_blocks_high = cpu_to_le16(i_blocks >> 32);
4271 }
4272 return 0;
4273}
4274
4275static int ext4_fill_raw_inode(struct inode *inode, struct ext4_inode *raw_inode)
4276{
4277 struct ext4_inode_info *ei = EXT4_I(inode);
4278 uid_t i_uid;
4279 gid_t i_gid;
4280 projid_t i_projid;
4281 int block;
4282 int err;
4283
4284 err = ext4_inode_blocks_set(raw_inode, ei);
4285
4286 raw_inode->i_mode = cpu_to_le16(inode->i_mode);
4287 i_uid = i_uid_read(inode);
4288 i_gid = i_gid_read(inode);
4289 i_projid = from_kprojid(&init_user_ns, ei->i_projid);
4290 if (!(test_opt(inode->i_sb, NO_UID32))) {
4291 raw_inode->i_uid_low = cpu_to_le16(low_16_bits(i_uid));
4292 raw_inode->i_gid_low = cpu_to_le16(low_16_bits(i_gid));
4293 /*
4294 * Fix up interoperability with old kernels. Otherwise,
4295 * old inodes get re-used with the upper 16 bits of the
4296 * uid/gid intact.
4297 */
4298 if (ei->i_dtime && list_empty(&ei->i_orphan)) {
4299 raw_inode->i_uid_high = 0;
4300 raw_inode->i_gid_high = 0;
4301 } else {
4302 raw_inode->i_uid_high =
4303 cpu_to_le16(high_16_bits(i_uid));
4304 raw_inode->i_gid_high =
4305 cpu_to_le16(high_16_bits(i_gid));
4306 }
4307 } else {
4308 raw_inode->i_uid_low = cpu_to_le16(fs_high2lowuid(i_uid));
4309 raw_inode->i_gid_low = cpu_to_le16(fs_high2lowgid(i_gid));
4310 raw_inode->i_uid_high = 0;
4311 raw_inode->i_gid_high = 0;
4312 }
4313 raw_inode->i_links_count = cpu_to_le16(inode->i_nlink);
4314
4315 EXT4_INODE_SET_XTIME(i_ctime, inode, raw_inode);
4316 EXT4_INODE_SET_XTIME(i_mtime, inode, raw_inode);
4317 EXT4_INODE_SET_XTIME(i_atime, inode, raw_inode);
4318 EXT4_EINODE_SET_XTIME(i_crtime, ei, raw_inode);
4319
4320 raw_inode->i_dtime = cpu_to_le32(ei->i_dtime);
4321 raw_inode->i_flags = cpu_to_le32(ei->i_flags & 0xFFFFFFFF);
4322 if (likely(!test_opt2(inode->i_sb, HURD_COMPAT)))
4323 raw_inode->i_file_acl_high =
4324 cpu_to_le16(ei->i_file_acl >> 32);
4325 raw_inode->i_file_acl_lo = cpu_to_le32(ei->i_file_acl);
4326 ext4_isize_set(raw_inode, ei->i_disksize);
4327
4328 raw_inode->i_generation = cpu_to_le32(inode->i_generation);
4329 if (S_ISCHR(inode->i_mode) || S_ISBLK(inode->i_mode)) {
4330 if (old_valid_dev(inode->i_rdev)) {
4331 raw_inode->i_block[0] =
4332 cpu_to_le32(old_encode_dev(inode->i_rdev));
4333 raw_inode->i_block[1] = 0;
4334 } else {
4335 raw_inode->i_block[0] = 0;
4336 raw_inode->i_block[1] =
4337 cpu_to_le32(new_encode_dev(inode->i_rdev));
4338 raw_inode->i_block[2] = 0;
4339 }
4340 } else if (!ext4_has_inline_data(inode)) {
4341 for (block = 0; block < EXT4_N_BLOCKS; block++)
4342 raw_inode->i_block[block] = ei->i_data[block];
4343 }
4344
4345 if (likely(!test_opt2(inode->i_sb, HURD_COMPAT))) {
4346 u64 ivers = ext4_inode_peek_iversion(inode);
4347
4348 raw_inode->i_disk_version = cpu_to_le32(ivers);
4349 if (ei->i_extra_isize) {
4350 if (EXT4_FITS_IN_INODE(raw_inode, ei, i_version_hi))
4351 raw_inode->i_version_hi =
4352 cpu_to_le32(ivers >> 32);
4353 raw_inode->i_extra_isize =
4354 cpu_to_le16(ei->i_extra_isize);
4355 }
4356 }
4357
4358 if (i_projid != EXT4_DEF_PROJID &&
4359 !ext4_has_feature_project(inode->i_sb))
4360 err = err ?: -EFSCORRUPTED;
4361
4362 if (EXT4_INODE_SIZE(inode->i_sb) > EXT4_GOOD_OLD_INODE_SIZE &&
4363 EXT4_FITS_IN_INODE(raw_inode, ei, i_projid))
4364 raw_inode->i_projid = cpu_to_le32(i_projid);
4365
4366 ext4_inode_csum_set(inode, raw_inode, ei);
4367 return err;
4368}
4369
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004370/*
Mingming Cao617ba132006-10-11 01:20:53 -07004371 * ext4_get_inode_loc returns with an extra refcount against the inode's
Zhang Yide01f482021-09-01 10:09:55 +08004372 * underlying buffer_head on success. If we pass 'inode' and it does not
4373 * have in-inode xattr, we have all inode data in memory that is needed
4374 * to recreate the on-disk version of this inode.
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004375 */
Harshad Shirwadkar8016e292020-10-15 13:37:59 -07004376static int __ext4_get_inode_loc(struct super_block *sb, unsigned long ino,
Zhang Yide01f482021-09-01 10:09:55 +08004377 struct inode *inode, struct ext4_iloc *iloc,
Harshad Shirwadkar8016e292020-10-15 13:37:59 -07004378 ext4_fsblk_t *ret_block)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004379{
Theodore Ts'o240799c2008-10-09 23:53:47 -04004380 struct ext4_group_desc *gdp;
4381 struct buffer_head *bh;
Theodore Ts'o240799c2008-10-09 23:53:47 -04004382 ext4_fsblk_t block;
Linus Torvalds02f03c42019-09-29 17:59:23 -07004383 struct blk_plug plug;
Theodore Ts'o240799c2008-10-09 23:53:47 -04004384 int inodes_per_block, inode_offset;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004385
Aneesh Kumar K.V3a06d772008-11-22 15:04:59 -05004386 iloc->bh = NULL;
Harshad Shirwadkar8016e292020-10-15 13:37:59 -07004387 if (ino < EXT4_ROOT_INO ||
4388 ino > le32_to_cpu(EXT4_SB(sb)->s_es->s_inodes_count))
Darrick J. Wong6a797d22015-10-17 16:16:04 -04004389 return -EFSCORRUPTED;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004390
Harshad Shirwadkar8016e292020-10-15 13:37:59 -07004391 iloc->block_group = (ino - 1) / EXT4_INODES_PER_GROUP(sb);
Theodore Ts'o240799c2008-10-09 23:53:47 -04004392 gdp = ext4_get_group_desc(sb, iloc->block_group, NULL);
4393 if (!gdp)
4394 return -EIO;
4395
4396 /*
4397 * Figure out the offset within the block group inode table
4398 */
Tao Ma00d09882011-05-09 10:26:41 -04004399 inodes_per_block = EXT4_SB(sb)->s_inodes_per_block;
Harshad Shirwadkar8016e292020-10-15 13:37:59 -07004400 inode_offset = ((ino - 1) %
Theodore Ts'o240799c2008-10-09 23:53:47 -04004401 EXT4_INODES_PER_GROUP(sb));
4402 block = ext4_inode_table(sb, gdp) + (inode_offset / inodes_per_block);
4403 iloc->offset = (inode_offset % inodes_per_block) * EXT4_INODE_SIZE(sb);
4404
4405 bh = sb_getblk(sb, block);
Wang Shilongaebf0242013-01-12 16:28:47 -05004406 if (unlikely(!bh))
Theodore Ts'o860d21e2013-01-12 16:19:36 -05004407 return -ENOMEM;
Zhang Yi8e33fad2021-08-26 21:04:08 +08004408 if (ext4_buffer_uptodate(bh))
4409 goto has_buffer;
Hidehiro Kawai9c83a922008-07-26 16:39:26 -04004410
Zhang Yi8e33fad2021-08-26 21:04:08 +08004411 lock_buffer(bh);
Zhang Yif2c779732021-09-10 16:03:16 +08004412 if (ext4_buffer_uptodate(bh)) {
4413 /* Someone brought it uptodate while we waited */
4414 unlock_buffer(bh);
4415 goto has_buffer;
4416 }
4417
Zhang Yi8e33fad2021-08-26 21:04:08 +08004418 /*
4419 * If we have all information of the inode in memory and this
4420 * is the only valid inode in the block, we need not read the
4421 * block.
4422 */
Zhang Yide01f482021-09-01 10:09:55 +08004423 if (inode && !ext4_test_inode_state(inode, EXT4_STATE_XATTR)) {
Zhang Yi8e33fad2021-08-26 21:04:08 +08004424 struct buffer_head *bitmap_bh;
4425 int i, start;
4426
4427 start = inode_offset & ~(inodes_per_block - 1);
4428
4429 /* Is the inode bitmap in cache? */
4430 bitmap_bh = sb_getblk(sb, ext4_inode_bitmap(sb, gdp));
4431 if (unlikely(!bitmap_bh))
4432 goto make_io;
4433
4434 /*
4435 * If the inode bitmap isn't in cache then the
4436 * optimisation may end up performing two reads instead
4437 * of one, so skip it.
4438 */
4439 if (!buffer_uptodate(bitmap_bh)) {
4440 brelse(bitmap_bh);
4441 goto make_io;
4442 }
4443 for (i = start; i < start + inodes_per_block; i++) {
4444 if (i == inode_offset)
4445 continue;
4446 if (ext4_test_bit(i, bitmap_bh->b_data))
4447 break;
4448 }
4449 brelse(bitmap_bh);
4450 if (i == start + inodes_per_block) {
Zhang Yide01f482021-09-01 10:09:55 +08004451 struct ext4_inode *raw_inode =
4452 (struct ext4_inode *) (bh->b_data + iloc->offset);
4453
Zhang Yi8e33fad2021-08-26 21:04:08 +08004454 /* all other inodes are free, so skip I/O */
4455 memset(bh->b_data, 0, bh->b_size);
Zhang Yide01f482021-09-01 10:09:55 +08004456 if (!ext4_test_inode_state(inode, EXT4_STATE_NEW))
4457 ext4_fill_raw_inode(inode, raw_inode);
Zhang Yi8e33fad2021-08-26 21:04:08 +08004458 set_buffer_uptodate(bh);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004459 unlock_buffer(bh);
4460 goto has_buffer;
4461 }
Zhang Yi8e33fad2021-08-26 21:04:08 +08004462 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004463
4464make_io:
Zhang Yi8e33fad2021-08-26 21:04:08 +08004465 /*
4466 * If we need to do any I/O, try to pre-readahead extra
4467 * blocks from the inode table.
4468 */
4469 blk_start_plug(&plug);
4470 if (EXT4_SB(sb)->s_inode_readahead_blks) {
4471 ext4_fsblk_t b, end, table;
4472 unsigned num;
4473 __u32 ra_blks = EXT4_SB(sb)->s_inode_readahead_blks;
Theodore Ts'o240799c2008-10-09 23:53:47 -04004474
Zhang Yi8e33fad2021-08-26 21:04:08 +08004475 table = ext4_inode_table(sb, gdp);
4476 /* s_inode_readahead_blks is always a power of 2 */
4477 b = block & ~((ext4_fsblk_t) ra_blks - 1);
4478 if (table > b)
4479 b = table;
4480 end = b + ra_blks;
4481 num = EXT4_INODES_PER_GROUP(sb);
4482 if (ext4_has_group_desc_csum(sb))
4483 num -= ext4_itable_unused_count(sb, gdp);
4484 table += num / inodes_per_block;
4485 if (end > table)
4486 end = table;
4487 while (b <= end)
4488 ext4_sb_breadahead_unmovable(sb, b++);
4489 }
Theodore Ts'o240799c2008-10-09 23:53:47 -04004490
Zhang Yi8e33fad2021-08-26 21:04:08 +08004491 /*
4492 * There are other valid inodes in the buffer, this inode
4493 * has in-inode xattrs, or we don't have this inode in memory.
4494 * Read the block from disk.
4495 */
4496 trace_ext4_load_inode(sb, ino);
4497 ext4_read_bh_nowait(bh, REQ_META | REQ_PRIO, NULL);
4498 blk_finish_plug(&plug);
4499 wait_on_buffer(bh);
4500 ext4_simulate_fail_bh(sb, bh, EXT4_SIM_INODE_EIO);
4501 if (!buffer_uptodate(bh)) {
4502 if (ret_block)
4503 *ret_block = block;
4504 brelse(bh);
4505 return -EIO;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004506 }
4507has_buffer:
4508 iloc->bh = bh;
4509 return 0;
4510}
4511
Harshad Shirwadkar8016e292020-10-15 13:37:59 -07004512static int __ext4_get_inode_loc_noinmem(struct inode *inode,
4513 struct ext4_iloc *iloc)
4514{
Harshad Shirwadkarc27c29c2021-12-01 08:34:21 -08004515 ext4_fsblk_t err_blk = 0;
Harshad Shirwadkar8016e292020-10-15 13:37:59 -07004516 int ret;
4517
Zhang Yide01f482021-09-01 10:09:55 +08004518 ret = __ext4_get_inode_loc(inode->i_sb, inode->i_ino, NULL, iloc,
Harshad Shirwadkar8016e292020-10-15 13:37:59 -07004519 &err_blk);
4520
4521 if (ret == -EIO)
4522 ext4_error_inode_block(inode, err_blk, EIO,
4523 "unable to read itable block");
4524
4525 return ret;
4526}
4527
Mingming Cao617ba132006-10-11 01:20:53 -07004528int ext4_get_inode_loc(struct inode *inode, struct ext4_iloc *iloc)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004529{
Harshad Shirwadkarc27c29c2021-12-01 08:34:21 -08004530 ext4_fsblk_t err_blk = 0;
Harshad Shirwadkar8016e292020-10-15 13:37:59 -07004531 int ret;
4532
Zhang Yide01f482021-09-01 10:09:55 +08004533 ret = __ext4_get_inode_loc(inode->i_sb, inode->i_ino, inode, iloc,
4534 &err_blk);
Harshad Shirwadkar8016e292020-10-15 13:37:59 -07004535
4536 if (ret == -EIO)
4537 ext4_error_inode_block(inode, err_blk, EIO,
4538 "unable to read itable block");
4539
4540 return ret;
4541}
4542
4543
4544int ext4_get_fc_inode_loc(struct super_block *sb, unsigned long ino,
4545 struct ext4_iloc *iloc)
4546{
Zhang Yide01f482021-09-01 10:09:55 +08004547 return __ext4_get_inode_loc(sb, ino, NULL, iloc, NULL);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004548}
4549
Ira Weinya8ab6d32020-05-28 07:59:58 -07004550static bool ext4_should_enable_dax(struct inode *inode)
Ross Zwisler66425862017-10-12 12:00:59 -04004551{
Ira Weinya8ab6d32020-05-28 07:59:58 -07004552 struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb);
4553
Ira Weiny9cb20f92020-05-28 08:00:00 -07004554 if (test_opt2(inode->i_sb, DAX_NEVER))
Ross Zwisler66425862017-10-12 12:00:59 -04004555 return false;
4556 if (!S_ISREG(inode->i_mode))
4557 return false;
4558 if (ext4_should_journal_data(inode))
4559 return false;
4560 if (ext4_has_inline_data(inode))
4561 return false;
Chandan Rajendra592ddec2018-12-12 15:20:10 +05304562 if (ext4_test_inode_flag(inode, EXT4_INODE_ENCRYPT))
Ross Zwisler66425862017-10-12 12:00:59 -04004563 return false;
Eric Biggersc93d8f82019-07-22 09:26:24 -07004564 if (ext4_test_inode_flag(inode, EXT4_INODE_VERITY))
4565 return false;
Ira Weinya8ab6d32020-05-28 07:59:58 -07004566 if (!test_bit(EXT4_FLAGS_BDEV_IS_DAX, &sbi->s_ext4_flags))
4567 return false;
4568 if (test_opt(inode->i_sb, DAX_ALWAYS))
4569 return true;
4570
Ira Weinyb383a732020-05-28 08:00:02 -07004571 return ext4_test_inode_flag(inode, EXT4_INODE_DAX);
Ross Zwisler66425862017-10-12 12:00:59 -04004572}
4573
Ira Weiny043546e2020-05-28 07:59:59 -07004574void ext4_set_inode_flags(struct inode *inode, bool init)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004575{
Mingming Cao617ba132006-10-11 01:20:53 -07004576 unsigned int flags = EXT4_I(inode)->i_flags;
Theodore Ts'o00a1a052014-03-30 10:20:01 -04004577 unsigned int new_fl = 0;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004578
Ira Weiny043546e2020-05-28 07:59:59 -07004579 WARN_ON_ONCE(IS_DAX(inode) && init);
4580
Mingming Cao617ba132006-10-11 01:20:53 -07004581 if (flags & EXT4_SYNC_FL)
Theodore Ts'o00a1a052014-03-30 10:20:01 -04004582 new_fl |= S_SYNC;
Mingming Cao617ba132006-10-11 01:20:53 -07004583 if (flags & EXT4_APPEND_FL)
Theodore Ts'o00a1a052014-03-30 10:20:01 -04004584 new_fl |= S_APPEND;
Mingming Cao617ba132006-10-11 01:20:53 -07004585 if (flags & EXT4_IMMUTABLE_FL)
Theodore Ts'o00a1a052014-03-30 10:20:01 -04004586 new_fl |= S_IMMUTABLE;
Mingming Cao617ba132006-10-11 01:20:53 -07004587 if (flags & EXT4_NOATIME_FL)
Theodore Ts'o00a1a052014-03-30 10:20:01 -04004588 new_fl |= S_NOATIME;
Mingming Cao617ba132006-10-11 01:20:53 -07004589 if (flags & EXT4_DIRSYNC_FL)
Theodore Ts'o00a1a052014-03-30 10:20:01 -04004590 new_fl |= S_DIRSYNC;
Ira Weiny043546e2020-05-28 07:59:59 -07004591
4592 /* Because of the way inode_set_flags() works we must preserve S_DAX
4593 * here if already set. */
4594 new_fl |= (inode->i_flags & S_DAX);
4595 if (init && ext4_should_enable_dax(inode))
Ross Zwisler923ae0f2015-02-16 15:59:38 -08004596 new_fl |= S_DAX;
Ira Weiny043546e2020-05-28 07:59:59 -07004597
Eric Biggers2ee6a572017-10-09 12:15:35 -07004598 if (flags & EXT4_ENCRYPT_FL)
4599 new_fl |= S_ENCRYPTED;
Gabriel Krisman Bertazib886ee32019-04-25 14:12:08 -04004600 if (flags & EXT4_CASEFOLD_FL)
4601 new_fl |= S_CASEFOLD;
Eric Biggersc93d8f82019-07-22 09:26:24 -07004602 if (flags & EXT4_VERITY_FL)
4603 new_fl |= S_VERITY;
Theodore Ts'o5f16f322014-03-24 14:43:12 -04004604 inode_set_flags(inode, new_fl,
Eric Biggers2ee6a572017-10-09 12:15:35 -07004605 S_SYNC|S_APPEND|S_IMMUTABLE|S_NOATIME|S_DIRSYNC|S_DAX|
Eric Biggersc93d8f82019-07-22 09:26:24 -07004606 S_ENCRYPTED|S_CASEFOLD|S_VERITY);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004607}
4608
Aneesh Kumar K.V0fc1b452008-01-28 23:58:26 -05004609static blkcnt_t ext4_inode_blocks(struct ext4_inode *raw_inode,
Theodore Ts'ode9a55b2009-06-14 17:45:34 -04004610 struct ext4_inode_info *ei)
Aneesh Kumar K.V0fc1b452008-01-28 23:58:26 -05004611{
4612 blkcnt_t i_blocks ;
Aneesh Kumar K.V8180a562008-01-28 23:58:27 -05004613 struct inode *inode = &(ei->vfs_inode);
4614 struct super_block *sb = inode->i_sb;
Aneesh Kumar K.V0fc1b452008-01-28 23:58:26 -05004615
Darrick J. Wonge2b911c2015-10-17 16:18:43 -04004616 if (ext4_has_feature_huge_file(sb)) {
Aneesh Kumar K.V0fc1b452008-01-28 23:58:26 -05004617 /* we are using combined 48 bit field */
4618 i_blocks = ((u64)le16_to_cpu(raw_inode->i_blocks_high)) << 32 |
4619 le32_to_cpu(raw_inode->i_blocks_lo);
Theodore Ts'o07a03822010-06-14 09:54:48 -04004620 if (ext4_test_inode_flag(inode, EXT4_INODE_HUGE_FILE)) {
Aneesh Kumar K.V8180a562008-01-28 23:58:27 -05004621 /* i_blocks represent file system block size */
4622 return i_blocks << (inode->i_blkbits - 9);
4623 } else {
4624 return i_blocks;
4625 }
Aneesh Kumar K.V0fc1b452008-01-28 23:58:26 -05004626 } else {
4627 return le32_to_cpu(raw_inode->i_blocks_lo);
4628 }
4629}
Jan Karaff9ddf72007-07-18 09:24:20 -04004630
Theodore Ts'oeb9b5f02018-05-22 17:14:07 -04004631static inline int ext4_iget_extra_inode(struct inode *inode,
Tao Ma152a7b02012-12-02 11:13:24 -05004632 struct ext4_inode *raw_inode,
4633 struct ext4_inode_info *ei)
4634{
4635 __le32 *magic = (void *)raw_inode +
4636 EXT4_GOOD_OLD_INODE_SIZE + ei->i_extra_isize;
Theodore Ts'oeb9b5f02018-05-22 17:14:07 -04004637
Eric Biggers290ab232016-12-01 14:51:58 -05004638 if (EXT4_GOOD_OLD_INODE_SIZE + ei->i_extra_isize + sizeof(__le32) <=
4639 EXT4_INODE_SIZE(inode->i_sb) &&
4640 *magic == cpu_to_le32(EXT4_XATTR_MAGIC)) {
Tao Ma152a7b02012-12-02 11:13:24 -05004641 ext4_set_inode_state(inode, EXT4_STATE_XATTR);
Theodore Ts'oeb9b5f02018-05-22 17:14:07 -04004642 return ext4_find_inline_data_nolock(inode);
Tao Maf19d5872012-12-10 14:05:51 -05004643 } else
4644 EXT4_I(inode)->i_inline_off = 0;
Theodore Ts'oeb9b5f02018-05-22 17:14:07 -04004645 return 0;
Tao Ma152a7b02012-12-02 11:13:24 -05004646}
4647
Li Xi040cb372016-01-08 16:01:21 -05004648int ext4_get_projid(struct inode *inode, kprojid_t *projid)
4649{
Kaho Ng0b7b7772016-09-05 23:11:58 -04004650 if (!ext4_has_feature_project(inode->i_sb))
Li Xi040cb372016-01-08 16:01:21 -05004651 return -EOPNOTSUPP;
4652 *projid = EXT4_I(inode)->i_projid;
4653 return 0;
4654}
4655
Eryu Guane254d1a2018-05-10 11:55:31 -04004656/*
4657 * ext4 has self-managed i_version for ea inodes, it stores the lower 32bit of
4658 * refcount in i_version, so use raw values if inode has EXT4_EA_INODE_FL flag
4659 * set.
4660 */
4661static inline void ext4_inode_set_iversion_queried(struct inode *inode, u64 val)
4662{
4663 if (unlikely(EXT4_I(inode)->i_flags & EXT4_EA_INODE_FL))
4664 inode_set_iversion_raw(inode, val);
4665 else
4666 inode_set_iversion_queried(inode, val);
4667}
Eryu Guane254d1a2018-05-10 11:55:31 -04004668
Theodore Ts'o8a363972018-12-19 12:29:13 -05004669struct inode *__ext4_iget(struct super_block *sb, unsigned long ino,
4670 ext4_iget_flags flags, const char *function,
4671 unsigned int line)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004672{
Mingming Cao617ba132006-10-11 01:20:53 -07004673 struct ext4_iloc iloc;
4674 struct ext4_inode *raw_inode;
David Howells1d1fe1e2008-02-07 00:15:37 -08004675 struct ext4_inode_info *ei;
Jan Karabd2c38c2021-08-12 15:31:22 +02004676 struct ext4_super_block *es = EXT4_SB(sb)->s_es;
David Howells1d1fe1e2008-02-07 00:15:37 -08004677 struct inode *inode;
Jan Karab436b9b2009-12-08 23:51:10 -05004678 journal_t *journal = EXT4_SB(sb)->s_journal;
David Howells1d1fe1e2008-02-07 00:15:37 -08004679 long ret;
Darrick J. Wong7e6e1ef2016-12-10 09:55:01 -05004680 loff_t size;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004681 int block;
Eric W. Biederman08cefc72012-02-07 15:41:49 -08004682 uid_t i_uid;
4683 gid_t i_gid;
Li Xi040cb372016-01-08 16:01:21 -05004684 projid_t i_projid;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004685
Theodore Ts'o191ce172018-12-31 22:34:31 -05004686 if ((!(flags & EXT4_IGET_SPECIAL) &&
Jan Karabd2c38c2021-08-12 15:31:22 +02004687 ((ino < EXT4_FIRST_INO(sb) && ino != EXT4_ROOT_INO) ||
4688 ino == le32_to_cpu(es->s_usr_quota_inum) ||
4689 ino == le32_to_cpu(es->s_grp_quota_inum) ||
Jan Kara02f310f2021-08-16 11:57:06 +02004690 ino == le32_to_cpu(es->s_prj_quota_inum) ||
4691 ino == le32_to_cpu(es->s_orphan_file_inum))) ||
Theodore Ts'o8a363972018-12-19 12:29:13 -05004692 (ino < EXT4_ROOT_INO) ||
Jan Karabd2c38c2021-08-12 15:31:22 +02004693 (ino > le32_to_cpu(es->s_inodes_count))) {
Theodore Ts'o8a363972018-12-19 12:29:13 -05004694 if (flags & EXT4_IGET_HANDLE)
4695 return ERR_PTR(-ESTALE);
Jan Kara014c9ca2020-11-27 12:33:57 +01004696 __ext4_error(sb, function, line, false, EFSCORRUPTED, 0,
Theodore Ts'o8a363972018-12-19 12:29:13 -05004697 "inode #%lu: comm %s: iget: illegal inode #",
4698 ino, current->comm);
4699 return ERR_PTR(-EFSCORRUPTED);
4700 }
4701
David Howells1d1fe1e2008-02-07 00:15:37 -08004702 inode = iget_locked(sb, ino);
4703 if (!inode)
4704 return ERR_PTR(-ENOMEM);
4705 if (!(inode->i_state & I_NEW))
4706 return inode;
4707
4708 ei = EXT4_I(inode);
Peter Huewe7dc57612011-02-21 21:01:42 -05004709 iloc.bh = NULL;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004710
Harshad Shirwadkar8016e292020-10-15 13:37:59 -07004711 ret = __ext4_get_inode_loc_noinmem(inode, &iloc);
David Howells1d1fe1e2008-02-07 00:15:37 -08004712 if (ret < 0)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004713 goto bad_inode;
Mingming Cao617ba132006-10-11 01:20:53 -07004714 raw_inode = ext4_raw_inode(&iloc);
Darrick J. Wong814525f2012-04-29 18:31:10 -04004715
Theodore Ts'o8e4b5ea2018-03-29 21:56:09 -04004716 if ((ino == EXT4_ROOT_INO) && (raw_inode->i_links_count == 0)) {
Theodore Ts'o8a363972018-12-19 12:29:13 -05004717 ext4_error_inode(inode, function, line, 0,
4718 "iget: root inode unallocated");
Theodore Ts'o8e4b5ea2018-03-29 21:56:09 -04004719 ret = -EFSCORRUPTED;
4720 goto bad_inode;
4721 }
4722
Theodore Ts'o8a363972018-12-19 12:29:13 -05004723 if ((flags & EXT4_IGET_HANDLE) &&
4724 (raw_inode->i_links_count == 0) && (raw_inode->i_mode == 0)) {
4725 ret = -ESTALE;
4726 goto bad_inode;
4727 }
4728
Darrick J. Wong814525f2012-04-29 18:31:10 -04004729 if (EXT4_INODE_SIZE(inode->i_sb) > EXT4_GOOD_OLD_INODE_SIZE) {
4730 ei->i_extra_isize = le16_to_cpu(raw_inode->i_extra_isize);
4731 if (EXT4_GOOD_OLD_INODE_SIZE + ei->i_extra_isize >
Eric Biggers2dc8d9e2016-12-01 14:43:33 -05004732 EXT4_INODE_SIZE(inode->i_sb) ||
4733 (ei->i_extra_isize & 3)) {
Theodore Ts'o8a363972018-12-19 12:29:13 -05004734 ext4_error_inode(inode, function, line, 0,
4735 "iget: bad extra_isize %u "
4736 "(inode size %u)",
Eric Biggers2dc8d9e2016-12-01 14:43:33 -05004737 ei->i_extra_isize,
4738 EXT4_INODE_SIZE(inode->i_sb));
Darrick J. Wong6a797d22015-10-17 16:16:04 -04004739 ret = -EFSCORRUPTED;
Darrick J. Wong814525f2012-04-29 18:31:10 -04004740 goto bad_inode;
4741 }
4742 } else
4743 ei->i_extra_isize = 0;
4744
4745 /* Precompute checksum seed for inode metadata */
Dmitry Monakhov9aa5d32b2014-10-13 03:36:16 -04004746 if (ext4_has_metadata_csum(sb)) {
Darrick J. Wong814525f2012-04-29 18:31:10 -04004747 struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb);
4748 __u32 csum;
4749 __le32 inum = cpu_to_le32(inode->i_ino);
4750 __le32 gen = raw_inode->i_generation;
4751 csum = ext4_chksum(sbi, sbi->s_csum_seed, (__u8 *)&inum,
4752 sizeof(inum));
4753 ei->i_csum_seed = ext4_chksum(sbi, csum, (__u8 *)&gen,
4754 sizeof(gen));
4755 }
4756
Harshad Shirwadkar8016e292020-10-15 13:37:59 -07004757 if ((!ext4_inode_csum_verify(inode, raw_inode, ei) ||
4758 ext4_simulate_fail(sb, EXT4_SIM_INODE_CRC)) &&
4759 (!(EXT4_SB(sb)->s_mount_state & EXT4_FC_REPLAY))) {
4760 ext4_error_inode_err(inode, function, line, 0,
4761 EFSBADCRC, "iget: checksum invalid");
Darrick J. Wong6a797d22015-10-17 16:16:04 -04004762 ret = -EFSBADCRC;
Darrick J. Wong814525f2012-04-29 18:31:10 -04004763 goto bad_inode;
4764 }
4765
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004766 inode->i_mode = le16_to_cpu(raw_inode->i_mode);
Eric W. Biederman08cefc72012-02-07 15:41:49 -08004767 i_uid = (uid_t)le16_to_cpu(raw_inode->i_uid_low);
4768 i_gid = (gid_t)le16_to_cpu(raw_inode->i_gid_low);
Kaho Ng0b7b7772016-09-05 23:11:58 -04004769 if (ext4_has_feature_project(sb) &&
Li Xi040cb372016-01-08 16:01:21 -05004770 EXT4_INODE_SIZE(sb) > EXT4_GOOD_OLD_INODE_SIZE &&
4771 EXT4_FITS_IN_INODE(raw_inode, ei, i_projid))
4772 i_projid = (projid_t)le32_to_cpu(raw_inode->i_projid);
4773 else
4774 i_projid = EXT4_DEF_PROJID;
4775
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04004776 if (!(test_opt(inode->i_sb, NO_UID32))) {
Eric W. Biederman08cefc72012-02-07 15:41:49 -08004777 i_uid |= le16_to_cpu(raw_inode->i_uid_high) << 16;
4778 i_gid |= le16_to_cpu(raw_inode->i_gid_high) << 16;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004779 }
Eric W. Biederman08cefc72012-02-07 15:41:49 -08004780 i_uid_write(inode, i_uid);
4781 i_gid_write(inode, i_gid);
Li Xi040cb372016-01-08 16:01:21 -05004782 ei->i_projid = make_kprojid(&init_user_ns, i_projid);
Miklos Szeredibfe86842011-10-28 14:13:29 +02004783 set_nlink(inode, le16_to_cpu(raw_inode->i_links_count));
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004784
Theodore Ts'o353eb832011-01-10 12:18:25 -05004785 ext4_clear_state_flags(ei); /* Only relevant on 32-bit archs */
Tao Ma67cf5b02012-12-10 14:04:46 -05004786 ei->i_inline_off = 0;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004787 ei->i_dir_start_lookup = 0;
4788 ei->i_dtime = le32_to_cpu(raw_inode->i_dtime);
4789 /* We now have enough fields to check if the inode was active or not.
4790 * This is needed because nfsd might try to access dead inodes
4791 * the test is that same one that e2fsck uses
4792 * NeilBrown 1999oct15
4793 */
4794 if (inode->i_nlink == 0) {
Dr. Tilmann Bubeck393d1d12013-04-08 12:54:05 -04004795 if ((inode->i_mode == 0 ||
4796 !(EXT4_SB(inode->i_sb)->s_mount_state & EXT4_ORPHAN_FS)) &&
4797 ino != EXT4_BOOT_LOADER_INO) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004798 /* this inode is deleted */
David Howells1d1fe1e2008-02-07 00:15:37 -08004799 ret = -ESTALE;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004800 goto bad_inode;
4801 }
4802 /* The only unlinked inodes we let through here have
4803 * valid i_mode and are being read by the orphan
4804 * recovery code: that's fine, we're about to complete
Dr. Tilmann Bubeck393d1d12013-04-08 12:54:05 -04004805 * the process of deleting those.
4806 * OR it is the EXT4_BOOT_LOADER_INO which is
4807 * not initialized on a new filesystem. */
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004808 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004809 ei->i_flags = le32_to_cpu(raw_inode->i_flags);
Ira Weiny043546e2020-05-28 07:59:59 -07004810 ext4_set_inode_flags(inode, true);
Aneesh Kumar K.V0fc1b452008-01-28 23:58:26 -05004811 inode->i_blocks = ext4_inode_blocks(raw_inode, ei);
Aneesh Kumar K.V7973c0c2008-01-28 23:58:27 -05004812 ei->i_file_acl = le32_to_cpu(raw_inode->i_file_acl_lo);
Darrick J. Wonge2b911c2015-10-17 16:18:43 -04004813 if (ext4_has_feature_64bit(sb))
Badari Pulavartya1ddeb72006-10-11 01:21:09 -07004814 ei->i_file_acl |=
4815 ((__u64)le16_to_cpu(raw_inode->i_file_acl_high)) << 32;
Artem Blagodarenkoe08ac992017-06-21 21:09:57 -04004816 inode->i_size = ext4_isize(sb, raw_inode);
Darrick J. Wong7e6e1ef2016-12-10 09:55:01 -05004817 if ((size = i_size_read(inode)) < 0) {
Theodore Ts'o8a363972018-12-19 12:29:13 -05004818 ext4_error_inode(inode, function, line, 0,
4819 "iget: bad i_size value: %lld", size);
Darrick J. Wong7e6e1ef2016-12-10 09:55:01 -05004820 ret = -EFSCORRUPTED;
4821 goto bad_inode;
4822 }
Jan Kara48a34312020-02-10 15:43:16 +01004823 /*
4824 * If dir_index is not enabled but there's dir with INDEX flag set,
4825 * we'd normally treat htree data as empty space. But with metadata
4826 * checksumming that corrupts checksums so forbid that.
4827 */
4828 if (!ext4_has_feature_dir_index(sb) && ext4_has_metadata_csum(sb) &&
4829 ext4_test_inode_flag(inode, EXT4_INODE_INDEX)) {
4830 ext4_error_inode(inode, function, line, 0,
4831 "iget: Dir with htree data on filesystem without dir_index feature.");
4832 ret = -EFSCORRUPTED;
4833 goto bad_inode;
4834 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004835 ei->i_disksize = inode->i_size;
Dmitry Monakhova9e7f442009-12-14 15:21:14 +03004836#ifdef CONFIG_QUOTA
4837 ei->i_reserved_quota = 0;
4838#endif
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004839 inode->i_generation = le32_to_cpu(raw_inode->i_generation);
4840 ei->i_block_group = iloc.block_group;
Theodore Ts'oa4912122009-03-12 12:18:34 -04004841 ei->i_last_alloc_group = ~0;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004842 /*
4843 * NOTE! The in-memory inode i_data array is in little-endian order
4844 * even on big-endian machines: we do NOT byteswap the block numbers!
4845 */
Mingming Cao617ba132006-10-11 01:20:53 -07004846 for (block = 0; block < EXT4_N_BLOCKS; block++)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004847 ei->i_data[block] = raw_inode->i_block[block];
4848 INIT_LIST_HEAD(&ei->i_orphan);
Harshad Shirwadkaraa75f4d2020-10-15 13:37:57 -07004849 ext4_fc_init_inode(&ei->vfs_inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004850
Jan Karab436b9b2009-12-08 23:51:10 -05004851 /*
4852 * Set transaction id's of transactions that have to be committed
4853 * to finish f[data]sync. We set them to currently running transaction
4854 * as we cannot be sure that the inode or some of its metadata isn't
4855 * part of the transaction - the inode could have been reclaimed and
4856 * now it is reread from disk.
4857 */
4858 if (journal) {
4859 transaction_t *transaction;
4860 tid_t tid;
4861
Theodore Ts'oa931da62010-08-03 21:35:12 -04004862 read_lock(&journal->j_state_lock);
Jan Karab436b9b2009-12-08 23:51:10 -05004863 if (journal->j_running_transaction)
4864 transaction = journal->j_running_transaction;
4865 else
4866 transaction = journal->j_committing_transaction;
4867 if (transaction)
4868 tid = transaction->t_tid;
4869 else
4870 tid = journal->j_commit_sequence;
Theodore Ts'oa931da62010-08-03 21:35:12 -04004871 read_unlock(&journal->j_state_lock);
Jan Karab436b9b2009-12-08 23:51:10 -05004872 ei->i_sync_tid = tid;
4873 ei->i_datasync_tid = tid;
4874 }
4875
Eric Sandeen0040d982008-02-05 22:36:43 -05004876 if (EXT4_INODE_SIZE(inode->i_sb) > EXT4_GOOD_OLD_INODE_SIZE) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004877 if (ei->i_extra_isize == 0) {
4878 /* The extra space is currently unused. Use it. */
Eric Biggers2dc8d9e2016-12-01 14:43:33 -05004879 BUILD_BUG_ON(sizeof(struct ext4_inode) & 3);
Mingming Cao617ba132006-10-11 01:20:53 -07004880 ei->i_extra_isize = sizeof(struct ext4_inode) -
4881 EXT4_GOOD_OLD_INODE_SIZE;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004882 } else {
Theodore Ts'oeb9b5f02018-05-22 17:14:07 -04004883 ret = ext4_iget_extra_inode(inode, raw_inode, ei);
4884 if (ret)
4885 goto bad_inode;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004886 }
Darrick J. Wong814525f2012-04-29 18:31:10 -04004887 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004888
Kalpak Shahef7f3832007-07-18 09:15:20 -04004889 EXT4_INODE_GET_XTIME(i_ctime, inode, raw_inode);
4890 EXT4_INODE_GET_XTIME(i_mtime, inode, raw_inode);
4891 EXT4_INODE_GET_XTIME(i_atime, inode, raw_inode);
4892 EXT4_EINODE_GET_XTIME(i_crtime, ei, raw_inode);
4893
Theodore Ts'oed3654e2014-03-24 14:09:06 -04004894 if (likely(!test_opt2(inode->i_sb, HURD_COMPAT))) {
Jeff Laytonee73f9a2018-01-09 08:21:39 -05004895 u64 ivers = le32_to_cpu(raw_inode->i_disk_version);
4896
Theodore Ts'oc4f65702014-03-20 00:32:57 -04004897 if (EXT4_INODE_SIZE(inode->i_sb) > EXT4_GOOD_OLD_INODE_SIZE) {
4898 if (EXT4_FITS_IN_INODE(raw_inode, ei, i_version_hi))
Jeff Laytonee73f9a2018-01-09 08:21:39 -05004899 ivers |=
Theodore Ts'oc4f65702014-03-20 00:32:57 -04004900 (__u64)(le32_to_cpu(raw_inode->i_version_hi)) << 32;
4901 }
Eryu Guane254d1a2018-05-10 11:55:31 -04004902 ext4_inode_set_iversion_queried(inode, ivers);
Jean Noel Cordenner25ec56b2008-01-28 23:58:27 -05004903 }
4904
Theodore Ts'oc4b5a612009-04-24 18:45:35 -04004905 ret = 0;
Theodore Ts'o485c26e2009-04-24 13:43:20 -04004906 if (ei->i_file_acl &&
Jan Karace9f24c2020-07-28 15:04:34 +02004907 !ext4_inode_block_valid(inode, ei->i_file_acl, 1)) {
Theodore Ts'o8a363972018-12-19 12:29:13 -05004908 ext4_error_inode(inode, function, line, 0,
4909 "iget: bad extended attribute block %llu",
Theodore Ts'o24676da2010-05-16 21:00:00 -04004910 ei->i_file_acl);
Darrick J. Wong6a797d22015-10-17 16:16:04 -04004911 ret = -EFSCORRUPTED;
Theodore Ts'o485c26e2009-04-24 13:43:20 -04004912 goto bad_inode;
Tao Maf19d5872012-12-10 14:05:51 -05004913 } else if (!ext4_has_inline_data(inode)) {
Liu Songbc716522018-08-02 00:11:16 -04004914 /* validate the block references in the inode */
Harshad Shirwadkar8016e292020-10-15 13:37:59 -07004915 if (!(EXT4_SB(sb)->s_mount_state & EXT4_FC_REPLAY) &&
4916 (S_ISREG(inode->i_mode) || S_ISDIR(inode->i_mode) ||
4917 (S_ISLNK(inode->i_mode) &&
4918 !ext4_inode_is_fast_symlink(inode)))) {
Liu Songbc716522018-08-02 00:11:16 -04004919 if (ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS))
Tao Maf19d5872012-12-10 14:05:51 -05004920 ret = ext4_ext_check_inode(inode);
Liu Songbc716522018-08-02 00:11:16 -04004921 else
4922 ret = ext4_ind_check_inode(inode);
Tao Maf19d5872012-12-10 14:05:51 -05004923 }
Thiemo Nagelfe2c8192009-03-31 08:36:10 -04004924 }
Theodore Ts'o567f3e92009-11-14 08:19:05 -05004925 if (ret)
Theodore Ts'ode9a55b2009-06-14 17:45:34 -04004926 goto bad_inode;
Aneesh Kumar K.V7a262f72009-03-27 16:39:58 -04004927
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004928 if (S_ISREG(inode->i_mode)) {
Mingming Cao617ba132006-10-11 01:20:53 -07004929 inode->i_op = &ext4_file_inode_operations;
Boaz Harroshbe64f882015-04-15 16:15:17 -07004930 inode->i_fop = &ext4_file_operations;
Mingming Cao617ba132006-10-11 01:20:53 -07004931 ext4_set_aops(inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004932 } else if (S_ISDIR(inode->i_mode)) {
Mingming Cao617ba132006-10-11 01:20:53 -07004933 inode->i_op = &ext4_dir_inode_operations;
4934 inode->i_fop = &ext4_dir_operations;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004935 } else if (S_ISLNK(inode->i_mode)) {
Luis R. Rodriguez6390d332018-05-13 16:45:56 -04004936 /* VFS does not allow setting these so must be corruption */
4937 if (IS_APPEND(inode) || IS_IMMUTABLE(inode)) {
Theodore Ts'o8a363972018-12-19 12:29:13 -05004938 ext4_error_inode(inode, function, line, 0,
4939 "iget: immutable or append flags "
4940 "not allowed on symlinks");
Luis R. Rodriguez6390d332018-05-13 16:45:56 -04004941 ret = -EFSCORRUPTED;
4942 goto bad_inode;
4943 }
Chandan Rajendra592ddec2018-12-12 15:20:10 +05304944 if (IS_ENCRYPTED(inode)) {
Al Viroa7a67e82015-04-27 17:51:30 -04004945 inode->i_op = &ext4_encrypted_symlink_inode_operations;
4946 ext4_set_aops(inode);
4947 } else if (ext4_inode_is_fast_symlink(inode)) {
Al Viro75e75662015-05-02 10:13:58 -04004948 inode->i_link = (char *)ei->i_data;
Mingming Cao617ba132006-10-11 01:20:53 -07004949 inode->i_op = &ext4_fast_symlink_inode_operations;
Duane Griffine83c1392008-12-19 20:47:15 +00004950 nd_terminate_link(ei->i_data, inode->i_size,
4951 sizeof(ei->i_data) - 1);
4952 } else {
Mingming Cao617ba132006-10-11 01:20:53 -07004953 inode->i_op = &ext4_symlink_inode_operations;
4954 ext4_set_aops(inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004955 }
Al Viro21fc61c2015-11-17 01:07:57 -05004956 inode_nohighmem(inode);
Theodore Ts'o563bdd62009-03-26 00:06:19 -04004957 } else if (S_ISCHR(inode->i_mode) || S_ISBLK(inode->i_mode) ||
4958 S_ISFIFO(inode->i_mode) || S_ISSOCK(inode->i_mode)) {
Mingming Cao617ba132006-10-11 01:20:53 -07004959 inode->i_op = &ext4_special_inode_operations;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004960 if (raw_inode->i_block[0])
4961 init_special_inode(inode, inode->i_mode,
4962 old_decode_dev(le32_to_cpu(raw_inode->i_block[0])));
4963 else
4964 init_special_inode(inode, inode->i_mode,
4965 new_decode_dev(le32_to_cpu(raw_inode->i_block[1])));
Dr. Tilmann Bubeck393d1d12013-04-08 12:54:05 -04004966 } else if (ino == EXT4_BOOT_LOADER_INO) {
4967 make_bad_inode(inode);
Theodore Ts'o563bdd62009-03-26 00:06:19 -04004968 } else {
Darrick J. Wong6a797d22015-10-17 16:16:04 -04004969 ret = -EFSCORRUPTED;
Theodore Ts'o8a363972018-12-19 12:29:13 -05004970 ext4_error_inode(inode, function, line, 0,
4971 "iget: bogus i_mode (%o)", inode->i_mode);
Theodore Ts'o563bdd62009-03-26 00:06:19 -04004972 goto bad_inode;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004973 }
Theodore Ts'o6456ca62019-09-03 01:43:17 -04004974 if (IS_CASEFOLDED(inode) && !ext4_has_feature_casefold(inode->i_sb))
4975 ext4_error_inode(inode, function, line, 0,
4976 "casefold flag without casefold feature");
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04004977 brelse(iloc.bh);
Tahsin Erdogandec214d2017-06-22 11:44:55 -04004978
David Howells1d1fe1e2008-02-07 00:15:37 -08004979 unlock_new_inode(inode);
4980 return inode;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004981
4982bad_inode:
Theodore Ts'o567f3e92009-11-14 08:19:05 -05004983 brelse(iloc.bh);
David Howells1d1fe1e2008-02-07 00:15:37 -08004984 iget_failed(inode);
4985 return ERR_PTR(ret);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004986}
4987
David Howells3f19b2a2017-12-01 11:40:16 +00004988static void __ext4_update_other_inode_time(struct super_block *sb,
4989 unsigned long orig_ino,
4990 unsigned long ino,
4991 struct ext4_inode *raw_inode)
Theodore Ts'oa26f4992015-02-02 00:37:02 -05004992{
David Howells3f19b2a2017-12-01 11:40:16 +00004993 struct inode *inode;
Theodore Ts'oa26f4992015-02-02 00:37:02 -05004994
David Howells3f19b2a2017-12-01 11:40:16 +00004995 inode = find_inode_by_ino_rcu(sb, ino);
4996 if (!inode)
4997 return;
4998
Eric Biggersed296c62021-01-12 11:02:53 -08004999 if (!inode_is_dirtytime_only(inode))
David Howells3f19b2a2017-12-01 11:40:16 +00005000 return;
5001
Theodore Ts'oa26f4992015-02-02 00:37:02 -05005002 spin_lock(&inode->i_lock);
Eric Biggersed296c62021-01-12 11:02:53 -08005003 if (inode_is_dirtytime_only(inode)) {
Theodore Ts'oa26f4992015-02-02 00:37:02 -05005004 struct ext4_inode_info *ei = EXT4_I(inode);
5005
Jan Kara5fcd5752020-05-29 16:24:43 +02005006 inode->i_state &= ~I_DIRTY_TIME;
Theodore Ts'oa26f4992015-02-02 00:37:02 -05005007 spin_unlock(&inode->i_lock);
5008
5009 spin_lock(&ei->i_raw_lock);
David Howells3f19b2a2017-12-01 11:40:16 +00005010 EXT4_INODE_SET_XTIME(i_ctime, inode, raw_inode);
5011 EXT4_INODE_SET_XTIME(i_mtime, inode, raw_inode);
5012 EXT4_INODE_SET_XTIME(i_atime, inode, raw_inode);
5013 ext4_inode_csum_set(inode, raw_inode, ei);
Theodore Ts'oa26f4992015-02-02 00:37:02 -05005014 spin_unlock(&ei->i_raw_lock);
David Howells3f19b2a2017-12-01 11:40:16 +00005015 trace_ext4_other_inode_update_time(inode, orig_ino);
5016 return;
Theodore Ts'oa26f4992015-02-02 00:37:02 -05005017 }
5018 spin_unlock(&inode->i_lock);
Theodore Ts'oa26f4992015-02-02 00:37:02 -05005019}
5020
5021/*
5022 * Opportunistically update the other time fields for other inodes in
5023 * the same inode table block.
5024 */
5025static void ext4_update_other_inodes_time(struct super_block *sb,
5026 unsigned long orig_ino, char *buf)
5027{
Theodore Ts'oa26f4992015-02-02 00:37:02 -05005028 unsigned long ino;
5029 int i, inodes_per_block = EXT4_SB(sb)->s_inodes_per_block;
5030 int inode_size = EXT4_INODE_SIZE(sb);
5031
Theodore Ts'o0f0ff9a2015-07-01 23:37:46 -04005032 /*
5033 * Calculate the first inode in the inode table block. Inode
5034 * numbers are one-based. That is, the first inode in a block
5035 * (assuming 4k blocks and 256 byte inodes) is (n*16 + 1).
5036 */
5037 ino = ((orig_ino - 1) & ~(inodes_per_block - 1)) + 1;
David Howells3f19b2a2017-12-01 11:40:16 +00005038 rcu_read_lock();
Theodore Ts'oa26f4992015-02-02 00:37:02 -05005039 for (i = 0; i < inodes_per_block; i++, ino++, buf += inode_size) {
5040 if (ino == orig_ino)
5041 continue;
David Howells3f19b2a2017-12-01 11:40:16 +00005042 __ext4_update_other_inode_time(sb, orig_ino, ino,
5043 (struct ext4_inode *)buf);
Theodore Ts'oa26f4992015-02-02 00:37:02 -05005044 }
David Howells3f19b2a2017-12-01 11:40:16 +00005045 rcu_read_unlock();
Theodore Ts'oa26f4992015-02-02 00:37:02 -05005046}
5047
Zhang Yi664bd382021-09-01 10:09:53 +08005048/*
5049 * Post the struct inode info into an on-disk inode location in the
5050 * buffer-cache. This gobbles the caller's reference to the
5051 * buffer_head in the inode location struct.
5052 *
5053 * The caller must have write access to iloc->bh.
5054 */
5055static int ext4_do_update_inode(handle_t *handle,
5056 struct inode *inode,
5057 struct ext4_iloc *iloc)
5058{
5059 struct ext4_inode *raw_inode = ext4_raw_inode(iloc);
5060 struct ext4_inode_info *ei = EXT4_I(inode);
5061 struct buffer_head *bh = iloc->bh;
5062 struct super_block *sb = inode->i_sb;
5063 int err;
5064 int need_datasync = 0, set_large_file = 0;
5065
5066 spin_lock(&ei->i_raw_lock);
5067
5068 /*
5069 * For fields not tracked in the in-memory inode, initialise them
5070 * to zero for new inodes.
5071 */
5072 if (ext4_test_inode_state(inode, EXT4_STATE_NEW))
5073 memset(raw_inode, 0, EXT4_SB(inode->i_sb)->s_inode_size);
5074
5075 if (READ_ONCE(ei->i_disksize) != ext4_isize(inode->i_sb, raw_inode))
5076 need_datasync = 1;
5077 if (ei->i_disksize > 0x7fffffffULL) {
5078 if (!ext4_has_feature_large_file(sb) ||
5079 EXT4_SB(sb)->s_es->s_rev_level == cpu_to_le32(EXT4_GOOD_OLD_REV))
5080 set_large_file = 1;
5081 }
5082
5083 err = ext4_fill_raw_inode(inode, raw_inode);
Theodore Ts'o202ee5d2014-04-21 14:37:55 -04005084 spin_unlock(&ei->i_raw_lock);
Zhang Yibaaae9792021-08-26 21:04:09 +08005085 if (err) {
5086 EXT4_ERROR_INODE(inode, "corrupted inode contents");
5087 goto out_brelse;
5088 }
5089
Linus Torvalds1751e8a2017-11-27 13:05:09 -08005090 if (inode->i_sb->s_flags & SB_LAZYTIME)
Theodore Ts'oa26f4992015-02-02 00:37:02 -05005091 ext4_update_other_inodes_time(inode->i_sb, inode->i_ino,
5092 bh->b_data);
Theodore Ts'o202ee5d2014-04-21 14:37:55 -04005093
Frank Mayhar830156c2009-09-29 10:07:47 -04005094 BUFFER_TRACE(bh, "call ext4_handle_dirty_metadata");
Shijie Luo7d8bd3c2021-03-12 01:50:51 -05005095 err = ext4_handle_dirty_metadata(handle, NULL, bh);
5096 if (err)
Zhang Yibaaae9792021-08-26 21:04:09 +08005097 goto out_error;
Theodore Ts'o19f5fb72010-01-24 14:34:07 -05005098 ext4_clear_inode_state(inode, EXT4_STATE_NEW);
Theodore Ts'o202ee5d2014-04-21 14:37:55 -04005099 if (set_large_file) {
liang xie5d601252014-05-12 22:06:43 -04005100 BUFFER_TRACE(EXT4_SB(sb)->s_sbh, "get write access");
Jan Kara188c2992021-08-16 11:57:04 +02005101 err = ext4_journal_get_write_access(handle, sb,
5102 EXT4_SB(sb)->s_sbh,
5103 EXT4_JTR_NONE);
Theodore Ts'o202ee5d2014-04-21 14:37:55 -04005104 if (err)
Zhang Yibaaae9792021-08-26 21:04:09 +08005105 goto out_error;
Jan Kara05c2c002020-12-16 11:18:39 +01005106 lock_buffer(EXT4_SB(sb)->s_sbh);
Darrick J. Wonge2b911c2015-10-17 16:18:43 -04005107 ext4_set_feature_large_file(sb);
Jan Kara05c2c002020-12-16 11:18:39 +01005108 ext4_superblock_csum_set(sb);
5109 unlock_buffer(EXT4_SB(sb)->s_sbh);
Theodore Ts'o202ee5d2014-04-21 14:37:55 -04005110 ext4_handle_sync(handle);
Jan Karaa3f5cf12020-12-16 11:18:44 +01005111 err = ext4_handle_dirty_metadata(handle, NULL,
5112 EXT4_SB(sb)->s_sbh);
Theodore Ts'o202ee5d2014-04-21 14:37:55 -04005113 }
Jan Karab71fc072012-09-26 21:52:20 -04005114 ext4_update_inode_fsync_trans(handle, inode, need_datasync);
Zhang Yibaaae9792021-08-26 21:04:09 +08005115out_error:
5116 ext4_std_error(inode->i_sb, err);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005117out_brelse:
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04005118 brelse(bh);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005119 return err;
5120}
5121
5122/*
Mingming Cao617ba132006-10-11 01:20:53 -07005123 * ext4_write_inode()
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005124 *
5125 * We are called from a few places:
5126 *
Theodore Ts'o87f7e412014-04-08 11:38:28 -04005127 * - Within generic_file_aio_write() -> generic_write_sync() for O_SYNC files.
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005128 * Here, there will be no transaction running. We wait for any running
Anatol Pomozov4907cb72012-09-01 10:31:09 -07005129 * transaction to commit.
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005130 *
Theodore Ts'o87f7e412014-04-08 11:38:28 -04005131 * - Within flush work (sys_sync(), kupdate and such).
5132 * We wait on commit, if told to.
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005133 *
Theodore Ts'o87f7e412014-04-08 11:38:28 -04005134 * - Within iput_final() -> write_inode_now()
5135 * We wait on commit, if told to.
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005136 *
5137 * In all cases it is actually safe for us to return without doing anything,
5138 * because the inode has been copied into a raw inode buffer in
Theodore Ts'o87f7e412014-04-08 11:38:28 -04005139 * ext4_mark_inode_dirty(). This is a correctness thing for WB_SYNC_ALL
5140 * writeback.
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005141 *
5142 * Note that we are absolutely dependent upon all inode dirtiers doing the
5143 * right thing: they *must* call mark_inode_dirty() after dirtying info in
5144 * which we are interested.
5145 *
5146 * It would be a bug for them to not do this. The code:
5147 *
5148 * mark_inode_dirty(inode)
5149 * stuff();
5150 * inode->i_size = expr;
5151 *
Theodore Ts'o87f7e412014-04-08 11:38:28 -04005152 * is in error because write_inode() could occur while `stuff()' is running,
5153 * and the new i_size will be lost. Plus the inode will no longer be on the
5154 * superblock's dirty inode list.
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005155 */
Christoph Hellwiga9185b42010-03-05 09:21:37 +01005156int ext4_write_inode(struct inode *inode, struct writeback_control *wbc)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005157{
Frank Mayhar91ac6f42009-09-09 22:33:47 -04005158 int err;
5159
Theodore Ts'o18f2c4f2018-12-19 14:36:58 -05005160 if (WARN_ON_ONCE(current->flags & PF_MEMALLOC) ||
5161 sb_rdonly(inode->i_sb))
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005162 return 0;
5163
Theodore Ts'o18f2c4f2018-12-19 14:36:58 -05005164 if (unlikely(ext4_forced_shutdown(EXT4_SB(inode->i_sb))))
5165 return -EIO;
5166
Frank Mayhar91ac6f42009-09-09 22:33:47 -04005167 if (EXT4_SB(inode->i_sb)->s_journal) {
5168 if (ext4_journal_current_handle()) {
5169 jbd_debug(1, "called recursively, non-PF_MEMALLOC!\n");
5170 dump_stack();
5171 return -EIO;
5172 }
5173
Jan Kara10542c22014-03-04 10:50:50 -05005174 /*
5175 * No need to force transaction in WB_SYNC_NONE mode. Also
5176 * ext4_sync_fs() will force the commit after everything is
5177 * written.
5178 */
5179 if (wbc->sync_mode != WB_SYNC_ALL || wbc->for_sync)
Frank Mayhar91ac6f42009-09-09 22:33:47 -04005180 return 0;
5181
Harshad Shirwadkaraa75f4d2020-10-15 13:37:57 -07005182 err = ext4_fc_commit(EXT4_SB(inode->i_sb)->s_journal,
Theodore Ts'o18f2c4f2018-12-19 14:36:58 -05005183 EXT4_I(inode)->i_sync_tid);
Frank Mayhar91ac6f42009-09-09 22:33:47 -04005184 } else {
5185 struct ext4_iloc iloc;
5186
Harshad Shirwadkar8016e292020-10-15 13:37:59 -07005187 err = __ext4_get_inode_loc_noinmem(inode, &iloc);
Frank Mayhar91ac6f42009-09-09 22:33:47 -04005188 if (err)
5189 return err;
Jan Kara10542c22014-03-04 10:50:50 -05005190 /*
5191 * sync(2) will flush the whole buffer cache. No need to do
5192 * it here separately for each inode.
5193 */
5194 if (wbc->sync_mode == WB_SYNC_ALL && !wbc->for_sync)
Frank Mayhar830156c2009-09-29 10:07:47 -04005195 sync_dirty_buffer(iloc.bh);
5196 if (buffer_req(iloc.bh) && !buffer_uptodate(iloc.bh)) {
Theodore Ts'o54d3adb2020-03-28 19:33:43 -04005197 ext4_error_inode_block(inode, iloc.bh->b_blocknr, EIO,
5198 "IO error syncing inode");
Frank Mayhar830156c2009-09-29 10:07:47 -04005199 err = -EIO;
5200 }
Curt Wohlgemuthfd2dd9f2010-04-03 17:44:16 -04005201 brelse(iloc.bh);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005202 }
Frank Mayhar91ac6f42009-09-09 22:33:47 -04005203 return err;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005204}
5205
5206/*
Jan Kara53e87262012-12-25 13:29:52 -05005207 * In data=journal mode ext4_journalled_invalidatepage() may fail to invalidate
5208 * buffers that are attached to a page stradding i_size and are undergoing
5209 * commit. In that case we have to wait for commit to finish and try again.
5210 */
5211static void ext4_wait_for_tail_page_commit(struct inode *inode)
5212{
5213 struct page *page;
5214 unsigned offset;
5215 journal_t *journal = EXT4_SB(inode->i_sb)->s_journal;
5216 tid_t commit_tid = 0;
5217 int ret;
5218
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005219 offset = inode->i_size & (PAGE_SIZE - 1);
Jan Kara53e87262012-12-25 13:29:52 -05005220 /*
yangerkun565333a2019-09-19 14:35:08 +08005221 * If the page is fully truncated, we don't need to wait for any commit
5222 * (and we even should not as __ext4_journalled_invalidatepage() may
5223 * strip all buffers from the page but keep the page dirty which can then
5224 * confuse e.g. concurrent ext4_writepage() seeing dirty page without
5225 * buffers). Also we don't need to wait for any commit if all buffers in
5226 * the page remain valid. This is most beneficial for the common case of
5227 * blocksize == PAGESIZE.
Jan Kara53e87262012-12-25 13:29:52 -05005228 */
yangerkun565333a2019-09-19 14:35:08 +08005229 if (!offset || offset > (PAGE_SIZE - i_blocksize(inode)))
Jan Kara53e87262012-12-25 13:29:52 -05005230 return;
5231 while (1) {
5232 page = find_lock_page(inode->i_mapping,
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005233 inode->i_size >> PAGE_SHIFT);
Jan Kara53e87262012-12-25 13:29:52 -05005234 if (!page)
5235 return;
Lukas Czernerca99fdd2013-05-21 23:25:01 -04005236 ret = __ext4_journalled_invalidatepage(page, offset,
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005237 PAGE_SIZE - offset);
Jan Kara53e87262012-12-25 13:29:52 -05005238 unlock_page(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005239 put_page(page);
Jan Kara53e87262012-12-25 13:29:52 -05005240 if (ret != -EBUSY)
5241 return;
5242 commit_tid = 0;
5243 read_lock(&journal->j_state_lock);
5244 if (journal->j_committing_transaction)
5245 commit_tid = journal->j_committing_transaction->t_tid;
5246 read_unlock(&journal->j_state_lock);
5247 if (commit_tid)
5248 jbd2_log_wait_commit(journal, commit_tid);
5249 }
5250}
5251
5252/*
Mingming Cao617ba132006-10-11 01:20:53 -07005253 * ext4_setattr()
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005254 *
5255 * Called from notify_change.
5256 *
5257 * We want to trap VFS attempts to truncate the file as soon as
5258 * possible. In particular, we want to make sure that when the VFS
5259 * shrinks i_size, we put the inode on the orphan list and modify
5260 * i_disksize immediately, so that during the subsequent flushing of
5261 * dirty pages and freeing of disk blocks, we can guarantee that any
5262 * commit will leave the blocks being flushed in an unused state on
5263 * disk. (On recovery, the inode will get truncated and the blocks will
5264 * be freed, so we have a strong guarantee that no future commit will
5265 * leave these blocks visible to the user.)
5266 *
Jan Kara678aaf42008-07-11 19:27:31 -04005267 * Another thing we have to assure is that if we are in ordered mode
5268 * and inode is still attached to the committing transaction, we must
5269 * we start writeout of all the dirty pages which are being truncated.
5270 * This way we are sure that all the data written in the previous
5271 * transaction are already on disk (truncate waits for pages under
5272 * writeback).
5273 *
5274 * Called with inode->i_mutex down.
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005275 */
Christian Brauner549c7292021-01-21 14:19:43 +01005276int ext4_setattr(struct user_namespace *mnt_userns, struct dentry *dentry,
5277 struct iattr *attr)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005278{
David Howells2b0143b2015-03-17 22:25:59 +00005279 struct inode *inode = d_inode(dentry);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005280 int error, rc = 0;
Dmitry Monakhov3d287de2010-10-27 22:08:46 -04005281 int orphan = 0;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005282 const unsigned int ia_valid = attr->ia_valid;
5283
Theodore Ts'o0db1ff22017-02-05 01:28:48 -05005284 if (unlikely(ext4_forced_shutdown(EXT4_SB(inode->i_sb))))
5285 return -EIO;
5286
Theodore Ts'o02b016c2019-06-09 22:04:33 -04005287 if (unlikely(IS_IMMUTABLE(inode)))
5288 return -EPERM;
5289
5290 if (unlikely(IS_APPEND(inode) &&
5291 (ia_valid & (ATTR_MODE | ATTR_UID |
5292 ATTR_GID | ATTR_TIMES_SET))))
5293 return -EPERM;
5294
Christian Brauner14f3db52021-01-21 14:19:57 +01005295 error = setattr_prepare(mnt_userns, dentry, attr);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005296 if (error)
5297 return error;
5298
Eric Biggers3ce2b8d2017-10-18 20:21:58 -04005299 error = fscrypt_prepare_setattr(dentry, attr);
5300 if (error)
5301 return error;
5302
Eric Biggersc93d8f82019-07-22 09:26:24 -07005303 error = fsverity_prepare_setattr(dentry, attr);
5304 if (error)
5305 return error;
5306
Jan Karaa7cdade2015-06-29 16:22:54 +02005307 if (is_quota_modification(inode, attr)) {
5308 error = dquot_initialize(inode);
5309 if (error)
5310 return error;
5311 }
Harshad Shirwadkar2729cfd2021-12-23 12:21:37 -08005312
Eric W. Biederman08cefc72012-02-07 15:41:49 -08005313 if ((ia_valid & ATTR_UID && !uid_eq(attr->ia_uid, inode->i_uid)) ||
5314 (ia_valid & ATTR_GID && !gid_eq(attr->ia_gid, inode->i_gid))) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005315 handle_t *handle;
5316
5317 /* (user+group)*(old+new) structure, inode write (sb,
5318 * inode block, ? - but truncate inode update has it) */
Theodore Ts'o9924a922013-02-08 21:59:22 -05005319 handle = ext4_journal_start(inode, EXT4_HT_QUOTA,
5320 (EXT4_MAXQUOTAS_INIT_BLOCKS(inode->i_sb) +
5321 EXT4_MAXQUOTAS_DEL_BLOCKS(inode->i_sb)) + 3);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005322 if (IS_ERR(handle)) {
5323 error = PTR_ERR(handle);
5324 goto err_out;
5325 }
Tahsin Erdogan7a9ca532017-06-22 11:46:48 -04005326
5327 /* dquot_transfer() calls back ext4_get_inode_usage() which
5328 * counts xattr inode references.
5329 */
5330 down_read(&EXT4_I(inode)->xattr_sem);
Christoph Hellwigb43fa822010-03-03 09:05:03 -05005331 error = dquot_transfer(inode, attr);
Tahsin Erdogan7a9ca532017-06-22 11:46:48 -04005332 up_read(&EXT4_I(inode)->xattr_sem);
5333
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005334 if (error) {
Mingming Cao617ba132006-10-11 01:20:53 -07005335 ext4_journal_stop(handle);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005336 return error;
5337 }
5338 /* Update corresponding info in inode so that everything is in
5339 * one transaction */
5340 if (attr->ia_valid & ATTR_UID)
5341 inode->i_uid = attr->ia_uid;
5342 if (attr->ia_valid & ATTR_GID)
5343 inode->i_gid = attr->ia_gid;
Mingming Cao617ba132006-10-11 01:20:53 -07005344 error = ext4_mark_inode_dirty(handle, inode);
5345 ext4_journal_stop(handle);
Pan Bian512c15e2021-01-17 00:57:32 -08005346 if (unlikely(error)) {
Harshad Shirwadkar4209ae12020-04-26 18:34:37 -07005347 return error;
Pan Bian512c15e2021-01-17 00:57:32 -08005348 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005349 }
5350
Josef Bacik3da40c72015-06-22 00:31:26 -04005351 if (attr->ia_valid & ATTR_SIZE) {
Jan Kara52083862013-08-17 10:07:17 -04005352 handle_t *handle;
Josef Bacik3da40c72015-06-22 00:31:26 -04005353 loff_t oldsize = inode->i_size;
Jan Karab9c1c262019-05-30 11:56:23 -04005354 int shrink = (attr->ia_size < inode->i_size);
Christoph Hellwig562c72aa52011-06-24 14:29:45 -04005355
Dmitry Monakhov12e9b892010-05-16 22:00:00 -04005356 if (!(ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS))) {
Eric Sandeene2b46572008-01-28 23:58:27 -05005357 struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb);
5358
Harshad Shirwadkaraa75f4d2020-10-15 13:37:57 -07005359 if (attr->ia_size > sbi->s_bitmap_maxbytes) {
Theodore Ts'o0c095c72010-07-27 11:56:06 -04005360 return -EFBIG;
Harshad Shirwadkaraa75f4d2020-10-15 13:37:57 -07005361 }
Eric Sandeene2b46572008-01-28 23:58:27 -05005362 }
Harshad Shirwadkaraa75f4d2020-10-15 13:37:57 -07005363 if (!S_ISREG(inode->i_mode)) {
Josef Bacik3da40c72015-06-22 00:31:26 -04005364 return -EINVAL;
Harshad Shirwadkaraa75f4d2020-10-15 13:37:57 -07005365 }
Christoph Hellwigdff6efc2013-11-19 07:17:07 -08005366
5367 if (IS_I_VERSION(inode) && attr->ia_size != inode->i_size)
5368 inode_inc_iversion(inode);
5369
Jan Karab9c1c262019-05-30 11:56:23 -04005370 if (shrink) {
5371 if (ext4_should_order_data(inode)) {
5372 error = ext4_begin_ordered_truncate(inode,
Jan Kara678aaf42008-07-11 19:27:31 -04005373 attr->ia_size);
Jan Karab9c1c262019-05-30 11:56:23 -04005374 if (error)
5375 goto err_out;
5376 }
5377 /*
5378 * Blocks are going to be removed from the inode. Wait
5379 * for dio in flight.
5380 */
5381 inode_dio_wait(inode);
Josef Bacik3da40c72015-06-22 00:31:26 -04005382 }
Jan Karab9c1c262019-05-30 11:56:23 -04005383
Jan Karad4f52582021-02-04 18:05:42 +01005384 filemap_invalidate_lock(inode->i_mapping);
Jan Karab9c1c262019-05-30 11:56:23 -04005385
5386 rc = ext4_break_layouts(inode);
5387 if (rc) {
Jan Karad4f52582021-02-04 18:05:42 +01005388 filemap_invalidate_unlock(inode->i_mapping);
Harshad Shirwadkaraa75f4d2020-10-15 13:37:57 -07005389 goto err_out;
Jan Karab9c1c262019-05-30 11:56:23 -04005390 }
5391
Josef Bacik3da40c72015-06-22 00:31:26 -04005392 if (attr->ia_size != inode->i_size) {
Jan Kara52083862013-08-17 10:07:17 -04005393 handle = ext4_journal_start(inode, EXT4_HT_INODE, 3);
5394 if (IS_ERR(handle)) {
5395 error = PTR_ERR(handle);
Jan Karab9c1c262019-05-30 11:56:23 -04005396 goto out_mmap_sem;
Jan Kara52083862013-08-17 10:07:17 -04005397 }
Josef Bacik3da40c72015-06-22 00:31:26 -04005398 if (ext4_handle_valid(handle) && shrink) {
Jan Kara52083862013-08-17 10:07:17 -04005399 error = ext4_orphan_add(handle, inode);
5400 orphan = 1;
5401 }
Eryu Guan911af572015-07-28 15:08:41 -04005402 /*
5403 * Update c/mtime on truncate up, ext4_truncate() will
5404 * update c/mtime in shrink case below
5405 */
5406 if (!shrink) {
Deepa Dinamanieeca7ea2016-11-14 21:40:10 -05005407 inode->i_mtime = current_time(inode);
Eryu Guan911af572015-07-28 15:08:41 -04005408 inode->i_ctime = inode->i_mtime;
5409 }
Harshad Shirwadkaraa75f4d2020-10-15 13:37:57 -07005410
5411 if (shrink)
Harshad Shirwadkara80f7fc2020-11-05 19:58:53 -08005412 ext4_fc_track_range(handle, inode,
Harshad Shirwadkaraa75f4d2020-10-15 13:37:57 -07005413 (attr->ia_size > 0 ? attr->ia_size - 1 : 0) >>
5414 inode->i_sb->s_blocksize_bits,
Xin Yin97259582021-12-23 11:23:37 +08005415 EXT_MAX_BLOCKS - 1);
Harshad Shirwadkaraa75f4d2020-10-15 13:37:57 -07005416 else
5417 ext4_fc_track_range(
Harshad Shirwadkara80f7fc2020-11-05 19:58:53 -08005418 handle, inode,
Harshad Shirwadkaraa75f4d2020-10-15 13:37:57 -07005419 (oldsize > 0 ? oldsize - 1 : oldsize) >>
5420 inode->i_sb->s_blocksize_bits,
5421 (attr->ia_size > 0 ? attr->ia_size - 1 : 0) >>
5422 inode->i_sb->s_blocksize_bits);
5423
Jan Kara90e775b2013-08-17 10:09:31 -04005424 down_write(&EXT4_I(inode)->i_data_sem);
Jan Kara52083862013-08-17 10:07:17 -04005425 EXT4_I(inode)->i_disksize = attr->ia_size;
5426 rc = ext4_mark_inode_dirty(handle, inode);
5427 if (!error)
5428 error = rc;
Jan Kara90e775b2013-08-17 10:09:31 -04005429 /*
5430 * We have to update i_size under i_data_sem together
5431 * with i_disksize to avoid races with writeback code
5432 * running ext4_wb_update_i_disksize().
5433 */
5434 if (!error)
5435 i_size_write(inode, attr->ia_size);
5436 up_write(&EXT4_I(inode)->i_data_sem);
Jan Kara52083862013-08-17 10:07:17 -04005437 ext4_journal_stop(handle);
Jan Karab9c1c262019-05-30 11:56:23 -04005438 if (error)
5439 goto out_mmap_sem;
5440 if (!shrink) {
5441 pagecache_isize_extended(inode, oldsize,
5442 inode->i_size);
5443 } else if (ext4_should_journal_data(inode)) {
5444 ext4_wait_for_tail_page_commit(inode);
Jan Kara678aaf42008-07-11 19:27:31 -04005445 }
Jan Karad6320cb2014-10-01 21:49:46 -04005446 }
Ross Zwisler430657b2018-07-29 17:00:22 -04005447
Jan Kara52083862013-08-17 10:07:17 -04005448 /*
5449 * Truncate pagecache after we've waited for commit
5450 * in data=journal mode to make pages freeable.
5451 */
Ross Zwisler923ae0f2015-02-16 15:59:38 -08005452 truncate_pagecache(inode, inode->i_size);
Jan Karab9c1c262019-05-30 11:56:23 -04005453 /*
5454 * Call ext4_truncate() even if i_size didn't change to
5455 * truncate possible preallocated blocks.
5456 */
5457 if (attr->ia_size <= oldsize) {
Theodore Ts'o2c98eb52016-11-13 22:02:26 -05005458 rc = ext4_truncate(inode);
5459 if (rc)
5460 error = rc;
5461 }
Jan Karab9c1c262019-05-30 11:56:23 -04005462out_mmap_sem:
Jan Karad4f52582021-02-04 18:05:42 +01005463 filemap_invalidate_unlock(inode->i_mapping);
Theodore Ts'o072bd7e2011-05-23 15:13:02 -04005464 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005465
Theodore Ts'o2c98eb52016-11-13 22:02:26 -05005466 if (!error) {
Christian Brauner14f3db52021-01-21 14:19:57 +01005467 setattr_copy(mnt_userns, inode, attr);
Christoph Hellwig10257742010-06-04 11:30:02 +02005468 mark_inode_dirty(inode);
5469 }
5470
5471 /*
5472 * If the call to ext4_truncate failed to get a transaction handle at
5473 * all, we need to clean up the in-core orphan list manually.
5474 */
Dmitry Monakhov3d287de2010-10-27 22:08:46 -04005475 if (orphan && inode->i_nlink)
Mingming Cao617ba132006-10-11 01:20:53 -07005476 ext4_orphan_del(NULL, inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005477
Theodore Ts'o2c98eb52016-11-13 22:02:26 -05005478 if (!error && (ia_valid & ATTR_MODE))
Christian Brauner14f3db52021-01-21 14:19:57 +01005479 rc = posix_acl_chmod(mnt_userns, inode, inode->i_mode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005480
5481err_out:
Harshad Shirwadkaraa75f4d2020-10-15 13:37:57 -07005482 if (error)
5483 ext4_std_error(inode->i_sb, error);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005484 if (!error)
5485 error = rc;
5486 return error;
5487}
5488
Christian Brauner549c7292021-01-21 14:19:43 +01005489int ext4_getattr(struct user_namespace *mnt_userns, const struct path *path,
5490 struct kstat *stat, u32 request_mask, unsigned int query_flags)
Mingming Cao3e3398a2008-07-11 19:27:31 -04005491{
David Howells99652ea2017-03-31 18:31:56 +01005492 struct inode *inode = d_inode(path->dentry);
5493 struct ext4_inode *raw_inode;
5494 struct ext4_inode_info *ei = EXT4_I(inode);
5495 unsigned int flags;
Mingming Cao3e3398a2008-07-11 19:27:31 -04005496
Theodore Ts'od4c5e962019-11-28 22:26:51 -05005497 if ((request_mask & STATX_BTIME) &&
5498 EXT4_FITS_IN_INODE(raw_inode, ei, i_crtime)) {
David Howells99652ea2017-03-31 18:31:56 +01005499 stat->result_mask |= STATX_BTIME;
5500 stat->btime.tv_sec = ei->i_crtime.tv_sec;
5501 stat->btime.tv_nsec = ei->i_crtime.tv_nsec;
5502 }
5503
5504 flags = ei->i_flags & EXT4_FL_USER_VISIBLE;
5505 if (flags & EXT4_APPEND_FL)
5506 stat->attributes |= STATX_ATTR_APPEND;
5507 if (flags & EXT4_COMPR_FL)
5508 stat->attributes |= STATX_ATTR_COMPRESSED;
5509 if (flags & EXT4_ENCRYPT_FL)
5510 stat->attributes |= STATX_ATTR_ENCRYPTED;
5511 if (flags & EXT4_IMMUTABLE_FL)
5512 stat->attributes |= STATX_ATTR_IMMUTABLE;
5513 if (flags & EXT4_NODUMP_FL)
5514 stat->attributes |= STATX_ATTR_NODUMP;
Eric Biggers1f607192019-10-29 13:41:39 -07005515 if (flags & EXT4_VERITY_FL)
5516 stat->attributes |= STATX_ATTR_VERITY;
David Howells99652ea2017-03-31 18:31:56 +01005517
David Howells3209f682017-03-31 18:32:17 +01005518 stat->attributes_mask |= (STATX_ATTR_APPEND |
5519 STATX_ATTR_COMPRESSED |
5520 STATX_ATTR_ENCRYPTED |
5521 STATX_ATTR_IMMUTABLE |
Eric Biggers1f607192019-10-29 13:41:39 -07005522 STATX_ATTR_NODUMP |
5523 STATX_ATTR_VERITY);
David Howells3209f682017-03-31 18:32:17 +01005524
Christian Brauner14f3db52021-01-21 14:19:57 +01005525 generic_fillattr(mnt_userns, inode, stat);
David Howells99652ea2017-03-31 18:31:56 +01005526 return 0;
5527}
5528
Christian Brauner549c7292021-01-21 14:19:43 +01005529int ext4_file_getattr(struct user_namespace *mnt_userns,
5530 const struct path *path, struct kstat *stat,
David Howells99652ea2017-03-31 18:31:56 +01005531 u32 request_mask, unsigned int query_flags)
5532{
5533 struct inode *inode = d_inode(path->dentry);
5534 u64 delalloc_blocks;
5535
Christian Brauner14f3db52021-01-21 14:19:57 +01005536 ext4_getattr(mnt_userns, path, stat, request_mask, query_flags);
Mingming Cao3e3398a2008-07-11 19:27:31 -04005537
5538 /*
Andreas Dilger9206c562013-11-11 22:38:12 -05005539 * If there is inline data in the inode, the inode will normally not
5540 * have data blocks allocated (it may have an external xattr block).
5541 * Report at least one sector for such files, so tools like tar, rsync,
Theodore Ts'od67d64f2017-03-25 17:33:31 -04005542 * others don't incorrectly think the file is completely sparse.
Andreas Dilger9206c562013-11-11 22:38:12 -05005543 */
5544 if (unlikely(ext4_has_inline_data(inode)))
5545 stat->blocks += (stat->size + 511) >> 9;
5546
5547 /*
Mingming Cao3e3398a2008-07-11 19:27:31 -04005548 * We can't update i_blocks if the block allocation is delayed
5549 * otherwise in the case of system crash before the real block
5550 * allocation is done, we will have i_blocks inconsistent with
5551 * on-disk file blocks.
5552 * We always keep i_blocks updated together with real
5553 * allocation. But to not confuse with user, stat
5554 * will return the blocks that include the delayed allocation
5555 * blocks for this file.
5556 */
Tao Ma96607552012-05-31 22:54:16 -04005557 delalloc_blocks = EXT4_C2B(EXT4_SB(inode->i_sb),
Andreas Dilger9206c562013-11-11 22:38:12 -05005558 EXT4_I(inode)->i_reserved_data_blocks);
5559 stat->blocks += delalloc_blocks << (inode->i_sb->s_blocksize_bits - 9);
Mingming Cao3e3398a2008-07-11 19:27:31 -04005560 return 0;
5561}
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005562
Jan Karafffb2732013-06-04 13:01:11 -04005563static int ext4_index_trans_blocks(struct inode *inode, int lblocks,
5564 int pextents)
Mingming Caoa02908f2008-08-19 22:16:07 -04005565{
Dmitry Monakhov12e9b892010-05-16 22:00:00 -04005566 if (!(ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS)))
Jan Karafffb2732013-06-04 13:01:11 -04005567 return ext4_ind_trans_blocks(inode, lblocks);
5568 return ext4_ext_index_trans_blocks(inode, pextents);
Mingming Caoa02908f2008-08-19 22:16:07 -04005569}
Theodore Ts'oac51d832008-11-06 16:49:36 -05005570
Mingming Caoa02908f2008-08-19 22:16:07 -04005571/*
5572 * Account for index blocks, block groups bitmaps and block group
5573 * descriptor blocks if modify datablocks and index blocks
5574 * worse case, the indexs blocks spread over different block groups
5575 *
5576 * If datablocks are discontiguous, they are possible to spread over
Anatol Pomozov4907cb72012-09-01 10:31:09 -07005577 * different block groups too. If they are contiguous, with flexbg,
Mingming Caoa02908f2008-08-19 22:16:07 -04005578 * they could still across block group boundary.
5579 *
5580 * Also account for superblock, inode, quota and xattr blocks
5581 */
Tahsin Erdogandec214d2017-06-22 11:44:55 -04005582static int ext4_meta_trans_blocks(struct inode *inode, int lblocks,
Jan Karafffb2732013-06-04 13:01:11 -04005583 int pextents)
Mingming Caoa02908f2008-08-19 22:16:07 -04005584{
Theodore Ts'o8df96752009-05-01 08:50:38 -04005585 ext4_group_t groups, ngroups = ext4_get_groups_count(inode->i_sb);
5586 int gdpblocks;
Mingming Caoa02908f2008-08-19 22:16:07 -04005587 int idxblocks;
5588 int ret = 0;
5589
5590 /*
Jan Karafffb2732013-06-04 13:01:11 -04005591 * How many index blocks need to touch to map @lblocks logical blocks
5592 * to @pextents physical extents?
Mingming Caoa02908f2008-08-19 22:16:07 -04005593 */
Jan Karafffb2732013-06-04 13:01:11 -04005594 idxblocks = ext4_index_trans_blocks(inode, lblocks, pextents);
Mingming Caoa02908f2008-08-19 22:16:07 -04005595
5596 ret = idxblocks;
5597
5598 /*
5599 * Now let's see how many group bitmaps and group descriptors need
5600 * to account
5601 */
Jan Karafffb2732013-06-04 13:01:11 -04005602 groups = idxblocks + pextents;
Mingming Caoa02908f2008-08-19 22:16:07 -04005603 gdpblocks = groups;
Theodore Ts'o8df96752009-05-01 08:50:38 -04005604 if (groups > ngroups)
5605 groups = ngroups;
Mingming Caoa02908f2008-08-19 22:16:07 -04005606 if (groups > EXT4_SB(inode->i_sb)->s_gdb_count)
5607 gdpblocks = EXT4_SB(inode->i_sb)->s_gdb_count;
5608
5609 /* bitmaps and block group descriptor blocks */
5610 ret += groups + gdpblocks;
5611
5612 /* Blocks for super block, inode, quota and xattr blocks */
5613 ret += EXT4_META_TRANS_BLOCKS(inode->i_sb);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005614
5615 return ret;
5616}
5617
5618/*
Lucas De Marchi25985ed2011-03-30 22:57:33 -03005619 * Calculate the total number of credits to reserve to fit
Mingming Caof3bd1f32008-08-19 22:16:03 -04005620 * the modification of a single pages into a single transaction,
5621 * which may include multiple chunks of block allocations.
Mingming Caoa02908f2008-08-19 22:16:07 -04005622 *
Mingming Cao525f4ed2008-08-19 22:15:58 -04005623 * This could be called via ext4_write_begin()
Mingming Caoa02908f2008-08-19 22:16:07 -04005624 *
Mingming Cao525f4ed2008-08-19 22:15:58 -04005625 * We need to consider the worse case, when
Mingming Caoa02908f2008-08-19 22:16:07 -04005626 * one new block per extent.
Mingming Caoa02908f2008-08-19 22:16:07 -04005627 */
5628int ext4_writepage_trans_blocks(struct inode *inode)
5629{
5630 int bpp = ext4_journal_blocks_per_page(inode);
5631 int ret;
5632
Jan Karafffb2732013-06-04 13:01:11 -04005633 ret = ext4_meta_trans_blocks(inode, bpp, bpp);
Mingming Caoa02908f2008-08-19 22:16:07 -04005634
5635 /* Account for data blocks for journalled mode */
5636 if (ext4_should_journal_data(inode))
5637 ret += bpp;
5638 return ret;
5639}
Mingming Caof3bd1f32008-08-19 22:16:03 -04005640
5641/*
5642 * Calculate the journal credits for a chunk of data modification.
5643 *
5644 * This is called from DIO, fallocate or whoever calling
Eric Sandeen79e83032010-07-27 11:56:07 -04005645 * ext4_map_blocks() to map/allocate a chunk of contiguous disk blocks.
Mingming Caof3bd1f32008-08-19 22:16:03 -04005646 *
5647 * journal buffers for data blocks are not included here, as DIO
5648 * and fallocate do no need to journal data buffers.
5649 */
5650int ext4_chunk_trans_blocks(struct inode *inode, int nrblocks)
5651{
5652 return ext4_meta_trans_blocks(inode, nrblocks, 1);
5653}
5654
Mingming Caoa02908f2008-08-19 22:16:07 -04005655/*
Mingming Cao617ba132006-10-11 01:20:53 -07005656 * The caller must have previously called ext4_reserve_inode_write().
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005657 * Give this, we know that the caller already has write access to iloc->bh.
5658 */
Mingming Cao617ba132006-10-11 01:20:53 -07005659int ext4_mark_iloc_dirty(handle_t *handle,
Theodore Ts'ode9a55b2009-06-14 17:45:34 -04005660 struct inode *inode, struct ext4_iloc *iloc)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005661{
5662 int err = 0;
5663
Vasily Averina6758302018-11-06 16:49:50 -05005664 if (unlikely(ext4_forced_shutdown(EXT4_SB(inode->i_sb)))) {
5665 put_bh(iloc->bh);
Theodore Ts'o0db1ff22017-02-05 01:28:48 -05005666 return -EIO;
Vasily Averina6758302018-11-06 16:49:50 -05005667 }
Harshad Shirwadkara80f7fc2020-11-05 19:58:53 -08005668 ext4_fc_track_inode(handle, inode);
Harshad Shirwadkaraa75f4d2020-10-15 13:37:57 -07005669
Theodore Ts'oc64db502012-03-02 12:23:11 -05005670 if (IS_I_VERSION(inode))
Jean Noel Cordenner25ec56b2008-01-28 23:58:27 -05005671 inode_inc_iversion(inode);
5672
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005673 /* the do_update_inode consumes one bh->b_count */
5674 get_bh(iloc->bh);
5675
Mingming Caodab291a2006-10-11 01:21:01 -07005676 /* ext4_do_update_inode() does jbd2_journal_dirty_metadata */
Frank Mayhar830156c2009-09-29 10:07:47 -04005677 err = ext4_do_update_inode(handle, inode, iloc);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005678 put_bh(iloc->bh);
5679 return err;
5680}
5681
5682/*
5683 * On success, We end up with an outstanding reference count against
5684 * iloc->bh. This _must_ be cleaned up later.
5685 */
5686
5687int
Mingming Cao617ba132006-10-11 01:20:53 -07005688ext4_reserve_inode_write(handle_t *handle, struct inode *inode,
5689 struct ext4_iloc *iloc)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005690{
Frank Mayhar03901312009-01-07 00:06:22 -05005691 int err;
5692
Theodore Ts'o0db1ff22017-02-05 01:28:48 -05005693 if (unlikely(ext4_forced_shutdown(EXT4_SB(inode->i_sb))))
5694 return -EIO;
5695
Frank Mayhar03901312009-01-07 00:06:22 -05005696 err = ext4_get_inode_loc(inode, iloc);
5697 if (!err) {
5698 BUFFER_TRACE(iloc->bh, "get_write_access");
Jan Kara188c2992021-08-16 11:57:04 +02005699 err = ext4_journal_get_write_access(handle, inode->i_sb,
5700 iloc->bh, EXT4_JTR_NONE);
Frank Mayhar03901312009-01-07 00:06:22 -05005701 if (err) {
5702 brelse(iloc->bh);
5703 iloc->bh = NULL;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005704 }
5705 }
Mingming Cao617ba132006-10-11 01:20:53 -07005706 ext4_std_error(inode->i_sb, err);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005707 return err;
5708}
5709
Miao Xiec03b45b2017-08-06 01:00:49 -04005710static int __ext4_expand_extra_isize(struct inode *inode,
5711 unsigned int new_extra_isize,
5712 struct ext4_iloc *iloc,
5713 handle_t *handle, int *no_expand)
5714{
5715 struct ext4_inode *raw_inode;
5716 struct ext4_xattr_ibody_header *header;
Theodore Ts'o4ea99932019-11-07 21:43:41 -05005717 unsigned int inode_size = EXT4_INODE_SIZE(inode->i_sb);
5718 struct ext4_inode_info *ei = EXT4_I(inode);
Miao Xiec03b45b2017-08-06 01:00:49 -04005719 int error;
5720
Theodore Ts'o4ea99932019-11-07 21:43:41 -05005721 /* this was checked at iget time, but double check for good measure */
5722 if ((EXT4_GOOD_OLD_INODE_SIZE + ei->i_extra_isize > inode_size) ||
5723 (ei->i_extra_isize & 3)) {
5724 EXT4_ERROR_INODE(inode, "bad extra_isize %u (inode size %u)",
5725 ei->i_extra_isize,
5726 EXT4_INODE_SIZE(inode->i_sb));
5727 return -EFSCORRUPTED;
5728 }
5729 if ((new_extra_isize < ei->i_extra_isize) ||
5730 (new_extra_isize < 4) ||
5731 (new_extra_isize > inode_size - EXT4_GOOD_OLD_INODE_SIZE))
5732 return -EINVAL; /* Should never happen */
5733
Miao Xiec03b45b2017-08-06 01:00:49 -04005734 raw_inode = ext4_raw_inode(iloc);
5735
5736 header = IHDR(inode, raw_inode);
5737
5738 /* No extended attributes present */
5739 if (!ext4_test_inode_state(inode, EXT4_STATE_XATTR) ||
5740 header->h_magic != cpu_to_le32(EXT4_XATTR_MAGIC)) {
5741 memset((void *)raw_inode + EXT4_GOOD_OLD_INODE_SIZE +
5742 EXT4_I(inode)->i_extra_isize, 0,
5743 new_extra_isize - EXT4_I(inode)->i_extra_isize);
5744 EXT4_I(inode)->i_extra_isize = new_extra_isize;
5745 return 0;
5746 }
5747
5748 /* try to expand with EAs present */
5749 error = ext4_expand_extra_isize_ea(inode, new_extra_isize,
5750 raw_inode, handle);
5751 if (error) {
5752 /*
5753 * Inode size expansion failed; don't try again
5754 */
5755 *no_expand = 1;
5756 }
5757
5758 return error;
5759}
5760
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005761/*
Kalpak Shah6dd4ee72007-07-18 09:19:57 -04005762 * Expand an inode by new_extra_isize bytes.
5763 * Returns 0 on success or negative error number on failure.
5764 */
Miao Xiecf0a5e82017-08-06 00:40:01 -04005765static int ext4_try_to_expand_extra_isize(struct inode *inode,
5766 unsigned int new_extra_isize,
5767 struct ext4_iloc iloc,
5768 handle_t *handle)
Kalpak Shah6dd4ee72007-07-18 09:19:57 -04005769{
Miao Xie3b10fdc2017-08-06 00:27:38 -04005770 int no_expand;
5771 int error;
Kalpak Shah6dd4ee72007-07-18 09:19:57 -04005772
Miao Xiecf0a5e82017-08-06 00:40:01 -04005773 if (ext4_test_inode_state(inode, EXT4_STATE_NO_EXPAND))
5774 return -EOVERFLOW;
5775
5776 /*
5777 * In nojournal mode, we can immediately attempt to expand
5778 * the inode. When journaled, we first need to obtain extra
5779 * buffer credits since we may write into the EA block
5780 * with this same handle. If journal_extend fails, then it will
5781 * only result in a minor loss of functionality for that inode.
5782 * If this is felt to be critical, then e2fsck should be run to
5783 * force a large enough s_min_extra_isize.
5784 */
Jan Kara6cb367c2019-11-05 17:44:14 +01005785 if (ext4_journal_extend(handle,
Jan Kara83448bd2019-11-05 17:44:29 +01005786 EXT4_DATA_TRANS_BLOCKS(inode->i_sb), 0) != 0)
Miao Xiecf0a5e82017-08-06 00:40:01 -04005787 return -ENOSPC;
Kalpak Shah6dd4ee72007-07-18 09:19:57 -04005788
Miao Xie3b10fdc2017-08-06 00:27:38 -04005789 if (ext4_write_trylock_xattr(inode, &no_expand) == 0)
Miao Xiecf0a5e82017-08-06 00:40:01 -04005790 return -EBUSY;
Miao Xie3b10fdc2017-08-06 00:27:38 -04005791
Miao Xiec03b45b2017-08-06 01:00:49 -04005792 error = __ext4_expand_extra_isize(inode, new_extra_isize, &iloc,
5793 handle, &no_expand);
Miao Xie3b10fdc2017-08-06 00:27:38 -04005794 ext4_write_unlock_xattr(inode, &no_expand);
Miao Xiecf0a5e82017-08-06 00:40:01 -04005795
Miao Xie3b10fdc2017-08-06 00:27:38 -04005796 return error;
Kalpak Shah6dd4ee72007-07-18 09:19:57 -04005797}
5798
Miao Xiec03b45b2017-08-06 01:00:49 -04005799int ext4_expand_extra_isize(struct inode *inode,
5800 unsigned int new_extra_isize,
5801 struct ext4_iloc *iloc)
5802{
5803 handle_t *handle;
5804 int no_expand;
5805 int error, rc;
5806
5807 if (ext4_test_inode_state(inode, EXT4_STATE_NO_EXPAND)) {
5808 brelse(iloc->bh);
5809 return -EOVERFLOW;
5810 }
5811
5812 handle = ext4_journal_start(inode, EXT4_HT_INODE,
5813 EXT4_DATA_TRANS_BLOCKS(inode->i_sb));
5814 if (IS_ERR(handle)) {
5815 error = PTR_ERR(handle);
5816 brelse(iloc->bh);
5817 return error;
5818 }
5819
5820 ext4_write_lock_xattr(inode, &no_expand);
5821
zhangyi (F)ddccb6d2019-02-21 11:29:10 -05005822 BUFFER_TRACE(iloc->bh, "get_write_access");
Jan Kara188c2992021-08-16 11:57:04 +02005823 error = ext4_journal_get_write_access(handle, inode->i_sb, iloc->bh,
5824 EXT4_JTR_NONE);
Miao Xiec03b45b2017-08-06 01:00:49 -04005825 if (error) {
5826 brelse(iloc->bh);
Dan Carpenter7f420d642019-12-13 21:50:11 +03005827 goto out_unlock;
Miao Xiec03b45b2017-08-06 01:00:49 -04005828 }
5829
5830 error = __ext4_expand_extra_isize(inode, new_extra_isize, iloc,
5831 handle, &no_expand);
5832
5833 rc = ext4_mark_iloc_dirty(handle, inode, iloc);
5834 if (!error)
5835 error = rc;
5836
Dan Carpenter7f420d642019-12-13 21:50:11 +03005837out_unlock:
Miao Xiec03b45b2017-08-06 01:00:49 -04005838 ext4_write_unlock_xattr(inode, &no_expand);
Miao Xiec03b45b2017-08-06 01:00:49 -04005839 ext4_journal_stop(handle);
5840 return error;
5841}
5842
Kalpak Shah6dd4ee72007-07-18 09:19:57 -04005843/*
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005844 * What we do here is to mark the in-core inode as clean with respect to inode
5845 * dirtiness (it may still be data-dirty).
5846 * This means that the in-core inode may be reaped by prune_icache
5847 * without having to perform any I/O. This is a very good thing,
5848 * because *any* task may call prune_icache - even ones which
5849 * have a transaction open against a different journal.
5850 *
5851 * Is this cheating? Not really. Sure, we haven't written the
5852 * inode out, but prune_icache isn't a user-visible syncing function.
5853 * Whenever the user wants stuff synced (sys_sync, sys_msync, sys_fsync)
5854 * we start and wait on commits.
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005855 */
Harshad Shirwadkar4209ae12020-04-26 18:34:37 -07005856int __ext4_mark_inode_dirty(handle_t *handle, struct inode *inode,
5857 const char *func, unsigned int line)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005858{
Mingming Cao617ba132006-10-11 01:20:53 -07005859 struct ext4_iloc iloc;
Kalpak Shah6dd4ee72007-07-18 09:19:57 -04005860 struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb);
Miao Xiecf0a5e82017-08-06 00:40:01 -04005861 int err;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005862
5863 might_sleep();
Theodore Ts'o7ff9c072010-11-08 13:51:33 -05005864 trace_ext4_mark_inode_dirty(inode, _RET_IP_);
Mingming Cao617ba132006-10-11 01:20:53 -07005865 err = ext4_reserve_inode_write(handle, inode, &iloc);
Eryu Guan5e1021f2016-03-12 21:40:32 -05005866 if (err)
Harshad Shirwadkar4209ae12020-04-26 18:34:37 -07005867 goto out;
Miao Xiecf0a5e82017-08-06 00:40:01 -04005868
5869 if (EXT4_I(inode)->i_extra_isize < sbi->s_want_extra_isize)
5870 ext4_try_to_expand_extra_isize(inode, sbi->s_want_extra_isize,
5871 iloc, handle);
5872
Harshad Shirwadkar4209ae12020-04-26 18:34:37 -07005873 err = ext4_mark_iloc_dirty(handle, inode, &iloc);
5874out:
5875 if (unlikely(err))
5876 ext4_error_inode_err(inode, func, line, 0, err,
5877 "mark_inode_dirty error");
5878 return err;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005879}
5880
5881/*
Mingming Cao617ba132006-10-11 01:20:53 -07005882 * ext4_dirty_inode() is called from __mark_inode_dirty()
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005883 *
5884 * We're really interested in the case where a file is being extended.
5885 * i_size has been changed by generic_commit_write() and we thus need
5886 * to include the updated inode in the current transaction.
5887 *
Christoph Hellwig5dd40562010-03-03 09:05:00 -05005888 * Also, dquot_alloc_block() will always dirty the inode when blocks
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005889 * are allocated to the file.
5890 *
5891 * If the inode is marked synchronous, we don't honour that here - doing
5892 * so would cause a commit on atime updates, which we don't bother doing.
5893 * We handle synchronous inodes at the highest possible level.
5894 */
Christoph Hellwigaa385722011-05-27 06:53:02 -04005895void ext4_dirty_inode(struct inode *inode, int flags)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005896{
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005897 handle_t *handle;
5898
Theodore Ts'o9924a922013-02-08 21:59:22 -05005899 handle = ext4_journal_start(inode, EXT4_HT_INODE, 2);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005900 if (IS_ERR(handle))
Eric Biggerse2728c52021-01-12 11:02:47 -08005901 return;
Curt Wohlgemuthf3dc2722009-09-29 16:06:01 -04005902 ext4_mark_inode_dirty(handle, inode);
Mingming Cao617ba132006-10-11 01:20:53 -07005903 ext4_journal_stop(handle);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005904}
5905
Mingming Cao617ba132006-10-11 01:20:53 -07005906int ext4_change_inode_journal_flag(struct inode *inode, int val)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005907{
5908 journal_t *journal;
5909 handle_t *handle;
5910 int err;
Daeho Jeongc8585c62016-04-25 23:22:35 -04005911 struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005912
5913 /*
5914 * We have to be very careful here: changing a data block's
5915 * journaling status dynamically is dangerous. If we write a
5916 * data block to the journal, change the status and then delete
5917 * that block, we risk forgetting to revoke the old log record
5918 * from the journal and so a subsequent replay can corrupt data.
5919 * So, first we make sure that the journal is empty and that
5920 * nobody is changing anything.
5921 */
5922
Mingming Cao617ba132006-10-11 01:20:53 -07005923 journal = EXT4_JOURNAL(inode);
Frank Mayhar03901312009-01-07 00:06:22 -05005924 if (!journal)
5925 return 0;
Dave Hansend6995942007-07-18 08:33:51 -04005926 if (is_journal_aborted(journal))
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005927 return -EROFS;
5928
Dmitry Monakhov17335dc2012-09-29 00:41:21 -04005929 /* Wait for all existing dio workers */
Dmitry Monakhov17335dc2012-09-29 00:41:21 -04005930 inode_dio_wait(inode);
5931
Daeho Jeong4c546592016-04-25 23:21:00 -04005932 /*
5933 * Before flushing the journal and switching inode's aops, we have
5934 * to flush all dirty data the inode has. There can be outstanding
5935 * delayed allocations, there can be unwritten extents created by
5936 * fallocate or buffered writes in dioread_nolock mode covered by
5937 * dirty data which can be converted only after flushing the dirty
5938 * data (and journalled aops don't know how to handle these cases).
5939 */
5940 if (val) {
Jan Karad4f52582021-02-04 18:05:42 +01005941 filemap_invalidate_lock(inode->i_mapping);
Daeho Jeong4c546592016-04-25 23:21:00 -04005942 err = filemap_write_and_wait(inode->i_mapping);
5943 if (err < 0) {
Jan Karad4f52582021-02-04 18:05:42 +01005944 filemap_invalidate_unlock(inode->i_mapping);
Daeho Jeong4c546592016-04-25 23:21:00 -04005945 return err;
5946 }
5947 }
5948
Eric Biggersbbd55932020-02-19 10:30:46 -08005949 percpu_down_write(&sbi->s_writepages_rwsem);
Mingming Caodab291a2006-10-11 01:21:01 -07005950 jbd2_journal_lock_updates(journal);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005951
5952 /*
5953 * OK, there are no updates running now, and all cached data is
5954 * synced to disk. We are now in a completely consistent state
5955 * which doesn't have anything in the journal, and we know that
5956 * no filesystem updates are running, so it is safe to modify
5957 * the inode's in-core data-journaling state flag now.
5958 */
5959
5960 if (val)
Dmitry Monakhov12e9b892010-05-16 22:00:00 -04005961 ext4_set_inode_flag(inode, EXT4_INODE_JOURNAL_DATA);
Yongqiang Yang5872dda2011-12-28 13:55:51 -05005962 else {
Leah Rumancik01d5d962021-05-18 15:13:25 +00005963 err = jbd2_journal_flush(journal, 0);
Jan Kara4f879ca2014-10-30 10:53:17 -04005964 if (err < 0) {
5965 jbd2_journal_unlock_updates(journal);
Eric Biggersbbd55932020-02-19 10:30:46 -08005966 percpu_up_write(&sbi->s_writepages_rwsem);
Jan Kara4f879ca2014-10-30 10:53:17 -04005967 return err;
5968 }
Dmitry Monakhov12e9b892010-05-16 22:00:00 -04005969 ext4_clear_inode_flag(inode, EXT4_INODE_JOURNAL_DATA);
Yongqiang Yang5872dda2011-12-28 13:55:51 -05005970 }
Mingming Cao617ba132006-10-11 01:20:53 -07005971 ext4_set_aops(inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005972
Mingming Caodab291a2006-10-11 01:21:01 -07005973 jbd2_journal_unlock_updates(journal);
Eric Biggersbbd55932020-02-19 10:30:46 -08005974 percpu_up_write(&sbi->s_writepages_rwsem);
Daeho Jeongc8585c62016-04-25 23:22:35 -04005975
Daeho Jeong4c546592016-04-25 23:21:00 -04005976 if (val)
Jan Karad4f52582021-02-04 18:05:42 +01005977 filemap_invalidate_unlock(inode->i_mapping);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005978
5979 /* Finally we can mark the inode as dirty. */
5980
Theodore Ts'o9924a922013-02-08 21:59:22 -05005981 handle = ext4_journal_start(inode, EXT4_HT_INODE, 1);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005982 if (IS_ERR(handle))
5983 return PTR_ERR(handle);
5984
Harshad Shirwadkaraa75f4d2020-10-15 13:37:57 -07005985 ext4_fc_mark_ineligible(inode->i_sb,
5986 EXT4_FC_REASON_JOURNAL_FLAG_CHANGE);
Mingming Cao617ba132006-10-11 01:20:53 -07005987 err = ext4_mark_inode_dirty(handle, inode);
Frank Mayhar03901312009-01-07 00:06:22 -05005988 ext4_handle_sync(handle);
Mingming Cao617ba132006-10-11 01:20:53 -07005989 ext4_journal_stop(handle);
5990 ext4_std_error(inode->i_sb, err);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005991
5992 return err;
5993}
Aneesh Kumar K.V2e9ee852008-07-11 19:27:31 -04005994
Jan Kara188c2992021-08-16 11:57:04 +02005995static int ext4_bh_unmapped(handle_t *handle, struct inode *inode,
5996 struct buffer_head *bh)
Aneesh Kumar K.V2e9ee852008-07-11 19:27:31 -04005997{
5998 return !buffer_mapped(bh);
5999}
6000
Souptick Joarder401b25a2018-10-02 22:20:50 -04006001vm_fault_t ext4_page_mkwrite(struct vm_fault *vmf)
Aneesh Kumar K.V2e9ee852008-07-11 19:27:31 -04006002{
Dave Jiang11bac802017-02-24 14:56:41 -08006003 struct vm_area_struct *vma = vmf->vma;
Nick Pigginc2ec1752009-03-31 15:23:21 -07006004 struct page *page = vmf->page;
Aneesh Kumar K.V2e9ee852008-07-11 19:27:31 -04006005 loff_t size;
6006 unsigned long len;
Souptick Joarder401b25a2018-10-02 22:20:50 -04006007 int err;
6008 vm_fault_t ret;
Aneesh Kumar K.V2e9ee852008-07-11 19:27:31 -04006009 struct file *file = vma->vm_file;
Al Viro496ad9a2013-01-23 17:07:38 -05006010 struct inode *inode = file_inode(file);
Aneesh Kumar K.V2e9ee852008-07-11 19:27:31 -04006011 struct address_space *mapping = inode->i_mapping;
Jan Kara9ea7df52011-06-24 14:29:41 -04006012 handle_t *handle;
6013 get_block_t *get_block;
6014 int retries = 0;
Aneesh Kumar K.V2e9ee852008-07-11 19:27:31 -04006015
Theodore Ts'o02b016c2019-06-09 22:04:33 -04006016 if (unlikely(IS_IMMUTABLE(inode)))
6017 return VM_FAULT_SIGBUS;
6018
Jan Kara8e8ad8a2012-06-12 16:20:38 +02006019 sb_start_pagefault(inode->i_sb);
Theodore Ts'o041bbb6d2012-09-30 23:04:56 -04006020 file_update_time(vma->vm_file);
Jan Karaea3d7202015-12-07 14:28:03 -05006021
Jan Karad4f52582021-02-04 18:05:42 +01006022 filemap_invalidate_lock_shared(mapping);
Eric Biggers7b4cc972017-04-30 00:10:50 -04006023
Souptick Joarder401b25a2018-10-02 22:20:50 -04006024 err = ext4_convert_inline_data(inode);
6025 if (err)
Eric Biggers7b4cc972017-04-30 00:10:50 -04006026 goto out_ret;
6027
Mauricio Faria de Oliveira64a9f142020-10-05 21:48:40 -03006028 /*
6029 * On data journalling we skip straight to the transaction handle:
6030 * there's no delalloc; page truncated will be checked later; the
6031 * early return w/ all buffers mapped (calculates size/len) can't
6032 * be used; and there's no dioread_nolock, so only ext4_get_block.
6033 */
6034 if (ext4_should_journal_data(inode))
6035 goto retry_alloc;
6036
Jan Kara9ea7df52011-06-24 14:29:41 -04006037 /* Delalloc case is easy... */
6038 if (test_opt(inode->i_sb, DELALLOC) &&
Jan Kara9ea7df52011-06-24 14:29:41 -04006039 !ext4_nonda_switch(inode->i_sb)) {
6040 do {
Souptick Joarder401b25a2018-10-02 22:20:50 -04006041 err = block_page_mkwrite(vma, vmf,
Jan Kara9ea7df52011-06-24 14:29:41 -04006042 ext4_da_get_block_prep);
Souptick Joarder401b25a2018-10-02 22:20:50 -04006043 } while (err == -ENOSPC &&
Jan Kara9ea7df52011-06-24 14:29:41 -04006044 ext4_should_retry_alloc(inode->i_sb, &retries));
6045 goto out_ret;
Aneesh Kumar K.V2e9ee852008-07-11 19:27:31 -04006046 }
Darrick J. Wong0e499892011-05-18 13:55:20 -04006047
6048 lock_page(page);
Jan Kara9ea7df52011-06-24 14:29:41 -04006049 size = i_size_read(inode);
6050 /* Page got truncated from under us? */
6051 if (page->mapping != mapping || page_offset(page) > size) {
6052 unlock_page(page);
6053 ret = VM_FAULT_NOPAGE;
6054 goto out;
Darrick J. Wong0e499892011-05-18 13:55:20 -04006055 }
Aneesh Kumar K.V2e9ee852008-07-11 19:27:31 -04006056
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03006057 if (page->index == size >> PAGE_SHIFT)
6058 len = size & ~PAGE_MASK;
Aneesh Kumar K.V2e9ee852008-07-11 19:27:31 -04006059 else
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03006060 len = PAGE_SIZE;
Aneesh Kumar K.Va827eaf2009-09-09 22:36:03 -04006061 /*
Jan Kara9ea7df52011-06-24 14:29:41 -04006062 * Return if we have all the buffers mapped. This avoids the need to do
6063 * journal_start/journal_stop which can block and take a long time
Mauricio Faria de Oliveira64a9f142020-10-05 21:48:40 -03006064 *
6065 * This cannot be done for data journalling, as we have to add the
6066 * inode to the transaction's list to writeprotect pages on commit.
Aneesh Kumar K.Va827eaf2009-09-09 22:36:03 -04006067 */
Aneesh Kumar K.V2e9ee852008-07-11 19:27:31 -04006068 if (page_has_buffers(page)) {
Jan Kara188c2992021-08-16 11:57:04 +02006069 if (!ext4_walk_page_buffers(NULL, inode, page_buffers(page),
Tao Maf19d5872012-12-10 14:05:51 -05006070 0, len, NULL,
6071 ext4_bh_unmapped)) {
Jan Kara9ea7df52011-06-24 14:29:41 -04006072 /* Wait so that we don't change page under IO */
Darrick J. Wong1d1d1a72013-02-21 16:42:51 -08006073 wait_for_stable_page(page);
Jan Kara9ea7df52011-06-24 14:29:41 -04006074 ret = VM_FAULT_LOCKED;
6075 goto out;
Aneesh Kumar K.Va827eaf2009-09-09 22:36:03 -04006076 }
Aneesh Kumar K.V2e9ee852008-07-11 19:27:31 -04006077 }
Aneesh Kumar K.Va827eaf2009-09-09 22:36:03 -04006078 unlock_page(page);
Jan Kara9ea7df52011-06-24 14:29:41 -04006079 /* OK, we need to fill the hole... */
6080 if (ext4_should_dioread_nolock(inode))
Jan Kara705965b2016-03-08 23:08:10 -05006081 get_block = ext4_get_block_unwritten;
Jan Kara9ea7df52011-06-24 14:29:41 -04006082 else
6083 get_block = ext4_get_block;
6084retry_alloc:
Theodore Ts'o9924a922013-02-08 21:59:22 -05006085 handle = ext4_journal_start(inode, EXT4_HT_WRITE_PAGE,
6086 ext4_writepage_trans_blocks(inode));
Jan Kara9ea7df52011-06-24 14:29:41 -04006087 if (IS_ERR(handle)) {
Nick Pigginc2ec1752009-03-31 15:23:21 -07006088 ret = VM_FAULT_SIGBUS;
Jan Kara9ea7df52011-06-24 14:29:41 -04006089 goto out;
6090 }
Mauricio Faria de Oliveira64a9f142020-10-05 21:48:40 -03006091 /*
6092 * Data journalling can't use block_page_mkwrite() because it
6093 * will set_buffer_dirty() before do_journal_get_write_access()
6094 * thus might hit warning messages for dirty metadata buffers.
6095 */
6096 if (!ext4_should_journal_data(inode)) {
6097 err = block_page_mkwrite(vma, vmf, get_block);
6098 } else {
6099 lock_page(page);
6100 size = i_size_read(inode);
6101 /* Page got truncated from under us? */
6102 if (page->mapping != mapping || page_offset(page) > size) {
Mauricio Faria de Oliveira64a9f142020-10-05 21:48:40 -03006103 ret = VM_FAULT_NOPAGE;
Mauricio Faria de Oliveiraafb585a2020-10-05 21:48:41 -03006104 goto out_error;
Jan Kara9ea7df52011-06-24 14:29:41 -04006105 }
Mauricio Faria de Oliveira64a9f142020-10-05 21:48:40 -03006106
6107 if (page->index == size >> PAGE_SHIFT)
6108 len = size & ~PAGE_MASK;
6109 else
6110 len = PAGE_SIZE;
6111
6112 err = __block_write_begin(page, 0, len, ext4_get_block);
6113 if (!err) {
Mauricio Faria de Oliveiraafb585a2020-10-05 21:48:41 -03006114 ret = VM_FAULT_SIGBUS;
Jan Kara188c2992021-08-16 11:57:04 +02006115 if (ext4_walk_page_buffers(handle, inode,
6116 page_buffers(page), 0, len, NULL,
6117 do_journal_get_write_access))
Mauricio Faria de Oliveiraafb585a2020-10-05 21:48:41 -03006118 goto out_error;
Jan Kara188c2992021-08-16 11:57:04 +02006119 if (ext4_walk_page_buffers(handle, inode,
6120 page_buffers(page), 0, len, NULL,
6121 write_end_fn))
Mauricio Faria de Oliveiraafb585a2020-10-05 21:48:41 -03006122 goto out_error;
Jan Karab5b18162020-10-27 14:27:51 +01006123 if (ext4_jbd2_inode_add_write(handle, inode,
6124 page_offset(page), len))
Mauricio Faria de Oliveiraafb585a2020-10-05 21:48:41 -03006125 goto out_error;
Mauricio Faria de Oliveira64a9f142020-10-05 21:48:40 -03006126 ext4_set_inode_state(inode, EXT4_STATE_JDATA);
6127 } else {
6128 unlock_page(page);
6129 }
Jan Kara9ea7df52011-06-24 14:29:41 -04006130 }
6131 ext4_journal_stop(handle);
Souptick Joarder401b25a2018-10-02 22:20:50 -04006132 if (err == -ENOSPC && ext4_should_retry_alloc(inode->i_sb, &retries))
Jan Kara9ea7df52011-06-24 14:29:41 -04006133 goto retry_alloc;
6134out_ret:
Souptick Joarder401b25a2018-10-02 22:20:50 -04006135 ret = block_page_mkwrite_return(err);
Jan Kara9ea7df52011-06-24 14:29:41 -04006136out:
Jan Karad4f52582021-02-04 18:05:42 +01006137 filemap_invalidate_unlock_shared(mapping);
Jan Kara8e8ad8a2012-06-12 16:20:38 +02006138 sb_end_pagefault(inode->i_sb);
Aneesh Kumar K.V2e9ee852008-07-11 19:27:31 -04006139 return ret;
Mauricio Faria de Oliveiraafb585a2020-10-05 21:48:41 -03006140out_error:
6141 unlock_page(page);
6142 ext4_journal_stop(handle);
6143 goto out;
Aneesh Kumar K.V2e9ee852008-07-11 19:27:31 -04006144}