blob: b80f15bba727bd65cc7f9eed72bbf0e3d705e5bc [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001// SPDX-License-Identifier: GPL-2.0
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002/*
Mingming Cao617ba132006-10-11 01:20:53 -07003 * linux/fs/ext4/inode.c
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004 *
5 * Copyright (C) 1992, 1993, 1994, 1995
6 * Remy Card (card@masi.ibp.fr)
7 * Laboratoire MASI - Institut Blaise Pascal
8 * Universite Pierre et Marie Curie (Paris VI)
9 *
10 * from
11 *
12 * linux/fs/minix/inode.c
13 *
14 * Copyright (C) 1991, 1992 Linus Torvalds
15 *
Dave Kleikampac27a0e2006-10-11 01:20:50 -070016 * 64-bit file support on 64-bit platforms by Jakub Jelinek
17 * (jj@sunsite.ms.mff.cuni.cz)
18 *
Mingming Cao617ba132006-10-11 01:20:53 -070019 * Assorted race fixes, rewrite of ext4_get_block() by Al Viro, 2000
Dave Kleikampac27a0e2006-10-11 01:20:50 -070020 */
21
Dave Kleikampac27a0e2006-10-11 01:20:50 -070022#include <linux/fs.h>
Christian Brauner14f3db52021-01-21 14:19:57 +010023#include <linux/mount.h>
Dave Kleikampac27a0e2006-10-11 01:20:50 -070024#include <linux/time.h>
Dave Kleikampac27a0e2006-10-11 01:20:50 -070025#include <linux/highuid.h>
26#include <linux/pagemap.h>
Matthew Wilcoxc94c2ac2015-09-08 14:58:40 -070027#include <linux/dax.h>
Dave Kleikampac27a0e2006-10-11 01:20:50 -070028#include <linux/quotaops.h>
29#include <linux/string.h>
30#include <linux/buffer_head.h>
31#include <linux/writeback.h>
Alex Tomas64769242008-07-11 19:27:31 -040032#include <linux/pagevec.h>
Dave Kleikampac27a0e2006-10-11 01:20:50 -070033#include <linux/mpage.h>
Duane Griffine83c1392008-12-19 20:47:15 +000034#include <linux/namei.h>
Dave Kleikampac27a0e2006-10-11 01:20:50 -070035#include <linux/uio.h>
36#include <linux/bio.h>
Mingming Cao4c0425f2009-09-28 15:48:41 -040037#include <linux/workqueue.h>
Jiaying Zhang744692d2010-03-04 16:14:02 -050038#include <linux/kernel.h>
Andrew Morton6db26ff2011-01-12 16:59:13 -080039#include <linux/printk.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090040#include <linux/slab.h>
Theodore Ts'o00a1a052014-03-30 10:20:01 -040041#include <linux/bitops.h>
Jan Kara364443c2016-11-20 17:36:06 -050042#include <linux/iomap.h>
Jeff Laytonae5e1652018-01-29 06:41:30 -050043#include <linux/iversion.h>
Theodore Ts'o9bffad12009-06-17 11:48:11 -040044
Christoph Hellwig3dcf5452008-04-29 18:13:32 -040045#include "ext4_jbd2.h"
Dave Kleikampac27a0e2006-10-11 01:20:50 -070046#include "xattr.h"
47#include "acl.h"
Theodore Ts'o9f125d62011-06-27 19:16:04 -040048#include "truncate.h"
Dave Kleikampac27a0e2006-10-11 01:20:50 -070049
Theodore Ts'o9bffad12009-06-17 11:48:11 -040050#include <trace/events/ext4.h>
51
Darrick J. Wong814525f2012-04-29 18:31:10 -040052static __u32 ext4_inode_csum(struct inode *inode, struct ext4_inode *raw,
53 struct ext4_inode_info *ei)
54{
55 struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb);
Darrick J. Wong814525f2012-04-29 18:31:10 -040056 __u32 csum;
Daeho Jeongb47820e2016-07-03 17:51:39 -040057 __u16 dummy_csum = 0;
58 int offset = offsetof(struct ext4_inode, i_checksum_lo);
59 unsigned int csum_size = sizeof(dummy_csum);
Darrick J. Wong814525f2012-04-29 18:31:10 -040060
Daeho Jeongb47820e2016-07-03 17:51:39 -040061 csum = ext4_chksum(sbi, ei->i_csum_seed, (__u8 *)raw, offset);
62 csum = ext4_chksum(sbi, csum, (__u8 *)&dummy_csum, csum_size);
63 offset += csum_size;
64 csum = ext4_chksum(sbi, csum, (__u8 *)raw + offset,
65 EXT4_GOOD_OLD_INODE_SIZE - offset);
66
67 if (EXT4_INODE_SIZE(inode->i_sb) > EXT4_GOOD_OLD_INODE_SIZE) {
68 offset = offsetof(struct ext4_inode, i_checksum_hi);
69 csum = ext4_chksum(sbi, csum, (__u8 *)raw +
70 EXT4_GOOD_OLD_INODE_SIZE,
71 offset - EXT4_GOOD_OLD_INODE_SIZE);
72 if (EXT4_FITS_IN_INODE(raw, ei, i_checksum_hi)) {
73 csum = ext4_chksum(sbi, csum, (__u8 *)&dummy_csum,
74 csum_size);
75 offset += csum_size;
Daeho Jeongb47820e2016-07-03 17:51:39 -040076 }
Daeho Jeong05ac5aa2016-12-01 11:49:12 -050077 csum = ext4_chksum(sbi, csum, (__u8 *)raw + offset,
78 EXT4_INODE_SIZE(inode->i_sb) - offset);
Darrick J. Wong814525f2012-04-29 18:31:10 -040079 }
80
Darrick J. Wong814525f2012-04-29 18:31:10 -040081 return csum;
82}
83
84static int ext4_inode_csum_verify(struct inode *inode, struct ext4_inode *raw,
85 struct ext4_inode_info *ei)
86{
87 __u32 provided, calculated;
88
89 if (EXT4_SB(inode->i_sb)->s_es->s_creator_os !=
90 cpu_to_le32(EXT4_OS_LINUX) ||
Dmitry Monakhov9aa5d32b2014-10-13 03:36:16 -040091 !ext4_has_metadata_csum(inode->i_sb))
Darrick J. Wong814525f2012-04-29 18:31:10 -040092 return 1;
93
94 provided = le16_to_cpu(raw->i_checksum_lo);
95 calculated = ext4_inode_csum(inode, raw, ei);
96 if (EXT4_INODE_SIZE(inode->i_sb) > EXT4_GOOD_OLD_INODE_SIZE &&
97 EXT4_FITS_IN_INODE(raw, ei, i_checksum_hi))
98 provided |= ((__u32)le16_to_cpu(raw->i_checksum_hi)) << 16;
99 else
100 calculated &= 0xFFFF;
101
102 return provided == calculated;
103}
104
Harshad Shirwadkar8016e292020-10-15 13:37:59 -0700105void ext4_inode_csum_set(struct inode *inode, struct ext4_inode *raw,
106 struct ext4_inode_info *ei)
Darrick J. Wong814525f2012-04-29 18:31:10 -0400107{
108 __u32 csum;
109
110 if (EXT4_SB(inode->i_sb)->s_es->s_creator_os !=
111 cpu_to_le32(EXT4_OS_LINUX) ||
Dmitry Monakhov9aa5d32b2014-10-13 03:36:16 -0400112 !ext4_has_metadata_csum(inode->i_sb))
Darrick J. Wong814525f2012-04-29 18:31:10 -0400113 return;
114
115 csum = ext4_inode_csum(inode, raw, ei);
116 raw->i_checksum_lo = cpu_to_le16(csum & 0xFFFF);
117 if (EXT4_INODE_SIZE(inode->i_sb) > EXT4_GOOD_OLD_INODE_SIZE &&
118 EXT4_FITS_IN_INODE(raw, ei, i_checksum_hi))
119 raw->i_checksum_hi = cpu_to_le16(csum >> 16);
120}
121
Jan Kara678aaf42008-07-11 19:27:31 -0400122static inline int ext4_begin_ordered_truncate(struct inode *inode,
123 loff_t new_size)
124{
Theodore Ts'o7ff9c072010-11-08 13:51:33 -0500125 trace_ext4_begin_ordered_truncate(inode, new_size);
Theodore Ts'o8aefcd52011-01-10 12:29:43 -0500126 /*
127 * If jinode is zero, then we never opened the file for
128 * writing, so there's no need to call
129 * jbd2_journal_begin_ordered_truncate() since there's no
130 * outstanding writes we need to flush.
131 */
132 if (!EXT4_I(inode)->jinode)
133 return 0;
134 return jbd2_journal_begin_ordered_truncate(EXT4_JOURNAL(inode),
135 EXT4_I(inode)->jinode,
136 new_size);
Jan Kara678aaf42008-07-11 19:27:31 -0400137}
138
Lukas Czernerd47992f2013-05-21 23:17:23 -0400139static void ext4_invalidatepage(struct page *page, unsigned int offset,
140 unsigned int length);
Theodore Ts'ocb20d512010-10-27 21:30:09 -0400141static int __ext4_journalled_writepage(struct page *page, unsigned int len);
142static int ext4_bh_delay_or_unwritten(handle_t *handle, struct buffer_head *bh);
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 }
Harshad Shirwadkara80f7fc2020-11-05 19:58:53 -0800745 ext4_fc_track_range(handle, inode, map->m_lblk,
Harshad Shirwadkaraa75f4d2020-10-15 13:37:57 -0700746 map->m_lblk + map->m_len - 1);
Theodore Ts'o6fd058f2009-05-17 15:38:01 -0400747 }
Ritesh Harjaniec8c60b2020-05-10 11:54:52 +0530748
749 if (retval < 0)
Ritesh Harjani70aa1552020-05-10 11:54:55 +0530750 ext_debug(inode, "failed with err %d\n", retval);
Aneesh Kumar K.V0e855ac2008-01-28 23:58:26 -0500751 return retval;
752}
753
Jan Karaed8ad832016-02-19 00:18:25 -0500754/*
755 * Update EXT4_MAP_FLAGS in bh->b_state. For buffer heads attached to pages
756 * we have to be careful as someone else may be manipulating b_state as well.
757 */
758static void ext4_update_bh_state(struct buffer_head *bh, unsigned long flags)
759{
760 unsigned long old_state;
761 unsigned long new_state;
762
763 flags &= EXT4_MAP_FLAGS;
764
765 /* Dummy buffer_head? Set non-atomically. */
766 if (!bh->b_page) {
767 bh->b_state = (bh->b_state & ~EXT4_MAP_FLAGS) | flags;
768 return;
769 }
770 /*
771 * Someone else may be modifying b_state. Be careful! This is ugly but
772 * once we get rid of using bh as a container for mapping information
773 * to pass to / from get_block functions, this can go away.
774 */
775 do {
776 old_state = READ_ONCE(bh->b_state);
777 new_state = (old_state & ~EXT4_MAP_FLAGS) | flags;
778 } while (unlikely(
779 cmpxchg(&bh->b_state, old_state, new_state) != old_state));
780}
781
Theodore Ts'o2ed88682010-05-16 20:00:00 -0400782static int _ext4_get_block(struct inode *inode, sector_t iblock,
783 struct buffer_head *bh, int flags)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700784{
Theodore Ts'o2ed88682010-05-16 20:00:00 -0400785 struct ext4_map_blocks map;
Jan Karaefe70c22016-03-08 23:35:46 -0500786 int ret = 0;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700787
Tao Ma46c7f252012-12-10 14:04:52 -0500788 if (ext4_has_inline_data(inode))
789 return -ERANGE;
790
Theodore Ts'o2ed88682010-05-16 20:00:00 -0400791 map.m_lblk = iblock;
792 map.m_len = bh->b_size >> inode->i_blkbits;
793
Jan Karaefe70c22016-03-08 23:35:46 -0500794 ret = ext4_map_blocks(ext4_journal_current_handle(), inode, &map,
795 flags);
Jan Kara7fb54092008-02-10 01:08:38 -0500796 if (ret > 0) {
Theodore Ts'o2ed88682010-05-16 20:00:00 -0400797 map_bh(bh, inode->i_sb, map.m_pblk);
Jan Karaed8ad832016-02-19 00:18:25 -0500798 ext4_update_bh_state(bh, map.m_flags);
Theodore Ts'o2ed88682010-05-16 20:00:00 -0400799 bh->b_size = inode->i_sb->s_blocksize * map.m_len;
Jan Kara7fb54092008-02-10 01:08:38 -0500800 ret = 0;
Ross Zwisler547edce2016-11-08 11:30:58 +1100801 } else if (ret == 0) {
802 /* hole case, need to fill in bh->b_size */
803 bh->b_size = inode->i_sb->s_blocksize * map.m_len;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700804 }
805 return ret;
806}
807
Theodore Ts'o2ed88682010-05-16 20:00:00 -0400808int ext4_get_block(struct inode *inode, sector_t iblock,
809 struct buffer_head *bh, int create)
810{
811 return _ext4_get_block(inode, iblock, bh,
812 create ? EXT4_GET_BLOCKS_CREATE : 0);
813}
814
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700815/*
Jan Kara705965b2016-03-08 23:08:10 -0500816 * Get block function used when preparing for buffered write if we require
817 * creating an unwritten extent if blocks haven't been allocated. The extent
818 * will be converted to written after the IO is complete.
819 */
820int ext4_get_block_unwritten(struct inode *inode, sector_t iblock,
821 struct buffer_head *bh_result, int create)
822{
823 ext4_debug("ext4_get_block_unwritten: inode %lu, create flag %d\n",
824 inode->i_ino, create);
825 return _ext4_get_block(inode, iblock, bh_result,
826 EXT4_GET_BLOCKS_IO_CREATE_EXT);
827}
828
Jan Karaefe70c22016-03-08 23:35:46 -0500829/* Maximum number of blocks we map for direct IO at once. */
830#define DIO_MAX_BLOCKS 4096
831
Jan Karae84dfbe2016-04-01 02:07:22 -0400832/*
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700833 * `handle' can be NULL if create is zero
834 */
Mingming Cao617ba132006-10-11 01:20:53 -0700835struct buffer_head *ext4_getblk(handle_t *handle, struct inode *inode,
Theodore Ts'oc5e298a2015-06-21 01:25:29 -0400836 ext4_lblk_t block, int map_flags)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700837{
Theodore Ts'o2ed88682010-05-16 20:00:00 -0400838 struct ext4_map_blocks map;
839 struct buffer_head *bh;
Theodore Ts'oc5e298a2015-06-21 01:25:29 -0400840 int create = map_flags & EXT4_GET_BLOCKS_CREATE;
Theodore Ts'o10560082014-08-29 20:51:32 -0400841 int err;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700842
Chunguang Xu837c23f2020-11-07 23:58:11 +0800843 ASSERT((EXT4_SB(inode->i_sb)->s_mount_state & EXT4_FC_REPLAY)
844 || handle != NULL || create == 0);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700845
Theodore Ts'o2ed88682010-05-16 20:00:00 -0400846 map.m_lblk = block;
847 map.m_len = 1;
Theodore Ts'oc5e298a2015-06-21 01:25:29 -0400848 err = ext4_map_blocks(handle, inode, &map, map_flags);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700849
Theodore Ts'o10560082014-08-29 20:51:32 -0400850 if (err == 0)
851 return create ? ERR_PTR(-ENOSPC) : NULL;
Theodore Ts'o2ed88682010-05-16 20:00:00 -0400852 if (err < 0)
Theodore Ts'o10560082014-08-29 20:51:32 -0400853 return ERR_PTR(err);
Theodore Ts'o2ed88682010-05-16 20:00:00 -0400854
855 bh = sb_getblk(inode->i_sb, map.m_pblk);
Theodore Ts'o10560082014-08-29 20:51:32 -0400856 if (unlikely(!bh))
857 return ERR_PTR(-ENOMEM);
Theodore Ts'o2ed88682010-05-16 20:00:00 -0400858 if (map.m_flags & EXT4_MAP_NEW) {
Chunguang Xu837c23f2020-11-07 23:58:11 +0800859 ASSERT(create != 0);
860 ASSERT((EXT4_SB(inode->i_sb)->s_mount_state & EXT4_FC_REPLAY)
861 || (handle != NULL));
Theodore Ts'o2ed88682010-05-16 20:00:00 -0400862
863 /*
864 * Now that we do not always journal data, we should
865 * keep in mind whether this should always journal the
866 * new buffer as metadata. For now, regular file
867 * writes use ext4_get_block instead, so it's not a
868 * problem.
869 */
870 lock_buffer(bh);
871 BUFFER_TRACE(bh, "call get_create_access");
Theodore Ts'o10560082014-08-29 20:51:32 -0400872 err = ext4_journal_get_create_access(handle, bh);
873 if (unlikely(err)) {
874 unlock_buffer(bh);
875 goto errout;
876 }
877 if (!buffer_uptodate(bh)) {
Theodore Ts'o2ed88682010-05-16 20:00:00 -0400878 memset(bh->b_data, 0, inode->i_sb->s_blocksize);
879 set_buffer_uptodate(bh);
880 }
881 unlock_buffer(bh);
882 BUFFER_TRACE(bh, "call ext4_handle_dirty_metadata");
883 err = ext4_handle_dirty_metadata(handle, inode, bh);
Theodore Ts'o10560082014-08-29 20:51:32 -0400884 if (unlikely(err))
885 goto errout;
886 } else
Theodore Ts'o2ed88682010-05-16 20:00:00 -0400887 BUFFER_TRACE(bh, "not a new buffer");
Theodore Ts'o2ed88682010-05-16 20:00:00 -0400888 return bh;
Theodore Ts'o10560082014-08-29 20:51:32 -0400889errout:
890 brelse(bh);
891 return ERR_PTR(err);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700892}
893
Mingming Cao617ba132006-10-11 01:20:53 -0700894struct buffer_head *ext4_bread(handle_t *handle, struct inode *inode,
Theodore Ts'oc5e298a2015-06-21 01:25:29 -0400895 ext4_lblk_t block, int map_flags)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700896{
Theodore Ts'oaf5bc922008-09-08 22:25:24 -0400897 struct buffer_head *bh;
zhangyi (F)2d069c02020-09-24 15:33:33 +0800898 int ret;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700899
Theodore Ts'oc5e298a2015-06-21 01:25:29 -0400900 bh = ext4_getblk(handle, inode, block, map_flags);
Theodore Ts'o1c215022014-08-29 20:52:15 -0400901 if (IS_ERR(bh))
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700902 return bh;
ZhangXiaoxu7963e5a2019-08-22 23:00:32 -0400903 if (!bh || ext4_buffer_uptodate(bh))
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700904 return bh;
zhangyi (F)2d069c02020-09-24 15:33:33 +0800905
906 ret = ext4_read_bh_lock(bh, REQ_META | REQ_PRIO, true);
907 if (ret) {
908 put_bh(bh);
909 return ERR_PTR(ret);
910 }
911 return bh;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700912}
913
Tahsin Erdogan9699d4f2017-08-06 00:07:01 -0400914/* Read a contiguous batch of blocks. */
915int ext4_bread_batch(struct inode *inode, ext4_lblk_t block, int bh_count,
916 bool wait, struct buffer_head **bhs)
917{
918 int i, err;
919
920 for (i = 0; i < bh_count; i++) {
921 bhs[i] = ext4_getblk(NULL, inode, block + i, 0 /* map_flags */);
922 if (IS_ERR(bhs[i])) {
923 err = PTR_ERR(bhs[i]);
924 bh_count = i;
925 goto out_brelse;
926 }
927 }
928
929 for (i = 0; i < bh_count; i++)
930 /* Note that NULL bhs[i] is valid because of holes. */
zhangyi (F)2d069c02020-09-24 15:33:33 +0800931 if (bhs[i] && !ext4_buffer_uptodate(bhs[i]))
932 ext4_read_bh_lock(bhs[i], REQ_META | REQ_PRIO, false);
Tahsin Erdogan9699d4f2017-08-06 00:07:01 -0400933
934 if (!wait)
935 return 0;
936
937 for (i = 0; i < bh_count; i++)
938 if (bhs[i])
939 wait_on_buffer(bhs[i]);
940
941 for (i = 0; i < bh_count; i++) {
942 if (bhs[i] && !buffer_uptodate(bhs[i])) {
943 err = -EIO;
944 goto out_brelse;
945 }
946 }
947 return 0;
948
949out_brelse:
950 for (i = 0; i < bh_count; i++) {
951 brelse(bhs[i]);
952 bhs[i] = NULL;
953 }
954 return err;
955}
956
Tao Maf19d5872012-12-10 14:05:51 -0500957int ext4_walk_page_buffers(handle_t *handle,
958 struct buffer_head *head,
959 unsigned from,
960 unsigned to,
961 int *partial,
962 int (*fn)(handle_t *handle,
963 struct buffer_head *bh))
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700964{
965 struct buffer_head *bh;
966 unsigned block_start, block_end;
967 unsigned blocksize = head->b_size;
968 int err, ret = 0;
969 struct buffer_head *next;
970
Theodore Ts'oaf5bc922008-09-08 22:25:24 -0400971 for (bh = head, block_start = 0;
972 ret == 0 && (bh != head || !block_start);
Theodore Ts'ode9a55b2009-06-14 17:45:34 -0400973 block_start = block_end, bh = next) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700974 next = bh->b_this_page;
975 block_end = block_start + blocksize;
976 if (block_end <= from || block_start >= to) {
977 if (partial && !buffer_uptodate(bh))
978 *partial = 1;
979 continue;
980 }
981 err = (*fn)(handle, bh);
982 if (!ret)
983 ret = err;
984 }
985 return ret;
986}
987
988/*
989 * To preserve ordering, it is essential that the hole instantiation and
990 * the data write be encapsulated in a single transaction. We cannot
Mingming Cao617ba132006-10-11 01:20:53 -0700991 * close off a transaction and start a new one between the ext4_get_block()
Mingming Caodab291a2006-10-11 01:21:01 -0700992 * and the commit_write(). So doing the jbd2_journal_start at the start of
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700993 * prepare_write() is the right place.
994 *
Jan Kara36ade452013-01-28 09:30:52 -0500995 * Also, this function can nest inside ext4_writepage(). In that case, we
996 * *know* that ext4_writepage() has generated enough buffer credits to do the
997 * whole page. So we won't block on the journal in that case, which is good,
998 * because the caller may be PF_MEMALLOC.
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700999 *
Mingming Cao617ba132006-10-11 01:20:53 -07001000 * By accident, ext4 can be reentered when a transaction is open via
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001001 * quota file writes. If we were to commit the transaction while thus
1002 * reentered, there can be a deadlock - we would be holding a quota
1003 * lock, and the commit would never complete if another thread had a
1004 * transaction open and was blocking on the quota lock - a ranking
1005 * violation.
1006 *
Mingming Caodab291a2006-10-11 01:21:01 -07001007 * So what we do is to rely on the fact that jbd2_journal_stop/journal_start
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001008 * will _not_ run commit under these circumstances because handle->h_ref
1009 * is elevated. We'll still have enough credits for the tiny quotafile
1010 * write.
1011 */
Tao Maf19d5872012-12-10 14:05:51 -05001012int do_journal_get_write_access(handle_t *handle,
1013 struct buffer_head *bh)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001014{
Jan Kara56d35a42010-08-05 14:41:42 -04001015 int dirty = buffer_dirty(bh);
1016 int ret;
1017
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001018 if (!buffer_mapped(bh) || buffer_freed(bh))
1019 return 0;
Jan Kara56d35a42010-08-05 14:41:42 -04001020 /*
Christoph Hellwigebdec242010-10-06 10:47:23 +02001021 * __block_write_begin() could have dirtied some buffers. Clean
Jan Kara56d35a42010-08-05 14:41:42 -04001022 * the dirty bit as jbd2_journal_get_write_access() could complain
1023 * otherwise about fs integrity issues. Setting of the dirty bit
Christoph Hellwigebdec242010-10-06 10:47:23 +02001024 * by __block_write_begin() isn't a real problem here as we clear
Jan Kara56d35a42010-08-05 14:41:42 -04001025 * the bit before releasing a page lock and thus writeback cannot
1026 * ever write the buffer.
1027 */
1028 if (dirty)
1029 clear_buffer_dirty(bh);
liang xie5d601252014-05-12 22:06:43 -04001030 BUFFER_TRACE(bh, "get write access");
Jan Kara56d35a42010-08-05 14:41:42 -04001031 ret = ext4_journal_get_write_access(handle, bh);
1032 if (!ret && dirty)
1033 ret = ext4_handle_dirty_metadata(handle, NULL, bh);
1034 return ret;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001035}
1036
Chandan Rajendra643fa962018-12-12 15:20:12 +05301037#ifdef CONFIG_FS_ENCRYPTION
Michael Halcrow2058f832015-04-12 00:55:10 -04001038static int ext4_block_write_begin(struct page *page, loff_t pos, unsigned len,
1039 get_block_t *get_block)
1040{
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001041 unsigned from = pos & (PAGE_SIZE - 1);
Michael Halcrow2058f832015-04-12 00:55:10 -04001042 unsigned to = from + len;
1043 struct inode *inode = page->mapping->host;
1044 unsigned block_start, block_end;
1045 sector_t block;
1046 int err = 0;
1047 unsigned blocksize = inode->i_sb->s_blocksize;
1048 unsigned bbits;
Chandan Rajendra0b578f32019-05-20 09:29:50 -07001049 struct buffer_head *bh, *head, *wait[2];
1050 int nr_wait = 0;
1051 int i;
Michael Halcrow2058f832015-04-12 00:55:10 -04001052
1053 BUG_ON(!PageLocked(page));
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001054 BUG_ON(from > PAGE_SIZE);
1055 BUG_ON(to > PAGE_SIZE);
Michael Halcrow2058f832015-04-12 00:55:10 -04001056 BUG_ON(from > to);
1057
1058 if (!page_has_buffers(page))
1059 create_empty_buffers(page, blocksize, 0);
1060 head = page_buffers(page);
1061 bbits = ilog2(blocksize);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001062 block = (sector_t)page->index << (PAGE_SHIFT - bbits);
Michael Halcrow2058f832015-04-12 00:55:10 -04001063
1064 for (bh = head, block_start = 0; bh != head || !block_start;
1065 block++, block_start = block_end, bh = bh->b_this_page) {
1066 block_end = block_start + blocksize;
1067 if (block_end <= from || block_start >= to) {
1068 if (PageUptodate(page)) {
Yang Guo3cd46172021-04-01 15:03:30 +08001069 set_buffer_uptodate(bh);
Michael Halcrow2058f832015-04-12 00:55:10 -04001070 }
1071 continue;
1072 }
1073 if (buffer_new(bh))
1074 clear_buffer_new(bh);
1075 if (!buffer_mapped(bh)) {
1076 WARN_ON(bh->b_size != blocksize);
1077 err = get_block(inode, block, bh, 1);
1078 if (err)
1079 break;
1080 if (buffer_new(bh)) {
Michael Halcrow2058f832015-04-12 00:55:10 -04001081 if (PageUptodate(page)) {
1082 clear_buffer_new(bh);
1083 set_buffer_uptodate(bh);
1084 mark_buffer_dirty(bh);
1085 continue;
1086 }
1087 if (block_end > to || block_start < from)
1088 zero_user_segments(page, to, block_end,
1089 block_start, from);
1090 continue;
1091 }
1092 }
1093 if (PageUptodate(page)) {
Yang Guo3cd46172021-04-01 15:03:30 +08001094 set_buffer_uptodate(bh);
Michael Halcrow2058f832015-04-12 00:55:10 -04001095 continue;
1096 }
1097 if (!buffer_uptodate(bh) && !buffer_delay(bh) &&
1098 !buffer_unwritten(bh) &&
1099 (block_start < from || block_end > to)) {
zhangyi (F)2d069c02020-09-24 15:33:33 +08001100 ext4_read_bh_lock(bh, 0, false);
Chandan Rajendra0b578f32019-05-20 09:29:50 -07001101 wait[nr_wait++] = bh;
Michael Halcrow2058f832015-04-12 00:55:10 -04001102 }
1103 }
1104 /*
1105 * If we issued read requests, let them complete.
1106 */
Chandan Rajendra0b578f32019-05-20 09:29:50 -07001107 for (i = 0; i < nr_wait; i++) {
1108 wait_on_buffer(wait[i]);
1109 if (!buffer_uptodate(wait[i]))
Michael Halcrow2058f832015-04-12 00:55:10 -04001110 err = -EIO;
1111 }
Chandan Rajendra7e0785f2019-05-20 09:29:49 -07001112 if (unlikely(err)) {
Michael Halcrow2058f832015-04-12 00:55:10 -04001113 page_zero_new_buffers(page, from, to);
Eric Biggers4f74d152020-07-02 01:56:07 +00001114 } else if (fscrypt_inode_uses_fs_layer_crypto(inode)) {
Chandan Rajendra0b578f32019-05-20 09:29:50 -07001115 for (i = 0; i < nr_wait; i++) {
1116 int err2;
1117
1118 err2 = fscrypt_decrypt_pagecache_blocks(page, blocksize,
1119 bh_offset(wait[i]));
1120 if (err2) {
1121 clear_buffer_uptodate(wait[i]);
1122 err = err2;
1123 }
1124 }
Chandan Rajendra7e0785f2019-05-20 09:29:49 -07001125 }
1126
Michael Halcrow2058f832015-04-12 00:55:10 -04001127 return err;
1128}
1129#endif
1130
Nick Pigginbfc1af62007-10-16 01:25:05 -07001131static int ext4_write_begin(struct file *file, struct address_space *mapping,
Theodore Ts'ode9a55b2009-06-14 17:45:34 -04001132 loff_t pos, unsigned len, unsigned flags,
1133 struct page **pagep, void **fsdata)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001134{
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04001135 struct inode *inode = mapping->host;
Aneesh Kumar K.V1938a152009-06-05 01:00:26 -04001136 int ret, needed_blocks;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001137 handle_t *handle;
1138 int retries = 0;
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04001139 struct page *page;
Theodore Ts'ode9a55b2009-06-14 17:45:34 -04001140 pgoff_t index;
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04001141 unsigned from, to;
Nick Pigginbfc1af62007-10-16 01:25:05 -07001142
Theodore Ts'o0db1ff22017-02-05 01:28:48 -05001143 if (unlikely(ext4_forced_shutdown(EXT4_SB(inode->i_sb))))
1144 return -EIO;
1145
Theodore Ts'o9bffad12009-06-17 11:48:11 -04001146 trace_ext4_write_begin(inode, pos, len, flags);
Aneesh Kumar K.V1938a152009-06-05 01:00:26 -04001147 /*
1148 * Reserve one block more for addition to orphan list in case
1149 * we allocate blocks but write fails for some reason
1150 */
1151 needed_blocks = ext4_writepage_trans_blocks(inode) + 1;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001152 index = pos >> PAGE_SHIFT;
1153 from = pos & (PAGE_SIZE - 1);
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04001154 to = from + len;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001155
Tao Maf19d5872012-12-10 14:05:51 -05001156 if (ext4_test_inode_state(inode, EXT4_STATE_MAY_INLINE_DATA)) {
1157 ret = ext4_try_to_write_inline_data(mapping, inode, pos, len,
1158 flags, pagep);
1159 if (ret < 0)
Theodore Ts'o47564bf2013-02-09 09:24:14 -05001160 return ret;
1161 if (ret == 1)
1162 return 0;
Tao Maf19d5872012-12-10 14:05:51 -05001163 }
1164
Theodore Ts'o47564bf2013-02-09 09:24:14 -05001165 /*
1166 * grab_cache_page_write_begin() can take a long time if the
1167 * system is thrashing due to memory pressure, or if the page
1168 * is being written back. So grab it first before we start
1169 * the transaction handle. This also allows us to allocate
1170 * the page (if needed) without using GFP_NOFS.
1171 */
1172retry_grab:
Nick Piggin54566b22009-01-04 12:00:53 -08001173 page = grab_cache_page_write_begin(mapping, index, flags);
Theodore Ts'o47564bf2013-02-09 09:24:14 -05001174 if (!page)
1175 return -ENOMEM;
1176 unlock_page(page);
1177
1178retry_journal:
Theodore Ts'o9924a922013-02-08 21:59:22 -05001179 handle = ext4_journal_start(inode, EXT4_HT_WRITE_PAGE, needed_blocks);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001180 if (IS_ERR(handle)) {
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001181 put_page(page);
Theodore Ts'o47564bf2013-02-09 09:24:14 -05001182 return PTR_ERR(handle);
Jan Karacf108bc2008-07-11 19:27:31 -04001183 }
Tao Maf19d5872012-12-10 14:05:51 -05001184
Theodore Ts'o47564bf2013-02-09 09:24:14 -05001185 lock_page(page);
1186 if (page->mapping != mapping) {
1187 /* The page got truncated from under us */
1188 unlock_page(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001189 put_page(page);
Jan Karacf108bc2008-07-11 19:27:31 -04001190 ext4_journal_stop(handle);
Theodore Ts'o47564bf2013-02-09 09:24:14 -05001191 goto retry_grab;
Jan Karacf108bc2008-07-11 19:27:31 -04001192 }
Dmitry Monakhov7afe5aa2013-08-28 14:30:47 -04001193 /* In case writeback began while the page was unlocked */
1194 wait_for_stable_page(page);
Jan Karacf108bc2008-07-11 19:27:31 -04001195
Chandan Rajendra643fa962018-12-12 15:20:12 +05301196#ifdef CONFIG_FS_ENCRYPTION
Michael Halcrow2058f832015-04-12 00:55:10 -04001197 if (ext4_should_dioread_nolock(inode))
1198 ret = ext4_block_write_begin(page, pos, len,
Jan Kara705965b2016-03-08 23:08:10 -05001199 ext4_get_block_unwritten);
Michael Halcrow2058f832015-04-12 00:55:10 -04001200 else
1201 ret = ext4_block_write_begin(page, pos, len,
1202 ext4_get_block);
1203#else
Jiaying Zhang744692d2010-03-04 16:14:02 -05001204 if (ext4_should_dioread_nolock(inode))
Jan Kara705965b2016-03-08 23:08:10 -05001205 ret = __block_write_begin(page, pos, len,
1206 ext4_get_block_unwritten);
Jiaying Zhang744692d2010-03-04 16:14:02 -05001207 else
Christoph Hellwig6e1db882010-06-04 11:29:57 +02001208 ret = __block_write_begin(page, pos, len, ext4_get_block);
Michael Halcrow2058f832015-04-12 00:55:10 -04001209#endif
Nick Pigginbfc1af62007-10-16 01:25:05 -07001210 if (!ret && ext4_should_journal_data(inode)) {
Tao Maf19d5872012-12-10 14:05:51 -05001211 ret = ext4_walk_page_buffers(handle, page_buffers(page),
1212 from, to, NULL,
1213 do_journal_get_write_access);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001214 }
Nick Pigginbfc1af62007-10-16 01:25:05 -07001215
1216 if (ret) {
Eric Biggersc93d8f82019-07-22 09:26:24 -07001217 bool extended = (pos + len > inode->i_size) &&
1218 !ext4_verity_in_progress(inode);
1219
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04001220 unlock_page(page);
Aneesh Kumar K.Vae4d5372008-09-13 13:10:25 -04001221 /*
Christoph Hellwig6e1db882010-06-04 11:29:57 +02001222 * __block_write_begin may have instantiated a few blocks
Aneesh Kumar K.Vae4d5372008-09-13 13:10:25 -04001223 * outside i_size. Trim these off again. Don't need
1224 * i_size_read because we hold i_mutex.
Aneesh Kumar K.V1938a152009-06-05 01:00:26 -04001225 *
1226 * Add inode to orphan list in case we crash before
1227 * truncate finishes
Aneesh Kumar K.Vae4d5372008-09-13 13:10:25 -04001228 */
Eric Biggersc93d8f82019-07-22 09:26:24 -07001229 if (extended && ext4_can_truncate(inode))
Aneesh Kumar K.V1938a152009-06-05 01:00:26 -04001230 ext4_orphan_add(handle, inode);
1231
1232 ext4_journal_stop(handle);
Eric Biggersc93d8f82019-07-22 09:26:24 -07001233 if (extended) {
Jan Karab9a42072009-12-08 21:24:33 -05001234 ext4_truncate_failed_write(inode);
Theodore Ts'ode9a55b2009-06-14 17:45:34 -04001235 /*
Jan Karaffacfa72009-07-13 16:22:22 -04001236 * If truncate failed early the inode might
Aneesh Kumar K.V1938a152009-06-05 01:00:26 -04001237 * still be on the orphan list; we need to
1238 * make sure the inode is removed from the
1239 * orphan list in that case.
1240 */
1241 if (inode->i_nlink)
1242 ext4_orphan_del(NULL, inode);
1243 }
Nick Pigginbfc1af62007-10-16 01:25:05 -07001244
Theodore Ts'o47564bf2013-02-09 09:24:14 -05001245 if (ret == -ENOSPC &&
1246 ext4_should_retry_alloc(inode->i_sb, &retries))
1247 goto retry_journal;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001248 put_page(page);
Theodore Ts'o47564bf2013-02-09 09:24:14 -05001249 return ret;
1250 }
1251 *pagep = page;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001252 return ret;
1253}
1254
Nick Pigginbfc1af62007-10-16 01:25:05 -07001255/* For write_end() in data=journal mode */
1256static int write_end_fn(handle_t *handle, struct buffer_head *bh)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001257{
Theodore Ts'o13fca322013-04-21 16:45:54 -04001258 int ret;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001259 if (!buffer_mapped(bh) || buffer_freed(bh))
1260 return 0;
1261 set_buffer_uptodate(bh);
Theodore Ts'o13fca322013-04-21 16:45:54 -04001262 ret = ext4_handle_dirty_metadata(handle, NULL, bh);
1263 clear_buffer_meta(bh);
1264 clear_buffer_prio(bh);
1265 return ret;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001266}
1267
Zheng Liueed43332013-04-03 12:41:17 -04001268/*
1269 * We need to pick up the new inode size which generic_commit_write gave us
1270 * `file' can be NULL - eg, when called from page_symlink().
1271 *
1272 * ext4 never places buffers on inode->i_mapping->private_list. metadata
1273 * buffers are managed internally.
1274 */
1275static int ext4_write_end(struct file *file,
1276 struct address_space *mapping,
1277 loff_t pos, unsigned len, unsigned copied,
1278 struct page *page, void *fsdata)
Aneesh Kumar K.Vf8514082009-06-05 00:56:49 -04001279{
Aneesh Kumar K.Vf8514082009-06-05 00:56:49 -04001280 handle_t *handle = ext4_journal_current_handle();
Zheng Liueed43332013-04-03 12:41:17 -04001281 struct inode *inode = mapping->host;
Xiaoguang Wang05726392015-02-12 23:00:17 -05001282 loff_t old_size = inode->i_size;
Zheng Liueed43332013-04-03 12:41:17 -04001283 int ret = 0, ret2;
1284 int i_size_changed = 0;
Eric Biggersc93d8f82019-07-22 09:26:24 -07001285 bool verity = ext4_verity_in_progress(inode);
Zheng Liueed43332013-04-03 12:41:17 -04001286
1287 trace_ext4_write_end(inode, pos, len, copied);
Zhang Yi6984aef2021-07-16 20:20:23 +08001288
1289 if (ext4_has_inline_data(inode))
1290 return ext4_write_inline_data_end(inode, pos, len, copied, page);
1291
1292 copied = block_write_end(file, mapping, pos, len, copied, page, fsdata);
Aneesh Kumar K.Vf8514082009-06-05 00:56:49 -04001293 /*
Dmitry Monakhov4631dbf2014-08-23 17:48:28 -04001294 * it's important to update i_size while still holding page lock:
Aneesh Kumar K.Vf8514082009-06-05 00:56:49 -04001295 * page writeout could otherwise come in and zero beyond i_size.
Eric Biggersc93d8f82019-07-22 09:26:24 -07001296 *
1297 * If FS_IOC_ENABLE_VERITY is running on this inode, then Merkle tree
1298 * blocks are being written past EOF, so skip the i_size update.
Aneesh Kumar K.Vf8514082009-06-05 00:56:49 -04001299 */
Eric Biggersc93d8f82019-07-22 09:26:24 -07001300 if (!verity)
1301 i_size_changed = ext4_update_inode_size(inode, pos + copied);
Aneesh Kumar K.Vf8514082009-06-05 00:56:49 -04001302 unlock_page(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001303 put_page(page);
Aneesh Kumar K.Vf8514082009-06-05 00:56:49 -04001304
Eric Biggersc93d8f82019-07-22 09:26:24 -07001305 if (old_size < pos && !verity)
Xiaoguang Wang05726392015-02-12 23:00:17 -05001306 pagecache_isize_extended(inode, old_size, pos);
Aneesh Kumar K.Vf8514082009-06-05 00:56:49 -04001307 /*
1308 * Don't mark the inode dirty under page lock. First, it unnecessarily
1309 * makes the holding time of page lock longer. Second, it forces lock
1310 * ordering of page lock and transaction start for journaling
1311 * filesystems.
1312 */
Zhang Yi6984aef2021-07-16 20:20:23 +08001313 if (i_size_changed)
Harshad Shirwadkar4209ae12020-04-26 18:34:37 -07001314 ret = ext4_mark_inode_dirty(handle, inode);
Aneesh Kumar K.Vf8514082009-06-05 00:56:49 -04001315
Eric Biggersc93d8f82019-07-22 09:26:24 -07001316 if (pos + len > inode->i_size && !verity && ext4_can_truncate(inode))
Aneesh Kumar K.Vf8514082009-06-05 00:56:49 -04001317 /* if we have allocated more blocks and copied
1318 * less. We will have blocks allocated outside
1319 * inode->i_size. So truncate them
1320 */
1321 ext4_orphan_add(handle, inode);
Zhang Yi55ce2f62021-07-16 20:20:22 +08001322
Mingming Cao617ba132006-10-11 01:20:53 -07001323 ret2 = ext4_journal_stop(handle);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001324 if (!ret)
1325 ret = ret2;
Nick Pigginbfc1af62007-10-16 01:25:05 -07001326
Eric Biggersc93d8f82019-07-22 09:26:24 -07001327 if (pos + len > inode->i_size && !verity) {
Jan Karab9a42072009-12-08 21:24:33 -05001328 ext4_truncate_failed_write(inode);
Theodore Ts'ode9a55b2009-06-14 17:45:34 -04001329 /*
Jan Karaffacfa72009-07-13 16:22:22 -04001330 * If truncate failed early the inode might still be
Aneesh Kumar K.Vf8514082009-06-05 00:56:49 -04001331 * on the orphan list; we need to make sure the inode
1332 * is removed from the orphan list in that case.
1333 */
1334 if (inode->i_nlink)
1335 ext4_orphan_del(NULL, inode);
1336 }
1337
Nick Pigginbfc1af62007-10-16 01:25:05 -07001338 return ret ? ret : copied;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001339}
1340
Theodore Ts'ob90197b2015-10-15 10:29:05 -04001341/*
1342 * This is a private version of page_zero_new_buffers() which doesn't
1343 * set the buffer to be dirty, since in data=journalled mode we need
1344 * to call ext4_handle_dirty_metadata() instead.
1345 */
Jan Kara3b136492017-01-27 14:35:38 -05001346static void ext4_journalled_zero_new_buffers(handle_t *handle,
1347 struct page *page,
1348 unsigned from, unsigned to)
Theodore Ts'ob90197b2015-10-15 10:29:05 -04001349{
1350 unsigned int block_start = 0, block_end;
1351 struct buffer_head *head, *bh;
1352
1353 bh = head = page_buffers(page);
1354 do {
1355 block_end = block_start + bh->b_size;
1356 if (buffer_new(bh)) {
1357 if (block_end > from && block_start < to) {
1358 if (!PageUptodate(page)) {
1359 unsigned start, size;
1360
1361 start = max(from, block_start);
1362 size = min(to, block_end) - start;
1363
1364 zero_user(page, start, size);
Jan Kara3b136492017-01-27 14:35:38 -05001365 write_end_fn(handle, bh);
Theodore Ts'ob90197b2015-10-15 10:29:05 -04001366 }
1367 clear_buffer_new(bh);
1368 }
1369 }
1370 block_start = block_end;
1371 bh = bh->b_this_page;
1372 } while (bh != head);
1373}
1374
Nick Pigginbfc1af62007-10-16 01:25:05 -07001375static int ext4_journalled_write_end(struct file *file,
Theodore Ts'ode9a55b2009-06-14 17:45:34 -04001376 struct address_space *mapping,
1377 loff_t pos, unsigned len, unsigned copied,
1378 struct page *page, void *fsdata)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001379{
Mingming Cao617ba132006-10-11 01:20:53 -07001380 handle_t *handle = ext4_journal_current_handle();
Nick Pigginbfc1af62007-10-16 01:25:05 -07001381 struct inode *inode = mapping->host;
Xiaoguang Wang05726392015-02-12 23:00:17 -05001382 loff_t old_size = inode->i_size;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001383 int ret = 0, ret2;
1384 int partial = 0;
Nick Pigginbfc1af62007-10-16 01:25:05 -07001385 unsigned from, to;
Dmitry Monakhov4631dbf2014-08-23 17:48:28 -04001386 int size_changed = 0;
Eric Biggersc93d8f82019-07-22 09:26:24 -07001387 bool verity = ext4_verity_in_progress(inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001388
Theodore Ts'o9bffad12009-06-17 11:48:11 -04001389 trace_ext4_journalled_write_end(inode, pos, len, copied);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001390 from = pos & (PAGE_SIZE - 1);
Nick Pigginbfc1af62007-10-16 01:25:05 -07001391 to = from + len;
1392
Curt Wohlgemuth441c8502011-08-13 11:25:18 -04001393 BUG_ON(!ext4_handle_valid(handle));
1394
Zhang Yi6984aef2021-07-16 20:20:23 +08001395 if (ext4_has_inline_data(inode))
1396 return ext4_write_inline_data_end(inode, pos, len, copied, page);
1397
1398 if (unlikely(copied < len) && !PageUptodate(page)) {
Jan Kara3b136492017-01-27 14:35:38 -05001399 copied = 0;
1400 ext4_journalled_zero_new_buffers(handle, page, from, to);
1401 } else {
1402 if (unlikely(copied < len))
1403 ext4_journalled_zero_new_buffers(handle, page,
1404 from + copied, to);
Tao Ma3fdcfb62012-12-10 14:05:57 -05001405 ret = ext4_walk_page_buffers(handle, page_buffers(page), from,
Jan Kara3b136492017-01-27 14:35:38 -05001406 from + copied, &partial,
1407 write_end_fn);
Tao Ma3fdcfb62012-12-10 14:05:57 -05001408 if (!partial)
1409 SetPageUptodate(page);
1410 }
Eric Biggersc93d8f82019-07-22 09:26:24 -07001411 if (!verity)
1412 size_changed = ext4_update_inode_size(inode, pos + copied);
Theodore Ts'o19f5fb72010-01-24 14:34:07 -05001413 ext4_set_inode_state(inode, EXT4_STATE_JDATA);
Jan Kara2d859db2011-07-26 09:07:11 -04001414 EXT4_I(inode)->i_datasync_tid = handle->h_transaction->t_tid;
Dmitry Monakhov4631dbf2014-08-23 17:48:28 -04001415 unlock_page(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001416 put_page(page);
Dmitry Monakhov4631dbf2014-08-23 17:48:28 -04001417
Eric Biggersc93d8f82019-07-22 09:26:24 -07001418 if (old_size < pos && !verity)
Xiaoguang Wang05726392015-02-12 23:00:17 -05001419 pagecache_isize_extended(inode, old_size, pos);
1420
Zhang Yi6984aef2021-07-16 20:20:23 +08001421 if (size_changed) {
Mingming Cao617ba132006-10-11 01:20:53 -07001422 ret2 = ext4_mark_inode_dirty(handle, inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001423 if (!ret)
1424 ret = ret2;
1425 }
Nick Pigginbfc1af62007-10-16 01:25:05 -07001426
Eric Biggersc93d8f82019-07-22 09:26:24 -07001427 if (pos + len > inode->i_size && !verity && ext4_can_truncate(inode))
Aneesh Kumar K.Vf8514082009-06-05 00:56:49 -04001428 /* if we have allocated more blocks and copied
1429 * less. We will have blocks allocated outside
1430 * inode->i_size. So truncate them
1431 */
1432 ext4_orphan_add(handle, inode);
1433
Mingming Cao617ba132006-10-11 01:20:53 -07001434 ret2 = ext4_journal_stop(handle);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001435 if (!ret)
1436 ret = ret2;
Eric Biggersc93d8f82019-07-22 09:26:24 -07001437 if (pos + len > inode->i_size && !verity) {
Jan Karab9a42072009-12-08 21:24:33 -05001438 ext4_truncate_failed_write(inode);
Theodore Ts'ode9a55b2009-06-14 17:45:34 -04001439 /*
Jan Karaffacfa72009-07-13 16:22:22 -04001440 * If truncate failed early the inode might still be
Aneesh Kumar K.Vf8514082009-06-05 00:56:49 -04001441 * on the orphan list; we need to make sure the inode
1442 * is removed from the orphan list in that case.
1443 */
1444 if (inode->i_nlink)
1445 ext4_orphan_del(NULL, inode);
1446 }
Nick Pigginbfc1af62007-10-16 01:25:05 -07001447
1448 return ret ? ret : copied;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001449}
Mingming Caod2a17632008-07-14 17:52:37 -04001450
Theodore Ts'o9d0be502010-01-01 02:41:30 -05001451/*
Eric Whitneyc27e43a2015-06-21 21:37:05 -04001452 * Reserve space for a single cluster
Theodore Ts'o9d0be502010-01-01 02:41:30 -05001453 */
Eric Whitneyc27e43a2015-06-21 21:37:05 -04001454static int ext4_da_reserve_space(struct inode *inode)
Mingming Caod2a17632008-07-14 17:52:37 -04001455{
Mingming Cao60e58e02009-01-22 18:13:05 +01001456 struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb);
Theodore Ts'o0637c6f2009-12-30 14:20:45 -05001457 struct ext4_inode_info *ei = EXT4_I(inode);
Christoph Hellwig5dd40562010-03-03 09:05:00 -05001458 int ret;
Mingming Caod2a17632008-07-14 17:52:37 -04001459
Mingming Cao60e58e02009-01-22 18:13:05 +01001460 /*
Eric Sandeen72b8ab92010-05-16 11:00:00 -04001461 * We will charge metadata quota at writeout time; this saves
1462 * us from metadata over-estimation, though we may go over by
1463 * a small amount in the end. Here we just reserve for data.
Mingming Cao60e58e02009-01-22 18:13:05 +01001464 */
Aditya Kali7b415bf2011-09-09 19:04:51 -04001465 ret = dquot_reserve_block(inode, EXT4_C2B(sbi, 1));
Christoph Hellwig5dd40562010-03-03 09:05:00 -05001466 if (ret)
1467 return ret;
Theodore Ts'o03179fe2012-07-23 00:00:20 -04001468
Theodore Ts'o03179fe2012-07-23 00:00:20 -04001469 spin_lock(&ei->i_block_reservation_lock);
Theodore Ts'o71d4f7d2014-07-15 06:02:38 -04001470 if (ext4_claim_free_clusters(sbi, 1, 0)) {
Theodore Ts'o03179fe2012-07-23 00:00:20 -04001471 spin_unlock(&ei->i_block_reservation_lock);
Theodore Ts'o03179fe2012-07-23 00:00:20 -04001472 dquot_release_reservation_block(inode, EXT4_C2B(sbi, 1));
Mingming Caod2a17632008-07-14 17:52:37 -04001473 return -ENOSPC;
1474 }
Theodore Ts'o9d0be502010-01-01 02:41:30 -05001475 ei->i_reserved_data_blocks++;
Eric Whitneyc27e43a2015-06-21 21:37:05 -04001476 trace_ext4_da_reserve_space(inode);
Theodore Ts'o0637c6f2009-12-30 14:20:45 -05001477 spin_unlock(&ei->i_block_reservation_lock);
Dmitry Monakhov39bc6802009-12-10 16:36:27 +00001478
Mingming Caod2a17632008-07-14 17:52:37 -04001479 return 0; /* success */
1480}
1481
Eric Whitneyf4567672018-10-01 14:33:24 -04001482void ext4_da_release_space(struct inode *inode, int to_free)
Mingming Caod2a17632008-07-14 17:52:37 -04001483{
1484 struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb);
Theodore Ts'o0637c6f2009-12-30 14:20:45 -05001485 struct ext4_inode_info *ei = EXT4_I(inode);
Mingming Caod2a17632008-07-14 17:52:37 -04001486
Mingming Caocd213222008-08-19 22:16:59 -04001487 if (!to_free)
1488 return; /* Nothing to release, exit */
1489
Mingming Caod2a17632008-07-14 17:52:37 -04001490 spin_lock(&EXT4_I(inode)->i_block_reservation_lock);
Mingming Caocd213222008-08-19 22:16:59 -04001491
Li Zefan5a58ec872010-05-17 02:00:00 -04001492 trace_ext4_da_release_space(inode, to_free);
Theodore Ts'o0637c6f2009-12-30 14:20:45 -05001493 if (unlikely(to_free > ei->i_reserved_data_blocks)) {
Mingming Caocd213222008-08-19 22:16:59 -04001494 /*
Theodore Ts'o0637c6f2009-12-30 14:20:45 -05001495 * if there aren't enough reserved blocks, then the
1496 * counter is messed up somewhere. Since this
1497 * function is called from invalidate page, it's
1498 * harmless to return without any action.
Mingming Caocd213222008-08-19 22:16:59 -04001499 */
Theodore Ts'o8de5c322013-02-14 15:11:41 -05001500 ext4_warning(inode->i_sb, "ext4_da_release_space: "
Theodore Ts'o0637c6f2009-12-30 14:20:45 -05001501 "ino %lu, to_free %d with only %d reserved "
Theodore Ts'o1084f252012-03-19 23:13:43 -04001502 "data blocks", inode->i_ino, to_free,
Theodore Ts'o0637c6f2009-12-30 14:20:45 -05001503 ei->i_reserved_data_blocks);
1504 WARN_ON(1);
1505 to_free = ei->i_reserved_data_blocks;
1506 }
1507 ei->i_reserved_data_blocks -= to_free;
1508
Eric Sandeen72b8ab92010-05-16 11:00:00 -04001509 /* update fs dirty data blocks counter */
Theodore Ts'o57042652011-09-09 18:56:51 -04001510 percpu_counter_sub(&sbi->s_dirtyclusters_counter, to_free);
Mingming Caod2a17632008-07-14 17:52:37 -04001511
Mingming Caod2a17632008-07-14 17:52:37 -04001512 spin_unlock(&EXT4_I(inode)->i_block_reservation_lock);
Mingming Cao60e58e02009-01-22 18:13:05 +01001513
Aditya Kali7b415bf2011-09-09 19:04:51 -04001514 dquot_release_reservation_block(inode, EXT4_C2B(sbi, to_free));
Mingming Caod2a17632008-07-14 17:52:37 -04001515}
1516
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001517/*
Alex Tomas64769242008-07-11 19:27:31 -04001518 * Delayed allocation stuff
1519 */
1520
Jan Kara4e7ea812013-06-04 13:17:40 -04001521struct mpage_da_data {
1522 struct inode *inode;
1523 struct writeback_control *wbc;
Jan Kara6b523df2013-06-04 13:21:11 -04001524
Jan Kara4e7ea812013-06-04 13:17:40 -04001525 pgoff_t first_page; /* The first page to write */
1526 pgoff_t next_page; /* Current page to examine */
1527 pgoff_t last_page; /* Last page to examine */
Aneesh Kumar K.V791b7f02009-01-05 21:50:43 -05001528 /*
Jan Kara4e7ea812013-06-04 13:17:40 -04001529 * Extent to map - this can be after first_page because that can be
1530 * fully mapped. We somewhat abuse m_flags to store whether the extent
1531 * is delalloc or unwritten.
Aneesh Kumar K.V791b7f02009-01-05 21:50:43 -05001532 */
Jan Kara4e7ea812013-06-04 13:17:40 -04001533 struct ext4_map_blocks map;
1534 struct ext4_io_submit io_submit; /* IO submission data */
Jan Karadddbd6a2017-04-30 18:29:10 -04001535 unsigned int do_map:1;
Jan Kara6b8ed622020-05-25 10:12:15 +02001536 unsigned int scanned_until_end:1;
Jan Kara4e7ea812013-06-04 13:17:40 -04001537};
Alex Tomas64769242008-07-11 19:27:31 -04001538
Jan Kara4e7ea812013-06-04 13:17:40 -04001539static void mpage_release_unused_pages(struct mpage_da_data *mpd,
1540 bool invalidate)
Aneesh Kumar K.Vc4a0c462008-08-19 21:08:18 -04001541{
1542 int nr_pages, i;
1543 pgoff_t index, end;
1544 struct pagevec pvec;
1545 struct inode *inode = mpd->inode;
1546 struct address_space *mapping = inode->i_mapping;
Jan Kara4e7ea812013-06-04 13:17:40 -04001547
1548 /* This is necessary when next_page == 0. */
1549 if (mpd->first_page >= mpd->next_page)
1550 return;
Aneesh Kumar K.Vc4a0c462008-08-19 21:08:18 -04001551
Jan Kara6b8ed622020-05-25 10:12:15 +02001552 mpd->scanned_until_end = 0;
Curt Wohlgemuthc7f59382011-02-26 12:27:52 -05001553 index = mpd->first_page;
1554 end = mpd->next_page - 1;
Jan Kara4e7ea812013-06-04 13:17:40 -04001555 if (invalidate) {
1556 ext4_lblk_t start, last;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001557 start = index << (PAGE_SHIFT - inode->i_blkbits);
1558 last = end << (PAGE_SHIFT - inode->i_blkbits);
Jan Kara4e7ea812013-06-04 13:17:40 -04001559 ext4_es_remove_extent(inode, start, last - start + 1);
1560 }
Zheng Liu51865fd2012-11-08 21:57:32 -05001561
Mel Gorman86679822017-11-15 17:37:52 -08001562 pagevec_init(&pvec);
Aneesh Kumar K.Vc4a0c462008-08-19 21:08:18 -04001563 while (index <= end) {
Jan Kara397162f2017-09-06 16:21:43 -07001564 nr_pages = pagevec_lookup_range(&pvec, mapping, &index, end);
Aneesh Kumar K.Vc4a0c462008-08-19 21:08:18 -04001565 if (nr_pages == 0)
1566 break;
1567 for (i = 0; i < nr_pages; i++) {
1568 struct page *page = pvec.pages[i];
Jan Kara2b85a612017-09-06 16:21:30 -07001569
Aneesh Kumar K.Vc4a0c462008-08-19 21:08:18 -04001570 BUG_ON(!PageLocked(page));
1571 BUG_ON(PageWriteback(page));
Jan Kara4e7ea812013-06-04 13:17:40 -04001572 if (invalidate) {
wangguang4e800c02016-09-15 11:32:46 -04001573 if (page_mapped(page))
1574 clear_page_dirty_for_io(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001575 block_invalidatepage(page, 0, PAGE_SIZE);
Jan Kara4e7ea812013-06-04 13:17:40 -04001576 ClearPageUptodate(page);
1577 }
Aneesh Kumar K.Vc4a0c462008-08-19 21:08:18 -04001578 unlock_page(page);
1579 }
Jan Kara9b1d09982010-03-03 16:19:32 -05001580 pagevec_release(&pvec);
Aneesh Kumar K.Vc4a0c462008-08-19 21:08:18 -04001581 }
Aneesh Kumar K.Vc4a0c462008-08-19 21:08:18 -04001582}
1583
Aneesh Kumar K.Vdf222912008-09-08 23:05:34 -04001584static void ext4_print_free_blocks(struct inode *inode)
1585{
1586 struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb);
Theodore Ts'o92b97812012-03-19 23:41:49 -04001587 struct super_block *sb = inode->i_sb;
Lukas Czernerf78ee70d2013-04-03 23:33:30 -04001588 struct ext4_inode_info *ei = EXT4_I(inode);
Theodore Ts'o92b97812012-03-19 23:41:49 -04001589
1590 ext4_msg(sb, KERN_CRIT, "Total free blocks count %lld",
Theodore Ts'o5dee5432011-09-09 19:10:51 -04001591 EXT4_C2B(EXT4_SB(inode->i_sb),
Lukas Czernerf78ee70d2013-04-03 23:33:30 -04001592 ext4_count_free_clusters(sb)));
Theodore Ts'o92b97812012-03-19 23:41:49 -04001593 ext4_msg(sb, KERN_CRIT, "Free/Dirty block details");
1594 ext4_msg(sb, KERN_CRIT, "free_blocks=%lld",
Lukas Czernerf78ee70d2013-04-03 23:33:30 -04001595 (long long) EXT4_C2B(EXT4_SB(sb),
Theodore Ts'o57042652011-09-09 18:56:51 -04001596 percpu_counter_sum(&sbi->s_freeclusters_counter)));
Theodore Ts'o92b97812012-03-19 23:41:49 -04001597 ext4_msg(sb, KERN_CRIT, "dirty_blocks=%lld",
Lukas Czernerf78ee70d2013-04-03 23:33:30 -04001598 (long long) EXT4_C2B(EXT4_SB(sb),
Aditya Kali7b415bf2011-09-09 19:04:51 -04001599 percpu_counter_sum(&sbi->s_dirtyclusters_counter)));
Theodore Ts'o92b97812012-03-19 23:41:49 -04001600 ext4_msg(sb, KERN_CRIT, "Block reservation details");
1601 ext4_msg(sb, KERN_CRIT, "i_reserved_data_blocks=%u",
Lukas Czernerf78ee70d2013-04-03 23:33:30 -04001602 ei->i_reserved_data_blocks);
Aneesh Kumar K.Vdf222912008-09-08 23:05:34 -04001603 return;
1604}
1605
Aneesh Kumar K.Vc364b222009-06-14 17:57:10 -04001606static int ext4_bh_delay_or_unwritten(handle_t *handle, struct buffer_head *bh)
Aneesh Kumar K.V29fa89d2009-05-12 16:30:27 -04001607{
Aneesh Kumar K.Vc364b222009-06-14 17:57:10 -04001608 return (buffer_delay(bh) || buffer_unwritten(bh)) && buffer_dirty(bh);
Aneesh Kumar K.V29fa89d2009-05-12 16:30:27 -04001609}
1610
Alex Tomas64769242008-07-11 19:27:31 -04001611/*
Eric Whitney0b02f4c2018-10-01 14:19:37 -04001612 * ext4_insert_delayed_block - adds a delayed block to the extents status
1613 * tree, incrementing the reserved cluster/block
1614 * count or making a pending reservation
1615 * where needed
1616 *
1617 * @inode - file containing the newly added block
1618 * @lblk - logical block to be added
1619 *
1620 * Returns 0 on success, negative error code on failure.
1621 */
1622static int ext4_insert_delayed_block(struct inode *inode, ext4_lblk_t lblk)
1623{
1624 struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb);
1625 int ret;
1626 bool allocated = false;
1627
1628 /*
1629 * If the cluster containing lblk is shared with a delayed,
1630 * written, or unwritten extent in a bigalloc file system, it's
1631 * already been accounted for and does not need to be reserved.
1632 * A pending reservation must be made for the cluster if it's
1633 * shared with a written or unwritten extent and doesn't already
1634 * have one. Written and unwritten extents can be purged from the
1635 * extents status tree if the system is under memory pressure, so
1636 * it's necessary to examine the extent tree if a search of the
1637 * extents status tree doesn't get a match.
1638 */
1639 if (sbi->s_cluster_ratio == 1) {
1640 ret = ext4_da_reserve_space(inode);
1641 if (ret != 0) /* ENOSPC */
1642 goto errout;
1643 } else { /* bigalloc */
1644 if (!ext4_es_scan_clu(inode, &ext4_es_is_delonly, lblk)) {
1645 if (!ext4_es_scan_clu(inode,
1646 &ext4_es_is_mapped, lblk)) {
1647 ret = ext4_clu_mapped(inode,
1648 EXT4_B2C(sbi, lblk));
1649 if (ret < 0)
1650 goto errout;
1651 if (ret == 0) {
1652 ret = ext4_da_reserve_space(inode);
1653 if (ret != 0) /* ENOSPC */
1654 goto errout;
1655 } else {
1656 allocated = true;
1657 }
1658 } else {
1659 allocated = true;
1660 }
1661 }
1662 }
1663
1664 ret = ext4_es_insert_delayed_block(inode, lblk, allocated);
1665
1666errout:
1667 return ret;
1668}
1669
1670/*
Aditya Kali5356f2612011-09-09 19:20:51 -04001671 * This function is grabs code from the very beginning of
1672 * ext4_map_blocks, but assumes that the caller is from delayed write
1673 * time. This function looks up the requested blocks and sets the
1674 * buffer delay bit under the protection of i_data_sem.
1675 */
1676static int ext4_da_map_blocks(struct inode *inode, sector_t iblock,
1677 struct ext4_map_blocks *map,
1678 struct buffer_head *bh)
1679{
Zheng Liud100eef2013-02-18 00:29:59 -05001680 struct extent_status es;
Aditya Kali5356f2612011-09-09 19:20:51 -04001681 int retval;
1682 sector_t invalid_block = ~((sector_t) 0xffff);
Dmitry Monakhov921f2662013-03-10 21:01:03 -04001683#ifdef ES_AGGRESSIVE_TEST
1684 struct ext4_map_blocks orig_map;
1685
1686 memcpy(&orig_map, map, sizeof(*map));
1687#endif
Aditya Kali5356f2612011-09-09 19:20:51 -04001688
1689 if (invalid_block < ext4_blocks_count(EXT4_SB(inode->i_sb)->s_es))
1690 invalid_block = ~0;
1691
1692 map->m_flags = 0;
Ritesh Harjani70aa1552020-05-10 11:54:55 +05301693 ext_debug(inode, "max_blocks %u, logical block %lu\n", map->m_len,
Aditya Kali5356f2612011-09-09 19:20:51 -04001694 (unsigned long) map->m_lblk);
Zheng Liud100eef2013-02-18 00:29:59 -05001695
1696 /* Lookup extent status tree firstly */
Theodore Ts'obb5835e2019-08-11 16:32:41 -04001697 if (ext4_es_lookup_extent(inode, iblock, NULL, &es)) {
Zheng Liud100eef2013-02-18 00:29:59 -05001698 if (ext4_es_is_hole(&es)) {
1699 retval = 0;
Lukas Czernerc8b459f2014-05-12 12:55:07 -04001700 down_read(&EXT4_I(inode)->i_data_sem);
Zheng Liud100eef2013-02-18 00:29:59 -05001701 goto add_delayed;
1702 }
1703
1704 /*
1705 * Delayed extent could be allocated by fallocate.
1706 * So we need to check it.
1707 */
1708 if (ext4_es_is_delayed(&es) && !ext4_es_is_unwritten(&es)) {
1709 map_bh(bh, inode->i_sb, invalid_block);
1710 set_buffer_new(bh);
1711 set_buffer_delay(bh);
1712 return 0;
1713 }
1714
1715 map->m_pblk = ext4_es_pblock(&es) + iblock - es.es_lblk;
1716 retval = es.es_len - (iblock - es.es_lblk);
1717 if (retval > map->m_len)
1718 retval = map->m_len;
1719 map->m_len = retval;
1720 if (ext4_es_is_written(&es))
1721 map->m_flags |= EXT4_MAP_MAPPED;
1722 else if (ext4_es_is_unwritten(&es))
1723 map->m_flags |= EXT4_MAP_UNWRITTEN;
1724 else
Arnd Bergmann1e83bc82019-04-07 12:24:43 -04001725 BUG();
Zheng Liud100eef2013-02-18 00:29:59 -05001726
Dmitry Monakhov921f2662013-03-10 21:01:03 -04001727#ifdef ES_AGGRESSIVE_TEST
1728 ext4_map_blocks_es_recheck(NULL, inode, map, &orig_map, 0);
1729#endif
Zheng Liud100eef2013-02-18 00:29:59 -05001730 return retval;
1731 }
1732
Aditya Kali5356f2612011-09-09 19:20:51 -04001733 /*
1734 * Try to see if we can get the block without requesting a new
1735 * file system block.
1736 */
Lukas Czernerc8b459f2014-05-12 12:55:07 -04001737 down_read(&EXT4_I(inode)->i_data_sem);
Jan Karacbd75842014-11-25 11:41:49 -05001738 if (ext4_has_inline_data(inode))
Tao Ma9c3569b2012-12-10 14:05:57 -05001739 retval = 0;
Jan Karacbd75842014-11-25 11:41:49 -05001740 else if (ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS))
Zheng Liu2f8e0a72014-11-25 11:44:37 -05001741 retval = ext4_ext_map_blocks(NULL, inode, map, 0);
Aditya Kali5356f2612011-09-09 19:20:51 -04001742 else
Zheng Liu2f8e0a72014-11-25 11:44:37 -05001743 retval = ext4_ind_map_blocks(NULL, inode, map, 0);
Aditya Kali5356f2612011-09-09 19:20:51 -04001744
Zheng Liud100eef2013-02-18 00:29:59 -05001745add_delayed:
Aditya Kali5356f2612011-09-09 19:20:51 -04001746 if (retval == 0) {
Zheng Liuf7fec032013-02-18 00:28:47 -05001747 int ret;
Eric Whitneyad431022018-10-01 14:10:39 -04001748
Aditya Kali5356f2612011-09-09 19:20:51 -04001749 /*
1750 * XXX: __block_prepare_write() unmaps passed block,
1751 * is it OK?
1752 */
Aditya Kali5356f2612011-09-09 19:20:51 -04001753
Eric Whitney0b02f4c2018-10-01 14:19:37 -04001754 ret = ext4_insert_delayed_block(inode, map->m_lblk);
1755 if (ret != 0) {
Zheng Liuf7fec032013-02-18 00:28:47 -05001756 retval = ret;
Zheng Liu51865fd2012-11-08 21:57:32 -05001757 goto out_unlock;
Zheng Liuf7fec032013-02-18 00:28:47 -05001758 }
Zheng Liu51865fd2012-11-08 21:57:32 -05001759
Aditya Kali5356f2612011-09-09 19:20:51 -04001760 map_bh(bh, inode->i_sb, invalid_block);
1761 set_buffer_new(bh);
1762 set_buffer_delay(bh);
Zheng Liuf7fec032013-02-18 00:28:47 -05001763 } else if (retval > 0) {
1764 int ret;
Theodore Ts'o3be78c72013-08-16 21:22:41 -04001765 unsigned int status;
Zheng Liuf7fec032013-02-18 00:28:47 -05001766
Zheng Liu44fb851d2013-07-29 12:51:42 -04001767 if (unlikely(retval != map->m_len)) {
1768 ext4_warning(inode->i_sb,
1769 "ES len assertion failed for inode "
1770 "%lu: retval %d != map->m_len %d",
1771 inode->i_ino, retval, map->m_len);
1772 WARN_ON(1);
Dmitry Monakhov921f2662013-03-10 21:01:03 -04001773 }
Dmitry Monakhov921f2662013-03-10 21:01:03 -04001774
Zheng Liuf7fec032013-02-18 00:28:47 -05001775 status = map->m_flags & EXT4_MAP_UNWRITTEN ?
1776 EXTENT_STATUS_UNWRITTEN : EXTENT_STATUS_WRITTEN;
1777 ret = ext4_es_insert_extent(inode, map->m_lblk, map->m_len,
1778 map->m_pblk, status);
1779 if (ret != 0)
1780 retval = ret;
Aditya Kali5356f2612011-09-09 19:20:51 -04001781 }
1782
1783out_unlock:
1784 up_read((&EXT4_I(inode)->i_data_sem));
1785
1786 return retval;
1787}
1788
1789/*
Seunghun Leed91bd2c2014-09-01 22:15:30 -04001790 * This is a special get_block_t callback which is used by
Theodore Ts'ob920c752009-05-14 00:54:29 -04001791 * ext4_da_write_begin(). It will either return mapped block or
1792 * reserve space for a single block.
Aneesh Kumar K.V29fa89d2009-05-12 16:30:27 -04001793 *
1794 * For delayed buffer_head we have BH_Mapped, BH_New, BH_Delay set.
1795 * We also have b_blocknr = -1 and b_bdev initialized properly
1796 *
1797 * For unwritten buffer_head we have BH_Mapped, BH_New, BH_Unwritten set.
1798 * We also have b_blocknr = physicalblock mapping unwritten extent and b_bdev
1799 * initialized properly.
Alex Tomas64769242008-07-11 19:27:31 -04001800 */
Tao Ma9c3569b2012-12-10 14:05:57 -05001801int ext4_da_get_block_prep(struct inode *inode, sector_t iblock,
1802 struct buffer_head *bh, int create)
Alex Tomas64769242008-07-11 19:27:31 -04001803{
Theodore Ts'o2ed88682010-05-16 20:00:00 -04001804 struct ext4_map_blocks map;
Alex Tomas64769242008-07-11 19:27:31 -04001805 int ret = 0;
1806
1807 BUG_ON(create == 0);
Theodore Ts'o2ed88682010-05-16 20:00:00 -04001808 BUG_ON(bh->b_size != inode->i_sb->s_blocksize);
1809
1810 map.m_lblk = iblock;
1811 map.m_len = 1;
Alex Tomas64769242008-07-11 19:27:31 -04001812
1813 /*
1814 * first, we need to know whether the block is allocated already
1815 * preallocated blocks are unmapped but should treated
1816 * the same as allocated blocks.
1817 */
Aditya Kali5356f2612011-09-09 19:20:51 -04001818 ret = ext4_da_map_blocks(inode, iblock, &map, bh);
1819 if (ret <= 0)
Theodore Ts'o2ed88682010-05-16 20:00:00 -04001820 return ret;
Alex Tomas64769242008-07-11 19:27:31 -04001821
Theodore Ts'o2ed88682010-05-16 20:00:00 -04001822 map_bh(bh, inode->i_sb, map.m_pblk);
Jan Karaed8ad832016-02-19 00:18:25 -05001823 ext4_update_bh_state(bh, map.m_flags);
Theodore Ts'o2ed88682010-05-16 20:00:00 -04001824
1825 if (buffer_unwritten(bh)) {
1826 /* A delayed write to unwritten bh should be marked
1827 * new and mapped. Mapped ensures that we don't do
1828 * get_block multiple times when we write to the same
1829 * offset and new ensures that we do proper zero out
1830 * for partial write.
1831 */
1832 set_buffer_new(bh);
Theodore Ts'oc8205632011-04-10 22:30:07 -04001833 set_buffer_mapped(bh);
Theodore Ts'o2ed88682010-05-16 20:00:00 -04001834 }
1835 return 0;
Alex Tomas64769242008-07-11 19:27:31 -04001836}
Mingming Cao61628a32008-07-11 19:27:31 -04001837
Aneesh Kumar K.V62e086b2009-06-14 17:59:34 -04001838static int bget_one(handle_t *handle, struct buffer_head *bh)
1839{
1840 get_bh(bh);
1841 return 0;
1842}
1843
1844static int bput_one(handle_t *handle, struct buffer_head *bh)
1845{
1846 put_bh(bh);
1847 return 0;
1848}
1849
1850static int __ext4_journalled_writepage(struct page *page,
Aneesh Kumar K.V62e086b2009-06-14 17:59:34 -04001851 unsigned int len)
1852{
1853 struct address_space *mapping = page->mapping;
1854 struct inode *inode = mapping->host;
Tao Ma3fdcfb62012-12-10 14:05:57 -05001855 struct buffer_head *page_bufs = NULL;
Aneesh Kumar K.V62e086b2009-06-14 17:59:34 -04001856 handle_t *handle = NULL;
Tao Ma3fdcfb62012-12-10 14:05:57 -05001857 int ret = 0, err = 0;
1858 int inline_data = ext4_has_inline_data(inode);
1859 struct buffer_head *inode_bh = NULL;
Aneesh Kumar K.V62e086b2009-06-14 17:59:34 -04001860
Theodore Ts'ocb20d512010-10-27 21:30:09 -04001861 ClearPageChecked(page);
Tao Ma3fdcfb62012-12-10 14:05:57 -05001862
1863 if (inline_data) {
1864 BUG_ON(page->index != 0);
1865 BUG_ON(len > ext4_get_max_inline_size(inode));
1866 inode_bh = ext4_journalled_write_inline_data(inode, len, page);
1867 if (inode_bh == NULL)
1868 goto out;
1869 } else {
1870 page_bufs = page_buffers(page);
1871 if (!page_bufs) {
1872 BUG();
1873 goto out;
1874 }
1875 ext4_walk_page_buffers(handle, page_bufs, 0, len,
1876 NULL, bget_one);
1877 }
Theodore Ts'obdf96832015-06-12 23:45:33 -04001878 /*
1879 * We need to release the page lock before we start the
1880 * journal, so grab a reference so the page won't disappear
1881 * out from under us.
1882 */
1883 get_page(page);
Aneesh Kumar K.V62e086b2009-06-14 17:59:34 -04001884 unlock_page(page);
1885
Theodore Ts'o9924a922013-02-08 21:59:22 -05001886 handle = ext4_journal_start(inode, EXT4_HT_WRITE_PAGE,
1887 ext4_writepage_trans_blocks(inode));
Aneesh Kumar K.V62e086b2009-06-14 17:59:34 -04001888 if (IS_ERR(handle)) {
1889 ret = PTR_ERR(handle);
Theodore Ts'obdf96832015-06-12 23:45:33 -04001890 put_page(page);
1891 goto out_no_pagelock;
1892 }
1893 BUG_ON(!ext4_handle_valid(handle));
1894
1895 lock_page(page);
1896 put_page(page);
1897 if (page->mapping != mapping) {
1898 /* The page got truncated from under us */
1899 ext4_journal_stop(handle);
1900 ret = 0;
Aneesh Kumar K.V62e086b2009-06-14 17:59:34 -04001901 goto out;
1902 }
1903
Tao Ma3fdcfb62012-12-10 14:05:57 -05001904 if (inline_data) {
Theodore Ts'o362eca72018-07-10 01:07:43 -04001905 ret = ext4_mark_inode_dirty(handle, inode);
Tao Ma3fdcfb62012-12-10 14:05:57 -05001906 } else {
1907 ret = ext4_walk_page_buffers(handle, page_bufs, 0, len, NULL,
1908 do_journal_get_write_access);
1909
1910 err = ext4_walk_page_buffers(handle, page_bufs, 0, len, NULL,
1911 write_end_fn);
1912 }
Aneesh Kumar K.V62e086b2009-06-14 17:59:34 -04001913 if (ret == 0)
1914 ret = err;
Jan Karab5b18162020-10-27 14:27:51 +01001915 err = ext4_jbd2_inode_add_write(handle, inode, page_offset(page), len);
Mauricio Faria de Oliveiraafb585a2020-10-05 21:48:41 -03001916 if (ret == 0)
1917 ret = err;
Jan Kara2d859db2011-07-26 09:07:11 -04001918 EXT4_I(inode)->i_datasync_tid = handle->h_transaction->t_tid;
Aneesh Kumar K.V62e086b2009-06-14 17:59:34 -04001919 err = ext4_journal_stop(handle);
1920 if (!ret)
1921 ret = err;
1922
Theodore Ts'o19f5fb72010-01-24 14:34:07 -05001923 ext4_set_inode_state(inode, EXT4_STATE_JDATA);
Aneesh Kumar K.V62e086b2009-06-14 17:59:34 -04001924out:
Theodore Ts'obdf96832015-06-12 23:45:33 -04001925 unlock_page(page);
1926out_no_pagelock:
Zhaolong Zhangc915fb82021-03-02 17:42:31 +08001927 if (!inline_data && page_bufs)
1928 ext4_walk_page_buffers(NULL, page_bufs, 0, len,
1929 NULL, bput_one);
Tao Ma3fdcfb62012-12-10 14:05:57 -05001930 brelse(inode_bh);
Aneesh Kumar K.V62e086b2009-06-14 17:59:34 -04001931 return ret;
1932}
1933
Mingming Cao61628a32008-07-11 19:27:31 -04001934/*
Aneesh Kumar K.V43ce1d22009-06-14 17:58:45 -04001935 * Note that we don't need to start a transaction unless we're journaling data
1936 * because we should have holes filled from ext4_page_mkwrite(). We even don't
1937 * need to file the inode to the transaction's list in ordered mode because if
1938 * we are writing back data added by write(), the inode is already there and if
Lucas De Marchi25985ed2011-03-30 22:57:33 -03001939 * we are writing back data modified via mmap(), no one guarantees in which
Aneesh Kumar K.V43ce1d22009-06-14 17:58:45 -04001940 * transaction the data will hit the disk. In case we are journaling data, we
1941 * cannot start transaction directly because transaction start ranks above page
1942 * lock so we have to do some magic.
1943 *
Theodore Ts'ob920c752009-05-14 00:54:29 -04001944 * This function can get called via...
Theodore Ts'o20970ba2013-06-06 14:00:46 -04001945 * - ext4_writepages after taking page lock (have journal handle)
Theodore Ts'ob920c752009-05-14 00:54:29 -04001946 * - journal_submit_inode_data_buffers (no journal handle)
Artem Bityutskiyf6463b02012-07-25 18:12:04 +03001947 * - shrink_page_list via the kswapd/direct reclaim (no journal handle)
Theodore Ts'ob920c752009-05-14 00:54:29 -04001948 * - grab_page_cache when doing write_begin (have journal handle)
Aneesh Kumar K.V43ce1d22009-06-14 17:58:45 -04001949 *
1950 * We don't do any block allocation in this function. If we have page with
1951 * multiple blocks we need to write those buffer_heads that are mapped. This
1952 * is important for mmaped based write. So if we do with blocksize 1K
1953 * truncate(f, 1024);
1954 * a = mmap(f, 0, 4096);
1955 * a[0] = 'a';
1956 * truncate(f, 4096);
1957 * we have in the page first buffer_head mapped via page_mkwrite call back
Paul Bolle90802ed2011-12-05 13:00:34 +01001958 * but other buffer_heads would be unmapped but dirty (dirty done via the
Aneesh Kumar K.V43ce1d22009-06-14 17:58:45 -04001959 * do_wp_page). So writepage should write the first block. If we modify
1960 * the mmap area beyond 1024 we will again get a page_fault and the
1961 * page_mkwrite callback will do the block allocation and mark the
1962 * buffer_heads mapped.
1963 *
1964 * We redirty the page if we have any buffer_heads that is either delay or
1965 * unwritten in the page.
1966 *
1967 * We can get recursively called as show below.
1968 *
1969 * ext4_writepage() -> kmalloc() -> __alloc_pages() -> page_launder() ->
1970 * ext4_writepage()
1971 *
1972 * But since we don't do any block allocation we should not deadlock.
1973 * Page also have the dirty flag cleared so we don't get recurive page_lock.
Mingming Cao61628a32008-07-11 19:27:31 -04001974 */
Aneesh Kumar K.V43ce1d22009-06-14 17:58:45 -04001975static int ext4_writepage(struct page *page,
Aneesh Kumar K.V62e086b2009-06-14 17:59:34 -04001976 struct writeback_control *wbc)
Alex Tomas64769242008-07-11 19:27:31 -04001977{
Jan Karaf8bec372013-01-28 12:55:08 -05001978 int ret = 0;
Mingming Cao61628a32008-07-11 19:27:31 -04001979 loff_t size;
Theodore Ts'o498e5f22008-11-05 00:14:04 -05001980 unsigned int len;
Jiaying Zhang744692d2010-03-04 16:14:02 -05001981 struct buffer_head *page_bufs = NULL;
Mingming Cao61628a32008-07-11 19:27:31 -04001982 struct inode *inode = page->mapping->host;
Jan Kara36ade452013-01-28 09:30:52 -05001983 struct ext4_io_submit io_submit;
Namjae Jeon1c8349a2014-05-12 08:12:25 -04001984 bool keep_towrite = false;
Alex Tomas64769242008-07-11 19:27:31 -04001985
Theodore Ts'o0db1ff22017-02-05 01:28:48 -05001986 if (unlikely(ext4_forced_shutdown(EXT4_SB(inode->i_sb)))) {
yangerkunc2a559b2020-02-26 12:10:02 +08001987 inode->i_mapping->a_ops->invalidatepage(page, 0, PAGE_SIZE);
Theodore Ts'o0db1ff22017-02-05 01:28:48 -05001988 unlock_page(page);
1989 return -EIO;
1990 }
1991
Lukas Czernera9c667f2011-06-06 09:51:52 -04001992 trace_ext4_writepage(page);
Aneesh Kumar K.Vf0e6c982008-07-11 19:27:31 -04001993 size = i_size_read(inode);
Eric Biggersc93d8f82019-07-22 09:26:24 -07001994 if (page->index == size >> PAGE_SHIFT &&
1995 !ext4_verity_in_progress(inode))
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001996 len = size & ~PAGE_MASK;
Aneesh Kumar K.Vf0e6c982008-07-11 19:27:31 -04001997 else
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001998 len = PAGE_SIZE;
Alex Tomas64769242008-07-11 19:27:31 -04001999
Theodore Ts'oa42afc52010-10-27 21:30:09 -04002000 page_bufs = page_buffers(page);
Aneesh Kumar K.Vc364b222009-06-14 17:57:10 -04002001 /*
Jan Karafe386132013-01-28 21:06:42 -05002002 * We cannot do block allocation or other extent handling in this
2003 * function. If there are buffers needing that, we have to redirty
2004 * the page. But we may reach here when we do a journal commit via
2005 * journal_submit_inode_data_buffers() and in that case we must write
2006 * allocated buffers to achieve data=ordered mode guarantees.
Theodore Ts'occcd1472015-10-03 10:49:23 -04002007 *
2008 * Also, if there is only one buffer per page (the fs block
2009 * size == the page size), if one buffer needs block
2010 * allocation or needs to modify the extent tree to clear the
2011 * unwritten flag, we know that the page can't be written at
2012 * all, so we might as well refuse the write immediately.
2013 * Unfortunately if the block size != page size, we can't as
2014 * easily detect this case using ext4_walk_page_buffers(), but
2015 * for the extremely common case, this is an optimization that
2016 * skips a useless round trip through ext4_bio_write_page().
Aneesh Kumar K.Vcd1aac32008-07-11 19:27:31 -04002017 */
Tao Maf19d5872012-12-10 14:05:51 -05002018 if (ext4_walk_page_buffers(NULL, page_bufs, 0, len, NULL,
2019 ext4_bh_delay_or_unwritten)) {
Jan Karaf8bec372013-01-28 12:55:08 -05002020 redirty_page_for_writepage(wbc, page);
Theodore Ts'occcd1472015-10-03 10:49:23 -04002021 if ((current->flags & PF_MEMALLOC) ||
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002022 (inode->i_sb->s_blocksize == PAGE_SIZE)) {
Jan Karafe386132013-01-28 21:06:42 -05002023 /*
2024 * For memory cleaning there's no point in writing only
2025 * some buffers. So just bail out. Warn if we came here
2026 * from direct reclaim.
2027 */
2028 WARN_ON_ONCE((current->flags & (PF_MEMALLOC|PF_KSWAPD))
2029 == PF_MEMALLOC);
Aneesh Kumar K.Vf0e6c982008-07-11 19:27:31 -04002030 unlock_page(page);
2031 return 0;
2032 }
Namjae Jeon1c8349a2014-05-12 08:12:25 -04002033 keep_towrite = true;
Theodore Ts'oa42afc52010-10-27 21:30:09 -04002034 }
Alex Tomas64769242008-07-11 19:27:31 -04002035
Theodore Ts'ocb20d512010-10-27 21:30:09 -04002036 if (PageChecked(page) && ext4_should_journal_data(inode))
Aneesh Kumar K.V43ce1d22009-06-14 17:58:45 -04002037 /*
2038 * It's mmapped pagecache. Add buffers and journal it. There
2039 * doesn't seem much point in redirtying the page here.
2040 */
Wu Fengguang3f0ca302009-11-24 11:15:44 -05002041 return __ext4_journalled_writepage(page, len);
Aneesh Kumar K.V43ce1d22009-06-14 17:58:45 -04002042
Jan Kara97a851e2013-06-04 11:58:58 -04002043 ext4_io_submit_init(&io_submit, wbc);
2044 io_submit.io_end = ext4_init_io_end(inode, GFP_NOFS);
2045 if (!io_submit.io_end) {
2046 redirty_page_for_writepage(wbc, page);
2047 unlock_page(page);
2048 return -ENOMEM;
2049 }
Lei Chenbe993932020-12-11 14:54:24 +08002050 ret = ext4_bio_write_page(&io_submit, page, len, keep_towrite);
Jan Kara36ade452013-01-28 09:30:52 -05002051 ext4_io_submit(&io_submit);
Jan Kara97a851e2013-06-04 11:58:58 -04002052 /* Drop io_end reference we got from init */
2053 ext4_put_io_end_defer(io_submit.io_end);
Alex Tomas64769242008-07-11 19:27:31 -04002054 return ret;
2055}
2056
Jan Kara5f1132b2013-08-17 10:02:33 -04002057static int mpage_submit_page(struct mpage_da_data *mpd, struct page *page)
2058{
2059 int len;
Jan Karaa056bda2017-05-26 17:45:45 -04002060 loff_t size;
Jan Kara5f1132b2013-08-17 10:02:33 -04002061 int err;
2062
2063 BUG_ON(page->index != mpd->first_page);
Jan Karaa056bda2017-05-26 17:45:45 -04002064 clear_page_dirty_for_io(page);
2065 /*
2066 * We have to be very careful here! Nothing protects writeback path
2067 * against i_size changes and the page can be writeably mapped into
2068 * page tables. So an application can be growing i_size and writing
2069 * data through mmap while writeback runs. clear_page_dirty_for_io()
2070 * write-protects our page in page tables and the page cannot get
2071 * written to again until we release page lock. So only after
2072 * clear_page_dirty_for_io() we are safe to sample i_size for
2073 * ext4_bio_write_page() to zero-out tail of the written page. We rely
2074 * on the barrier provided by TestClearPageDirty in
2075 * clear_page_dirty_for_io() to make sure i_size is really sampled only
2076 * after page tables are updated.
2077 */
2078 size = i_size_read(mpd->inode);
Eric Biggersc93d8f82019-07-22 09:26:24 -07002079 if (page->index == size >> PAGE_SHIFT &&
2080 !ext4_verity_in_progress(mpd->inode))
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002081 len = size & ~PAGE_MASK;
Jan Kara5f1132b2013-08-17 10:02:33 -04002082 else
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002083 len = PAGE_SIZE;
Lei Chenbe993932020-12-11 14:54:24 +08002084 err = ext4_bio_write_page(&mpd->io_submit, page, len, false);
Jan Kara5f1132b2013-08-17 10:02:33 -04002085 if (!err)
2086 mpd->wbc->nr_to_write--;
2087 mpd->first_page++;
2088
2089 return err;
2090}
2091
Ritesh Harjani6db07462020-05-10 11:54:51 +05302092#define BH_FLAGS (BIT(BH_Unwritten) | BIT(BH_Delay))
Jan Kara4e7ea812013-06-04 13:17:40 -04002093
Mingming Cao61628a32008-07-11 19:27:31 -04002094/*
Jan Karafffb2732013-06-04 13:01:11 -04002095 * mballoc gives us at most this number of blocks...
2096 * XXX: That seems to be only a limitation of ext4_mb_normalize_request().
Anatol Pomozov70261f52013-08-28 14:40:12 -04002097 * The rest of mballoc seems to handle chunks up to full group size.
Mingming Cao61628a32008-07-11 19:27:31 -04002098 */
Jan Karafffb2732013-06-04 13:01:11 -04002099#define MAX_WRITEPAGES_EXTENT_LEN 2048
Mingming Cao525f4ed2008-08-19 22:15:58 -04002100
Jan Karafffb2732013-06-04 13:01:11 -04002101/*
Jan Kara4e7ea812013-06-04 13:17:40 -04002102 * mpage_add_bh_to_extent - try to add bh to extent of blocks to map
2103 *
2104 * @mpd - extent of blocks
2105 * @lblk - logical number of the block in the file
Jan Kara09930042013-08-17 09:57:56 -04002106 * @bh - buffer head we want to add to the extent
Jan Kara4e7ea812013-06-04 13:17:40 -04002107 *
Jan Kara09930042013-08-17 09:57:56 -04002108 * The function is used to collect contig. blocks in the same state. If the
2109 * buffer doesn't require mapping for writeback and we haven't started the
2110 * extent of buffers to map yet, the function returns 'true' immediately - the
2111 * caller can write the buffer right away. Otherwise the function returns true
2112 * if the block has been added to the extent, false if the block couldn't be
2113 * added.
Jan Kara4e7ea812013-06-04 13:17:40 -04002114 */
Jan Kara09930042013-08-17 09:57:56 -04002115static bool mpage_add_bh_to_extent(struct mpage_da_data *mpd, ext4_lblk_t lblk,
2116 struct buffer_head *bh)
Jan Kara4e7ea812013-06-04 13:17:40 -04002117{
2118 struct ext4_map_blocks *map = &mpd->map;
2119
Jan Kara09930042013-08-17 09:57:56 -04002120 /* Buffer that doesn't need mapping for writeback? */
2121 if (!buffer_dirty(bh) || !buffer_mapped(bh) ||
2122 (!buffer_delay(bh) && !buffer_unwritten(bh))) {
2123 /* So far no extent to map => we write the buffer right away */
2124 if (map->m_len == 0)
2125 return true;
2126 return false;
2127 }
Jan Kara4e7ea812013-06-04 13:17:40 -04002128
2129 /* First block in the extent? */
2130 if (map->m_len == 0) {
Jan Karadddbd6a2017-04-30 18:29:10 -04002131 /* We cannot map unless handle is started... */
2132 if (!mpd->do_map)
2133 return false;
Jan Kara4e7ea812013-06-04 13:17:40 -04002134 map->m_lblk = lblk;
2135 map->m_len = 1;
Jan Kara09930042013-08-17 09:57:56 -04002136 map->m_flags = bh->b_state & BH_FLAGS;
2137 return true;
Jan Kara4e7ea812013-06-04 13:17:40 -04002138 }
2139
Jan Kara09930042013-08-17 09:57:56 -04002140 /* Don't go larger than mballoc is willing to allocate */
2141 if (map->m_len >= MAX_WRITEPAGES_EXTENT_LEN)
2142 return false;
2143
Jan Kara4e7ea812013-06-04 13:17:40 -04002144 /* Can we merge the block to our big extent? */
2145 if (lblk == map->m_lblk + map->m_len &&
Jan Kara09930042013-08-17 09:57:56 -04002146 (bh->b_state & BH_FLAGS) == map->m_flags) {
Jan Kara4e7ea812013-06-04 13:17:40 -04002147 map->m_len++;
Jan Kara09930042013-08-17 09:57:56 -04002148 return true;
Jan Kara4e7ea812013-06-04 13:17:40 -04002149 }
Jan Kara09930042013-08-17 09:57:56 -04002150 return false;
Jan Kara4e7ea812013-06-04 13:17:40 -04002151}
2152
Jan Kara5f1132b2013-08-17 10:02:33 -04002153/*
2154 * mpage_process_page_bufs - submit page buffers for IO or add them to extent
2155 *
2156 * @mpd - extent of blocks for mapping
2157 * @head - the first buffer in the page
2158 * @bh - buffer we should start processing from
2159 * @lblk - logical number of the block in the file corresponding to @bh
2160 *
2161 * Walk through page buffers from @bh upto @head (exclusive) and either submit
2162 * the page for IO if all buffers in this page were mapped and there's no
2163 * accumulated extent of buffers to map or add buffers in the page to the
2164 * extent of buffers to map. The function returns 1 if the caller can continue
2165 * by processing the next page, 0 if it should stop adding buffers to the
2166 * extent to map because we cannot extend it anymore. It can also return value
2167 * < 0 in case of error during IO submission.
2168 */
2169static int mpage_process_page_bufs(struct mpage_da_data *mpd,
2170 struct buffer_head *head,
2171 struct buffer_head *bh,
2172 ext4_lblk_t lblk)
Jan Kara4e7ea812013-06-04 13:17:40 -04002173{
2174 struct inode *inode = mpd->inode;
Jan Kara5f1132b2013-08-17 10:02:33 -04002175 int err;
Fabian Frederick93407472017-02-27 14:28:32 -08002176 ext4_lblk_t blocks = (i_size_read(inode) + i_blocksize(inode) - 1)
Jan Kara4e7ea812013-06-04 13:17:40 -04002177 >> inode->i_blkbits;
2178
Eric Biggersc93d8f82019-07-22 09:26:24 -07002179 if (ext4_verity_in_progress(inode))
2180 blocks = EXT_MAX_BLOCKS;
2181
Jan Kara4e7ea812013-06-04 13:17:40 -04002182 do {
2183 BUG_ON(buffer_locked(bh));
2184
Jan Kara09930042013-08-17 09:57:56 -04002185 if (lblk >= blocks || !mpage_add_bh_to_extent(mpd, lblk, bh)) {
Jan Kara4e7ea812013-06-04 13:17:40 -04002186 /* Found extent to map? */
2187 if (mpd->map.m_len)
Jan Kara5f1132b2013-08-17 10:02:33 -04002188 return 0;
Jan Karadddbd6a2017-04-30 18:29:10 -04002189 /* Buffer needs mapping and handle is not started? */
2190 if (!mpd->do_map)
2191 return 0;
Jan Kara09930042013-08-17 09:57:56 -04002192 /* Everything mapped so far and we hit EOF */
Jan Kara5f1132b2013-08-17 10:02:33 -04002193 break;
Jan Kara4e7ea812013-06-04 13:17:40 -04002194 }
Jan Kara4e7ea812013-06-04 13:17:40 -04002195 } while (lblk++, (bh = bh->b_this_page) != head);
Jan Kara5f1132b2013-08-17 10:02:33 -04002196 /* So far everything mapped? Submit the page for IO. */
2197 if (mpd->map.m_len == 0) {
2198 err = mpage_submit_page(mpd, head->b_page);
2199 if (err < 0)
2200 return err;
2201 }
Jan Kara6b8ed622020-05-25 10:12:15 +02002202 if (lblk >= blocks) {
2203 mpd->scanned_until_end = 1;
2204 return 0;
2205 }
2206 return 1;
Jan Kara4e7ea812013-06-04 13:17:40 -04002207}
2208
2209/*
Ritesh Harjani2943fdb2019-10-16 13:07:09 +05302210 * mpage_process_page - update page buffers corresponding to changed extent and
2211 * may submit fully mapped page for IO
2212 *
2213 * @mpd - description of extent to map, on return next extent to map
2214 * @m_lblk - logical block mapping.
2215 * @m_pblk - corresponding physical mapping.
2216 * @map_bh - determines on return whether this page requires any further
2217 * mapping or not.
2218 * Scan given page buffers corresponding to changed extent and update buffer
2219 * state according to new extent state.
2220 * We map delalloc buffers to their physical location, clear unwritten bits.
2221 * If the given page is not fully mapped, we update @map to the next extent in
2222 * the given page that needs mapping & return @map_bh as true.
2223 */
2224static int mpage_process_page(struct mpage_da_data *mpd, struct page *page,
2225 ext4_lblk_t *m_lblk, ext4_fsblk_t *m_pblk,
2226 bool *map_bh)
2227{
2228 struct buffer_head *head, *bh;
2229 ext4_io_end_t *io_end = mpd->io_submit.io_end;
2230 ext4_lblk_t lblk = *m_lblk;
2231 ext4_fsblk_t pblock = *m_pblk;
2232 int err = 0;
Ritesh Harjanic8cc8812019-10-16 13:07:10 +05302233 int blkbits = mpd->inode->i_blkbits;
2234 ssize_t io_end_size = 0;
2235 struct ext4_io_end_vec *io_end_vec = ext4_last_io_end_vec(io_end);
Ritesh Harjani2943fdb2019-10-16 13:07:09 +05302236
2237 bh = head = page_buffers(page);
2238 do {
2239 if (lblk < mpd->map.m_lblk)
2240 continue;
2241 if (lblk >= mpd->map.m_lblk + mpd->map.m_len) {
2242 /*
2243 * Buffer after end of mapped extent.
2244 * Find next buffer in the page to map.
2245 */
2246 mpd->map.m_len = 0;
2247 mpd->map.m_flags = 0;
Ritesh Harjanic8cc8812019-10-16 13:07:10 +05302248 io_end_vec->size += io_end_size;
2249 io_end_size = 0;
Ritesh Harjani2943fdb2019-10-16 13:07:09 +05302250
Ritesh Harjani2943fdb2019-10-16 13:07:09 +05302251 err = mpage_process_page_bufs(mpd, head, bh, lblk);
2252 if (err > 0)
2253 err = 0;
Ritesh Harjanic8cc8812019-10-16 13:07:10 +05302254 if (!err && mpd->map.m_len && mpd->map.m_lblk > lblk) {
2255 io_end_vec = ext4_alloc_io_end_vec(io_end);
Ritesh Harjani4d06bfb2019-11-06 15:08:09 +05302256 if (IS_ERR(io_end_vec)) {
2257 err = PTR_ERR(io_end_vec);
2258 goto out;
2259 }
Ritesh Harjanid1e18b82020-10-08 20:32:48 +05302260 io_end_vec->offset = (loff_t)mpd->map.m_lblk << blkbits;
Ritesh Harjanic8cc8812019-10-16 13:07:10 +05302261 }
Ritesh Harjani2943fdb2019-10-16 13:07:09 +05302262 *map_bh = true;
2263 goto out;
2264 }
2265 if (buffer_delay(bh)) {
2266 clear_buffer_delay(bh);
2267 bh->b_blocknr = pblock++;
2268 }
2269 clear_buffer_unwritten(bh);
Ritesh Harjanic8cc8812019-10-16 13:07:10 +05302270 io_end_size += (1 << blkbits);
Ritesh Harjani2943fdb2019-10-16 13:07:09 +05302271 } while (lblk++, (bh = bh->b_this_page) != head);
Ritesh Harjanic8cc8812019-10-16 13:07:10 +05302272
2273 io_end_vec->size += io_end_size;
2274 io_end_size = 0;
Ritesh Harjani2943fdb2019-10-16 13:07:09 +05302275 *map_bh = false;
2276out:
2277 *m_lblk = lblk;
2278 *m_pblk = pblock;
2279 return err;
2280}
2281
2282/*
Jan Kara4e7ea812013-06-04 13:17:40 -04002283 * mpage_map_buffers - update buffers corresponding to changed extent and
2284 * submit fully mapped pages for IO
2285 *
2286 * @mpd - description of extent to map, on return next extent to map
2287 *
2288 * Scan buffers corresponding to changed extent (we expect corresponding pages
2289 * to be already locked) and update buffer state according to new extent state.
2290 * We map delalloc buffers to their physical location, clear unwritten bits,
Lukas Czerner556615d2014-04-20 23:45:47 -04002291 * and mark buffers as uninit when we perform writes to unwritten extents
Jan Kara4e7ea812013-06-04 13:17:40 -04002292 * and do extent conversion after IO is finished. If the last page is not fully
2293 * mapped, we update @map to the next extent in the last page that needs
2294 * mapping. Otherwise we submit the page for IO.
2295 */
2296static int mpage_map_and_submit_buffers(struct mpage_da_data *mpd)
2297{
2298 struct pagevec pvec;
2299 int nr_pages, i;
2300 struct inode *inode = mpd->inode;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002301 int bpp_bits = PAGE_SHIFT - inode->i_blkbits;
Jan Kara4e7ea812013-06-04 13:17:40 -04002302 pgoff_t start, end;
2303 ext4_lblk_t lblk;
Ritesh Harjani2943fdb2019-10-16 13:07:09 +05302304 ext4_fsblk_t pblock;
Jan Kara4e7ea812013-06-04 13:17:40 -04002305 int err;
Ritesh Harjani2943fdb2019-10-16 13:07:09 +05302306 bool map_bh = false;
Jan Kara4e7ea812013-06-04 13:17:40 -04002307
2308 start = mpd->map.m_lblk >> bpp_bits;
2309 end = (mpd->map.m_lblk + mpd->map.m_len - 1) >> bpp_bits;
2310 lblk = start << bpp_bits;
2311 pblock = mpd->map.m_pblk;
2312
Mel Gorman86679822017-11-15 17:37:52 -08002313 pagevec_init(&pvec);
Jan Kara4e7ea812013-06-04 13:17:40 -04002314 while (start <= end) {
Jan Kara2b85a612017-09-06 16:21:30 -07002315 nr_pages = pagevec_lookup_range(&pvec, inode->i_mapping,
Jan Kara397162f2017-09-06 16:21:43 -07002316 &start, end);
Jan Kara4e7ea812013-06-04 13:17:40 -04002317 if (nr_pages == 0)
2318 break;
2319 for (i = 0; i < nr_pages; i++) {
2320 struct page *page = pvec.pages[i];
2321
Ritesh Harjani2943fdb2019-10-16 13:07:09 +05302322 err = mpage_process_page(mpd, page, &lblk, &pblock,
2323 &map_bh);
Jan Kara4e7ea812013-06-04 13:17:40 -04002324 /*
Ritesh Harjani2943fdb2019-10-16 13:07:09 +05302325 * If map_bh is true, means page may require further bh
2326 * mapping, or maybe the page was submitted for IO.
2327 * So we return to call further extent mapping.
Jan Kara4e7ea812013-06-04 13:17:40 -04002328 */
Jason Yan39c0ae12020-04-20 12:29:18 +08002329 if (err < 0 || map_bh)
Ritesh Harjani2943fdb2019-10-16 13:07:09 +05302330 goto out;
Jan Kara4e7ea812013-06-04 13:17:40 -04002331 /* Page fully mapped - let IO run! */
2332 err = mpage_submit_page(mpd, page);
Ritesh Harjani2943fdb2019-10-16 13:07:09 +05302333 if (err < 0)
2334 goto out;
Jan Kara4e7ea812013-06-04 13:17:40 -04002335 }
2336 pagevec_release(&pvec);
2337 }
2338 /* Extent fully mapped and matches with page boundary. We are done. */
2339 mpd->map.m_len = 0;
2340 mpd->map.m_flags = 0;
2341 return 0;
Ritesh Harjani2943fdb2019-10-16 13:07:09 +05302342out:
2343 pagevec_release(&pvec);
2344 return err;
Jan Kara4e7ea812013-06-04 13:17:40 -04002345}
2346
2347static int mpage_map_one_extent(handle_t *handle, struct mpage_da_data *mpd)
2348{
2349 struct inode *inode = mpd->inode;
2350 struct ext4_map_blocks *map = &mpd->map;
2351 int get_blocks_flags;
Lukas Czerner090f32e2014-04-20 23:44:47 -04002352 int err, dioread_nolock;
Jan Kara4e7ea812013-06-04 13:17:40 -04002353
2354 trace_ext4_da_write_pages_extent(inode, map);
2355 /*
2356 * Call ext4_map_blocks() to allocate any delayed allocation blocks, or
Lukas Czerner556615d2014-04-20 23:45:47 -04002357 * to convert an unwritten extent to be initialized (in the case
Jan Kara4e7ea812013-06-04 13:17:40 -04002358 * where we have written into one or more preallocated blocks). It is
2359 * possible that we're going to need more metadata blocks than
2360 * previously reserved. However we must not fail because we're in
2361 * writeback and there is nothing we can do about it so it might result
2362 * in data loss. So use reserved blocks to allocate metadata if
2363 * possible.
2364 *
Theodore Ts'o754cfed2014-09-04 18:08:22 -04002365 * We pass in the magic EXT4_GET_BLOCKS_DELALLOC_RESERVE if
2366 * the blocks in question are delalloc blocks. This indicates
2367 * that the blocks and quotas has already been checked when
2368 * the data was copied into the page cache.
Jan Kara4e7ea812013-06-04 13:17:40 -04002369 */
2370 get_blocks_flags = EXT4_GET_BLOCKS_CREATE |
Jan Karaee0876b2016-04-24 00:56:08 -04002371 EXT4_GET_BLOCKS_METADATA_NOFAIL |
2372 EXT4_GET_BLOCKS_IO_SUBMIT;
Lukas Czerner090f32e2014-04-20 23:44:47 -04002373 dioread_nolock = ext4_should_dioread_nolock(inode);
2374 if (dioread_nolock)
Jan Kara4e7ea812013-06-04 13:17:40 -04002375 get_blocks_flags |= EXT4_GET_BLOCKS_IO_CREATE_EXT;
Ritesh Harjani6db07462020-05-10 11:54:51 +05302376 if (map->m_flags & BIT(BH_Delay))
Jan Kara4e7ea812013-06-04 13:17:40 -04002377 get_blocks_flags |= EXT4_GET_BLOCKS_DELALLOC_RESERVE;
2378
2379 err = ext4_map_blocks(handle, inode, map, get_blocks_flags);
2380 if (err < 0)
2381 return err;
Lukas Czerner090f32e2014-04-20 23:44:47 -04002382 if (dioread_nolock && (map->m_flags & EXT4_MAP_UNWRITTEN)) {
Jan Kara6b523df2013-06-04 13:21:11 -04002383 if (!mpd->io_submit.io_end->handle &&
2384 ext4_handle_valid(handle)) {
2385 mpd->io_submit.io_end->handle = handle->h_rsv_handle;
2386 handle->h_rsv_handle = NULL;
2387 }
Jan Kara3613d222013-06-04 13:19:34 -04002388 ext4_set_io_unwritten_flag(inode, mpd->io_submit.io_end);
Jan Kara6b523df2013-06-04 13:21:11 -04002389 }
Jan Kara4e7ea812013-06-04 13:17:40 -04002390
2391 BUG_ON(map->m_len == 0);
Jan Kara4e7ea812013-06-04 13:17:40 -04002392 return 0;
2393}
2394
2395/*
2396 * mpage_map_and_submit_extent - map extent starting at mpd->lblk of length
2397 * mpd->len and submit pages underlying it for IO
2398 *
2399 * @handle - handle for journal operations
2400 * @mpd - extent to map
Jan Kara7534e852013-10-16 08:26:08 -04002401 * @give_up_on_write - we set this to true iff there is a fatal error and there
2402 * is no hope of writing the data. The caller should discard
2403 * dirty pages to avoid infinite loops.
Jan Kara4e7ea812013-06-04 13:17:40 -04002404 *
2405 * The function maps extent starting at mpd->lblk of length mpd->len. If it is
2406 * delayed, blocks are allocated, if it is unwritten, we may need to convert
2407 * them to initialized or split the described range from larger unwritten
2408 * extent. Note that we need not map all the described range since allocation
2409 * can return less blocks or the range is covered by more unwritten extents. We
2410 * cannot map more because we are limited by reserved transaction credits. On
2411 * the other hand we always make sure that the last touched page is fully
2412 * mapped so that it can be written out (and thus forward progress is
2413 * guaranteed). After mapping we submit all mapped pages for IO.
2414 */
2415static int mpage_map_and_submit_extent(handle_t *handle,
Theodore Ts'ocb530542013-07-01 08:12:40 -04002416 struct mpage_da_data *mpd,
2417 bool *give_up_on_write)
Jan Kara4e7ea812013-06-04 13:17:40 -04002418{
2419 struct inode *inode = mpd->inode;
2420 struct ext4_map_blocks *map = &mpd->map;
2421 int err;
2422 loff_t disksize;
Dmitry Monakhov66031202014-08-27 18:40:03 -04002423 int progress = 0;
Ritesh Harjanic8cc8812019-10-16 13:07:10 +05302424 ext4_io_end_t *io_end = mpd->io_submit.io_end;
Ritesh Harjani4d06bfb2019-11-06 15:08:09 +05302425 struct ext4_io_end_vec *io_end_vec;
Jan Kara4e7ea812013-06-04 13:17:40 -04002426
Ritesh Harjani4d06bfb2019-11-06 15:08:09 +05302427 io_end_vec = ext4_alloc_io_end_vec(io_end);
2428 if (IS_ERR(io_end_vec))
2429 return PTR_ERR(io_end_vec);
Ritesh Harjanic8cc8812019-10-16 13:07:10 +05302430 io_end_vec->offset = ((loff_t)map->m_lblk) << inode->i_blkbits;
Jan Kara27d7c4e2013-07-05 21:57:22 -04002431 do {
Jan Kara4e7ea812013-06-04 13:17:40 -04002432 err = mpage_map_one_extent(handle, mpd);
2433 if (err < 0) {
2434 struct super_block *sb = inode->i_sb;
2435
Theodore Ts'o0db1ff22017-02-05 01:28:48 -05002436 if (ext4_forced_shutdown(EXT4_SB(sb)) ||
Harshad Shirwadkar9b5f6c92020-11-05 19:59:09 -08002437 ext4_test_mount_flag(sb, EXT4_MF_FS_ABORTED))
Theodore Ts'ocb530542013-07-01 08:12:40 -04002438 goto invalidate_dirty_pages;
Jan Kara4e7ea812013-06-04 13:17:40 -04002439 /*
Theodore Ts'ocb530542013-07-01 08:12:40 -04002440 * Let the uper layers retry transient errors.
2441 * In the case of ENOSPC, if ext4_count_free_blocks()
2442 * is non-zero, a commit should free up blocks.
Jan Kara4e7ea812013-06-04 13:17:40 -04002443 */
Theodore Ts'ocb530542013-07-01 08:12:40 -04002444 if ((err == -ENOMEM) ||
Dmitry Monakhov66031202014-08-27 18:40:03 -04002445 (err == -ENOSPC && ext4_count_free_clusters(sb))) {
2446 if (progress)
2447 goto update_disksize;
Theodore Ts'ocb530542013-07-01 08:12:40 -04002448 return err;
Dmitry Monakhov66031202014-08-27 18:40:03 -04002449 }
Theodore Ts'ocb530542013-07-01 08:12:40 -04002450 ext4_msg(sb, KERN_CRIT,
2451 "Delayed block allocation failed for "
2452 "inode %lu at logical offset %llu with"
2453 " max blocks %u with error %d",
2454 inode->i_ino,
2455 (unsigned long long)map->m_lblk,
2456 (unsigned)map->m_len, -err);
2457 ext4_msg(sb, KERN_CRIT,
2458 "This should not happen!! Data will "
2459 "be lost\n");
2460 if (err == -ENOSPC)
2461 ext4_print_free_blocks(inode);
2462 invalidate_dirty_pages:
2463 *give_up_on_write = true;
Jan Kara4e7ea812013-06-04 13:17:40 -04002464 return err;
2465 }
Dmitry Monakhov66031202014-08-27 18:40:03 -04002466 progress = 1;
Jan Kara4e7ea812013-06-04 13:17:40 -04002467 /*
2468 * Update buffer state, submit mapped pages, and get us new
2469 * extent to map
2470 */
2471 err = mpage_map_and_submit_buffers(mpd);
2472 if (err < 0)
Dmitry Monakhov66031202014-08-27 18:40:03 -04002473 goto update_disksize;
Jan Kara27d7c4e2013-07-05 21:57:22 -04002474 } while (map->m_len);
Jan Kara4e7ea812013-06-04 13:17:40 -04002475
Dmitry Monakhov66031202014-08-27 18:40:03 -04002476update_disksize:
Theodore Ts'o622cad12014-04-11 10:35:17 -04002477 /*
2478 * Update on-disk size after IO is submitted. Races with
2479 * truncate are avoided by checking i_size under i_data_sem.
2480 */
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002481 disksize = ((loff_t)mpd->first_page) << PAGE_SHIFT;
Qian Cai35df4292020-02-07 09:29:11 -05002482 if (disksize > READ_ONCE(EXT4_I(inode)->i_disksize)) {
Jan Kara4e7ea812013-06-04 13:17:40 -04002483 int err2;
Theodore Ts'o622cad12014-04-11 10:35:17 -04002484 loff_t i_size;
Jan Kara4e7ea812013-06-04 13:17:40 -04002485
Theodore Ts'o622cad12014-04-11 10:35:17 -04002486 down_write(&EXT4_I(inode)->i_data_sem);
2487 i_size = i_size_read(inode);
2488 if (disksize > i_size)
2489 disksize = i_size;
2490 if (disksize > EXT4_I(inode)->i_disksize)
2491 EXT4_I(inode)->i_disksize = disksize;
Theodore Ts'o622cad12014-04-11 10:35:17 -04002492 up_write(&EXT4_I(inode)->i_data_sem);
Theodore Ts'ob907f2d2017-01-11 22:14:49 -05002493 err2 = ext4_mark_inode_dirty(handle, inode);
Theodore Ts'o878520a2019-11-19 21:54:15 -05002494 if (err2) {
Theodore Ts'o54d3adb2020-03-28 19:33:43 -04002495 ext4_error_err(inode->i_sb, -err2,
2496 "Failed to mark inode %lu dirty",
2497 inode->i_ino);
Theodore Ts'o878520a2019-11-19 21:54:15 -05002498 }
Jan Kara4e7ea812013-06-04 13:17:40 -04002499 if (!err)
2500 err = err2;
2501 }
2502 return err;
2503}
2504
2505/*
Jan Karafffb2732013-06-04 13:01:11 -04002506 * Calculate the total number of credits to reserve for one writepages
Theodore Ts'o20970ba2013-06-06 14:00:46 -04002507 * iteration. This is called from ext4_writepages(). We map an extent of
Anatol Pomozov70261f52013-08-28 14:40:12 -04002508 * up to MAX_WRITEPAGES_EXTENT_LEN blocks and then we go on and finish mapping
Jan Karafffb2732013-06-04 13:01:11 -04002509 * the last partial page. So in total we can map MAX_WRITEPAGES_EXTENT_LEN +
2510 * bpp - 1 blocks in bpp different extents.
2511 */
Mingming Cao525f4ed2008-08-19 22:15:58 -04002512static int ext4_da_writepages_trans_blocks(struct inode *inode)
2513{
Jan Karafffb2732013-06-04 13:01:11 -04002514 int bpp = ext4_journal_blocks_per_page(inode);
Mingming Cao525f4ed2008-08-19 22:15:58 -04002515
Jan Karafffb2732013-06-04 13:01:11 -04002516 return ext4_meta_trans_blocks(inode,
2517 MAX_WRITEPAGES_EXTENT_LEN + bpp - 1, bpp);
Mingming Cao525f4ed2008-08-19 22:15:58 -04002518}
Mingming Cao61628a32008-07-11 19:27:31 -04002519
Theodore Ts'o8e48dcf2010-05-16 18:00:00 -04002520/*
Jan Kara4e7ea812013-06-04 13:17:40 -04002521 * mpage_prepare_extent_to_map - find & lock contiguous range of dirty pages
2522 * and underlying extent to map
2523 *
2524 * @mpd - where to look for pages
2525 *
2526 * Walk dirty pages in the mapping. If they are fully mapped, submit them for
2527 * IO immediately. When we find a page which isn't mapped we start accumulating
2528 * extent of buffers underlying these pages that needs mapping (formed by
2529 * either delayed or unwritten buffers). We also lock the pages containing
2530 * these buffers. The extent found is returned in @mpd structure (starting at
2531 * mpd->lblk with length mpd->len blocks).
2532 *
2533 * Note that this function can attach bios to one io_end structure which are
2534 * neither logically nor physically contiguous. Although it may seem as an
2535 * unnecessary complication, it is actually inevitable in blocksize < pagesize
2536 * 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 -04002537 */
Jan Kara4e7ea812013-06-04 13:17:40 -04002538static int mpage_prepare_extent_to_map(struct mpage_da_data *mpd)
Theodore Ts'o8e48dcf2010-05-16 18:00:00 -04002539{
Jan Kara4e7ea812013-06-04 13:17:40 -04002540 struct address_space *mapping = mpd->inode->i_mapping;
2541 struct pagevec pvec;
2542 unsigned int nr_pages;
Ming Leiaeac5892013-10-17 18:56:16 -04002543 long left = mpd->wbc->nr_to_write;
Jan Kara4e7ea812013-06-04 13:17:40 -04002544 pgoff_t index = mpd->first_page;
2545 pgoff_t end = mpd->last_page;
Matthew Wilcox10bbd232017-12-05 17:30:38 -05002546 xa_mark_t tag;
Jan Kara4e7ea812013-06-04 13:17:40 -04002547 int i, err = 0;
2548 int blkbits = mpd->inode->i_blkbits;
2549 ext4_lblk_t lblk;
2550 struct buffer_head *head;
Theodore Ts'o8e48dcf2010-05-16 18:00:00 -04002551
Jan Kara4e7ea812013-06-04 13:17:40 -04002552 if (mpd->wbc->sync_mode == WB_SYNC_ALL || mpd->wbc->tagged_writepages)
Eric Sandeen5b41d922010-10-27 21:30:13 -04002553 tag = PAGECACHE_TAG_TOWRITE;
2554 else
2555 tag = PAGECACHE_TAG_DIRTY;
2556
Mel Gorman86679822017-11-15 17:37:52 -08002557 pagevec_init(&pvec);
Jan Kara4e7ea812013-06-04 13:17:40 -04002558 mpd->map.m_len = 0;
2559 mpd->next_page = index;
Theodore Ts'o4f01b022011-02-26 14:07:37 -05002560 while (index <= end) {
Jan Karadc7f3e82017-11-15 17:34:44 -08002561 nr_pages = pagevec_lookup_range_tag(&pvec, mapping, &index, end,
Jan Kara67fd7072017-11-15 17:35:19 -08002562 tag);
Theodore Ts'o8e48dcf2010-05-16 18:00:00 -04002563 if (nr_pages == 0)
Jan Kara6b8ed622020-05-25 10:12:15 +02002564 break;
Theodore Ts'o8e48dcf2010-05-16 18:00:00 -04002565
2566 for (i = 0; i < nr_pages; i++) {
2567 struct page *page = pvec.pages[i];
2568
2569 /*
Ming Leiaeac5892013-10-17 18:56:16 -04002570 * Accumulated enough dirty pages? This doesn't apply
2571 * to WB_SYNC_ALL mode. For integrity sync we have to
2572 * keep going because someone may be concurrently
2573 * dirtying pages, and we might have synced a lot of
2574 * newly appeared dirty pages, but have not synced all
2575 * of the old dirty pages.
2576 */
2577 if (mpd->wbc->sync_mode == WB_SYNC_NONE && left <= 0)
2578 goto out;
2579
Jan Kara4e7ea812013-06-04 13:17:40 -04002580 /* If we can't merge this page, we are done. */
2581 if (mpd->map.m_len > 0 && mpd->next_page != page->index)
2582 goto out;
Theodore Ts'o78aaced2011-02-26 14:09:14 -05002583
Theodore Ts'o8e48dcf2010-05-16 18:00:00 -04002584 lock_page(page);
Theodore Ts'o8e48dcf2010-05-16 18:00:00 -04002585 /*
Jan Kara4e7ea812013-06-04 13:17:40 -04002586 * If the page is no longer dirty, or its mapping no
2587 * longer corresponds to inode we are writing (which
2588 * means it has been truncated or invalidated), or the
2589 * page is already under writeback and we are not doing
2590 * a data integrity writeback, skip the page
Theodore Ts'o8e48dcf2010-05-16 18:00:00 -04002591 */
Theodore Ts'o4f01b022011-02-26 14:07:37 -05002592 if (!PageDirty(page) ||
2593 (PageWriteback(page) &&
Jan Kara4e7ea812013-06-04 13:17:40 -04002594 (mpd->wbc->sync_mode == WB_SYNC_NONE)) ||
Theodore Ts'o4f01b022011-02-26 14:07:37 -05002595 unlikely(page->mapping != mapping)) {
Theodore Ts'o8e48dcf2010-05-16 18:00:00 -04002596 unlock_page(page);
2597 continue;
2598 }
2599
Darrick J. Wong7cb1a532011-05-18 13:53:20 -04002600 wait_on_page_writeback(page);
Theodore Ts'o8e48dcf2010-05-16 18:00:00 -04002601 BUG_ON(PageWriteback(page));
Theodore Ts'o8e48dcf2010-05-16 18:00:00 -04002602
Jan Kara4e7ea812013-06-04 13:17:40 -04002603 if (mpd->map.m_len == 0)
Theodore Ts'o8eb9e5c2011-02-26 14:07:31 -05002604 mpd->first_page = page->index;
Theodore Ts'o8eb9e5c2011-02-26 14:07:31 -05002605 mpd->next_page = page->index + 1;
Jan Karaf8bec372013-01-28 12:55:08 -05002606 /* Add all dirty buffers to mpd */
Jan Kara4e7ea812013-06-04 13:17:40 -04002607 lblk = ((ext4_lblk_t)page->index) <<
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002608 (PAGE_SHIFT - blkbits);
Jan Karaf8bec372013-01-28 12:55:08 -05002609 head = page_buffers(page);
Jan Kara5f1132b2013-08-17 10:02:33 -04002610 err = mpage_process_page_bufs(mpd, head, head, lblk);
2611 if (err <= 0)
Jan Kara4e7ea812013-06-04 13:17:40 -04002612 goto out;
Jan Kara5f1132b2013-08-17 10:02:33 -04002613 err = 0;
Ming Leiaeac5892013-10-17 18:56:16 -04002614 left--;
Theodore Ts'o8e48dcf2010-05-16 18:00:00 -04002615 }
2616 pagevec_release(&pvec);
2617 cond_resched();
2618 }
Jan Kara6b8ed622020-05-25 10:12:15 +02002619 mpd->scanned_until_end = 1;
Theodore Ts'o4f01b022011-02-26 14:07:37 -05002620 return 0;
Theodore Ts'o8eb9e5c2011-02-26 14:07:31 -05002621out:
2622 pagevec_release(&pvec);
Jan Kara4e7ea812013-06-04 13:17:40 -04002623 return err;
Theodore Ts'o8e48dcf2010-05-16 18:00:00 -04002624}
2625
Theodore Ts'o20970ba2013-06-06 14:00:46 -04002626static int ext4_writepages(struct address_space *mapping,
2627 struct writeback_control *wbc)
Alex Tomas64769242008-07-11 19:27:31 -04002628{
Jan Kara4e7ea812013-06-04 13:17:40 -04002629 pgoff_t writeback_index = 0;
2630 long nr_to_write = wbc->nr_to_write;
Aneesh Kumar K.V22208de2008-10-16 10:10:36 -04002631 int range_whole = 0;
Jan Kara4e7ea812013-06-04 13:17:40 -04002632 int cycled = 1;
Mingming Cao61628a32008-07-11 19:27:31 -04002633 handle_t *handle = NULL;
Aneesh Kumar K.Vdf222912008-09-08 23:05:34 -04002634 struct mpage_da_data mpd;
Aneesh Kumar K.V5e745b02008-08-18 18:00:57 -04002635 struct inode *inode = mapping->host;
Jan Kara6b523df2013-06-04 13:21:11 -04002636 int needed_blocks, rsv_blocks = 0, ret = 0;
Aneesh Kumar K.V5e745b02008-08-18 18:00:57 -04002637 struct ext4_sb_info *sbi = EXT4_SB(mapping->host->i_sb);
Shaohua Li1bce63d12011-10-18 10:55:51 -04002638 struct blk_plug plug;
Theodore Ts'ocb530542013-07-01 08:12:40 -04002639 bool give_up_on_write = false;
Mingming Cao61628a32008-07-11 19:27:31 -04002640
Theodore Ts'o0db1ff22017-02-05 01:28:48 -05002641 if (unlikely(ext4_forced_shutdown(EXT4_SB(inode->i_sb))))
2642 return -EIO;
2643
Eric Biggersbbd55932020-02-19 10:30:46 -08002644 percpu_down_read(&sbi->s_writepages_rwsem);
Theodore Ts'o20970ba2013-06-06 14:00:46 -04002645 trace_ext4_writepages(inode, wbc);
Theodore Ts'oba80b102009-01-03 20:03:21 -05002646
Mingming Cao61628a32008-07-11 19:27:31 -04002647 /*
2648 * No pages to write? This is mainly a kludge to avoid starting
2649 * a transaction for special inodes like journal inode on last iput()
2650 * because that could violate lock ordering on umount
2651 */
Aneesh Kumar K.Va1d6cc52008-08-19 21:55:02 -04002652 if (!mapping->nrpages || !mapping_tagged(mapping, PAGECACHE_TAG_DIRTY))
Ming Leibbf023c72013-10-30 07:27:16 -04002653 goto out_writepages;
Theodore Ts'o2a21e372008-11-05 09:22:24 -05002654
Theodore Ts'o20970ba2013-06-06 14:00:46 -04002655 if (ext4_should_journal_data(inode)) {
Goldwyn Rodrigues043d20d2018-03-26 01:32:50 -04002656 ret = generic_writepages(mapping, wbc);
Ming Leibbf023c72013-10-30 07:27:16 -04002657 goto out_writepages;
Theodore Ts'o20970ba2013-06-06 14:00:46 -04002658 }
2659
Theodore Ts'o2a21e372008-11-05 09:22:24 -05002660 /*
2661 * If the filesystem has aborted, it is read-only, so return
2662 * right away instead of dumping stack traces later on that
2663 * will obscure the real source of the problem. We test
Linus Torvalds1751e8a2017-11-27 13:05:09 -08002664 * EXT4_MF_FS_ABORTED instead of sb->s_flag's SB_RDONLY because
Theodore Ts'o2a21e372008-11-05 09:22:24 -05002665 * the latter could be true if the filesystem is mounted
Theodore Ts'o20970ba2013-06-06 14:00:46 -04002666 * read-only, and in that case, ext4_writepages should
Theodore Ts'o2a21e372008-11-05 09:22:24 -05002667 * *never* be called, so if that ever happens, we would want
2668 * the stack trace.
2669 */
Theodore Ts'o0db1ff22017-02-05 01:28:48 -05002670 if (unlikely(ext4_forced_shutdown(EXT4_SB(mapping->host->i_sb)) ||
Harshad Shirwadkar9b5f6c92020-11-05 19:59:09 -08002671 ext4_test_mount_flag(inode->i_sb, EXT4_MF_FS_ABORTED))) {
Ming Leibbf023c72013-10-30 07:27:16 -04002672 ret = -EROFS;
2673 goto out_writepages;
2674 }
Theodore Ts'o2a21e372008-11-05 09:22:24 -05002675
Jan Kara4e7ea812013-06-04 13:17:40 -04002676 /*
2677 * If we have inline data and arrive here, it means that
2678 * we will soon create the block for the 1st page, so
2679 * we'd better clear the inline data here.
2680 */
2681 if (ext4_has_inline_data(inode)) {
2682 /* Just inode will be modified... */
2683 handle = ext4_journal_start(inode, EXT4_HT_INODE, 1);
2684 if (IS_ERR(handle)) {
2685 ret = PTR_ERR(handle);
2686 goto out_writepages;
2687 }
2688 BUG_ON(ext4_test_inode_state(inode,
2689 EXT4_STATE_MAY_INLINE_DATA));
2690 ext4_destroy_inline_data(handle, inode);
2691 ext4_journal_stop(handle);
2692 }
2693
yangerkun4e343232019-08-11 16:27:41 -04002694 if (ext4_should_dioread_nolock(inode)) {
2695 /*
2696 * We may need to convert up to one extent per block in
2697 * the page and we may dirty the inode.
2698 */
2699 rsv_blocks = 1 + ext4_chunk_trans_blocks(inode,
2700 PAGE_SIZE >> inode->i_blkbits);
2701 }
2702
Aneesh Kumar K.V22208de2008-10-16 10:10:36 -04002703 if (wbc->range_start == 0 && wbc->range_end == LLONG_MAX)
2704 range_whole = 1;
Mingming Cao61628a32008-07-11 19:27:31 -04002705
Aneesh Kumar K.V2acf2c22009-02-14 10:42:58 -05002706 if (wbc->range_cyclic) {
Jan Kara4e7ea812013-06-04 13:17:40 -04002707 writeback_index = mapping->writeback_index;
2708 if (writeback_index)
Aneesh Kumar K.V2acf2c22009-02-14 10:42:58 -05002709 cycled = 0;
Jan Kara4e7ea812013-06-04 13:17:40 -04002710 mpd.first_page = writeback_index;
2711 mpd.last_page = -1;
Eric Sandeen5b41d922010-10-27 21:30:13 -04002712 } else {
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002713 mpd.first_page = wbc->range_start >> PAGE_SHIFT;
2714 mpd.last_page = wbc->range_end >> PAGE_SHIFT;
Eric Sandeen5b41d922010-10-27 21:30:13 -04002715 }
Aneesh Kumar K.Va1d6cc52008-08-19 21:55:02 -04002716
Jan Kara4e7ea812013-06-04 13:17:40 -04002717 mpd.inode = inode;
2718 mpd.wbc = wbc;
2719 ext4_io_submit_init(&mpd.io_submit, wbc);
Aneesh Kumar K.V2acf2c22009-02-14 10:42:58 -05002720retry:
Wu Fengguang6e6938b2010-06-06 10:38:15 -06002721 if (wbc->sync_mode == WB_SYNC_ALL || wbc->tagged_writepages)
Jan Kara4e7ea812013-06-04 13:17:40 -04002722 tag_pages_for_writeback(mapping, mpd.first_page, mpd.last_page);
Shaohua Li1bce63d12011-10-18 10:55:51 -04002723 blk_start_plug(&plug);
Jan Karadddbd6a2017-04-30 18:29:10 -04002724
2725 /*
2726 * First writeback pages that don't need mapping - we can avoid
2727 * starting a transaction unnecessarily and also avoid being blocked
2728 * in the block layer on device congestion while having transaction
2729 * started.
2730 */
2731 mpd.do_map = 0;
Jan Kara6b8ed622020-05-25 10:12:15 +02002732 mpd.scanned_until_end = 0;
Jan Karadddbd6a2017-04-30 18:29:10 -04002733 mpd.io_submit.io_end = ext4_init_io_end(inode, GFP_KERNEL);
2734 if (!mpd.io_submit.io_end) {
2735 ret = -ENOMEM;
2736 goto unplug;
2737 }
2738 ret = mpage_prepare_extent_to_map(&mpd);
Xiaoguang Wanga297b2f2019-02-10 23:53:21 -05002739 /* Unlock pages we didn't use */
2740 mpage_release_unused_pages(&mpd, false);
Jan Karadddbd6a2017-04-30 18:29:10 -04002741 /* Submit prepared bio */
2742 ext4_io_submit(&mpd.io_submit);
2743 ext4_put_io_end_defer(mpd.io_submit.io_end);
2744 mpd.io_submit.io_end = NULL;
Jan Karadddbd6a2017-04-30 18:29:10 -04002745 if (ret < 0)
2746 goto unplug;
2747
Jan Kara6b8ed622020-05-25 10:12:15 +02002748 while (!mpd.scanned_until_end && wbc->nr_to_write > 0) {
Jan Kara4e7ea812013-06-04 13:17:40 -04002749 /* For each extent of pages we use new io_end */
2750 mpd.io_submit.io_end = ext4_init_io_end(inode, GFP_KERNEL);
2751 if (!mpd.io_submit.io_end) {
2752 ret = -ENOMEM;
2753 break;
2754 }
Aneesh Kumar K.Va1d6cc52008-08-19 21:55:02 -04002755
2756 /*
Jan Kara4e7ea812013-06-04 13:17:40 -04002757 * We have two constraints: We find one extent to map and we
2758 * must always write out whole page (makes a difference when
2759 * blocksize < pagesize) so that we don't block on IO when we
2760 * try to write out the rest of the page. Journalled mode is
2761 * not supported by delalloc.
Aneesh Kumar K.Va1d6cc52008-08-19 21:55:02 -04002762 */
2763 BUG_ON(ext4_should_journal_data(inode));
Mingming Cao525f4ed2008-08-19 22:15:58 -04002764 needed_blocks = ext4_da_writepages_trans_blocks(inode);
Aneesh Kumar K.Va1d6cc52008-08-19 21:55:02 -04002765
Jan Kara4e7ea812013-06-04 13:17:40 -04002766 /* start a new transaction */
Jan Kara6b523df2013-06-04 13:21:11 -04002767 handle = ext4_journal_start_with_reserve(inode,
2768 EXT4_HT_WRITE_PAGE, needed_blocks, rsv_blocks);
Mingming Cao61628a32008-07-11 19:27:31 -04002769 if (IS_ERR(handle)) {
2770 ret = PTR_ERR(handle);
Theodore Ts'o16939182009-09-26 17:43:59 -04002771 ext4_msg(inode->i_sb, KERN_CRIT, "%s: jbd2_start: "
Curt Wohlgemuthfbe845d2010-05-16 13:00:00 -04002772 "%ld pages, ino %lu; err %d", __func__,
Aneesh Kumar K.Va1d6cc52008-08-19 21:55:02 -04002773 wbc->nr_to_write, inode->i_ino, ret);
Jan Kara4e7ea812013-06-04 13:17:40 -04002774 /* Release allocated io_end */
2775 ext4_put_io_end(mpd.io_submit.io_end);
Jan Karadddbd6a2017-04-30 18:29:10 -04002776 mpd.io_submit.io_end = NULL;
Jan Kara4e7ea812013-06-04 13:17:40 -04002777 break;
Mingming Cao61628a32008-07-11 19:27:31 -04002778 }
Jan Karadddbd6a2017-04-30 18:29:10 -04002779 mpd.do_map = 1;
Theodore Ts'of63e60052009-02-23 16:42:39 -05002780
Jan Kara4e7ea812013-06-04 13:17:40 -04002781 trace_ext4_da_write_pages(inode, mpd.first_page, mpd.wbc);
2782 ret = mpage_prepare_extent_to_map(&mpd);
Jan Kara6b8ed622020-05-25 10:12:15 +02002783 if (!ret && mpd.map.m_len)
2784 ret = mpage_map_and_submit_extent(handle, &mpd,
Theodore Ts'ocb530542013-07-01 08:12:40 -04002785 &give_up_on_write);
Jan Kara646caa92016-07-04 10:14:01 -04002786 /*
2787 * Caution: If the handle is synchronous,
2788 * ext4_journal_stop() can wait for transaction commit
2789 * to finish which may depend on writeback of pages to
2790 * complete or on page lock to be released. In that
Randy Dunlapb483bb72020-08-04 19:48:50 -07002791 * case, we have to wait until after we have
Jan Kara646caa92016-07-04 10:14:01 -04002792 * submitted all the IO, released page locks we hold,
2793 * and dropped io_end reference (for extent conversion
2794 * to be able to complete) before stopping the handle.
2795 */
2796 if (!ext4_handle_valid(handle) || handle->h_sync == 0) {
2797 ext4_journal_stop(handle);
2798 handle = NULL;
Jan Karadddbd6a2017-04-30 18:29:10 -04002799 mpd.do_map = 0;
Jan Kara646caa92016-07-04 10:14:01 -04002800 }
Jan Kara4e7ea812013-06-04 13:17:40 -04002801 /* Unlock pages we didn't use */
Theodore Ts'ocb530542013-07-01 08:12:40 -04002802 mpage_release_unused_pages(&mpd, give_up_on_write);
Xiaoguang Wanga297b2f2019-02-10 23:53:21 -05002803 /* Submit prepared bio */
2804 ext4_io_submit(&mpd.io_submit);
2805
Jan Kara646caa92016-07-04 10:14:01 -04002806 /*
2807 * Drop our io_end reference we got from init. We have
2808 * to be careful and use deferred io_end finishing if
2809 * we are still holding the transaction as we can
2810 * release the last reference to io_end which may end
2811 * up doing unwritten extent conversion.
2812 */
2813 if (handle) {
2814 ext4_put_io_end_defer(mpd.io_submit.io_end);
2815 ext4_journal_stop(handle);
2816 } else
2817 ext4_put_io_end(mpd.io_submit.io_end);
Jan Karadddbd6a2017-04-30 18:29:10 -04002818 mpd.io_submit.io_end = NULL;
Aneesh Kumar K.Vdf222912008-09-08 23:05:34 -04002819
Jan Kara4e7ea812013-06-04 13:17:40 -04002820 if (ret == -ENOSPC && sbi->s_journal) {
2821 /*
2822 * Commit the transaction which would
Aneesh Kumar K.V22208de2008-10-16 10:10:36 -04002823 * free blocks released in the transaction
2824 * and try again
2825 */
Aneesh Kumar K.Vdf222912008-09-08 23:05:34 -04002826 jbd2_journal_force_commit_nested(sbi->s_journal);
Aneesh Kumar K.V22208de2008-10-16 10:10:36 -04002827 ret = 0;
Jan Kara4e7ea812013-06-04 13:17:40 -04002828 continue;
2829 }
2830 /* Fatal error - ENOMEM, EIO... */
2831 if (ret)
Mingming Cao61628a32008-07-11 19:27:31 -04002832 break;
Mingming Cao61628a32008-07-11 19:27:31 -04002833 }
Jan Karadddbd6a2017-04-30 18:29:10 -04002834unplug:
Shaohua Li1bce63d12011-10-18 10:55:51 -04002835 blk_finish_plug(&plug);
Jan Kara9c12a832013-09-16 08:24:26 -04002836 if (!ret && !cycled && wbc->nr_to_write > 0) {
Aneesh Kumar K.V2acf2c22009-02-14 10:42:58 -05002837 cycled = 1;
Jan Kara4e7ea812013-06-04 13:17:40 -04002838 mpd.last_page = writeback_index - 1;
2839 mpd.first_page = 0;
Aneesh Kumar K.V2acf2c22009-02-14 10:42:58 -05002840 goto retry;
2841 }
Mingming Cao61628a32008-07-11 19:27:31 -04002842
Aneesh Kumar K.V22208de2008-10-16 10:10:36 -04002843 /* Update index */
Aneesh Kumar K.V22208de2008-10-16 10:10:36 -04002844 if (wbc->range_cyclic || (range_whole && wbc->nr_to_write > 0))
2845 /*
Jan Kara4e7ea812013-06-04 13:17:40 -04002846 * Set the writeback_index so that range_cyclic
Aneesh Kumar K.V22208de2008-10-16 10:10:36 -04002847 * mode will write it back later
2848 */
Jan Kara4e7ea812013-06-04 13:17:40 -04002849 mapping->writeback_index = mpd.first_page;
Aneesh Kumar K.Va1d6cc52008-08-19 21:55:02 -04002850
Mingming Cao61628a32008-07-11 19:27:31 -04002851out_writepages:
Theodore Ts'o20970ba2013-06-06 14:00:46 -04002852 trace_ext4_writepages_result(inode, wbc, ret,
2853 nr_to_write - wbc->nr_to_write);
Eric Biggersbbd55932020-02-19 10:30:46 -08002854 percpu_up_read(&sbi->s_writepages_rwsem);
Mingming Cao61628a32008-07-11 19:27:31 -04002855 return ret;
Alex Tomas64769242008-07-11 19:27:31 -04002856}
2857
Dan Williams5f0663b2017-12-21 12:25:11 -08002858static int ext4_dax_writepages(struct address_space *mapping,
2859 struct writeback_control *wbc)
2860{
2861 int ret;
2862 long nr_to_write = wbc->nr_to_write;
2863 struct inode *inode = mapping->host;
2864 struct ext4_sb_info *sbi = EXT4_SB(mapping->host->i_sb);
2865
2866 if (unlikely(ext4_forced_shutdown(EXT4_SB(inode->i_sb))))
2867 return -EIO;
2868
Eric Biggersbbd55932020-02-19 10:30:46 -08002869 percpu_down_read(&sbi->s_writepages_rwsem);
Dan Williams5f0663b2017-12-21 12:25:11 -08002870 trace_ext4_writepages(inode, wbc);
2871
Vivek Goyal3f666c52020-01-03 13:33:07 -05002872 ret = dax_writeback_mapping_range(mapping, sbi->s_daxdev, wbc);
Dan Williams5f0663b2017-12-21 12:25:11 -08002873 trace_ext4_writepages_result(inode, wbc, ret,
2874 nr_to_write - wbc->nr_to_write);
Eric Biggersbbd55932020-02-19 10:30:46 -08002875 percpu_up_read(&sbi->s_writepages_rwsem);
Dan Williams5f0663b2017-12-21 12:25:11 -08002876 return ret;
2877}
2878
Aneesh Kumar K.V79f0be82008-10-08 23:13:30 -04002879static int ext4_nonda_switch(struct super_block *sb)
2880{
Eric Whitney5c1ff332013-04-09 09:27:31 -04002881 s64 free_clusters, dirty_clusters;
Aneesh Kumar K.V79f0be82008-10-08 23:13:30 -04002882 struct ext4_sb_info *sbi = EXT4_SB(sb);
2883
2884 /*
2885 * switch to non delalloc mode if we are running low
2886 * on free block. The free block accounting via percpu
Eric Dumazet179f7eb2009-01-06 14:41:04 -08002887 * counters can get slightly wrong with percpu_counter_batch getting
Aneesh Kumar K.V79f0be82008-10-08 23:13:30 -04002888 * accumulated on each CPU without updating global counters
2889 * Delalloc need an accurate free block accounting. So switch
2890 * to non delalloc when we are near to error range.
2891 */
Eric Whitney5c1ff332013-04-09 09:27:31 -04002892 free_clusters =
2893 percpu_counter_read_positive(&sbi->s_freeclusters_counter);
2894 dirty_clusters =
2895 percpu_counter_read_positive(&sbi->s_dirtyclusters_counter);
Theodore Ts'o00d4e732012-09-19 22:42:36 -04002896 /*
2897 * Start pushing delalloc when 1/2 of free blocks are dirty.
2898 */
Eric Whitney5c1ff332013-04-09 09:27:31 -04002899 if (dirty_clusters && (free_clusters < 2 * dirty_clusters))
Miao Xie10ee27a2013-01-10 13:47:57 +08002900 try_to_writeback_inodes_sb(sb, WB_REASON_FS_FREE_SPACE);
Theodore Ts'o00d4e732012-09-19 22:42:36 -04002901
Eric Whitney5c1ff332013-04-09 09:27:31 -04002902 if (2 * free_clusters < 3 * dirty_clusters ||
2903 free_clusters < (dirty_clusters + EXT4_FREECLUSTERS_WATERMARK)) {
Aneesh Kumar K.V79f0be82008-10-08 23:13:30 -04002904 /*
Eric Sandeenc8afb442009-12-23 07:58:12 -05002905 * free block count is less than 150% of dirty blocks
2906 * or free blocks is less than watermark
Aneesh Kumar K.V79f0be82008-10-08 23:13:30 -04002907 */
2908 return 1;
2909 }
2910 return 0;
2911}
2912
Eric Sandeen0ff89472014-10-11 19:51:17 -04002913/* We always reserve for an inode update; the superblock could be there too */
2914static int ext4_da_write_credits(struct inode *inode, loff_t pos, unsigned len)
2915{
Darrick J. Wonge2b911c2015-10-17 16:18:43 -04002916 if (likely(ext4_has_feature_large_file(inode->i_sb)))
Eric Sandeen0ff89472014-10-11 19:51:17 -04002917 return 1;
2918
2919 if (pos + len <= 0x7fffffffULL)
2920 return 1;
2921
2922 /* We might need to update the superblock to set LARGE_FILE */
2923 return 2;
2924}
2925
Alex Tomas64769242008-07-11 19:27:31 -04002926static int ext4_da_write_begin(struct file *file, struct address_space *mapping,
Theodore Ts'ode9a55b2009-06-14 17:45:34 -04002927 loff_t pos, unsigned len, unsigned flags,
2928 struct page **pagep, void **fsdata)
Alex Tomas64769242008-07-11 19:27:31 -04002929{
Eric Sandeen72b8ab92010-05-16 11:00:00 -04002930 int ret, retries = 0;
Alex Tomas64769242008-07-11 19:27:31 -04002931 struct page *page;
2932 pgoff_t index;
Alex Tomas64769242008-07-11 19:27:31 -04002933 struct inode *inode = mapping->host;
2934 handle_t *handle;
2935
Theodore Ts'o0db1ff22017-02-05 01:28:48 -05002936 if (unlikely(ext4_forced_shutdown(EXT4_SB(inode->i_sb))))
2937 return -EIO;
2938
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002939 index = pos >> PAGE_SHIFT;
Aneesh Kumar K.V79f0be82008-10-08 23:13:30 -04002940
Eric Biggersc93d8f82019-07-22 09:26:24 -07002941 if (ext4_nonda_switch(inode->i_sb) || S_ISLNK(inode->i_mode) ||
2942 ext4_verity_in_progress(inode)) {
Aneesh Kumar K.V79f0be82008-10-08 23:13:30 -04002943 *fsdata = (void *)FALL_BACK_TO_NONDELALLOC;
2944 return ext4_write_begin(file, mapping, pos,
2945 len, flags, pagep, fsdata);
2946 }
2947 *fsdata = (void *)0;
Theodore Ts'o9bffad12009-06-17 11:48:11 -04002948 trace_ext4_da_write_begin(inode, pos, len, flags);
Tao Ma9c3569b2012-12-10 14:05:57 -05002949
2950 if (ext4_test_inode_state(inode, EXT4_STATE_MAY_INLINE_DATA)) {
2951 ret = ext4_da_write_inline_data_begin(mapping, inode,
2952 pos, len, flags,
2953 pagep, fsdata);
2954 if (ret < 0)
Theodore Ts'o47564bf2013-02-09 09:24:14 -05002955 return ret;
2956 if (ret == 1)
2957 return 0;
Tao Ma9c3569b2012-12-10 14:05:57 -05002958 }
2959
Theodore Ts'o47564bf2013-02-09 09:24:14 -05002960 /*
2961 * grab_cache_page_write_begin() can take a long time if the
2962 * system is thrashing due to memory pressure, or if the page
2963 * is being written back. So grab it first before we start
2964 * the transaction handle. This also allows us to allocate
2965 * the page (if needed) without using GFP_NOFS.
2966 */
2967retry_grab:
2968 page = grab_cache_page_write_begin(mapping, index, flags);
2969 if (!page)
2970 return -ENOMEM;
2971 unlock_page(page);
2972
Alex Tomas64769242008-07-11 19:27:31 -04002973 /*
2974 * With delayed allocation, we don't log the i_disksize update
2975 * if there is delayed block allocation. But we still need
2976 * to journalling the i_disksize update if writes to the end
2977 * of file which has an already mapped buffer.
2978 */
Theodore Ts'o47564bf2013-02-09 09:24:14 -05002979retry_journal:
Eric Sandeen0ff89472014-10-11 19:51:17 -04002980 handle = ext4_journal_start(inode, EXT4_HT_WRITE_PAGE,
2981 ext4_da_write_credits(inode, pos, len));
Alex Tomas64769242008-07-11 19:27:31 -04002982 if (IS_ERR(handle)) {
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002983 put_page(page);
Theodore Ts'o47564bf2013-02-09 09:24:14 -05002984 return PTR_ERR(handle);
Alex Tomas64769242008-07-11 19:27:31 -04002985 }
2986
Theodore Ts'o47564bf2013-02-09 09:24:14 -05002987 lock_page(page);
2988 if (page->mapping != mapping) {
2989 /* The page got truncated from under us */
2990 unlock_page(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002991 put_page(page);
Eric Sandeend5a0d4f2008-08-02 18:51:06 -04002992 ext4_journal_stop(handle);
Theodore Ts'o47564bf2013-02-09 09:24:14 -05002993 goto retry_grab;
Eric Sandeend5a0d4f2008-08-02 18:51:06 -04002994 }
Theodore Ts'o47564bf2013-02-09 09:24:14 -05002995 /* In case writeback began while the page was unlocked */
Dmitry Monakhov7afe5aa2013-08-28 14:30:47 -04002996 wait_for_stable_page(page);
Alex Tomas64769242008-07-11 19:27:31 -04002997
Chandan Rajendra643fa962018-12-12 15:20:12 +05302998#ifdef CONFIG_FS_ENCRYPTION
Michael Halcrow2058f832015-04-12 00:55:10 -04002999 ret = ext4_block_write_begin(page, pos, len,
3000 ext4_da_get_block_prep);
3001#else
Christoph Hellwig6e1db882010-06-04 11:29:57 +02003002 ret = __block_write_begin(page, pos, len, ext4_da_get_block_prep);
Michael Halcrow2058f832015-04-12 00:55:10 -04003003#endif
Alex Tomas64769242008-07-11 19:27:31 -04003004 if (ret < 0) {
3005 unlock_page(page);
3006 ext4_journal_stop(handle);
Aneesh Kumar K.Vae4d5372008-09-13 13:10:25 -04003007 /*
3008 * block_write_begin may have instantiated a few blocks
3009 * outside i_size. Trim these off again. Don't need
3010 * i_size_read because we hold i_mutex.
3011 */
3012 if (pos + len > inode->i_size)
Jan Karab9a42072009-12-08 21:24:33 -05003013 ext4_truncate_failed_write(inode);
Theodore Ts'o47564bf2013-02-09 09:24:14 -05003014
3015 if (ret == -ENOSPC &&
3016 ext4_should_retry_alloc(inode->i_sb, &retries))
3017 goto retry_journal;
3018
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03003019 put_page(page);
Theodore Ts'o47564bf2013-02-09 09:24:14 -05003020 return ret;
Alex Tomas64769242008-07-11 19:27:31 -04003021 }
3022
Theodore Ts'o47564bf2013-02-09 09:24:14 -05003023 *pagep = page;
Alex Tomas64769242008-07-11 19:27:31 -04003024 return ret;
3025}
3026
Mingming Cao632eaea2008-07-11 19:27:31 -04003027/*
3028 * Check if we should update i_disksize
3029 * when write to the end of file but not require block allocation
3030 */
3031static int ext4_da_should_update_i_disksize(struct page *page,
Theodore Ts'ode9a55b2009-06-14 17:45:34 -04003032 unsigned long offset)
Mingming Cao632eaea2008-07-11 19:27:31 -04003033{
3034 struct buffer_head *bh;
3035 struct inode *inode = page->mapping->host;
3036 unsigned int idx;
3037 int i;
3038
3039 bh = page_buffers(page);
3040 idx = offset >> inode->i_blkbits;
3041
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04003042 for (i = 0; i < idx; i++)
Mingming Cao632eaea2008-07-11 19:27:31 -04003043 bh = bh->b_this_page;
3044
Aneesh Kumar K.V29fa89d2009-05-12 16:30:27 -04003045 if (!buffer_mapped(bh) || (buffer_delay(bh)) || buffer_unwritten(bh))
Mingming Cao632eaea2008-07-11 19:27:31 -04003046 return 0;
3047 return 1;
3048}
3049
Alex Tomas64769242008-07-11 19:27:31 -04003050static int ext4_da_write_end(struct file *file,
Theodore Ts'ode9a55b2009-06-14 17:45:34 -04003051 struct address_space *mapping,
3052 loff_t pos, unsigned len, unsigned copied,
3053 struct page *page, void *fsdata)
Alex Tomas64769242008-07-11 19:27:31 -04003054{
3055 struct inode *inode = mapping->host;
Zhang Yi6984aef2021-07-16 20:20:23 +08003056 int ret;
Alex Tomas64769242008-07-11 19:27:31 -04003057 handle_t *handle = ext4_journal_current_handle();
3058 loff_t new_i_size;
Mingming Cao632eaea2008-07-11 19:27:31 -04003059 unsigned long start, end;
Aneesh Kumar K.V79f0be82008-10-08 23:13:30 -04003060 int write_mode = (int)(unsigned long)fsdata;
3061
Theodore Ts'o74d553a2013-04-03 12:39:17 -04003062 if (write_mode == FALL_BACK_TO_NONDELALLOC)
3063 return ext4_write_end(file, mapping, pos,
3064 len, copied, page, fsdata);
Mingming Cao632eaea2008-07-11 19:27:31 -04003065
Theodore Ts'o9bffad12009-06-17 11:48:11 -04003066 trace_ext4_da_write_end(inode, pos, len, copied);
Zhang Yi6984aef2021-07-16 20:20:23 +08003067
3068 if (write_mode != CONVERT_INLINE_DATA &&
3069 ext4_test_inode_state(inode, EXT4_STATE_MAY_INLINE_DATA) &&
3070 ext4_has_inline_data(inode))
3071 return ext4_write_inline_data_end(inode, pos, len, copied, page);
3072
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03003073 start = pos & (PAGE_SIZE - 1);
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04003074 end = start + copied - 1;
Alex Tomas64769242008-07-11 19:27:31 -04003075
3076 /*
Zhang Yi4df031f2021-07-16 20:20:21 +08003077 * Since we are holding inode lock, we are sure i_disksize <=
3078 * i_size. We also know that if i_disksize < i_size, there are
3079 * delalloc writes pending in the range upto i_size. If the end of
3080 * the current write is <= i_size, there's no need to touch
3081 * i_disksize since writeback will push i_disksize upto i_size
3082 * eventually. If the end of the current write is > i_size and
3083 * inside an allocated block (ext4_da_should_update_i_disksize()
3084 * check), we need to update i_disksize here as neither
3085 * ext4_writepage() nor certain ext4_writepages() paths not
3086 * allocating blocks update i_disksize.
3087 *
3088 * Note that we defer inode dirtying to generic_write_end() /
3089 * ext4_da_write_inline_data_end().
Alex Tomas64769242008-07-11 19:27:31 -04003090 */
Alex Tomas64769242008-07-11 19:27:31 -04003091 new_i_size = pos + copied;
Zhang Yi6984aef2021-07-16 20:20:23 +08003092 if (copied && new_i_size > inode->i_size &&
3093 ext4_da_should_update_i_disksize(page, end))
3094 ext4_update_i_disksize(inode, new_i_size);
Tao Ma9c3569b2012-12-10 14:05:57 -05003095
Zhang Yi6984aef2021-07-16 20:20:23 +08003096 copied = generic_write_end(file, mapping, pos, len, copied, page, fsdata);
3097 ret = ext4_journal_stop(handle);
Alex Tomas64769242008-07-11 19:27:31 -04003098 return ret ? ret : copied;
3099}
3100
Theodore Ts'occd25062009-02-26 01:04:07 -05003101/*
3102 * Force all delayed allocation blocks to be allocated for a given inode.
3103 */
3104int ext4_alloc_da_blocks(struct inode *inode)
3105{
Theodore Ts'ofb40ba02009-09-16 19:30:40 -04003106 trace_ext4_alloc_da_blocks(inode);
3107
Theodore Ts'o71d4f7d2014-07-15 06:02:38 -04003108 if (!EXT4_I(inode)->i_reserved_data_blocks)
Theodore Ts'occd25062009-02-26 01:04:07 -05003109 return 0;
3110
3111 /*
3112 * We do something simple for now. The filemap_flush() will
3113 * also start triggering a write of the data blocks, which is
3114 * not strictly speaking necessary (and for users of
3115 * laptop_mode, not even desirable). However, to do otherwise
3116 * would require replicating code paths in:
Theodore Ts'ode9a55b2009-06-14 17:45:34 -04003117 *
Theodore Ts'o20970ba2013-06-06 14:00:46 -04003118 * ext4_writepages() ->
Theodore Ts'occd25062009-02-26 01:04:07 -05003119 * write_cache_pages() ---> (via passed in callback function)
3120 * __mpage_da_writepage() -->
3121 * mpage_add_bh_to_extent()
3122 * mpage_da_map_blocks()
3123 *
3124 * The problem is that write_cache_pages(), located in
3125 * mm/page-writeback.c, marks pages clean in preparation for
3126 * doing I/O, which is not desirable if we're not planning on
3127 * doing I/O at all.
3128 *
3129 * We could call write_cache_pages(), and then redirty all of
Wu Fengguang380cf092010-11-11 19:23:29 +08003130 * the pages by calling redirty_page_for_writepage() but that
Theodore Ts'occd25062009-02-26 01:04:07 -05003131 * would be ugly in the extreme. So instead we would need to
3132 * replicate parts of the code in the above functions,
Lucas De Marchi25985ed2011-03-30 22:57:33 -03003133 * simplifying them because we wouldn't actually intend to
Theodore Ts'occd25062009-02-26 01:04:07 -05003134 * write out the pages, but rather only collect contiguous
3135 * logical block extents, call the multi-block allocator, and
3136 * then update the buffer heads with the block allocations.
Theodore Ts'ode9a55b2009-06-14 17:45:34 -04003137 *
Theodore Ts'occd25062009-02-26 01:04:07 -05003138 * For now, though, we'll cheat by calling filemap_flush(),
3139 * which will map the blocks, and start the I/O, but not
3140 * actually wait for the I/O to complete.
3141 */
3142 return filemap_flush(inode->i_mapping);
3143}
Alex Tomas64769242008-07-11 19:27:31 -04003144
3145/*
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003146 * bmap() is special. It gets used by applications such as lilo and by
3147 * the swapper to find the on-disk block of a specific piece of data.
3148 *
3149 * Naturally, this is dangerous if the block concerned is still in the
Mingming Cao617ba132006-10-11 01:20:53 -07003150 * journal. If somebody makes a swapfile on an ext4 data-journaling
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003151 * filesystem and enables swap, then they may get a nasty shock when the
3152 * data getting swapped to that swapfile suddenly gets overwritten by
3153 * the original zero's written out previously to the journal and
3154 * awaiting writeback in the kernel's buffer cache.
3155 *
3156 * So, if we see any bmap calls here on a modified, data-journaled file,
3157 * take extra steps to flush any blocks which might be in the cache.
3158 */
Mingming Cao617ba132006-10-11 01:20:53 -07003159static sector_t ext4_bmap(struct address_space *mapping, sector_t block)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003160{
3161 struct inode *inode = mapping->host;
3162 journal_t *journal;
3163 int err;
3164
Tao Ma46c7f252012-12-10 14:04:52 -05003165 /*
3166 * We can get here for an inline file via the FIBMAP ioctl
3167 */
3168 if (ext4_has_inline_data(inode))
3169 return 0;
3170
Alex Tomas64769242008-07-11 19:27:31 -04003171 if (mapping_tagged(mapping, PAGECACHE_TAG_DIRTY) &&
3172 test_opt(inode->i_sb, DELALLOC)) {
3173 /*
3174 * With delalloc we want to sync the file
3175 * so that we can make sure we allocate
3176 * blocks for file
3177 */
3178 filemap_write_and_wait(mapping);
3179 }
3180
Theodore Ts'o19f5fb72010-01-24 14:34:07 -05003181 if (EXT4_JOURNAL(inode) &&
3182 ext4_test_inode_state(inode, EXT4_STATE_JDATA)) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003183 /*
3184 * This is a REALLY heavyweight approach, but the use of
3185 * bmap on dirty files is expected to be extremely rare:
3186 * only if we run lilo or swapon on a freshly made file
3187 * do we expect this to happen.
3188 *
3189 * (bmap requires CAP_SYS_RAWIO so this does not
3190 * represent an unprivileged user DOS attack --- we'd be
3191 * in trouble if mortal users could trigger this path at
3192 * will.)
3193 *
Mingming Cao617ba132006-10-11 01:20:53 -07003194 * NB. EXT4_STATE_JDATA is not set on files other than
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003195 * regular files. If somebody wants to bmap a directory
3196 * or symlink and gets confused because the buffer
3197 * hasn't yet been flushed to disk, they deserve
3198 * everything they get.
3199 */
3200
Theodore Ts'o19f5fb72010-01-24 14:34:07 -05003201 ext4_clear_inode_state(inode, EXT4_STATE_JDATA);
Mingming Cao617ba132006-10-11 01:20:53 -07003202 journal = EXT4_JOURNAL(inode);
Mingming Caodab291a2006-10-11 01:21:01 -07003203 jbd2_journal_lock_updates(journal);
Leah Rumancik01d5d962021-05-18 15:13:25 +00003204 err = jbd2_journal_flush(journal, 0);
Mingming Caodab291a2006-10-11 01:21:01 -07003205 jbd2_journal_unlock_updates(journal);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003206
3207 if (err)
3208 return 0;
3209 }
3210
Ritesh Harjaniac58e4f2020-02-28 14:56:56 +05303211 return iomap_bmap(mapping, block, &ext4_iomap_ops);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003212}
3213
Mingming Cao617ba132006-10-11 01:20:53 -07003214static int ext4_readpage(struct file *file, struct page *page)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003215{
Tao Ma46c7f252012-12-10 14:04:52 -05003216 int ret = -EAGAIN;
3217 struct inode *inode = page->mapping->host;
3218
Jiaying Zhang0562e0b2011-03-21 21:38:05 -04003219 trace_ext4_readpage(page);
Tao Ma46c7f252012-12-10 14:04:52 -05003220
3221 if (ext4_has_inline_data(inode))
3222 ret = ext4_readpage_inline(inode, page);
3223
3224 if (ret == -EAGAIN)
Matthew Wilcox (Oracle)a07f6242020-06-01 21:47:20 -07003225 return ext4_mpage_readpages(inode, NULL, page);
Tao Ma46c7f252012-12-10 14:04:52 -05003226
3227 return ret;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003228}
3229
Matthew Wilcox (Oracle)6311f91f2020-06-01 21:47:16 -07003230static void ext4_readahead(struct readahead_control *rac)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003231{
Matthew Wilcox (Oracle)6311f91f2020-06-01 21:47:16 -07003232 struct inode *inode = rac->mapping->host;
Tao Ma46c7f252012-12-10 14:04:52 -05003233
Matthew Wilcox (Oracle)6311f91f2020-06-01 21:47:16 -07003234 /* If the file has inline data, no need to do readahead. */
Tao Ma46c7f252012-12-10 14:04:52 -05003235 if (ext4_has_inline_data(inode))
Matthew Wilcox (Oracle)6311f91f2020-06-01 21:47:16 -07003236 return;
Tao Ma46c7f252012-12-10 14:04:52 -05003237
Matthew Wilcox (Oracle)a07f6242020-06-01 21:47:20 -07003238 ext4_mpage_readpages(inode, rac, NULL);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003239}
3240
Lukas Czernerd47992f2013-05-21 23:17:23 -04003241static void ext4_invalidatepage(struct page *page, unsigned int offset,
3242 unsigned int length)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003243{
Lukas Czernerca99fdd2013-05-21 23:25:01 -04003244 trace_ext4_invalidatepage(page, offset, length);
Jiaying Zhang0562e0b2011-03-21 21:38:05 -04003245
Jan Kara4520fb32012-12-25 13:28:54 -05003246 /* No journalling happens on data buffers when this function is used */
3247 WARN_ON(page_has_buffers(page) && buffer_jbd(page_buffers(page)));
3248
Lukas Czernerca99fdd2013-05-21 23:25:01 -04003249 block_invalidatepage(page, offset, length);
Jan Kara4520fb32012-12-25 13:28:54 -05003250}
3251
Jan Kara53e87262012-12-25 13:29:52 -05003252static int __ext4_journalled_invalidatepage(struct page *page,
Lukas Czernerca99fdd2013-05-21 23:25:01 -04003253 unsigned int offset,
3254 unsigned int length)
Jan Kara4520fb32012-12-25 13:28:54 -05003255{
3256 journal_t *journal = EXT4_JOURNAL(page->mapping->host);
3257
Lukas Czernerca99fdd2013-05-21 23:25:01 -04003258 trace_ext4_journalled_invalidatepage(page, offset, length);
Jan Kara4520fb32012-12-25 13:28:54 -05003259
Jiaying Zhang744692d2010-03-04 16:14:02 -05003260 /*
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003261 * If it's a full truncate we just forget about the pending dirtying
3262 */
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03003263 if (offset == 0 && length == PAGE_SIZE)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003264 ClearPageChecked(page);
3265
Lukas Czernerca99fdd2013-05-21 23:25:01 -04003266 return jbd2_journal_invalidatepage(journal, page, offset, length);
Jan Kara53e87262012-12-25 13:29:52 -05003267}
3268
3269/* Wrapper for aops... */
3270static void ext4_journalled_invalidatepage(struct page *page,
Lukas Czernerd47992f2013-05-21 23:17:23 -04003271 unsigned int offset,
3272 unsigned int length)
Jan Kara53e87262012-12-25 13:29:52 -05003273{
Lukas Czernerca99fdd2013-05-21 23:25:01 -04003274 WARN_ON(__ext4_journalled_invalidatepage(page, offset, length) < 0);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003275}
3276
Mingming Cao617ba132006-10-11 01:20:53 -07003277static int ext4_releasepage(struct page *page, gfp_t wait)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003278{
Mingming Cao617ba132006-10-11 01:20:53 -07003279 journal_t *journal = EXT4_JOURNAL(page->mapping->host);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003280
Jiaying Zhang0562e0b2011-03-21 21:38:05 -04003281 trace_ext4_releasepage(page);
3282
Jan Karae1c36592013-03-10 22:19:00 -04003283 /* Page has dirty journalled data -> cannot release */
3284 if (PageChecked(page))
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003285 return 0;
Frank Mayhar03901312009-01-07 00:06:22 -05003286 if (journal)
zhangyi (F)529a7812020-06-20 10:54:27 +08003287 return jbd2_journal_try_to_free_buffers(journal, page);
Frank Mayhar03901312009-01-07 00:06:22 -05003288 else
3289 return try_to_free_buffers(page);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003290}
3291
Jan Karab8a61762017-11-01 16:36:45 +01003292static bool ext4_inode_datasync_dirty(struct inode *inode)
3293{
3294 journal_t *journal = EXT4_SB(inode->i_sb)->s_journal;
3295
Harshad Shirwadkaraa75f4d2020-10-15 13:37:57 -07003296 if (journal) {
3297 if (jbd2_transaction_committed(journal,
Andrea Righid0520df2020-10-26 21:49:13 -07003298 EXT4_I(inode)->i_datasync_tid))
3299 return false;
3300 if (test_opt2(inode->i_sb, JOURNAL_FAST_COMMIT))
Harshad Shirwadkar1ceecb52020-11-05 19:59:06 -08003301 return !list_empty(&EXT4_I(inode)->i_fc_list);
Andrea Righid0520df2020-10-26 21:49:13 -07003302 return true;
Harshad Shirwadkaraa75f4d2020-10-15 13:37:57 -07003303 }
3304
Jan Karab8a61762017-11-01 16:36:45 +01003305 /* Any metadata buffers to write? */
3306 if (!list_empty(&inode->i_mapping->private_list))
3307 return true;
3308 return inode->i_state & I_DIRTY_DATASYNC;
3309}
3310
Matthew Bobrowskic8fdfe292019-11-05 22:59:56 +11003311static void ext4_set_iomap(struct inode *inode, struct iomap *iomap,
3312 struct ext4_map_blocks *map, loff_t offset,
3313 loff_t length)
Jan Kara364443c2016-11-20 17:36:06 -05003314{
Matthew Bobrowskic8fdfe292019-11-05 22:59:56 +11003315 u8 blkbits = inode->i_blkbits;
3316
3317 /*
3318 * Writes that span EOF might trigger an I/O size update on completion,
3319 * so consider them to be dirty for the purpose of O_DSYNC, even if
3320 * there is no other metadata changes being made or are pending.
3321 */
3322 iomap->flags = 0;
3323 if (ext4_inode_datasync_dirty(inode) ||
3324 offset + length > i_size_read(inode))
3325 iomap->flags |= IOMAP_F_DIRTY;
3326
3327 if (map->m_flags & EXT4_MAP_NEW)
3328 iomap->flags |= IOMAP_F_NEW;
3329
3330 iomap->bdev = inode->i_sb->s_bdev;
3331 iomap->dax_dev = EXT4_SB(inode->i_sb)->s_daxdev;
3332 iomap->offset = (u64) map->m_lblk << blkbits;
3333 iomap->length = (u64) map->m_len << blkbits;
3334
Ritesh Harjani63867222020-02-28 14:56:54 +05303335 if ((map->m_flags & EXT4_MAP_MAPPED) &&
3336 !ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS))
3337 iomap->flags |= IOMAP_F_MERGED;
3338
Matthew Bobrowskic8fdfe292019-11-05 22:59:56 +11003339 /*
3340 * Flags passed to ext4_map_blocks() for direct I/O writes can result
3341 * in m_flags having both EXT4_MAP_MAPPED and EXT4_MAP_UNWRITTEN bits
3342 * set. In order for any allocated unwritten extents to be converted
3343 * into written extents correctly within the ->end_io() handler, we
3344 * need to ensure that the iomap->type is set appropriately. Hence, the
3345 * reason why we need to check whether the EXT4_MAP_UNWRITTEN bit has
3346 * been set first.
3347 */
3348 if (map->m_flags & EXT4_MAP_UNWRITTEN) {
3349 iomap->type = IOMAP_UNWRITTEN;
3350 iomap->addr = (u64) map->m_pblk << blkbits;
3351 } else if (map->m_flags & EXT4_MAP_MAPPED) {
3352 iomap->type = IOMAP_MAPPED;
3353 iomap->addr = (u64) map->m_pblk << blkbits;
3354 } else {
3355 iomap->type = IOMAP_HOLE;
3356 iomap->addr = IOMAP_NULL_ADDR;
3357 }
3358}
3359
Matthew Bobrowskif063db52019-11-05 23:00:14 +11003360static int ext4_iomap_alloc(struct inode *inode, struct ext4_map_blocks *map,
3361 unsigned int flags)
3362{
3363 handle_t *handle;
Matthew Bobrowski378f32b2019-11-05 23:02:39 +11003364 u8 blkbits = inode->i_blkbits;
3365 int ret, dio_credits, m_flags = 0, retries = 0;
Matthew Bobrowskif063db52019-11-05 23:00:14 +11003366
3367 /*
3368 * Trim the mapping request to the maximum value that we can map at
3369 * once for direct I/O.
3370 */
3371 if (map->m_len > DIO_MAX_BLOCKS)
3372 map->m_len = DIO_MAX_BLOCKS;
3373 dio_credits = ext4_chunk_trans_blocks(inode, map->m_len);
3374
3375retry:
3376 /*
3377 * Either we allocate blocks and then don't get an unwritten extent, so
3378 * in that case we have reserved enough credits. Or, the blocks are
3379 * already allocated and unwritten. In that case, the extent conversion
3380 * fits into the credits as well.
3381 */
3382 handle = ext4_journal_start(inode, EXT4_HT_MAP_BLOCKS, dio_credits);
3383 if (IS_ERR(handle))
3384 return PTR_ERR(handle);
3385
Matthew Bobrowski378f32b2019-11-05 23:02:39 +11003386 /*
3387 * DAX and direct I/O are the only two operations that are currently
3388 * supported with IOMAP_WRITE.
3389 */
3390 WARN_ON(!IS_DAX(inode) && !(flags & IOMAP_DIRECT));
3391 if (IS_DAX(inode))
3392 m_flags = EXT4_GET_BLOCKS_CREATE_ZERO;
3393 /*
3394 * We use i_size instead of i_disksize here because delalloc writeback
3395 * can complete at any point during the I/O and subsequently push the
3396 * i_disksize out to i_size. This could be beyond where direct I/O is
3397 * happening and thus expose allocated blocks to direct I/O reads.
3398 */
Jan Karad0b040f2021-04-12 12:23:33 +02003399 else if (((loff_t)map->m_lblk << blkbits) >= i_size_read(inode))
Matthew Bobrowski378f32b2019-11-05 23:02:39 +11003400 m_flags = EXT4_GET_BLOCKS_CREATE;
3401 else if (ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS))
3402 m_flags = EXT4_GET_BLOCKS_IO_CREATE_EXT;
3403
3404 ret = ext4_map_blocks(handle, inode, map, m_flags);
3405
3406 /*
3407 * We cannot fill holes in indirect tree based inodes as that could
3408 * expose stale data in the case of a crash. Use the magic error code
3409 * to fallback to buffered I/O.
3410 */
3411 if (!m_flags && !ret)
3412 ret = -ENOTBLK;
Matthew Bobrowskif063db52019-11-05 23:00:14 +11003413
Matthew Bobrowskif063db52019-11-05 23:00:14 +11003414 ext4_journal_stop(handle);
3415 if (ret == -ENOSPC && ext4_should_retry_alloc(inode->i_sb, &retries))
3416 goto retry;
3417
3418 return ret;
3419}
3420
3421
Jan Kara364443c2016-11-20 17:36:06 -05003422static int ext4_iomap_begin(struct inode *inode, loff_t offset, loff_t length,
Goldwyn Rodriguesc039b992019-10-18 16:44:10 -07003423 unsigned flags, struct iomap *iomap, struct iomap *srcmap)
Jan Kara364443c2016-11-20 17:36:06 -05003424{
Jan Kara364443c2016-11-20 17:36:06 -05003425 int ret;
Matthew Bobrowski09edf4d2019-11-05 23:03:31 +11003426 struct ext4_map_blocks map;
3427 u8 blkbits = inode->i_blkbits;
Jan Kara364443c2016-11-20 17:36:06 -05003428
Theodore Ts'obcd8e912018-09-01 12:45:04 -04003429 if ((offset >> blkbits) > EXT4_MAX_LOGICAL_BLOCK)
3430 return -EINVAL;
Andreas Gruenbacher7046ae32017-10-01 17:57:54 -04003431
Matthew Bobrowski09edf4d2019-11-05 23:03:31 +11003432 if (WARN_ON_ONCE(ext4_has_inline_data(inode)))
3433 return -ERANGE;
Jan Kara364443c2016-11-20 17:36:06 -05003434
Matthew Bobrowski09edf4d2019-11-05 23:03:31 +11003435 /*
3436 * Calculate the first and last logical blocks respectively.
3437 */
3438 map.m_lblk = offset >> blkbits;
3439 map.m_len = min_t(loff_t, (offset + length - 1) >> blkbits,
3440 EXT4_MAX_LOGICAL_BLOCK) - map.m_lblk + 1;
Jan Kara364443c2016-11-20 17:36:06 -05003441
Ritesh Harjani9faac622020-09-18 10:36:35 +05303442 if (flags & IOMAP_WRITE) {
3443 /*
3444 * We check here if the blocks are already allocated, then we
3445 * don't need to start a journal txn and we can directly return
3446 * the mapping information. This could boost performance
3447 * especially in multi-threaded overwrite requests.
3448 */
3449 if (offset + length <= i_size_read(inode)) {
3450 ret = ext4_map_blocks(NULL, inode, &map, 0);
3451 if (ret > 0 && (map.m_flags & EXT4_MAP_MAPPED))
3452 goto out;
3453 }
Matthew Bobrowskif063db52019-11-05 23:00:14 +11003454 ret = ext4_iomap_alloc(inode, &map, flags);
Ritesh Harjani9faac622020-09-18 10:36:35 +05303455 } else {
Jan Kara776722e2016-11-20 18:09:11 -05003456 ret = ext4_map_blocks(NULL, inode, &map, 0);
Ritesh Harjani9faac622020-09-18 10:36:35 +05303457 }
Christoph Hellwig545052e2017-10-01 17:58:54 -04003458
Matthew Bobrowskif063db52019-11-05 23:00:14 +11003459 if (ret < 0)
3460 return ret;
Ritesh Harjani9faac622020-09-18 10:36:35 +05303461out:
Matthew Bobrowskic8fdfe292019-11-05 22:59:56 +11003462 ext4_set_iomap(inode, iomap, &map, offset, length);
Christoph Hellwig545052e2017-10-01 17:58:54 -04003463
Jan Kara364443c2016-11-20 17:36:06 -05003464 return 0;
3465}
3466
Jan Kara8cd115b2019-12-18 18:44:33 +01003467static int ext4_iomap_overwrite_begin(struct inode *inode, loff_t offset,
3468 loff_t length, unsigned flags, struct iomap *iomap,
3469 struct iomap *srcmap)
3470{
3471 int ret;
3472
3473 /*
3474 * Even for writes we don't need to allocate blocks, so just pretend
3475 * we are reading to save overhead of starting a transaction.
3476 */
3477 flags &= ~IOMAP_WRITE;
3478 ret = ext4_iomap_begin(inode, offset, length, flags, iomap, srcmap);
3479 WARN_ON_ONCE(iomap->type != IOMAP_MAPPED);
3480 return ret;
3481}
3482
Jan Kara776722e2016-11-20 18:09:11 -05003483static int ext4_iomap_end(struct inode *inode, loff_t offset, loff_t length,
3484 ssize_t written, unsigned flags, struct iomap *iomap)
3485{
Jan Kara776722e2016-11-20 18:09:11 -05003486 /*
Matthew Bobrowski378f32b2019-11-05 23:02:39 +11003487 * Check to see whether an error occurred while writing out the data to
3488 * the allocated blocks. If so, return the magic error code so that we
3489 * fallback to buffered I/O and attempt to complete the remainder of
3490 * the I/O. Any blocks that may have been allocated in preparation for
3491 * the direct I/O will be reused during buffered I/O.
Jan Kara776722e2016-11-20 18:09:11 -05003492 */
Matthew Bobrowski378f32b2019-11-05 23:02:39 +11003493 if (flags & (IOMAP_WRITE | IOMAP_DIRECT) && written == 0)
3494 return -ENOTBLK;
Jan Kara776722e2016-11-20 18:09:11 -05003495
Matthew Bobrowski569342d2019-11-05 23:01:51 +11003496 return 0;
Jan Kara776722e2016-11-20 18:09:11 -05003497}
3498
Christoph Hellwig8ff6daa2017-01-27 23:20:26 -08003499const struct iomap_ops ext4_iomap_ops = {
Jan Kara364443c2016-11-20 17:36:06 -05003500 .iomap_begin = ext4_iomap_begin,
Jan Kara776722e2016-11-20 18:09:11 -05003501 .iomap_end = ext4_iomap_end,
Jan Kara364443c2016-11-20 17:36:06 -05003502};
3503
Jan Kara8cd115b2019-12-18 18:44:33 +01003504const struct iomap_ops ext4_iomap_overwrite_ops = {
3505 .iomap_begin = ext4_iomap_overwrite_begin,
3506 .iomap_end = ext4_iomap_end,
3507};
3508
Matthew Bobrowski09edf4d2019-11-05 23:03:31 +11003509static bool ext4_iomap_is_delalloc(struct inode *inode,
3510 struct ext4_map_blocks *map)
Mingming Cao4c0425f2009-09-28 15:48:41 -04003511{
Matthew Bobrowski09edf4d2019-11-05 23:03:31 +11003512 struct extent_status es;
3513 ext4_lblk_t offset = 0, end = map->m_lblk + map->m_len - 1;
Mingming Cao4c0425f2009-09-28 15:48:41 -04003514
Matthew Bobrowski09edf4d2019-11-05 23:03:31 +11003515 ext4_es_find_extent_range(inode, &ext4_es_is_delayed,
3516 map->m_lblk, end, &es);
Mingming4b70df12009-11-03 14:44:54 -05003517
Matthew Bobrowski09edf4d2019-11-05 23:03:31 +11003518 if (!es.es_len || es.es_lblk > end)
3519 return false;
3520
3521 if (es.es_lblk > map->m_lblk) {
3522 map->m_len = es.es_lblk - map->m_lblk;
3523 return false;
3524 }
3525
3526 offset = map->m_lblk - es.es_lblk;
3527 map->m_len = es.es_len - offset;
3528
3529 return true;
3530}
3531
3532static int ext4_iomap_begin_report(struct inode *inode, loff_t offset,
3533 loff_t length, unsigned int flags,
3534 struct iomap *iomap, struct iomap *srcmap)
3535{
3536 int ret;
3537 bool delalloc = false;
3538 struct ext4_map_blocks map;
3539 u8 blkbits = inode->i_blkbits;
3540
3541 if ((offset >> blkbits) > EXT4_MAX_LOGICAL_BLOCK)
3542 return -EINVAL;
3543
3544 if (ext4_has_inline_data(inode)) {
3545 ret = ext4_inline_data_iomap(inode, iomap);
3546 if (ret != -EAGAIN) {
3547 if (ret == 0 && offset >= iomap->length)
3548 ret = -ENOENT;
3549 return ret;
3550 }
3551 }
Mingming Cao8d5d02e2009-09-28 15:48:29 -04003552
Jan Kara74c66bc2016-02-29 08:36:38 +11003553 /*
Matthew Bobrowski09edf4d2019-11-05 23:03:31 +11003554 * Calculate the first and last logical block respectively.
Jan Kara74c66bc2016-02-29 08:36:38 +11003555 */
Matthew Bobrowski09edf4d2019-11-05 23:03:31 +11003556 map.m_lblk = offset >> blkbits;
3557 map.m_len = min_t(loff_t, (offset + length - 1) >> blkbits,
3558 EXT4_MAX_LOGICAL_BLOCK) - map.m_lblk + 1;
3559
Ritesh Harjanib2c57642020-02-28 14:56:57 +05303560 /*
3561 * Fiemap callers may call for offset beyond s_bitmap_maxbytes.
3562 * So handle it here itself instead of querying ext4_map_blocks().
3563 * Since ext4_map_blocks() will warn about it and will return
3564 * -EIO error.
3565 */
3566 if (!(ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS))) {
3567 struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb);
3568
3569 if (offset >= sbi->s_bitmap_maxbytes) {
3570 map.m_flags = 0;
3571 goto set_iomap;
3572 }
3573 }
3574
Matthew Bobrowski09edf4d2019-11-05 23:03:31 +11003575 ret = ext4_map_blocks(NULL, inode, &map, 0);
3576 if (ret < 0)
3577 return ret;
3578 if (ret == 0)
3579 delalloc = ext4_iomap_is_delalloc(inode, &map);
3580
Ritesh Harjanib2c57642020-02-28 14:56:57 +05303581set_iomap:
Matthew Bobrowski09edf4d2019-11-05 23:03:31 +11003582 ext4_set_iomap(inode, iomap, &map, offset, length);
3583 if (delalloc && iomap->type == IOMAP_HOLE)
3584 iomap->type = IOMAP_DELALLOC;
Christoph Hellwig187372a2016-02-08 14:40:51 +11003585
3586 return 0;
Mingming Cao4c0425f2009-09-28 15:48:41 -04003587}
Jiaying Zhangc7064ef2010-03-02 13:28:44 -05003588
Matthew Bobrowski09edf4d2019-11-05 23:03:31 +11003589const struct iomap_ops ext4_iomap_report_ops = {
3590 .iomap_begin = ext4_iomap_begin_report,
3591};
Mingming Cao4c0425f2009-09-28 15:48:41 -04003592
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003593/*
Mingming Cao617ba132006-10-11 01:20:53 -07003594 * Pages can be marked dirty completely asynchronously from ext4's journalling
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003595 * activity. By filemap_sync_pte(), try_to_unmap_one(), etc. We cannot do
3596 * much here because ->set_page_dirty is called under VFS locks. The page is
3597 * not necessarily locked.
3598 *
3599 * We cannot just dirty the page and leave attached buffers clean, because the
3600 * buffers' dirty state is "definitive". We cannot just set the buffers dirty
3601 * or jbddirty because all the journalling code will explode.
3602 *
3603 * So what we do is to mark the page "pending dirty" and next time writepage
3604 * is called, propagate that into the buffers appropriately.
3605 */
Mingming Cao617ba132006-10-11 01:20:53 -07003606static int ext4_journalled_set_page_dirty(struct page *page)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003607{
3608 SetPageChecked(page);
3609 return __set_page_dirty_nobuffers(page);
3610}
3611
Jan Kara6dcc6932016-12-01 11:46:40 -05003612static int ext4_set_page_dirty(struct page *page)
3613{
3614 WARN_ON_ONCE(!PageLocked(page) && !PageDirty(page));
3615 WARN_ON_ONCE(!page_has_buffers(page));
3616 return __set_page_dirty_buffers(page);
3617}
3618
Ritesh Harjani0e6895b2020-09-04 14:46:53 +05303619static int ext4_iomap_swap_activate(struct swap_info_struct *sis,
3620 struct file *file, sector_t *span)
3621{
3622 return iomap_swapfile_activate(sis, file, span,
3623 &ext4_iomap_report_ops);
3624}
3625
Theodore Ts'o74d553a2013-04-03 12:39:17 -04003626static const struct address_space_operations ext4_aops = {
Hisashi Hifumi8ab22b92008-07-28 15:46:36 -07003627 .readpage = ext4_readpage,
Matthew Wilcox (Oracle)6311f91f2020-06-01 21:47:16 -07003628 .readahead = ext4_readahead,
Aneesh Kumar K.V43ce1d22009-06-14 17:58:45 -04003629 .writepage = ext4_writepage,
Theodore Ts'o20970ba2013-06-06 14:00:46 -04003630 .writepages = ext4_writepages,
Hisashi Hifumi8ab22b92008-07-28 15:46:36 -07003631 .write_begin = ext4_write_begin,
Theodore Ts'o74d553a2013-04-03 12:39:17 -04003632 .write_end = ext4_write_end,
Jan Kara6dcc6932016-12-01 11:46:40 -05003633 .set_page_dirty = ext4_set_page_dirty,
Hisashi Hifumi8ab22b92008-07-28 15:46:36 -07003634 .bmap = ext4_bmap,
3635 .invalidatepage = ext4_invalidatepage,
3636 .releasepage = ext4_releasepage,
Matthew Bobrowski378f32b2019-11-05 23:02:39 +11003637 .direct_IO = noop_direct_IO,
Hisashi Hifumi8ab22b92008-07-28 15:46:36 -07003638 .migratepage = buffer_migrate_page,
3639 .is_partially_uptodate = block_is_partially_uptodate,
Andi Kleenaa261f52009-09-16 11:50:16 +02003640 .error_remove_page = generic_error_remove_page,
Ritesh Harjani0e6895b2020-09-04 14:46:53 +05303641 .swap_activate = ext4_iomap_swap_activate,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003642};
3643
Mingming Cao617ba132006-10-11 01:20:53 -07003644static const struct address_space_operations ext4_journalled_aops = {
Hisashi Hifumi8ab22b92008-07-28 15:46:36 -07003645 .readpage = ext4_readpage,
Matthew Wilcox (Oracle)6311f91f2020-06-01 21:47:16 -07003646 .readahead = ext4_readahead,
Aneesh Kumar K.V43ce1d22009-06-14 17:58:45 -04003647 .writepage = ext4_writepage,
Theodore Ts'o20970ba2013-06-06 14:00:46 -04003648 .writepages = ext4_writepages,
Hisashi Hifumi8ab22b92008-07-28 15:46:36 -07003649 .write_begin = ext4_write_begin,
3650 .write_end = ext4_journalled_write_end,
3651 .set_page_dirty = ext4_journalled_set_page_dirty,
3652 .bmap = ext4_bmap,
Jan Kara4520fb32012-12-25 13:28:54 -05003653 .invalidatepage = ext4_journalled_invalidatepage,
Hisashi Hifumi8ab22b92008-07-28 15:46:36 -07003654 .releasepage = ext4_releasepage,
Matthew Bobrowski378f32b2019-11-05 23:02:39 +11003655 .direct_IO = noop_direct_IO,
Hisashi Hifumi8ab22b92008-07-28 15:46:36 -07003656 .is_partially_uptodate = block_is_partially_uptodate,
Andi Kleenaa261f52009-09-16 11:50:16 +02003657 .error_remove_page = generic_error_remove_page,
Ritesh Harjani0e6895b2020-09-04 14:46:53 +05303658 .swap_activate = ext4_iomap_swap_activate,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003659};
3660
Alex Tomas64769242008-07-11 19:27:31 -04003661static const struct address_space_operations ext4_da_aops = {
Hisashi Hifumi8ab22b92008-07-28 15:46:36 -07003662 .readpage = ext4_readpage,
Matthew Wilcox (Oracle)6311f91f2020-06-01 21:47:16 -07003663 .readahead = ext4_readahead,
Aneesh Kumar K.V43ce1d22009-06-14 17:58:45 -04003664 .writepage = ext4_writepage,
Theodore Ts'o20970ba2013-06-06 14:00:46 -04003665 .writepages = ext4_writepages,
Hisashi Hifumi8ab22b92008-07-28 15:46:36 -07003666 .write_begin = ext4_da_write_begin,
3667 .write_end = ext4_da_write_end,
Jan Kara6dcc6932016-12-01 11:46:40 -05003668 .set_page_dirty = ext4_set_page_dirty,
Hisashi Hifumi8ab22b92008-07-28 15:46:36 -07003669 .bmap = ext4_bmap,
Eric Whitney8fcc3a52019-08-22 23:22:14 -04003670 .invalidatepage = ext4_invalidatepage,
Hisashi Hifumi8ab22b92008-07-28 15:46:36 -07003671 .releasepage = ext4_releasepage,
Matthew Bobrowski378f32b2019-11-05 23:02:39 +11003672 .direct_IO = noop_direct_IO,
Hisashi Hifumi8ab22b92008-07-28 15:46:36 -07003673 .migratepage = buffer_migrate_page,
3674 .is_partially_uptodate = block_is_partially_uptodate,
Andi Kleenaa261f52009-09-16 11:50:16 +02003675 .error_remove_page = generic_error_remove_page,
Ritesh Harjani0e6895b2020-09-04 14:46:53 +05303676 .swap_activate = ext4_iomap_swap_activate,
Alex Tomas64769242008-07-11 19:27:31 -04003677};
3678
Dan Williams5f0663b2017-12-21 12:25:11 -08003679static const struct address_space_operations ext4_dax_aops = {
3680 .writepages = ext4_dax_writepages,
3681 .direct_IO = noop_direct_IO,
Matthew Wilcox (Oracle)b82a96c2021-06-28 19:36:27 -07003682 .set_page_dirty = __set_page_dirty_no_writeback,
Toshi Kani94dbb632018-09-15 21:23:41 -04003683 .bmap = ext4_bmap,
Dan Williams5f0663b2017-12-21 12:25:11 -08003684 .invalidatepage = noop_invalidatepage,
Ritesh Harjani0e6895b2020-09-04 14:46:53 +05303685 .swap_activate = ext4_iomap_swap_activate,
Dan Williams5f0663b2017-12-21 12:25:11 -08003686};
3687
Mingming Cao617ba132006-10-11 01:20:53 -07003688void ext4_set_aops(struct inode *inode)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003689{
Lukas Czerner3d2b1582012-02-20 17:53:00 -05003690 switch (ext4_inode_journal_mode(inode)) {
3691 case EXT4_INODE_ORDERED_DATA_MODE:
Lukas Czerner3d2b1582012-02-20 17:53:00 -05003692 case EXT4_INODE_WRITEBACK_DATA_MODE:
Lukas Czerner3d2b1582012-02-20 17:53:00 -05003693 break;
3694 case EXT4_INODE_JOURNAL_DATA_MODE:
Mingming Cao617ba132006-10-11 01:20:53 -07003695 inode->i_mapping->a_ops = &ext4_journalled_aops;
Theodore Ts'o74d553a2013-04-03 12:39:17 -04003696 return;
Lukas Czerner3d2b1582012-02-20 17:53:00 -05003697 default:
3698 BUG();
3699 }
Dan Williams5f0663b2017-12-21 12:25:11 -08003700 if (IS_DAX(inode))
3701 inode->i_mapping->a_ops = &ext4_dax_aops;
3702 else if (test_opt(inode->i_sb, DELALLOC))
Theodore Ts'o74d553a2013-04-03 12:39:17 -04003703 inode->i_mapping->a_ops = &ext4_da_aops;
3704 else
3705 inode->i_mapping->a_ops = &ext4_aops;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003706}
3707
Ross Zwisler923ae0f2015-02-16 15:59:38 -08003708static int __ext4_block_zero_page_range(handle_t *handle,
Lukas Czernerd863dc32013-05-27 23:32:35 -04003709 struct address_space *mapping, loff_t from, loff_t length)
3710{
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03003711 ext4_fsblk_t index = from >> PAGE_SHIFT;
3712 unsigned offset = from & (PAGE_SIZE-1);
Ross Zwisler923ae0f2015-02-16 15:59:38 -08003713 unsigned blocksize, pos;
Lukas Czernerd863dc32013-05-27 23:32:35 -04003714 ext4_lblk_t iblock;
3715 struct inode *inode = mapping->host;
3716 struct buffer_head *bh;
3717 struct page *page;
3718 int err = 0;
3719
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03003720 page = find_or_create_page(mapping, from >> PAGE_SHIFT,
Michal Hockoc62d2552015-11-06 16:28:49 -08003721 mapping_gfp_constraint(mapping, ~__GFP_FS));
Lukas Czernerd863dc32013-05-27 23:32:35 -04003722 if (!page)
3723 return -ENOMEM;
3724
3725 blocksize = inode->i_sb->s_blocksize;
Lukas Czernerd863dc32013-05-27 23:32:35 -04003726
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03003727 iblock = index << (PAGE_SHIFT - inode->i_sb->s_blocksize_bits);
Lukas Czernerd863dc32013-05-27 23:32:35 -04003728
3729 if (!page_has_buffers(page))
3730 create_empty_buffers(page, blocksize, 0);
3731
3732 /* Find the buffer that contains "offset" */
3733 bh = page_buffers(page);
3734 pos = blocksize;
3735 while (offset >= pos) {
3736 bh = bh->b_this_page;
3737 iblock++;
3738 pos += blocksize;
3739 }
Lukas Czernerd863dc32013-05-27 23:32:35 -04003740 if (buffer_freed(bh)) {
3741 BUFFER_TRACE(bh, "freed: skip");
3742 goto unlock;
3743 }
Lukas Czernerd863dc32013-05-27 23:32:35 -04003744 if (!buffer_mapped(bh)) {
3745 BUFFER_TRACE(bh, "unmapped");
3746 ext4_get_block(inode, iblock, bh, 0);
3747 /* unmapped? It's a hole - nothing to do */
3748 if (!buffer_mapped(bh)) {
3749 BUFFER_TRACE(bh, "still unmapped");
3750 goto unlock;
3751 }
3752 }
3753
3754 /* Ok, it's mapped. Make sure it's up-to-date */
3755 if (PageUptodate(page))
3756 set_buffer_uptodate(bh);
3757
3758 if (!buffer_uptodate(bh)) {
zhangyi (F)2d069c02020-09-24 15:33:33 +08003759 err = ext4_read_bh_lock(bh, 0, true);
3760 if (err)
Lukas Czernerd863dc32013-05-27 23:32:35 -04003761 goto unlock;
Eric Biggers4f74d152020-07-02 01:56:07 +00003762 if (fscrypt_inode_uses_fs_layer_crypto(inode)) {
Michael Halcrowc9c74292015-04-12 00:56:10 -04003763 /* We expect the key to be set. */
Jaegeuk Kima7550b32016-07-10 14:01:03 -04003764 BUG_ON(!fscrypt_has_encryption_key(inode));
Eric Biggers834f1562019-12-26 09:41:05 -06003765 err = fscrypt_decrypt_pagecache_blocks(page, blocksize,
3766 bh_offset(bh));
3767 if (err) {
3768 clear_buffer_uptodate(bh);
3769 goto unlock;
3770 }
Michael Halcrowc9c74292015-04-12 00:56:10 -04003771 }
Lukas Czernerd863dc32013-05-27 23:32:35 -04003772 }
Lukas Czernerd863dc32013-05-27 23:32:35 -04003773 if (ext4_should_journal_data(inode)) {
3774 BUFFER_TRACE(bh, "get write access");
3775 err = ext4_journal_get_write_access(handle, bh);
3776 if (err)
3777 goto unlock;
3778 }
Lukas Czernerd863dc32013-05-27 23:32:35 -04003779 zero_user(page, offset, length);
Lukas Czernerd863dc32013-05-27 23:32:35 -04003780 BUFFER_TRACE(bh, "zeroed end of block");
3781
Lukas Czernerd863dc32013-05-27 23:32:35 -04003782 if (ext4_should_journal_data(inode)) {
3783 err = ext4_handle_dirty_metadata(handle, inode, bh);
Lukas Czerner0713ed02013-05-27 23:32:35 -04003784 } else {
jon ernst353eefd2013-07-01 08:12:39 -04003785 err = 0;
Lukas Czernerd863dc32013-05-27 23:32:35 -04003786 mark_buffer_dirty(bh);
Jan Kara3957ef52016-04-24 00:56:05 -04003787 if (ext4_should_order_data(inode))
Ross Zwisler73131fb2019-06-20 17:26:26 -04003788 err = ext4_jbd2_inode_add_write(handle, inode, from,
3789 length);
Lukas Czerner0713ed02013-05-27 23:32:35 -04003790 }
Lukas Czernerd863dc32013-05-27 23:32:35 -04003791
3792unlock:
3793 unlock_page(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03003794 put_page(page);
Lukas Czernerd863dc32013-05-27 23:32:35 -04003795 return err;
3796}
3797
Matthew Wilcox94350ab2014-03-24 15:09:16 -04003798/*
Ross Zwisler923ae0f2015-02-16 15:59:38 -08003799 * ext4_block_zero_page_range() zeros out a mapping of length 'length'
3800 * starting from file offset 'from'. The range to be zero'd must
3801 * be contained with in one block. If the specified range exceeds
3802 * the end of the block it will be shortened to end of the block
Bhaskar Chowdhury3088e5a2021-03-27 16:00:05 +05303803 * that corresponds to 'from'
Ross Zwisler923ae0f2015-02-16 15:59:38 -08003804 */
3805static int ext4_block_zero_page_range(handle_t *handle,
3806 struct address_space *mapping, loff_t from, loff_t length)
3807{
3808 struct inode *inode = mapping->host;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03003809 unsigned offset = from & (PAGE_SIZE-1);
Ross Zwisler923ae0f2015-02-16 15:59:38 -08003810 unsigned blocksize = inode->i_sb->s_blocksize;
3811 unsigned max = blocksize - (offset & (blocksize - 1));
3812
3813 /*
3814 * correct length if it does not fall between
3815 * 'from' and the end of the block
3816 */
3817 if (length > max || length < 0)
3818 length = max;
3819
Jan Kara47e69352016-11-20 18:08:05 -05003820 if (IS_DAX(inode)) {
3821 return iomap_zero_range(inode, from, length, NULL,
3822 &ext4_iomap_ops);
3823 }
Ross Zwisler923ae0f2015-02-16 15:59:38 -08003824 return __ext4_block_zero_page_range(handle, mapping, from, length);
3825}
3826
3827/*
Matthew Wilcox94350ab2014-03-24 15:09:16 -04003828 * ext4_block_truncate_page() zeroes out a mapping from file offset `from'
3829 * up to the end of the block which corresponds to `from'.
3830 * This required during truncate. We need to physically zero the tail end
3831 * of that block so it doesn't yield old data if the file is later grown.
3832 */
Stephen Hemmingerc1978552014-05-12 10:50:23 -04003833static int ext4_block_truncate_page(handle_t *handle,
Matthew Wilcox94350ab2014-03-24 15:09:16 -04003834 struct address_space *mapping, loff_t from)
3835{
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03003836 unsigned offset = from & (PAGE_SIZE-1);
Matthew Wilcox94350ab2014-03-24 15:09:16 -04003837 unsigned length;
3838 unsigned blocksize;
3839 struct inode *inode = mapping->host;
3840
Theodore Ts'o0d068632017-02-14 11:31:15 -05003841 /* If we are processing an encrypted inode during orphan list handling */
Chandan Rajendra592ddec2018-12-12 15:20:10 +05303842 if (IS_ENCRYPTED(inode) && !fscrypt_has_encryption_key(inode))
Theodore Ts'o0d068632017-02-14 11:31:15 -05003843 return 0;
3844
Matthew Wilcox94350ab2014-03-24 15:09:16 -04003845 blocksize = inode->i_sb->s_blocksize;
3846 length = blocksize - (offset & (blocksize - 1));
3847
3848 return ext4_block_zero_page_range(handle, mapping, from, length);
3849}
3850
Lukas Czernera87dd182013-05-27 23:32:35 -04003851int ext4_zero_partial_blocks(handle_t *handle, struct inode *inode,
3852 loff_t lstart, loff_t length)
3853{
3854 struct super_block *sb = inode->i_sb;
3855 struct address_space *mapping = inode->i_mapping;
Lukas Czernere1be3a92013-07-01 08:12:39 -04003856 unsigned partial_start, partial_end;
Lukas Czernera87dd182013-05-27 23:32:35 -04003857 ext4_fsblk_t start, end;
3858 loff_t byte_end = (lstart + length - 1);
3859 int err = 0;
3860
Lukas Czernere1be3a92013-07-01 08:12:39 -04003861 partial_start = lstart & (sb->s_blocksize - 1);
3862 partial_end = byte_end & (sb->s_blocksize - 1);
3863
Lukas Czernera87dd182013-05-27 23:32:35 -04003864 start = lstart >> sb->s_blocksize_bits;
3865 end = byte_end >> sb->s_blocksize_bits;
3866
3867 /* Handle partial zero within the single block */
Lukas Czernere1be3a92013-07-01 08:12:39 -04003868 if (start == end &&
3869 (partial_start || (partial_end != sb->s_blocksize - 1))) {
Lukas Czernera87dd182013-05-27 23:32:35 -04003870 err = ext4_block_zero_page_range(handle, mapping,
3871 lstart, length);
3872 return err;
3873 }
3874 /* Handle partial zero out on the start of the range */
Lukas Czernere1be3a92013-07-01 08:12:39 -04003875 if (partial_start) {
Lukas Czernera87dd182013-05-27 23:32:35 -04003876 err = ext4_block_zero_page_range(handle, mapping,
3877 lstart, sb->s_blocksize);
3878 if (err)
3879 return err;
3880 }
3881 /* Handle partial zero out on the end of the range */
Lukas Czernere1be3a92013-07-01 08:12:39 -04003882 if (partial_end != sb->s_blocksize - 1)
Lukas Czernera87dd182013-05-27 23:32:35 -04003883 err = ext4_block_zero_page_range(handle, mapping,
Lukas Czernere1be3a92013-07-01 08:12:39 -04003884 byte_end - partial_end,
3885 partial_end + 1);
Lukas Czernera87dd182013-05-27 23:32:35 -04003886 return err;
3887}
3888
Duane Griffin91ef4ca2008-07-11 19:27:31 -04003889int ext4_can_truncate(struct inode *inode)
3890{
Duane Griffin91ef4ca2008-07-11 19:27:31 -04003891 if (S_ISREG(inode->i_mode))
3892 return 1;
3893 if (S_ISDIR(inode->i_mode))
3894 return 1;
3895 if (S_ISLNK(inode->i_mode))
3896 return !ext4_inode_is_fast_symlink(inode);
3897 return 0;
3898}
3899
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003900/*
Jan Kara01127842015-12-07 14:34:49 -05003901 * We have to make sure i_disksize gets properly updated before we truncate
3902 * page cache due to hole punching or zero range. Otherwise i_disksize update
3903 * can get lost as it may have been postponed to submission of writeback but
3904 * that will never happen after we truncate page cache.
3905 */
3906int ext4_update_disksize_before_punch(struct inode *inode, loff_t offset,
3907 loff_t len)
3908{
3909 handle_t *handle;
Harshad Shirwadkar4209ae12020-04-26 18:34:37 -07003910 int ret;
3911
Jan Kara01127842015-12-07 14:34:49 -05003912 loff_t size = i_size_read(inode);
3913
Al Viro59551022016-01-22 15:40:57 -05003914 WARN_ON(!inode_is_locked(inode));
Jan Kara01127842015-12-07 14:34:49 -05003915 if (offset > size || offset + len < size)
3916 return 0;
3917
3918 if (EXT4_I(inode)->i_disksize >= size)
3919 return 0;
3920
3921 handle = ext4_journal_start(inode, EXT4_HT_MISC, 1);
3922 if (IS_ERR(handle))
3923 return PTR_ERR(handle);
3924 ext4_update_i_disksize(inode, size);
Harshad Shirwadkar4209ae12020-04-26 18:34:37 -07003925 ret = ext4_mark_inode_dirty(handle, inode);
Jan Kara01127842015-12-07 14:34:49 -05003926 ext4_journal_stop(handle);
3927
Harshad Shirwadkar4209ae12020-04-26 18:34:37 -07003928 return ret;
Jan Kara01127842015-12-07 14:34:49 -05003929}
3930
Ross Zwislerb1f38212018-09-11 13:31:16 -04003931static void ext4_wait_dax_page(struct ext4_inode_info *ei)
Ross Zwisler430657b2018-07-29 17:00:22 -04003932{
Ross Zwisler430657b2018-07-29 17:00:22 -04003933 up_write(&ei->i_mmap_sem);
3934 schedule();
3935 down_write(&ei->i_mmap_sem);
3936}
3937
3938int ext4_break_layouts(struct inode *inode)
3939{
3940 struct ext4_inode_info *ei = EXT4_I(inode);
3941 struct page *page;
Ross Zwisler430657b2018-07-29 17:00:22 -04003942 int error;
3943
3944 if (WARN_ON_ONCE(!rwsem_is_locked(&ei->i_mmap_sem)))
3945 return -EINVAL;
3946
3947 do {
Ross Zwisler430657b2018-07-29 17:00:22 -04003948 page = dax_layout_busy_page(inode->i_mapping);
3949 if (!page)
3950 return 0;
3951
3952 error = ___wait_var_event(&page->_refcount,
3953 atomic_read(&page->_refcount) == 1,
3954 TASK_INTERRUPTIBLE, 0, 0,
Ross Zwislerb1f38212018-09-11 13:31:16 -04003955 ext4_wait_dax_page(ei));
3956 } while (error == 0);
Ross Zwisler430657b2018-07-29 17:00:22 -04003957
3958 return error;
3959}
3960
Jan Kara01127842015-12-07 14:34:49 -05003961/*
Ross Zwislercca32b72016-09-22 11:49:38 -04003962 * ext4_punch_hole: punches a hole in a file by releasing the blocks
Allison Hendersona4bb6b62011-05-25 07:41:50 -04003963 * associated with the given offset and length
3964 *
3965 * @inode: File inode
3966 * @offset: The offset where the hole will begin
3967 * @len: The length of the hole
3968 *
Anatol Pomozov4907cb72012-09-01 10:31:09 -07003969 * Returns: 0 on success or negative on failure
Allison Hendersona4bb6b62011-05-25 07:41:50 -04003970 */
3971
Ashish Sangwanaeb28172013-07-01 08:12:38 -04003972int ext4_punch_hole(struct inode *inode, loff_t offset, loff_t length)
Allison Hendersona4bb6b62011-05-25 07:41:50 -04003973{
Theodore Ts'o26a4c0c2013-04-03 12:45:17 -04003974 struct super_block *sb = inode->i_sb;
3975 ext4_lblk_t first_block, stop_block;
3976 struct address_space *mapping = inode->i_mapping;
Lukas Czernera87dd182013-05-27 23:32:35 -04003977 loff_t first_block_offset, last_block_offset;
Theodore Ts'o26a4c0c2013-04-03 12:45:17 -04003978 handle_t *handle;
3979 unsigned int credits;
Harshad Shirwadkar4209ae12020-04-26 18:34:37 -07003980 int ret = 0, ret2 = 0;
Theodore Ts'o26a4c0c2013-04-03 12:45:17 -04003981
Lukas Czernerb8a86842014-03-18 18:05:35 -04003982 trace_ext4_punch_hole(inode, offset, length, 0);
Zheng Liuaaddea82013-01-16 20:21:26 -05003983
Theodore Ts'oc1e82202019-08-23 22:38:00 -04003984 ext4_clear_inode_state(inode, EXT4_STATE_MAY_INLINE_DATA);
3985 if (ext4_has_inline_data(inode)) {
3986 down_write(&EXT4_I(inode)->i_mmap_sem);
3987 ret = ext4_convert_inline_data(inode);
3988 up_write(&EXT4_I(inode)->i_mmap_sem);
3989 if (ret)
3990 return ret;
3991 }
3992
Theodore Ts'o26a4c0c2013-04-03 12:45:17 -04003993 /*
3994 * Write out all dirty pages to avoid race conditions
3995 * Then release them.
3996 */
Ross Zwislercca32b72016-09-22 11:49:38 -04003997 if (mapping_tagged(mapping, PAGECACHE_TAG_DIRTY)) {
Theodore Ts'o26a4c0c2013-04-03 12:45:17 -04003998 ret = filemap_write_and_wait_range(mapping, offset,
3999 offset + length - 1);
4000 if (ret)
4001 return ret;
4002 }
4003
Al Viro59551022016-01-22 15:40:57 -05004004 inode_lock(inode);
Lukas Czerner9ef06ce2014-04-12 09:47:00 -04004005
Theodore Ts'o26a4c0c2013-04-03 12:45:17 -04004006 /* No need to punch hole beyond i_size */
4007 if (offset >= inode->i_size)
4008 goto out_mutex;
4009
4010 /*
4011 * If the hole extends beyond i_size, set the hole
4012 * to end after the page that contains i_size
4013 */
4014 if (offset + length > inode->i_size) {
4015 length = inode->i_size +
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03004016 PAGE_SIZE - (inode->i_size & (PAGE_SIZE - 1)) -
Theodore Ts'o26a4c0c2013-04-03 12:45:17 -04004017 offset;
4018 }
4019
Jan Karaa3612932013-08-16 21:19:41 -04004020 if (offset & (sb->s_blocksize - 1) ||
4021 (offset + length) & (sb->s_blocksize - 1)) {
4022 /*
4023 * Attach jinode to inode for jbd2 if we do any zeroing of
4024 * partial block
4025 */
4026 ret = ext4_inode_attach_jinode(inode);
4027 if (ret < 0)
4028 goto out_mutex;
4029
4030 }
4031
Jan Karaea3d7202015-12-07 14:28:03 -05004032 /* Wait all existing dio workers, newcomers will block on i_mutex */
Jan Karaea3d7202015-12-07 14:28:03 -05004033 inode_dio_wait(inode);
4034
4035 /*
4036 * Prevent page faults from reinstantiating pages we have released from
4037 * page cache.
4038 */
4039 down_write(&EXT4_I(inode)->i_mmap_sem);
Ross Zwisler430657b2018-07-29 17:00:22 -04004040
4041 ret = ext4_break_layouts(inode);
4042 if (ret)
4043 goto out_dio;
4044
Lukas Czernera87dd182013-05-27 23:32:35 -04004045 first_block_offset = round_up(offset, sb->s_blocksize);
4046 last_block_offset = round_down((offset + length), sb->s_blocksize) - 1;
Theodore Ts'o26a4c0c2013-04-03 12:45:17 -04004047
Lukas Czernera87dd182013-05-27 23:32:35 -04004048 /* Now release the pages and zero block aligned part of pages*/
Jan Kara01127842015-12-07 14:34:49 -05004049 if (last_block_offset > first_block_offset) {
4050 ret = ext4_update_disksize_before_punch(inode, offset, length);
4051 if (ret)
4052 goto out_dio;
Lukas Czernera87dd182013-05-27 23:32:35 -04004053 truncate_pagecache_range(inode, first_block_offset,
4054 last_block_offset);
Jan Kara01127842015-12-07 14:34:49 -05004055 }
Theodore Ts'o26a4c0c2013-04-03 12:45:17 -04004056
4057 if (ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS))
4058 credits = ext4_writepage_trans_blocks(inode);
4059 else
4060 credits = ext4_blocks_for_truncate(inode);
4061 handle = ext4_journal_start(inode, EXT4_HT_TRUNCATE, credits);
4062 if (IS_ERR(handle)) {
4063 ret = PTR_ERR(handle);
4064 ext4_std_error(sb, ret);
4065 goto out_dio;
4066 }
4067
Lukas Czernera87dd182013-05-27 23:32:35 -04004068 ret = ext4_zero_partial_blocks(handle, inode, offset,
4069 length);
4070 if (ret)
4071 goto out_stop;
Theodore Ts'o26a4c0c2013-04-03 12:45:17 -04004072
4073 first_block = (offset + sb->s_blocksize - 1) >>
4074 EXT4_BLOCK_SIZE_BITS(sb);
4075 stop_block = (offset + length) >> EXT4_BLOCK_SIZE_BITS(sb);
4076
Lukas Czernereee597a2018-05-13 19:28:35 -04004077 /* If there are blocks to remove, do it */
4078 if (stop_block > first_block) {
Theodore Ts'o26a4c0c2013-04-03 12:45:17 -04004079
Lukas Czernereee597a2018-05-13 19:28:35 -04004080 down_write(&EXT4_I(inode)->i_data_sem);
brookxu27bc4462020-08-17 15:36:15 +08004081 ext4_discard_preallocations(inode, 0);
Theodore Ts'o26a4c0c2013-04-03 12:45:17 -04004082
Lukas Czernereee597a2018-05-13 19:28:35 -04004083 ret = ext4_es_remove_extent(inode, first_block,
4084 stop_block - first_block);
4085 if (ret) {
4086 up_write(&EXT4_I(inode)->i_data_sem);
4087 goto out_stop;
4088 }
4089
4090 if (ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS))
4091 ret = ext4_ext_remove_space(inode, first_block,
4092 stop_block - 1);
4093 else
4094 ret = ext4_ind_remove_space(handle, inode, first_block,
4095 stop_block);
4096
Theodore Ts'o26a4c0c2013-04-03 12:45:17 -04004097 up_write(&EXT4_I(inode)->i_data_sem);
Theodore Ts'o26a4c0c2013-04-03 12:45:17 -04004098 }
Harshad Shirwadkara80f7fc2020-11-05 19:58:53 -08004099 ext4_fc_track_range(handle, inode, first_block, stop_block);
Theodore Ts'o26a4c0c2013-04-03 12:45:17 -04004100 if (IS_SYNC(inode))
4101 ext4_handle_sync(handle);
Maxim Patlasove251f9b2014-02-20 16:58:05 -05004102
Deepa Dinamanieeca7ea2016-11-14 21:40:10 -05004103 inode->i_mtime = inode->i_ctime = current_time(inode);
Harshad Shirwadkar4209ae12020-04-26 18:34:37 -07004104 ret2 = ext4_mark_inode_dirty(handle, inode);
4105 if (unlikely(ret2))
4106 ret = ret2;
Jan Kara67a7d5f2017-05-29 13:24:55 -04004107 if (ret >= 0)
4108 ext4_update_inode_fsync_trans(handle, inode, 1);
Theodore Ts'o26a4c0c2013-04-03 12:45:17 -04004109out_stop:
4110 ext4_journal_stop(handle);
4111out_dio:
Jan Karaea3d7202015-12-07 14:28:03 -05004112 up_write(&EXT4_I(inode)->i_mmap_sem);
Theodore Ts'o26a4c0c2013-04-03 12:45:17 -04004113out_mutex:
Al Viro59551022016-01-22 15:40:57 -05004114 inode_unlock(inode);
Theodore Ts'o26a4c0c2013-04-03 12:45:17 -04004115 return ret;
Allison Hendersona4bb6b62011-05-25 07:41:50 -04004116}
4117
Jan Karaa3612932013-08-16 21:19:41 -04004118int ext4_inode_attach_jinode(struct inode *inode)
4119{
4120 struct ext4_inode_info *ei = EXT4_I(inode);
4121 struct jbd2_inode *jinode;
4122
4123 if (ei->jinode || !EXT4_SB(inode->i_sb)->s_journal)
4124 return 0;
4125
4126 jinode = jbd2_alloc_inode(GFP_KERNEL);
4127 spin_lock(&inode->i_lock);
4128 if (!ei->jinode) {
4129 if (!jinode) {
4130 spin_unlock(&inode->i_lock);
4131 return -ENOMEM;
4132 }
4133 ei->jinode = jinode;
4134 jbd2_journal_init_jbd_inode(ei->jinode, inode);
4135 jinode = NULL;
4136 }
4137 spin_unlock(&inode->i_lock);
4138 if (unlikely(jinode != NULL))
4139 jbd2_free_inode(jinode);
4140 return 0;
4141}
4142
Allison Hendersona4bb6b62011-05-25 07:41:50 -04004143/*
Mingming Cao617ba132006-10-11 01:20:53 -07004144 * ext4_truncate()
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004145 *
Mingming Cao617ba132006-10-11 01:20:53 -07004146 * We block out ext4_get_block() block instantiations across the entire
4147 * transaction, and VFS/VM ensures that ext4_truncate() cannot run
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004148 * simultaneously on behalf of the same inode.
4149 *
Justin P. Mattock42b2aa82011-11-28 20:31:00 -08004150 * As we work through the truncate and commit bits of it to the journal there
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004151 * is one core, guiding principle: the file's tree must always be consistent on
4152 * disk. We must be able to restart the truncate after a crash.
4153 *
4154 * The file's tree may be transiently inconsistent in memory (although it
4155 * probably isn't), but whenever we close off and commit a journal transaction,
4156 * the contents of (the filesystem + the journal) must be consistent and
4157 * restartable. It's pretty simple, really: bottom up, right to left (although
4158 * left-to-right works OK too).
4159 *
4160 * Note that at recovery time, journal replay occurs *before* the restart of
4161 * truncate against the orphan inode list.
4162 *
4163 * The committed inode has the new, desired i_size (which is the same as
Mingming Cao617ba132006-10-11 01:20:53 -07004164 * i_disksize in this case). After a crash, ext4_orphan_cleanup() will see
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004165 * that this inode's truncate did not complete and it will again call
Mingming Cao617ba132006-10-11 01:20:53 -07004166 * ext4_truncate() to have another go. So there will be instantiated blocks
4167 * to the right of the truncation point in a crashed ext4 filesystem. But
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004168 * that's fine - as long as they are linked from the inode, the post-crash
Mingming Cao617ba132006-10-11 01:20:53 -07004169 * ext4_truncate() run will find them and release them.
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004170 */
Theodore Ts'o2c98eb52016-11-13 22:02:26 -05004171int ext4_truncate(struct inode *inode)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004172{
Theodore Ts'o819c4922013-04-03 12:47:17 -04004173 struct ext4_inode_info *ei = EXT4_I(inode);
4174 unsigned int credits;
Harshad Shirwadkar4209ae12020-04-26 18:34:37 -07004175 int err = 0, err2;
Theodore Ts'o819c4922013-04-03 12:47:17 -04004176 handle_t *handle;
4177 struct address_space *mapping = inode->i_mapping;
Theodore Ts'o819c4922013-04-03 12:47:17 -04004178
Theodore Ts'o19b5ef62013-04-03 21:58:52 -04004179 /*
4180 * There is a possibility that we're either freeing the inode
Matthew Wilcoxe04027e2014-03-24 15:15:07 -04004181 * or it's a completely new inode. In those cases we might not
Theodore Ts'o19b5ef62013-04-03 21:58:52 -04004182 * have i_mutex locked because it's not necessary.
4183 */
4184 if (!(inode->i_state & (I_NEW|I_FREEING)))
Al Viro59551022016-01-22 15:40:57 -05004185 WARN_ON(!inode_is_locked(inode));
Jiaying Zhang0562e0b2011-03-21 21:38:05 -04004186 trace_ext4_truncate_enter(inode);
4187
Duane Griffin91ef4ca2008-07-11 19:27:31 -04004188 if (!ext4_can_truncate(inode))
zhengliang9a5d2652020-07-01 16:30:27 +08004189 goto out_trace;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004190
Theodore Ts'o5534fb52009-09-17 09:34:16 -04004191 if (inode->i_size == 0 && !test_opt(inode->i_sb, NO_AUTO_DA_ALLOC))
Theodore Ts'o19f5fb72010-01-24 14:34:07 -05004192 ext4_set_inode_state(inode, EXT4_STATE_DA_ALLOC_CLOSE);
Theodore Ts'o7d8f9f72009-02-24 08:21:14 -05004193
Tao Maaef1c852012-12-10 14:06:02 -05004194 if (ext4_has_inline_data(inode)) {
4195 int has_inline = 1;
4196
Theodore Ts'o01daf942017-01-22 19:35:49 -05004197 err = ext4_inline_data_truncate(inode, &has_inline);
zhengliang9a5d2652020-07-01 16:30:27 +08004198 if (err || has_inline)
4199 goto out_trace;
Tao Maaef1c852012-12-10 14:06:02 -05004200 }
4201
Jan Karaa3612932013-08-16 21:19:41 -04004202 /* If we zero-out tail of the page, we have to create jinode for jbd2 */
4203 if (inode->i_size & (inode->i_sb->s_blocksize - 1)) {
4204 if (ext4_inode_attach_jinode(inode) < 0)
zhengliang9a5d2652020-07-01 16:30:27 +08004205 goto out_trace;
Jan Karaa3612932013-08-16 21:19:41 -04004206 }
4207
Amir Goldsteinff9893d2011-06-27 16:36:31 -04004208 if (ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS))
Theodore Ts'o819c4922013-04-03 12:47:17 -04004209 credits = ext4_writepage_trans_blocks(inode);
Amir Goldsteinff9893d2011-06-27 16:36:31 -04004210 else
Theodore Ts'o819c4922013-04-03 12:47:17 -04004211 credits = ext4_blocks_for_truncate(inode);
4212
4213 handle = ext4_journal_start(inode, EXT4_HT_TRUNCATE, credits);
zhengliang9a5d2652020-07-01 16:30:27 +08004214 if (IS_ERR(handle)) {
4215 err = PTR_ERR(handle);
4216 goto out_trace;
4217 }
Theodore Ts'o819c4922013-04-03 12:47:17 -04004218
Lukas Czernereb3544c2013-05-27 23:32:35 -04004219 if (inode->i_size & (inode->i_sb->s_blocksize - 1))
4220 ext4_block_truncate_page(handle, mapping, inode->i_size);
Theodore Ts'o819c4922013-04-03 12:47:17 -04004221
4222 /*
4223 * We add the inode to the orphan list, so that if this
4224 * truncate spans multiple transactions, and we crash, we will
4225 * resume the truncate when the filesystem recovers. It also
4226 * marks the inode dirty, to catch the new size.
4227 *
4228 * Implication: the file must always be in a sane, consistent
4229 * truncatable state while each transaction commits.
4230 */
Theodore Ts'o2c98eb52016-11-13 22:02:26 -05004231 err = ext4_orphan_add(handle, inode);
4232 if (err)
Theodore Ts'o819c4922013-04-03 12:47:17 -04004233 goto out_stop;
4234
4235 down_write(&EXT4_I(inode)->i_data_sem);
4236
brookxu27bc4462020-08-17 15:36:15 +08004237 ext4_discard_preallocations(inode, 0);
Theodore Ts'o819c4922013-04-03 12:47:17 -04004238
4239 if (ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS))
Theodore Ts'od0abb362016-11-13 22:02:28 -05004240 err = ext4_ext_truncate(handle, inode);
Theodore Ts'o819c4922013-04-03 12:47:17 -04004241 else
4242 ext4_ind_truncate(handle, inode);
4243
4244 up_write(&ei->i_data_sem);
Theodore Ts'od0abb362016-11-13 22:02:28 -05004245 if (err)
4246 goto out_stop;
Theodore Ts'o819c4922013-04-03 12:47:17 -04004247
4248 if (IS_SYNC(inode))
4249 ext4_handle_sync(handle);
4250
4251out_stop:
4252 /*
4253 * If this was a simple ftruncate() and the file will remain alive,
4254 * then we need to clear up the orphan record which we created above.
4255 * However, if this was a real unlink then we were called by
Wang Shilong58d86a52014-11-25 16:17:29 -05004256 * ext4_evict_inode(), and we allow that function to clean up the
Theodore Ts'o819c4922013-04-03 12:47:17 -04004257 * orphan info for us.
4258 */
4259 if (inode->i_nlink)
4260 ext4_orphan_del(handle, inode);
4261
Deepa Dinamanieeca7ea2016-11-14 21:40:10 -05004262 inode->i_mtime = inode->i_ctime = current_time(inode);
Harshad Shirwadkar4209ae12020-04-26 18:34:37 -07004263 err2 = ext4_mark_inode_dirty(handle, inode);
4264 if (unlikely(err2 && !err))
4265 err = err2;
Theodore Ts'o819c4922013-04-03 12:47:17 -04004266 ext4_journal_stop(handle);
Alex Tomasa86c6182006-10-11 01:21:03 -07004267
zhengliang9a5d2652020-07-01 16:30:27 +08004268out_trace:
Jiaying Zhang0562e0b2011-03-21 21:38:05 -04004269 trace_ext4_truncate_exit(inode);
Theodore Ts'o2c98eb52016-11-13 22:02:26 -05004270 return err;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004271}
4272
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004273/*
Mingming Cao617ba132006-10-11 01:20:53 -07004274 * ext4_get_inode_loc returns with an extra refcount against the inode's
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004275 * underlying buffer_head on success. If 'in_mem' is true, we have all
4276 * data in memory that is needed to recreate the on-disk version of this
4277 * inode.
4278 */
Harshad Shirwadkar8016e292020-10-15 13:37:59 -07004279static int __ext4_get_inode_loc(struct super_block *sb, unsigned long ino,
4280 struct ext4_iloc *iloc, int in_mem,
4281 ext4_fsblk_t *ret_block)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004282{
Theodore Ts'o240799c2008-10-09 23:53:47 -04004283 struct ext4_group_desc *gdp;
4284 struct buffer_head *bh;
Theodore Ts'o240799c2008-10-09 23:53:47 -04004285 ext4_fsblk_t block;
Linus Torvalds02f03c42019-09-29 17:59:23 -07004286 struct blk_plug plug;
Theodore Ts'o240799c2008-10-09 23:53:47 -04004287 int inodes_per_block, inode_offset;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004288
Aneesh Kumar K.V3a06d772008-11-22 15:04:59 -05004289 iloc->bh = NULL;
Harshad Shirwadkar8016e292020-10-15 13:37:59 -07004290 if (ino < EXT4_ROOT_INO ||
4291 ino > le32_to_cpu(EXT4_SB(sb)->s_es->s_inodes_count))
Darrick J. Wong6a797d22015-10-17 16:16:04 -04004292 return -EFSCORRUPTED;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004293
Harshad Shirwadkar8016e292020-10-15 13:37:59 -07004294 iloc->block_group = (ino - 1) / EXT4_INODES_PER_GROUP(sb);
Theodore Ts'o240799c2008-10-09 23:53:47 -04004295 gdp = ext4_get_group_desc(sb, iloc->block_group, NULL);
4296 if (!gdp)
4297 return -EIO;
4298
4299 /*
4300 * Figure out the offset within the block group inode table
4301 */
Tao Ma00d09882011-05-09 10:26:41 -04004302 inodes_per_block = EXT4_SB(sb)->s_inodes_per_block;
Harshad Shirwadkar8016e292020-10-15 13:37:59 -07004303 inode_offset = ((ino - 1) %
Theodore Ts'o240799c2008-10-09 23:53:47 -04004304 EXT4_INODES_PER_GROUP(sb));
4305 block = ext4_inode_table(sb, gdp) + (inode_offset / inodes_per_block);
4306 iloc->offset = (inode_offset % inodes_per_block) * EXT4_INODE_SIZE(sb);
4307
4308 bh = sb_getblk(sb, block);
Wang Shilongaebf0242013-01-12 16:28:47 -05004309 if (unlikely(!bh))
Theodore Ts'o860d21e2013-01-12 16:19:36 -05004310 return -ENOMEM;
Theodore Ts'o46f870d62019-11-21 13:09:43 -05004311 if (ext4_simulate_fail(sb, EXT4_SIM_INODE_EIO))
4312 goto simulate_eio;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004313 if (!buffer_uptodate(bh)) {
4314 lock_buffer(bh);
Hidehiro Kawai9c83a922008-07-26 16:39:26 -04004315
zhangyi (F)60c776e2020-09-24 15:33:34 +08004316 if (ext4_buffer_uptodate(bh)) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004317 /* someone brought it uptodate while we waited */
4318 unlock_buffer(bh);
4319 goto has_buffer;
4320 }
4321
4322 /*
4323 * If we have all information of the inode in memory and this
4324 * is the only valid inode in the block, we need not read the
4325 * block.
4326 */
4327 if (in_mem) {
4328 struct buffer_head *bitmap_bh;
Theodore Ts'o240799c2008-10-09 23:53:47 -04004329 int i, start;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004330
Theodore Ts'o240799c2008-10-09 23:53:47 -04004331 start = inode_offset & ~(inodes_per_block - 1);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004332
4333 /* Is the inode bitmap in cache? */
Theodore Ts'o240799c2008-10-09 23:53:47 -04004334 bitmap_bh = sb_getblk(sb, ext4_inode_bitmap(sb, gdp));
Wang Shilongaebf0242013-01-12 16:28:47 -05004335 if (unlikely(!bitmap_bh))
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004336 goto make_io;
4337
4338 /*
4339 * If the inode bitmap isn't in cache then the
4340 * optimisation may end up performing two reads instead
4341 * of one, so skip it.
4342 */
4343 if (!buffer_uptodate(bitmap_bh)) {
4344 brelse(bitmap_bh);
4345 goto make_io;
4346 }
Theodore Ts'o240799c2008-10-09 23:53:47 -04004347 for (i = start; i < start + inodes_per_block; i++) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004348 if (i == inode_offset)
4349 continue;
Mingming Cao617ba132006-10-11 01:20:53 -07004350 if (ext4_test_bit(i, bitmap_bh->b_data))
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004351 break;
4352 }
4353 brelse(bitmap_bh);
Theodore Ts'o240799c2008-10-09 23:53:47 -04004354 if (i == start + inodes_per_block) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004355 /* all other inodes are free, so skip I/O */
4356 memset(bh->b_data, 0, bh->b_size);
4357 set_buffer_uptodate(bh);
4358 unlock_buffer(bh);
4359 goto has_buffer;
4360 }
4361 }
4362
4363make_io:
4364 /*
Theodore Ts'o240799c2008-10-09 23:53:47 -04004365 * If we need to do any I/O, try to pre-readahead extra
4366 * blocks from the inode table.
4367 */
Linus Torvalds02f03c42019-09-29 17:59:23 -07004368 blk_start_plug(&plug);
Theodore Ts'o240799c2008-10-09 23:53:47 -04004369 if (EXT4_SB(sb)->s_inode_readahead_blks) {
4370 ext4_fsblk_t b, end, table;
4371 unsigned num;
Theodore Ts'o0d606e2c2013-04-23 08:59:35 -04004372 __u32 ra_blks = EXT4_SB(sb)->s_inode_readahead_blks;
Theodore Ts'o240799c2008-10-09 23:53:47 -04004373
4374 table = ext4_inode_table(sb, gdp);
Theodore Ts'ob713a5e2009-03-31 09:11:14 -04004375 /* s_inode_readahead_blks is always a power of 2 */
Theodore Ts'o0d606e2c2013-04-23 08:59:35 -04004376 b = block & ~((ext4_fsblk_t) ra_blks - 1);
Theodore Ts'o240799c2008-10-09 23:53:47 -04004377 if (table > b)
4378 b = table;
Theodore Ts'o0d606e2c2013-04-23 08:59:35 -04004379 end = b + ra_blks;
Theodore Ts'o240799c2008-10-09 23:53:47 -04004380 num = EXT4_INODES_PER_GROUP(sb);
Darrick J. Wongfeb0ab32012-04-29 18:45:10 -04004381 if (ext4_has_group_desc_csum(sb))
Aneesh Kumar K.V560671a2009-01-05 22:20:24 -05004382 num -= ext4_itable_unused_count(sb, gdp);
Theodore Ts'o240799c2008-10-09 23:53:47 -04004383 table += num / inodes_per_block;
4384 if (end > table)
4385 end = table;
4386 while (b <= end)
zhangyi (F)5df1d412020-09-24 15:33:35 +08004387 ext4_sb_breadahead_unmovable(sb, b++);
Theodore Ts'o240799c2008-10-09 23:53:47 -04004388 }
4389
4390 /*
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004391 * There are other valid inodes in the buffer, this inode
4392 * has in-inode xattrs, or we don't have this inode in memory.
4393 * Read the block from disk.
4394 */
Harshad Shirwadkar8016e292020-10-15 13:37:59 -07004395 trace_ext4_load_inode(sb, ino);
zhangyi (F)2d069c02020-09-24 15:33:33 +08004396 ext4_read_bh_nowait(bh, REQ_META | REQ_PRIO, NULL);
Linus Torvalds02f03c42019-09-29 17:59:23 -07004397 blk_finish_plug(&plug);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004398 wait_on_buffer(bh);
4399 if (!buffer_uptodate(bh)) {
Theodore Ts'o46f870d62019-11-21 13:09:43 -05004400 simulate_eio:
Harshad Shirwadkar8016e292020-10-15 13:37:59 -07004401 if (ret_block)
4402 *ret_block = block;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004403 brelse(bh);
4404 return -EIO;
4405 }
4406 }
4407has_buffer:
4408 iloc->bh = bh;
4409 return 0;
4410}
4411
Harshad Shirwadkar8016e292020-10-15 13:37:59 -07004412static int __ext4_get_inode_loc_noinmem(struct inode *inode,
4413 struct ext4_iloc *iloc)
4414{
4415 ext4_fsblk_t err_blk;
4416 int ret;
4417
4418 ret = __ext4_get_inode_loc(inode->i_sb, inode->i_ino, iloc, 0,
4419 &err_blk);
4420
4421 if (ret == -EIO)
4422 ext4_error_inode_block(inode, err_blk, EIO,
4423 "unable to read itable block");
4424
4425 return ret;
4426}
4427
Mingming Cao617ba132006-10-11 01:20:53 -07004428int ext4_get_inode_loc(struct inode *inode, struct ext4_iloc *iloc)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004429{
Harshad Shirwadkar8016e292020-10-15 13:37:59 -07004430 ext4_fsblk_t err_blk;
4431 int ret;
4432
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004433 /* We have all inode data except xattrs in memory here. */
Harshad Shirwadkar8016e292020-10-15 13:37:59 -07004434 ret = __ext4_get_inode_loc(inode->i_sb, inode->i_ino, iloc,
4435 !ext4_test_inode_state(inode, EXT4_STATE_XATTR), &err_blk);
4436
4437 if (ret == -EIO)
4438 ext4_error_inode_block(inode, err_blk, EIO,
4439 "unable to read itable block");
4440
4441 return ret;
4442}
4443
4444
4445int ext4_get_fc_inode_loc(struct super_block *sb, unsigned long ino,
4446 struct ext4_iloc *iloc)
4447{
4448 return __ext4_get_inode_loc(sb, ino, iloc, 0, NULL);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004449}
4450
Ira Weinya8ab6d32020-05-28 07:59:58 -07004451static bool ext4_should_enable_dax(struct inode *inode)
Ross Zwisler66425862017-10-12 12:00:59 -04004452{
Ira Weinya8ab6d32020-05-28 07:59:58 -07004453 struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb);
4454
Ira Weiny9cb20f92020-05-28 08:00:00 -07004455 if (test_opt2(inode->i_sb, DAX_NEVER))
Ross Zwisler66425862017-10-12 12:00:59 -04004456 return false;
4457 if (!S_ISREG(inode->i_mode))
4458 return false;
4459 if (ext4_should_journal_data(inode))
4460 return false;
4461 if (ext4_has_inline_data(inode))
4462 return false;
Chandan Rajendra592ddec2018-12-12 15:20:10 +05304463 if (ext4_test_inode_flag(inode, EXT4_INODE_ENCRYPT))
Ross Zwisler66425862017-10-12 12:00:59 -04004464 return false;
Eric Biggersc93d8f82019-07-22 09:26:24 -07004465 if (ext4_test_inode_flag(inode, EXT4_INODE_VERITY))
4466 return false;
Ira Weinya8ab6d32020-05-28 07:59:58 -07004467 if (!test_bit(EXT4_FLAGS_BDEV_IS_DAX, &sbi->s_ext4_flags))
4468 return false;
4469 if (test_opt(inode->i_sb, DAX_ALWAYS))
4470 return true;
4471
Ira Weinyb383a732020-05-28 08:00:02 -07004472 return ext4_test_inode_flag(inode, EXT4_INODE_DAX);
Ross Zwisler66425862017-10-12 12:00:59 -04004473}
4474
Ira Weiny043546e2020-05-28 07:59:59 -07004475void ext4_set_inode_flags(struct inode *inode, bool init)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004476{
Mingming Cao617ba132006-10-11 01:20:53 -07004477 unsigned int flags = EXT4_I(inode)->i_flags;
Theodore Ts'o00a1a052014-03-30 10:20:01 -04004478 unsigned int new_fl = 0;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004479
Ira Weiny043546e2020-05-28 07:59:59 -07004480 WARN_ON_ONCE(IS_DAX(inode) && init);
4481
Mingming Cao617ba132006-10-11 01:20:53 -07004482 if (flags & EXT4_SYNC_FL)
Theodore Ts'o00a1a052014-03-30 10:20:01 -04004483 new_fl |= S_SYNC;
Mingming Cao617ba132006-10-11 01:20:53 -07004484 if (flags & EXT4_APPEND_FL)
Theodore Ts'o00a1a052014-03-30 10:20:01 -04004485 new_fl |= S_APPEND;
Mingming Cao617ba132006-10-11 01:20:53 -07004486 if (flags & EXT4_IMMUTABLE_FL)
Theodore Ts'o00a1a052014-03-30 10:20:01 -04004487 new_fl |= S_IMMUTABLE;
Mingming Cao617ba132006-10-11 01:20:53 -07004488 if (flags & EXT4_NOATIME_FL)
Theodore Ts'o00a1a052014-03-30 10:20:01 -04004489 new_fl |= S_NOATIME;
Mingming Cao617ba132006-10-11 01:20:53 -07004490 if (flags & EXT4_DIRSYNC_FL)
Theodore Ts'o00a1a052014-03-30 10:20:01 -04004491 new_fl |= S_DIRSYNC;
Ira Weiny043546e2020-05-28 07:59:59 -07004492
4493 /* Because of the way inode_set_flags() works we must preserve S_DAX
4494 * here if already set. */
4495 new_fl |= (inode->i_flags & S_DAX);
4496 if (init && ext4_should_enable_dax(inode))
Ross Zwisler923ae0f2015-02-16 15:59:38 -08004497 new_fl |= S_DAX;
Ira Weiny043546e2020-05-28 07:59:59 -07004498
Eric Biggers2ee6a572017-10-09 12:15:35 -07004499 if (flags & EXT4_ENCRYPT_FL)
4500 new_fl |= S_ENCRYPTED;
Gabriel Krisman Bertazib886ee32019-04-25 14:12:08 -04004501 if (flags & EXT4_CASEFOLD_FL)
4502 new_fl |= S_CASEFOLD;
Eric Biggersc93d8f82019-07-22 09:26:24 -07004503 if (flags & EXT4_VERITY_FL)
4504 new_fl |= S_VERITY;
Theodore Ts'o5f16f322014-03-24 14:43:12 -04004505 inode_set_flags(inode, new_fl,
Eric Biggers2ee6a572017-10-09 12:15:35 -07004506 S_SYNC|S_APPEND|S_IMMUTABLE|S_NOATIME|S_DIRSYNC|S_DAX|
Eric Biggersc93d8f82019-07-22 09:26:24 -07004507 S_ENCRYPTED|S_CASEFOLD|S_VERITY);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004508}
4509
Aneesh Kumar K.V0fc1b452008-01-28 23:58:26 -05004510static blkcnt_t ext4_inode_blocks(struct ext4_inode *raw_inode,
Theodore Ts'ode9a55b2009-06-14 17:45:34 -04004511 struct ext4_inode_info *ei)
Aneesh Kumar K.V0fc1b452008-01-28 23:58:26 -05004512{
4513 blkcnt_t i_blocks ;
Aneesh Kumar K.V8180a562008-01-28 23:58:27 -05004514 struct inode *inode = &(ei->vfs_inode);
4515 struct super_block *sb = inode->i_sb;
Aneesh Kumar K.V0fc1b452008-01-28 23:58:26 -05004516
Darrick J. Wonge2b911c2015-10-17 16:18:43 -04004517 if (ext4_has_feature_huge_file(sb)) {
Aneesh Kumar K.V0fc1b452008-01-28 23:58:26 -05004518 /* we are using combined 48 bit field */
4519 i_blocks = ((u64)le16_to_cpu(raw_inode->i_blocks_high)) << 32 |
4520 le32_to_cpu(raw_inode->i_blocks_lo);
Theodore Ts'o07a03822010-06-14 09:54:48 -04004521 if (ext4_test_inode_flag(inode, EXT4_INODE_HUGE_FILE)) {
Aneesh Kumar K.V8180a562008-01-28 23:58:27 -05004522 /* i_blocks represent file system block size */
4523 return i_blocks << (inode->i_blkbits - 9);
4524 } else {
4525 return i_blocks;
4526 }
Aneesh Kumar K.V0fc1b452008-01-28 23:58:26 -05004527 } else {
4528 return le32_to_cpu(raw_inode->i_blocks_lo);
4529 }
4530}
Jan Karaff9ddf72007-07-18 09:24:20 -04004531
Theodore Ts'oeb9b5f02018-05-22 17:14:07 -04004532static inline int ext4_iget_extra_inode(struct inode *inode,
Tao Ma152a7b02012-12-02 11:13:24 -05004533 struct ext4_inode *raw_inode,
4534 struct ext4_inode_info *ei)
4535{
4536 __le32 *magic = (void *)raw_inode +
4537 EXT4_GOOD_OLD_INODE_SIZE + ei->i_extra_isize;
Theodore Ts'oeb9b5f02018-05-22 17:14:07 -04004538
Eric Biggers290ab232016-12-01 14:51:58 -05004539 if (EXT4_GOOD_OLD_INODE_SIZE + ei->i_extra_isize + sizeof(__le32) <=
4540 EXT4_INODE_SIZE(inode->i_sb) &&
4541 *magic == cpu_to_le32(EXT4_XATTR_MAGIC)) {
Tao Ma152a7b02012-12-02 11:13:24 -05004542 ext4_set_inode_state(inode, EXT4_STATE_XATTR);
Theodore Ts'oeb9b5f02018-05-22 17:14:07 -04004543 return ext4_find_inline_data_nolock(inode);
Tao Maf19d5872012-12-10 14:05:51 -05004544 } else
4545 EXT4_I(inode)->i_inline_off = 0;
Theodore Ts'oeb9b5f02018-05-22 17:14:07 -04004546 return 0;
Tao Ma152a7b02012-12-02 11:13:24 -05004547}
4548
Li Xi040cb372016-01-08 16:01:21 -05004549int ext4_get_projid(struct inode *inode, kprojid_t *projid)
4550{
Kaho Ng0b7b7772016-09-05 23:11:58 -04004551 if (!ext4_has_feature_project(inode->i_sb))
Li Xi040cb372016-01-08 16:01:21 -05004552 return -EOPNOTSUPP;
4553 *projid = EXT4_I(inode)->i_projid;
4554 return 0;
4555}
4556
Eryu Guane254d1a2018-05-10 11:55:31 -04004557/*
4558 * ext4 has self-managed i_version for ea inodes, it stores the lower 32bit of
4559 * refcount in i_version, so use raw values if inode has EXT4_EA_INODE_FL flag
4560 * set.
4561 */
4562static inline void ext4_inode_set_iversion_queried(struct inode *inode, u64 val)
4563{
4564 if (unlikely(EXT4_I(inode)->i_flags & EXT4_EA_INODE_FL))
4565 inode_set_iversion_raw(inode, val);
4566 else
4567 inode_set_iversion_queried(inode, val);
4568}
4569static inline u64 ext4_inode_peek_iversion(const struct inode *inode)
4570{
4571 if (unlikely(EXT4_I(inode)->i_flags & EXT4_EA_INODE_FL))
4572 return inode_peek_iversion_raw(inode);
4573 else
4574 return inode_peek_iversion(inode);
4575}
4576
Theodore Ts'o8a363972018-12-19 12:29:13 -05004577struct inode *__ext4_iget(struct super_block *sb, unsigned long ino,
4578 ext4_iget_flags flags, const char *function,
4579 unsigned int line)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004580{
Mingming Cao617ba132006-10-11 01:20:53 -07004581 struct ext4_iloc iloc;
4582 struct ext4_inode *raw_inode;
David Howells1d1fe1e2008-02-07 00:15:37 -08004583 struct ext4_inode_info *ei;
Jan Karabd2c38c2021-08-12 15:31:22 +02004584 struct ext4_super_block *es = EXT4_SB(sb)->s_es;
David Howells1d1fe1e2008-02-07 00:15:37 -08004585 struct inode *inode;
Jan Karab436b9b2009-12-08 23:51:10 -05004586 journal_t *journal = EXT4_SB(sb)->s_journal;
David Howells1d1fe1e2008-02-07 00:15:37 -08004587 long ret;
Darrick J. Wong7e6e1ef2016-12-10 09:55:01 -05004588 loff_t size;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004589 int block;
Eric W. Biederman08cefc72012-02-07 15:41:49 -08004590 uid_t i_uid;
4591 gid_t i_gid;
Li Xi040cb372016-01-08 16:01:21 -05004592 projid_t i_projid;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004593
Theodore Ts'o191ce172018-12-31 22:34:31 -05004594 if ((!(flags & EXT4_IGET_SPECIAL) &&
Jan Karabd2c38c2021-08-12 15:31:22 +02004595 ((ino < EXT4_FIRST_INO(sb) && ino != EXT4_ROOT_INO) ||
4596 ino == le32_to_cpu(es->s_usr_quota_inum) ||
4597 ino == le32_to_cpu(es->s_grp_quota_inum) ||
4598 ino == le32_to_cpu(es->s_prj_quota_inum))) ||
Theodore Ts'o8a363972018-12-19 12:29:13 -05004599 (ino < EXT4_ROOT_INO) ||
Jan Karabd2c38c2021-08-12 15:31:22 +02004600 (ino > le32_to_cpu(es->s_inodes_count))) {
Theodore Ts'o8a363972018-12-19 12:29:13 -05004601 if (flags & EXT4_IGET_HANDLE)
4602 return ERR_PTR(-ESTALE);
Jan Kara014c9ca2020-11-27 12:33:57 +01004603 __ext4_error(sb, function, line, false, EFSCORRUPTED, 0,
Theodore Ts'o8a363972018-12-19 12:29:13 -05004604 "inode #%lu: comm %s: iget: illegal inode #",
4605 ino, current->comm);
4606 return ERR_PTR(-EFSCORRUPTED);
4607 }
4608
David Howells1d1fe1e2008-02-07 00:15:37 -08004609 inode = iget_locked(sb, ino);
4610 if (!inode)
4611 return ERR_PTR(-ENOMEM);
4612 if (!(inode->i_state & I_NEW))
4613 return inode;
4614
4615 ei = EXT4_I(inode);
Peter Huewe7dc57612011-02-21 21:01:42 -05004616 iloc.bh = NULL;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004617
Harshad Shirwadkar8016e292020-10-15 13:37:59 -07004618 ret = __ext4_get_inode_loc_noinmem(inode, &iloc);
David Howells1d1fe1e2008-02-07 00:15:37 -08004619 if (ret < 0)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004620 goto bad_inode;
Mingming Cao617ba132006-10-11 01:20:53 -07004621 raw_inode = ext4_raw_inode(&iloc);
Darrick J. Wong814525f2012-04-29 18:31:10 -04004622
Theodore Ts'o8e4b5ea2018-03-29 21:56:09 -04004623 if ((ino == EXT4_ROOT_INO) && (raw_inode->i_links_count == 0)) {
Theodore Ts'o8a363972018-12-19 12:29:13 -05004624 ext4_error_inode(inode, function, line, 0,
4625 "iget: root inode unallocated");
Theodore Ts'o8e4b5ea2018-03-29 21:56:09 -04004626 ret = -EFSCORRUPTED;
4627 goto bad_inode;
4628 }
4629
Theodore Ts'o8a363972018-12-19 12:29:13 -05004630 if ((flags & EXT4_IGET_HANDLE) &&
4631 (raw_inode->i_links_count == 0) && (raw_inode->i_mode == 0)) {
4632 ret = -ESTALE;
4633 goto bad_inode;
4634 }
4635
Darrick J. Wong814525f2012-04-29 18:31:10 -04004636 if (EXT4_INODE_SIZE(inode->i_sb) > EXT4_GOOD_OLD_INODE_SIZE) {
4637 ei->i_extra_isize = le16_to_cpu(raw_inode->i_extra_isize);
4638 if (EXT4_GOOD_OLD_INODE_SIZE + ei->i_extra_isize >
Eric Biggers2dc8d9e2016-12-01 14:43:33 -05004639 EXT4_INODE_SIZE(inode->i_sb) ||
4640 (ei->i_extra_isize & 3)) {
Theodore Ts'o8a363972018-12-19 12:29:13 -05004641 ext4_error_inode(inode, function, line, 0,
4642 "iget: bad extra_isize %u "
4643 "(inode size %u)",
Eric Biggers2dc8d9e2016-12-01 14:43:33 -05004644 ei->i_extra_isize,
4645 EXT4_INODE_SIZE(inode->i_sb));
Darrick J. Wong6a797d22015-10-17 16:16:04 -04004646 ret = -EFSCORRUPTED;
Darrick J. Wong814525f2012-04-29 18:31:10 -04004647 goto bad_inode;
4648 }
4649 } else
4650 ei->i_extra_isize = 0;
4651
4652 /* Precompute checksum seed for inode metadata */
Dmitry Monakhov9aa5d32b2014-10-13 03:36:16 -04004653 if (ext4_has_metadata_csum(sb)) {
Darrick J. Wong814525f2012-04-29 18:31:10 -04004654 struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb);
4655 __u32 csum;
4656 __le32 inum = cpu_to_le32(inode->i_ino);
4657 __le32 gen = raw_inode->i_generation;
4658 csum = ext4_chksum(sbi, sbi->s_csum_seed, (__u8 *)&inum,
4659 sizeof(inum));
4660 ei->i_csum_seed = ext4_chksum(sbi, csum, (__u8 *)&gen,
4661 sizeof(gen));
4662 }
4663
Harshad Shirwadkar8016e292020-10-15 13:37:59 -07004664 if ((!ext4_inode_csum_verify(inode, raw_inode, ei) ||
4665 ext4_simulate_fail(sb, EXT4_SIM_INODE_CRC)) &&
4666 (!(EXT4_SB(sb)->s_mount_state & EXT4_FC_REPLAY))) {
4667 ext4_error_inode_err(inode, function, line, 0,
4668 EFSBADCRC, "iget: checksum invalid");
Darrick J. Wong6a797d22015-10-17 16:16:04 -04004669 ret = -EFSBADCRC;
Darrick J. Wong814525f2012-04-29 18:31:10 -04004670 goto bad_inode;
4671 }
4672
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004673 inode->i_mode = le16_to_cpu(raw_inode->i_mode);
Eric W. Biederman08cefc72012-02-07 15:41:49 -08004674 i_uid = (uid_t)le16_to_cpu(raw_inode->i_uid_low);
4675 i_gid = (gid_t)le16_to_cpu(raw_inode->i_gid_low);
Kaho Ng0b7b7772016-09-05 23:11:58 -04004676 if (ext4_has_feature_project(sb) &&
Li Xi040cb372016-01-08 16:01:21 -05004677 EXT4_INODE_SIZE(sb) > EXT4_GOOD_OLD_INODE_SIZE &&
4678 EXT4_FITS_IN_INODE(raw_inode, ei, i_projid))
4679 i_projid = (projid_t)le32_to_cpu(raw_inode->i_projid);
4680 else
4681 i_projid = EXT4_DEF_PROJID;
4682
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04004683 if (!(test_opt(inode->i_sb, NO_UID32))) {
Eric W. Biederman08cefc72012-02-07 15:41:49 -08004684 i_uid |= le16_to_cpu(raw_inode->i_uid_high) << 16;
4685 i_gid |= le16_to_cpu(raw_inode->i_gid_high) << 16;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004686 }
Eric W. Biederman08cefc72012-02-07 15:41:49 -08004687 i_uid_write(inode, i_uid);
4688 i_gid_write(inode, i_gid);
Li Xi040cb372016-01-08 16:01:21 -05004689 ei->i_projid = make_kprojid(&init_user_ns, i_projid);
Miklos Szeredibfe86842011-10-28 14:13:29 +02004690 set_nlink(inode, le16_to_cpu(raw_inode->i_links_count));
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004691
Theodore Ts'o353eb832011-01-10 12:18:25 -05004692 ext4_clear_state_flags(ei); /* Only relevant on 32-bit archs */
Tao Ma67cf5b02012-12-10 14:04:46 -05004693 ei->i_inline_off = 0;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004694 ei->i_dir_start_lookup = 0;
4695 ei->i_dtime = le32_to_cpu(raw_inode->i_dtime);
4696 /* We now have enough fields to check if the inode was active or not.
4697 * This is needed because nfsd might try to access dead inodes
4698 * the test is that same one that e2fsck uses
4699 * NeilBrown 1999oct15
4700 */
4701 if (inode->i_nlink == 0) {
Dr. Tilmann Bubeck393d1d12013-04-08 12:54:05 -04004702 if ((inode->i_mode == 0 ||
4703 !(EXT4_SB(inode->i_sb)->s_mount_state & EXT4_ORPHAN_FS)) &&
4704 ino != EXT4_BOOT_LOADER_INO) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004705 /* this inode is deleted */
David Howells1d1fe1e2008-02-07 00:15:37 -08004706 ret = -ESTALE;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004707 goto bad_inode;
4708 }
4709 /* The only unlinked inodes we let through here have
4710 * valid i_mode and are being read by the orphan
4711 * recovery code: that's fine, we're about to complete
Dr. Tilmann Bubeck393d1d12013-04-08 12:54:05 -04004712 * the process of deleting those.
4713 * OR it is the EXT4_BOOT_LOADER_INO which is
4714 * not initialized on a new filesystem. */
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004715 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004716 ei->i_flags = le32_to_cpu(raw_inode->i_flags);
Ira Weiny043546e2020-05-28 07:59:59 -07004717 ext4_set_inode_flags(inode, true);
Aneesh Kumar K.V0fc1b452008-01-28 23:58:26 -05004718 inode->i_blocks = ext4_inode_blocks(raw_inode, ei);
Aneesh Kumar K.V7973c0c2008-01-28 23:58:27 -05004719 ei->i_file_acl = le32_to_cpu(raw_inode->i_file_acl_lo);
Darrick J. Wonge2b911c2015-10-17 16:18:43 -04004720 if (ext4_has_feature_64bit(sb))
Badari Pulavartya1ddeb72006-10-11 01:21:09 -07004721 ei->i_file_acl |=
4722 ((__u64)le16_to_cpu(raw_inode->i_file_acl_high)) << 32;
Artem Blagodarenkoe08ac992017-06-21 21:09:57 -04004723 inode->i_size = ext4_isize(sb, raw_inode);
Darrick J. Wong7e6e1ef2016-12-10 09:55:01 -05004724 if ((size = i_size_read(inode)) < 0) {
Theodore Ts'o8a363972018-12-19 12:29:13 -05004725 ext4_error_inode(inode, function, line, 0,
4726 "iget: bad i_size value: %lld", size);
Darrick J. Wong7e6e1ef2016-12-10 09:55:01 -05004727 ret = -EFSCORRUPTED;
4728 goto bad_inode;
4729 }
Jan Kara48a34312020-02-10 15:43:16 +01004730 /*
4731 * If dir_index is not enabled but there's dir with INDEX flag set,
4732 * we'd normally treat htree data as empty space. But with metadata
4733 * checksumming that corrupts checksums so forbid that.
4734 */
4735 if (!ext4_has_feature_dir_index(sb) && ext4_has_metadata_csum(sb) &&
4736 ext4_test_inode_flag(inode, EXT4_INODE_INDEX)) {
4737 ext4_error_inode(inode, function, line, 0,
4738 "iget: Dir with htree data on filesystem without dir_index feature.");
4739 ret = -EFSCORRUPTED;
4740 goto bad_inode;
4741 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004742 ei->i_disksize = inode->i_size;
Dmitry Monakhova9e7f442009-12-14 15:21:14 +03004743#ifdef CONFIG_QUOTA
4744 ei->i_reserved_quota = 0;
4745#endif
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004746 inode->i_generation = le32_to_cpu(raw_inode->i_generation);
4747 ei->i_block_group = iloc.block_group;
Theodore Ts'oa4912122009-03-12 12:18:34 -04004748 ei->i_last_alloc_group = ~0;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004749 /*
4750 * NOTE! The in-memory inode i_data array is in little-endian order
4751 * even on big-endian machines: we do NOT byteswap the block numbers!
4752 */
Mingming Cao617ba132006-10-11 01:20:53 -07004753 for (block = 0; block < EXT4_N_BLOCKS; block++)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004754 ei->i_data[block] = raw_inode->i_block[block];
4755 INIT_LIST_HEAD(&ei->i_orphan);
Harshad Shirwadkaraa75f4d2020-10-15 13:37:57 -07004756 ext4_fc_init_inode(&ei->vfs_inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004757
Jan Karab436b9b2009-12-08 23:51:10 -05004758 /*
4759 * Set transaction id's of transactions that have to be committed
4760 * to finish f[data]sync. We set them to currently running transaction
4761 * as we cannot be sure that the inode or some of its metadata isn't
4762 * part of the transaction - the inode could have been reclaimed and
4763 * now it is reread from disk.
4764 */
4765 if (journal) {
4766 transaction_t *transaction;
4767 tid_t tid;
4768
Theodore Ts'oa931da62010-08-03 21:35:12 -04004769 read_lock(&journal->j_state_lock);
Jan Karab436b9b2009-12-08 23:51:10 -05004770 if (journal->j_running_transaction)
4771 transaction = journal->j_running_transaction;
4772 else
4773 transaction = journal->j_committing_transaction;
4774 if (transaction)
4775 tid = transaction->t_tid;
4776 else
4777 tid = journal->j_commit_sequence;
Theodore Ts'oa931da62010-08-03 21:35:12 -04004778 read_unlock(&journal->j_state_lock);
Jan Karab436b9b2009-12-08 23:51:10 -05004779 ei->i_sync_tid = tid;
4780 ei->i_datasync_tid = tid;
4781 }
4782
Eric Sandeen0040d982008-02-05 22:36:43 -05004783 if (EXT4_INODE_SIZE(inode->i_sb) > EXT4_GOOD_OLD_INODE_SIZE) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004784 if (ei->i_extra_isize == 0) {
4785 /* The extra space is currently unused. Use it. */
Eric Biggers2dc8d9e2016-12-01 14:43:33 -05004786 BUILD_BUG_ON(sizeof(struct ext4_inode) & 3);
Mingming Cao617ba132006-10-11 01:20:53 -07004787 ei->i_extra_isize = sizeof(struct ext4_inode) -
4788 EXT4_GOOD_OLD_INODE_SIZE;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004789 } else {
Theodore Ts'oeb9b5f02018-05-22 17:14:07 -04004790 ret = ext4_iget_extra_inode(inode, raw_inode, ei);
4791 if (ret)
4792 goto bad_inode;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004793 }
Darrick J. Wong814525f2012-04-29 18:31:10 -04004794 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004795
Kalpak Shahef7f3832007-07-18 09:15:20 -04004796 EXT4_INODE_GET_XTIME(i_ctime, inode, raw_inode);
4797 EXT4_INODE_GET_XTIME(i_mtime, inode, raw_inode);
4798 EXT4_INODE_GET_XTIME(i_atime, inode, raw_inode);
4799 EXT4_EINODE_GET_XTIME(i_crtime, ei, raw_inode);
4800
Theodore Ts'oed3654e2014-03-24 14:09:06 -04004801 if (likely(!test_opt2(inode->i_sb, HURD_COMPAT))) {
Jeff Laytonee73f9a2018-01-09 08:21:39 -05004802 u64 ivers = le32_to_cpu(raw_inode->i_disk_version);
4803
Theodore Ts'oc4f65702014-03-20 00:32:57 -04004804 if (EXT4_INODE_SIZE(inode->i_sb) > EXT4_GOOD_OLD_INODE_SIZE) {
4805 if (EXT4_FITS_IN_INODE(raw_inode, ei, i_version_hi))
Jeff Laytonee73f9a2018-01-09 08:21:39 -05004806 ivers |=
Theodore Ts'oc4f65702014-03-20 00:32:57 -04004807 (__u64)(le32_to_cpu(raw_inode->i_version_hi)) << 32;
4808 }
Eryu Guane254d1a2018-05-10 11:55:31 -04004809 ext4_inode_set_iversion_queried(inode, ivers);
Jean Noel Cordenner25ec56b2008-01-28 23:58:27 -05004810 }
4811
Theodore Ts'oc4b5a612009-04-24 18:45:35 -04004812 ret = 0;
Theodore Ts'o485c26e2009-04-24 13:43:20 -04004813 if (ei->i_file_acl &&
Jan Karace9f24c2020-07-28 15:04:34 +02004814 !ext4_inode_block_valid(inode, ei->i_file_acl, 1)) {
Theodore Ts'o8a363972018-12-19 12:29:13 -05004815 ext4_error_inode(inode, function, line, 0,
4816 "iget: bad extended attribute block %llu",
Theodore Ts'o24676da2010-05-16 21:00:00 -04004817 ei->i_file_acl);
Darrick J. Wong6a797d22015-10-17 16:16:04 -04004818 ret = -EFSCORRUPTED;
Theodore Ts'o485c26e2009-04-24 13:43:20 -04004819 goto bad_inode;
Tao Maf19d5872012-12-10 14:05:51 -05004820 } else if (!ext4_has_inline_data(inode)) {
Liu Songbc716522018-08-02 00:11:16 -04004821 /* validate the block references in the inode */
Harshad Shirwadkar8016e292020-10-15 13:37:59 -07004822 if (!(EXT4_SB(sb)->s_mount_state & EXT4_FC_REPLAY) &&
4823 (S_ISREG(inode->i_mode) || S_ISDIR(inode->i_mode) ||
4824 (S_ISLNK(inode->i_mode) &&
4825 !ext4_inode_is_fast_symlink(inode)))) {
Liu Songbc716522018-08-02 00:11:16 -04004826 if (ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS))
Tao Maf19d5872012-12-10 14:05:51 -05004827 ret = ext4_ext_check_inode(inode);
Liu Songbc716522018-08-02 00:11:16 -04004828 else
4829 ret = ext4_ind_check_inode(inode);
Tao Maf19d5872012-12-10 14:05:51 -05004830 }
Thiemo Nagelfe2c8192009-03-31 08:36:10 -04004831 }
Theodore Ts'o567f3e92009-11-14 08:19:05 -05004832 if (ret)
Theodore Ts'ode9a55b2009-06-14 17:45:34 -04004833 goto bad_inode;
Aneesh Kumar K.V7a262f72009-03-27 16:39:58 -04004834
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004835 if (S_ISREG(inode->i_mode)) {
Mingming Cao617ba132006-10-11 01:20:53 -07004836 inode->i_op = &ext4_file_inode_operations;
Boaz Harroshbe64f882015-04-15 16:15:17 -07004837 inode->i_fop = &ext4_file_operations;
Mingming Cao617ba132006-10-11 01:20:53 -07004838 ext4_set_aops(inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004839 } else if (S_ISDIR(inode->i_mode)) {
Mingming Cao617ba132006-10-11 01:20:53 -07004840 inode->i_op = &ext4_dir_inode_operations;
4841 inode->i_fop = &ext4_dir_operations;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004842 } else if (S_ISLNK(inode->i_mode)) {
Luis R. Rodriguez6390d332018-05-13 16:45:56 -04004843 /* VFS does not allow setting these so must be corruption */
4844 if (IS_APPEND(inode) || IS_IMMUTABLE(inode)) {
Theodore Ts'o8a363972018-12-19 12:29:13 -05004845 ext4_error_inode(inode, function, line, 0,
4846 "iget: immutable or append flags "
4847 "not allowed on symlinks");
Luis R. Rodriguez6390d332018-05-13 16:45:56 -04004848 ret = -EFSCORRUPTED;
4849 goto bad_inode;
4850 }
Chandan Rajendra592ddec2018-12-12 15:20:10 +05304851 if (IS_ENCRYPTED(inode)) {
Al Viroa7a67e82015-04-27 17:51:30 -04004852 inode->i_op = &ext4_encrypted_symlink_inode_operations;
4853 ext4_set_aops(inode);
4854 } else if (ext4_inode_is_fast_symlink(inode)) {
Al Viro75e75662015-05-02 10:13:58 -04004855 inode->i_link = (char *)ei->i_data;
Mingming Cao617ba132006-10-11 01:20:53 -07004856 inode->i_op = &ext4_fast_symlink_inode_operations;
Duane Griffine83c1392008-12-19 20:47:15 +00004857 nd_terminate_link(ei->i_data, inode->i_size,
4858 sizeof(ei->i_data) - 1);
4859 } else {
Mingming Cao617ba132006-10-11 01:20:53 -07004860 inode->i_op = &ext4_symlink_inode_operations;
4861 ext4_set_aops(inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004862 }
Al Viro21fc61c2015-11-17 01:07:57 -05004863 inode_nohighmem(inode);
Theodore Ts'o563bdd62009-03-26 00:06:19 -04004864 } else if (S_ISCHR(inode->i_mode) || S_ISBLK(inode->i_mode) ||
4865 S_ISFIFO(inode->i_mode) || S_ISSOCK(inode->i_mode)) {
Mingming Cao617ba132006-10-11 01:20:53 -07004866 inode->i_op = &ext4_special_inode_operations;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004867 if (raw_inode->i_block[0])
4868 init_special_inode(inode, inode->i_mode,
4869 old_decode_dev(le32_to_cpu(raw_inode->i_block[0])));
4870 else
4871 init_special_inode(inode, inode->i_mode,
4872 new_decode_dev(le32_to_cpu(raw_inode->i_block[1])));
Dr. Tilmann Bubeck393d1d12013-04-08 12:54:05 -04004873 } else if (ino == EXT4_BOOT_LOADER_INO) {
4874 make_bad_inode(inode);
Theodore Ts'o563bdd62009-03-26 00:06:19 -04004875 } else {
Darrick J. Wong6a797d22015-10-17 16:16:04 -04004876 ret = -EFSCORRUPTED;
Theodore Ts'o8a363972018-12-19 12:29:13 -05004877 ext4_error_inode(inode, function, line, 0,
4878 "iget: bogus i_mode (%o)", inode->i_mode);
Theodore Ts'o563bdd62009-03-26 00:06:19 -04004879 goto bad_inode;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004880 }
Theodore Ts'o6456ca62019-09-03 01:43:17 -04004881 if (IS_CASEFOLDED(inode) && !ext4_has_feature_casefold(inode->i_sb))
4882 ext4_error_inode(inode, function, line, 0,
4883 "casefold flag without casefold feature");
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04004884 brelse(iloc.bh);
Tahsin Erdogandec214d2017-06-22 11:44:55 -04004885
David Howells1d1fe1e2008-02-07 00:15:37 -08004886 unlock_new_inode(inode);
4887 return inode;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004888
4889bad_inode:
Theodore Ts'o567f3e92009-11-14 08:19:05 -05004890 brelse(iloc.bh);
David Howells1d1fe1e2008-02-07 00:15:37 -08004891 iget_failed(inode);
4892 return ERR_PTR(ret);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004893}
4894
Aneesh Kumar K.V0fc1b452008-01-28 23:58:26 -05004895static int ext4_inode_blocks_set(handle_t *handle,
4896 struct ext4_inode *raw_inode,
4897 struct ext4_inode_info *ei)
4898{
4899 struct inode *inode = &(ei->vfs_inode);
Qian Cai28936b62020-02-21 23:32:58 -05004900 u64 i_blocks = READ_ONCE(inode->i_blocks);
Aneesh Kumar K.V0fc1b452008-01-28 23:58:26 -05004901 struct super_block *sb = inode->i_sb;
Aneesh Kumar K.V0fc1b452008-01-28 23:58:26 -05004902
4903 if (i_blocks <= ~0U) {
4904 /*
Anatol Pomozov4907cb72012-09-01 10:31:09 -07004905 * i_blocks can be represented in a 32 bit variable
Aneesh Kumar K.V0fc1b452008-01-28 23:58:26 -05004906 * as multiple of 512 bytes
4907 */
Aneesh Kumar K.V8180a562008-01-28 23:58:27 -05004908 raw_inode->i_blocks_lo = cpu_to_le32(i_blocks);
Aneesh Kumar K.V0fc1b452008-01-28 23:58:26 -05004909 raw_inode->i_blocks_high = 0;
Dmitry Monakhov84a8dce2010-06-05 11:51:27 -04004910 ext4_clear_inode_flag(inode, EXT4_INODE_HUGE_FILE);
Theodore Ts'of287a1a2008-10-16 22:50:48 -04004911 return 0;
4912 }
Darrick J. Wonge2b911c2015-10-17 16:18:43 -04004913 if (!ext4_has_feature_huge_file(sb))
Theodore Ts'of287a1a2008-10-16 22:50:48 -04004914 return -EFBIG;
4915
4916 if (i_blocks <= 0xffffffffffffULL) {
Aneesh Kumar K.V0fc1b452008-01-28 23:58:26 -05004917 /*
4918 * i_blocks can be represented in a 48 bit variable
4919 * as multiple of 512 bytes
4920 */
Aneesh Kumar K.V8180a562008-01-28 23:58:27 -05004921 raw_inode->i_blocks_lo = cpu_to_le32(i_blocks);
Aneesh Kumar K.V0fc1b452008-01-28 23:58:26 -05004922 raw_inode->i_blocks_high = cpu_to_le16(i_blocks >> 32);
Dmitry Monakhov84a8dce2010-06-05 11:51:27 -04004923 ext4_clear_inode_flag(inode, EXT4_INODE_HUGE_FILE);
Aneesh Kumar K.V0fc1b452008-01-28 23:58:26 -05004924 } else {
Dmitry Monakhov84a8dce2010-06-05 11:51:27 -04004925 ext4_set_inode_flag(inode, EXT4_INODE_HUGE_FILE);
Aneesh Kumar K.V8180a562008-01-28 23:58:27 -05004926 /* i_block is stored in file system block size */
4927 i_blocks = i_blocks >> (inode->i_blkbits - 9);
4928 raw_inode->i_blocks_lo = cpu_to_le32(i_blocks);
4929 raw_inode->i_blocks_high = cpu_to_le16(i_blocks >> 32);
Aneesh Kumar K.V0fc1b452008-01-28 23:58:26 -05004930 }
Theodore Ts'of287a1a2008-10-16 22:50:48 -04004931 return 0;
Aneesh Kumar K.V0fc1b452008-01-28 23:58:26 -05004932}
4933
David Howells3f19b2a2017-12-01 11:40:16 +00004934static void __ext4_update_other_inode_time(struct super_block *sb,
4935 unsigned long orig_ino,
4936 unsigned long ino,
4937 struct ext4_inode *raw_inode)
Theodore Ts'oa26f4992015-02-02 00:37:02 -05004938{
David Howells3f19b2a2017-12-01 11:40:16 +00004939 struct inode *inode;
Theodore Ts'oa26f4992015-02-02 00:37:02 -05004940
David Howells3f19b2a2017-12-01 11:40:16 +00004941 inode = find_inode_by_ino_rcu(sb, ino);
4942 if (!inode)
4943 return;
4944
Eric Biggersed296c62021-01-12 11:02:53 -08004945 if (!inode_is_dirtytime_only(inode))
David Howells3f19b2a2017-12-01 11:40:16 +00004946 return;
4947
Theodore Ts'oa26f4992015-02-02 00:37:02 -05004948 spin_lock(&inode->i_lock);
Eric Biggersed296c62021-01-12 11:02:53 -08004949 if (inode_is_dirtytime_only(inode)) {
Theodore Ts'oa26f4992015-02-02 00:37:02 -05004950 struct ext4_inode_info *ei = EXT4_I(inode);
4951
Jan Kara5fcd5752020-05-29 16:24:43 +02004952 inode->i_state &= ~I_DIRTY_TIME;
Theodore Ts'oa26f4992015-02-02 00:37:02 -05004953 spin_unlock(&inode->i_lock);
4954
4955 spin_lock(&ei->i_raw_lock);
David Howells3f19b2a2017-12-01 11:40:16 +00004956 EXT4_INODE_SET_XTIME(i_ctime, inode, raw_inode);
4957 EXT4_INODE_SET_XTIME(i_mtime, inode, raw_inode);
4958 EXT4_INODE_SET_XTIME(i_atime, inode, raw_inode);
4959 ext4_inode_csum_set(inode, raw_inode, ei);
Theodore Ts'oa26f4992015-02-02 00:37:02 -05004960 spin_unlock(&ei->i_raw_lock);
David Howells3f19b2a2017-12-01 11:40:16 +00004961 trace_ext4_other_inode_update_time(inode, orig_ino);
4962 return;
Theodore Ts'oa26f4992015-02-02 00:37:02 -05004963 }
4964 spin_unlock(&inode->i_lock);
Theodore Ts'oa26f4992015-02-02 00:37:02 -05004965}
4966
4967/*
4968 * Opportunistically update the other time fields for other inodes in
4969 * the same inode table block.
4970 */
4971static void ext4_update_other_inodes_time(struct super_block *sb,
4972 unsigned long orig_ino, char *buf)
4973{
Theodore Ts'oa26f4992015-02-02 00:37:02 -05004974 unsigned long ino;
4975 int i, inodes_per_block = EXT4_SB(sb)->s_inodes_per_block;
4976 int inode_size = EXT4_INODE_SIZE(sb);
4977
Theodore Ts'o0f0ff9a2015-07-01 23:37:46 -04004978 /*
4979 * Calculate the first inode in the inode table block. Inode
4980 * numbers are one-based. That is, the first inode in a block
4981 * (assuming 4k blocks and 256 byte inodes) is (n*16 + 1).
4982 */
4983 ino = ((orig_ino - 1) & ~(inodes_per_block - 1)) + 1;
David Howells3f19b2a2017-12-01 11:40:16 +00004984 rcu_read_lock();
Theodore Ts'oa26f4992015-02-02 00:37:02 -05004985 for (i = 0; i < inodes_per_block; i++, ino++, buf += inode_size) {
4986 if (ino == orig_ino)
4987 continue;
David Howells3f19b2a2017-12-01 11:40:16 +00004988 __ext4_update_other_inode_time(sb, orig_ino, ino,
4989 (struct ext4_inode *)buf);
Theodore Ts'oa26f4992015-02-02 00:37:02 -05004990 }
David Howells3f19b2a2017-12-01 11:40:16 +00004991 rcu_read_unlock();
Theodore Ts'oa26f4992015-02-02 00:37:02 -05004992}
4993
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004994/*
4995 * Post the struct inode info into an on-disk inode location in the
4996 * buffer-cache. This gobbles the caller's reference to the
4997 * buffer_head in the inode location struct.
4998 *
4999 * The caller must have write access to iloc->bh.
5000 */
Mingming Cao617ba132006-10-11 01:20:53 -07005001static int ext4_do_update_inode(handle_t *handle,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005002 struct inode *inode,
Frank Mayhar830156c2009-09-29 10:07:47 -04005003 struct ext4_iloc *iloc)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005004{
Mingming Cao617ba132006-10-11 01:20:53 -07005005 struct ext4_inode *raw_inode = ext4_raw_inode(iloc);
5006 struct ext4_inode_info *ei = EXT4_I(inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005007 struct buffer_head *bh = iloc->bh;
Theodore Ts'o202ee5d2014-04-21 14:37:55 -04005008 struct super_block *sb = inode->i_sb;
Shijie Luo7d8bd3c2021-03-12 01:50:51 -05005009 int err = 0, block;
Theodore Ts'o202ee5d2014-04-21 14:37:55 -04005010 int need_datasync = 0, set_large_file = 0;
Eric W. Biederman08cefc72012-02-07 15:41:49 -08005011 uid_t i_uid;
5012 gid_t i_gid;
Li Xi040cb372016-01-08 16:01:21 -05005013 projid_t i_projid;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005014
Theodore Ts'o202ee5d2014-04-21 14:37:55 -04005015 spin_lock(&ei->i_raw_lock);
5016
5017 /* For fields not tracked in the in-memory inode,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005018 * initialise them to zero for new inodes. */
Theodore Ts'o19f5fb72010-01-24 14:34:07 -05005019 if (ext4_test_inode_state(inode, EXT4_STATE_NEW))
Mingming Cao617ba132006-10-11 01:20:53 -07005020 memset(raw_inode, 0, EXT4_SB(inode->i_sb)->s_inode_size);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005021
Luo Meng13221812020-10-20 09:36:31 +08005022 err = ext4_inode_blocks_set(handle, raw_inode, ei);
5023 if (err) {
5024 spin_unlock(&ei->i_raw_lock);
5025 goto out_brelse;
5026 }
5027
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005028 raw_inode->i_mode = cpu_to_le16(inode->i_mode);
Eric W. Biederman08cefc72012-02-07 15:41:49 -08005029 i_uid = i_uid_read(inode);
5030 i_gid = i_gid_read(inode);
Li Xi040cb372016-01-08 16:01:21 -05005031 i_projid = from_kprojid(&init_user_ns, ei->i_projid);
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04005032 if (!(test_opt(inode->i_sb, NO_UID32))) {
Eric W. Biederman08cefc72012-02-07 15:41:49 -08005033 raw_inode->i_uid_low = cpu_to_le16(low_16_bits(i_uid));
5034 raw_inode->i_gid_low = cpu_to_le16(low_16_bits(i_gid));
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005035/*
5036 * Fix up interoperability with old kernels. Otherwise, old inodes get
5037 * re-used with the upper 16 bits of the uid/gid intact
5038 */
Daeho Jeong93e3b4e2016-09-05 22:56:10 -04005039 if (ei->i_dtime && list_empty(&ei->i_orphan)) {
5040 raw_inode->i_uid_high = 0;
5041 raw_inode->i_gid_high = 0;
5042 } else {
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005043 raw_inode->i_uid_high =
Eric W. Biederman08cefc72012-02-07 15:41:49 -08005044 cpu_to_le16(high_16_bits(i_uid));
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005045 raw_inode->i_gid_high =
Eric W. Biederman08cefc72012-02-07 15:41:49 -08005046 cpu_to_le16(high_16_bits(i_gid));
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005047 }
5048 } else {
Eric W. Biederman08cefc72012-02-07 15:41:49 -08005049 raw_inode->i_uid_low = cpu_to_le16(fs_high2lowuid(i_uid));
5050 raw_inode->i_gid_low = cpu_to_le16(fs_high2lowgid(i_gid));
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005051 raw_inode->i_uid_high = 0;
5052 raw_inode->i_gid_high = 0;
5053 }
5054 raw_inode->i_links_count = cpu_to_le16(inode->i_nlink);
Kalpak Shahef7f3832007-07-18 09:15:20 -04005055
5056 EXT4_INODE_SET_XTIME(i_ctime, inode, raw_inode);
5057 EXT4_INODE_SET_XTIME(i_mtime, inode, raw_inode);
5058 EXT4_INODE_SET_XTIME(i_atime, inode, raw_inode);
5059 EXT4_EINODE_SET_XTIME(i_crtime, ei, raw_inode);
5060
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005061 raw_inode->i_dtime = cpu_to_le32(ei->i_dtime);
Theodore Ts'o353eb832011-01-10 12:18:25 -05005062 raw_inode->i_flags = cpu_to_le32(ei->i_flags & 0xFFFFFFFF);
Theodore Ts'oed3654e2014-03-24 14:09:06 -04005063 if (likely(!test_opt2(inode->i_sb, HURD_COMPAT)))
Badari Pulavartya1ddeb72006-10-11 01:21:09 -07005064 raw_inode->i_file_acl_high =
5065 cpu_to_le16(ei->i_file_acl >> 32);
Aneesh Kumar K.V7973c0c2008-01-28 23:58:27 -05005066 raw_inode->i_file_acl_lo = cpu_to_le32(ei->i_file_acl);
Qiujun Huangdce8e232020-02-24 23:02:46 +08005067 if (READ_ONCE(ei->i_disksize) != ext4_isize(inode->i_sb, raw_inode)) {
Jan Karab71fc072012-09-26 21:52:20 -04005068 ext4_isize_set(raw_inode, ei->i_disksize);
5069 need_datasync = 1;
5070 }
Aneesh Kumar K.Va48380f2008-01-28 23:58:27 -05005071 if (ei->i_disksize > 0x7fffffffULL) {
Darrick J. Wonge2b911c2015-10-17 16:18:43 -04005072 if (!ext4_has_feature_large_file(sb) ||
Aneesh Kumar K.Va48380f2008-01-28 23:58:27 -05005073 EXT4_SB(sb)->s_es->s_rev_level ==
Theodore Ts'o202ee5d2014-04-21 14:37:55 -04005074 cpu_to_le32(EXT4_GOOD_OLD_REV))
5075 set_large_file = 1;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005076 }
5077 raw_inode->i_generation = cpu_to_le32(inode->i_generation);
5078 if (S_ISCHR(inode->i_mode) || S_ISBLK(inode->i_mode)) {
5079 if (old_valid_dev(inode->i_rdev)) {
5080 raw_inode->i_block[0] =
5081 cpu_to_le32(old_encode_dev(inode->i_rdev));
5082 raw_inode->i_block[1] = 0;
5083 } else {
5084 raw_inode->i_block[0] = 0;
5085 raw_inode->i_block[1] =
5086 cpu_to_le32(new_encode_dev(inode->i_rdev));
5087 raw_inode->i_block[2] = 0;
5088 }
Tao Maf19d5872012-12-10 14:05:51 -05005089 } else if (!ext4_has_inline_data(inode)) {
Theodore Ts'ode9a55b2009-06-14 17:45:34 -04005090 for (block = 0; block < EXT4_N_BLOCKS; block++)
5091 raw_inode->i_block[block] = ei->i_data[block];
Tao Maf19d5872012-12-10 14:05:51 -05005092 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005093
Theodore Ts'oed3654e2014-03-24 14:09:06 -04005094 if (likely(!test_opt2(inode->i_sb, HURD_COMPAT))) {
Eryu Guane254d1a2018-05-10 11:55:31 -04005095 u64 ivers = ext4_inode_peek_iversion(inode);
Jeff Laytonee73f9a2018-01-09 08:21:39 -05005096
5097 raw_inode->i_disk_version = cpu_to_le32(ivers);
Theodore Ts'oc4f65702014-03-20 00:32:57 -04005098 if (ei->i_extra_isize) {
5099 if (EXT4_FITS_IN_INODE(raw_inode, ei, i_version_hi))
5100 raw_inode->i_version_hi =
Jeff Laytonee73f9a2018-01-09 08:21:39 -05005101 cpu_to_le32(ivers >> 32);
Theodore Ts'oc4f65702014-03-20 00:32:57 -04005102 raw_inode->i_extra_isize =
5103 cpu_to_le16(ei->i_extra_isize);
5104 }
Jean Noel Cordenner25ec56b2008-01-28 23:58:27 -05005105 }
Li Xi040cb372016-01-08 16:01:21 -05005106
Kaho Ng0b7b7772016-09-05 23:11:58 -04005107 BUG_ON(!ext4_has_feature_project(inode->i_sb) &&
Li Xi040cb372016-01-08 16:01:21 -05005108 i_projid != EXT4_DEF_PROJID);
5109
5110 if (EXT4_INODE_SIZE(inode->i_sb) > EXT4_GOOD_OLD_INODE_SIZE &&
5111 EXT4_FITS_IN_INODE(raw_inode, ei, i_projid))
5112 raw_inode->i_projid = cpu_to_le32(i_projid);
5113
Darrick J. Wong814525f2012-04-29 18:31:10 -04005114 ext4_inode_csum_set(inode, raw_inode, ei);
Theodore Ts'o202ee5d2014-04-21 14:37:55 -04005115 spin_unlock(&ei->i_raw_lock);
Linus Torvalds1751e8a2017-11-27 13:05:09 -08005116 if (inode->i_sb->s_flags & SB_LAZYTIME)
Theodore Ts'oa26f4992015-02-02 00:37:02 -05005117 ext4_update_other_inodes_time(inode->i_sb, inode->i_ino,
5118 bh->b_data);
Theodore Ts'o202ee5d2014-04-21 14:37:55 -04005119
Frank Mayhar830156c2009-09-29 10:07:47 -04005120 BUFFER_TRACE(bh, "call ext4_handle_dirty_metadata");
Shijie Luo7d8bd3c2021-03-12 01:50:51 -05005121 err = ext4_handle_dirty_metadata(handle, NULL, bh);
5122 if (err)
5123 goto out_brelse;
Theodore Ts'o19f5fb72010-01-24 14:34:07 -05005124 ext4_clear_inode_state(inode, EXT4_STATE_NEW);
Theodore Ts'o202ee5d2014-04-21 14:37:55 -04005125 if (set_large_file) {
liang xie5d601252014-05-12 22:06:43 -04005126 BUFFER_TRACE(EXT4_SB(sb)->s_sbh, "get write access");
Theodore Ts'o202ee5d2014-04-21 14:37:55 -04005127 err = ext4_journal_get_write_access(handle, EXT4_SB(sb)->s_sbh);
5128 if (err)
5129 goto out_brelse;
Jan Kara05c2c002020-12-16 11:18:39 +01005130 lock_buffer(EXT4_SB(sb)->s_sbh);
Darrick J. Wonge2b911c2015-10-17 16:18:43 -04005131 ext4_set_feature_large_file(sb);
Jan Kara05c2c002020-12-16 11:18:39 +01005132 ext4_superblock_csum_set(sb);
5133 unlock_buffer(EXT4_SB(sb)->s_sbh);
Theodore Ts'o202ee5d2014-04-21 14:37:55 -04005134 ext4_handle_sync(handle);
Jan Karaa3f5cf12020-12-16 11:18:44 +01005135 err = ext4_handle_dirty_metadata(handle, NULL,
5136 EXT4_SB(sb)->s_sbh);
Theodore Ts'o202ee5d2014-04-21 14:37:55 -04005137 }
Jan Karab71fc072012-09-26 21:52:20 -04005138 ext4_update_inode_fsync_trans(handle, inode, need_datasync);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005139out_brelse:
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04005140 brelse(bh);
Mingming Cao617ba132006-10-11 01:20:53 -07005141 ext4_std_error(inode->i_sb, err);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005142 return err;
5143}
5144
5145/*
Mingming Cao617ba132006-10-11 01:20:53 -07005146 * ext4_write_inode()
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005147 *
5148 * We are called from a few places:
5149 *
Theodore Ts'o87f7e412014-04-08 11:38:28 -04005150 * - Within generic_file_aio_write() -> generic_write_sync() for O_SYNC files.
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005151 * Here, there will be no transaction running. We wait for any running
Anatol Pomozov4907cb72012-09-01 10:31:09 -07005152 * transaction to commit.
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005153 *
Theodore Ts'o87f7e412014-04-08 11:38:28 -04005154 * - Within flush work (sys_sync(), kupdate and such).
5155 * We wait on commit, if told to.
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005156 *
Theodore Ts'o87f7e412014-04-08 11:38:28 -04005157 * - Within iput_final() -> write_inode_now()
5158 * We wait on commit, if told to.
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005159 *
5160 * In all cases it is actually safe for us to return without doing anything,
5161 * because the inode has been copied into a raw inode buffer in
Theodore Ts'o87f7e412014-04-08 11:38:28 -04005162 * ext4_mark_inode_dirty(). This is a correctness thing for WB_SYNC_ALL
5163 * writeback.
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005164 *
5165 * Note that we are absolutely dependent upon all inode dirtiers doing the
5166 * right thing: they *must* call mark_inode_dirty() after dirtying info in
5167 * which we are interested.
5168 *
5169 * It would be a bug for them to not do this. The code:
5170 *
5171 * mark_inode_dirty(inode)
5172 * stuff();
5173 * inode->i_size = expr;
5174 *
Theodore Ts'o87f7e412014-04-08 11:38:28 -04005175 * is in error because write_inode() could occur while `stuff()' is running,
5176 * and the new i_size will be lost. Plus the inode will no longer be on the
5177 * superblock's dirty inode list.
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005178 */
Christoph Hellwiga9185b42010-03-05 09:21:37 +01005179int ext4_write_inode(struct inode *inode, struct writeback_control *wbc)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005180{
Frank Mayhar91ac6f42009-09-09 22:33:47 -04005181 int err;
5182
Theodore Ts'o18f2c4f2018-12-19 14:36:58 -05005183 if (WARN_ON_ONCE(current->flags & PF_MEMALLOC) ||
5184 sb_rdonly(inode->i_sb))
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005185 return 0;
5186
Theodore Ts'o18f2c4f2018-12-19 14:36:58 -05005187 if (unlikely(ext4_forced_shutdown(EXT4_SB(inode->i_sb))))
5188 return -EIO;
5189
Frank Mayhar91ac6f42009-09-09 22:33:47 -04005190 if (EXT4_SB(inode->i_sb)->s_journal) {
5191 if (ext4_journal_current_handle()) {
5192 jbd_debug(1, "called recursively, non-PF_MEMALLOC!\n");
5193 dump_stack();
5194 return -EIO;
5195 }
5196
Jan Kara10542c22014-03-04 10:50:50 -05005197 /*
5198 * No need to force transaction in WB_SYNC_NONE mode. Also
5199 * ext4_sync_fs() will force the commit after everything is
5200 * written.
5201 */
5202 if (wbc->sync_mode != WB_SYNC_ALL || wbc->for_sync)
Frank Mayhar91ac6f42009-09-09 22:33:47 -04005203 return 0;
5204
Harshad Shirwadkaraa75f4d2020-10-15 13:37:57 -07005205 err = ext4_fc_commit(EXT4_SB(inode->i_sb)->s_journal,
Theodore Ts'o18f2c4f2018-12-19 14:36:58 -05005206 EXT4_I(inode)->i_sync_tid);
Frank Mayhar91ac6f42009-09-09 22:33:47 -04005207 } else {
5208 struct ext4_iloc iloc;
5209
Harshad Shirwadkar8016e292020-10-15 13:37:59 -07005210 err = __ext4_get_inode_loc_noinmem(inode, &iloc);
Frank Mayhar91ac6f42009-09-09 22:33:47 -04005211 if (err)
5212 return err;
Jan Kara10542c22014-03-04 10:50:50 -05005213 /*
5214 * sync(2) will flush the whole buffer cache. No need to do
5215 * it here separately for each inode.
5216 */
5217 if (wbc->sync_mode == WB_SYNC_ALL && !wbc->for_sync)
Frank Mayhar830156c2009-09-29 10:07:47 -04005218 sync_dirty_buffer(iloc.bh);
5219 if (buffer_req(iloc.bh) && !buffer_uptodate(iloc.bh)) {
Theodore Ts'o54d3adb2020-03-28 19:33:43 -04005220 ext4_error_inode_block(inode, iloc.bh->b_blocknr, EIO,
5221 "IO error syncing inode");
Frank Mayhar830156c2009-09-29 10:07:47 -04005222 err = -EIO;
5223 }
Curt Wohlgemuthfd2dd9f2010-04-03 17:44:16 -04005224 brelse(iloc.bh);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005225 }
Frank Mayhar91ac6f42009-09-09 22:33:47 -04005226 return err;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005227}
5228
5229/*
Jan Kara53e87262012-12-25 13:29:52 -05005230 * In data=journal mode ext4_journalled_invalidatepage() may fail to invalidate
5231 * buffers that are attached to a page stradding i_size and are undergoing
5232 * commit. In that case we have to wait for commit to finish and try again.
5233 */
5234static void ext4_wait_for_tail_page_commit(struct inode *inode)
5235{
5236 struct page *page;
5237 unsigned offset;
5238 journal_t *journal = EXT4_SB(inode->i_sb)->s_journal;
5239 tid_t commit_tid = 0;
5240 int ret;
5241
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005242 offset = inode->i_size & (PAGE_SIZE - 1);
Jan Kara53e87262012-12-25 13:29:52 -05005243 /*
yangerkun565333a2019-09-19 14:35:08 +08005244 * If the page is fully truncated, we don't need to wait for any commit
5245 * (and we even should not as __ext4_journalled_invalidatepage() may
5246 * strip all buffers from the page but keep the page dirty which can then
5247 * confuse e.g. concurrent ext4_writepage() seeing dirty page without
5248 * buffers). Also we don't need to wait for any commit if all buffers in
5249 * the page remain valid. This is most beneficial for the common case of
5250 * blocksize == PAGESIZE.
Jan Kara53e87262012-12-25 13:29:52 -05005251 */
yangerkun565333a2019-09-19 14:35:08 +08005252 if (!offset || offset > (PAGE_SIZE - i_blocksize(inode)))
Jan Kara53e87262012-12-25 13:29:52 -05005253 return;
5254 while (1) {
5255 page = find_lock_page(inode->i_mapping,
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005256 inode->i_size >> PAGE_SHIFT);
Jan Kara53e87262012-12-25 13:29:52 -05005257 if (!page)
5258 return;
Lukas Czernerca99fdd2013-05-21 23:25:01 -04005259 ret = __ext4_journalled_invalidatepage(page, offset,
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005260 PAGE_SIZE - offset);
Jan Kara53e87262012-12-25 13:29:52 -05005261 unlock_page(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005262 put_page(page);
Jan Kara53e87262012-12-25 13:29:52 -05005263 if (ret != -EBUSY)
5264 return;
5265 commit_tid = 0;
5266 read_lock(&journal->j_state_lock);
5267 if (journal->j_committing_transaction)
5268 commit_tid = journal->j_committing_transaction->t_tid;
5269 read_unlock(&journal->j_state_lock);
5270 if (commit_tid)
5271 jbd2_log_wait_commit(journal, commit_tid);
5272 }
5273}
5274
5275/*
Mingming Cao617ba132006-10-11 01:20:53 -07005276 * ext4_setattr()
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005277 *
5278 * Called from notify_change.
5279 *
5280 * We want to trap VFS attempts to truncate the file as soon as
5281 * possible. In particular, we want to make sure that when the VFS
5282 * shrinks i_size, we put the inode on the orphan list and modify
5283 * i_disksize immediately, so that during the subsequent flushing of
5284 * dirty pages and freeing of disk blocks, we can guarantee that any
5285 * commit will leave the blocks being flushed in an unused state on
5286 * disk. (On recovery, the inode will get truncated and the blocks will
5287 * be freed, so we have a strong guarantee that no future commit will
5288 * leave these blocks visible to the user.)
5289 *
Jan Kara678aaf42008-07-11 19:27:31 -04005290 * Another thing we have to assure is that if we are in ordered mode
5291 * and inode is still attached to the committing transaction, we must
5292 * we start writeout of all the dirty pages which are being truncated.
5293 * This way we are sure that all the data written in the previous
5294 * transaction are already on disk (truncate waits for pages under
5295 * writeback).
5296 *
5297 * Called with inode->i_mutex down.
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005298 */
Christian Brauner549c7292021-01-21 14:19:43 +01005299int ext4_setattr(struct user_namespace *mnt_userns, struct dentry *dentry,
5300 struct iattr *attr)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005301{
David Howells2b0143b2015-03-17 22:25:59 +00005302 struct inode *inode = d_inode(dentry);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005303 int error, rc = 0;
Dmitry Monakhov3d287de2010-10-27 22:08:46 -04005304 int orphan = 0;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005305 const unsigned int ia_valid = attr->ia_valid;
5306
Theodore Ts'o0db1ff22017-02-05 01:28:48 -05005307 if (unlikely(ext4_forced_shutdown(EXT4_SB(inode->i_sb))))
5308 return -EIO;
5309
Theodore Ts'o02b016c2019-06-09 22:04:33 -04005310 if (unlikely(IS_IMMUTABLE(inode)))
5311 return -EPERM;
5312
5313 if (unlikely(IS_APPEND(inode) &&
5314 (ia_valid & (ATTR_MODE | ATTR_UID |
5315 ATTR_GID | ATTR_TIMES_SET))))
5316 return -EPERM;
5317
Christian Brauner14f3db52021-01-21 14:19:57 +01005318 error = setattr_prepare(mnt_userns, dentry, attr);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005319 if (error)
5320 return error;
5321
Eric Biggers3ce2b8d2017-10-18 20:21:58 -04005322 error = fscrypt_prepare_setattr(dentry, attr);
5323 if (error)
5324 return error;
5325
Eric Biggersc93d8f82019-07-22 09:26:24 -07005326 error = fsverity_prepare_setattr(dentry, attr);
5327 if (error)
5328 return error;
5329
Jan Karaa7cdade2015-06-29 16:22:54 +02005330 if (is_quota_modification(inode, attr)) {
5331 error = dquot_initialize(inode);
5332 if (error)
5333 return error;
5334 }
Harshad Shirwadkaraa75f4d2020-10-15 13:37:57 -07005335 ext4_fc_start_update(inode);
Eric W. Biederman08cefc72012-02-07 15:41:49 -08005336 if ((ia_valid & ATTR_UID && !uid_eq(attr->ia_uid, inode->i_uid)) ||
5337 (ia_valid & ATTR_GID && !gid_eq(attr->ia_gid, inode->i_gid))) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005338 handle_t *handle;
5339
5340 /* (user+group)*(old+new) structure, inode write (sb,
5341 * inode block, ? - but truncate inode update has it) */
Theodore Ts'o9924a922013-02-08 21:59:22 -05005342 handle = ext4_journal_start(inode, EXT4_HT_QUOTA,
5343 (EXT4_MAXQUOTAS_INIT_BLOCKS(inode->i_sb) +
5344 EXT4_MAXQUOTAS_DEL_BLOCKS(inode->i_sb)) + 3);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005345 if (IS_ERR(handle)) {
5346 error = PTR_ERR(handle);
5347 goto err_out;
5348 }
Tahsin Erdogan7a9ca532017-06-22 11:46:48 -04005349
5350 /* dquot_transfer() calls back ext4_get_inode_usage() which
5351 * counts xattr inode references.
5352 */
5353 down_read(&EXT4_I(inode)->xattr_sem);
Christoph Hellwigb43fa822010-03-03 09:05:03 -05005354 error = dquot_transfer(inode, attr);
Tahsin Erdogan7a9ca532017-06-22 11:46:48 -04005355 up_read(&EXT4_I(inode)->xattr_sem);
5356
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005357 if (error) {
Mingming Cao617ba132006-10-11 01:20:53 -07005358 ext4_journal_stop(handle);
Harshad Shirwadkaraa75f4d2020-10-15 13:37:57 -07005359 ext4_fc_stop_update(inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005360 return error;
5361 }
5362 /* Update corresponding info in inode so that everything is in
5363 * one transaction */
5364 if (attr->ia_valid & ATTR_UID)
5365 inode->i_uid = attr->ia_uid;
5366 if (attr->ia_valid & ATTR_GID)
5367 inode->i_gid = attr->ia_gid;
Mingming Cao617ba132006-10-11 01:20:53 -07005368 error = ext4_mark_inode_dirty(handle, inode);
5369 ext4_journal_stop(handle);
Pan Bian512c15e2021-01-17 00:57:32 -08005370 if (unlikely(error)) {
5371 ext4_fc_stop_update(inode);
Harshad Shirwadkar4209ae12020-04-26 18:34:37 -07005372 return error;
Pan Bian512c15e2021-01-17 00:57:32 -08005373 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005374 }
5375
Josef Bacik3da40c72015-06-22 00:31:26 -04005376 if (attr->ia_valid & ATTR_SIZE) {
Jan Kara52083862013-08-17 10:07:17 -04005377 handle_t *handle;
Josef Bacik3da40c72015-06-22 00:31:26 -04005378 loff_t oldsize = inode->i_size;
Jan Karab9c1c262019-05-30 11:56:23 -04005379 int shrink = (attr->ia_size < inode->i_size);
Christoph Hellwig562c72aa52011-06-24 14:29:45 -04005380
Dmitry Monakhov12e9b892010-05-16 22:00:00 -04005381 if (!(ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS))) {
Eric Sandeene2b46572008-01-28 23:58:27 -05005382 struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb);
5383
Harshad Shirwadkaraa75f4d2020-10-15 13:37:57 -07005384 if (attr->ia_size > sbi->s_bitmap_maxbytes) {
5385 ext4_fc_stop_update(inode);
Theodore Ts'o0c095c72010-07-27 11:56:06 -04005386 return -EFBIG;
Harshad Shirwadkaraa75f4d2020-10-15 13:37:57 -07005387 }
Eric Sandeene2b46572008-01-28 23:58:27 -05005388 }
Harshad Shirwadkaraa75f4d2020-10-15 13:37:57 -07005389 if (!S_ISREG(inode->i_mode)) {
5390 ext4_fc_stop_update(inode);
Josef Bacik3da40c72015-06-22 00:31:26 -04005391 return -EINVAL;
Harshad Shirwadkaraa75f4d2020-10-15 13:37:57 -07005392 }
Christoph Hellwigdff6efc2013-11-19 07:17:07 -08005393
5394 if (IS_I_VERSION(inode) && attr->ia_size != inode->i_size)
5395 inode_inc_iversion(inode);
5396
Jan Karab9c1c262019-05-30 11:56:23 -04005397 if (shrink) {
5398 if (ext4_should_order_data(inode)) {
5399 error = ext4_begin_ordered_truncate(inode,
Jan Kara678aaf42008-07-11 19:27:31 -04005400 attr->ia_size);
Jan Karab9c1c262019-05-30 11:56:23 -04005401 if (error)
5402 goto err_out;
5403 }
5404 /*
5405 * Blocks are going to be removed from the inode. Wait
5406 * for dio in flight.
5407 */
5408 inode_dio_wait(inode);
Josef Bacik3da40c72015-06-22 00:31:26 -04005409 }
Jan Karab9c1c262019-05-30 11:56:23 -04005410
5411 down_write(&EXT4_I(inode)->i_mmap_sem);
5412
5413 rc = ext4_break_layouts(inode);
5414 if (rc) {
5415 up_write(&EXT4_I(inode)->i_mmap_sem);
Harshad Shirwadkaraa75f4d2020-10-15 13:37:57 -07005416 goto err_out;
Jan Karab9c1c262019-05-30 11:56:23 -04005417 }
5418
Josef Bacik3da40c72015-06-22 00:31:26 -04005419 if (attr->ia_size != inode->i_size) {
Jan Kara52083862013-08-17 10:07:17 -04005420 handle = ext4_journal_start(inode, EXT4_HT_INODE, 3);
5421 if (IS_ERR(handle)) {
5422 error = PTR_ERR(handle);
Jan Karab9c1c262019-05-30 11:56:23 -04005423 goto out_mmap_sem;
Jan Kara52083862013-08-17 10:07:17 -04005424 }
Josef Bacik3da40c72015-06-22 00:31:26 -04005425 if (ext4_handle_valid(handle) && shrink) {
Jan Kara52083862013-08-17 10:07:17 -04005426 error = ext4_orphan_add(handle, inode);
5427 orphan = 1;
5428 }
Eryu Guan911af572015-07-28 15:08:41 -04005429 /*
5430 * Update c/mtime on truncate up, ext4_truncate() will
5431 * update c/mtime in shrink case below
5432 */
5433 if (!shrink) {
Deepa Dinamanieeca7ea2016-11-14 21:40:10 -05005434 inode->i_mtime = current_time(inode);
Eryu Guan911af572015-07-28 15:08:41 -04005435 inode->i_ctime = inode->i_mtime;
5436 }
Harshad Shirwadkaraa75f4d2020-10-15 13:37:57 -07005437
5438 if (shrink)
Harshad Shirwadkara80f7fc2020-11-05 19:58:53 -08005439 ext4_fc_track_range(handle, inode,
Harshad Shirwadkaraa75f4d2020-10-15 13:37:57 -07005440 (attr->ia_size > 0 ? attr->ia_size - 1 : 0) >>
5441 inode->i_sb->s_blocksize_bits,
5442 (oldsize > 0 ? oldsize - 1 : 0) >>
5443 inode->i_sb->s_blocksize_bits);
5444 else
5445 ext4_fc_track_range(
Harshad Shirwadkara80f7fc2020-11-05 19:58:53 -08005446 handle, inode,
Harshad Shirwadkaraa75f4d2020-10-15 13:37:57 -07005447 (oldsize > 0 ? oldsize - 1 : oldsize) >>
5448 inode->i_sb->s_blocksize_bits,
5449 (attr->ia_size > 0 ? attr->ia_size - 1 : 0) >>
5450 inode->i_sb->s_blocksize_bits);
5451
Jan Kara90e775b2013-08-17 10:09:31 -04005452 down_write(&EXT4_I(inode)->i_data_sem);
Jan Kara52083862013-08-17 10:07:17 -04005453 EXT4_I(inode)->i_disksize = attr->ia_size;
5454 rc = ext4_mark_inode_dirty(handle, inode);
5455 if (!error)
5456 error = rc;
Jan Kara90e775b2013-08-17 10:09:31 -04005457 /*
5458 * We have to update i_size under i_data_sem together
5459 * with i_disksize to avoid races with writeback code
5460 * running ext4_wb_update_i_disksize().
5461 */
5462 if (!error)
5463 i_size_write(inode, attr->ia_size);
5464 up_write(&EXT4_I(inode)->i_data_sem);
Jan Kara52083862013-08-17 10:07:17 -04005465 ext4_journal_stop(handle);
Jan Karab9c1c262019-05-30 11:56:23 -04005466 if (error)
5467 goto out_mmap_sem;
5468 if (!shrink) {
5469 pagecache_isize_extended(inode, oldsize,
5470 inode->i_size);
5471 } else if (ext4_should_journal_data(inode)) {
5472 ext4_wait_for_tail_page_commit(inode);
Jan Kara678aaf42008-07-11 19:27:31 -04005473 }
Jan Karad6320cb2014-10-01 21:49:46 -04005474 }
Ross Zwisler430657b2018-07-29 17:00:22 -04005475
Jan Kara52083862013-08-17 10:07:17 -04005476 /*
5477 * Truncate pagecache after we've waited for commit
5478 * in data=journal mode to make pages freeable.
5479 */
Ross Zwisler923ae0f2015-02-16 15:59:38 -08005480 truncate_pagecache(inode, inode->i_size);
Jan Karab9c1c262019-05-30 11:56:23 -04005481 /*
5482 * Call ext4_truncate() even if i_size didn't change to
5483 * truncate possible preallocated blocks.
5484 */
5485 if (attr->ia_size <= oldsize) {
Theodore Ts'o2c98eb52016-11-13 22:02:26 -05005486 rc = ext4_truncate(inode);
5487 if (rc)
5488 error = rc;
5489 }
Jan Karab9c1c262019-05-30 11:56:23 -04005490out_mmap_sem:
Jan Karaea3d7202015-12-07 14:28:03 -05005491 up_write(&EXT4_I(inode)->i_mmap_sem);
Theodore Ts'o072bd7e2011-05-23 15:13:02 -04005492 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005493
Theodore Ts'o2c98eb52016-11-13 22:02:26 -05005494 if (!error) {
Christian Brauner14f3db52021-01-21 14:19:57 +01005495 setattr_copy(mnt_userns, inode, attr);
Christoph Hellwig10257742010-06-04 11:30:02 +02005496 mark_inode_dirty(inode);
5497 }
5498
5499 /*
5500 * If the call to ext4_truncate failed to get a transaction handle at
5501 * all, we need to clean up the in-core orphan list manually.
5502 */
Dmitry Monakhov3d287de2010-10-27 22:08:46 -04005503 if (orphan && inode->i_nlink)
Mingming Cao617ba132006-10-11 01:20:53 -07005504 ext4_orphan_del(NULL, inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005505
Theodore Ts'o2c98eb52016-11-13 22:02:26 -05005506 if (!error && (ia_valid & ATTR_MODE))
Christian Brauner14f3db52021-01-21 14:19:57 +01005507 rc = posix_acl_chmod(mnt_userns, inode, inode->i_mode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005508
5509err_out:
Harshad Shirwadkaraa75f4d2020-10-15 13:37:57 -07005510 if (error)
5511 ext4_std_error(inode->i_sb, error);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005512 if (!error)
5513 error = rc;
Harshad Shirwadkaraa75f4d2020-10-15 13:37:57 -07005514 ext4_fc_stop_update(inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005515 return error;
5516}
5517
Christian Brauner549c7292021-01-21 14:19:43 +01005518int ext4_getattr(struct user_namespace *mnt_userns, const struct path *path,
5519 struct kstat *stat, u32 request_mask, unsigned int query_flags)
Mingming Cao3e3398a2008-07-11 19:27:31 -04005520{
David Howells99652ea2017-03-31 18:31:56 +01005521 struct inode *inode = d_inode(path->dentry);
5522 struct ext4_inode *raw_inode;
5523 struct ext4_inode_info *ei = EXT4_I(inode);
5524 unsigned int flags;
Mingming Cao3e3398a2008-07-11 19:27:31 -04005525
Theodore Ts'od4c5e962019-11-28 22:26:51 -05005526 if ((request_mask & STATX_BTIME) &&
5527 EXT4_FITS_IN_INODE(raw_inode, ei, i_crtime)) {
David Howells99652ea2017-03-31 18:31:56 +01005528 stat->result_mask |= STATX_BTIME;
5529 stat->btime.tv_sec = ei->i_crtime.tv_sec;
5530 stat->btime.tv_nsec = ei->i_crtime.tv_nsec;
5531 }
5532
5533 flags = ei->i_flags & EXT4_FL_USER_VISIBLE;
5534 if (flags & EXT4_APPEND_FL)
5535 stat->attributes |= STATX_ATTR_APPEND;
5536 if (flags & EXT4_COMPR_FL)
5537 stat->attributes |= STATX_ATTR_COMPRESSED;
5538 if (flags & EXT4_ENCRYPT_FL)
5539 stat->attributes |= STATX_ATTR_ENCRYPTED;
5540 if (flags & EXT4_IMMUTABLE_FL)
5541 stat->attributes |= STATX_ATTR_IMMUTABLE;
5542 if (flags & EXT4_NODUMP_FL)
5543 stat->attributes |= STATX_ATTR_NODUMP;
Eric Biggers1f607192019-10-29 13:41:39 -07005544 if (flags & EXT4_VERITY_FL)
5545 stat->attributes |= STATX_ATTR_VERITY;
David Howells99652ea2017-03-31 18:31:56 +01005546
David Howells3209f682017-03-31 18:32:17 +01005547 stat->attributes_mask |= (STATX_ATTR_APPEND |
5548 STATX_ATTR_COMPRESSED |
5549 STATX_ATTR_ENCRYPTED |
5550 STATX_ATTR_IMMUTABLE |
Eric Biggers1f607192019-10-29 13:41:39 -07005551 STATX_ATTR_NODUMP |
5552 STATX_ATTR_VERITY);
David Howells3209f682017-03-31 18:32:17 +01005553
Christian Brauner14f3db52021-01-21 14:19:57 +01005554 generic_fillattr(mnt_userns, inode, stat);
David Howells99652ea2017-03-31 18:31:56 +01005555 return 0;
5556}
5557
Christian Brauner549c7292021-01-21 14:19:43 +01005558int ext4_file_getattr(struct user_namespace *mnt_userns,
5559 const struct path *path, struct kstat *stat,
David Howells99652ea2017-03-31 18:31:56 +01005560 u32 request_mask, unsigned int query_flags)
5561{
5562 struct inode *inode = d_inode(path->dentry);
5563 u64 delalloc_blocks;
5564
Christian Brauner14f3db52021-01-21 14:19:57 +01005565 ext4_getattr(mnt_userns, path, stat, request_mask, query_flags);
Mingming Cao3e3398a2008-07-11 19:27:31 -04005566
5567 /*
Andreas Dilger9206c562013-11-11 22:38:12 -05005568 * If there is inline data in the inode, the inode will normally not
5569 * have data blocks allocated (it may have an external xattr block).
5570 * Report at least one sector for such files, so tools like tar, rsync,
Theodore Ts'od67d64f2017-03-25 17:33:31 -04005571 * others don't incorrectly think the file is completely sparse.
Andreas Dilger9206c562013-11-11 22:38:12 -05005572 */
5573 if (unlikely(ext4_has_inline_data(inode)))
5574 stat->blocks += (stat->size + 511) >> 9;
5575
5576 /*
Mingming Cao3e3398a2008-07-11 19:27:31 -04005577 * We can't update i_blocks if the block allocation is delayed
5578 * otherwise in the case of system crash before the real block
5579 * allocation is done, we will have i_blocks inconsistent with
5580 * on-disk file blocks.
5581 * We always keep i_blocks updated together with real
5582 * allocation. But to not confuse with user, stat
5583 * will return the blocks that include the delayed allocation
5584 * blocks for this file.
5585 */
Tao Ma96607552012-05-31 22:54:16 -04005586 delalloc_blocks = EXT4_C2B(EXT4_SB(inode->i_sb),
Andreas Dilger9206c562013-11-11 22:38:12 -05005587 EXT4_I(inode)->i_reserved_data_blocks);
5588 stat->blocks += delalloc_blocks << (inode->i_sb->s_blocksize_bits - 9);
Mingming Cao3e3398a2008-07-11 19:27:31 -04005589 return 0;
5590}
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005591
Jan Karafffb2732013-06-04 13:01:11 -04005592static int ext4_index_trans_blocks(struct inode *inode, int lblocks,
5593 int pextents)
Mingming Caoa02908f2008-08-19 22:16:07 -04005594{
Dmitry Monakhov12e9b892010-05-16 22:00:00 -04005595 if (!(ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS)))
Jan Karafffb2732013-06-04 13:01:11 -04005596 return ext4_ind_trans_blocks(inode, lblocks);
5597 return ext4_ext_index_trans_blocks(inode, pextents);
Mingming Caoa02908f2008-08-19 22:16:07 -04005598}
Theodore Ts'oac51d832008-11-06 16:49:36 -05005599
Mingming Caoa02908f2008-08-19 22:16:07 -04005600/*
5601 * Account for index blocks, block groups bitmaps and block group
5602 * descriptor blocks if modify datablocks and index blocks
5603 * worse case, the indexs blocks spread over different block groups
5604 *
5605 * If datablocks are discontiguous, they are possible to spread over
Anatol Pomozov4907cb72012-09-01 10:31:09 -07005606 * different block groups too. If they are contiguous, with flexbg,
Mingming Caoa02908f2008-08-19 22:16:07 -04005607 * they could still across block group boundary.
5608 *
5609 * Also account for superblock, inode, quota and xattr blocks
5610 */
Tahsin Erdogandec214d2017-06-22 11:44:55 -04005611static int ext4_meta_trans_blocks(struct inode *inode, int lblocks,
Jan Karafffb2732013-06-04 13:01:11 -04005612 int pextents)
Mingming Caoa02908f2008-08-19 22:16:07 -04005613{
Theodore Ts'o8df96752009-05-01 08:50:38 -04005614 ext4_group_t groups, ngroups = ext4_get_groups_count(inode->i_sb);
5615 int gdpblocks;
Mingming Caoa02908f2008-08-19 22:16:07 -04005616 int idxblocks;
5617 int ret = 0;
5618
5619 /*
Jan Karafffb2732013-06-04 13:01:11 -04005620 * How many index blocks need to touch to map @lblocks logical blocks
5621 * to @pextents physical extents?
Mingming Caoa02908f2008-08-19 22:16:07 -04005622 */
Jan Karafffb2732013-06-04 13:01:11 -04005623 idxblocks = ext4_index_trans_blocks(inode, lblocks, pextents);
Mingming Caoa02908f2008-08-19 22:16:07 -04005624
5625 ret = idxblocks;
5626
5627 /*
5628 * Now let's see how many group bitmaps and group descriptors need
5629 * to account
5630 */
Jan Karafffb2732013-06-04 13:01:11 -04005631 groups = idxblocks + pextents;
Mingming Caoa02908f2008-08-19 22:16:07 -04005632 gdpblocks = groups;
Theodore Ts'o8df96752009-05-01 08:50:38 -04005633 if (groups > ngroups)
5634 groups = ngroups;
Mingming Caoa02908f2008-08-19 22:16:07 -04005635 if (groups > EXT4_SB(inode->i_sb)->s_gdb_count)
5636 gdpblocks = EXT4_SB(inode->i_sb)->s_gdb_count;
5637
5638 /* bitmaps and block group descriptor blocks */
5639 ret += groups + gdpblocks;
5640
5641 /* Blocks for super block, inode, quota and xattr blocks */
5642 ret += EXT4_META_TRANS_BLOCKS(inode->i_sb);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005643
5644 return ret;
5645}
5646
5647/*
Lucas De Marchi25985ed2011-03-30 22:57:33 -03005648 * Calculate the total number of credits to reserve to fit
Mingming Caof3bd1f32008-08-19 22:16:03 -04005649 * the modification of a single pages into a single transaction,
5650 * which may include multiple chunks of block allocations.
Mingming Caoa02908f2008-08-19 22:16:07 -04005651 *
Mingming Cao525f4ed2008-08-19 22:15:58 -04005652 * This could be called via ext4_write_begin()
Mingming Caoa02908f2008-08-19 22:16:07 -04005653 *
Mingming Cao525f4ed2008-08-19 22:15:58 -04005654 * We need to consider the worse case, when
Mingming Caoa02908f2008-08-19 22:16:07 -04005655 * one new block per extent.
Mingming Caoa02908f2008-08-19 22:16:07 -04005656 */
5657int ext4_writepage_trans_blocks(struct inode *inode)
5658{
5659 int bpp = ext4_journal_blocks_per_page(inode);
5660 int ret;
5661
Jan Karafffb2732013-06-04 13:01:11 -04005662 ret = ext4_meta_trans_blocks(inode, bpp, bpp);
Mingming Caoa02908f2008-08-19 22:16:07 -04005663
5664 /* Account for data blocks for journalled mode */
5665 if (ext4_should_journal_data(inode))
5666 ret += bpp;
5667 return ret;
5668}
Mingming Caof3bd1f32008-08-19 22:16:03 -04005669
5670/*
5671 * Calculate the journal credits for a chunk of data modification.
5672 *
5673 * This is called from DIO, fallocate or whoever calling
Eric Sandeen79e83032010-07-27 11:56:07 -04005674 * ext4_map_blocks() to map/allocate a chunk of contiguous disk blocks.
Mingming Caof3bd1f32008-08-19 22:16:03 -04005675 *
5676 * journal buffers for data blocks are not included here, as DIO
5677 * and fallocate do no need to journal data buffers.
5678 */
5679int ext4_chunk_trans_blocks(struct inode *inode, int nrblocks)
5680{
5681 return ext4_meta_trans_blocks(inode, nrblocks, 1);
5682}
5683
Mingming Caoa02908f2008-08-19 22:16:07 -04005684/*
Mingming Cao617ba132006-10-11 01:20:53 -07005685 * The caller must have previously called ext4_reserve_inode_write().
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005686 * Give this, we know that the caller already has write access to iloc->bh.
5687 */
Mingming Cao617ba132006-10-11 01:20:53 -07005688int ext4_mark_iloc_dirty(handle_t *handle,
Theodore Ts'ode9a55b2009-06-14 17:45:34 -04005689 struct inode *inode, struct ext4_iloc *iloc)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005690{
5691 int err = 0;
5692
Vasily Averina6758302018-11-06 16:49:50 -05005693 if (unlikely(ext4_forced_shutdown(EXT4_SB(inode->i_sb)))) {
5694 put_bh(iloc->bh);
Theodore Ts'o0db1ff22017-02-05 01:28:48 -05005695 return -EIO;
Vasily Averina6758302018-11-06 16:49:50 -05005696 }
Harshad Shirwadkara80f7fc2020-11-05 19:58:53 -08005697 ext4_fc_track_inode(handle, inode);
Harshad Shirwadkaraa75f4d2020-10-15 13:37:57 -07005698
Theodore Ts'oc64db502012-03-02 12:23:11 -05005699 if (IS_I_VERSION(inode))
Jean Noel Cordenner25ec56b2008-01-28 23:58:27 -05005700 inode_inc_iversion(inode);
5701
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005702 /* the do_update_inode consumes one bh->b_count */
5703 get_bh(iloc->bh);
5704
Mingming Caodab291a2006-10-11 01:21:01 -07005705 /* ext4_do_update_inode() does jbd2_journal_dirty_metadata */
Frank Mayhar830156c2009-09-29 10:07:47 -04005706 err = ext4_do_update_inode(handle, inode, iloc);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005707 put_bh(iloc->bh);
5708 return err;
5709}
5710
5711/*
5712 * On success, We end up with an outstanding reference count against
5713 * iloc->bh. This _must_ be cleaned up later.
5714 */
5715
5716int
Mingming Cao617ba132006-10-11 01:20:53 -07005717ext4_reserve_inode_write(handle_t *handle, struct inode *inode,
5718 struct ext4_iloc *iloc)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005719{
Frank Mayhar03901312009-01-07 00:06:22 -05005720 int err;
5721
Theodore Ts'o0db1ff22017-02-05 01:28:48 -05005722 if (unlikely(ext4_forced_shutdown(EXT4_SB(inode->i_sb))))
5723 return -EIO;
5724
Frank Mayhar03901312009-01-07 00:06:22 -05005725 err = ext4_get_inode_loc(inode, iloc);
5726 if (!err) {
5727 BUFFER_TRACE(iloc->bh, "get_write_access");
5728 err = ext4_journal_get_write_access(handle, iloc->bh);
5729 if (err) {
5730 brelse(iloc->bh);
5731 iloc->bh = NULL;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005732 }
5733 }
Mingming Cao617ba132006-10-11 01:20:53 -07005734 ext4_std_error(inode->i_sb, err);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005735 return err;
5736}
5737
Miao Xiec03b45b2017-08-06 01:00:49 -04005738static int __ext4_expand_extra_isize(struct inode *inode,
5739 unsigned int new_extra_isize,
5740 struct ext4_iloc *iloc,
5741 handle_t *handle, int *no_expand)
5742{
5743 struct ext4_inode *raw_inode;
5744 struct ext4_xattr_ibody_header *header;
Theodore Ts'o4ea99932019-11-07 21:43:41 -05005745 unsigned int inode_size = EXT4_INODE_SIZE(inode->i_sb);
5746 struct ext4_inode_info *ei = EXT4_I(inode);
Miao Xiec03b45b2017-08-06 01:00:49 -04005747 int error;
5748
Theodore Ts'o4ea99932019-11-07 21:43:41 -05005749 /* this was checked at iget time, but double check for good measure */
5750 if ((EXT4_GOOD_OLD_INODE_SIZE + ei->i_extra_isize > inode_size) ||
5751 (ei->i_extra_isize & 3)) {
5752 EXT4_ERROR_INODE(inode, "bad extra_isize %u (inode size %u)",
5753 ei->i_extra_isize,
5754 EXT4_INODE_SIZE(inode->i_sb));
5755 return -EFSCORRUPTED;
5756 }
5757 if ((new_extra_isize < ei->i_extra_isize) ||
5758 (new_extra_isize < 4) ||
5759 (new_extra_isize > inode_size - EXT4_GOOD_OLD_INODE_SIZE))
5760 return -EINVAL; /* Should never happen */
5761
Miao Xiec03b45b2017-08-06 01:00:49 -04005762 raw_inode = ext4_raw_inode(iloc);
5763
5764 header = IHDR(inode, raw_inode);
5765
5766 /* No extended attributes present */
5767 if (!ext4_test_inode_state(inode, EXT4_STATE_XATTR) ||
5768 header->h_magic != cpu_to_le32(EXT4_XATTR_MAGIC)) {
5769 memset((void *)raw_inode + EXT4_GOOD_OLD_INODE_SIZE +
5770 EXT4_I(inode)->i_extra_isize, 0,
5771 new_extra_isize - EXT4_I(inode)->i_extra_isize);
5772 EXT4_I(inode)->i_extra_isize = new_extra_isize;
5773 return 0;
5774 }
5775
5776 /* try to expand with EAs present */
5777 error = ext4_expand_extra_isize_ea(inode, new_extra_isize,
5778 raw_inode, handle);
5779 if (error) {
5780 /*
5781 * Inode size expansion failed; don't try again
5782 */
5783 *no_expand = 1;
5784 }
5785
5786 return error;
5787}
5788
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005789/*
Kalpak Shah6dd4ee72007-07-18 09:19:57 -04005790 * Expand an inode by new_extra_isize bytes.
5791 * Returns 0 on success or negative error number on failure.
5792 */
Miao Xiecf0a5e82017-08-06 00:40:01 -04005793static int ext4_try_to_expand_extra_isize(struct inode *inode,
5794 unsigned int new_extra_isize,
5795 struct ext4_iloc iloc,
5796 handle_t *handle)
Kalpak Shah6dd4ee72007-07-18 09:19:57 -04005797{
Miao Xie3b10fdc2017-08-06 00:27:38 -04005798 int no_expand;
5799 int error;
Kalpak Shah6dd4ee72007-07-18 09:19:57 -04005800
Miao Xiecf0a5e82017-08-06 00:40:01 -04005801 if (ext4_test_inode_state(inode, EXT4_STATE_NO_EXPAND))
5802 return -EOVERFLOW;
5803
5804 /*
5805 * In nojournal mode, we can immediately attempt to expand
5806 * the inode. When journaled, we first need to obtain extra
5807 * buffer credits since we may write into the EA block
5808 * with this same handle. If journal_extend fails, then it will
5809 * only result in a minor loss of functionality for that inode.
5810 * If this is felt to be critical, then e2fsck should be run to
5811 * force a large enough s_min_extra_isize.
5812 */
Jan Kara6cb367c2019-11-05 17:44:14 +01005813 if (ext4_journal_extend(handle,
Jan Kara83448bd2019-11-05 17:44:29 +01005814 EXT4_DATA_TRANS_BLOCKS(inode->i_sb), 0) != 0)
Miao Xiecf0a5e82017-08-06 00:40:01 -04005815 return -ENOSPC;
Kalpak Shah6dd4ee72007-07-18 09:19:57 -04005816
Miao Xie3b10fdc2017-08-06 00:27:38 -04005817 if (ext4_write_trylock_xattr(inode, &no_expand) == 0)
Miao Xiecf0a5e82017-08-06 00:40:01 -04005818 return -EBUSY;
Miao Xie3b10fdc2017-08-06 00:27:38 -04005819
Miao Xiec03b45b2017-08-06 01:00:49 -04005820 error = __ext4_expand_extra_isize(inode, new_extra_isize, &iloc,
5821 handle, &no_expand);
Miao Xie3b10fdc2017-08-06 00:27:38 -04005822 ext4_write_unlock_xattr(inode, &no_expand);
Miao Xiecf0a5e82017-08-06 00:40:01 -04005823
Miao Xie3b10fdc2017-08-06 00:27:38 -04005824 return error;
Kalpak Shah6dd4ee72007-07-18 09:19:57 -04005825}
5826
Miao Xiec03b45b2017-08-06 01:00:49 -04005827int ext4_expand_extra_isize(struct inode *inode,
5828 unsigned int new_extra_isize,
5829 struct ext4_iloc *iloc)
5830{
5831 handle_t *handle;
5832 int no_expand;
5833 int error, rc;
5834
5835 if (ext4_test_inode_state(inode, EXT4_STATE_NO_EXPAND)) {
5836 brelse(iloc->bh);
5837 return -EOVERFLOW;
5838 }
5839
5840 handle = ext4_journal_start(inode, EXT4_HT_INODE,
5841 EXT4_DATA_TRANS_BLOCKS(inode->i_sb));
5842 if (IS_ERR(handle)) {
5843 error = PTR_ERR(handle);
5844 brelse(iloc->bh);
5845 return error;
5846 }
5847
5848 ext4_write_lock_xattr(inode, &no_expand);
5849
zhangyi (F)ddccb6d2019-02-21 11:29:10 -05005850 BUFFER_TRACE(iloc->bh, "get_write_access");
Miao Xiec03b45b2017-08-06 01:00:49 -04005851 error = ext4_journal_get_write_access(handle, iloc->bh);
5852 if (error) {
5853 brelse(iloc->bh);
Dan Carpenter7f420d642019-12-13 21:50:11 +03005854 goto out_unlock;
Miao Xiec03b45b2017-08-06 01:00:49 -04005855 }
5856
5857 error = __ext4_expand_extra_isize(inode, new_extra_isize, iloc,
5858 handle, &no_expand);
5859
5860 rc = ext4_mark_iloc_dirty(handle, inode, iloc);
5861 if (!error)
5862 error = rc;
5863
Dan Carpenter7f420d642019-12-13 21:50:11 +03005864out_unlock:
Miao Xiec03b45b2017-08-06 01:00:49 -04005865 ext4_write_unlock_xattr(inode, &no_expand);
Miao Xiec03b45b2017-08-06 01:00:49 -04005866 ext4_journal_stop(handle);
5867 return error;
5868}
5869
Kalpak Shah6dd4ee72007-07-18 09:19:57 -04005870/*
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005871 * What we do here is to mark the in-core inode as clean with respect to inode
5872 * dirtiness (it may still be data-dirty).
5873 * This means that the in-core inode may be reaped by prune_icache
5874 * without having to perform any I/O. This is a very good thing,
5875 * because *any* task may call prune_icache - even ones which
5876 * have a transaction open against a different journal.
5877 *
5878 * Is this cheating? Not really. Sure, we haven't written the
5879 * inode out, but prune_icache isn't a user-visible syncing function.
5880 * Whenever the user wants stuff synced (sys_sync, sys_msync, sys_fsync)
5881 * we start and wait on commits.
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005882 */
Harshad Shirwadkar4209ae12020-04-26 18:34:37 -07005883int __ext4_mark_inode_dirty(handle_t *handle, struct inode *inode,
5884 const char *func, unsigned int line)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005885{
Mingming Cao617ba132006-10-11 01:20:53 -07005886 struct ext4_iloc iloc;
Kalpak Shah6dd4ee72007-07-18 09:19:57 -04005887 struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb);
Miao Xiecf0a5e82017-08-06 00:40:01 -04005888 int err;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005889
5890 might_sleep();
Theodore Ts'o7ff9c072010-11-08 13:51:33 -05005891 trace_ext4_mark_inode_dirty(inode, _RET_IP_);
Mingming Cao617ba132006-10-11 01:20:53 -07005892 err = ext4_reserve_inode_write(handle, inode, &iloc);
Eryu Guan5e1021f2016-03-12 21:40:32 -05005893 if (err)
Harshad Shirwadkar4209ae12020-04-26 18:34:37 -07005894 goto out;
Miao Xiecf0a5e82017-08-06 00:40:01 -04005895
5896 if (EXT4_I(inode)->i_extra_isize < sbi->s_want_extra_isize)
5897 ext4_try_to_expand_extra_isize(inode, sbi->s_want_extra_isize,
5898 iloc, handle);
5899
Harshad Shirwadkar4209ae12020-04-26 18:34:37 -07005900 err = ext4_mark_iloc_dirty(handle, inode, &iloc);
5901out:
5902 if (unlikely(err))
5903 ext4_error_inode_err(inode, func, line, 0, err,
5904 "mark_inode_dirty error");
5905 return err;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005906}
5907
5908/*
Mingming Cao617ba132006-10-11 01:20:53 -07005909 * ext4_dirty_inode() is called from __mark_inode_dirty()
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005910 *
5911 * We're really interested in the case where a file is being extended.
5912 * i_size has been changed by generic_commit_write() and we thus need
5913 * to include the updated inode in the current transaction.
5914 *
Christoph Hellwig5dd40562010-03-03 09:05:00 -05005915 * Also, dquot_alloc_block() will always dirty the inode when blocks
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005916 * are allocated to the file.
5917 *
5918 * If the inode is marked synchronous, we don't honour that here - doing
5919 * so would cause a commit on atime updates, which we don't bother doing.
5920 * We handle synchronous inodes at the highest possible level.
5921 */
Christoph Hellwigaa385722011-05-27 06:53:02 -04005922void ext4_dirty_inode(struct inode *inode, int flags)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005923{
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005924 handle_t *handle;
5925
Theodore Ts'o9924a922013-02-08 21:59:22 -05005926 handle = ext4_journal_start(inode, EXT4_HT_INODE, 2);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005927 if (IS_ERR(handle))
Eric Biggerse2728c52021-01-12 11:02:47 -08005928 return;
Curt Wohlgemuthf3dc2722009-09-29 16:06:01 -04005929 ext4_mark_inode_dirty(handle, inode);
Mingming Cao617ba132006-10-11 01:20:53 -07005930 ext4_journal_stop(handle);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005931}
5932
Mingming Cao617ba132006-10-11 01:20:53 -07005933int ext4_change_inode_journal_flag(struct inode *inode, int val)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005934{
5935 journal_t *journal;
5936 handle_t *handle;
5937 int err;
Daeho Jeongc8585c62016-04-25 23:22:35 -04005938 struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005939
5940 /*
5941 * We have to be very careful here: changing a data block's
5942 * journaling status dynamically is dangerous. If we write a
5943 * data block to the journal, change the status and then delete
5944 * that block, we risk forgetting to revoke the old log record
5945 * from the journal and so a subsequent replay can corrupt data.
5946 * So, first we make sure that the journal is empty and that
5947 * nobody is changing anything.
5948 */
5949
Mingming Cao617ba132006-10-11 01:20:53 -07005950 journal = EXT4_JOURNAL(inode);
Frank Mayhar03901312009-01-07 00:06:22 -05005951 if (!journal)
5952 return 0;
Dave Hansend6995942007-07-18 08:33:51 -04005953 if (is_journal_aborted(journal))
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005954 return -EROFS;
5955
Dmitry Monakhov17335dc2012-09-29 00:41:21 -04005956 /* Wait for all existing dio workers */
Dmitry Monakhov17335dc2012-09-29 00:41:21 -04005957 inode_dio_wait(inode);
5958
Daeho Jeong4c546592016-04-25 23:21:00 -04005959 /*
5960 * Before flushing the journal and switching inode's aops, we have
5961 * to flush all dirty data the inode has. There can be outstanding
5962 * delayed allocations, there can be unwritten extents created by
5963 * fallocate or buffered writes in dioread_nolock mode covered by
5964 * dirty data which can be converted only after flushing the dirty
5965 * data (and journalled aops don't know how to handle these cases).
5966 */
5967 if (val) {
5968 down_write(&EXT4_I(inode)->i_mmap_sem);
5969 err = filemap_write_and_wait(inode->i_mapping);
5970 if (err < 0) {
5971 up_write(&EXT4_I(inode)->i_mmap_sem);
Daeho Jeong4c546592016-04-25 23:21:00 -04005972 return err;
5973 }
5974 }
5975
Eric Biggersbbd55932020-02-19 10:30:46 -08005976 percpu_down_write(&sbi->s_writepages_rwsem);
Mingming Caodab291a2006-10-11 01:21:01 -07005977 jbd2_journal_lock_updates(journal);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005978
5979 /*
5980 * OK, there are no updates running now, and all cached data is
5981 * synced to disk. We are now in a completely consistent state
5982 * which doesn't have anything in the journal, and we know that
5983 * no filesystem updates are running, so it is safe to modify
5984 * the inode's in-core data-journaling state flag now.
5985 */
5986
5987 if (val)
Dmitry Monakhov12e9b892010-05-16 22:00:00 -04005988 ext4_set_inode_flag(inode, EXT4_INODE_JOURNAL_DATA);
Yongqiang Yang5872dda2011-12-28 13:55:51 -05005989 else {
Leah Rumancik01d5d962021-05-18 15:13:25 +00005990 err = jbd2_journal_flush(journal, 0);
Jan Kara4f879ca2014-10-30 10:53:17 -04005991 if (err < 0) {
5992 jbd2_journal_unlock_updates(journal);
Eric Biggersbbd55932020-02-19 10:30:46 -08005993 percpu_up_write(&sbi->s_writepages_rwsem);
Jan Kara4f879ca2014-10-30 10:53:17 -04005994 return err;
5995 }
Dmitry Monakhov12e9b892010-05-16 22:00:00 -04005996 ext4_clear_inode_flag(inode, EXT4_INODE_JOURNAL_DATA);
Yongqiang Yang5872dda2011-12-28 13:55:51 -05005997 }
Mingming Cao617ba132006-10-11 01:20:53 -07005998 ext4_set_aops(inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005999
Mingming Caodab291a2006-10-11 01:21:01 -07006000 jbd2_journal_unlock_updates(journal);
Eric Biggersbbd55932020-02-19 10:30:46 -08006001 percpu_up_write(&sbi->s_writepages_rwsem);
Daeho Jeongc8585c62016-04-25 23:22:35 -04006002
Daeho Jeong4c546592016-04-25 23:21:00 -04006003 if (val)
6004 up_write(&EXT4_I(inode)->i_mmap_sem);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07006005
6006 /* Finally we can mark the inode as dirty. */
6007
Theodore Ts'o9924a922013-02-08 21:59:22 -05006008 handle = ext4_journal_start(inode, EXT4_HT_INODE, 1);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07006009 if (IS_ERR(handle))
6010 return PTR_ERR(handle);
6011
Harshad Shirwadkaraa75f4d2020-10-15 13:37:57 -07006012 ext4_fc_mark_ineligible(inode->i_sb,
6013 EXT4_FC_REASON_JOURNAL_FLAG_CHANGE);
Mingming Cao617ba132006-10-11 01:20:53 -07006014 err = ext4_mark_inode_dirty(handle, inode);
Frank Mayhar03901312009-01-07 00:06:22 -05006015 ext4_handle_sync(handle);
Mingming Cao617ba132006-10-11 01:20:53 -07006016 ext4_journal_stop(handle);
6017 ext4_std_error(inode->i_sb, err);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07006018
6019 return err;
6020}
Aneesh Kumar K.V2e9ee852008-07-11 19:27:31 -04006021
6022static int ext4_bh_unmapped(handle_t *handle, struct buffer_head *bh)
6023{
6024 return !buffer_mapped(bh);
6025}
6026
Souptick Joarder401b25a2018-10-02 22:20:50 -04006027vm_fault_t ext4_page_mkwrite(struct vm_fault *vmf)
Aneesh Kumar K.V2e9ee852008-07-11 19:27:31 -04006028{
Dave Jiang11bac802017-02-24 14:56:41 -08006029 struct vm_area_struct *vma = vmf->vma;
Nick Pigginc2ec1752009-03-31 15:23:21 -07006030 struct page *page = vmf->page;
Aneesh Kumar K.V2e9ee852008-07-11 19:27:31 -04006031 loff_t size;
6032 unsigned long len;
Souptick Joarder401b25a2018-10-02 22:20:50 -04006033 int err;
6034 vm_fault_t ret;
Aneesh Kumar K.V2e9ee852008-07-11 19:27:31 -04006035 struct file *file = vma->vm_file;
Al Viro496ad9a2013-01-23 17:07:38 -05006036 struct inode *inode = file_inode(file);
Aneesh Kumar K.V2e9ee852008-07-11 19:27:31 -04006037 struct address_space *mapping = inode->i_mapping;
Jan Kara9ea7df52011-06-24 14:29:41 -04006038 handle_t *handle;
6039 get_block_t *get_block;
6040 int retries = 0;
Aneesh Kumar K.V2e9ee852008-07-11 19:27:31 -04006041
Theodore Ts'o02b016c2019-06-09 22:04:33 -04006042 if (unlikely(IS_IMMUTABLE(inode)))
6043 return VM_FAULT_SIGBUS;
6044
Jan Kara8e8ad8a2012-06-12 16:20:38 +02006045 sb_start_pagefault(inode->i_sb);
Theodore Ts'o041bbb6d2012-09-30 23:04:56 -04006046 file_update_time(vma->vm_file);
Jan Karaea3d7202015-12-07 14:28:03 -05006047
6048 down_read(&EXT4_I(inode)->i_mmap_sem);
Eric Biggers7b4cc972017-04-30 00:10:50 -04006049
Souptick Joarder401b25a2018-10-02 22:20:50 -04006050 err = ext4_convert_inline_data(inode);
6051 if (err)
Eric Biggers7b4cc972017-04-30 00:10:50 -04006052 goto out_ret;
6053
Mauricio Faria de Oliveira64a9f142020-10-05 21:48:40 -03006054 /*
6055 * On data journalling we skip straight to the transaction handle:
6056 * there's no delalloc; page truncated will be checked later; the
6057 * early return w/ all buffers mapped (calculates size/len) can't
6058 * be used; and there's no dioread_nolock, so only ext4_get_block.
6059 */
6060 if (ext4_should_journal_data(inode))
6061 goto retry_alloc;
6062
Jan Kara9ea7df52011-06-24 14:29:41 -04006063 /* Delalloc case is easy... */
6064 if (test_opt(inode->i_sb, DELALLOC) &&
Jan Kara9ea7df52011-06-24 14:29:41 -04006065 !ext4_nonda_switch(inode->i_sb)) {
6066 do {
Souptick Joarder401b25a2018-10-02 22:20:50 -04006067 err = block_page_mkwrite(vma, vmf,
Jan Kara9ea7df52011-06-24 14:29:41 -04006068 ext4_da_get_block_prep);
Souptick Joarder401b25a2018-10-02 22:20:50 -04006069 } while (err == -ENOSPC &&
Jan Kara9ea7df52011-06-24 14:29:41 -04006070 ext4_should_retry_alloc(inode->i_sb, &retries));
6071 goto out_ret;
Aneesh Kumar K.V2e9ee852008-07-11 19:27:31 -04006072 }
Darrick J. Wong0e499892011-05-18 13:55:20 -04006073
6074 lock_page(page);
Jan Kara9ea7df52011-06-24 14:29:41 -04006075 size = i_size_read(inode);
6076 /* Page got truncated from under us? */
6077 if (page->mapping != mapping || page_offset(page) > size) {
6078 unlock_page(page);
6079 ret = VM_FAULT_NOPAGE;
6080 goto out;
Darrick J. Wong0e499892011-05-18 13:55:20 -04006081 }
Aneesh Kumar K.V2e9ee852008-07-11 19:27:31 -04006082
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03006083 if (page->index == size >> PAGE_SHIFT)
6084 len = size & ~PAGE_MASK;
Aneesh Kumar K.V2e9ee852008-07-11 19:27:31 -04006085 else
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03006086 len = PAGE_SIZE;
Aneesh Kumar K.Va827eaf2009-09-09 22:36:03 -04006087 /*
Jan Kara9ea7df52011-06-24 14:29:41 -04006088 * Return if we have all the buffers mapped. This avoids the need to do
6089 * journal_start/journal_stop which can block and take a long time
Mauricio Faria de Oliveira64a9f142020-10-05 21:48:40 -03006090 *
6091 * This cannot be done for data journalling, as we have to add the
6092 * inode to the transaction's list to writeprotect pages on commit.
Aneesh Kumar K.Va827eaf2009-09-09 22:36:03 -04006093 */
Aneesh Kumar K.V2e9ee852008-07-11 19:27:31 -04006094 if (page_has_buffers(page)) {
Tao Maf19d5872012-12-10 14:05:51 -05006095 if (!ext4_walk_page_buffers(NULL, page_buffers(page),
6096 0, len, NULL,
6097 ext4_bh_unmapped)) {
Jan Kara9ea7df52011-06-24 14:29:41 -04006098 /* Wait so that we don't change page under IO */
Darrick J. Wong1d1d1a72013-02-21 16:42:51 -08006099 wait_for_stable_page(page);
Jan Kara9ea7df52011-06-24 14:29:41 -04006100 ret = VM_FAULT_LOCKED;
6101 goto out;
Aneesh Kumar K.Va827eaf2009-09-09 22:36:03 -04006102 }
Aneesh Kumar K.V2e9ee852008-07-11 19:27:31 -04006103 }
Aneesh Kumar K.Va827eaf2009-09-09 22:36:03 -04006104 unlock_page(page);
Jan Kara9ea7df52011-06-24 14:29:41 -04006105 /* OK, we need to fill the hole... */
6106 if (ext4_should_dioread_nolock(inode))
Jan Kara705965b2016-03-08 23:08:10 -05006107 get_block = ext4_get_block_unwritten;
Jan Kara9ea7df52011-06-24 14:29:41 -04006108 else
6109 get_block = ext4_get_block;
6110retry_alloc:
Theodore Ts'o9924a922013-02-08 21:59:22 -05006111 handle = ext4_journal_start(inode, EXT4_HT_WRITE_PAGE,
6112 ext4_writepage_trans_blocks(inode));
Jan Kara9ea7df52011-06-24 14:29:41 -04006113 if (IS_ERR(handle)) {
Nick Pigginc2ec1752009-03-31 15:23:21 -07006114 ret = VM_FAULT_SIGBUS;
Jan Kara9ea7df52011-06-24 14:29:41 -04006115 goto out;
6116 }
Mauricio Faria de Oliveira64a9f142020-10-05 21:48:40 -03006117 /*
6118 * Data journalling can't use block_page_mkwrite() because it
6119 * will set_buffer_dirty() before do_journal_get_write_access()
6120 * thus might hit warning messages for dirty metadata buffers.
6121 */
6122 if (!ext4_should_journal_data(inode)) {
6123 err = block_page_mkwrite(vma, vmf, get_block);
6124 } else {
6125 lock_page(page);
6126 size = i_size_read(inode);
6127 /* Page got truncated from under us? */
6128 if (page->mapping != mapping || page_offset(page) > size) {
Mauricio Faria de Oliveira64a9f142020-10-05 21:48:40 -03006129 ret = VM_FAULT_NOPAGE;
Mauricio Faria de Oliveiraafb585a2020-10-05 21:48:41 -03006130 goto out_error;
Jan Kara9ea7df52011-06-24 14:29:41 -04006131 }
Mauricio Faria de Oliveira64a9f142020-10-05 21:48:40 -03006132
6133 if (page->index == size >> PAGE_SHIFT)
6134 len = size & ~PAGE_MASK;
6135 else
6136 len = PAGE_SIZE;
6137
6138 err = __block_write_begin(page, 0, len, ext4_get_block);
6139 if (!err) {
Mauricio Faria de Oliveiraafb585a2020-10-05 21:48:41 -03006140 ret = VM_FAULT_SIGBUS;
Mauricio Faria de Oliveira64a9f142020-10-05 21:48:40 -03006141 if (ext4_walk_page_buffers(handle, page_buffers(page),
Mauricio Faria de Oliveiraafb585a2020-10-05 21:48:41 -03006142 0, len, NULL, do_journal_get_write_access))
6143 goto out_error;
6144 if (ext4_walk_page_buffers(handle, page_buffers(page),
6145 0, len, NULL, write_end_fn))
6146 goto out_error;
Jan Karab5b18162020-10-27 14:27:51 +01006147 if (ext4_jbd2_inode_add_write(handle, inode,
6148 page_offset(page), len))
Mauricio Faria de Oliveiraafb585a2020-10-05 21:48:41 -03006149 goto out_error;
Mauricio Faria de Oliveira64a9f142020-10-05 21:48:40 -03006150 ext4_set_inode_state(inode, EXT4_STATE_JDATA);
6151 } else {
6152 unlock_page(page);
6153 }
Jan Kara9ea7df52011-06-24 14:29:41 -04006154 }
6155 ext4_journal_stop(handle);
Souptick Joarder401b25a2018-10-02 22:20:50 -04006156 if (err == -ENOSPC && ext4_should_retry_alloc(inode->i_sb, &retries))
Jan Kara9ea7df52011-06-24 14:29:41 -04006157 goto retry_alloc;
6158out_ret:
Souptick Joarder401b25a2018-10-02 22:20:50 -04006159 ret = block_page_mkwrite_return(err);
Jan Kara9ea7df52011-06-24 14:29:41 -04006160out:
Jan Karaea3d7202015-12-07 14:28:03 -05006161 up_read(&EXT4_I(inode)->i_mmap_sem);
Jan Kara8e8ad8a2012-06-12 16:20:38 +02006162 sb_end_pagefault(inode->i_sb);
Aneesh Kumar K.V2e9ee852008-07-11 19:27:31 -04006163 return ret;
Mauricio Faria de Oliveiraafb585a2020-10-05 21:48:41 -03006164out_error:
6165 unlock_page(page);
6166 ext4_journal_stop(handle);
6167 goto out;
Aneesh Kumar K.V2e9ee852008-07-11 19:27:31 -04006168}
Jan Karaea3d7202015-12-07 14:28:03 -05006169
Souptick Joarder401b25a2018-10-02 22:20:50 -04006170vm_fault_t ext4_filemap_fault(struct vm_fault *vmf)
Jan Karaea3d7202015-12-07 14:28:03 -05006171{
Dave Jiang11bac802017-02-24 14:56:41 -08006172 struct inode *inode = file_inode(vmf->vma->vm_file);
Souptick Joarder401b25a2018-10-02 22:20:50 -04006173 vm_fault_t ret;
Jan Karaea3d7202015-12-07 14:28:03 -05006174
6175 down_read(&EXT4_I(inode)->i_mmap_sem);
Souptick Joarder401b25a2018-10-02 22:20:50 -04006176 ret = filemap_fault(vmf);
Jan Karaea3d7202015-12-07 14:28:03 -05006177 up_read(&EXT4_I(inode)->i_mmap_sem);
6178
Souptick Joarder401b25a2018-10-02 22:20:50 -04006179 return ret;
Jan Karaea3d7202015-12-07 14:28:03 -05006180}