blob: 4cc6c7834312fede929adfe3dcba2a8f3da0d95f [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001// SPDX-License-Identifier: GPL-2.0
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002/*
Mingming Cao617ba132006-10-11 01:20:53 -07003 * linux/fs/ext4/inode.c
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004 *
5 * Copyright (C) 1992, 1993, 1994, 1995
6 * Remy Card (card@masi.ibp.fr)
7 * Laboratoire MASI - Institut Blaise Pascal
8 * Universite Pierre et Marie Curie (Paris VI)
9 *
10 * from
11 *
12 * linux/fs/minix/inode.c
13 *
14 * Copyright (C) 1991, 1992 Linus Torvalds
15 *
Dave Kleikampac27a0e2006-10-11 01:20:50 -070016 * 64-bit file support on 64-bit platforms by Jakub Jelinek
17 * (jj@sunsite.ms.mff.cuni.cz)
18 *
Mingming Cao617ba132006-10-11 01:20:53 -070019 * Assorted race fixes, rewrite of ext4_get_block() by Al Viro, 2000
Dave Kleikampac27a0e2006-10-11 01:20:50 -070020 */
21
Dave Kleikampac27a0e2006-10-11 01:20:50 -070022#include <linux/fs.h>
23#include <linux/time.h>
Dave Kleikampac27a0e2006-10-11 01:20:50 -070024#include <linux/highuid.h>
25#include <linux/pagemap.h>
Matthew Wilcoxc94c2ac2015-09-08 14:58:40 -070026#include <linux/dax.h>
Dave Kleikampac27a0e2006-10-11 01:20:50 -070027#include <linux/quotaops.h>
28#include <linux/string.h>
29#include <linux/buffer_head.h>
30#include <linux/writeback.h>
Alex Tomas64769242008-07-11 19:27:31 -040031#include <linux/pagevec.h>
Dave Kleikampac27a0e2006-10-11 01:20:50 -070032#include <linux/mpage.h>
Duane Griffine83c1392008-12-19 20:47:15 +000033#include <linux/namei.h>
Dave Kleikampac27a0e2006-10-11 01:20:50 -070034#include <linux/uio.h>
35#include <linux/bio.h>
Mingming Cao4c0425f2009-09-28 15:48:41 -040036#include <linux/workqueue.h>
Jiaying Zhang744692d2010-03-04 16:14:02 -050037#include <linux/kernel.h>
Andrew Morton6db26ff2011-01-12 16:59:13 -080038#include <linux/printk.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090039#include <linux/slab.h>
Theodore Ts'o00a1a052014-03-30 10:20:01 -040040#include <linux/bitops.h>
Jan Kara364443c2016-11-20 17:36:06 -050041#include <linux/iomap.h>
Jeff Laytonae5e1652018-01-29 06:41:30 -050042#include <linux/iversion.h>
Theodore Ts'o9bffad12009-06-17 11:48:11 -040043
Christoph Hellwig3dcf5452008-04-29 18:13:32 -040044#include "ext4_jbd2.h"
Dave Kleikampac27a0e2006-10-11 01:20:50 -070045#include "xattr.h"
46#include "acl.h"
Theodore Ts'o9f125d62011-06-27 19:16:04 -040047#include "truncate.h"
Dave Kleikampac27a0e2006-10-11 01:20:50 -070048
Theodore Ts'o9bffad12009-06-17 11:48:11 -040049#include <trace/events/ext4.h>
50
Darrick J. Wong814525f2012-04-29 18:31:10 -040051static __u32 ext4_inode_csum(struct inode *inode, struct ext4_inode *raw,
52 struct ext4_inode_info *ei)
53{
54 struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb);
Darrick J. Wong814525f2012-04-29 18:31:10 -040055 __u32 csum;
Daeho Jeongb47820e2016-07-03 17:51:39 -040056 __u16 dummy_csum = 0;
57 int offset = offsetof(struct ext4_inode, i_checksum_lo);
58 unsigned int csum_size = sizeof(dummy_csum);
Darrick J. Wong814525f2012-04-29 18:31:10 -040059
Daeho Jeongb47820e2016-07-03 17:51:39 -040060 csum = ext4_chksum(sbi, ei->i_csum_seed, (__u8 *)raw, offset);
61 csum = ext4_chksum(sbi, csum, (__u8 *)&dummy_csum, csum_size);
62 offset += csum_size;
63 csum = ext4_chksum(sbi, csum, (__u8 *)raw + offset,
64 EXT4_GOOD_OLD_INODE_SIZE - offset);
65
66 if (EXT4_INODE_SIZE(inode->i_sb) > EXT4_GOOD_OLD_INODE_SIZE) {
67 offset = offsetof(struct ext4_inode, i_checksum_hi);
68 csum = ext4_chksum(sbi, csum, (__u8 *)raw +
69 EXT4_GOOD_OLD_INODE_SIZE,
70 offset - EXT4_GOOD_OLD_INODE_SIZE);
71 if (EXT4_FITS_IN_INODE(raw, ei, i_checksum_hi)) {
72 csum = ext4_chksum(sbi, csum, (__u8 *)&dummy_csum,
73 csum_size);
74 offset += csum_size;
Daeho Jeongb47820e2016-07-03 17:51:39 -040075 }
Daeho Jeong05ac5aa2016-12-01 11:49:12 -050076 csum = ext4_chksum(sbi, csum, (__u8 *)raw + offset,
77 EXT4_INODE_SIZE(inode->i_sb) - offset);
Darrick J. Wong814525f2012-04-29 18:31:10 -040078 }
79
Darrick J. Wong814525f2012-04-29 18:31:10 -040080 return csum;
81}
82
83static int ext4_inode_csum_verify(struct inode *inode, struct ext4_inode *raw,
84 struct ext4_inode_info *ei)
85{
86 __u32 provided, calculated;
87
88 if (EXT4_SB(inode->i_sb)->s_es->s_creator_os !=
89 cpu_to_le32(EXT4_OS_LINUX) ||
Dmitry Monakhov9aa5d32b2014-10-13 03:36:16 -040090 !ext4_has_metadata_csum(inode->i_sb))
Darrick J. Wong814525f2012-04-29 18:31:10 -040091 return 1;
92
93 provided = le16_to_cpu(raw->i_checksum_lo);
94 calculated = ext4_inode_csum(inode, raw, ei);
95 if (EXT4_INODE_SIZE(inode->i_sb) > EXT4_GOOD_OLD_INODE_SIZE &&
96 EXT4_FITS_IN_INODE(raw, ei, i_checksum_hi))
97 provided |= ((__u32)le16_to_cpu(raw->i_checksum_hi)) << 16;
98 else
99 calculated &= 0xFFFF;
100
101 return provided == calculated;
102}
103
Harshad Shirwadkar8016e292020-10-15 13:37:59 -0700104void ext4_inode_csum_set(struct inode *inode, struct ext4_inode *raw,
105 struct ext4_inode_info *ei)
Darrick J. Wong814525f2012-04-29 18:31:10 -0400106{
107 __u32 csum;
108
109 if (EXT4_SB(inode->i_sb)->s_es->s_creator_os !=
110 cpu_to_le32(EXT4_OS_LINUX) ||
Dmitry Monakhov9aa5d32b2014-10-13 03:36:16 -0400111 !ext4_has_metadata_csum(inode->i_sb))
Darrick J. Wong814525f2012-04-29 18:31:10 -0400112 return;
113
114 csum = ext4_inode_csum(inode, raw, ei);
115 raw->i_checksum_lo = cpu_to_le16(csum & 0xFFFF);
116 if (EXT4_INODE_SIZE(inode->i_sb) > EXT4_GOOD_OLD_INODE_SIZE &&
117 EXT4_FITS_IN_INODE(raw, ei, i_checksum_hi))
118 raw->i_checksum_hi = cpu_to_le16(csum >> 16);
119}
120
Jan Kara678aaf42008-07-11 19:27:31 -0400121static inline int ext4_begin_ordered_truncate(struct inode *inode,
122 loff_t new_size)
123{
Theodore Ts'o7ff9c072010-11-08 13:51:33 -0500124 trace_ext4_begin_ordered_truncate(inode, new_size);
Theodore Ts'o8aefcd52011-01-10 12:29:43 -0500125 /*
126 * If jinode is zero, then we never opened the file for
127 * writing, so there's no need to call
128 * jbd2_journal_begin_ordered_truncate() since there's no
129 * outstanding writes we need to flush.
130 */
131 if (!EXT4_I(inode)->jinode)
132 return 0;
133 return jbd2_journal_begin_ordered_truncate(EXT4_JOURNAL(inode),
134 EXT4_I(inode)->jinode,
135 new_size);
Jan Kara678aaf42008-07-11 19:27:31 -0400136}
137
Lukas Czernerd47992f2013-05-21 23:17:23 -0400138static void ext4_invalidatepage(struct page *page, unsigned int offset,
139 unsigned int length);
Theodore Ts'ocb20d512010-10-27 21:30:09 -0400140static int __ext4_journalled_writepage(struct page *page, unsigned int len);
141static int ext4_bh_delay_or_unwritten(handle_t *handle, struct buffer_head *bh);
Tahsin Erdogandec214d2017-06-22 11:44:55 -0400142static int ext4_meta_trans_blocks(struct inode *inode, int lblocks,
143 int pextents);
Alex Tomas64769242008-07-11 19:27:31 -0400144
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700145/*
146 * Test whether an inode is a fast symlink.
Tahsin Erdogan407cd7f2017-07-04 00:11:21 -0400147 * A fast symlink has its symlink data stored in ext4_inode_info->i_data.
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700148 */
Theodore Ts'of348c252015-04-16 01:55:00 -0400149int ext4_inode_is_fast_symlink(struct inode *inode)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700150{
Andi Kleenfc822282017-12-03 20:38:01 -0500151 if (!(EXT4_I(inode)->i_flags & EXT4_EA_INODE_FL)) {
152 int ea_blocks = EXT4_I(inode)->i_file_acl ?
153 EXT4_CLUSTER_SIZE(inode->i_sb) >> 9 : 0;
154
155 if (ext4_has_inline_data(inode))
156 return 0;
157
158 return (S_ISLNK(inode->i_mode) && inode->i_blocks - ea_blocks == 0);
159 }
Tahsin Erdogan407cd7f2017-07-04 00:11:21 -0400160 return S_ISLNK(inode->i_mode) && inode->i_size &&
161 (inode->i_size < EXT4_N_BLOCKS * 4);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700162}
163
164/*
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700165 * Called at the last iput() if i_nlink is zero.
166 */
Al Viro0930fcc2010-06-07 13:16:22 -0400167void ext4_evict_inode(struct inode *inode)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700168{
169 handle_t *handle;
Theodore Ts'obc965ab2008-08-02 21:10:38 -0400170 int err;
Jan Kara65db8692019-11-05 17:44:12 +0100171 /*
172 * Credits for final inode cleanup and freeing:
173 * sb + inode (ext4_orphan_del()), block bitmap, group descriptor
174 * (xattr block freeing), bitmap, group descriptor (inode freeing)
175 */
176 int extra_credits = 6;
Tahsin Erdogan0421a182017-06-22 10:26:31 -0400177 struct ext4_xattr_inode_array *ea_inode_array = NULL;
Jan Kara46e294e2020-11-27 12:06:49 +0100178 bool freeze_protected = false;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700179
Theodore Ts'o7ff9c072010-11-08 13:51:33 -0500180 trace_ext4_evict_inode(inode);
Jiaying Zhang2581fdc2011-08-13 12:17:13 -0400181
Al Viro0930fcc2010-06-07 13:16:22 -0400182 if (inode->i_nlink) {
Jan Kara2d859db2011-07-26 09:07:11 -0400183 /*
184 * When journalling data dirty buffers are tracked only in the
185 * journal. So although mm thinks everything is clean and
186 * ready for reaping the inode might still have some pages to
187 * write in the running transaction or waiting to be
188 * checkpointed. Thus calling jbd2_journal_invalidatepage()
189 * (via truncate_inode_pages()) to discard these buffers can
190 * cause data loss. Also even if we did not discard these
191 * buffers, we would have no way to find them after the inode
192 * is reaped and thus user could see stale data if he tries to
193 * read them before the transaction is checkpointed. So be
194 * careful and force everything to disk here... We use
195 * ei->i_datasync_tid to store the newest transaction
196 * containing inode's data.
197 *
198 * Note that directories do not have this problem because they
199 * don't use page cache.
200 */
Vegard Nossum6a7fd522016-07-04 11:03:00 -0400201 if (inode->i_ino != EXT4_JOURNAL_INO &&
202 ext4_should_journal_data(inode) &&
Jan Kara3abb1a02017-06-22 23:49:46 -0400203 (S_ISLNK(inode->i_mode) || S_ISREG(inode->i_mode)) &&
204 inode->i_data.nrpages) {
Jan Kara2d859db2011-07-26 09:07:11 -0400205 journal_t *journal = EXT4_SB(inode->i_sb)->s_journal;
206 tid_t commit_tid = EXT4_I(inode)->i_datasync_tid;
207
Theodore Ts'od76a3a772013-04-03 22:02:52 -0400208 jbd2_complete_transaction(journal, commit_tid);
Jan Kara2d859db2011-07-26 09:07:11 -0400209 filemap_write_and_wait(&inode->i_data);
210 }
Johannes Weiner91b0abe2014-04-03 14:47:49 -0700211 truncate_inode_pages_final(&inode->i_data);
Jan Kara5dc23bd2013-06-04 14:46:12 -0400212
Al Viro0930fcc2010-06-07 13:16:22 -0400213 goto no_delete;
214 }
215
Theodore Ts'oe2bfb082014-10-05 22:47:07 -0400216 if (is_bad_inode(inode))
217 goto no_delete;
218 dquot_initialize(inode);
Christoph Hellwig907f4552010-03-03 09:05:06 -0500219
Jan Kara678aaf42008-07-11 19:27:31 -0400220 if (ext4_should_order_data(inode))
221 ext4_begin_ordered_truncate(inode, 0);
Johannes Weiner91b0abe2014-04-03 14:47:49 -0700222 truncate_inode_pages_final(&inode->i_data);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700223
Jan Kara8e8ad8a2012-06-12 16:20:38 +0200224 /*
Jan Karaceff86f2020-04-21 10:54:45 +0200225 * For inodes with journalled data, transaction commit could have
226 * dirtied the inode. Flush worker is ignoring it because of I_FREEING
227 * flag but we still need to remove the inode from the writeback lists.
228 */
229 if (!list_empty_careful(&inode->i_io_list)) {
230 WARN_ON_ONCE(!ext4_should_journal_data(inode));
231 inode_io_list_del(inode);
232 }
233
234 /*
Jan Kara8e8ad8a2012-06-12 16:20:38 +0200235 * Protect us against freezing - iput() caller didn't have to have any
Jan Kara46e294e2020-11-27 12:06:49 +0100236 * protection against it. When we are in a running transaction though,
237 * we are already protected against freezing and we cannot grab further
238 * protection due to lock ordering constraints.
Jan Kara8e8ad8a2012-06-12 16:20:38 +0200239 */
Jan Kara46e294e2020-11-27 12:06:49 +0100240 if (!ext4_journal_current_handle()) {
241 sb_start_intwrite(inode->i_sb);
242 freeze_protected = true;
243 }
Andreas Dilgere50e5122017-06-21 21:10:32 -0400244
Tahsin Erdogan30a7eb92017-06-22 11:42:09 -0400245 if (!IS_NOQUOTA(inode))
246 extra_credits += EXT4_MAXQUOTAS_DEL_BLOCKS(inode->i_sb);
247
Jan Kara65db8692019-11-05 17:44:12 +0100248 /*
249 * Block bitmap, group descriptor, and inode are accounted in both
250 * ext4_blocks_for_truncate() and extra_credits. So subtract 3.
251 */
Tahsin Erdogan30a7eb92017-06-22 11:42:09 -0400252 handle = ext4_journal_start(inode, EXT4_HT_TRUNCATE,
Jan Kara65db8692019-11-05 17:44:12 +0100253 ext4_blocks_for_truncate(inode) + extra_credits - 3);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700254 if (IS_ERR(handle)) {
Theodore Ts'obc965ab2008-08-02 21:10:38 -0400255 ext4_std_error(inode->i_sb, PTR_ERR(handle));
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700256 /*
257 * If we're going to skip the normal cleanup, we still need to
258 * make sure that the in-core orphan linked list is properly
259 * cleaned up.
260 */
Mingming Cao617ba132006-10-11 01:20:53 -0700261 ext4_orphan_del(NULL, inode);
Jan Kara46e294e2020-11-27 12:06:49 +0100262 if (freeze_protected)
263 sb_end_intwrite(inode->i_sb);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700264 goto no_delete;
265 }
Tahsin Erdogan30a7eb92017-06-22 11:42:09 -0400266
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700267 if (IS_SYNC(inode))
Frank Mayhar03901312009-01-07 00:06:22 -0500268 ext4_handle_sync(handle);
Tahsin Erdogan407cd7f2017-07-04 00:11:21 -0400269
270 /*
271 * Set inode->i_size to 0 before calling ext4_truncate(). We need
272 * special handling of symlinks here because i_size is used to
273 * determine whether ext4_inode_info->i_data contains symlink data or
274 * block mappings. Setting i_size to 0 will remove its fast symlink
275 * status. Erase i_data so that it becomes a valid empty block map.
276 */
277 if (ext4_inode_is_fast_symlink(inode))
278 memset(EXT4_I(inode)->i_data, 0, sizeof(EXT4_I(inode)->i_data));
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700279 inode->i_size = 0;
Theodore Ts'obc965ab2008-08-02 21:10:38 -0400280 err = ext4_mark_inode_dirty(handle, inode);
281 if (err) {
Eric Sandeen12062dd2010-02-15 14:19:27 -0500282 ext4_warning(inode->i_sb,
Theodore Ts'obc965ab2008-08-02 21:10:38 -0400283 "couldn't mark inode dirty (err %d)", err);
284 goto stop_handle;
285 }
Theodore Ts'o2c98eb52016-11-13 22:02:26 -0500286 if (inode->i_blocks) {
287 err = ext4_truncate(inode);
288 if (err) {
Theodore Ts'o54d3adb2020-03-28 19:33:43 -0400289 ext4_error_err(inode->i_sb, -err,
290 "couldn't truncate inode %lu (err %d)",
291 inode->i_ino, err);
Theodore Ts'o2c98eb52016-11-13 22:02:26 -0500292 goto stop_handle;
293 }
294 }
Theodore Ts'obc965ab2008-08-02 21:10:38 -0400295
Tahsin Erdogan30a7eb92017-06-22 11:42:09 -0400296 /* Remove xattr references. */
297 err = ext4_xattr_delete_inode(handle, inode, &ea_inode_array,
298 extra_credits);
299 if (err) {
300 ext4_warning(inode->i_sb, "xattr delete (err %d)", err);
301stop_handle:
302 ext4_journal_stop(handle);
303 ext4_orphan_del(NULL, inode);
Jan Kara46e294e2020-11-27 12:06:49 +0100304 if (freeze_protected)
305 sb_end_intwrite(inode->i_sb);
Tahsin Erdogan30a7eb92017-06-22 11:42:09 -0400306 ext4_xattr_inode_array_free(ea_inode_array);
307 goto no_delete;
Theodore Ts'obc965ab2008-08-02 21:10:38 -0400308 }
309
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700310 /*
Mingming Cao617ba132006-10-11 01:20:53 -0700311 * Kill off the orphan record which ext4_truncate created.
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700312 * AKPM: I think this can be inside the above `if'.
Mingming Cao617ba132006-10-11 01:20:53 -0700313 * Note that ext4_orphan_del() has to be able to cope with the
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700314 * deletion of a non-existent orphan - this is because we don't
Mingming Cao617ba132006-10-11 01:20:53 -0700315 * know if ext4_truncate() actually created an orphan record.
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700316 * (Well, we could do this if we need to, but heck - it works)
317 */
Mingming Cao617ba132006-10-11 01:20:53 -0700318 ext4_orphan_del(handle, inode);
Arnd Bergmann5ffff832018-07-29 15:50:00 -0400319 EXT4_I(inode)->i_dtime = (__u32)ktime_get_real_seconds();
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700320
321 /*
322 * One subtle ordering requirement: if anything has gone wrong
323 * (transaction abort, IO errors, whatever), then we can still
324 * do these next steps (the fs will already have been marked as
325 * having errors), but we can't free the inode if the mark_dirty
326 * fails.
327 */
Mingming Cao617ba132006-10-11 01:20:53 -0700328 if (ext4_mark_inode_dirty(handle, inode))
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700329 /* If that failed, just do the required in-core inode clear. */
Al Viro0930fcc2010-06-07 13:16:22 -0400330 ext4_clear_inode(inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700331 else
Mingming Cao617ba132006-10-11 01:20:53 -0700332 ext4_free_inode(handle, inode);
333 ext4_journal_stop(handle);
Jan Kara46e294e2020-11-27 12:06:49 +0100334 if (freeze_protected)
335 sb_end_intwrite(inode->i_sb);
Tahsin Erdogan0421a182017-06-22 10:26:31 -0400336 ext4_xattr_inode_array_free(ea_inode_array);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700337 return;
338no_delete:
Harshad Shirwadkarb21ebf12020-11-05 19:58:51 -0800339 if (!list_empty(&EXT4_I(inode)->i_fc_list))
340 ext4_fc_mark_ineligible(inode->i_sb, EXT4_FC_REASON_NOMEM);
Al Viro0930fcc2010-06-07 13:16:22 -0400341 ext4_clear_inode(inode); /* We must guarantee clearing of inode... */
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700342}
343
Dmitry Monakhova9e7f442009-12-14 15:21:14 +0300344#ifdef CONFIG_QUOTA
345qsize_t *ext4_get_reserved_space(struct inode *inode)
Mingming Cao60e58e02009-01-22 18:13:05 +0100346{
Dmitry Monakhova9e7f442009-12-14 15:21:14 +0300347 return &EXT4_I(inode)->i_reserved_quota;
Mingming Cao60e58e02009-01-22 18:13:05 +0100348}
Dmitry Monakhova9e7f442009-12-14 15:21:14 +0300349#endif
Theodore Ts'o9d0be502010-01-01 02:41:30 -0500350
Aneesh Kumar K.V12219ae2008-07-17 16:12:08 -0400351/*
Theodore Ts'o0637c6f2009-12-30 14:20:45 -0500352 * Called with i_data_sem down, which is important since we can call
353 * ext4_discard_preallocations() from here.
354 */
Aneesh Kumar K.V5f634d02010-01-25 04:00:31 -0500355void ext4_da_update_reserve_space(struct inode *inode,
356 int used, int quota_claim)
Aneesh Kumar K.V12219ae2008-07-17 16:12:08 -0400357{
358 struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb);
Theodore Ts'o0637c6f2009-12-30 14:20:45 -0500359 struct ext4_inode_info *ei = EXT4_I(inode);
Aneesh Kumar K.V12219ae2008-07-17 16:12:08 -0400360
Theodore Ts'o0637c6f2009-12-30 14:20:45 -0500361 spin_lock(&ei->i_block_reservation_lock);
Aditya Kalid8990242011-09-09 19:18:51 -0400362 trace_ext4_da_update_reserve_space(inode, used, quota_claim);
Theodore Ts'o0637c6f2009-12-30 14:20:45 -0500363 if (unlikely(used > ei->i_reserved_data_blocks)) {
Theodore Ts'o8de5c322013-02-14 15:11:41 -0500364 ext4_warning(inode->i_sb, "%s: ino %lu, used %d "
Theodore Ts'o1084f252012-03-19 23:13:43 -0400365 "with only %d reserved data blocks",
Theodore Ts'o0637c6f2009-12-30 14:20:45 -0500366 __func__, inode->i_ino, used,
367 ei->i_reserved_data_blocks);
368 WARN_ON(1);
369 used = ei->i_reserved_data_blocks;
Aneesh Kumar K.V6bc6e632008-10-10 09:39:00 -0400370 }
Aneesh Kumar K.V12219ae2008-07-17 16:12:08 -0400371
Theodore Ts'o0637c6f2009-12-30 14:20:45 -0500372 /* Update per-inode reservations */
373 ei->i_reserved_data_blocks -= used;
Theodore Ts'o71d4f7d2014-07-15 06:02:38 -0400374 percpu_counter_sub(&sbi->s_dirtyclusters_counter, used);
Theodore Ts'o0637c6f2009-12-30 14:20:45 -0500375
Aneesh Kumar K.V12219ae2008-07-17 16:12:08 -0400376 spin_unlock(&EXT4_I(inode)->i_block_reservation_lock);
Mingming Cao60e58e02009-01-22 18:13:05 +0100377
Eric Sandeen72b8ab92010-05-16 11:00:00 -0400378 /* Update quota subsystem for data blocks */
379 if (quota_claim)
Aditya Kali7b415bf2011-09-09 19:04:51 -0400380 dquot_claim_block(inode, EXT4_C2B(sbi, used));
Eric Sandeen72b8ab92010-05-16 11:00:00 -0400381 else {
Aneesh Kumar K.V5f634d02010-01-25 04:00:31 -0500382 /*
383 * We did fallocate with an offset that is already delayed
384 * allocated. So on delayed allocated writeback we should
Eric Sandeen72b8ab92010-05-16 11:00:00 -0400385 * not re-claim the quota for fallocated blocks.
Aneesh Kumar K.V5f634d02010-01-25 04:00:31 -0500386 */
Aditya Kali7b415bf2011-09-09 19:04:51 -0400387 dquot_release_reservation_block(inode, EXT4_C2B(sbi, used));
Aneesh Kumar K.V5f634d02010-01-25 04:00:31 -0500388 }
Aneesh Kumar K.Vd6014302009-03-27 22:36:43 -0400389
390 /*
391 * If we have done all the pending block allocations and if
392 * there aren't any writers on the inode, we can discard the
393 * inode's preallocations.
394 */
Theodore Ts'o0637c6f2009-12-30 14:20:45 -0500395 if ((ei->i_reserved_data_blocks == 0) &&
Nikolay Borisov82dd1242019-02-10 23:04:16 -0500396 !inode_is_open_for_write(inode))
brookxu27bc4462020-08-17 15:36:15 +0800397 ext4_discard_preallocations(inode, 0);
Aneesh Kumar K.V12219ae2008-07-17 16:12:08 -0400398}
399
Theodore Ts'oe29136f2010-06-29 12:54:28 -0400400static int __check_block_validity(struct inode *inode, const char *func,
Theodore Ts'oc398eda2010-07-27 11:56:40 -0400401 unsigned int line,
402 struct ext4_map_blocks *map)
Theodore Ts'o6fd058f2009-05-17 15:38:01 -0400403{
Theodore Ts'o345c0db2019-04-09 23:37:08 -0400404 if (ext4_has_feature_journal(inode->i_sb) &&
405 (inode->i_ino ==
406 le32_to_cpu(EXT4_SB(inode->i_sb)->s_es->s_journal_inum)))
407 return 0;
Jan Karace9f24c2020-07-28 15:04:34 +0200408 if (!ext4_inode_block_valid(inode, map->m_pblk, map->m_len)) {
Theodore Ts'oc398eda2010-07-27 11:56:40 -0400409 ext4_error_inode(inode, func, line, map->m_pblk,
Theodore Ts'obdbd6ce2018-06-15 12:27:16 -0400410 "lblock %lu mapped to illegal pblock %llu "
Theodore Ts'oc398eda2010-07-27 11:56:40 -0400411 "(length %d)", (unsigned long) map->m_lblk,
Theodore Ts'obdbd6ce2018-06-15 12:27:16 -0400412 map->m_pblk, map->m_len);
Darrick J. Wong6a797d22015-10-17 16:16:04 -0400413 return -EFSCORRUPTED;
Theodore Ts'o6fd058f2009-05-17 15:38:01 -0400414 }
415 return 0;
416}
417
Jan Kara53085fa2015-12-07 15:09:35 -0500418int ext4_issue_zeroout(struct inode *inode, ext4_lblk_t lblk, ext4_fsblk_t pblk,
419 ext4_lblk_t len)
420{
421 int ret;
422
Eric Biggers33b4cc22019-12-26 10:10:22 -0600423 if (IS_ENCRYPTED(inode) && S_ISREG(inode->i_mode))
Jaegeuk Kima7550b32016-07-10 14:01:03 -0400424 return fscrypt_zeroout_range(inode, lblk, pblk, len);
Jan Kara53085fa2015-12-07 15:09:35 -0500425
426 ret = sb_issue_zeroout(inode->i_sb, pblk, len, GFP_NOFS);
427 if (ret > 0)
428 ret = 0;
429
430 return ret;
431}
432
Theodore Ts'oe29136f2010-06-29 12:54:28 -0400433#define check_block_validity(inode, map) \
Theodore Ts'oc398eda2010-07-27 11:56:40 -0400434 __check_block_validity((inode), __func__, __LINE__, (map))
Theodore Ts'oe29136f2010-06-29 12:54:28 -0400435
Dmitry Monakhov921f2662013-03-10 21:01:03 -0400436#ifdef ES_AGGRESSIVE_TEST
437static void ext4_map_blocks_es_recheck(handle_t *handle,
438 struct inode *inode,
439 struct ext4_map_blocks *es_map,
440 struct ext4_map_blocks *map,
441 int flags)
442{
443 int retval;
444
445 map->m_flags = 0;
446 /*
447 * There is a race window that the result is not the same.
448 * e.g. xfstests #223 when dioread_nolock enables. The reason
449 * is that we lookup a block mapping in extent status tree with
450 * out taking i_data_sem. So at the time the unwritten extent
451 * could be converted.
452 */
Jan Kara2dcba472015-12-07 15:04:57 -0500453 down_read(&EXT4_I(inode)->i_data_sem);
Dmitry Monakhov921f2662013-03-10 21:01:03 -0400454 if (ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS)) {
Eric Whitney9e524842020-04-15 16:31:39 -0400455 retval = ext4_ext_map_blocks(handle, inode, map, 0);
Dmitry Monakhov921f2662013-03-10 21:01:03 -0400456 } else {
Eric Whitney9e524842020-04-15 16:31:39 -0400457 retval = ext4_ind_map_blocks(handle, inode, map, 0);
Dmitry Monakhov921f2662013-03-10 21:01:03 -0400458 }
Jan Kara2dcba472015-12-07 15:04:57 -0500459 up_read((&EXT4_I(inode)->i_data_sem));
Dmitry Monakhov921f2662013-03-10 21:01:03 -0400460
461 /*
462 * We don't check m_len because extent will be collpased in status
463 * tree. So the m_len might not equal.
464 */
465 if (es_map->m_lblk != map->m_lblk ||
466 es_map->m_flags != map->m_flags ||
467 es_map->m_pblk != map->m_pblk) {
Theodore Ts'obdafe422013-07-13 00:40:31 -0400468 printk("ES cache assertion failed for inode: %lu "
Dmitry Monakhov921f2662013-03-10 21:01:03 -0400469 "es_cached ex [%d/%d/%llu/%x] != "
470 "found ex [%d/%d/%llu/%x] retval %d flags %x\n",
471 inode->i_ino, es_map->m_lblk, es_map->m_len,
472 es_map->m_pblk, es_map->m_flags, map->m_lblk,
473 map->m_len, map->m_pblk, map->m_flags,
474 retval, flags);
475 }
476}
477#endif /* ES_AGGRESSIVE_TEST */
478
Theodore Ts'o55138e0b2009-09-29 13:31:31 -0400479/*
Theodore Ts'oe35fd662010-05-16 19:00:00 -0400480 * The ext4_map_blocks() function tries to look up the requested blocks,
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -0400481 * and returns if the blocks are already mapped.
Mingming Caof5ab0d12008-02-25 15:29:55 -0500482 *
Mingming Caof5ab0d12008-02-25 15:29:55 -0500483 * Otherwise it takes the write lock of the i_data_sem and allocate blocks
484 * and store the allocated blocks in the result buffer head and mark it
485 * mapped.
486 *
Theodore Ts'oe35fd662010-05-16 19:00:00 -0400487 * If file type is extents based, it will call ext4_ext_map_blocks(),
488 * Otherwise, call with ext4_ind_map_blocks() to handle indirect mapping
Mingming Caof5ab0d12008-02-25 15:29:55 -0500489 * based files
490 *
Jan Karafacab4d2016-03-09 22:54:00 -0500491 * On success, it returns the number of blocks being mapped or allocated. if
492 * create==0 and the blocks are pre-allocated and unwritten, the resulting @map
493 * is marked as unwritten. If the create == 1, it will mark @map as mapped.
Mingming Caof5ab0d12008-02-25 15:29:55 -0500494 *
495 * It returns 0 if plain look up failed (blocks have not been allocated), in
Jan Karafacab4d2016-03-09 22:54:00 -0500496 * that case, @map is returned as unmapped but we still do fill map->m_len to
497 * indicate the length of a hole starting at map->m_lblk.
Mingming Caof5ab0d12008-02-25 15:29:55 -0500498 *
499 * It returns the error in case of allocation failure.
500 */
Theodore Ts'oe35fd662010-05-16 19:00:00 -0400501int ext4_map_blocks(handle_t *handle, struct inode *inode,
502 struct ext4_map_blocks *map, int flags)
Aneesh Kumar K.V0e855ac2008-01-28 23:58:26 -0500503{
Zheng Liud100eef2013-02-18 00:29:59 -0500504 struct extent_status es;
Aneesh Kumar K.V0e855ac2008-01-28 23:58:26 -0500505 int retval;
Lukas Czernerb8a86842014-03-18 18:05:35 -0400506 int ret = 0;
Dmitry Monakhov921f2662013-03-10 21:01:03 -0400507#ifdef ES_AGGRESSIVE_TEST
508 struct ext4_map_blocks orig_map;
509
510 memcpy(&orig_map, map, sizeof(*map));
511#endif
Mingming Caof5ab0d12008-02-25 15:29:55 -0500512
Theodore Ts'oe35fd662010-05-16 19:00:00 -0400513 map->m_flags = 0;
Ritesh Harjani70aa1552020-05-10 11:54:55 +0530514 ext_debug(inode, "flag 0x%x, max_blocks %u, logical block %lu\n",
515 flags, map->m_len, (unsigned long) map->m_lblk);
Zheng Liud100eef2013-02-18 00:29:59 -0500516
Theodore Ts'oe861b5e2014-02-20 12:54:05 -0500517 /*
518 * ext4_map_blocks returns an int, and m_len is an unsigned int
519 */
520 if (unlikely(map->m_len > INT_MAX))
521 map->m_len = INT_MAX;
522
Kazuya Mio4adb6ab2014-04-07 10:53:28 -0400523 /* We can handle the block number less than EXT_MAX_BLOCKS */
524 if (unlikely(map->m_lblk >= EXT_MAX_BLOCKS))
Darrick J. Wong6a797d22015-10-17 16:16:04 -0400525 return -EFSCORRUPTED;
Kazuya Mio4adb6ab2014-04-07 10:53:28 -0400526
Zheng Liud100eef2013-02-18 00:29:59 -0500527 /* Lookup extent status tree firstly */
Harshad Shirwadkar8016e292020-10-15 13:37:59 -0700528 if (!(EXT4_SB(inode->i_sb)->s_mount_state & EXT4_FC_REPLAY) &&
529 ext4_es_lookup_extent(inode, map->m_lblk, NULL, &es)) {
Zheng Liud100eef2013-02-18 00:29:59 -0500530 if (ext4_es_is_written(&es) || ext4_es_is_unwritten(&es)) {
531 map->m_pblk = ext4_es_pblock(&es) +
532 map->m_lblk - es.es_lblk;
533 map->m_flags |= ext4_es_is_written(&es) ?
534 EXT4_MAP_MAPPED : EXT4_MAP_UNWRITTEN;
535 retval = es.es_len - (map->m_lblk - es.es_lblk);
536 if (retval > map->m_len)
537 retval = map->m_len;
538 map->m_len = retval;
539 } else if (ext4_es_is_delayed(&es) || ext4_es_is_hole(&es)) {
Jan Karafacab4d2016-03-09 22:54:00 -0500540 map->m_pblk = 0;
541 retval = es.es_len - (map->m_lblk - es.es_lblk);
542 if (retval > map->m_len)
543 retval = map->m_len;
544 map->m_len = retval;
Zheng Liud100eef2013-02-18 00:29:59 -0500545 retval = 0;
546 } else {
Arnd Bergmann1e83bc82019-04-07 12:24:43 -0400547 BUG();
Zheng Liud100eef2013-02-18 00:29:59 -0500548 }
Dmitry Monakhov921f2662013-03-10 21:01:03 -0400549#ifdef ES_AGGRESSIVE_TEST
550 ext4_map_blocks_es_recheck(handle, inode, map,
551 &orig_map, flags);
552#endif
Zheng Liud100eef2013-02-18 00:29:59 -0500553 goto found;
554 }
555
Aneesh Kumar K.V4df3d262008-01-28 23:58:29 -0500556 /*
Theodore Ts'ob920c752009-05-14 00:54:29 -0400557 * Try to see if we can get the block without requesting a new
558 * file system block.
Aneesh Kumar K.V4df3d262008-01-28 23:58:29 -0500559 */
Jan Kara2dcba472015-12-07 15:04:57 -0500560 down_read(&EXT4_I(inode)->i_data_sem);
Dmitry Monakhov12e9b892010-05-16 22:00:00 -0400561 if (ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS)) {
Eric Whitney9e524842020-04-15 16:31:39 -0400562 retval = ext4_ext_map_blocks(handle, inode, map, 0);
Aneesh Kumar K.V0e855ac2008-01-28 23:58:26 -0500563 } else {
Eric Whitney9e524842020-04-15 16:31:39 -0400564 retval = ext4_ind_map_blocks(handle, inode, map, 0);
Aneesh Kumar K.V0e855ac2008-01-28 23:58:26 -0500565 }
Zheng Liuf7fec032013-02-18 00:28:47 -0500566 if (retval > 0) {
Theodore Ts'o3be78c72013-08-16 21:22:41 -0400567 unsigned int status;
Zheng Liuf7fec032013-02-18 00:28:47 -0500568
Zheng Liu44fb851d2013-07-29 12:51:42 -0400569 if (unlikely(retval != map->m_len)) {
570 ext4_warning(inode->i_sb,
571 "ES len assertion failed for inode "
572 "%lu: retval %d != map->m_len %d",
573 inode->i_ino, retval, map->m_len);
574 WARN_ON(1);
Dmitry Monakhov921f2662013-03-10 21:01:03 -0400575 }
Dmitry Monakhov921f2662013-03-10 21:01:03 -0400576
Zheng Liuf7fec032013-02-18 00:28:47 -0500577 status = map->m_flags & EXT4_MAP_UNWRITTEN ?
578 EXTENT_STATUS_UNWRITTEN : EXTENT_STATUS_WRITTEN;
579 if (!(flags & EXT4_GET_BLOCKS_DELALLOC_RESERVE) &&
Lukas Czernerd2dc3172015-05-02 21:36:55 -0400580 !(status & EXTENT_STATUS_WRITTEN) &&
Eric Whitneyad431022018-10-01 14:10:39 -0400581 ext4_es_scan_range(inode, &ext4_es_is_delayed, map->m_lblk,
582 map->m_lblk + map->m_len - 1))
Zheng Liuf7fec032013-02-18 00:28:47 -0500583 status |= EXTENT_STATUS_DELAYED;
584 ret = ext4_es_insert_extent(inode, map->m_lblk,
585 map->m_len, map->m_pblk, status);
586 if (ret < 0)
587 retval = ret;
588 }
Jan Kara2dcba472015-12-07 15:04:57 -0500589 up_read((&EXT4_I(inode)->i_data_sem));
Mingming Caof5ab0d12008-02-25 15:29:55 -0500590
Zheng Liud100eef2013-02-18 00:29:59 -0500591found:
Theodore Ts'oe35fd662010-05-16 19:00:00 -0400592 if (retval > 0 && map->m_flags & EXT4_MAP_MAPPED) {
Lukas Czernerb8a86842014-03-18 18:05:35 -0400593 ret = check_block_validity(inode, map);
Theodore Ts'o6fd058f2009-05-17 15:38:01 -0400594 if (ret != 0)
595 return ret;
596 }
597
Mingming Caof5ab0d12008-02-25 15:29:55 -0500598 /* If it is only a block(s) look up */
Theodore Ts'oc2177052009-05-14 00:58:52 -0400599 if ((flags & EXT4_GET_BLOCKS_CREATE) == 0)
Aneesh Kumar K.V4df3d262008-01-28 23:58:29 -0500600 return retval;
601
602 /*
Mingming Caof5ab0d12008-02-25 15:29:55 -0500603 * Returns if the blocks have already allocated
604 *
605 * Note that if blocks have been preallocated
Tao Madf3ab172011-10-08 15:53:49 -0400606 * ext4_ext_get_block() returns the create = 0
Mingming Caof5ab0d12008-02-25 15:29:55 -0500607 * with buffer head unmapped.
608 */
Theodore Ts'oe35fd662010-05-16 19:00:00 -0400609 if (retval > 0 && map->m_flags & EXT4_MAP_MAPPED)
Lukas Czernerb8a86842014-03-18 18:05:35 -0400610 /*
611 * If we need to convert extent to unwritten
612 * we continue and do the actual work in
613 * ext4_ext_map_blocks()
614 */
615 if (!(flags & EXT4_GET_BLOCKS_CONVERT_UNWRITTEN))
616 return retval;
Mingming Caof5ab0d12008-02-25 15:29:55 -0500617
618 /*
Zheng Liua25a4e12013-02-18 00:28:04 -0500619 * Here we clear m_flags because after allocating an new extent,
620 * it will be set again.
Aneesh Kumar K.V2a8964d2009-05-14 17:05:39 -0400621 */
Zheng Liua25a4e12013-02-18 00:28:04 -0500622 map->m_flags &= ~EXT4_MAP_FLAGS;
Aneesh Kumar K.V2a8964d2009-05-14 17:05:39 -0400623
624 /*
Lukas Czerner556615d2014-04-20 23:45:47 -0400625 * New blocks allocate and/or writing to unwritten extent
Mingming Caof5ab0d12008-02-25 15:29:55 -0500626 * will possibly result in updating i_data, so we take
Seunghun Leed91bd2c2014-09-01 22:15:30 -0400627 * the write lock of i_data_sem, and call get_block()
Mingming Caof5ab0d12008-02-25 15:29:55 -0500628 * with create == 1 flag.
Aneesh Kumar K.V4df3d262008-01-28 23:58:29 -0500629 */
Lukas Czernerc8b459f2014-05-12 12:55:07 -0400630 down_write(&EXT4_I(inode)->i_data_sem);
Mingming Caod2a17632008-07-14 17:52:37 -0400631
632 /*
Aneesh Kumar K.V4df3d262008-01-28 23:58:29 -0500633 * We need to check for EXT4 here because migrate
634 * could have changed the inode type in between
635 */
Dmitry Monakhov12e9b892010-05-16 22:00:00 -0400636 if (ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS)) {
Theodore Ts'oe35fd662010-05-16 19:00:00 -0400637 retval = ext4_ext_map_blocks(handle, inode, map, flags);
Aneesh Kumar K.V0e855ac2008-01-28 23:58:26 -0500638 } else {
Theodore Ts'oe35fd662010-05-16 19:00:00 -0400639 retval = ext4_ind_map_blocks(handle, inode, map, flags);
Aneesh Kumar K.V267e4db2008-04-29 08:11:12 -0400640
Theodore Ts'oe35fd662010-05-16 19:00:00 -0400641 if (retval > 0 && map->m_flags & EXT4_MAP_NEW) {
Aneesh Kumar K.V267e4db2008-04-29 08:11:12 -0400642 /*
643 * We allocated new blocks which will result in
644 * i_data's format changing. Force the migrate
645 * to fail by clearing migrate flags
646 */
Theodore Ts'o19f5fb72010-01-24 14:34:07 -0500647 ext4_clear_inode_state(inode, EXT4_STATE_EXT_MIGRATE);
Aneesh Kumar K.V267e4db2008-04-29 08:11:12 -0400648 }
Mingming Caod2a17632008-07-14 17:52:37 -0400649
Aneesh Kumar K.V5f634d02010-01-25 04:00:31 -0500650 /*
651 * Update reserved blocks/metadata blocks after successful
652 * block allocation which had been deferred till now. We don't
653 * support fallocate for non extent files. So we can update
654 * reserve space here.
655 */
656 if ((retval > 0) &&
Aneesh Kumar K.V1296cc82010-01-15 01:27:59 -0500657 (flags & EXT4_GET_BLOCKS_DELALLOC_RESERVE))
Aneesh Kumar K.V5f634d02010-01-25 04:00:31 -0500658 ext4_da_update_reserve_space(inode, retval, 1);
659 }
Theodore Ts'o2ac3b6e2009-05-14 13:57:08 -0400660
Zheng Liuf7fec032013-02-18 00:28:47 -0500661 if (retval > 0) {
Theodore Ts'o3be78c72013-08-16 21:22:41 -0400662 unsigned int status;
Zheng Liuf7fec032013-02-18 00:28:47 -0500663
Zheng Liu44fb851d2013-07-29 12:51:42 -0400664 if (unlikely(retval != map->m_len)) {
665 ext4_warning(inode->i_sb,
666 "ES len assertion failed for inode "
667 "%lu: retval %d != map->m_len %d",
668 inode->i_ino, retval, map->m_len);
669 WARN_ON(1);
Dmitry Monakhov921f2662013-03-10 21:01:03 -0400670 }
Dmitry Monakhov921f2662013-03-10 21:01:03 -0400671
Zheng Liuadb23552013-03-10 21:13:05 -0400672 /*
Jan Karac86d8db2015-12-07 15:10:26 -0500673 * We have to zeroout blocks before inserting them into extent
674 * status tree. Otherwise someone could look them up there and
Jan Kara9b623df2016-09-30 02:02:29 -0400675 * use them before they are really zeroed. We also have to
676 * unmap metadata before zeroing as otherwise writeback can
677 * overwrite zeros with stale data from block device.
Jan Karac86d8db2015-12-07 15:10:26 -0500678 */
679 if (flags & EXT4_GET_BLOCKS_ZERO &&
680 map->m_flags & EXT4_MAP_MAPPED &&
681 map->m_flags & EXT4_MAP_NEW) {
682 ret = ext4_issue_zeroout(inode, map->m_lblk,
683 map->m_pblk, map->m_len);
684 if (ret) {
685 retval = ret;
686 goto out_sem;
687 }
688 }
689
690 /*
Zheng Liuadb23552013-03-10 21:13:05 -0400691 * If the extent has been zeroed out, we don't need to update
692 * extent status tree.
693 */
694 if ((flags & EXT4_GET_BLOCKS_PRE_IO) &&
Theodore Ts'obb5835e2019-08-11 16:32:41 -0400695 ext4_es_lookup_extent(inode, map->m_lblk, NULL, &es)) {
Zheng Liuadb23552013-03-10 21:13:05 -0400696 if (ext4_es_is_written(&es))
Jan Karac86d8db2015-12-07 15:10:26 -0500697 goto out_sem;
Zheng Liuadb23552013-03-10 21:13:05 -0400698 }
Zheng Liuf7fec032013-02-18 00:28:47 -0500699 status = map->m_flags & EXT4_MAP_UNWRITTEN ?
700 EXTENT_STATUS_UNWRITTEN : EXTENT_STATUS_WRITTEN;
701 if (!(flags & EXT4_GET_BLOCKS_DELALLOC_RESERVE) &&
Lukas Czernerd2dc3172015-05-02 21:36:55 -0400702 !(status & EXTENT_STATUS_WRITTEN) &&
Eric Whitneyad431022018-10-01 14:10:39 -0400703 ext4_es_scan_range(inode, &ext4_es_is_delayed, map->m_lblk,
704 map->m_lblk + map->m_len - 1))
Zheng Liuf7fec032013-02-18 00:28:47 -0500705 status |= EXTENT_STATUS_DELAYED;
706 ret = ext4_es_insert_extent(inode, map->m_lblk, map->m_len,
707 map->m_pblk, status);
Jan Karac86d8db2015-12-07 15:10:26 -0500708 if (ret < 0) {
Zheng Liuf7fec032013-02-18 00:28:47 -0500709 retval = ret;
Jan Karac86d8db2015-12-07 15:10:26 -0500710 goto out_sem;
711 }
Aditya Kali5356f2612011-09-09 19:20:51 -0400712 }
713
Jan Karac86d8db2015-12-07 15:10:26 -0500714out_sem:
Aneesh Kumar K.V4df3d262008-01-28 23:58:29 -0500715 up_write((&EXT4_I(inode)->i_data_sem));
Theodore Ts'oe35fd662010-05-16 19:00:00 -0400716 if (retval > 0 && map->m_flags & EXT4_MAP_MAPPED) {
Lukas Czernerb8a86842014-03-18 18:05:35 -0400717 ret = check_block_validity(inode, map);
Theodore Ts'o6fd058f2009-05-17 15:38:01 -0400718 if (ret != 0)
719 return ret;
Jan Kara06bd3c32016-04-24 00:56:03 -0400720
721 /*
722 * Inodes with freshly allocated blocks where contents will be
723 * visible after transaction commit must be on transaction's
724 * ordered data list.
725 */
726 if (map->m_flags & EXT4_MAP_NEW &&
727 !(map->m_flags & EXT4_MAP_UNWRITTEN) &&
728 !(flags & EXT4_GET_BLOCKS_ZERO) &&
Tahsin Erdogan02749a42017-06-22 11:31:25 -0400729 !ext4_is_quota_file(inode) &&
Jan Kara06bd3c32016-04-24 00:56:03 -0400730 ext4_should_order_data(inode)) {
Ross Zwisler73131fb2019-06-20 17:26:26 -0400731 loff_t start_byte =
732 (loff_t)map->m_lblk << inode->i_blkbits;
733 loff_t length = (loff_t)map->m_len << inode->i_blkbits;
734
Jan Karaee0876b2016-04-24 00:56:08 -0400735 if (flags & EXT4_GET_BLOCKS_IO_SUBMIT)
Ross Zwisler73131fb2019-06-20 17:26:26 -0400736 ret = ext4_jbd2_inode_add_wait(handle, inode,
737 start_byte, length);
Jan Karaee0876b2016-04-24 00:56:08 -0400738 else
Ross Zwisler73131fb2019-06-20 17:26:26 -0400739 ret = ext4_jbd2_inode_add_write(handle, inode,
740 start_byte, length);
Jan Kara06bd3c32016-04-24 00:56:03 -0400741 if (ret)
742 return ret;
743 }
Harshad Shirwadkara80f7fc2020-11-05 19:58:53 -0800744 ext4_fc_track_range(handle, inode, map->m_lblk,
Harshad Shirwadkaraa75f4d2020-10-15 13:37:57 -0700745 map->m_lblk + map->m_len - 1);
Theodore Ts'o6fd058f2009-05-17 15:38:01 -0400746 }
Ritesh Harjaniec8c60b2020-05-10 11:54:52 +0530747
748 if (retval < 0)
Ritesh Harjani70aa1552020-05-10 11:54:55 +0530749 ext_debug(inode, "failed with err %d\n", retval);
Aneesh Kumar K.V0e855ac2008-01-28 23:58:26 -0500750 return retval;
751}
752
Jan Karaed8ad832016-02-19 00:18:25 -0500753/*
754 * Update EXT4_MAP_FLAGS in bh->b_state. For buffer heads attached to pages
755 * we have to be careful as someone else may be manipulating b_state as well.
756 */
757static void ext4_update_bh_state(struct buffer_head *bh, unsigned long flags)
758{
759 unsigned long old_state;
760 unsigned long new_state;
761
762 flags &= EXT4_MAP_FLAGS;
763
764 /* Dummy buffer_head? Set non-atomically. */
765 if (!bh->b_page) {
766 bh->b_state = (bh->b_state & ~EXT4_MAP_FLAGS) | flags;
767 return;
768 }
769 /*
770 * Someone else may be modifying b_state. Be careful! This is ugly but
771 * once we get rid of using bh as a container for mapping information
772 * to pass to / from get_block functions, this can go away.
773 */
774 do {
775 old_state = READ_ONCE(bh->b_state);
776 new_state = (old_state & ~EXT4_MAP_FLAGS) | flags;
777 } while (unlikely(
778 cmpxchg(&bh->b_state, old_state, new_state) != old_state));
779}
780
Theodore Ts'o2ed88682010-05-16 20:00:00 -0400781static int _ext4_get_block(struct inode *inode, sector_t iblock,
782 struct buffer_head *bh, int flags)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700783{
Theodore Ts'o2ed88682010-05-16 20:00:00 -0400784 struct ext4_map_blocks map;
Jan Karaefe70c22016-03-08 23:35:46 -0500785 int ret = 0;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700786
Tao Ma46c7f252012-12-10 14:04:52 -0500787 if (ext4_has_inline_data(inode))
788 return -ERANGE;
789
Theodore Ts'o2ed88682010-05-16 20:00:00 -0400790 map.m_lblk = iblock;
791 map.m_len = bh->b_size >> inode->i_blkbits;
792
Jan Karaefe70c22016-03-08 23:35:46 -0500793 ret = ext4_map_blocks(ext4_journal_current_handle(), inode, &map,
794 flags);
Jan Kara7fb54092008-02-10 01:08:38 -0500795 if (ret > 0) {
Theodore Ts'o2ed88682010-05-16 20:00:00 -0400796 map_bh(bh, inode->i_sb, map.m_pblk);
Jan Karaed8ad832016-02-19 00:18:25 -0500797 ext4_update_bh_state(bh, map.m_flags);
Theodore Ts'o2ed88682010-05-16 20:00:00 -0400798 bh->b_size = inode->i_sb->s_blocksize * map.m_len;
Jan Kara7fb54092008-02-10 01:08:38 -0500799 ret = 0;
Ross Zwisler547edce2016-11-08 11:30:58 +1100800 } else if (ret == 0) {
801 /* hole case, need to fill in bh->b_size */
802 bh->b_size = inode->i_sb->s_blocksize * map.m_len;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700803 }
804 return ret;
805}
806
Theodore Ts'o2ed88682010-05-16 20:00:00 -0400807int ext4_get_block(struct inode *inode, sector_t iblock,
808 struct buffer_head *bh, int create)
809{
810 return _ext4_get_block(inode, iblock, bh,
811 create ? EXT4_GET_BLOCKS_CREATE : 0);
812}
813
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700814/*
Jan Kara705965b2016-03-08 23:08:10 -0500815 * Get block function used when preparing for buffered write if we require
816 * creating an unwritten extent if blocks haven't been allocated. The extent
817 * will be converted to written after the IO is complete.
818 */
819int ext4_get_block_unwritten(struct inode *inode, sector_t iblock,
820 struct buffer_head *bh_result, int create)
821{
822 ext4_debug("ext4_get_block_unwritten: inode %lu, create flag %d\n",
823 inode->i_ino, create);
824 return _ext4_get_block(inode, iblock, bh_result,
825 EXT4_GET_BLOCKS_IO_CREATE_EXT);
826}
827
Jan Karaefe70c22016-03-08 23:35:46 -0500828/* Maximum number of blocks we map for direct IO at once. */
829#define DIO_MAX_BLOCKS 4096
830
Jan Karae84dfbe2016-04-01 02:07:22 -0400831/*
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700832 * `handle' can be NULL if create is zero
833 */
Mingming Cao617ba132006-10-11 01:20:53 -0700834struct buffer_head *ext4_getblk(handle_t *handle, struct inode *inode,
Theodore Ts'oc5e298a2015-06-21 01:25:29 -0400835 ext4_lblk_t block, int map_flags)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700836{
Theodore Ts'o2ed88682010-05-16 20:00:00 -0400837 struct ext4_map_blocks map;
838 struct buffer_head *bh;
Theodore Ts'oc5e298a2015-06-21 01:25:29 -0400839 int create = map_flags & EXT4_GET_BLOCKS_CREATE;
Theodore Ts'o10560082014-08-29 20:51:32 -0400840 int err;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700841
Chunguang Xu837c23f2020-11-07 23:58:11 +0800842 ASSERT((EXT4_SB(inode->i_sb)->s_mount_state & EXT4_FC_REPLAY)
843 || handle != NULL || create == 0);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700844
Theodore Ts'o2ed88682010-05-16 20:00:00 -0400845 map.m_lblk = block;
846 map.m_len = 1;
Theodore Ts'oc5e298a2015-06-21 01:25:29 -0400847 err = ext4_map_blocks(handle, inode, &map, map_flags);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700848
Theodore Ts'o10560082014-08-29 20:51:32 -0400849 if (err == 0)
850 return create ? ERR_PTR(-ENOSPC) : NULL;
Theodore Ts'o2ed88682010-05-16 20:00:00 -0400851 if (err < 0)
Theodore Ts'o10560082014-08-29 20:51:32 -0400852 return ERR_PTR(err);
Theodore Ts'o2ed88682010-05-16 20:00:00 -0400853
854 bh = sb_getblk(inode->i_sb, map.m_pblk);
Theodore Ts'o10560082014-08-29 20:51:32 -0400855 if (unlikely(!bh))
856 return ERR_PTR(-ENOMEM);
Theodore Ts'o2ed88682010-05-16 20:00:00 -0400857 if (map.m_flags & EXT4_MAP_NEW) {
Chunguang Xu837c23f2020-11-07 23:58:11 +0800858 ASSERT(create != 0);
859 ASSERT((EXT4_SB(inode->i_sb)->s_mount_state & EXT4_FC_REPLAY)
860 || (handle != NULL));
Theodore Ts'o2ed88682010-05-16 20:00:00 -0400861
862 /*
863 * Now that we do not always journal data, we should
864 * keep in mind whether this should always journal the
865 * new buffer as metadata. For now, regular file
866 * writes use ext4_get_block instead, so it's not a
867 * problem.
868 */
869 lock_buffer(bh);
870 BUFFER_TRACE(bh, "call get_create_access");
Theodore Ts'o10560082014-08-29 20:51:32 -0400871 err = ext4_journal_get_create_access(handle, bh);
872 if (unlikely(err)) {
873 unlock_buffer(bh);
874 goto errout;
875 }
876 if (!buffer_uptodate(bh)) {
Theodore Ts'o2ed88682010-05-16 20:00:00 -0400877 memset(bh->b_data, 0, inode->i_sb->s_blocksize);
878 set_buffer_uptodate(bh);
879 }
880 unlock_buffer(bh);
881 BUFFER_TRACE(bh, "call ext4_handle_dirty_metadata");
882 err = ext4_handle_dirty_metadata(handle, inode, bh);
Theodore Ts'o10560082014-08-29 20:51:32 -0400883 if (unlikely(err))
884 goto errout;
885 } else
Theodore Ts'o2ed88682010-05-16 20:00:00 -0400886 BUFFER_TRACE(bh, "not a new buffer");
Theodore Ts'o2ed88682010-05-16 20:00:00 -0400887 return bh;
Theodore Ts'o10560082014-08-29 20:51:32 -0400888errout:
889 brelse(bh);
890 return ERR_PTR(err);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700891}
892
Mingming Cao617ba132006-10-11 01:20:53 -0700893struct buffer_head *ext4_bread(handle_t *handle, struct inode *inode,
Theodore Ts'oc5e298a2015-06-21 01:25:29 -0400894 ext4_lblk_t block, int map_flags)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700895{
Theodore Ts'oaf5bc922008-09-08 22:25:24 -0400896 struct buffer_head *bh;
zhangyi (F)2d069c02020-09-24 15:33:33 +0800897 int ret;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700898
Theodore Ts'oc5e298a2015-06-21 01:25:29 -0400899 bh = ext4_getblk(handle, inode, block, map_flags);
Theodore Ts'o1c215022014-08-29 20:52:15 -0400900 if (IS_ERR(bh))
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700901 return bh;
ZhangXiaoxu7963e5a2019-08-22 23:00:32 -0400902 if (!bh || ext4_buffer_uptodate(bh))
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700903 return bh;
zhangyi (F)2d069c02020-09-24 15:33:33 +0800904
905 ret = ext4_read_bh_lock(bh, REQ_META | REQ_PRIO, true);
906 if (ret) {
907 put_bh(bh);
908 return ERR_PTR(ret);
909 }
910 return bh;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700911}
912
Tahsin Erdogan9699d4f2017-08-06 00:07:01 -0400913/* Read a contiguous batch of blocks. */
914int ext4_bread_batch(struct inode *inode, ext4_lblk_t block, int bh_count,
915 bool wait, struct buffer_head **bhs)
916{
917 int i, err;
918
919 for (i = 0; i < bh_count; i++) {
920 bhs[i] = ext4_getblk(NULL, inode, block + i, 0 /* map_flags */);
921 if (IS_ERR(bhs[i])) {
922 err = PTR_ERR(bhs[i]);
923 bh_count = i;
924 goto out_brelse;
925 }
926 }
927
928 for (i = 0; i < bh_count; i++)
929 /* Note that NULL bhs[i] is valid because of holes. */
zhangyi (F)2d069c02020-09-24 15:33:33 +0800930 if (bhs[i] && !ext4_buffer_uptodate(bhs[i]))
931 ext4_read_bh_lock(bhs[i], REQ_META | REQ_PRIO, false);
Tahsin Erdogan9699d4f2017-08-06 00:07:01 -0400932
933 if (!wait)
934 return 0;
935
936 for (i = 0; i < bh_count; i++)
937 if (bhs[i])
938 wait_on_buffer(bhs[i]);
939
940 for (i = 0; i < bh_count; i++) {
941 if (bhs[i] && !buffer_uptodate(bhs[i])) {
942 err = -EIO;
943 goto out_brelse;
944 }
945 }
946 return 0;
947
948out_brelse:
949 for (i = 0; i < bh_count; i++) {
950 brelse(bhs[i]);
951 bhs[i] = NULL;
952 }
953 return err;
954}
955
Tao Maf19d5872012-12-10 14:05:51 -0500956int ext4_walk_page_buffers(handle_t *handle,
957 struct buffer_head *head,
958 unsigned from,
959 unsigned to,
960 int *partial,
961 int (*fn)(handle_t *handle,
962 struct buffer_head *bh))
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700963{
964 struct buffer_head *bh;
965 unsigned block_start, block_end;
966 unsigned blocksize = head->b_size;
967 int err, ret = 0;
968 struct buffer_head *next;
969
Theodore Ts'oaf5bc922008-09-08 22:25:24 -0400970 for (bh = head, block_start = 0;
971 ret == 0 && (bh != head || !block_start);
Theodore Ts'ode9a55b2009-06-14 17:45:34 -0400972 block_start = block_end, bh = next) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700973 next = bh->b_this_page;
974 block_end = block_start + blocksize;
975 if (block_end <= from || block_start >= to) {
976 if (partial && !buffer_uptodate(bh))
977 *partial = 1;
978 continue;
979 }
980 err = (*fn)(handle, bh);
981 if (!ret)
982 ret = err;
983 }
984 return ret;
985}
986
987/*
988 * To preserve ordering, it is essential that the hole instantiation and
989 * the data write be encapsulated in a single transaction. We cannot
Mingming Cao617ba132006-10-11 01:20:53 -0700990 * close off a transaction and start a new one between the ext4_get_block()
Mingming Caodab291a2006-10-11 01:21:01 -0700991 * and the commit_write(). So doing the jbd2_journal_start at the start of
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700992 * prepare_write() is the right place.
993 *
Jan Kara36ade452013-01-28 09:30:52 -0500994 * Also, this function can nest inside ext4_writepage(). In that case, we
995 * *know* that ext4_writepage() has generated enough buffer credits to do the
996 * whole page. So we won't block on the journal in that case, which is good,
997 * because the caller may be PF_MEMALLOC.
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700998 *
Mingming Cao617ba132006-10-11 01:20:53 -0700999 * By accident, ext4 can be reentered when a transaction is open via
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001000 * quota file writes. If we were to commit the transaction while thus
1001 * reentered, there can be a deadlock - we would be holding a quota
1002 * lock, and the commit would never complete if another thread had a
1003 * transaction open and was blocking on the quota lock - a ranking
1004 * violation.
1005 *
Mingming Caodab291a2006-10-11 01:21:01 -07001006 * So what we do is to rely on the fact that jbd2_journal_stop/journal_start
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001007 * will _not_ run commit under these circumstances because handle->h_ref
1008 * is elevated. We'll still have enough credits for the tiny quotafile
1009 * write.
1010 */
Tao Maf19d5872012-12-10 14:05:51 -05001011int do_journal_get_write_access(handle_t *handle,
1012 struct buffer_head *bh)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001013{
Jan Kara56d35a42010-08-05 14:41:42 -04001014 int dirty = buffer_dirty(bh);
1015 int ret;
1016
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001017 if (!buffer_mapped(bh) || buffer_freed(bh))
1018 return 0;
Jan Kara56d35a42010-08-05 14:41:42 -04001019 /*
Christoph Hellwigebdec242010-10-06 10:47:23 +02001020 * __block_write_begin() could have dirtied some buffers. Clean
Jan Kara56d35a42010-08-05 14:41:42 -04001021 * the dirty bit as jbd2_journal_get_write_access() could complain
1022 * otherwise about fs integrity issues. Setting of the dirty bit
Christoph Hellwigebdec242010-10-06 10:47:23 +02001023 * by __block_write_begin() isn't a real problem here as we clear
Jan Kara56d35a42010-08-05 14:41:42 -04001024 * the bit before releasing a page lock and thus writeback cannot
1025 * ever write the buffer.
1026 */
1027 if (dirty)
1028 clear_buffer_dirty(bh);
liang xie5d601252014-05-12 22:06:43 -04001029 BUFFER_TRACE(bh, "get write access");
Jan Kara56d35a42010-08-05 14:41:42 -04001030 ret = ext4_journal_get_write_access(handle, bh);
1031 if (!ret && dirty)
1032 ret = ext4_handle_dirty_metadata(handle, NULL, bh);
1033 return ret;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001034}
1035
Chandan Rajendra643fa962018-12-12 15:20:12 +05301036#ifdef CONFIG_FS_ENCRYPTION
Michael Halcrow2058f832015-04-12 00:55:10 -04001037static int ext4_block_write_begin(struct page *page, loff_t pos, unsigned len,
1038 get_block_t *get_block)
1039{
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001040 unsigned from = pos & (PAGE_SIZE - 1);
Michael Halcrow2058f832015-04-12 00:55:10 -04001041 unsigned to = from + len;
1042 struct inode *inode = page->mapping->host;
1043 unsigned block_start, block_end;
1044 sector_t block;
1045 int err = 0;
1046 unsigned blocksize = inode->i_sb->s_blocksize;
1047 unsigned bbits;
Chandan Rajendra0b578f32019-05-20 09:29:50 -07001048 struct buffer_head *bh, *head, *wait[2];
1049 int nr_wait = 0;
1050 int i;
Michael Halcrow2058f832015-04-12 00:55:10 -04001051
1052 BUG_ON(!PageLocked(page));
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001053 BUG_ON(from > PAGE_SIZE);
1054 BUG_ON(to > PAGE_SIZE);
Michael Halcrow2058f832015-04-12 00:55:10 -04001055 BUG_ON(from > to);
1056
1057 if (!page_has_buffers(page))
1058 create_empty_buffers(page, blocksize, 0);
1059 head = page_buffers(page);
1060 bbits = ilog2(blocksize);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001061 block = (sector_t)page->index << (PAGE_SHIFT - bbits);
Michael Halcrow2058f832015-04-12 00:55:10 -04001062
1063 for (bh = head, block_start = 0; bh != head || !block_start;
1064 block++, block_start = block_end, bh = bh->b_this_page) {
1065 block_end = block_start + blocksize;
1066 if (block_end <= from || block_start >= to) {
1067 if (PageUptodate(page)) {
1068 if (!buffer_uptodate(bh))
1069 set_buffer_uptodate(bh);
1070 }
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)) {
1094 if (!buffer_uptodate(bh))
1095 set_buffer_uptodate(bh);
1096 continue;
1097 }
1098 if (!buffer_uptodate(bh) && !buffer_delay(bh) &&
1099 !buffer_unwritten(bh) &&
1100 (block_start < from || block_end > to)) {
zhangyi (F)2d069c02020-09-24 15:33:33 +08001101 ext4_read_bh_lock(bh, 0, false);
Chandan Rajendra0b578f32019-05-20 09:29:50 -07001102 wait[nr_wait++] = bh;
Michael Halcrow2058f832015-04-12 00:55:10 -04001103 }
1104 }
1105 /*
1106 * If we issued read requests, let them complete.
1107 */
Chandan Rajendra0b578f32019-05-20 09:29:50 -07001108 for (i = 0; i < nr_wait; i++) {
1109 wait_on_buffer(wait[i]);
1110 if (!buffer_uptodate(wait[i]))
Michael Halcrow2058f832015-04-12 00:55:10 -04001111 err = -EIO;
1112 }
Chandan Rajendra7e0785f2019-05-20 09:29:49 -07001113 if (unlikely(err)) {
Michael Halcrow2058f832015-04-12 00:55:10 -04001114 page_zero_new_buffers(page, from, to);
Eric Biggers4f74d152020-07-02 01:56:07 +00001115 } else if (fscrypt_inode_uses_fs_layer_crypto(inode)) {
Chandan Rajendra0b578f32019-05-20 09:29:50 -07001116 for (i = 0; i < nr_wait; i++) {
1117 int err2;
1118
1119 err2 = fscrypt_decrypt_pagecache_blocks(page, blocksize,
1120 bh_offset(wait[i]));
1121 if (err2) {
1122 clear_buffer_uptodate(wait[i]);
1123 err = err2;
1124 }
1125 }
Chandan Rajendra7e0785f2019-05-20 09:29:49 -07001126 }
1127
Michael Halcrow2058f832015-04-12 00:55:10 -04001128 return err;
1129}
1130#endif
1131
Nick Pigginbfc1af62007-10-16 01:25:05 -07001132static int ext4_write_begin(struct file *file, struct address_space *mapping,
Theodore Ts'ode9a55b2009-06-14 17:45:34 -04001133 loff_t pos, unsigned len, unsigned flags,
1134 struct page **pagep, void **fsdata)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001135{
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04001136 struct inode *inode = mapping->host;
Aneesh Kumar K.V1938a152009-06-05 01:00:26 -04001137 int ret, needed_blocks;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001138 handle_t *handle;
1139 int retries = 0;
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04001140 struct page *page;
Theodore Ts'ode9a55b2009-06-14 17:45:34 -04001141 pgoff_t index;
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04001142 unsigned from, to;
Nick Pigginbfc1af62007-10-16 01:25:05 -07001143
Theodore Ts'o0db1ff22017-02-05 01:28:48 -05001144 if (unlikely(ext4_forced_shutdown(EXT4_SB(inode->i_sb))))
1145 return -EIO;
1146
Theodore Ts'o9bffad12009-06-17 11:48:11 -04001147 trace_ext4_write_begin(inode, pos, len, flags);
Aneesh Kumar K.V1938a152009-06-05 01:00:26 -04001148 /*
1149 * Reserve one block more for addition to orphan list in case
1150 * we allocate blocks but write fails for some reason
1151 */
1152 needed_blocks = ext4_writepage_trans_blocks(inode) + 1;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001153 index = pos >> PAGE_SHIFT;
1154 from = pos & (PAGE_SIZE - 1);
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04001155 to = from + len;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001156
Tao Maf19d5872012-12-10 14:05:51 -05001157 if (ext4_test_inode_state(inode, EXT4_STATE_MAY_INLINE_DATA)) {
1158 ret = ext4_try_to_write_inline_data(mapping, inode, pos, len,
1159 flags, pagep);
1160 if (ret < 0)
Theodore Ts'o47564bf2013-02-09 09:24:14 -05001161 return ret;
1162 if (ret == 1)
1163 return 0;
Tao Maf19d5872012-12-10 14:05:51 -05001164 }
1165
Theodore Ts'o47564bf2013-02-09 09:24:14 -05001166 /*
1167 * grab_cache_page_write_begin() can take a long time if the
1168 * system is thrashing due to memory pressure, or if the page
1169 * is being written back. So grab it first before we start
1170 * the transaction handle. This also allows us to allocate
1171 * the page (if needed) without using GFP_NOFS.
1172 */
1173retry_grab:
Nick Piggin54566b22009-01-04 12:00:53 -08001174 page = grab_cache_page_write_begin(mapping, index, flags);
Theodore Ts'o47564bf2013-02-09 09:24:14 -05001175 if (!page)
1176 return -ENOMEM;
1177 unlock_page(page);
1178
1179retry_journal:
Theodore Ts'o9924a922013-02-08 21:59:22 -05001180 handle = ext4_journal_start(inode, EXT4_HT_WRITE_PAGE, needed_blocks);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001181 if (IS_ERR(handle)) {
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001182 put_page(page);
Theodore Ts'o47564bf2013-02-09 09:24:14 -05001183 return PTR_ERR(handle);
Jan Karacf108bc2008-07-11 19:27:31 -04001184 }
Tao Maf19d5872012-12-10 14:05:51 -05001185
Theodore Ts'o47564bf2013-02-09 09:24:14 -05001186 lock_page(page);
1187 if (page->mapping != mapping) {
1188 /* The page got truncated from under us */
1189 unlock_page(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001190 put_page(page);
Jan Karacf108bc2008-07-11 19:27:31 -04001191 ext4_journal_stop(handle);
Theodore Ts'o47564bf2013-02-09 09:24:14 -05001192 goto retry_grab;
Jan Karacf108bc2008-07-11 19:27:31 -04001193 }
Dmitry Monakhov7afe5aa2013-08-28 14:30:47 -04001194 /* In case writeback began while the page was unlocked */
1195 wait_for_stable_page(page);
Jan Karacf108bc2008-07-11 19:27:31 -04001196
Chandan Rajendra643fa962018-12-12 15:20:12 +05301197#ifdef CONFIG_FS_ENCRYPTION
Michael Halcrow2058f832015-04-12 00:55:10 -04001198 if (ext4_should_dioread_nolock(inode))
1199 ret = ext4_block_write_begin(page, pos, len,
Jan Kara705965b2016-03-08 23:08:10 -05001200 ext4_get_block_unwritten);
Michael Halcrow2058f832015-04-12 00:55:10 -04001201 else
1202 ret = ext4_block_write_begin(page, pos, len,
1203 ext4_get_block);
1204#else
Jiaying Zhang744692d2010-03-04 16:14:02 -05001205 if (ext4_should_dioread_nolock(inode))
Jan Kara705965b2016-03-08 23:08:10 -05001206 ret = __block_write_begin(page, pos, len,
1207 ext4_get_block_unwritten);
Jiaying Zhang744692d2010-03-04 16:14:02 -05001208 else
Christoph Hellwig6e1db882010-06-04 11:29:57 +02001209 ret = __block_write_begin(page, pos, len, ext4_get_block);
Michael Halcrow2058f832015-04-12 00:55:10 -04001210#endif
Nick Pigginbfc1af62007-10-16 01:25:05 -07001211 if (!ret && ext4_should_journal_data(inode)) {
Tao Maf19d5872012-12-10 14:05:51 -05001212 ret = ext4_walk_page_buffers(handle, page_buffers(page),
1213 from, to, NULL,
1214 do_journal_get_write_access);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001215 }
Nick Pigginbfc1af62007-10-16 01:25:05 -07001216
1217 if (ret) {
Eric Biggersc93d8f82019-07-22 09:26:24 -07001218 bool extended = (pos + len > inode->i_size) &&
1219 !ext4_verity_in_progress(inode);
1220
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04001221 unlock_page(page);
Aneesh Kumar K.Vae4d5372008-09-13 13:10:25 -04001222 /*
Christoph Hellwig6e1db882010-06-04 11:29:57 +02001223 * __block_write_begin may have instantiated a few blocks
Aneesh Kumar K.Vae4d5372008-09-13 13:10:25 -04001224 * outside i_size. Trim these off again. Don't need
1225 * i_size_read because we hold i_mutex.
Aneesh Kumar K.V1938a152009-06-05 01:00:26 -04001226 *
1227 * Add inode to orphan list in case we crash before
1228 * truncate finishes
Aneesh Kumar K.Vae4d5372008-09-13 13:10:25 -04001229 */
Eric Biggersc93d8f82019-07-22 09:26:24 -07001230 if (extended && ext4_can_truncate(inode))
Aneesh Kumar K.V1938a152009-06-05 01:00:26 -04001231 ext4_orphan_add(handle, inode);
1232
1233 ext4_journal_stop(handle);
Eric Biggersc93d8f82019-07-22 09:26:24 -07001234 if (extended) {
Jan Karab9a42072009-12-08 21:24:33 -05001235 ext4_truncate_failed_write(inode);
Theodore Ts'ode9a55b2009-06-14 17:45:34 -04001236 /*
Jan Karaffacfa72009-07-13 16:22:22 -04001237 * If truncate failed early the inode might
Aneesh Kumar K.V1938a152009-06-05 01:00:26 -04001238 * still be on the orphan list; we need to
1239 * make sure the inode is removed from the
1240 * orphan list in that case.
1241 */
1242 if (inode->i_nlink)
1243 ext4_orphan_del(NULL, inode);
1244 }
Nick Pigginbfc1af62007-10-16 01:25:05 -07001245
Theodore Ts'o47564bf2013-02-09 09:24:14 -05001246 if (ret == -ENOSPC &&
1247 ext4_should_retry_alloc(inode->i_sb, &retries))
1248 goto retry_journal;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001249 put_page(page);
Theodore Ts'o47564bf2013-02-09 09:24:14 -05001250 return ret;
1251 }
1252 *pagep = page;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001253 return ret;
1254}
1255
Nick Pigginbfc1af62007-10-16 01:25:05 -07001256/* For write_end() in data=journal mode */
1257static int write_end_fn(handle_t *handle, struct buffer_head *bh)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001258{
Theodore Ts'o13fca322013-04-21 16:45:54 -04001259 int ret;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001260 if (!buffer_mapped(bh) || buffer_freed(bh))
1261 return 0;
1262 set_buffer_uptodate(bh);
Theodore Ts'o13fca322013-04-21 16:45:54 -04001263 ret = ext4_handle_dirty_metadata(handle, NULL, bh);
1264 clear_buffer_meta(bh);
1265 clear_buffer_prio(bh);
1266 return ret;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001267}
1268
Zheng Liueed43332013-04-03 12:41:17 -04001269/*
1270 * We need to pick up the new inode size which generic_commit_write gave us
1271 * `file' can be NULL - eg, when called from page_symlink().
1272 *
1273 * ext4 never places buffers on inode->i_mapping->private_list. metadata
1274 * buffers are managed internally.
1275 */
1276static int ext4_write_end(struct file *file,
1277 struct address_space *mapping,
1278 loff_t pos, unsigned len, unsigned copied,
1279 struct page *page, void *fsdata)
Aneesh Kumar K.Vf8514082009-06-05 00:56:49 -04001280{
Aneesh Kumar K.Vf8514082009-06-05 00:56:49 -04001281 handle_t *handle = ext4_journal_current_handle();
Zheng Liueed43332013-04-03 12:41:17 -04001282 struct inode *inode = mapping->host;
Xiaoguang Wang05726392015-02-12 23:00:17 -05001283 loff_t old_size = inode->i_size;
Zheng Liueed43332013-04-03 12:41:17 -04001284 int ret = 0, ret2;
1285 int i_size_changed = 0;
Theodore Ts'o362eca72018-07-10 01:07:43 -04001286 int inline_data = ext4_has_inline_data(inode);
Eric Biggersc93d8f82019-07-22 09:26:24 -07001287 bool verity = ext4_verity_in_progress(inode);
Zheng Liueed43332013-04-03 12:41:17 -04001288
1289 trace_ext4_write_end(inode, pos, len, copied);
Theodore Ts'o362eca72018-07-10 01:07:43 -04001290 if (inline_data) {
Theodore Ts'o42c832d2013-07-01 08:12:39 -04001291 ret = ext4_write_inline_data_end(inode, pos, len,
1292 copied, page);
Theodore Ts'oeb5efbc2017-02-04 23:04:00 -05001293 if (ret < 0) {
1294 unlock_page(page);
1295 put_page(page);
Theodore Ts'o42c832d2013-07-01 08:12:39 -04001296 goto errout;
Theodore Ts'oeb5efbc2017-02-04 23:04:00 -05001297 }
Theodore Ts'o42c832d2013-07-01 08:12:39 -04001298 copied = ret;
1299 } else
Tao Maf19d5872012-12-10 14:05:51 -05001300 copied = block_write_end(file, mapping, pos,
1301 len, copied, page, fsdata);
Aneesh Kumar K.Vf8514082009-06-05 00:56:49 -04001302 /*
Dmitry Monakhov4631dbf2014-08-23 17:48:28 -04001303 * it's important to update i_size while still holding page lock:
Aneesh Kumar K.Vf8514082009-06-05 00:56:49 -04001304 * page writeout could otherwise come in and zero beyond i_size.
Eric Biggersc93d8f82019-07-22 09:26:24 -07001305 *
1306 * If FS_IOC_ENABLE_VERITY is running on this inode, then Merkle tree
1307 * blocks are being written past EOF, so skip the i_size update.
Aneesh Kumar K.Vf8514082009-06-05 00:56:49 -04001308 */
Eric Biggersc93d8f82019-07-22 09:26:24 -07001309 if (!verity)
1310 i_size_changed = ext4_update_inode_size(inode, pos + copied);
Aneesh Kumar K.Vf8514082009-06-05 00:56:49 -04001311 unlock_page(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001312 put_page(page);
Aneesh Kumar K.Vf8514082009-06-05 00:56:49 -04001313
Eric Biggersc93d8f82019-07-22 09:26:24 -07001314 if (old_size < pos && !verity)
Xiaoguang Wang05726392015-02-12 23:00:17 -05001315 pagecache_isize_extended(inode, old_size, pos);
Aneesh Kumar K.Vf8514082009-06-05 00:56:49 -04001316 /*
1317 * Don't mark the inode dirty under page lock. First, it unnecessarily
1318 * makes the holding time of page lock longer. Second, it forces lock
1319 * ordering of page lock and transaction start for journaling
1320 * filesystems.
1321 */
Theodore Ts'o362eca72018-07-10 01:07:43 -04001322 if (i_size_changed || inline_data)
Harshad Shirwadkar4209ae12020-04-26 18:34:37 -07001323 ret = ext4_mark_inode_dirty(handle, inode);
Aneesh Kumar K.Vf8514082009-06-05 00:56:49 -04001324
Eric Biggersc93d8f82019-07-22 09:26:24 -07001325 if (pos + len > inode->i_size && !verity && ext4_can_truncate(inode))
Aneesh Kumar K.Vf8514082009-06-05 00:56:49 -04001326 /* if we have allocated more blocks and copied
1327 * less. We will have blocks allocated outside
1328 * inode->i_size. So truncate them
1329 */
1330 ext4_orphan_add(handle, inode);
Theodore Ts'o74d553a2013-04-03 12:39:17 -04001331errout:
Mingming Cao617ba132006-10-11 01:20:53 -07001332 ret2 = ext4_journal_stop(handle);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001333 if (!ret)
1334 ret = ret2;
Nick Pigginbfc1af62007-10-16 01:25:05 -07001335
Eric Biggersc93d8f82019-07-22 09:26:24 -07001336 if (pos + len > inode->i_size && !verity) {
Jan Karab9a42072009-12-08 21:24:33 -05001337 ext4_truncate_failed_write(inode);
Theodore Ts'ode9a55b2009-06-14 17:45:34 -04001338 /*
Jan Karaffacfa72009-07-13 16:22:22 -04001339 * If truncate failed early the inode might still be
Aneesh Kumar K.Vf8514082009-06-05 00:56:49 -04001340 * on the orphan list; we need to make sure the inode
1341 * is removed from the orphan list in that case.
1342 */
1343 if (inode->i_nlink)
1344 ext4_orphan_del(NULL, inode);
1345 }
1346
Nick Pigginbfc1af62007-10-16 01:25:05 -07001347 return ret ? ret : copied;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001348}
1349
Theodore Ts'ob90197b2015-10-15 10:29:05 -04001350/*
1351 * This is a private version of page_zero_new_buffers() which doesn't
1352 * set the buffer to be dirty, since in data=journalled mode we need
1353 * to call ext4_handle_dirty_metadata() instead.
1354 */
Jan Kara3b136492017-01-27 14:35:38 -05001355static void ext4_journalled_zero_new_buffers(handle_t *handle,
1356 struct page *page,
1357 unsigned from, unsigned to)
Theodore Ts'ob90197b2015-10-15 10:29:05 -04001358{
1359 unsigned int block_start = 0, block_end;
1360 struct buffer_head *head, *bh;
1361
1362 bh = head = page_buffers(page);
1363 do {
1364 block_end = block_start + bh->b_size;
1365 if (buffer_new(bh)) {
1366 if (block_end > from && block_start < to) {
1367 if (!PageUptodate(page)) {
1368 unsigned start, size;
1369
1370 start = max(from, block_start);
1371 size = min(to, block_end) - start;
1372
1373 zero_user(page, start, size);
Jan Kara3b136492017-01-27 14:35:38 -05001374 write_end_fn(handle, bh);
Theodore Ts'ob90197b2015-10-15 10:29:05 -04001375 }
1376 clear_buffer_new(bh);
1377 }
1378 }
1379 block_start = block_end;
1380 bh = bh->b_this_page;
1381 } while (bh != head);
1382}
1383
Nick Pigginbfc1af62007-10-16 01:25:05 -07001384static int ext4_journalled_write_end(struct file *file,
Theodore Ts'ode9a55b2009-06-14 17:45:34 -04001385 struct address_space *mapping,
1386 loff_t pos, unsigned len, unsigned copied,
1387 struct page *page, void *fsdata)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001388{
Mingming Cao617ba132006-10-11 01:20:53 -07001389 handle_t *handle = ext4_journal_current_handle();
Nick Pigginbfc1af62007-10-16 01:25:05 -07001390 struct inode *inode = mapping->host;
Xiaoguang Wang05726392015-02-12 23:00:17 -05001391 loff_t old_size = inode->i_size;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001392 int ret = 0, ret2;
1393 int partial = 0;
Nick Pigginbfc1af62007-10-16 01:25:05 -07001394 unsigned from, to;
Dmitry Monakhov4631dbf2014-08-23 17:48:28 -04001395 int size_changed = 0;
Theodore Ts'o362eca72018-07-10 01:07:43 -04001396 int inline_data = ext4_has_inline_data(inode);
Eric Biggersc93d8f82019-07-22 09:26:24 -07001397 bool verity = ext4_verity_in_progress(inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001398
Theodore Ts'o9bffad12009-06-17 11:48:11 -04001399 trace_ext4_journalled_write_end(inode, pos, len, copied);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001400 from = pos & (PAGE_SIZE - 1);
Nick Pigginbfc1af62007-10-16 01:25:05 -07001401 to = from + len;
1402
Curt Wohlgemuth441c8502011-08-13 11:25:18 -04001403 BUG_ON(!ext4_handle_valid(handle));
1404
Theodore Ts'o362eca72018-07-10 01:07:43 -04001405 if (inline_data) {
Theodore Ts'oeb5efbc2017-02-04 23:04:00 -05001406 ret = ext4_write_inline_data_end(inode, pos, len,
1407 copied, page);
1408 if (ret < 0) {
1409 unlock_page(page);
1410 put_page(page);
1411 goto errout;
1412 }
1413 copied = ret;
1414 } else if (unlikely(copied < len) && !PageUptodate(page)) {
Jan Kara3b136492017-01-27 14:35:38 -05001415 copied = 0;
1416 ext4_journalled_zero_new_buffers(handle, page, from, to);
1417 } else {
1418 if (unlikely(copied < len))
1419 ext4_journalled_zero_new_buffers(handle, page,
1420 from + copied, to);
Tao Ma3fdcfb62012-12-10 14:05:57 -05001421 ret = ext4_walk_page_buffers(handle, page_buffers(page), from,
Jan Kara3b136492017-01-27 14:35:38 -05001422 from + copied, &partial,
1423 write_end_fn);
Tao Ma3fdcfb62012-12-10 14:05:57 -05001424 if (!partial)
1425 SetPageUptodate(page);
1426 }
Eric Biggersc93d8f82019-07-22 09:26:24 -07001427 if (!verity)
1428 size_changed = ext4_update_inode_size(inode, pos + copied);
Theodore Ts'o19f5fb72010-01-24 14:34:07 -05001429 ext4_set_inode_state(inode, EXT4_STATE_JDATA);
Jan Kara2d859db2011-07-26 09:07:11 -04001430 EXT4_I(inode)->i_datasync_tid = handle->h_transaction->t_tid;
Dmitry Monakhov4631dbf2014-08-23 17:48:28 -04001431 unlock_page(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001432 put_page(page);
Dmitry Monakhov4631dbf2014-08-23 17:48:28 -04001433
Eric Biggersc93d8f82019-07-22 09:26:24 -07001434 if (old_size < pos && !verity)
Xiaoguang Wang05726392015-02-12 23:00:17 -05001435 pagecache_isize_extended(inode, old_size, pos);
1436
Theodore Ts'o362eca72018-07-10 01:07:43 -04001437 if (size_changed || inline_data) {
Mingming Cao617ba132006-10-11 01:20:53 -07001438 ret2 = ext4_mark_inode_dirty(handle, inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001439 if (!ret)
1440 ret = ret2;
1441 }
Nick Pigginbfc1af62007-10-16 01:25:05 -07001442
Eric Biggersc93d8f82019-07-22 09:26:24 -07001443 if (pos + len > inode->i_size && !verity && ext4_can_truncate(inode))
Aneesh Kumar K.Vf8514082009-06-05 00:56:49 -04001444 /* if we have allocated more blocks and copied
1445 * less. We will have blocks allocated outside
1446 * inode->i_size. So truncate them
1447 */
1448 ext4_orphan_add(handle, inode);
1449
Theodore Ts'oeb5efbc2017-02-04 23:04:00 -05001450errout:
Mingming Cao617ba132006-10-11 01:20:53 -07001451 ret2 = ext4_journal_stop(handle);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001452 if (!ret)
1453 ret = ret2;
Eric Biggersc93d8f82019-07-22 09:26:24 -07001454 if (pos + len > inode->i_size && !verity) {
Jan Karab9a42072009-12-08 21:24:33 -05001455 ext4_truncate_failed_write(inode);
Theodore Ts'ode9a55b2009-06-14 17:45:34 -04001456 /*
Jan Karaffacfa72009-07-13 16:22:22 -04001457 * If truncate failed early the inode might still be
Aneesh Kumar K.Vf8514082009-06-05 00:56:49 -04001458 * on the orphan list; we need to make sure the inode
1459 * is removed from the orphan list in that case.
1460 */
1461 if (inode->i_nlink)
1462 ext4_orphan_del(NULL, inode);
1463 }
Nick Pigginbfc1af62007-10-16 01:25:05 -07001464
1465 return ret ? ret : copied;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001466}
Mingming Caod2a17632008-07-14 17:52:37 -04001467
Theodore Ts'o9d0be502010-01-01 02:41:30 -05001468/*
Eric Whitneyc27e43a2015-06-21 21:37:05 -04001469 * Reserve space for a single cluster
Theodore Ts'o9d0be502010-01-01 02:41:30 -05001470 */
Eric Whitneyc27e43a2015-06-21 21:37:05 -04001471static int ext4_da_reserve_space(struct inode *inode)
Mingming Caod2a17632008-07-14 17:52:37 -04001472{
Mingming Cao60e58e02009-01-22 18:13:05 +01001473 struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb);
Theodore Ts'o0637c6f2009-12-30 14:20:45 -05001474 struct ext4_inode_info *ei = EXT4_I(inode);
Christoph Hellwig5dd40562010-03-03 09:05:00 -05001475 int ret;
Mingming Caod2a17632008-07-14 17:52:37 -04001476
Mingming Cao60e58e02009-01-22 18:13:05 +01001477 /*
Eric Sandeen72b8ab92010-05-16 11:00:00 -04001478 * We will charge metadata quota at writeout time; this saves
1479 * us from metadata over-estimation, though we may go over by
1480 * a small amount in the end. Here we just reserve for data.
Mingming Cao60e58e02009-01-22 18:13:05 +01001481 */
Aditya Kali7b415bf2011-09-09 19:04:51 -04001482 ret = dquot_reserve_block(inode, EXT4_C2B(sbi, 1));
Christoph Hellwig5dd40562010-03-03 09:05:00 -05001483 if (ret)
1484 return ret;
Theodore Ts'o03179fe2012-07-23 00:00:20 -04001485
Theodore Ts'o03179fe2012-07-23 00:00:20 -04001486 spin_lock(&ei->i_block_reservation_lock);
Theodore Ts'o71d4f7d2014-07-15 06:02:38 -04001487 if (ext4_claim_free_clusters(sbi, 1, 0)) {
Theodore Ts'o03179fe2012-07-23 00:00:20 -04001488 spin_unlock(&ei->i_block_reservation_lock);
Theodore Ts'o03179fe2012-07-23 00:00:20 -04001489 dquot_release_reservation_block(inode, EXT4_C2B(sbi, 1));
Mingming Caod2a17632008-07-14 17:52:37 -04001490 return -ENOSPC;
1491 }
Theodore Ts'o9d0be502010-01-01 02:41:30 -05001492 ei->i_reserved_data_blocks++;
Eric Whitneyc27e43a2015-06-21 21:37:05 -04001493 trace_ext4_da_reserve_space(inode);
Theodore Ts'o0637c6f2009-12-30 14:20:45 -05001494 spin_unlock(&ei->i_block_reservation_lock);
Dmitry Monakhov39bc6802009-12-10 16:36:27 +00001495
Mingming Caod2a17632008-07-14 17:52:37 -04001496 return 0; /* success */
1497}
1498
Eric Whitneyf4567672018-10-01 14:33:24 -04001499void ext4_da_release_space(struct inode *inode, int to_free)
Mingming Caod2a17632008-07-14 17:52:37 -04001500{
1501 struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb);
Theodore Ts'o0637c6f2009-12-30 14:20:45 -05001502 struct ext4_inode_info *ei = EXT4_I(inode);
Mingming Caod2a17632008-07-14 17:52:37 -04001503
Mingming Caocd213222008-08-19 22:16:59 -04001504 if (!to_free)
1505 return; /* Nothing to release, exit */
1506
Mingming Caod2a17632008-07-14 17:52:37 -04001507 spin_lock(&EXT4_I(inode)->i_block_reservation_lock);
Mingming Caocd213222008-08-19 22:16:59 -04001508
Li Zefan5a58ec872010-05-17 02:00:00 -04001509 trace_ext4_da_release_space(inode, to_free);
Theodore Ts'o0637c6f2009-12-30 14:20:45 -05001510 if (unlikely(to_free > ei->i_reserved_data_blocks)) {
Mingming Caocd213222008-08-19 22:16:59 -04001511 /*
Theodore Ts'o0637c6f2009-12-30 14:20:45 -05001512 * if there aren't enough reserved blocks, then the
1513 * counter is messed up somewhere. Since this
1514 * function is called from invalidate page, it's
1515 * harmless to return without any action.
Mingming Caocd213222008-08-19 22:16:59 -04001516 */
Theodore Ts'o8de5c322013-02-14 15:11:41 -05001517 ext4_warning(inode->i_sb, "ext4_da_release_space: "
Theodore Ts'o0637c6f2009-12-30 14:20:45 -05001518 "ino %lu, to_free %d with only %d reserved "
Theodore Ts'o1084f252012-03-19 23:13:43 -04001519 "data blocks", inode->i_ino, to_free,
Theodore Ts'o0637c6f2009-12-30 14:20:45 -05001520 ei->i_reserved_data_blocks);
1521 WARN_ON(1);
1522 to_free = ei->i_reserved_data_blocks;
1523 }
1524 ei->i_reserved_data_blocks -= to_free;
1525
Eric Sandeen72b8ab92010-05-16 11:00:00 -04001526 /* update fs dirty data blocks counter */
Theodore Ts'o57042652011-09-09 18:56:51 -04001527 percpu_counter_sub(&sbi->s_dirtyclusters_counter, to_free);
Mingming Caod2a17632008-07-14 17:52:37 -04001528
Mingming Caod2a17632008-07-14 17:52:37 -04001529 spin_unlock(&EXT4_I(inode)->i_block_reservation_lock);
Mingming Cao60e58e02009-01-22 18:13:05 +01001530
Aditya Kali7b415bf2011-09-09 19:04:51 -04001531 dquot_release_reservation_block(inode, EXT4_C2B(sbi, to_free));
Mingming Caod2a17632008-07-14 17:52:37 -04001532}
1533
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001534/*
Alex Tomas64769242008-07-11 19:27:31 -04001535 * Delayed allocation stuff
1536 */
1537
Jan Kara4e7ea812013-06-04 13:17:40 -04001538struct mpage_da_data {
1539 struct inode *inode;
1540 struct writeback_control *wbc;
Jan Kara6b523df2013-06-04 13:21:11 -04001541
Jan Kara4e7ea812013-06-04 13:17:40 -04001542 pgoff_t first_page; /* The first page to write */
1543 pgoff_t next_page; /* Current page to examine */
1544 pgoff_t last_page; /* Last page to examine */
Aneesh Kumar K.V791b7f02009-01-05 21:50:43 -05001545 /*
Jan Kara4e7ea812013-06-04 13:17:40 -04001546 * Extent to map - this can be after first_page because that can be
1547 * fully mapped. We somewhat abuse m_flags to store whether the extent
1548 * is delalloc or unwritten.
Aneesh Kumar K.V791b7f02009-01-05 21:50:43 -05001549 */
Jan Kara4e7ea812013-06-04 13:17:40 -04001550 struct ext4_map_blocks map;
1551 struct ext4_io_submit io_submit; /* IO submission data */
Jan Karadddbd6a2017-04-30 18:29:10 -04001552 unsigned int do_map:1;
Jan Kara6b8ed622020-05-25 10:12:15 +02001553 unsigned int scanned_until_end:1;
Jan Kara4e7ea812013-06-04 13:17:40 -04001554};
Alex Tomas64769242008-07-11 19:27:31 -04001555
Jan Kara4e7ea812013-06-04 13:17:40 -04001556static void mpage_release_unused_pages(struct mpage_da_data *mpd,
1557 bool invalidate)
Aneesh Kumar K.Vc4a0c462008-08-19 21:08:18 -04001558{
1559 int nr_pages, i;
1560 pgoff_t index, end;
1561 struct pagevec pvec;
1562 struct inode *inode = mpd->inode;
1563 struct address_space *mapping = inode->i_mapping;
Jan Kara4e7ea812013-06-04 13:17:40 -04001564
1565 /* This is necessary when next_page == 0. */
1566 if (mpd->first_page >= mpd->next_page)
1567 return;
Aneesh Kumar K.Vc4a0c462008-08-19 21:08:18 -04001568
Jan Kara6b8ed622020-05-25 10:12:15 +02001569 mpd->scanned_until_end = 0;
Curt Wohlgemuthc7f59382011-02-26 12:27:52 -05001570 index = mpd->first_page;
1571 end = mpd->next_page - 1;
Jan Kara4e7ea812013-06-04 13:17:40 -04001572 if (invalidate) {
1573 ext4_lblk_t start, last;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001574 start = index << (PAGE_SHIFT - inode->i_blkbits);
1575 last = end << (PAGE_SHIFT - inode->i_blkbits);
Jan Kara4e7ea812013-06-04 13:17:40 -04001576 ext4_es_remove_extent(inode, start, last - start + 1);
1577 }
Zheng Liu51865fd2012-11-08 21:57:32 -05001578
Mel Gorman86679822017-11-15 17:37:52 -08001579 pagevec_init(&pvec);
Aneesh Kumar K.Vc4a0c462008-08-19 21:08:18 -04001580 while (index <= end) {
Jan Kara397162f2017-09-06 16:21:43 -07001581 nr_pages = pagevec_lookup_range(&pvec, mapping, &index, end);
Aneesh Kumar K.Vc4a0c462008-08-19 21:08:18 -04001582 if (nr_pages == 0)
1583 break;
1584 for (i = 0; i < nr_pages; i++) {
1585 struct page *page = pvec.pages[i];
Jan Kara2b85a612017-09-06 16:21:30 -07001586
Aneesh Kumar K.Vc4a0c462008-08-19 21:08:18 -04001587 BUG_ON(!PageLocked(page));
1588 BUG_ON(PageWriteback(page));
Jan Kara4e7ea812013-06-04 13:17:40 -04001589 if (invalidate) {
wangguang4e800c02016-09-15 11:32:46 -04001590 if (page_mapped(page))
1591 clear_page_dirty_for_io(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001592 block_invalidatepage(page, 0, PAGE_SIZE);
Jan Kara4e7ea812013-06-04 13:17:40 -04001593 ClearPageUptodate(page);
1594 }
Aneesh Kumar K.Vc4a0c462008-08-19 21:08:18 -04001595 unlock_page(page);
1596 }
Jan Kara9b1d09982010-03-03 16:19:32 -05001597 pagevec_release(&pvec);
Aneesh Kumar K.Vc4a0c462008-08-19 21:08:18 -04001598 }
Aneesh Kumar K.Vc4a0c462008-08-19 21:08:18 -04001599}
1600
Aneesh Kumar K.Vdf222912008-09-08 23:05:34 -04001601static void ext4_print_free_blocks(struct inode *inode)
1602{
1603 struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb);
Theodore Ts'o92b97812012-03-19 23:41:49 -04001604 struct super_block *sb = inode->i_sb;
Lukas Czernerf78ee70d2013-04-03 23:33:30 -04001605 struct ext4_inode_info *ei = EXT4_I(inode);
Theodore Ts'o92b97812012-03-19 23:41:49 -04001606
1607 ext4_msg(sb, KERN_CRIT, "Total free blocks count %lld",
Theodore Ts'o5dee5432011-09-09 19:10:51 -04001608 EXT4_C2B(EXT4_SB(inode->i_sb),
Lukas Czernerf78ee70d2013-04-03 23:33:30 -04001609 ext4_count_free_clusters(sb)));
Theodore Ts'o92b97812012-03-19 23:41:49 -04001610 ext4_msg(sb, KERN_CRIT, "Free/Dirty block details");
1611 ext4_msg(sb, KERN_CRIT, "free_blocks=%lld",
Lukas Czernerf78ee70d2013-04-03 23:33:30 -04001612 (long long) EXT4_C2B(EXT4_SB(sb),
Theodore Ts'o57042652011-09-09 18:56:51 -04001613 percpu_counter_sum(&sbi->s_freeclusters_counter)));
Theodore Ts'o92b97812012-03-19 23:41:49 -04001614 ext4_msg(sb, KERN_CRIT, "dirty_blocks=%lld",
Lukas Czernerf78ee70d2013-04-03 23:33:30 -04001615 (long long) EXT4_C2B(EXT4_SB(sb),
Aditya Kali7b415bf2011-09-09 19:04:51 -04001616 percpu_counter_sum(&sbi->s_dirtyclusters_counter)));
Theodore Ts'o92b97812012-03-19 23:41:49 -04001617 ext4_msg(sb, KERN_CRIT, "Block reservation details");
1618 ext4_msg(sb, KERN_CRIT, "i_reserved_data_blocks=%u",
Lukas Czernerf78ee70d2013-04-03 23:33:30 -04001619 ei->i_reserved_data_blocks);
Aneesh Kumar K.Vdf222912008-09-08 23:05:34 -04001620 return;
1621}
1622
Aneesh Kumar K.Vc364b222009-06-14 17:57:10 -04001623static int ext4_bh_delay_or_unwritten(handle_t *handle, struct buffer_head *bh)
Aneesh Kumar K.V29fa89d2009-05-12 16:30:27 -04001624{
Aneesh Kumar K.Vc364b222009-06-14 17:57:10 -04001625 return (buffer_delay(bh) || buffer_unwritten(bh)) && buffer_dirty(bh);
Aneesh Kumar K.V29fa89d2009-05-12 16:30:27 -04001626}
1627
Alex Tomas64769242008-07-11 19:27:31 -04001628/*
Eric Whitney0b02f4c2018-10-01 14:19:37 -04001629 * ext4_insert_delayed_block - adds a delayed block to the extents status
1630 * tree, incrementing the reserved cluster/block
1631 * count or making a pending reservation
1632 * where needed
1633 *
1634 * @inode - file containing the newly added block
1635 * @lblk - logical block to be added
1636 *
1637 * Returns 0 on success, negative error code on failure.
1638 */
1639static int ext4_insert_delayed_block(struct inode *inode, ext4_lblk_t lblk)
1640{
1641 struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb);
1642 int ret;
1643 bool allocated = false;
1644
1645 /*
1646 * If the cluster containing lblk is shared with a delayed,
1647 * written, or unwritten extent in a bigalloc file system, it's
1648 * already been accounted for and does not need to be reserved.
1649 * A pending reservation must be made for the cluster if it's
1650 * shared with a written or unwritten extent and doesn't already
1651 * have one. Written and unwritten extents can be purged from the
1652 * extents status tree if the system is under memory pressure, so
1653 * it's necessary to examine the extent tree if a search of the
1654 * extents status tree doesn't get a match.
1655 */
1656 if (sbi->s_cluster_ratio == 1) {
1657 ret = ext4_da_reserve_space(inode);
1658 if (ret != 0) /* ENOSPC */
1659 goto errout;
1660 } else { /* bigalloc */
1661 if (!ext4_es_scan_clu(inode, &ext4_es_is_delonly, lblk)) {
1662 if (!ext4_es_scan_clu(inode,
1663 &ext4_es_is_mapped, lblk)) {
1664 ret = ext4_clu_mapped(inode,
1665 EXT4_B2C(sbi, lblk));
1666 if (ret < 0)
1667 goto errout;
1668 if (ret == 0) {
1669 ret = ext4_da_reserve_space(inode);
1670 if (ret != 0) /* ENOSPC */
1671 goto errout;
1672 } else {
1673 allocated = true;
1674 }
1675 } else {
1676 allocated = true;
1677 }
1678 }
1679 }
1680
1681 ret = ext4_es_insert_delayed_block(inode, lblk, allocated);
1682
1683errout:
1684 return ret;
1685}
1686
1687/*
Aditya Kali5356f2612011-09-09 19:20:51 -04001688 * This function is grabs code from the very beginning of
1689 * ext4_map_blocks, but assumes that the caller is from delayed write
1690 * time. This function looks up the requested blocks and sets the
1691 * buffer delay bit under the protection of i_data_sem.
1692 */
1693static int ext4_da_map_blocks(struct inode *inode, sector_t iblock,
1694 struct ext4_map_blocks *map,
1695 struct buffer_head *bh)
1696{
Zheng Liud100eef2013-02-18 00:29:59 -05001697 struct extent_status es;
Aditya Kali5356f2612011-09-09 19:20:51 -04001698 int retval;
1699 sector_t invalid_block = ~((sector_t) 0xffff);
Dmitry Monakhov921f2662013-03-10 21:01:03 -04001700#ifdef ES_AGGRESSIVE_TEST
1701 struct ext4_map_blocks orig_map;
1702
1703 memcpy(&orig_map, map, sizeof(*map));
1704#endif
Aditya Kali5356f2612011-09-09 19:20:51 -04001705
1706 if (invalid_block < ext4_blocks_count(EXT4_SB(inode->i_sb)->s_es))
1707 invalid_block = ~0;
1708
1709 map->m_flags = 0;
Ritesh Harjani70aa1552020-05-10 11:54:55 +05301710 ext_debug(inode, "max_blocks %u, logical block %lu\n", map->m_len,
Aditya Kali5356f2612011-09-09 19:20:51 -04001711 (unsigned long) map->m_lblk);
Zheng Liud100eef2013-02-18 00:29:59 -05001712
1713 /* Lookup extent status tree firstly */
Theodore Ts'obb5835e2019-08-11 16:32:41 -04001714 if (ext4_es_lookup_extent(inode, iblock, NULL, &es)) {
Zheng Liud100eef2013-02-18 00:29:59 -05001715 if (ext4_es_is_hole(&es)) {
1716 retval = 0;
Lukas Czernerc8b459f2014-05-12 12:55:07 -04001717 down_read(&EXT4_I(inode)->i_data_sem);
Zheng Liud100eef2013-02-18 00:29:59 -05001718 goto add_delayed;
1719 }
1720
1721 /*
1722 * Delayed extent could be allocated by fallocate.
1723 * So we need to check it.
1724 */
1725 if (ext4_es_is_delayed(&es) && !ext4_es_is_unwritten(&es)) {
1726 map_bh(bh, inode->i_sb, invalid_block);
1727 set_buffer_new(bh);
1728 set_buffer_delay(bh);
1729 return 0;
1730 }
1731
1732 map->m_pblk = ext4_es_pblock(&es) + iblock - es.es_lblk;
1733 retval = es.es_len - (iblock - es.es_lblk);
1734 if (retval > map->m_len)
1735 retval = map->m_len;
1736 map->m_len = retval;
1737 if (ext4_es_is_written(&es))
1738 map->m_flags |= EXT4_MAP_MAPPED;
1739 else if (ext4_es_is_unwritten(&es))
1740 map->m_flags |= EXT4_MAP_UNWRITTEN;
1741 else
Arnd Bergmann1e83bc82019-04-07 12:24:43 -04001742 BUG();
Zheng Liud100eef2013-02-18 00:29:59 -05001743
Dmitry Monakhov921f2662013-03-10 21:01:03 -04001744#ifdef ES_AGGRESSIVE_TEST
1745 ext4_map_blocks_es_recheck(NULL, inode, map, &orig_map, 0);
1746#endif
Zheng Liud100eef2013-02-18 00:29:59 -05001747 return retval;
1748 }
1749
Aditya Kali5356f2612011-09-09 19:20:51 -04001750 /*
1751 * Try to see if we can get the block without requesting a new
1752 * file system block.
1753 */
Lukas Czernerc8b459f2014-05-12 12:55:07 -04001754 down_read(&EXT4_I(inode)->i_data_sem);
Jan Karacbd75842014-11-25 11:41:49 -05001755 if (ext4_has_inline_data(inode))
Tao Ma9c3569b2012-12-10 14:05:57 -05001756 retval = 0;
Jan Karacbd75842014-11-25 11:41:49 -05001757 else if (ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS))
Zheng Liu2f8e0a72014-11-25 11:44:37 -05001758 retval = ext4_ext_map_blocks(NULL, inode, map, 0);
Aditya Kali5356f2612011-09-09 19:20:51 -04001759 else
Zheng Liu2f8e0a72014-11-25 11:44:37 -05001760 retval = ext4_ind_map_blocks(NULL, inode, map, 0);
Aditya Kali5356f2612011-09-09 19:20:51 -04001761
Zheng Liud100eef2013-02-18 00:29:59 -05001762add_delayed:
Aditya Kali5356f2612011-09-09 19:20:51 -04001763 if (retval == 0) {
Zheng Liuf7fec032013-02-18 00:28:47 -05001764 int ret;
Eric Whitneyad431022018-10-01 14:10:39 -04001765
Aditya Kali5356f2612011-09-09 19:20:51 -04001766 /*
1767 * XXX: __block_prepare_write() unmaps passed block,
1768 * is it OK?
1769 */
Aditya Kali5356f2612011-09-09 19:20:51 -04001770
Eric Whitney0b02f4c2018-10-01 14:19:37 -04001771 ret = ext4_insert_delayed_block(inode, map->m_lblk);
1772 if (ret != 0) {
Zheng Liuf7fec032013-02-18 00:28:47 -05001773 retval = ret;
Zheng Liu51865fd2012-11-08 21:57:32 -05001774 goto out_unlock;
Zheng Liuf7fec032013-02-18 00:28:47 -05001775 }
Zheng Liu51865fd2012-11-08 21:57:32 -05001776
Aditya Kali5356f2612011-09-09 19:20:51 -04001777 map_bh(bh, inode->i_sb, invalid_block);
1778 set_buffer_new(bh);
1779 set_buffer_delay(bh);
Zheng Liuf7fec032013-02-18 00:28:47 -05001780 } else if (retval > 0) {
1781 int ret;
Theodore Ts'o3be78c72013-08-16 21:22:41 -04001782 unsigned int status;
Zheng Liuf7fec032013-02-18 00:28:47 -05001783
Zheng Liu44fb851d2013-07-29 12:51:42 -04001784 if (unlikely(retval != map->m_len)) {
1785 ext4_warning(inode->i_sb,
1786 "ES len assertion failed for inode "
1787 "%lu: retval %d != map->m_len %d",
1788 inode->i_ino, retval, map->m_len);
1789 WARN_ON(1);
Dmitry Monakhov921f2662013-03-10 21:01:03 -04001790 }
Dmitry Monakhov921f2662013-03-10 21:01:03 -04001791
Zheng Liuf7fec032013-02-18 00:28:47 -05001792 status = map->m_flags & EXT4_MAP_UNWRITTEN ?
1793 EXTENT_STATUS_UNWRITTEN : EXTENT_STATUS_WRITTEN;
1794 ret = ext4_es_insert_extent(inode, map->m_lblk, map->m_len,
1795 map->m_pblk, status);
1796 if (ret != 0)
1797 retval = ret;
Aditya Kali5356f2612011-09-09 19:20:51 -04001798 }
1799
1800out_unlock:
1801 up_read((&EXT4_I(inode)->i_data_sem));
1802
1803 return retval;
1804}
1805
1806/*
Seunghun Leed91bd2c2014-09-01 22:15:30 -04001807 * This is a special get_block_t callback which is used by
Theodore Ts'ob920c752009-05-14 00:54:29 -04001808 * ext4_da_write_begin(). It will either return mapped block or
1809 * reserve space for a single block.
Aneesh Kumar K.V29fa89d2009-05-12 16:30:27 -04001810 *
1811 * For delayed buffer_head we have BH_Mapped, BH_New, BH_Delay set.
1812 * We also have b_blocknr = -1 and b_bdev initialized properly
1813 *
1814 * For unwritten buffer_head we have BH_Mapped, BH_New, BH_Unwritten set.
1815 * We also have b_blocknr = physicalblock mapping unwritten extent and b_bdev
1816 * initialized properly.
Alex Tomas64769242008-07-11 19:27:31 -04001817 */
Tao Ma9c3569b2012-12-10 14:05:57 -05001818int ext4_da_get_block_prep(struct inode *inode, sector_t iblock,
1819 struct buffer_head *bh, int create)
Alex Tomas64769242008-07-11 19:27:31 -04001820{
Theodore Ts'o2ed88682010-05-16 20:00:00 -04001821 struct ext4_map_blocks map;
Alex Tomas64769242008-07-11 19:27:31 -04001822 int ret = 0;
1823
1824 BUG_ON(create == 0);
Theodore Ts'o2ed88682010-05-16 20:00:00 -04001825 BUG_ON(bh->b_size != inode->i_sb->s_blocksize);
1826
1827 map.m_lblk = iblock;
1828 map.m_len = 1;
Alex Tomas64769242008-07-11 19:27:31 -04001829
1830 /*
1831 * first, we need to know whether the block is allocated already
1832 * preallocated blocks are unmapped but should treated
1833 * the same as allocated blocks.
1834 */
Aditya Kali5356f2612011-09-09 19:20:51 -04001835 ret = ext4_da_map_blocks(inode, iblock, &map, bh);
1836 if (ret <= 0)
Theodore Ts'o2ed88682010-05-16 20:00:00 -04001837 return ret;
Alex Tomas64769242008-07-11 19:27:31 -04001838
Theodore Ts'o2ed88682010-05-16 20:00:00 -04001839 map_bh(bh, inode->i_sb, map.m_pblk);
Jan Karaed8ad832016-02-19 00:18:25 -05001840 ext4_update_bh_state(bh, map.m_flags);
Theodore Ts'o2ed88682010-05-16 20:00:00 -04001841
1842 if (buffer_unwritten(bh)) {
1843 /* A delayed write to unwritten bh should be marked
1844 * new and mapped. Mapped ensures that we don't do
1845 * get_block multiple times when we write to the same
1846 * offset and new ensures that we do proper zero out
1847 * for partial write.
1848 */
1849 set_buffer_new(bh);
Theodore Ts'oc8205632011-04-10 22:30:07 -04001850 set_buffer_mapped(bh);
Theodore Ts'o2ed88682010-05-16 20:00:00 -04001851 }
1852 return 0;
Alex Tomas64769242008-07-11 19:27:31 -04001853}
Mingming Cao61628a32008-07-11 19:27:31 -04001854
Aneesh Kumar K.V62e086b2009-06-14 17:59:34 -04001855static int bget_one(handle_t *handle, struct buffer_head *bh)
1856{
1857 get_bh(bh);
1858 return 0;
1859}
1860
1861static int bput_one(handle_t *handle, struct buffer_head *bh)
1862{
1863 put_bh(bh);
1864 return 0;
1865}
1866
1867static int __ext4_journalled_writepage(struct page *page,
Aneesh Kumar K.V62e086b2009-06-14 17:59:34 -04001868 unsigned int len)
1869{
1870 struct address_space *mapping = page->mapping;
1871 struct inode *inode = mapping->host;
Tao Ma3fdcfb62012-12-10 14:05:57 -05001872 struct buffer_head *page_bufs = NULL;
Aneesh Kumar K.V62e086b2009-06-14 17:59:34 -04001873 handle_t *handle = NULL;
Tao Ma3fdcfb62012-12-10 14:05:57 -05001874 int ret = 0, err = 0;
1875 int inline_data = ext4_has_inline_data(inode);
1876 struct buffer_head *inode_bh = NULL;
Aneesh Kumar K.V62e086b2009-06-14 17:59:34 -04001877
Theodore Ts'ocb20d512010-10-27 21:30:09 -04001878 ClearPageChecked(page);
Tao Ma3fdcfb62012-12-10 14:05:57 -05001879
1880 if (inline_data) {
1881 BUG_ON(page->index != 0);
1882 BUG_ON(len > ext4_get_max_inline_size(inode));
1883 inode_bh = ext4_journalled_write_inline_data(inode, len, page);
1884 if (inode_bh == NULL)
1885 goto out;
1886 } else {
1887 page_bufs = page_buffers(page);
1888 if (!page_bufs) {
1889 BUG();
1890 goto out;
1891 }
1892 ext4_walk_page_buffers(handle, page_bufs, 0, len,
1893 NULL, bget_one);
1894 }
Theodore Ts'obdf96832015-06-12 23:45:33 -04001895 /*
1896 * We need to release the page lock before we start the
1897 * journal, so grab a reference so the page won't disappear
1898 * out from under us.
1899 */
1900 get_page(page);
Aneesh Kumar K.V62e086b2009-06-14 17:59:34 -04001901 unlock_page(page);
1902
Theodore Ts'o9924a922013-02-08 21:59:22 -05001903 handle = ext4_journal_start(inode, EXT4_HT_WRITE_PAGE,
1904 ext4_writepage_trans_blocks(inode));
Aneesh Kumar K.V62e086b2009-06-14 17:59:34 -04001905 if (IS_ERR(handle)) {
1906 ret = PTR_ERR(handle);
Theodore Ts'obdf96832015-06-12 23:45:33 -04001907 put_page(page);
1908 goto out_no_pagelock;
1909 }
1910 BUG_ON(!ext4_handle_valid(handle));
1911
1912 lock_page(page);
1913 put_page(page);
1914 if (page->mapping != mapping) {
1915 /* The page got truncated from under us */
1916 ext4_journal_stop(handle);
1917 ret = 0;
Aneesh Kumar K.V62e086b2009-06-14 17:59:34 -04001918 goto out;
1919 }
1920
Tao Ma3fdcfb62012-12-10 14:05:57 -05001921 if (inline_data) {
Theodore Ts'o362eca72018-07-10 01:07:43 -04001922 ret = ext4_mark_inode_dirty(handle, inode);
Tao Ma3fdcfb62012-12-10 14:05:57 -05001923 } else {
1924 ret = ext4_walk_page_buffers(handle, page_bufs, 0, len, NULL,
1925 do_journal_get_write_access);
1926
1927 err = ext4_walk_page_buffers(handle, page_bufs, 0, len, NULL,
1928 write_end_fn);
1929 }
Aneesh Kumar K.V62e086b2009-06-14 17:59:34 -04001930 if (ret == 0)
1931 ret = err;
Jan Karab5b18162020-10-27 14:27:51 +01001932 err = ext4_jbd2_inode_add_write(handle, inode, page_offset(page), len);
Mauricio Faria de Oliveiraafb585a2020-10-05 21:48:41 -03001933 if (ret == 0)
1934 ret = err;
Jan Kara2d859db2011-07-26 09:07:11 -04001935 EXT4_I(inode)->i_datasync_tid = handle->h_transaction->t_tid;
Aneesh Kumar K.V62e086b2009-06-14 17:59:34 -04001936 err = ext4_journal_stop(handle);
1937 if (!ret)
1938 ret = err;
1939
Tao Ma3fdcfb62012-12-10 14:05:57 -05001940 if (!ext4_has_inline_data(inode))
Theodore Ts'o8c9367f2014-01-07 13:08:03 -05001941 ext4_walk_page_buffers(NULL, page_bufs, 0, len,
Tao Ma3fdcfb62012-12-10 14:05:57 -05001942 NULL, bput_one);
Theodore Ts'o19f5fb72010-01-24 14:34:07 -05001943 ext4_set_inode_state(inode, EXT4_STATE_JDATA);
Aneesh Kumar K.V62e086b2009-06-14 17:59:34 -04001944out:
Theodore Ts'obdf96832015-06-12 23:45:33 -04001945 unlock_page(page);
1946out_no_pagelock:
Tao Ma3fdcfb62012-12-10 14:05:57 -05001947 brelse(inode_bh);
Aneesh Kumar K.V62e086b2009-06-14 17:59:34 -04001948 return ret;
1949}
1950
Mingming Cao61628a32008-07-11 19:27:31 -04001951/*
Aneesh Kumar K.V43ce1d22009-06-14 17:58:45 -04001952 * Note that we don't need to start a transaction unless we're journaling data
1953 * because we should have holes filled from ext4_page_mkwrite(). We even don't
1954 * need to file the inode to the transaction's list in ordered mode because if
1955 * we are writing back data added by write(), the inode is already there and if
Lucas De Marchi25985ed2011-03-30 22:57:33 -03001956 * we are writing back data modified via mmap(), no one guarantees in which
Aneesh Kumar K.V43ce1d22009-06-14 17:58:45 -04001957 * transaction the data will hit the disk. In case we are journaling data, we
1958 * cannot start transaction directly because transaction start ranks above page
1959 * lock so we have to do some magic.
1960 *
Theodore Ts'ob920c752009-05-14 00:54:29 -04001961 * This function can get called via...
Theodore Ts'o20970ba2013-06-06 14:00:46 -04001962 * - ext4_writepages after taking page lock (have journal handle)
Theodore Ts'ob920c752009-05-14 00:54:29 -04001963 * - journal_submit_inode_data_buffers (no journal handle)
Artem Bityutskiyf6463b02012-07-25 18:12:04 +03001964 * - shrink_page_list via the kswapd/direct reclaim (no journal handle)
Theodore Ts'ob920c752009-05-14 00:54:29 -04001965 * - grab_page_cache when doing write_begin (have journal handle)
Aneesh Kumar K.V43ce1d22009-06-14 17:58:45 -04001966 *
1967 * We don't do any block allocation in this function. If we have page with
1968 * multiple blocks we need to write those buffer_heads that are mapped. This
1969 * is important for mmaped based write. So if we do with blocksize 1K
1970 * truncate(f, 1024);
1971 * a = mmap(f, 0, 4096);
1972 * a[0] = 'a';
1973 * truncate(f, 4096);
1974 * we have in the page first buffer_head mapped via page_mkwrite call back
Paul Bolle90802ed2011-12-05 13:00:34 +01001975 * but other buffer_heads would be unmapped but dirty (dirty done via the
Aneesh Kumar K.V43ce1d22009-06-14 17:58:45 -04001976 * do_wp_page). So writepage should write the first block. If we modify
1977 * the mmap area beyond 1024 we will again get a page_fault and the
1978 * page_mkwrite callback will do the block allocation and mark the
1979 * buffer_heads mapped.
1980 *
1981 * We redirty the page if we have any buffer_heads that is either delay or
1982 * unwritten in the page.
1983 *
1984 * We can get recursively called as show below.
1985 *
1986 * ext4_writepage() -> kmalloc() -> __alloc_pages() -> page_launder() ->
1987 * ext4_writepage()
1988 *
1989 * But since we don't do any block allocation we should not deadlock.
1990 * Page also have the dirty flag cleared so we don't get recurive page_lock.
Mingming Cao61628a32008-07-11 19:27:31 -04001991 */
Aneesh Kumar K.V43ce1d22009-06-14 17:58:45 -04001992static int ext4_writepage(struct page *page,
Aneesh Kumar K.V62e086b2009-06-14 17:59:34 -04001993 struct writeback_control *wbc)
Alex Tomas64769242008-07-11 19:27:31 -04001994{
Jan Karaf8bec372013-01-28 12:55:08 -05001995 int ret = 0;
Mingming Cao61628a32008-07-11 19:27:31 -04001996 loff_t size;
Theodore Ts'o498e5f22008-11-05 00:14:04 -05001997 unsigned int len;
Jiaying Zhang744692d2010-03-04 16:14:02 -05001998 struct buffer_head *page_bufs = NULL;
Mingming Cao61628a32008-07-11 19:27:31 -04001999 struct inode *inode = page->mapping->host;
Jan Kara36ade452013-01-28 09:30:52 -05002000 struct ext4_io_submit io_submit;
Namjae Jeon1c8349a2014-05-12 08:12:25 -04002001 bool keep_towrite = false;
Alex Tomas64769242008-07-11 19:27:31 -04002002
Theodore Ts'o0db1ff22017-02-05 01:28:48 -05002003 if (unlikely(ext4_forced_shutdown(EXT4_SB(inode->i_sb)))) {
yangerkunc2a559b2020-02-26 12:10:02 +08002004 inode->i_mapping->a_ops->invalidatepage(page, 0, PAGE_SIZE);
Theodore Ts'o0db1ff22017-02-05 01:28:48 -05002005 unlock_page(page);
2006 return -EIO;
2007 }
2008
Lukas Czernera9c667f2011-06-06 09:51:52 -04002009 trace_ext4_writepage(page);
Aneesh Kumar K.Vf0e6c982008-07-11 19:27:31 -04002010 size = i_size_read(inode);
Eric Biggersc93d8f82019-07-22 09:26:24 -07002011 if (page->index == size >> PAGE_SHIFT &&
2012 !ext4_verity_in_progress(inode))
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002013 len = size & ~PAGE_MASK;
Aneesh Kumar K.Vf0e6c982008-07-11 19:27:31 -04002014 else
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002015 len = PAGE_SIZE;
Alex Tomas64769242008-07-11 19:27:31 -04002016
Theodore Ts'oa42afc52010-10-27 21:30:09 -04002017 page_bufs = page_buffers(page);
Aneesh Kumar K.Vc364b222009-06-14 17:57:10 -04002018 /*
Jan Karafe386132013-01-28 21:06:42 -05002019 * We cannot do block allocation or other extent handling in this
2020 * function. If there are buffers needing that, we have to redirty
2021 * the page. But we may reach here when we do a journal commit via
2022 * journal_submit_inode_data_buffers() and in that case we must write
2023 * allocated buffers to achieve data=ordered mode guarantees.
Theodore Ts'occcd1472015-10-03 10:49:23 -04002024 *
2025 * Also, if there is only one buffer per page (the fs block
2026 * size == the page size), if one buffer needs block
2027 * allocation or needs to modify the extent tree to clear the
2028 * unwritten flag, we know that the page can't be written at
2029 * all, so we might as well refuse the write immediately.
2030 * Unfortunately if the block size != page size, we can't as
2031 * easily detect this case using ext4_walk_page_buffers(), but
2032 * for the extremely common case, this is an optimization that
2033 * skips a useless round trip through ext4_bio_write_page().
Aneesh Kumar K.Vcd1aac32008-07-11 19:27:31 -04002034 */
Tao Maf19d5872012-12-10 14:05:51 -05002035 if (ext4_walk_page_buffers(NULL, page_bufs, 0, len, NULL,
2036 ext4_bh_delay_or_unwritten)) {
Jan Karaf8bec372013-01-28 12:55:08 -05002037 redirty_page_for_writepage(wbc, page);
Theodore Ts'occcd1472015-10-03 10:49:23 -04002038 if ((current->flags & PF_MEMALLOC) ||
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002039 (inode->i_sb->s_blocksize == PAGE_SIZE)) {
Jan Karafe386132013-01-28 21:06:42 -05002040 /*
2041 * For memory cleaning there's no point in writing only
2042 * some buffers. So just bail out. Warn if we came here
2043 * from direct reclaim.
2044 */
2045 WARN_ON_ONCE((current->flags & (PF_MEMALLOC|PF_KSWAPD))
2046 == PF_MEMALLOC);
Aneesh Kumar K.Vf0e6c982008-07-11 19:27:31 -04002047 unlock_page(page);
2048 return 0;
2049 }
Namjae Jeon1c8349a2014-05-12 08:12:25 -04002050 keep_towrite = true;
Theodore Ts'oa42afc52010-10-27 21:30:09 -04002051 }
Alex Tomas64769242008-07-11 19:27:31 -04002052
Theodore Ts'ocb20d512010-10-27 21:30:09 -04002053 if (PageChecked(page) && ext4_should_journal_data(inode))
Aneesh Kumar K.V43ce1d22009-06-14 17:58:45 -04002054 /*
2055 * It's mmapped pagecache. Add buffers and journal it. There
2056 * doesn't seem much point in redirtying the page here.
2057 */
Wu Fengguang3f0ca302009-11-24 11:15:44 -05002058 return __ext4_journalled_writepage(page, len);
Aneesh Kumar K.V43ce1d22009-06-14 17:58:45 -04002059
Jan Kara97a851e2013-06-04 11:58:58 -04002060 ext4_io_submit_init(&io_submit, wbc);
2061 io_submit.io_end = ext4_init_io_end(inode, GFP_NOFS);
2062 if (!io_submit.io_end) {
2063 redirty_page_for_writepage(wbc, page);
2064 unlock_page(page);
2065 return -ENOMEM;
2066 }
Lei Chenbe993932020-12-11 14:54:24 +08002067 ret = ext4_bio_write_page(&io_submit, page, len, keep_towrite);
Jan Kara36ade452013-01-28 09:30:52 -05002068 ext4_io_submit(&io_submit);
Jan Kara97a851e2013-06-04 11:58:58 -04002069 /* Drop io_end reference we got from init */
2070 ext4_put_io_end_defer(io_submit.io_end);
Alex Tomas64769242008-07-11 19:27:31 -04002071 return ret;
2072}
2073
Jan Kara5f1132b2013-08-17 10:02:33 -04002074static int mpage_submit_page(struct mpage_da_data *mpd, struct page *page)
2075{
2076 int len;
Jan Karaa056bda2017-05-26 17:45:45 -04002077 loff_t size;
Jan Kara5f1132b2013-08-17 10:02:33 -04002078 int err;
2079
2080 BUG_ON(page->index != mpd->first_page);
Jan Karaa056bda2017-05-26 17:45:45 -04002081 clear_page_dirty_for_io(page);
2082 /*
2083 * We have to be very careful here! Nothing protects writeback path
2084 * against i_size changes and the page can be writeably mapped into
2085 * page tables. So an application can be growing i_size and writing
2086 * data through mmap while writeback runs. clear_page_dirty_for_io()
2087 * write-protects our page in page tables and the page cannot get
2088 * written to again until we release page lock. So only after
2089 * clear_page_dirty_for_io() we are safe to sample i_size for
2090 * ext4_bio_write_page() to zero-out tail of the written page. We rely
2091 * on the barrier provided by TestClearPageDirty in
2092 * clear_page_dirty_for_io() to make sure i_size is really sampled only
2093 * after page tables are updated.
2094 */
2095 size = i_size_read(mpd->inode);
Eric Biggersc93d8f82019-07-22 09:26:24 -07002096 if (page->index == size >> PAGE_SHIFT &&
2097 !ext4_verity_in_progress(mpd->inode))
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002098 len = size & ~PAGE_MASK;
Jan Kara5f1132b2013-08-17 10:02:33 -04002099 else
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002100 len = PAGE_SIZE;
Lei Chenbe993932020-12-11 14:54:24 +08002101 err = ext4_bio_write_page(&mpd->io_submit, page, len, false);
Jan Kara5f1132b2013-08-17 10:02:33 -04002102 if (!err)
2103 mpd->wbc->nr_to_write--;
2104 mpd->first_page++;
2105
2106 return err;
2107}
2108
Ritesh Harjani6db07462020-05-10 11:54:51 +05302109#define BH_FLAGS (BIT(BH_Unwritten) | BIT(BH_Delay))
Jan Kara4e7ea812013-06-04 13:17:40 -04002110
Mingming Cao61628a32008-07-11 19:27:31 -04002111/*
Jan Karafffb2732013-06-04 13:01:11 -04002112 * mballoc gives us at most this number of blocks...
2113 * XXX: That seems to be only a limitation of ext4_mb_normalize_request().
Anatol Pomozov70261f52013-08-28 14:40:12 -04002114 * The rest of mballoc seems to handle chunks up to full group size.
Mingming Cao61628a32008-07-11 19:27:31 -04002115 */
Jan Karafffb2732013-06-04 13:01:11 -04002116#define MAX_WRITEPAGES_EXTENT_LEN 2048
Mingming Cao525f4ed2008-08-19 22:15:58 -04002117
Jan Karafffb2732013-06-04 13:01:11 -04002118/*
Jan Kara4e7ea812013-06-04 13:17:40 -04002119 * mpage_add_bh_to_extent - try to add bh to extent of blocks to map
2120 *
2121 * @mpd - extent of blocks
2122 * @lblk - logical number of the block in the file
Jan Kara09930042013-08-17 09:57:56 -04002123 * @bh - buffer head we want to add to the extent
Jan Kara4e7ea812013-06-04 13:17:40 -04002124 *
Jan Kara09930042013-08-17 09:57:56 -04002125 * The function is used to collect contig. blocks in the same state. If the
2126 * buffer doesn't require mapping for writeback and we haven't started the
2127 * extent of buffers to map yet, the function returns 'true' immediately - the
2128 * caller can write the buffer right away. Otherwise the function returns true
2129 * if the block has been added to the extent, false if the block couldn't be
2130 * added.
Jan Kara4e7ea812013-06-04 13:17:40 -04002131 */
Jan Kara09930042013-08-17 09:57:56 -04002132static bool mpage_add_bh_to_extent(struct mpage_da_data *mpd, ext4_lblk_t lblk,
2133 struct buffer_head *bh)
Jan Kara4e7ea812013-06-04 13:17:40 -04002134{
2135 struct ext4_map_blocks *map = &mpd->map;
2136
Jan Kara09930042013-08-17 09:57:56 -04002137 /* Buffer that doesn't need mapping for writeback? */
2138 if (!buffer_dirty(bh) || !buffer_mapped(bh) ||
2139 (!buffer_delay(bh) && !buffer_unwritten(bh))) {
2140 /* So far no extent to map => we write the buffer right away */
2141 if (map->m_len == 0)
2142 return true;
2143 return false;
2144 }
Jan Kara4e7ea812013-06-04 13:17:40 -04002145
2146 /* First block in the extent? */
2147 if (map->m_len == 0) {
Jan Karadddbd6a2017-04-30 18:29:10 -04002148 /* We cannot map unless handle is started... */
2149 if (!mpd->do_map)
2150 return false;
Jan Kara4e7ea812013-06-04 13:17:40 -04002151 map->m_lblk = lblk;
2152 map->m_len = 1;
Jan Kara09930042013-08-17 09:57:56 -04002153 map->m_flags = bh->b_state & BH_FLAGS;
2154 return true;
Jan Kara4e7ea812013-06-04 13:17:40 -04002155 }
2156
Jan Kara09930042013-08-17 09:57:56 -04002157 /* Don't go larger than mballoc is willing to allocate */
2158 if (map->m_len >= MAX_WRITEPAGES_EXTENT_LEN)
2159 return false;
2160
Jan Kara4e7ea812013-06-04 13:17:40 -04002161 /* Can we merge the block to our big extent? */
2162 if (lblk == map->m_lblk + map->m_len &&
Jan Kara09930042013-08-17 09:57:56 -04002163 (bh->b_state & BH_FLAGS) == map->m_flags) {
Jan Kara4e7ea812013-06-04 13:17:40 -04002164 map->m_len++;
Jan Kara09930042013-08-17 09:57:56 -04002165 return true;
Jan Kara4e7ea812013-06-04 13:17:40 -04002166 }
Jan Kara09930042013-08-17 09:57:56 -04002167 return false;
Jan Kara4e7ea812013-06-04 13:17:40 -04002168}
2169
Jan Kara5f1132b2013-08-17 10:02:33 -04002170/*
2171 * mpage_process_page_bufs - submit page buffers for IO or add them to extent
2172 *
2173 * @mpd - extent of blocks for mapping
2174 * @head - the first buffer in the page
2175 * @bh - buffer we should start processing from
2176 * @lblk - logical number of the block in the file corresponding to @bh
2177 *
2178 * Walk through page buffers from @bh upto @head (exclusive) and either submit
2179 * the page for IO if all buffers in this page were mapped and there's no
2180 * accumulated extent of buffers to map or add buffers in the page to the
2181 * extent of buffers to map. The function returns 1 if the caller can continue
2182 * by processing the next page, 0 if it should stop adding buffers to the
2183 * extent to map because we cannot extend it anymore. It can also return value
2184 * < 0 in case of error during IO submission.
2185 */
2186static int mpage_process_page_bufs(struct mpage_da_data *mpd,
2187 struct buffer_head *head,
2188 struct buffer_head *bh,
2189 ext4_lblk_t lblk)
Jan Kara4e7ea812013-06-04 13:17:40 -04002190{
2191 struct inode *inode = mpd->inode;
Jan Kara5f1132b2013-08-17 10:02:33 -04002192 int err;
Fabian Frederick93407472017-02-27 14:28:32 -08002193 ext4_lblk_t blocks = (i_size_read(inode) + i_blocksize(inode) - 1)
Jan Kara4e7ea812013-06-04 13:17:40 -04002194 >> inode->i_blkbits;
2195
Eric Biggersc93d8f82019-07-22 09:26:24 -07002196 if (ext4_verity_in_progress(inode))
2197 blocks = EXT_MAX_BLOCKS;
2198
Jan Kara4e7ea812013-06-04 13:17:40 -04002199 do {
2200 BUG_ON(buffer_locked(bh));
2201
Jan Kara09930042013-08-17 09:57:56 -04002202 if (lblk >= blocks || !mpage_add_bh_to_extent(mpd, lblk, bh)) {
Jan Kara4e7ea812013-06-04 13:17:40 -04002203 /* Found extent to map? */
2204 if (mpd->map.m_len)
Jan Kara5f1132b2013-08-17 10:02:33 -04002205 return 0;
Jan Karadddbd6a2017-04-30 18:29:10 -04002206 /* Buffer needs mapping and handle is not started? */
2207 if (!mpd->do_map)
2208 return 0;
Jan Kara09930042013-08-17 09:57:56 -04002209 /* Everything mapped so far and we hit EOF */
Jan Kara5f1132b2013-08-17 10:02:33 -04002210 break;
Jan Kara4e7ea812013-06-04 13:17:40 -04002211 }
Jan Kara4e7ea812013-06-04 13:17:40 -04002212 } while (lblk++, (bh = bh->b_this_page) != head);
Jan Kara5f1132b2013-08-17 10:02:33 -04002213 /* So far everything mapped? Submit the page for IO. */
2214 if (mpd->map.m_len == 0) {
2215 err = mpage_submit_page(mpd, head->b_page);
2216 if (err < 0)
2217 return err;
2218 }
Jan Kara6b8ed622020-05-25 10:12:15 +02002219 if (lblk >= blocks) {
2220 mpd->scanned_until_end = 1;
2221 return 0;
2222 }
2223 return 1;
Jan Kara4e7ea812013-06-04 13:17:40 -04002224}
2225
2226/*
Ritesh Harjani2943fdb2019-10-16 13:07:09 +05302227 * mpage_process_page - update page buffers corresponding to changed extent and
2228 * may submit fully mapped page for IO
2229 *
2230 * @mpd - description of extent to map, on return next extent to map
2231 * @m_lblk - logical block mapping.
2232 * @m_pblk - corresponding physical mapping.
2233 * @map_bh - determines on return whether this page requires any further
2234 * mapping or not.
2235 * Scan given page buffers corresponding to changed extent and update buffer
2236 * state according to new extent state.
2237 * We map delalloc buffers to their physical location, clear unwritten bits.
2238 * If the given page is not fully mapped, we update @map to the next extent in
2239 * the given page that needs mapping & return @map_bh as true.
2240 */
2241static int mpage_process_page(struct mpage_da_data *mpd, struct page *page,
2242 ext4_lblk_t *m_lblk, ext4_fsblk_t *m_pblk,
2243 bool *map_bh)
2244{
2245 struct buffer_head *head, *bh;
2246 ext4_io_end_t *io_end = mpd->io_submit.io_end;
2247 ext4_lblk_t lblk = *m_lblk;
2248 ext4_fsblk_t pblock = *m_pblk;
2249 int err = 0;
Ritesh Harjanic8cc8812019-10-16 13:07:10 +05302250 int blkbits = mpd->inode->i_blkbits;
2251 ssize_t io_end_size = 0;
2252 struct ext4_io_end_vec *io_end_vec = ext4_last_io_end_vec(io_end);
Ritesh Harjani2943fdb2019-10-16 13:07:09 +05302253
2254 bh = head = page_buffers(page);
2255 do {
2256 if (lblk < mpd->map.m_lblk)
2257 continue;
2258 if (lblk >= mpd->map.m_lblk + mpd->map.m_len) {
2259 /*
2260 * Buffer after end of mapped extent.
2261 * Find next buffer in the page to map.
2262 */
2263 mpd->map.m_len = 0;
2264 mpd->map.m_flags = 0;
Ritesh Harjanic8cc8812019-10-16 13:07:10 +05302265 io_end_vec->size += io_end_size;
2266 io_end_size = 0;
Ritesh Harjani2943fdb2019-10-16 13:07:09 +05302267
Ritesh Harjani2943fdb2019-10-16 13:07:09 +05302268 err = mpage_process_page_bufs(mpd, head, bh, lblk);
2269 if (err > 0)
2270 err = 0;
Ritesh Harjanic8cc8812019-10-16 13:07:10 +05302271 if (!err && mpd->map.m_len && mpd->map.m_lblk > lblk) {
2272 io_end_vec = ext4_alloc_io_end_vec(io_end);
Ritesh Harjani4d06bfb2019-11-06 15:08:09 +05302273 if (IS_ERR(io_end_vec)) {
2274 err = PTR_ERR(io_end_vec);
2275 goto out;
2276 }
Ritesh Harjanid1e18b82020-10-08 20:32:48 +05302277 io_end_vec->offset = (loff_t)mpd->map.m_lblk << blkbits;
Ritesh Harjanic8cc8812019-10-16 13:07:10 +05302278 }
Ritesh Harjani2943fdb2019-10-16 13:07:09 +05302279 *map_bh = true;
2280 goto out;
2281 }
2282 if (buffer_delay(bh)) {
2283 clear_buffer_delay(bh);
2284 bh->b_blocknr = pblock++;
2285 }
2286 clear_buffer_unwritten(bh);
Ritesh Harjanic8cc8812019-10-16 13:07:10 +05302287 io_end_size += (1 << blkbits);
Ritesh Harjani2943fdb2019-10-16 13:07:09 +05302288 } while (lblk++, (bh = bh->b_this_page) != head);
Ritesh Harjanic8cc8812019-10-16 13:07:10 +05302289
2290 io_end_vec->size += io_end_size;
2291 io_end_size = 0;
Ritesh Harjani2943fdb2019-10-16 13:07:09 +05302292 *map_bh = false;
2293out:
2294 *m_lblk = lblk;
2295 *m_pblk = pblock;
2296 return err;
2297}
2298
2299/*
Jan Kara4e7ea812013-06-04 13:17:40 -04002300 * mpage_map_buffers - update buffers corresponding to changed extent and
2301 * submit fully mapped pages for IO
2302 *
2303 * @mpd - description of extent to map, on return next extent to map
2304 *
2305 * Scan buffers corresponding to changed extent (we expect corresponding pages
2306 * to be already locked) and update buffer state according to new extent state.
2307 * We map delalloc buffers to their physical location, clear unwritten bits,
Lukas Czerner556615d2014-04-20 23:45:47 -04002308 * and mark buffers as uninit when we perform writes to unwritten extents
Jan Kara4e7ea812013-06-04 13:17:40 -04002309 * and do extent conversion after IO is finished. If the last page is not fully
2310 * mapped, we update @map to the next extent in the last page that needs
2311 * mapping. Otherwise we submit the page for IO.
2312 */
2313static int mpage_map_and_submit_buffers(struct mpage_da_data *mpd)
2314{
2315 struct pagevec pvec;
2316 int nr_pages, i;
2317 struct inode *inode = mpd->inode;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002318 int bpp_bits = PAGE_SHIFT - inode->i_blkbits;
Jan Kara4e7ea812013-06-04 13:17:40 -04002319 pgoff_t start, end;
2320 ext4_lblk_t lblk;
Ritesh Harjani2943fdb2019-10-16 13:07:09 +05302321 ext4_fsblk_t pblock;
Jan Kara4e7ea812013-06-04 13:17:40 -04002322 int err;
Ritesh Harjani2943fdb2019-10-16 13:07:09 +05302323 bool map_bh = false;
Jan Kara4e7ea812013-06-04 13:17:40 -04002324
2325 start = mpd->map.m_lblk >> bpp_bits;
2326 end = (mpd->map.m_lblk + mpd->map.m_len - 1) >> bpp_bits;
2327 lblk = start << bpp_bits;
2328 pblock = mpd->map.m_pblk;
2329
Mel Gorman86679822017-11-15 17:37:52 -08002330 pagevec_init(&pvec);
Jan Kara4e7ea812013-06-04 13:17:40 -04002331 while (start <= end) {
Jan Kara2b85a612017-09-06 16:21:30 -07002332 nr_pages = pagevec_lookup_range(&pvec, inode->i_mapping,
Jan Kara397162f2017-09-06 16:21:43 -07002333 &start, end);
Jan Kara4e7ea812013-06-04 13:17:40 -04002334 if (nr_pages == 0)
2335 break;
2336 for (i = 0; i < nr_pages; i++) {
2337 struct page *page = pvec.pages[i];
2338
Ritesh Harjani2943fdb2019-10-16 13:07:09 +05302339 err = mpage_process_page(mpd, page, &lblk, &pblock,
2340 &map_bh);
Jan Kara4e7ea812013-06-04 13:17:40 -04002341 /*
Ritesh Harjani2943fdb2019-10-16 13:07:09 +05302342 * If map_bh is true, means page may require further bh
2343 * mapping, or maybe the page was submitted for IO.
2344 * So we return to call further extent mapping.
Jan Kara4e7ea812013-06-04 13:17:40 -04002345 */
Jason Yan39c0ae12020-04-20 12:29:18 +08002346 if (err < 0 || map_bh)
Ritesh Harjani2943fdb2019-10-16 13:07:09 +05302347 goto out;
Jan Kara4e7ea812013-06-04 13:17:40 -04002348 /* Page fully mapped - let IO run! */
2349 err = mpage_submit_page(mpd, page);
Ritesh Harjani2943fdb2019-10-16 13:07:09 +05302350 if (err < 0)
2351 goto out;
Jan Kara4e7ea812013-06-04 13:17:40 -04002352 }
2353 pagevec_release(&pvec);
2354 }
2355 /* Extent fully mapped and matches with page boundary. We are done. */
2356 mpd->map.m_len = 0;
2357 mpd->map.m_flags = 0;
2358 return 0;
Ritesh Harjani2943fdb2019-10-16 13:07:09 +05302359out:
2360 pagevec_release(&pvec);
2361 return err;
Jan Kara4e7ea812013-06-04 13:17:40 -04002362}
2363
2364static int mpage_map_one_extent(handle_t *handle, struct mpage_da_data *mpd)
2365{
2366 struct inode *inode = mpd->inode;
2367 struct ext4_map_blocks *map = &mpd->map;
2368 int get_blocks_flags;
Lukas Czerner090f32e2014-04-20 23:44:47 -04002369 int err, dioread_nolock;
Jan Kara4e7ea812013-06-04 13:17:40 -04002370
2371 trace_ext4_da_write_pages_extent(inode, map);
2372 /*
2373 * Call ext4_map_blocks() to allocate any delayed allocation blocks, or
Lukas Czerner556615d2014-04-20 23:45:47 -04002374 * to convert an unwritten extent to be initialized (in the case
Jan Kara4e7ea812013-06-04 13:17:40 -04002375 * where we have written into one or more preallocated blocks). It is
2376 * possible that we're going to need more metadata blocks than
2377 * previously reserved. However we must not fail because we're in
2378 * writeback and there is nothing we can do about it so it might result
2379 * in data loss. So use reserved blocks to allocate metadata if
2380 * possible.
2381 *
Theodore Ts'o754cfed2014-09-04 18:08:22 -04002382 * We pass in the magic EXT4_GET_BLOCKS_DELALLOC_RESERVE if
2383 * the blocks in question are delalloc blocks. This indicates
2384 * that the blocks and quotas has already been checked when
2385 * the data was copied into the page cache.
Jan Kara4e7ea812013-06-04 13:17:40 -04002386 */
2387 get_blocks_flags = EXT4_GET_BLOCKS_CREATE |
Jan Karaee0876b2016-04-24 00:56:08 -04002388 EXT4_GET_BLOCKS_METADATA_NOFAIL |
2389 EXT4_GET_BLOCKS_IO_SUBMIT;
Lukas Czerner090f32e2014-04-20 23:44:47 -04002390 dioread_nolock = ext4_should_dioread_nolock(inode);
2391 if (dioread_nolock)
Jan Kara4e7ea812013-06-04 13:17:40 -04002392 get_blocks_flags |= EXT4_GET_BLOCKS_IO_CREATE_EXT;
Ritesh Harjani6db07462020-05-10 11:54:51 +05302393 if (map->m_flags & BIT(BH_Delay))
Jan Kara4e7ea812013-06-04 13:17:40 -04002394 get_blocks_flags |= EXT4_GET_BLOCKS_DELALLOC_RESERVE;
2395
2396 err = ext4_map_blocks(handle, inode, map, get_blocks_flags);
2397 if (err < 0)
2398 return err;
Lukas Czerner090f32e2014-04-20 23:44:47 -04002399 if (dioread_nolock && (map->m_flags & EXT4_MAP_UNWRITTEN)) {
Jan Kara6b523df2013-06-04 13:21:11 -04002400 if (!mpd->io_submit.io_end->handle &&
2401 ext4_handle_valid(handle)) {
2402 mpd->io_submit.io_end->handle = handle->h_rsv_handle;
2403 handle->h_rsv_handle = NULL;
2404 }
Jan Kara3613d222013-06-04 13:19:34 -04002405 ext4_set_io_unwritten_flag(inode, mpd->io_submit.io_end);
Jan Kara6b523df2013-06-04 13:21:11 -04002406 }
Jan Kara4e7ea812013-06-04 13:17:40 -04002407
2408 BUG_ON(map->m_len == 0);
Jan Kara4e7ea812013-06-04 13:17:40 -04002409 return 0;
2410}
2411
2412/*
2413 * mpage_map_and_submit_extent - map extent starting at mpd->lblk of length
2414 * mpd->len and submit pages underlying it for IO
2415 *
2416 * @handle - handle for journal operations
2417 * @mpd - extent to map
Jan Kara7534e852013-10-16 08:26:08 -04002418 * @give_up_on_write - we set this to true iff there is a fatal error and there
2419 * is no hope of writing the data. The caller should discard
2420 * dirty pages to avoid infinite loops.
Jan Kara4e7ea812013-06-04 13:17:40 -04002421 *
2422 * The function maps extent starting at mpd->lblk of length mpd->len. If it is
2423 * delayed, blocks are allocated, if it is unwritten, we may need to convert
2424 * them to initialized or split the described range from larger unwritten
2425 * extent. Note that we need not map all the described range since allocation
2426 * can return less blocks or the range is covered by more unwritten extents. We
2427 * cannot map more because we are limited by reserved transaction credits. On
2428 * the other hand we always make sure that the last touched page is fully
2429 * mapped so that it can be written out (and thus forward progress is
2430 * guaranteed). After mapping we submit all mapped pages for IO.
2431 */
2432static int mpage_map_and_submit_extent(handle_t *handle,
Theodore Ts'ocb530542013-07-01 08:12:40 -04002433 struct mpage_da_data *mpd,
2434 bool *give_up_on_write)
Jan Kara4e7ea812013-06-04 13:17:40 -04002435{
2436 struct inode *inode = mpd->inode;
2437 struct ext4_map_blocks *map = &mpd->map;
2438 int err;
2439 loff_t disksize;
Dmitry Monakhov66031202014-08-27 18:40:03 -04002440 int progress = 0;
Ritesh Harjanic8cc8812019-10-16 13:07:10 +05302441 ext4_io_end_t *io_end = mpd->io_submit.io_end;
Ritesh Harjani4d06bfb2019-11-06 15:08:09 +05302442 struct ext4_io_end_vec *io_end_vec;
Jan Kara4e7ea812013-06-04 13:17:40 -04002443
Ritesh Harjani4d06bfb2019-11-06 15:08:09 +05302444 io_end_vec = ext4_alloc_io_end_vec(io_end);
2445 if (IS_ERR(io_end_vec))
2446 return PTR_ERR(io_end_vec);
Ritesh Harjanic8cc8812019-10-16 13:07:10 +05302447 io_end_vec->offset = ((loff_t)map->m_lblk) << inode->i_blkbits;
Jan Kara27d7c4e2013-07-05 21:57:22 -04002448 do {
Jan Kara4e7ea812013-06-04 13:17:40 -04002449 err = mpage_map_one_extent(handle, mpd);
2450 if (err < 0) {
2451 struct super_block *sb = inode->i_sb;
2452
Theodore Ts'o0db1ff22017-02-05 01:28:48 -05002453 if (ext4_forced_shutdown(EXT4_SB(sb)) ||
Harshad Shirwadkar9b5f6c92020-11-05 19:59:09 -08002454 ext4_test_mount_flag(sb, EXT4_MF_FS_ABORTED))
Theodore Ts'ocb530542013-07-01 08:12:40 -04002455 goto invalidate_dirty_pages;
Jan Kara4e7ea812013-06-04 13:17:40 -04002456 /*
Theodore Ts'ocb530542013-07-01 08:12:40 -04002457 * Let the uper layers retry transient errors.
2458 * In the case of ENOSPC, if ext4_count_free_blocks()
2459 * is non-zero, a commit should free up blocks.
Jan Kara4e7ea812013-06-04 13:17:40 -04002460 */
Theodore Ts'ocb530542013-07-01 08:12:40 -04002461 if ((err == -ENOMEM) ||
Dmitry Monakhov66031202014-08-27 18:40:03 -04002462 (err == -ENOSPC && ext4_count_free_clusters(sb))) {
2463 if (progress)
2464 goto update_disksize;
Theodore Ts'ocb530542013-07-01 08:12:40 -04002465 return err;
Dmitry Monakhov66031202014-08-27 18:40:03 -04002466 }
Theodore Ts'ocb530542013-07-01 08:12:40 -04002467 ext4_msg(sb, KERN_CRIT,
2468 "Delayed block allocation failed for "
2469 "inode %lu at logical offset %llu with"
2470 " max blocks %u with error %d",
2471 inode->i_ino,
2472 (unsigned long long)map->m_lblk,
2473 (unsigned)map->m_len, -err);
2474 ext4_msg(sb, KERN_CRIT,
2475 "This should not happen!! Data will "
2476 "be lost\n");
2477 if (err == -ENOSPC)
2478 ext4_print_free_blocks(inode);
2479 invalidate_dirty_pages:
2480 *give_up_on_write = true;
Jan Kara4e7ea812013-06-04 13:17:40 -04002481 return err;
2482 }
Dmitry Monakhov66031202014-08-27 18:40:03 -04002483 progress = 1;
Jan Kara4e7ea812013-06-04 13:17:40 -04002484 /*
2485 * Update buffer state, submit mapped pages, and get us new
2486 * extent to map
2487 */
2488 err = mpage_map_and_submit_buffers(mpd);
2489 if (err < 0)
Dmitry Monakhov66031202014-08-27 18:40:03 -04002490 goto update_disksize;
Jan Kara27d7c4e2013-07-05 21:57:22 -04002491 } while (map->m_len);
Jan Kara4e7ea812013-06-04 13:17:40 -04002492
Dmitry Monakhov66031202014-08-27 18:40:03 -04002493update_disksize:
Theodore Ts'o622cad12014-04-11 10:35:17 -04002494 /*
2495 * Update on-disk size after IO is submitted. Races with
2496 * truncate are avoided by checking i_size under i_data_sem.
2497 */
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002498 disksize = ((loff_t)mpd->first_page) << PAGE_SHIFT;
Qian Cai35df4292020-02-07 09:29:11 -05002499 if (disksize > READ_ONCE(EXT4_I(inode)->i_disksize)) {
Jan Kara4e7ea812013-06-04 13:17:40 -04002500 int err2;
Theodore Ts'o622cad12014-04-11 10:35:17 -04002501 loff_t i_size;
Jan Kara4e7ea812013-06-04 13:17:40 -04002502
Theodore Ts'o622cad12014-04-11 10:35:17 -04002503 down_write(&EXT4_I(inode)->i_data_sem);
2504 i_size = i_size_read(inode);
2505 if (disksize > i_size)
2506 disksize = i_size;
2507 if (disksize > EXT4_I(inode)->i_disksize)
2508 EXT4_I(inode)->i_disksize = disksize;
Theodore Ts'o622cad12014-04-11 10:35:17 -04002509 up_write(&EXT4_I(inode)->i_data_sem);
Theodore Ts'ob907f2d2017-01-11 22:14:49 -05002510 err2 = ext4_mark_inode_dirty(handle, inode);
Theodore Ts'o878520a2019-11-19 21:54:15 -05002511 if (err2) {
Theodore Ts'o54d3adb2020-03-28 19:33:43 -04002512 ext4_error_err(inode->i_sb, -err2,
2513 "Failed to mark inode %lu dirty",
2514 inode->i_ino);
Theodore Ts'o878520a2019-11-19 21:54:15 -05002515 }
Jan Kara4e7ea812013-06-04 13:17:40 -04002516 if (!err)
2517 err = err2;
2518 }
2519 return err;
2520}
2521
2522/*
Jan Karafffb2732013-06-04 13:01:11 -04002523 * Calculate the total number of credits to reserve for one writepages
Theodore Ts'o20970ba2013-06-06 14:00:46 -04002524 * iteration. This is called from ext4_writepages(). We map an extent of
Anatol Pomozov70261f52013-08-28 14:40:12 -04002525 * up to MAX_WRITEPAGES_EXTENT_LEN blocks and then we go on and finish mapping
Jan Karafffb2732013-06-04 13:01:11 -04002526 * the last partial page. So in total we can map MAX_WRITEPAGES_EXTENT_LEN +
2527 * bpp - 1 blocks in bpp different extents.
2528 */
Mingming Cao525f4ed2008-08-19 22:15:58 -04002529static int ext4_da_writepages_trans_blocks(struct inode *inode)
2530{
Jan Karafffb2732013-06-04 13:01:11 -04002531 int bpp = ext4_journal_blocks_per_page(inode);
Mingming Cao525f4ed2008-08-19 22:15:58 -04002532
Jan Karafffb2732013-06-04 13:01:11 -04002533 return ext4_meta_trans_blocks(inode,
2534 MAX_WRITEPAGES_EXTENT_LEN + bpp - 1, bpp);
Mingming Cao525f4ed2008-08-19 22:15:58 -04002535}
Mingming Cao61628a32008-07-11 19:27:31 -04002536
Theodore Ts'o8e48dcf2010-05-16 18:00:00 -04002537/*
Jan Kara4e7ea812013-06-04 13:17:40 -04002538 * mpage_prepare_extent_to_map - find & lock contiguous range of dirty pages
2539 * and underlying extent to map
2540 *
2541 * @mpd - where to look for pages
2542 *
2543 * Walk dirty pages in the mapping. If they are fully mapped, submit them for
2544 * IO immediately. When we find a page which isn't mapped we start accumulating
2545 * extent of buffers underlying these pages that needs mapping (formed by
2546 * either delayed or unwritten buffers). We also lock the pages containing
2547 * these buffers. The extent found is returned in @mpd structure (starting at
2548 * mpd->lblk with length mpd->len blocks).
2549 *
2550 * Note that this function can attach bios to one io_end structure which are
2551 * neither logically nor physically contiguous. Although it may seem as an
2552 * unnecessary complication, it is actually inevitable in blocksize < pagesize
2553 * 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 -04002554 */
Jan Kara4e7ea812013-06-04 13:17:40 -04002555static int mpage_prepare_extent_to_map(struct mpage_da_data *mpd)
Theodore Ts'o8e48dcf2010-05-16 18:00:00 -04002556{
Jan Kara4e7ea812013-06-04 13:17:40 -04002557 struct address_space *mapping = mpd->inode->i_mapping;
2558 struct pagevec pvec;
2559 unsigned int nr_pages;
Ming Leiaeac5892013-10-17 18:56:16 -04002560 long left = mpd->wbc->nr_to_write;
Jan Kara4e7ea812013-06-04 13:17:40 -04002561 pgoff_t index = mpd->first_page;
2562 pgoff_t end = mpd->last_page;
Matthew Wilcox10bbd232017-12-05 17:30:38 -05002563 xa_mark_t tag;
Jan Kara4e7ea812013-06-04 13:17:40 -04002564 int i, err = 0;
2565 int blkbits = mpd->inode->i_blkbits;
2566 ext4_lblk_t lblk;
2567 struct buffer_head *head;
Theodore Ts'o8e48dcf2010-05-16 18:00:00 -04002568
Jan Kara4e7ea812013-06-04 13:17:40 -04002569 if (mpd->wbc->sync_mode == WB_SYNC_ALL || mpd->wbc->tagged_writepages)
Eric Sandeen5b41d922010-10-27 21:30:13 -04002570 tag = PAGECACHE_TAG_TOWRITE;
2571 else
2572 tag = PAGECACHE_TAG_DIRTY;
2573
Mel Gorman86679822017-11-15 17:37:52 -08002574 pagevec_init(&pvec);
Jan Kara4e7ea812013-06-04 13:17:40 -04002575 mpd->map.m_len = 0;
2576 mpd->next_page = index;
Theodore Ts'o4f01b022011-02-26 14:07:37 -05002577 while (index <= end) {
Jan Karadc7f3e82017-11-15 17:34:44 -08002578 nr_pages = pagevec_lookup_range_tag(&pvec, mapping, &index, end,
Jan Kara67fd7072017-11-15 17:35:19 -08002579 tag);
Theodore Ts'o8e48dcf2010-05-16 18:00:00 -04002580 if (nr_pages == 0)
Jan Kara6b8ed622020-05-25 10:12:15 +02002581 break;
Theodore Ts'o8e48dcf2010-05-16 18:00:00 -04002582
2583 for (i = 0; i < nr_pages; i++) {
2584 struct page *page = pvec.pages[i];
2585
2586 /*
Ming Leiaeac5892013-10-17 18:56:16 -04002587 * Accumulated enough dirty pages? This doesn't apply
2588 * to WB_SYNC_ALL mode. For integrity sync we have to
2589 * keep going because someone may be concurrently
2590 * dirtying pages, and we might have synced a lot of
2591 * newly appeared dirty pages, but have not synced all
2592 * of the old dirty pages.
2593 */
2594 if (mpd->wbc->sync_mode == WB_SYNC_NONE && left <= 0)
2595 goto out;
2596
Jan Kara4e7ea812013-06-04 13:17:40 -04002597 /* If we can't merge this page, we are done. */
2598 if (mpd->map.m_len > 0 && mpd->next_page != page->index)
2599 goto out;
Theodore Ts'o78aaced2011-02-26 14:09:14 -05002600
Theodore Ts'o8e48dcf2010-05-16 18:00:00 -04002601 lock_page(page);
Theodore Ts'o8e48dcf2010-05-16 18:00:00 -04002602 /*
Jan Kara4e7ea812013-06-04 13:17:40 -04002603 * If the page is no longer dirty, or its mapping no
2604 * longer corresponds to inode we are writing (which
2605 * means it has been truncated or invalidated), or the
2606 * page is already under writeback and we are not doing
2607 * a data integrity writeback, skip the page
Theodore Ts'o8e48dcf2010-05-16 18:00:00 -04002608 */
Theodore Ts'o4f01b022011-02-26 14:07:37 -05002609 if (!PageDirty(page) ||
2610 (PageWriteback(page) &&
Jan Kara4e7ea812013-06-04 13:17:40 -04002611 (mpd->wbc->sync_mode == WB_SYNC_NONE)) ||
Theodore Ts'o4f01b022011-02-26 14:07:37 -05002612 unlikely(page->mapping != mapping)) {
Theodore Ts'o8e48dcf2010-05-16 18:00:00 -04002613 unlock_page(page);
2614 continue;
2615 }
2616
Darrick J. Wong7cb1a532011-05-18 13:53:20 -04002617 wait_on_page_writeback(page);
Theodore Ts'o8e48dcf2010-05-16 18:00:00 -04002618 BUG_ON(PageWriteback(page));
Theodore Ts'o8e48dcf2010-05-16 18:00:00 -04002619
Jan Kara4e7ea812013-06-04 13:17:40 -04002620 if (mpd->map.m_len == 0)
Theodore Ts'o8eb9e5c2011-02-26 14:07:31 -05002621 mpd->first_page = page->index;
Theodore Ts'o8eb9e5c2011-02-26 14:07:31 -05002622 mpd->next_page = page->index + 1;
Jan Karaf8bec372013-01-28 12:55:08 -05002623 /* Add all dirty buffers to mpd */
Jan Kara4e7ea812013-06-04 13:17:40 -04002624 lblk = ((ext4_lblk_t)page->index) <<
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002625 (PAGE_SHIFT - blkbits);
Jan Karaf8bec372013-01-28 12:55:08 -05002626 head = page_buffers(page);
Jan Kara5f1132b2013-08-17 10:02:33 -04002627 err = mpage_process_page_bufs(mpd, head, head, lblk);
2628 if (err <= 0)
Jan Kara4e7ea812013-06-04 13:17:40 -04002629 goto out;
Jan Kara5f1132b2013-08-17 10:02:33 -04002630 err = 0;
Ming Leiaeac5892013-10-17 18:56:16 -04002631 left--;
Theodore Ts'o8e48dcf2010-05-16 18:00:00 -04002632 }
2633 pagevec_release(&pvec);
2634 cond_resched();
2635 }
Jan Kara6b8ed622020-05-25 10:12:15 +02002636 mpd->scanned_until_end = 1;
Theodore Ts'o4f01b022011-02-26 14:07:37 -05002637 return 0;
Theodore Ts'o8eb9e5c2011-02-26 14:07:31 -05002638out:
2639 pagevec_release(&pvec);
Jan Kara4e7ea812013-06-04 13:17:40 -04002640 return err;
Theodore Ts'o8e48dcf2010-05-16 18:00:00 -04002641}
2642
Theodore Ts'o20970ba2013-06-06 14:00:46 -04002643static int ext4_writepages(struct address_space *mapping,
2644 struct writeback_control *wbc)
Alex Tomas64769242008-07-11 19:27:31 -04002645{
Jan Kara4e7ea812013-06-04 13:17:40 -04002646 pgoff_t writeback_index = 0;
2647 long nr_to_write = wbc->nr_to_write;
Aneesh Kumar K.V22208de2008-10-16 10:10:36 -04002648 int range_whole = 0;
Jan Kara4e7ea812013-06-04 13:17:40 -04002649 int cycled = 1;
Mingming Cao61628a32008-07-11 19:27:31 -04002650 handle_t *handle = NULL;
Aneesh Kumar K.Vdf222912008-09-08 23:05:34 -04002651 struct mpage_da_data mpd;
Aneesh Kumar K.V5e745b02008-08-18 18:00:57 -04002652 struct inode *inode = mapping->host;
Jan Kara6b523df2013-06-04 13:21:11 -04002653 int needed_blocks, rsv_blocks = 0, ret = 0;
Aneesh Kumar K.V5e745b02008-08-18 18:00:57 -04002654 struct ext4_sb_info *sbi = EXT4_SB(mapping->host->i_sb);
Shaohua Li1bce63d12011-10-18 10:55:51 -04002655 struct blk_plug plug;
Theodore Ts'ocb530542013-07-01 08:12:40 -04002656 bool give_up_on_write = false;
Mingming Cao61628a32008-07-11 19:27:31 -04002657
Theodore Ts'o0db1ff22017-02-05 01:28:48 -05002658 if (unlikely(ext4_forced_shutdown(EXT4_SB(inode->i_sb))))
2659 return -EIO;
2660
Eric Biggersbbd55932020-02-19 10:30:46 -08002661 percpu_down_read(&sbi->s_writepages_rwsem);
Theodore Ts'o20970ba2013-06-06 14:00:46 -04002662 trace_ext4_writepages(inode, wbc);
Theodore Ts'oba80b102009-01-03 20:03:21 -05002663
Mingming Cao61628a32008-07-11 19:27:31 -04002664 /*
2665 * No pages to write? This is mainly a kludge to avoid starting
2666 * a transaction for special inodes like journal inode on last iput()
2667 * because that could violate lock ordering on umount
2668 */
Aneesh Kumar K.Va1d6cc52008-08-19 21:55:02 -04002669 if (!mapping->nrpages || !mapping_tagged(mapping, PAGECACHE_TAG_DIRTY))
Ming Leibbf023c72013-10-30 07:27:16 -04002670 goto out_writepages;
Theodore Ts'o2a21e372008-11-05 09:22:24 -05002671
Theodore Ts'o20970ba2013-06-06 14:00:46 -04002672 if (ext4_should_journal_data(inode)) {
Goldwyn Rodrigues043d20d2018-03-26 01:32:50 -04002673 ret = generic_writepages(mapping, wbc);
Ming Leibbf023c72013-10-30 07:27:16 -04002674 goto out_writepages;
Theodore Ts'o20970ba2013-06-06 14:00:46 -04002675 }
2676
Theodore Ts'o2a21e372008-11-05 09:22:24 -05002677 /*
2678 * If the filesystem has aborted, it is read-only, so return
2679 * right away instead of dumping stack traces later on that
2680 * will obscure the real source of the problem. We test
Linus Torvalds1751e8a2017-11-27 13:05:09 -08002681 * EXT4_MF_FS_ABORTED instead of sb->s_flag's SB_RDONLY because
Theodore Ts'o2a21e372008-11-05 09:22:24 -05002682 * the latter could be true if the filesystem is mounted
Theodore Ts'o20970ba2013-06-06 14:00:46 -04002683 * read-only, and in that case, ext4_writepages should
Theodore Ts'o2a21e372008-11-05 09:22:24 -05002684 * *never* be called, so if that ever happens, we would want
2685 * the stack trace.
2686 */
Theodore Ts'o0db1ff22017-02-05 01:28:48 -05002687 if (unlikely(ext4_forced_shutdown(EXT4_SB(mapping->host->i_sb)) ||
Harshad Shirwadkar9b5f6c92020-11-05 19:59:09 -08002688 ext4_test_mount_flag(inode->i_sb, EXT4_MF_FS_ABORTED))) {
Ming Leibbf023c72013-10-30 07:27:16 -04002689 ret = -EROFS;
2690 goto out_writepages;
2691 }
Theodore Ts'o2a21e372008-11-05 09:22:24 -05002692
Jan Kara4e7ea812013-06-04 13:17:40 -04002693 /*
2694 * If we have inline data and arrive here, it means that
2695 * we will soon create the block for the 1st page, so
2696 * we'd better clear the inline data here.
2697 */
2698 if (ext4_has_inline_data(inode)) {
2699 /* Just inode will be modified... */
2700 handle = ext4_journal_start(inode, EXT4_HT_INODE, 1);
2701 if (IS_ERR(handle)) {
2702 ret = PTR_ERR(handle);
2703 goto out_writepages;
2704 }
2705 BUG_ON(ext4_test_inode_state(inode,
2706 EXT4_STATE_MAY_INLINE_DATA));
2707 ext4_destroy_inline_data(handle, inode);
2708 ext4_journal_stop(handle);
2709 }
2710
yangerkun4e343232019-08-11 16:27:41 -04002711 if (ext4_should_dioread_nolock(inode)) {
2712 /*
2713 * We may need to convert up to one extent per block in
2714 * the page and we may dirty the inode.
2715 */
2716 rsv_blocks = 1 + ext4_chunk_trans_blocks(inode,
2717 PAGE_SIZE >> inode->i_blkbits);
2718 }
2719
Aneesh Kumar K.V22208de2008-10-16 10:10:36 -04002720 if (wbc->range_start == 0 && wbc->range_end == LLONG_MAX)
2721 range_whole = 1;
Mingming Cao61628a32008-07-11 19:27:31 -04002722
Aneesh Kumar K.V2acf2c22009-02-14 10:42:58 -05002723 if (wbc->range_cyclic) {
Jan Kara4e7ea812013-06-04 13:17:40 -04002724 writeback_index = mapping->writeback_index;
2725 if (writeback_index)
Aneesh Kumar K.V2acf2c22009-02-14 10:42:58 -05002726 cycled = 0;
Jan Kara4e7ea812013-06-04 13:17:40 -04002727 mpd.first_page = writeback_index;
2728 mpd.last_page = -1;
Eric Sandeen5b41d922010-10-27 21:30:13 -04002729 } else {
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002730 mpd.first_page = wbc->range_start >> PAGE_SHIFT;
2731 mpd.last_page = wbc->range_end >> PAGE_SHIFT;
Eric Sandeen5b41d922010-10-27 21:30:13 -04002732 }
Aneesh Kumar K.Va1d6cc52008-08-19 21:55:02 -04002733
Jan Kara4e7ea812013-06-04 13:17:40 -04002734 mpd.inode = inode;
2735 mpd.wbc = wbc;
2736 ext4_io_submit_init(&mpd.io_submit, wbc);
Aneesh Kumar K.V2acf2c22009-02-14 10:42:58 -05002737retry:
Wu Fengguang6e6938b2010-06-06 10:38:15 -06002738 if (wbc->sync_mode == WB_SYNC_ALL || wbc->tagged_writepages)
Jan Kara4e7ea812013-06-04 13:17:40 -04002739 tag_pages_for_writeback(mapping, mpd.first_page, mpd.last_page);
Shaohua Li1bce63d12011-10-18 10:55:51 -04002740 blk_start_plug(&plug);
Jan Karadddbd6a2017-04-30 18:29:10 -04002741
2742 /*
2743 * First writeback pages that don't need mapping - we can avoid
2744 * starting a transaction unnecessarily and also avoid being blocked
2745 * in the block layer on device congestion while having transaction
2746 * started.
2747 */
2748 mpd.do_map = 0;
Jan Kara6b8ed622020-05-25 10:12:15 +02002749 mpd.scanned_until_end = 0;
Jan Karadddbd6a2017-04-30 18:29:10 -04002750 mpd.io_submit.io_end = ext4_init_io_end(inode, GFP_KERNEL);
2751 if (!mpd.io_submit.io_end) {
2752 ret = -ENOMEM;
2753 goto unplug;
2754 }
2755 ret = mpage_prepare_extent_to_map(&mpd);
Xiaoguang Wanga297b2f2019-02-10 23:53:21 -05002756 /* Unlock pages we didn't use */
2757 mpage_release_unused_pages(&mpd, false);
Jan Karadddbd6a2017-04-30 18:29:10 -04002758 /* Submit prepared bio */
2759 ext4_io_submit(&mpd.io_submit);
2760 ext4_put_io_end_defer(mpd.io_submit.io_end);
2761 mpd.io_submit.io_end = NULL;
Jan Karadddbd6a2017-04-30 18:29:10 -04002762 if (ret < 0)
2763 goto unplug;
2764
Jan Kara6b8ed622020-05-25 10:12:15 +02002765 while (!mpd.scanned_until_end && wbc->nr_to_write > 0) {
Jan Kara4e7ea812013-06-04 13:17:40 -04002766 /* For each extent of pages we use new io_end */
2767 mpd.io_submit.io_end = ext4_init_io_end(inode, GFP_KERNEL);
2768 if (!mpd.io_submit.io_end) {
2769 ret = -ENOMEM;
2770 break;
2771 }
Aneesh Kumar K.Va1d6cc52008-08-19 21:55:02 -04002772
2773 /*
Jan Kara4e7ea812013-06-04 13:17:40 -04002774 * We have two constraints: We find one extent to map and we
2775 * must always write out whole page (makes a difference when
2776 * blocksize < pagesize) so that we don't block on IO when we
2777 * try to write out the rest of the page. Journalled mode is
2778 * not supported by delalloc.
Aneesh Kumar K.Va1d6cc52008-08-19 21:55:02 -04002779 */
2780 BUG_ON(ext4_should_journal_data(inode));
Mingming Cao525f4ed2008-08-19 22:15:58 -04002781 needed_blocks = ext4_da_writepages_trans_blocks(inode);
Aneesh Kumar K.Va1d6cc52008-08-19 21:55:02 -04002782
Jan Kara4e7ea812013-06-04 13:17:40 -04002783 /* start a new transaction */
Jan Kara6b523df2013-06-04 13:21:11 -04002784 handle = ext4_journal_start_with_reserve(inode,
2785 EXT4_HT_WRITE_PAGE, needed_blocks, rsv_blocks);
Mingming Cao61628a32008-07-11 19:27:31 -04002786 if (IS_ERR(handle)) {
2787 ret = PTR_ERR(handle);
Theodore Ts'o16939182009-09-26 17:43:59 -04002788 ext4_msg(inode->i_sb, KERN_CRIT, "%s: jbd2_start: "
Curt Wohlgemuthfbe845d2010-05-16 13:00:00 -04002789 "%ld pages, ino %lu; err %d", __func__,
Aneesh Kumar K.Va1d6cc52008-08-19 21:55:02 -04002790 wbc->nr_to_write, inode->i_ino, ret);
Jan Kara4e7ea812013-06-04 13:17:40 -04002791 /* Release allocated io_end */
2792 ext4_put_io_end(mpd.io_submit.io_end);
Jan Karadddbd6a2017-04-30 18:29:10 -04002793 mpd.io_submit.io_end = NULL;
Jan Kara4e7ea812013-06-04 13:17:40 -04002794 break;
Mingming Cao61628a32008-07-11 19:27:31 -04002795 }
Jan Karadddbd6a2017-04-30 18:29:10 -04002796 mpd.do_map = 1;
Theodore Ts'of63e60052009-02-23 16:42:39 -05002797
Jan Kara4e7ea812013-06-04 13:17:40 -04002798 trace_ext4_da_write_pages(inode, mpd.first_page, mpd.wbc);
2799 ret = mpage_prepare_extent_to_map(&mpd);
Jan Kara6b8ed622020-05-25 10:12:15 +02002800 if (!ret && mpd.map.m_len)
2801 ret = mpage_map_and_submit_extent(handle, &mpd,
Theodore Ts'ocb530542013-07-01 08:12:40 -04002802 &give_up_on_write);
Jan Kara646caa92016-07-04 10:14:01 -04002803 /*
2804 * Caution: If the handle is synchronous,
2805 * ext4_journal_stop() can wait for transaction commit
2806 * to finish which may depend on writeback of pages to
2807 * complete or on page lock to be released. In that
Randy Dunlapb483bb72020-08-04 19:48:50 -07002808 * case, we have to wait until after we have
Jan Kara646caa92016-07-04 10:14:01 -04002809 * submitted all the IO, released page locks we hold,
2810 * and dropped io_end reference (for extent conversion
2811 * to be able to complete) before stopping the handle.
2812 */
2813 if (!ext4_handle_valid(handle) || handle->h_sync == 0) {
2814 ext4_journal_stop(handle);
2815 handle = NULL;
Jan Karadddbd6a2017-04-30 18:29:10 -04002816 mpd.do_map = 0;
Jan Kara646caa92016-07-04 10:14:01 -04002817 }
Jan Kara4e7ea812013-06-04 13:17:40 -04002818 /* Unlock pages we didn't use */
Theodore Ts'ocb530542013-07-01 08:12:40 -04002819 mpage_release_unused_pages(&mpd, give_up_on_write);
Xiaoguang Wanga297b2f2019-02-10 23:53:21 -05002820 /* Submit prepared bio */
2821 ext4_io_submit(&mpd.io_submit);
2822
Jan Kara646caa92016-07-04 10:14:01 -04002823 /*
2824 * Drop our io_end reference we got from init. We have
2825 * to be careful and use deferred io_end finishing if
2826 * we are still holding the transaction as we can
2827 * release the last reference to io_end which may end
2828 * up doing unwritten extent conversion.
2829 */
2830 if (handle) {
2831 ext4_put_io_end_defer(mpd.io_submit.io_end);
2832 ext4_journal_stop(handle);
2833 } else
2834 ext4_put_io_end(mpd.io_submit.io_end);
Jan Karadddbd6a2017-04-30 18:29:10 -04002835 mpd.io_submit.io_end = NULL;
Aneesh Kumar K.Vdf222912008-09-08 23:05:34 -04002836
Jan Kara4e7ea812013-06-04 13:17:40 -04002837 if (ret == -ENOSPC && sbi->s_journal) {
2838 /*
2839 * Commit the transaction which would
Aneesh Kumar K.V22208de2008-10-16 10:10:36 -04002840 * free blocks released in the transaction
2841 * and try again
2842 */
Aneesh Kumar K.Vdf222912008-09-08 23:05:34 -04002843 jbd2_journal_force_commit_nested(sbi->s_journal);
Aneesh Kumar K.V22208de2008-10-16 10:10:36 -04002844 ret = 0;
Jan Kara4e7ea812013-06-04 13:17:40 -04002845 continue;
2846 }
2847 /* Fatal error - ENOMEM, EIO... */
2848 if (ret)
Mingming Cao61628a32008-07-11 19:27:31 -04002849 break;
Mingming Cao61628a32008-07-11 19:27:31 -04002850 }
Jan Karadddbd6a2017-04-30 18:29:10 -04002851unplug:
Shaohua Li1bce63d12011-10-18 10:55:51 -04002852 blk_finish_plug(&plug);
Jan Kara9c12a832013-09-16 08:24:26 -04002853 if (!ret && !cycled && wbc->nr_to_write > 0) {
Aneesh Kumar K.V2acf2c22009-02-14 10:42:58 -05002854 cycled = 1;
Jan Kara4e7ea812013-06-04 13:17:40 -04002855 mpd.last_page = writeback_index - 1;
2856 mpd.first_page = 0;
Aneesh Kumar K.V2acf2c22009-02-14 10:42:58 -05002857 goto retry;
2858 }
Mingming Cao61628a32008-07-11 19:27:31 -04002859
Aneesh Kumar K.V22208de2008-10-16 10:10:36 -04002860 /* Update index */
Aneesh Kumar K.V22208de2008-10-16 10:10:36 -04002861 if (wbc->range_cyclic || (range_whole && wbc->nr_to_write > 0))
2862 /*
Jan Kara4e7ea812013-06-04 13:17:40 -04002863 * Set the writeback_index so that range_cyclic
Aneesh Kumar K.V22208de2008-10-16 10:10:36 -04002864 * mode will write it back later
2865 */
Jan Kara4e7ea812013-06-04 13:17:40 -04002866 mapping->writeback_index = mpd.first_page;
Aneesh Kumar K.Va1d6cc52008-08-19 21:55:02 -04002867
Mingming Cao61628a32008-07-11 19:27:31 -04002868out_writepages:
Theodore Ts'o20970ba2013-06-06 14:00:46 -04002869 trace_ext4_writepages_result(inode, wbc, ret,
2870 nr_to_write - wbc->nr_to_write);
Eric Biggersbbd55932020-02-19 10:30:46 -08002871 percpu_up_read(&sbi->s_writepages_rwsem);
Mingming Cao61628a32008-07-11 19:27:31 -04002872 return ret;
Alex Tomas64769242008-07-11 19:27:31 -04002873}
2874
Dan Williams5f0663b2017-12-21 12:25:11 -08002875static int ext4_dax_writepages(struct address_space *mapping,
2876 struct writeback_control *wbc)
2877{
2878 int ret;
2879 long nr_to_write = wbc->nr_to_write;
2880 struct inode *inode = mapping->host;
2881 struct ext4_sb_info *sbi = EXT4_SB(mapping->host->i_sb);
2882
2883 if (unlikely(ext4_forced_shutdown(EXT4_SB(inode->i_sb))))
2884 return -EIO;
2885
Eric Biggersbbd55932020-02-19 10:30:46 -08002886 percpu_down_read(&sbi->s_writepages_rwsem);
Dan Williams5f0663b2017-12-21 12:25:11 -08002887 trace_ext4_writepages(inode, wbc);
2888
Vivek Goyal3f666c52020-01-03 13:33:07 -05002889 ret = dax_writeback_mapping_range(mapping, sbi->s_daxdev, wbc);
Dan Williams5f0663b2017-12-21 12:25:11 -08002890 trace_ext4_writepages_result(inode, wbc, ret,
2891 nr_to_write - wbc->nr_to_write);
Eric Biggersbbd55932020-02-19 10:30:46 -08002892 percpu_up_read(&sbi->s_writepages_rwsem);
Dan Williams5f0663b2017-12-21 12:25:11 -08002893 return ret;
2894}
2895
Aneesh Kumar K.V79f0be82008-10-08 23:13:30 -04002896static int ext4_nonda_switch(struct super_block *sb)
2897{
Eric Whitney5c1ff332013-04-09 09:27:31 -04002898 s64 free_clusters, dirty_clusters;
Aneesh Kumar K.V79f0be82008-10-08 23:13:30 -04002899 struct ext4_sb_info *sbi = EXT4_SB(sb);
2900
2901 /*
2902 * switch to non delalloc mode if we are running low
2903 * on free block. The free block accounting via percpu
Eric Dumazet179f7eb2009-01-06 14:41:04 -08002904 * counters can get slightly wrong with percpu_counter_batch getting
Aneesh Kumar K.V79f0be82008-10-08 23:13:30 -04002905 * accumulated on each CPU without updating global counters
2906 * Delalloc need an accurate free block accounting. So switch
2907 * to non delalloc when we are near to error range.
2908 */
Eric Whitney5c1ff332013-04-09 09:27:31 -04002909 free_clusters =
2910 percpu_counter_read_positive(&sbi->s_freeclusters_counter);
2911 dirty_clusters =
2912 percpu_counter_read_positive(&sbi->s_dirtyclusters_counter);
Theodore Ts'o00d4e732012-09-19 22:42:36 -04002913 /*
2914 * Start pushing delalloc when 1/2 of free blocks are dirty.
2915 */
Eric Whitney5c1ff332013-04-09 09:27:31 -04002916 if (dirty_clusters && (free_clusters < 2 * dirty_clusters))
Miao Xie10ee27a2013-01-10 13:47:57 +08002917 try_to_writeback_inodes_sb(sb, WB_REASON_FS_FREE_SPACE);
Theodore Ts'o00d4e732012-09-19 22:42:36 -04002918
Eric Whitney5c1ff332013-04-09 09:27:31 -04002919 if (2 * free_clusters < 3 * dirty_clusters ||
2920 free_clusters < (dirty_clusters + EXT4_FREECLUSTERS_WATERMARK)) {
Aneesh Kumar K.V79f0be82008-10-08 23:13:30 -04002921 /*
Eric Sandeenc8afb442009-12-23 07:58:12 -05002922 * free block count is less than 150% of dirty blocks
2923 * or free blocks is less than watermark
Aneesh Kumar K.V79f0be82008-10-08 23:13:30 -04002924 */
2925 return 1;
2926 }
2927 return 0;
2928}
2929
Eric Sandeen0ff89472014-10-11 19:51:17 -04002930/* We always reserve for an inode update; the superblock could be there too */
2931static int ext4_da_write_credits(struct inode *inode, loff_t pos, unsigned len)
2932{
Darrick J. Wonge2b911c2015-10-17 16:18:43 -04002933 if (likely(ext4_has_feature_large_file(inode->i_sb)))
Eric Sandeen0ff89472014-10-11 19:51:17 -04002934 return 1;
2935
2936 if (pos + len <= 0x7fffffffULL)
2937 return 1;
2938
2939 /* We might need to update the superblock to set LARGE_FILE */
2940 return 2;
2941}
2942
Alex Tomas64769242008-07-11 19:27:31 -04002943static int ext4_da_write_begin(struct file *file, struct address_space *mapping,
Theodore Ts'ode9a55b2009-06-14 17:45:34 -04002944 loff_t pos, unsigned len, unsigned flags,
2945 struct page **pagep, void **fsdata)
Alex Tomas64769242008-07-11 19:27:31 -04002946{
Eric Sandeen72b8ab92010-05-16 11:00:00 -04002947 int ret, retries = 0;
Alex Tomas64769242008-07-11 19:27:31 -04002948 struct page *page;
2949 pgoff_t index;
Alex Tomas64769242008-07-11 19:27:31 -04002950 struct inode *inode = mapping->host;
2951 handle_t *handle;
2952
Theodore Ts'o0db1ff22017-02-05 01:28:48 -05002953 if (unlikely(ext4_forced_shutdown(EXT4_SB(inode->i_sb))))
2954 return -EIO;
2955
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002956 index = pos >> PAGE_SHIFT;
Aneesh Kumar K.V79f0be82008-10-08 23:13:30 -04002957
Eric Biggersc93d8f82019-07-22 09:26:24 -07002958 if (ext4_nonda_switch(inode->i_sb) || S_ISLNK(inode->i_mode) ||
2959 ext4_verity_in_progress(inode)) {
Aneesh Kumar K.V79f0be82008-10-08 23:13:30 -04002960 *fsdata = (void *)FALL_BACK_TO_NONDELALLOC;
2961 return ext4_write_begin(file, mapping, pos,
2962 len, flags, pagep, fsdata);
2963 }
2964 *fsdata = (void *)0;
Theodore Ts'o9bffad12009-06-17 11:48:11 -04002965 trace_ext4_da_write_begin(inode, pos, len, flags);
Tao Ma9c3569b2012-12-10 14:05:57 -05002966
2967 if (ext4_test_inode_state(inode, EXT4_STATE_MAY_INLINE_DATA)) {
2968 ret = ext4_da_write_inline_data_begin(mapping, inode,
2969 pos, len, flags,
2970 pagep, fsdata);
2971 if (ret < 0)
Theodore Ts'o47564bf2013-02-09 09:24:14 -05002972 return ret;
2973 if (ret == 1)
2974 return 0;
Tao Ma9c3569b2012-12-10 14:05:57 -05002975 }
2976
Theodore Ts'o47564bf2013-02-09 09:24:14 -05002977 /*
2978 * grab_cache_page_write_begin() can take a long time if the
2979 * system is thrashing due to memory pressure, or if the page
2980 * is being written back. So grab it first before we start
2981 * the transaction handle. This also allows us to allocate
2982 * the page (if needed) without using GFP_NOFS.
2983 */
2984retry_grab:
2985 page = grab_cache_page_write_begin(mapping, index, flags);
2986 if (!page)
2987 return -ENOMEM;
2988 unlock_page(page);
2989
Alex Tomas64769242008-07-11 19:27:31 -04002990 /*
2991 * With delayed allocation, we don't log the i_disksize update
2992 * if there is delayed block allocation. But we still need
2993 * to journalling the i_disksize update if writes to the end
2994 * of file which has an already mapped buffer.
2995 */
Theodore Ts'o47564bf2013-02-09 09:24:14 -05002996retry_journal:
Eric Sandeen0ff89472014-10-11 19:51:17 -04002997 handle = ext4_journal_start(inode, EXT4_HT_WRITE_PAGE,
2998 ext4_da_write_credits(inode, pos, len));
Alex Tomas64769242008-07-11 19:27:31 -04002999 if (IS_ERR(handle)) {
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03003000 put_page(page);
Theodore Ts'o47564bf2013-02-09 09:24:14 -05003001 return PTR_ERR(handle);
Alex Tomas64769242008-07-11 19:27:31 -04003002 }
3003
Theodore Ts'o47564bf2013-02-09 09:24:14 -05003004 lock_page(page);
3005 if (page->mapping != mapping) {
3006 /* The page got truncated from under us */
3007 unlock_page(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03003008 put_page(page);
Eric Sandeend5a0d4f2008-08-02 18:51:06 -04003009 ext4_journal_stop(handle);
Theodore Ts'o47564bf2013-02-09 09:24:14 -05003010 goto retry_grab;
Eric Sandeend5a0d4f2008-08-02 18:51:06 -04003011 }
Theodore Ts'o47564bf2013-02-09 09:24:14 -05003012 /* In case writeback began while the page was unlocked */
Dmitry Monakhov7afe5aa2013-08-28 14:30:47 -04003013 wait_for_stable_page(page);
Alex Tomas64769242008-07-11 19:27:31 -04003014
Chandan Rajendra643fa962018-12-12 15:20:12 +05303015#ifdef CONFIG_FS_ENCRYPTION
Michael Halcrow2058f832015-04-12 00:55:10 -04003016 ret = ext4_block_write_begin(page, pos, len,
3017 ext4_da_get_block_prep);
3018#else
Christoph Hellwig6e1db882010-06-04 11:29:57 +02003019 ret = __block_write_begin(page, pos, len, ext4_da_get_block_prep);
Michael Halcrow2058f832015-04-12 00:55:10 -04003020#endif
Alex Tomas64769242008-07-11 19:27:31 -04003021 if (ret < 0) {
3022 unlock_page(page);
3023 ext4_journal_stop(handle);
Aneesh Kumar K.Vae4d5372008-09-13 13:10:25 -04003024 /*
3025 * block_write_begin may have instantiated a few blocks
3026 * outside i_size. Trim these off again. Don't need
3027 * i_size_read because we hold i_mutex.
3028 */
3029 if (pos + len > inode->i_size)
Jan Karab9a42072009-12-08 21:24:33 -05003030 ext4_truncate_failed_write(inode);
Theodore Ts'o47564bf2013-02-09 09:24:14 -05003031
3032 if (ret == -ENOSPC &&
3033 ext4_should_retry_alloc(inode->i_sb, &retries))
3034 goto retry_journal;
3035
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03003036 put_page(page);
Theodore Ts'o47564bf2013-02-09 09:24:14 -05003037 return ret;
Alex Tomas64769242008-07-11 19:27:31 -04003038 }
3039
Theodore Ts'o47564bf2013-02-09 09:24:14 -05003040 *pagep = page;
Alex Tomas64769242008-07-11 19:27:31 -04003041 return ret;
3042}
3043
Mingming Cao632eaea2008-07-11 19:27:31 -04003044/*
3045 * Check if we should update i_disksize
3046 * when write to the end of file but not require block allocation
3047 */
3048static int ext4_da_should_update_i_disksize(struct page *page,
Theodore Ts'ode9a55b2009-06-14 17:45:34 -04003049 unsigned long offset)
Mingming Cao632eaea2008-07-11 19:27:31 -04003050{
3051 struct buffer_head *bh;
3052 struct inode *inode = page->mapping->host;
3053 unsigned int idx;
3054 int i;
3055
3056 bh = page_buffers(page);
3057 idx = offset >> inode->i_blkbits;
3058
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04003059 for (i = 0; i < idx; i++)
Mingming Cao632eaea2008-07-11 19:27:31 -04003060 bh = bh->b_this_page;
3061
Aneesh Kumar K.V29fa89d2009-05-12 16:30:27 -04003062 if (!buffer_mapped(bh) || (buffer_delay(bh)) || buffer_unwritten(bh))
Mingming Cao632eaea2008-07-11 19:27:31 -04003063 return 0;
3064 return 1;
3065}
3066
Alex Tomas64769242008-07-11 19:27:31 -04003067static int ext4_da_write_end(struct file *file,
Theodore Ts'ode9a55b2009-06-14 17:45:34 -04003068 struct address_space *mapping,
3069 loff_t pos, unsigned len, unsigned copied,
3070 struct page *page, void *fsdata)
Alex Tomas64769242008-07-11 19:27:31 -04003071{
3072 struct inode *inode = mapping->host;
3073 int ret = 0, ret2;
3074 handle_t *handle = ext4_journal_current_handle();
3075 loff_t new_i_size;
Mingming Cao632eaea2008-07-11 19:27:31 -04003076 unsigned long start, end;
Aneesh Kumar K.V79f0be82008-10-08 23:13:30 -04003077 int write_mode = (int)(unsigned long)fsdata;
3078
Theodore Ts'o74d553a2013-04-03 12:39:17 -04003079 if (write_mode == FALL_BACK_TO_NONDELALLOC)
3080 return ext4_write_end(file, mapping, pos,
3081 len, copied, page, fsdata);
Mingming Cao632eaea2008-07-11 19:27:31 -04003082
Theodore Ts'o9bffad12009-06-17 11:48:11 -04003083 trace_ext4_da_write_end(inode, pos, len, copied);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03003084 start = pos & (PAGE_SIZE - 1);
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04003085 end = start + copied - 1;
Alex Tomas64769242008-07-11 19:27:31 -04003086
3087 /*
3088 * generic_write_end() will run mark_inode_dirty() if i_size
3089 * changes. So let's piggyback the i_disksize mark_inode_dirty
3090 * into that.
3091 */
Alex Tomas64769242008-07-11 19:27:31 -04003092 new_i_size = pos + copied;
Andrea Arcangeliea51d132011-12-13 21:41:15 -05003093 if (copied && new_i_size > EXT4_I(inode)->i_disksize) {
Tao Ma9c3569b2012-12-10 14:05:57 -05003094 if (ext4_has_inline_data(inode) ||
3095 ext4_da_should_update_i_disksize(page, end)) {
Dmitry Monakhovee124d22014-08-30 23:34:06 -04003096 ext4_update_i_disksize(inode, new_i_size);
Aneesh Kumar K.Vcf17fea2008-09-13 13:06:18 -04003097 /* We need to mark inode dirty even if
3098 * new_i_size is less that inode->i_size
3099 * bu greater than i_disksize.(hint delalloc)
3100 */
Harshad Shirwadkar4209ae12020-04-26 18:34:37 -07003101 ret = ext4_mark_inode_dirty(handle, inode);
Alex Tomas64769242008-07-11 19:27:31 -04003102 }
Mingming Cao632eaea2008-07-11 19:27:31 -04003103 }
Tao Ma9c3569b2012-12-10 14:05:57 -05003104
3105 if (write_mode != CONVERT_INLINE_DATA &&
3106 ext4_test_inode_state(inode, EXT4_STATE_MAY_INLINE_DATA) &&
3107 ext4_has_inline_data(inode))
3108 ret2 = ext4_da_write_inline_data_end(inode, pos, len, copied,
3109 page);
3110 else
3111 ret2 = generic_write_end(file, mapping, pos, len, copied,
Alex Tomas64769242008-07-11 19:27:31 -04003112 page, fsdata);
Tao Ma9c3569b2012-12-10 14:05:57 -05003113
Alex Tomas64769242008-07-11 19:27:31 -04003114 copied = ret2;
3115 if (ret2 < 0)
3116 ret = ret2;
3117 ret2 = ext4_journal_stop(handle);
Harshad Shirwadkar4209ae12020-04-26 18:34:37 -07003118 if (unlikely(ret2 && !ret))
Alex Tomas64769242008-07-11 19:27:31 -04003119 ret = ret2;
3120
3121 return ret ? ret : copied;
3122}
3123
Theodore Ts'occd25062009-02-26 01:04:07 -05003124/*
3125 * Force all delayed allocation blocks to be allocated for a given inode.
3126 */
3127int ext4_alloc_da_blocks(struct inode *inode)
3128{
Theodore Ts'ofb40ba02009-09-16 19:30:40 -04003129 trace_ext4_alloc_da_blocks(inode);
3130
Theodore Ts'o71d4f7d2014-07-15 06:02:38 -04003131 if (!EXT4_I(inode)->i_reserved_data_blocks)
Theodore Ts'occd25062009-02-26 01:04:07 -05003132 return 0;
3133
3134 /*
3135 * We do something simple for now. The filemap_flush() will
3136 * also start triggering a write of the data blocks, which is
3137 * not strictly speaking necessary (and for users of
3138 * laptop_mode, not even desirable). However, to do otherwise
3139 * would require replicating code paths in:
Theodore Ts'ode9a55b2009-06-14 17:45:34 -04003140 *
Theodore Ts'o20970ba2013-06-06 14:00:46 -04003141 * ext4_writepages() ->
Theodore Ts'occd25062009-02-26 01:04:07 -05003142 * write_cache_pages() ---> (via passed in callback function)
3143 * __mpage_da_writepage() -->
3144 * mpage_add_bh_to_extent()
3145 * mpage_da_map_blocks()
3146 *
3147 * The problem is that write_cache_pages(), located in
3148 * mm/page-writeback.c, marks pages clean in preparation for
3149 * doing I/O, which is not desirable if we're not planning on
3150 * doing I/O at all.
3151 *
3152 * We could call write_cache_pages(), and then redirty all of
Wu Fengguang380cf092010-11-11 19:23:29 +08003153 * the pages by calling redirty_page_for_writepage() but that
Theodore Ts'occd25062009-02-26 01:04:07 -05003154 * would be ugly in the extreme. So instead we would need to
3155 * replicate parts of the code in the above functions,
Lucas De Marchi25985ed2011-03-30 22:57:33 -03003156 * simplifying them because we wouldn't actually intend to
Theodore Ts'occd25062009-02-26 01:04:07 -05003157 * write out the pages, but rather only collect contiguous
3158 * logical block extents, call the multi-block allocator, and
3159 * then update the buffer heads with the block allocations.
Theodore Ts'ode9a55b2009-06-14 17:45:34 -04003160 *
Theodore Ts'occd25062009-02-26 01:04:07 -05003161 * For now, though, we'll cheat by calling filemap_flush(),
3162 * which will map the blocks, and start the I/O, but not
3163 * actually wait for the I/O to complete.
3164 */
3165 return filemap_flush(inode->i_mapping);
3166}
Alex Tomas64769242008-07-11 19:27:31 -04003167
3168/*
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003169 * bmap() is special. It gets used by applications such as lilo and by
3170 * the swapper to find the on-disk block of a specific piece of data.
3171 *
3172 * Naturally, this is dangerous if the block concerned is still in the
Mingming Cao617ba132006-10-11 01:20:53 -07003173 * journal. If somebody makes a swapfile on an ext4 data-journaling
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003174 * filesystem and enables swap, then they may get a nasty shock when the
3175 * data getting swapped to that swapfile suddenly gets overwritten by
3176 * the original zero's written out previously to the journal and
3177 * awaiting writeback in the kernel's buffer cache.
3178 *
3179 * So, if we see any bmap calls here on a modified, data-journaled file,
3180 * take extra steps to flush any blocks which might be in the cache.
3181 */
Mingming Cao617ba132006-10-11 01:20:53 -07003182static sector_t ext4_bmap(struct address_space *mapping, sector_t block)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003183{
3184 struct inode *inode = mapping->host;
3185 journal_t *journal;
3186 int err;
3187
Tao Ma46c7f252012-12-10 14:04:52 -05003188 /*
3189 * We can get here for an inline file via the FIBMAP ioctl
3190 */
3191 if (ext4_has_inline_data(inode))
3192 return 0;
3193
Alex Tomas64769242008-07-11 19:27:31 -04003194 if (mapping_tagged(mapping, PAGECACHE_TAG_DIRTY) &&
3195 test_opt(inode->i_sb, DELALLOC)) {
3196 /*
3197 * With delalloc we want to sync the file
3198 * so that we can make sure we allocate
3199 * blocks for file
3200 */
3201 filemap_write_and_wait(mapping);
3202 }
3203
Theodore Ts'o19f5fb72010-01-24 14:34:07 -05003204 if (EXT4_JOURNAL(inode) &&
3205 ext4_test_inode_state(inode, EXT4_STATE_JDATA)) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003206 /*
3207 * This is a REALLY heavyweight approach, but the use of
3208 * bmap on dirty files is expected to be extremely rare:
3209 * only if we run lilo or swapon on a freshly made file
3210 * do we expect this to happen.
3211 *
3212 * (bmap requires CAP_SYS_RAWIO so this does not
3213 * represent an unprivileged user DOS attack --- we'd be
3214 * in trouble if mortal users could trigger this path at
3215 * will.)
3216 *
Mingming Cao617ba132006-10-11 01:20:53 -07003217 * NB. EXT4_STATE_JDATA is not set on files other than
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003218 * regular files. If somebody wants to bmap a directory
3219 * or symlink and gets confused because the buffer
3220 * hasn't yet been flushed to disk, they deserve
3221 * everything they get.
3222 */
3223
Theodore Ts'o19f5fb72010-01-24 14:34:07 -05003224 ext4_clear_inode_state(inode, EXT4_STATE_JDATA);
Mingming Cao617ba132006-10-11 01:20:53 -07003225 journal = EXT4_JOURNAL(inode);
Mingming Caodab291a2006-10-11 01:21:01 -07003226 jbd2_journal_lock_updates(journal);
3227 err = jbd2_journal_flush(journal);
3228 jbd2_journal_unlock_updates(journal);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003229
3230 if (err)
3231 return 0;
3232 }
3233
Ritesh Harjaniac58e4f2020-02-28 14:56:56 +05303234 return iomap_bmap(mapping, block, &ext4_iomap_ops);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003235}
3236
Mingming Cao617ba132006-10-11 01:20:53 -07003237static int ext4_readpage(struct file *file, struct page *page)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003238{
Tao Ma46c7f252012-12-10 14:04:52 -05003239 int ret = -EAGAIN;
3240 struct inode *inode = page->mapping->host;
3241
Jiaying Zhang0562e0b2011-03-21 21:38:05 -04003242 trace_ext4_readpage(page);
Tao Ma46c7f252012-12-10 14:04:52 -05003243
3244 if (ext4_has_inline_data(inode))
3245 ret = ext4_readpage_inline(inode, page);
3246
3247 if (ret == -EAGAIN)
Matthew Wilcox (Oracle)a07f6242020-06-01 21:47:20 -07003248 return ext4_mpage_readpages(inode, NULL, page);
Tao Ma46c7f252012-12-10 14:04:52 -05003249
3250 return ret;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003251}
3252
Matthew Wilcox (Oracle)6311f91f2020-06-01 21:47:16 -07003253static void ext4_readahead(struct readahead_control *rac)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003254{
Matthew Wilcox (Oracle)6311f91f2020-06-01 21:47:16 -07003255 struct inode *inode = rac->mapping->host;
Tao Ma46c7f252012-12-10 14:04:52 -05003256
Matthew Wilcox (Oracle)6311f91f2020-06-01 21:47:16 -07003257 /* If the file has inline data, no need to do readahead. */
Tao Ma46c7f252012-12-10 14:04:52 -05003258 if (ext4_has_inline_data(inode))
Matthew Wilcox (Oracle)6311f91f2020-06-01 21:47:16 -07003259 return;
Tao Ma46c7f252012-12-10 14:04:52 -05003260
Matthew Wilcox (Oracle)a07f6242020-06-01 21:47:20 -07003261 ext4_mpage_readpages(inode, rac, NULL);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003262}
3263
Lukas Czernerd47992f2013-05-21 23:17:23 -04003264static void ext4_invalidatepage(struct page *page, unsigned int offset,
3265 unsigned int length)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003266{
Lukas Czernerca99fdd2013-05-21 23:25:01 -04003267 trace_ext4_invalidatepage(page, offset, length);
Jiaying Zhang0562e0b2011-03-21 21:38:05 -04003268
Jan Kara4520fb32012-12-25 13:28:54 -05003269 /* No journalling happens on data buffers when this function is used */
3270 WARN_ON(page_has_buffers(page) && buffer_jbd(page_buffers(page)));
3271
Lukas Czernerca99fdd2013-05-21 23:25:01 -04003272 block_invalidatepage(page, offset, length);
Jan Kara4520fb32012-12-25 13:28:54 -05003273}
3274
Jan Kara53e87262012-12-25 13:29:52 -05003275static int __ext4_journalled_invalidatepage(struct page *page,
Lukas Czernerca99fdd2013-05-21 23:25:01 -04003276 unsigned int offset,
3277 unsigned int length)
Jan Kara4520fb32012-12-25 13:28:54 -05003278{
3279 journal_t *journal = EXT4_JOURNAL(page->mapping->host);
3280
Lukas Czernerca99fdd2013-05-21 23:25:01 -04003281 trace_ext4_journalled_invalidatepage(page, offset, length);
Jan Kara4520fb32012-12-25 13:28:54 -05003282
Jiaying Zhang744692d2010-03-04 16:14:02 -05003283 /*
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003284 * If it's a full truncate we just forget about the pending dirtying
3285 */
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03003286 if (offset == 0 && length == PAGE_SIZE)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003287 ClearPageChecked(page);
3288
Lukas Czernerca99fdd2013-05-21 23:25:01 -04003289 return jbd2_journal_invalidatepage(journal, page, offset, length);
Jan Kara53e87262012-12-25 13:29:52 -05003290}
3291
3292/* Wrapper for aops... */
3293static void ext4_journalled_invalidatepage(struct page *page,
Lukas Czernerd47992f2013-05-21 23:17:23 -04003294 unsigned int offset,
3295 unsigned int length)
Jan Kara53e87262012-12-25 13:29:52 -05003296{
Lukas Czernerca99fdd2013-05-21 23:25:01 -04003297 WARN_ON(__ext4_journalled_invalidatepage(page, offset, length) < 0);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003298}
3299
Mingming Cao617ba132006-10-11 01:20:53 -07003300static int ext4_releasepage(struct page *page, gfp_t wait)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003301{
Mingming Cao617ba132006-10-11 01:20:53 -07003302 journal_t *journal = EXT4_JOURNAL(page->mapping->host);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003303
Jiaying Zhang0562e0b2011-03-21 21:38:05 -04003304 trace_ext4_releasepage(page);
3305
Jan Karae1c36592013-03-10 22:19:00 -04003306 /* Page has dirty journalled data -> cannot release */
3307 if (PageChecked(page))
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003308 return 0;
Frank Mayhar03901312009-01-07 00:06:22 -05003309 if (journal)
zhangyi (F)529a7812020-06-20 10:54:27 +08003310 return jbd2_journal_try_to_free_buffers(journal, page);
Frank Mayhar03901312009-01-07 00:06:22 -05003311 else
3312 return try_to_free_buffers(page);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003313}
3314
Jan Karab8a61762017-11-01 16:36:45 +01003315static bool ext4_inode_datasync_dirty(struct inode *inode)
3316{
3317 journal_t *journal = EXT4_SB(inode->i_sb)->s_journal;
3318
Harshad Shirwadkaraa75f4d2020-10-15 13:37:57 -07003319 if (journal) {
3320 if (jbd2_transaction_committed(journal,
Andrea Righid0520df2020-10-26 21:49:13 -07003321 EXT4_I(inode)->i_datasync_tid))
3322 return false;
3323 if (test_opt2(inode->i_sb, JOURNAL_FAST_COMMIT))
Harshad Shirwadkar1ceecb52020-11-05 19:59:06 -08003324 return !list_empty(&EXT4_I(inode)->i_fc_list);
Andrea Righid0520df2020-10-26 21:49:13 -07003325 return true;
Harshad Shirwadkaraa75f4d2020-10-15 13:37:57 -07003326 }
3327
Jan Karab8a61762017-11-01 16:36:45 +01003328 /* Any metadata buffers to write? */
3329 if (!list_empty(&inode->i_mapping->private_list))
3330 return true;
3331 return inode->i_state & I_DIRTY_DATASYNC;
3332}
3333
Matthew Bobrowskic8fdfe292019-11-05 22:59:56 +11003334static void ext4_set_iomap(struct inode *inode, struct iomap *iomap,
3335 struct ext4_map_blocks *map, loff_t offset,
3336 loff_t length)
Jan Kara364443c2016-11-20 17:36:06 -05003337{
Matthew Bobrowskic8fdfe292019-11-05 22:59:56 +11003338 u8 blkbits = inode->i_blkbits;
3339
3340 /*
3341 * Writes that span EOF might trigger an I/O size update on completion,
3342 * so consider them to be dirty for the purpose of O_DSYNC, even if
3343 * there is no other metadata changes being made or are pending.
3344 */
3345 iomap->flags = 0;
3346 if (ext4_inode_datasync_dirty(inode) ||
3347 offset + length > i_size_read(inode))
3348 iomap->flags |= IOMAP_F_DIRTY;
3349
3350 if (map->m_flags & EXT4_MAP_NEW)
3351 iomap->flags |= IOMAP_F_NEW;
3352
3353 iomap->bdev = inode->i_sb->s_bdev;
3354 iomap->dax_dev = EXT4_SB(inode->i_sb)->s_daxdev;
3355 iomap->offset = (u64) map->m_lblk << blkbits;
3356 iomap->length = (u64) map->m_len << blkbits;
3357
Ritesh Harjani63867222020-02-28 14:56:54 +05303358 if ((map->m_flags & EXT4_MAP_MAPPED) &&
3359 !ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS))
3360 iomap->flags |= IOMAP_F_MERGED;
3361
Matthew Bobrowskic8fdfe292019-11-05 22:59:56 +11003362 /*
3363 * Flags passed to ext4_map_blocks() for direct I/O writes can result
3364 * in m_flags having both EXT4_MAP_MAPPED and EXT4_MAP_UNWRITTEN bits
3365 * set. In order for any allocated unwritten extents to be converted
3366 * into written extents correctly within the ->end_io() handler, we
3367 * need to ensure that the iomap->type is set appropriately. Hence, the
3368 * reason why we need to check whether the EXT4_MAP_UNWRITTEN bit has
3369 * been set first.
3370 */
3371 if (map->m_flags & EXT4_MAP_UNWRITTEN) {
3372 iomap->type = IOMAP_UNWRITTEN;
3373 iomap->addr = (u64) map->m_pblk << blkbits;
3374 } else if (map->m_flags & EXT4_MAP_MAPPED) {
3375 iomap->type = IOMAP_MAPPED;
3376 iomap->addr = (u64) map->m_pblk << blkbits;
3377 } else {
3378 iomap->type = IOMAP_HOLE;
3379 iomap->addr = IOMAP_NULL_ADDR;
3380 }
3381}
3382
Matthew Bobrowskif063db52019-11-05 23:00:14 +11003383static int ext4_iomap_alloc(struct inode *inode, struct ext4_map_blocks *map,
3384 unsigned int flags)
3385{
3386 handle_t *handle;
Matthew Bobrowski378f32b2019-11-05 23:02:39 +11003387 u8 blkbits = inode->i_blkbits;
3388 int ret, dio_credits, m_flags = 0, retries = 0;
Matthew Bobrowskif063db52019-11-05 23:00:14 +11003389
3390 /*
3391 * Trim the mapping request to the maximum value that we can map at
3392 * once for direct I/O.
3393 */
3394 if (map->m_len > DIO_MAX_BLOCKS)
3395 map->m_len = DIO_MAX_BLOCKS;
3396 dio_credits = ext4_chunk_trans_blocks(inode, map->m_len);
3397
3398retry:
3399 /*
3400 * Either we allocate blocks and then don't get an unwritten extent, so
3401 * in that case we have reserved enough credits. Or, the blocks are
3402 * already allocated and unwritten. In that case, the extent conversion
3403 * fits into the credits as well.
3404 */
3405 handle = ext4_journal_start(inode, EXT4_HT_MAP_BLOCKS, dio_credits);
3406 if (IS_ERR(handle))
3407 return PTR_ERR(handle);
3408
Matthew Bobrowski378f32b2019-11-05 23:02:39 +11003409 /*
3410 * DAX and direct I/O are the only two operations that are currently
3411 * supported with IOMAP_WRITE.
3412 */
3413 WARN_ON(!IS_DAX(inode) && !(flags & IOMAP_DIRECT));
3414 if (IS_DAX(inode))
3415 m_flags = EXT4_GET_BLOCKS_CREATE_ZERO;
3416 /*
3417 * We use i_size instead of i_disksize here because delalloc writeback
3418 * can complete at any point during the I/O and subsequently push the
3419 * i_disksize out to i_size. This could be beyond where direct I/O is
3420 * happening and thus expose allocated blocks to direct I/O reads.
3421 */
3422 else if ((map->m_lblk * (1 << blkbits)) >= i_size_read(inode))
3423 m_flags = EXT4_GET_BLOCKS_CREATE;
3424 else if (ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS))
3425 m_flags = EXT4_GET_BLOCKS_IO_CREATE_EXT;
3426
3427 ret = ext4_map_blocks(handle, inode, map, m_flags);
3428
3429 /*
3430 * We cannot fill holes in indirect tree based inodes as that could
3431 * expose stale data in the case of a crash. Use the magic error code
3432 * to fallback to buffered I/O.
3433 */
3434 if (!m_flags && !ret)
3435 ret = -ENOTBLK;
Matthew Bobrowskif063db52019-11-05 23:00:14 +11003436
Matthew Bobrowskif063db52019-11-05 23:00:14 +11003437 ext4_journal_stop(handle);
3438 if (ret == -ENOSPC && ext4_should_retry_alloc(inode->i_sb, &retries))
3439 goto retry;
3440
3441 return ret;
3442}
3443
3444
Jan Kara364443c2016-11-20 17:36:06 -05003445static int ext4_iomap_begin(struct inode *inode, loff_t offset, loff_t length,
Goldwyn Rodriguesc039b992019-10-18 16:44:10 -07003446 unsigned flags, struct iomap *iomap, struct iomap *srcmap)
Jan Kara364443c2016-11-20 17:36:06 -05003447{
Jan Kara364443c2016-11-20 17:36:06 -05003448 int ret;
Matthew Bobrowski09edf4d2019-11-05 23:03:31 +11003449 struct ext4_map_blocks map;
3450 u8 blkbits = inode->i_blkbits;
Jan Kara364443c2016-11-20 17:36:06 -05003451
Theodore Ts'obcd8e912018-09-01 12:45:04 -04003452 if ((offset >> blkbits) > EXT4_MAX_LOGICAL_BLOCK)
3453 return -EINVAL;
Andreas Gruenbacher7046ae32017-10-01 17:57:54 -04003454
Matthew Bobrowski09edf4d2019-11-05 23:03:31 +11003455 if (WARN_ON_ONCE(ext4_has_inline_data(inode)))
3456 return -ERANGE;
Jan Kara364443c2016-11-20 17:36:06 -05003457
Matthew Bobrowski09edf4d2019-11-05 23:03:31 +11003458 /*
3459 * Calculate the first and last logical blocks respectively.
3460 */
3461 map.m_lblk = offset >> blkbits;
3462 map.m_len = min_t(loff_t, (offset + length - 1) >> blkbits,
3463 EXT4_MAX_LOGICAL_BLOCK) - map.m_lblk + 1;
Jan Kara364443c2016-11-20 17:36:06 -05003464
Ritesh Harjani9faac622020-09-18 10:36:35 +05303465 if (flags & IOMAP_WRITE) {
3466 /*
3467 * We check here if the blocks are already allocated, then we
3468 * don't need to start a journal txn and we can directly return
3469 * the mapping information. This could boost performance
3470 * especially in multi-threaded overwrite requests.
3471 */
3472 if (offset + length <= i_size_read(inode)) {
3473 ret = ext4_map_blocks(NULL, inode, &map, 0);
3474 if (ret > 0 && (map.m_flags & EXT4_MAP_MAPPED))
3475 goto out;
3476 }
Matthew Bobrowskif063db52019-11-05 23:00:14 +11003477 ret = ext4_iomap_alloc(inode, &map, flags);
Ritesh Harjani9faac622020-09-18 10:36:35 +05303478 } else {
Jan Kara776722e2016-11-20 18:09:11 -05003479 ret = ext4_map_blocks(NULL, inode, &map, 0);
Ritesh Harjani9faac622020-09-18 10:36:35 +05303480 }
Christoph Hellwig545052e2017-10-01 17:58:54 -04003481
Matthew Bobrowskif063db52019-11-05 23:00:14 +11003482 if (ret < 0)
3483 return ret;
Ritesh Harjani9faac622020-09-18 10:36:35 +05303484out:
Matthew Bobrowskic8fdfe292019-11-05 22:59:56 +11003485 ext4_set_iomap(inode, iomap, &map, offset, length);
Christoph Hellwig545052e2017-10-01 17:58:54 -04003486
Jan Kara364443c2016-11-20 17:36:06 -05003487 return 0;
3488}
3489
Jan Kara8cd115b2019-12-18 18:44:33 +01003490static int ext4_iomap_overwrite_begin(struct inode *inode, loff_t offset,
3491 loff_t length, unsigned flags, struct iomap *iomap,
3492 struct iomap *srcmap)
3493{
3494 int ret;
3495
3496 /*
3497 * Even for writes we don't need to allocate blocks, so just pretend
3498 * we are reading to save overhead of starting a transaction.
3499 */
3500 flags &= ~IOMAP_WRITE;
3501 ret = ext4_iomap_begin(inode, offset, length, flags, iomap, srcmap);
3502 WARN_ON_ONCE(iomap->type != IOMAP_MAPPED);
3503 return ret;
3504}
3505
Jan Kara776722e2016-11-20 18:09:11 -05003506static int ext4_iomap_end(struct inode *inode, loff_t offset, loff_t length,
3507 ssize_t written, unsigned flags, struct iomap *iomap)
3508{
Jan Kara776722e2016-11-20 18:09:11 -05003509 /*
Matthew Bobrowski378f32b2019-11-05 23:02:39 +11003510 * Check to see whether an error occurred while writing out the data to
3511 * the allocated blocks. If so, return the magic error code so that we
3512 * fallback to buffered I/O and attempt to complete the remainder of
3513 * the I/O. Any blocks that may have been allocated in preparation for
3514 * the direct I/O will be reused during buffered I/O.
Jan Kara776722e2016-11-20 18:09:11 -05003515 */
Matthew Bobrowski378f32b2019-11-05 23:02:39 +11003516 if (flags & (IOMAP_WRITE | IOMAP_DIRECT) && written == 0)
3517 return -ENOTBLK;
Jan Kara776722e2016-11-20 18:09:11 -05003518
Matthew Bobrowski569342d2019-11-05 23:01:51 +11003519 return 0;
Jan Kara776722e2016-11-20 18:09:11 -05003520}
3521
Christoph Hellwig8ff6daa2017-01-27 23:20:26 -08003522const struct iomap_ops ext4_iomap_ops = {
Jan Kara364443c2016-11-20 17:36:06 -05003523 .iomap_begin = ext4_iomap_begin,
Jan Kara776722e2016-11-20 18:09:11 -05003524 .iomap_end = ext4_iomap_end,
Jan Kara364443c2016-11-20 17:36:06 -05003525};
3526
Jan Kara8cd115b2019-12-18 18:44:33 +01003527const struct iomap_ops ext4_iomap_overwrite_ops = {
3528 .iomap_begin = ext4_iomap_overwrite_begin,
3529 .iomap_end = ext4_iomap_end,
3530};
3531
Matthew Bobrowski09edf4d2019-11-05 23:03:31 +11003532static bool ext4_iomap_is_delalloc(struct inode *inode,
3533 struct ext4_map_blocks *map)
Mingming Cao4c0425f2009-09-28 15:48:41 -04003534{
Matthew Bobrowski09edf4d2019-11-05 23:03:31 +11003535 struct extent_status es;
3536 ext4_lblk_t offset = 0, end = map->m_lblk + map->m_len - 1;
Mingming Cao4c0425f2009-09-28 15:48:41 -04003537
Matthew Bobrowski09edf4d2019-11-05 23:03:31 +11003538 ext4_es_find_extent_range(inode, &ext4_es_is_delayed,
3539 map->m_lblk, end, &es);
Mingming4b70df12009-11-03 14:44:54 -05003540
Matthew Bobrowski09edf4d2019-11-05 23:03:31 +11003541 if (!es.es_len || es.es_lblk > end)
3542 return false;
3543
3544 if (es.es_lblk > map->m_lblk) {
3545 map->m_len = es.es_lblk - map->m_lblk;
3546 return false;
3547 }
3548
3549 offset = map->m_lblk - es.es_lblk;
3550 map->m_len = es.es_len - offset;
3551
3552 return true;
3553}
3554
3555static int ext4_iomap_begin_report(struct inode *inode, loff_t offset,
3556 loff_t length, unsigned int flags,
3557 struct iomap *iomap, struct iomap *srcmap)
3558{
3559 int ret;
3560 bool delalloc = false;
3561 struct ext4_map_blocks map;
3562 u8 blkbits = inode->i_blkbits;
3563
3564 if ((offset >> blkbits) > EXT4_MAX_LOGICAL_BLOCK)
3565 return -EINVAL;
3566
3567 if (ext4_has_inline_data(inode)) {
3568 ret = ext4_inline_data_iomap(inode, iomap);
3569 if (ret != -EAGAIN) {
3570 if (ret == 0 && offset >= iomap->length)
3571 ret = -ENOENT;
3572 return ret;
3573 }
3574 }
Mingming Cao8d5d02e2009-09-28 15:48:29 -04003575
Jan Kara74c66bc2016-02-29 08:36:38 +11003576 /*
Matthew Bobrowski09edf4d2019-11-05 23:03:31 +11003577 * Calculate the first and last logical block respectively.
Jan Kara74c66bc2016-02-29 08:36:38 +11003578 */
Matthew Bobrowski09edf4d2019-11-05 23:03:31 +11003579 map.m_lblk = offset >> blkbits;
3580 map.m_len = min_t(loff_t, (offset + length - 1) >> blkbits,
3581 EXT4_MAX_LOGICAL_BLOCK) - map.m_lblk + 1;
3582
Ritesh Harjanib2c57642020-02-28 14:56:57 +05303583 /*
3584 * Fiemap callers may call for offset beyond s_bitmap_maxbytes.
3585 * So handle it here itself instead of querying ext4_map_blocks().
3586 * Since ext4_map_blocks() will warn about it and will return
3587 * -EIO error.
3588 */
3589 if (!(ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS))) {
3590 struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb);
3591
3592 if (offset >= sbi->s_bitmap_maxbytes) {
3593 map.m_flags = 0;
3594 goto set_iomap;
3595 }
3596 }
3597
Matthew Bobrowski09edf4d2019-11-05 23:03:31 +11003598 ret = ext4_map_blocks(NULL, inode, &map, 0);
3599 if (ret < 0)
3600 return ret;
3601 if (ret == 0)
3602 delalloc = ext4_iomap_is_delalloc(inode, &map);
3603
Ritesh Harjanib2c57642020-02-28 14:56:57 +05303604set_iomap:
Matthew Bobrowski09edf4d2019-11-05 23:03:31 +11003605 ext4_set_iomap(inode, iomap, &map, offset, length);
3606 if (delalloc && iomap->type == IOMAP_HOLE)
3607 iomap->type = IOMAP_DELALLOC;
Christoph Hellwig187372a2016-02-08 14:40:51 +11003608
3609 return 0;
Mingming Cao4c0425f2009-09-28 15:48:41 -04003610}
Jiaying Zhangc7064ef2010-03-02 13:28:44 -05003611
Matthew Bobrowski09edf4d2019-11-05 23:03:31 +11003612const struct iomap_ops ext4_iomap_report_ops = {
3613 .iomap_begin = ext4_iomap_begin_report,
3614};
Mingming Cao4c0425f2009-09-28 15:48:41 -04003615
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003616/*
Mingming Cao617ba132006-10-11 01:20:53 -07003617 * Pages can be marked dirty completely asynchronously from ext4's journalling
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003618 * activity. By filemap_sync_pte(), try_to_unmap_one(), etc. We cannot do
3619 * much here because ->set_page_dirty is called under VFS locks. The page is
3620 * not necessarily locked.
3621 *
3622 * We cannot just dirty the page and leave attached buffers clean, because the
3623 * buffers' dirty state is "definitive". We cannot just set the buffers dirty
3624 * or jbddirty because all the journalling code will explode.
3625 *
3626 * So what we do is to mark the page "pending dirty" and next time writepage
3627 * is called, propagate that into the buffers appropriately.
3628 */
Mingming Cao617ba132006-10-11 01:20:53 -07003629static int ext4_journalled_set_page_dirty(struct page *page)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003630{
3631 SetPageChecked(page);
3632 return __set_page_dirty_nobuffers(page);
3633}
3634
Jan Kara6dcc6932016-12-01 11:46:40 -05003635static int ext4_set_page_dirty(struct page *page)
3636{
3637 WARN_ON_ONCE(!PageLocked(page) && !PageDirty(page));
3638 WARN_ON_ONCE(!page_has_buffers(page));
3639 return __set_page_dirty_buffers(page);
3640}
3641
Ritesh Harjani0e6895b2020-09-04 14:46:53 +05303642static int ext4_iomap_swap_activate(struct swap_info_struct *sis,
3643 struct file *file, sector_t *span)
3644{
3645 return iomap_swapfile_activate(sis, file, span,
3646 &ext4_iomap_report_ops);
3647}
3648
Theodore Ts'o74d553a2013-04-03 12:39:17 -04003649static const struct address_space_operations ext4_aops = {
Hisashi Hifumi8ab22b92008-07-28 15:46:36 -07003650 .readpage = ext4_readpage,
Matthew Wilcox (Oracle)6311f91f2020-06-01 21:47:16 -07003651 .readahead = ext4_readahead,
Aneesh Kumar K.V43ce1d22009-06-14 17:58:45 -04003652 .writepage = ext4_writepage,
Theodore Ts'o20970ba2013-06-06 14:00:46 -04003653 .writepages = ext4_writepages,
Hisashi Hifumi8ab22b92008-07-28 15:46:36 -07003654 .write_begin = ext4_write_begin,
Theodore Ts'o74d553a2013-04-03 12:39:17 -04003655 .write_end = ext4_write_end,
Jan Kara6dcc6932016-12-01 11:46:40 -05003656 .set_page_dirty = ext4_set_page_dirty,
Hisashi Hifumi8ab22b92008-07-28 15:46:36 -07003657 .bmap = ext4_bmap,
3658 .invalidatepage = ext4_invalidatepage,
3659 .releasepage = ext4_releasepage,
Matthew Bobrowski378f32b2019-11-05 23:02:39 +11003660 .direct_IO = noop_direct_IO,
Hisashi Hifumi8ab22b92008-07-28 15:46:36 -07003661 .migratepage = buffer_migrate_page,
3662 .is_partially_uptodate = block_is_partially_uptodate,
Andi Kleenaa261f52009-09-16 11:50:16 +02003663 .error_remove_page = generic_error_remove_page,
Ritesh Harjani0e6895b2020-09-04 14:46:53 +05303664 .swap_activate = ext4_iomap_swap_activate,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003665};
3666
Mingming Cao617ba132006-10-11 01:20:53 -07003667static const struct address_space_operations ext4_journalled_aops = {
Hisashi Hifumi8ab22b92008-07-28 15:46:36 -07003668 .readpage = ext4_readpage,
Matthew Wilcox (Oracle)6311f91f2020-06-01 21:47:16 -07003669 .readahead = ext4_readahead,
Aneesh Kumar K.V43ce1d22009-06-14 17:58:45 -04003670 .writepage = ext4_writepage,
Theodore Ts'o20970ba2013-06-06 14:00:46 -04003671 .writepages = ext4_writepages,
Hisashi Hifumi8ab22b92008-07-28 15:46:36 -07003672 .write_begin = ext4_write_begin,
3673 .write_end = ext4_journalled_write_end,
3674 .set_page_dirty = ext4_journalled_set_page_dirty,
3675 .bmap = ext4_bmap,
Jan Kara4520fb32012-12-25 13:28:54 -05003676 .invalidatepage = ext4_journalled_invalidatepage,
Hisashi Hifumi8ab22b92008-07-28 15:46:36 -07003677 .releasepage = ext4_releasepage,
Matthew Bobrowski378f32b2019-11-05 23:02:39 +11003678 .direct_IO = noop_direct_IO,
Hisashi Hifumi8ab22b92008-07-28 15:46:36 -07003679 .is_partially_uptodate = block_is_partially_uptodate,
Andi Kleenaa261f52009-09-16 11:50:16 +02003680 .error_remove_page = generic_error_remove_page,
Ritesh Harjani0e6895b2020-09-04 14:46:53 +05303681 .swap_activate = ext4_iomap_swap_activate,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003682};
3683
Alex Tomas64769242008-07-11 19:27:31 -04003684static const struct address_space_operations ext4_da_aops = {
Hisashi Hifumi8ab22b92008-07-28 15:46:36 -07003685 .readpage = ext4_readpage,
Matthew Wilcox (Oracle)6311f91f2020-06-01 21:47:16 -07003686 .readahead = ext4_readahead,
Aneesh Kumar K.V43ce1d22009-06-14 17:58:45 -04003687 .writepage = ext4_writepage,
Theodore Ts'o20970ba2013-06-06 14:00:46 -04003688 .writepages = ext4_writepages,
Hisashi Hifumi8ab22b92008-07-28 15:46:36 -07003689 .write_begin = ext4_da_write_begin,
3690 .write_end = ext4_da_write_end,
Jan Kara6dcc6932016-12-01 11:46:40 -05003691 .set_page_dirty = ext4_set_page_dirty,
Hisashi Hifumi8ab22b92008-07-28 15:46:36 -07003692 .bmap = ext4_bmap,
Eric Whitney8fcc3a52019-08-22 23:22:14 -04003693 .invalidatepage = ext4_invalidatepage,
Hisashi Hifumi8ab22b92008-07-28 15:46:36 -07003694 .releasepage = ext4_releasepage,
Matthew Bobrowski378f32b2019-11-05 23:02:39 +11003695 .direct_IO = noop_direct_IO,
Hisashi Hifumi8ab22b92008-07-28 15:46:36 -07003696 .migratepage = buffer_migrate_page,
3697 .is_partially_uptodate = block_is_partially_uptodate,
Andi Kleenaa261f52009-09-16 11:50:16 +02003698 .error_remove_page = generic_error_remove_page,
Ritesh Harjani0e6895b2020-09-04 14:46:53 +05303699 .swap_activate = ext4_iomap_swap_activate,
Alex Tomas64769242008-07-11 19:27:31 -04003700};
3701
Dan Williams5f0663b2017-12-21 12:25:11 -08003702static const struct address_space_operations ext4_dax_aops = {
3703 .writepages = ext4_dax_writepages,
3704 .direct_IO = noop_direct_IO,
3705 .set_page_dirty = noop_set_page_dirty,
Toshi Kani94dbb632018-09-15 21:23:41 -04003706 .bmap = ext4_bmap,
Dan Williams5f0663b2017-12-21 12:25:11 -08003707 .invalidatepage = noop_invalidatepage,
Ritesh Harjani0e6895b2020-09-04 14:46:53 +05303708 .swap_activate = ext4_iomap_swap_activate,
Dan Williams5f0663b2017-12-21 12:25:11 -08003709};
3710
Mingming Cao617ba132006-10-11 01:20:53 -07003711void ext4_set_aops(struct inode *inode)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003712{
Lukas Czerner3d2b1582012-02-20 17:53:00 -05003713 switch (ext4_inode_journal_mode(inode)) {
3714 case EXT4_INODE_ORDERED_DATA_MODE:
Lukas Czerner3d2b1582012-02-20 17:53:00 -05003715 case EXT4_INODE_WRITEBACK_DATA_MODE:
Lukas Czerner3d2b1582012-02-20 17:53:00 -05003716 break;
3717 case EXT4_INODE_JOURNAL_DATA_MODE:
Mingming Cao617ba132006-10-11 01:20:53 -07003718 inode->i_mapping->a_ops = &ext4_journalled_aops;
Theodore Ts'o74d553a2013-04-03 12:39:17 -04003719 return;
Lukas Czerner3d2b1582012-02-20 17:53:00 -05003720 default:
3721 BUG();
3722 }
Dan Williams5f0663b2017-12-21 12:25:11 -08003723 if (IS_DAX(inode))
3724 inode->i_mapping->a_ops = &ext4_dax_aops;
3725 else if (test_opt(inode->i_sb, DELALLOC))
Theodore Ts'o74d553a2013-04-03 12:39:17 -04003726 inode->i_mapping->a_ops = &ext4_da_aops;
3727 else
3728 inode->i_mapping->a_ops = &ext4_aops;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003729}
3730
Ross Zwisler923ae0f2015-02-16 15:59:38 -08003731static int __ext4_block_zero_page_range(handle_t *handle,
Lukas Czernerd863dc32013-05-27 23:32:35 -04003732 struct address_space *mapping, loff_t from, loff_t length)
3733{
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03003734 ext4_fsblk_t index = from >> PAGE_SHIFT;
3735 unsigned offset = from & (PAGE_SIZE-1);
Ross Zwisler923ae0f2015-02-16 15:59:38 -08003736 unsigned blocksize, pos;
Lukas Czernerd863dc32013-05-27 23:32:35 -04003737 ext4_lblk_t iblock;
3738 struct inode *inode = mapping->host;
3739 struct buffer_head *bh;
3740 struct page *page;
3741 int err = 0;
3742
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03003743 page = find_or_create_page(mapping, from >> PAGE_SHIFT,
Michal Hockoc62d2552015-11-06 16:28:49 -08003744 mapping_gfp_constraint(mapping, ~__GFP_FS));
Lukas Czernerd863dc32013-05-27 23:32:35 -04003745 if (!page)
3746 return -ENOMEM;
3747
3748 blocksize = inode->i_sb->s_blocksize;
Lukas Czernerd863dc32013-05-27 23:32:35 -04003749
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03003750 iblock = index << (PAGE_SHIFT - inode->i_sb->s_blocksize_bits);
Lukas Czernerd863dc32013-05-27 23:32:35 -04003751
3752 if (!page_has_buffers(page))
3753 create_empty_buffers(page, blocksize, 0);
3754
3755 /* Find the buffer that contains "offset" */
3756 bh = page_buffers(page);
3757 pos = blocksize;
3758 while (offset >= pos) {
3759 bh = bh->b_this_page;
3760 iblock++;
3761 pos += blocksize;
3762 }
Lukas Czernerd863dc32013-05-27 23:32:35 -04003763 if (buffer_freed(bh)) {
3764 BUFFER_TRACE(bh, "freed: skip");
3765 goto unlock;
3766 }
Lukas Czernerd863dc32013-05-27 23:32:35 -04003767 if (!buffer_mapped(bh)) {
3768 BUFFER_TRACE(bh, "unmapped");
3769 ext4_get_block(inode, iblock, bh, 0);
3770 /* unmapped? It's a hole - nothing to do */
3771 if (!buffer_mapped(bh)) {
3772 BUFFER_TRACE(bh, "still unmapped");
3773 goto unlock;
3774 }
3775 }
3776
3777 /* Ok, it's mapped. Make sure it's up-to-date */
3778 if (PageUptodate(page))
3779 set_buffer_uptodate(bh);
3780
3781 if (!buffer_uptodate(bh)) {
zhangyi (F)2d069c02020-09-24 15:33:33 +08003782 err = ext4_read_bh_lock(bh, 0, true);
3783 if (err)
Lukas Czernerd863dc32013-05-27 23:32:35 -04003784 goto unlock;
Eric Biggers4f74d152020-07-02 01:56:07 +00003785 if (fscrypt_inode_uses_fs_layer_crypto(inode)) {
Michael Halcrowc9c74292015-04-12 00:56:10 -04003786 /* We expect the key to be set. */
Jaegeuk Kima7550b32016-07-10 14:01:03 -04003787 BUG_ON(!fscrypt_has_encryption_key(inode));
Eric Biggers834f1562019-12-26 09:41:05 -06003788 err = fscrypt_decrypt_pagecache_blocks(page, blocksize,
3789 bh_offset(bh));
3790 if (err) {
3791 clear_buffer_uptodate(bh);
3792 goto unlock;
3793 }
Michael Halcrowc9c74292015-04-12 00:56:10 -04003794 }
Lukas Czernerd863dc32013-05-27 23:32:35 -04003795 }
Lukas Czernerd863dc32013-05-27 23:32:35 -04003796 if (ext4_should_journal_data(inode)) {
3797 BUFFER_TRACE(bh, "get write access");
3798 err = ext4_journal_get_write_access(handle, bh);
3799 if (err)
3800 goto unlock;
3801 }
Lukas Czernerd863dc32013-05-27 23:32:35 -04003802 zero_user(page, offset, length);
Lukas Czernerd863dc32013-05-27 23:32:35 -04003803 BUFFER_TRACE(bh, "zeroed end of block");
3804
Lukas Czernerd863dc32013-05-27 23:32:35 -04003805 if (ext4_should_journal_data(inode)) {
3806 err = ext4_handle_dirty_metadata(handle, inode, bh);
Lukas Czerner0713ed02013-05-27 23:32:35 -04003807 } else {
jon ernst353eefd2013-07-01 08:12:39 -04003808 err = 0;
Lukas Czernerd863dc32013-05-27 23:32:35 -04003809 mark_buffer_dirty(bh);
Jan Kara3957ef52016-04-24 00:56:05 -04003810 if (ext4_should_order_data(inode))
Ross Zwisler73131fb2019-06-20 17:26:26 -04003811 err = ext4_jbd2_inode_add_write(handle, inode, from,
3812 length);
Lukas Czerner0713ed02013-05-27 23:32:35 -04003813 }
Lukas Czernerd863dc32013-05-27 23:32:35 -04003814
3815unlock:
3816 unlock_page(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03003817 put_page(page);
Lukas Czernerd863dc32013-05-27 23:32:35 -04003818 return err;
3819}
3820
Matthew Wilcox94350ab2014-03-24 15:09:16 -04003821/*
Ross Zwisler923ae0f2015-02-16 15:59:38 -08003822 * ext4_block_zero_page_range() zeros out a mapping of length 'length'
3823 * starting from file offset 'from'. The range to be zero'd must
3824 * be contained with in one block. If the specified range exceeds
3825 * the end of the block it will be shortened to end of the block
3826 * that cooresponds to 'from'
3827 */
3828static int ext4_block_zero_page_range(handle_t *handle,
3829 struct address_space *mapping, loff_t from, loff_t length)
3830{
3831 struct inode *inode = mapping->host;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03003832 unsigned offset = from & (PAGE_SIZE-1);
Ross Zwisler923ae0f2015-02-16 15:59:38 -08003833 unsigned blocksize = inode->i_sb->s_blocksize;
3834 unsigned max = blocksize - (offset & (blocksize - 1));
3835
3836 /*
3837 * correct length if it does not fall between
3838 * 'from' and the end of the block
3839 */
3840 if (length > max || length < 0)
3841 length = max;
3842
Jan Kara47e69352016-11-20 18:08:05 -05003843 if (IS_DAX(inode)) {
3844 return iomap_zero_range(inode, from, length, NULL,
3845 &ext4_iomap_ops);
3846 }
Ross Zwisler923ae0f2015-02-16 15:59:38 -08003847 return __ext4_block_zero_page_range(handle, mapping, from, length);
3848}
3849
3850/*
Matthew Wilcox94350ab2014-03-24 15:09:16 -04003851 * ext4_block_truncate_page() zeroes out a mapping from file offset `from'
3852 * up to the end of the block which corresponds to `from'.
3853 * This required during truncate. We need to physically zero the tail end
3854 * of that block so it doesn't yield old data if the file is later grown.
3855 */
Stephen Hemmingerc1978552014-05-12 10:50:23 -04003856static int ext4_block_truncate_page(handle_t *handle,
Matthew Wilcox94350ab2014-03-24 15:09:16 -04003857 struct address_space *mapping, loff_t from)
3858{
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03003859 unsigned offset = from & (PAGE_SIZE-1);
Matthew Wilcox94350ab2014-03-24 15:09:16 -04003860 unsigned length;
3861 unsigned blocksize;
3862 struct inode *inode = mapping->host;
3863
Theodore Ts'o0d068632017-02-14 11:31:15 -05003864 /* If we are processing an encrypted inode during orphan list handling */
Chandan Rajendra592ddec2018-12-12 15:20:10 +05303865 if (IS_ENCRYPTED(inode) && !fscrypt_has_encryption_key(inode))
Theodore Ts'o0d068632017-02-14 11:31:15 -05003866 return 0;
3867
Matthew Wilcox94350ab2014-03-24 15:09:16 -04003868 blocksize = inode->i_sb->s_blocksize;
3869 length = blocksize - (offset & (blocksize - 1));
3870
3871 return ext4_block_zero_page_range(handle, mapping, from, length);
3872}
3873
Lukas Czernera87dd182013-05-27 23:32:35 -04003874int ext4_zero_partial_blocks(handle_t *handle, struct inode *inode,
3875 loff_t lstart, loff_t length)
3876{
3877 struct super_block *sb = inode->i_sb;
3878 struct address_space *mapping = inode->i_mapping;
Lukas Czernere1be3a92013-07-01 08:12:39 -04003879 unsigned partial_start, partial_end;
Lukas Czernera87dd182013-05-27 23:32:35 -04003880 ext4_fsblk_t start, end;
3881 loff_t byte_end = (lstart + length - 1);
3882 int err = 0;
3883
Lukas Czernere1be3a92013-07-01 08:12:39 -04003884 partial_start = lstart & (sb->s_blocksize - 1);
3885 partial_end = byte_end & (sb->s_blocksize - 1);
3886
Lukas Czernera87dd182013-05-27 23:32:35 -04003887 start = lstart >> sb->s_blocksize_bits;
3888 end = byte_end >> sb->s_blocksize_bits;
3889
3890 /* Handle partial zero within the single block */
Lukas Czernere1be3a92013-07-01 08:12:39 -04003891 if (start == end &&
3892 (partial_start || (partial_end != sb->s_blocksize - 1))) {
Lukas Czernera87dd182013-05-27 23:32:35 -04003893 err = ext4_block_zero_page_range(handle, mapping,
3894 lstart, length);
3895 return err;
3896 }
3897 /* Handle partial zero out on the start of the range */
Lukas Czernere1be3a92013-07-01 08:12:39 -04003898 if (partial_start) {
Lukas Czernera87dd182013-05-27 23:32:35 -04003899 err = ext4_block_zero_page_range(handle, mapping,
3900 lstart, sb->s_blocksize);
3901 if (err)
3902 return err;
3903 }
3904 /* Handle partial zero out on the end of the range */
Lukas Czernere1be3a92013-07-01 08:12:39 -04003905 if (partial_end != sb->s_blocksize - 1)
Lukas Czernera87dd182013-05-27 23:32:35 -04003906 err = ext4_block_zero_page_range(handle, mapping,
Lukas Czernere1be3a92013-07-01 08:12:39 -04003907 byte_end - partial_end,
3908 partial_end + 1);
Lukas Czernera87dd182013-05-27 23:32:35 -04003909 return err;
3910}
3911
Duane Griffin91ef4ca2008-07-11 19:27:31 -04003912int ext4_can_truncate(struct inode *inode)
3913{
Duane Griffin91ef4ca2008-07-11 19:27:31 -04003914 if (S_ISREG(inode->i_mode))
3915 return 1;
3916 if (S_ISDIR(inode->i_mode))
3917 return 1;
3918 if (S_ISLNK(inode->i_mode))
3919 return !ext4_inode_is_fast_symlink(inode);
3920 return 0;
3921}
3922
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003923/*
Jan Kara01127842015-12-07 14:34:49 -05003924 * We have to make sure i_disksize gets properly updated before we truncate
3925 * page cache due to hole punching or zero range. Otherwise i_disksize update
3926 * can get lost as it may have been postponed to submission of writeback but
3927 * that will never happen after we truncate page cache.
3928 */
3929int ext4_update_disksize_before_punch(struct inode *inode, loff_t offset,
3930 loff_t len)
3931{
3932 handle_t *handle;
Harshad Shirwadkar4209ae12020-04-26 18:34:37 -07003933 int ret;
3934
Jan Kara01127842015-12-07 14:34:49 -05003935 loff_t size = i_size_read(inode);
3936
Al Viro59551022016-01-22 15:40:57 -05003937 WARN_ON(!inode_is_locked(inode));
Jan Kara01127842015-12-07 14:34:49 -05003938 if (offset > size || offset + len < size)
3939 return 0;
3940
3941 if (EXT4_I(inode)->i_disksize >= size)
3942 return 0;
3943
3944 handle = ext4_journal_start(inode, EXT4_HT_MISC, 1);
3945 if (IS_ERR(handle))
3946 return PTR_ERR(handle);
3947 ext4_update_i_disksize(inode, size);
Harshad Shirwadkar4209ae12020-04-26 18:34:37 -07003948 ret = ext4_mark_inode_dirty(handle, inode);
Jan Kara01127842015-12-07 14:34:49 -05003949 ext4_journal_stop(handle);
3950
Harshad Shirwadkar4209ae12020-04-26 18:34:37 -07003951 return ret;
Jan Kara01127842015-12-07 14:34:49 -05003952}
3953
Ross Zwislerb1f38212018-09-11 13:31:16 -04003954static void ext4_wait_dax_page(struct ext4_inode_info *ei)
Ross Zwisler430657b2018-07-29 17:00:22 -04003955{
Ross Zwisler430657b2018-07-29 17:00:22 -04003956 up_write(&ei->i_mmap_sem);
3957 schedule();
3958 down_write(&ei->i_mmap_sem);
3959}
3960
3961int ext4_break_layouts(struct inode *inode)
3962{
3963 struct ext4_inode_info *ei = EXT4_I(inode);
3964 struct page *page;
Ross Zwisler430657b2018-07-29 17:00:22 -04003965 int error;
3966
3967 if (WARN_ON_ONCE(!rwsem_is_locked(&ei->i_mmap_sem)))
3968 return -EINVAL;
3969
3970 do {
Ross Zwisler430657b2018-07-29 17:00:22 -04003971 page = dax_layout_busy_page(inode->i_mapping);
3972 if (!page)
3973 return 0;
3974
3975 error = ___wait_var_event(&page->_refcount,
3976 atomic_read(&page->_refcount) == 1,
3977 TASK_INTERRUPTIBLE, 0, 0,
Ross Zwislerb1f38212018-09-11 13:31:16 -04003978 ext4_wait_dax_page(ei));
3979 } while (error == 0);
Ross Zwisler430657b2018-07-29 17:00:22 -04003980
3981 return error;
3982}
3983
Jan Kara01127842015-12-07 14:34:49 -05003984/*
Ross Zwislercca32b72016-09-22 11:49:38 -04003985 * ext4_punch_hole: punches a hole in a file by releasing the blocks
Allison Hendersona4bb6b62011-05-25 07:41:50 -04003986 * associated with the given offset and length
3987 *
3988 * @inode: File inode
3989 * @offset: The offset where the hole will begin
3990 * @len: The length of the hole
3991 *
Anatol Pomozov4907cb72012-09-01 10:31:09 -07003992 * Returns: 0 on success or negative on failure
Allison Hendersona4bb6b62011-05-25 07:41:50 -04003993 */
3994
Ashish Sangwanaeb28172013-07-01 08:12:38 -04003995int ext4_punch_hole(struct inode *inode, loff_t offset, loff_t length)
Allison Hendersona4bb6b62011-05-25 07:41:50 -04003996{
Theodore Ts'o26a4c0c2013-04-03 12:45:17 -04003997 struct super_block *sb = inode->i_sb;
3998 ext4_lblk_t first_block, stop_block;
3999 struct address_space *mapping = inode->i_mapping;
Lukas Czernera87dd182013-05-27 23:32:35 -04004000 loff_t first_block_offset, last_block_offset;
Theodore Ts'o26a4c0c2013-04-03 12:45:17 -04004001 handle_t *handle;
4002 unsigned int credits;
Harshad Shirwadkar4209ae12020-04-26 18:34:37 -07004003 int ret = 0, ret2 = 0;
Theodore Ts'o26a4c0c2013-04-03 12:45:17 -04004004
Lukas Czernerb8a86842014-03-18 18:05:35 -04004005 trace_ext4_punch_hole(inode, offset, length, 0);
Zheng Liuaaddea82013-01-16 20:21:26 -05004006
Theodore Ts'oc1e82202019-08-23 22:38:00 -04004007 ext4_clear_inode_state(inode, EXT4_STATE_MAY_INLINE_DATA);
4008 if (ext4_has_inline_data(inode)) {
4009 down_write(&EXT4_I(inode)->i_mmap_sem);
4010 ret = ext4_convert_inline_data(inode);
4011 up_write(&EXT4_I(inode)->i_mmap_sem);
4012 if (ret)
4013 return ret;
4014 }
4015
Theodore Ts'o26a4c0c2013-04-03 12:45:17 -04004016 /*
4017 * Write out all dirty pages to avoid race conditions
4018 * Then release them.
4019 */
Ross Zwislercca32b72016-09-22 11:49:38 -04004020 if (mapping_tagged(mapping, PAGECACHE_TAG_DIRTY)) {
Theodore Ts'o26a4c0c2013-04-03 12:45:17 -04004021 ret = filemap_write_and_wait_range(mapping, offset,
4022 offset + length - 1);
4023 if (ret)
4024 return ret;
4025 }
4026
Al Viro59551022016-01-22 15:40:57 -05004027 inode_lock(inode);
Lukas Czerner9ef06ce2014-04-12 09:47:00 -04004028
Theodore Ts'o26a4c0c2013-04-03 12:45:17 -04004029 /* No need to punch hole beyond i_size */
4030 if (offset >= inode->i_size)
4031 goto out_mutex;
4032
4033 /*
4034 * If the hole extends beyond i_size, set the hole
4035 * to end after the page that contains i_size
4036 */
4037 if (offset + length > inode->i_size) {
4038 length = inode->i_size +
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03004039 PAGE_SIZE - (inode->i_size & (PAGE_SIZE - 1)) -
Theodore Ts'o26a4c0c2013-04-03 12:45:17 -04004040 offset;
4041 }
4042
Jan Karaa3612932013-08-16 21:19:41 -04004043 if (offset & (sb->s_blocksize - 1) ||
4044 (offset + length) & (sb->s_blocksize - 1)) {
4045 /*
4046 * Attach jinode to inode for jbd2 if we do any zeroing of
4047 * partial block
4048 */
4049 ret = ext4_inode_attach_jinode(inode);
4050 if (ret < 0)
4051 goto out_mutex;
4052
4053 }
4054
Jan Karaea3d7202015-12-07 14:28:03 -05004055 /* Wait all existing dio workers, newcomers will block on i_mutex */
Jan Karaea3d7202015-12-07 14:28:03 -05004056 inode_dio_wait(inode);
4057
4058 /*
4059 * Prevent page faults from reinstantiating pages we have released from
4060 * page cache.
4061 */
4062 down_write(&EXT4_I(inode)->i_mmap_sem);
Ross Zwisler430657b2018-07-29 17:00:22 -04004063
4064 ret = ext4_break_layouts(inode);
4065 if (ret)
4066 goto out_dio;
4067
Lukas Czernera87dd182013-05-27 23:32:35 -04004068 first_block_offset = round_up(offset, sb->s_blocksize);
4069 last_block_offset = round_down((offset + length), sb->s_blocksize) - 1;
Theodore Ts'o26a4c0c2013-04-03 12:45:17 -04004070
Lukas Czernera87dd182013-05-27 23:32:35 -04004071 /* Now release the pages and zero block aligned part of pages*/
Jan Kara01127842015-12-07 14:34:49 -05004072 if (last_block_offset > first_block_offset) {
4073 ret = ext4_update_disksize_before_punch(inode, offset, length);
4074 if (ret)
4075 goto out_dio;
Lukas Czernera87dd182013-05-27 23:32:35 -04004076 truncate_pagecache_range(inode, first_block_offset,
4077 last_block_offset);
Jan Kara01127842015-12-07 14:34:49 -05004078 }
Theodore Ts'o26a4c0c2013-04-03 12:45:17 -04004079
4080 if (ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS))
4081 credits = ext4_writepage_trans_blocks(inode);
4082 else
4083 credits = ext4_blocks_for_truncate(inode);
4084 handle = ext4_journal_start(inode, EXT4_HT_TRUNCATE, credits);
4085 if (IS_ERR(handle)) {
4086 ret = PTR_ERR(handle);
4087 ext4_std_error(sb, ret);
4088 goto out_dio;
4089 }
4090
Lukas Czernera87dd182013-05-27 23:32:35 -04004091 ret = ext4_zero_partial_blocks(handle, inode, offset,
4092 length);
4093 if (ret)
4094 goto out_stop;
Theodore Ts'o26a4c0c2013-04-03 12:45:17 -04004095
4096 first_block = (offset + sb->s_blocksize - 1) >>
4097 EXT4_BLOCK_SIZE_BITS(sb);
4098 stop_block = (offset + length) >> EXT4_BLOCK_SIZE_BITS(sb);
4099
Lukas Czernereee597a2018-05-13 19:28:35 -04004100 /* If there are blocks to remove, do it */
4101 if (stop_block > first_block) {
Theodore Ts'o26a4c0c2013-04-03 12:45:17 -04004102
Lukas Czernereee597a2018-05-13 19:28:35 -04004103 down_write(&EXT4_I(inode)->i_data_sem);
brookxu27bc4462020-08-17 15:36:15 +08004104 ext4_discard_preallocations(inode, 0);
Theodore Ts'o26a4c0c2013-04-03 12:45:17 -04004105
Lukas Czernereee597a2018-05-13 19:28:35 -04004106 ret = ext4_es_remove_extent(inode, first_block,
4107 stop_block - first_block);
4108 if (ret) {
4109 up_write(&EXT4_I(inode)->i_data_sem);
4110 goto out_stop;
4111 }
4112
4113 if (ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS))
4114 ret = ext4_ext_remove_space(inode, first_block,
4115 stop_block - 1);
4116 else
4117 ret = ext4_ind_remove_space(handle, inode, first_block,
4118 stop_block);
4119
Theodore Ts'o26a4c0c2013-04-03 12:45:17 -04004120 up_write(&EXT4_I(inode)->i_data_sem);
Theodore Ts'o26a4c0c2013-04-03 12:45:17 -04004121 }
Harshad Shirwadkara80f7fc2020-11-05 19:58:53 -08004122 ext4_fc_track_range(handle, inode, first_block, stop_block);
Theodore Ts'o26a4c0c2013-04-03 12:45:17 -04004123 if (IS_SYNC(inode))
4124 ext4_handle_sync(handle);
Maxim Patlasove251f9b2014-02-20 16:58:05 -05004125
Deepa Dinamanieeca7ea2016-11-14 21:40:10 -05004126 inode->i_mtime = inode->i_ctime = current_time(inode);
Harshad Shirwadkar4209ae12020-04-26 18:34:37 -07004127 ret2 = ext4_mark_inode_dirty(handle, inode);
4128 if (unlikely(ret2))
4129 ret = ret2;
Jan Kara67a7d5f2017-05-29 13:24:55 -04004130 if (ret >= 0)
4131 ext4_update_inode_fsync_trans(handle, inode, 1);
Theodore Ts'o26a4c0c2013-04-03 12:45:17 -04004132out_stop:
4133 ext4_journal_stop(handle);
4134out_dio:
Jan Karaea3d7202015-12-07 14:28:03 -05004135 up_write(&EXT4_I(inode)->i_mmap_sem);
Theodore Ts'o26a4c0c2013-04-03 12:45:17 -04004136out_mutex:
Al Viro59551022016-01-22 15:40:57 -05004137 inode_unlock(inode);
Theodore Ts'o26a4c0c2013-04-03 12:45:17 -04004138 return ret;
Allison Hendersona4bb6b62011-05-25 07:41:50 -04004139}
4140
Jan Karaa3612932013-08-16 21:19:41 -04004141int ext4_inode_attach_jinode(struct inode *inode)
4142{
4143 struct ext4_inode_info *ei = EXT4_I(inode);
4144 struct jbd2_inode *jinode;
4145
4146 if (ei->jinode || !EXT4_SB(inode->i_sb)->s_journal)
4147 return 0;
4148
4149 jinode = jbd2_alloc_inode(GFP_KERNEL);
4150 spin_lock(&inode->i_lock);
4151 if (!ei->jinode) {
4152 if (!jinode) {
4153 spin_unlock(&inode->i_lock);
4154 return -ENOMEM;
4155 }
4156 ei->jinode = jinode;
4157 jbd2_journal_init_jbd_inode(ei->jinode, inode);
4158 jinode = NULL;
4159 }
4160 spin_unlock(&inode->i_lock);
4161 if (unlikely(jinode != NULL))
4162 jbd2_free_inode(jinode);
4163 return 0;
4164}
4165
Allison Hendersona4bb6b62011-05-25 07:41:50 -04004166/*
Mingming Cao617ba132006-10-11 01:20:53 -07004167 * ext4_truncate()
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004168 *
Mingming Cao617ba132006-10-11 01:20:53 -07004169 * We block out ext4_get_block() block instantiations across the entire
4170 * transaction, and VFS/VM ensures that ext4_truncate() cannot run
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004171 * simultaneously on behalf of the same inode.
4172 *
Justin P. Mattock42b2aa82011-11-28 20:31:00 -08004173 * As we work through the truncate and commit bits of it to the journal there
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004174 * is one core, guiding principle: the file's tree must always be consistent on
4175 * disk. We must be able to restart the truncate after a crash.
4176 *
4177 * The file's tree may be transiently inconsistent in memory (although it
4178 * probably isn't), but whenever we close off and commit a journal transaction,
4179 * the contents of (the filesystem + the journal) must be consistent and
4180 * restartable. It's pretty simple, really: bottom up, right to left (although
4181 * left-to-right works OK too).
4182 *
4183 * Note that at recovery time, journal replay occurs *before* the restart of
4184 * truncate against the orphan inode list.
4185 *
4186 * The committed inode has the new, desired i_size (which is the same as
Mingming Cao617ba132006-10-11 01:20:53 -07004187 * i_disksize in this case). After a crash, ext4_orphan_cleanup() will see
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004188 * that this inode's truncate did not complete and it will again call
Mingming Cao617ba132006-10-11 01:20:53 -07004189 * ext4_truncate() to have another go. So there will be instantiated blocks
4190 * to the right of the truncation point in a crashed ext4 filesystem. But
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004191 * that's fine - as long as they are linked from the inode, the post-crash
Mingming Cao617ba132006-10-11 01:20:53 -07004192 * ext4_truncate() run will find them and release them.
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004193 */
Theodore Ts'o2c98eb52016-11-13 22:02:26 -05004194int ext4_truncate(struct inode *inode)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004195{
Theodore Ts'o819c4922013-04-03 12:47:17 -04004196 struct ext4_inode_info *ei = EXT4_I(inode);
4197 unsigned int credits;
Harshad Shirwadkar4209ae12020-04-26 18:34:37 -07004198 int err = 0, err2;
Theodore Ts'o819c4922013-04-03 12:47:17 -04004199 handle_t *handle;
4200 struct address_space *mapping = inode->i_mapping;
Theodore Ts'o819c4922013-04-03 12:47:17 -04004201
Theodore Ts'o19b5ef62013-04-03 21:58:52 -04004202 /*
4203 * There is a possibility that we're either freeing the inode
Matthew Wilcoxe04027e2014-03-24 15:15:07 -04004204 * or it's a completely new inode. In those cases we might not
Theodore Ts'o19b5ef62013-04-03 21:58:52 -04004205 * have i_mutex locked because it's not necessary.
4206 */
4207 if (!(inode->i_state & (I_NEW|I_FREEING)))
Al Viro59551022016-01-22 15:40:57 -05004208 WARN_ON(!inode_is_locked(inode));
Jiaying Zhang0562e0b2011-03-21 21:38:05 -04004209 trace_ext4_truncate_enter(inode);
4210
Duane Griffin91ef4ca2008-07-11 19:27:31 -04004211 if (!ext4_can_truncate(inode))
zhengliang9a5d2652020-07-01 16:30:27 +08004212 goto out_trace;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004213
Theodore Ts'o5534fb52009-09-17 09:34:16 -04004214 if (inode->i_size == 0 && !test_opt(inode->i_sb, NO_AUTO_DA_ALLOC))
Theodore Ts'o19f5fb72010-01-24 14:34:07 -05004215 ext4_set_inode_state(inode, EXT4_STATE_DA_ALLOC_CLOSE);
Theodore Ts'o7d8f9f72009-02-24 08:21:14 -05004216
Tao Maaef1c852012-12-10 14:06:02 -05004217 if (ext4_has_inline_data(inode)) {
4218 int has_inline = 1;
4219
Theodore Ts'o01daf942017-01-22 19:35:49 -05004220 err = ext4_inline_data_truncate(inode, &has_inline);
zhengliang9a5d2652020-07-01 16:30:27 +08004221 if (err || has_inline)
4222 goto out_trace;
Tao Maaef1c852012-12-10 14:06:02 -05004223 }
4224
Jan Karaa3612932013-08-16 21:19:41 -04004225 /* If we zero-out tail of the page, we have to create jinode for jbd2 */
4226 if (inode->i_size & (inode->i_sb->s_blocksize - 1)) {
4227 if (ext4_inode_attach_jinode(inode) < 0)
zhengliang9a5d2652020-07-01 16:30:27 +08004228 goto out_trace;
Jan Karaa3612932013-08-16 21:19:41 -04004229 }
4230
Amir Goldsteinff9893d2011-06-27 16:36:31 -04004231 if (ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS))
Theodore Ts'o819c4922013-04-03 12:47:17 -04004232 credits = ext4_writepage_trans_blocks(inode);
Amir Goldsteinff9893d2011-06-27 16:36:31 -04004233 else
Theodore Ts'o819c4922013-04-03 12:47:17 -04004234 credits = ext4_blocks_for_truncate(inode);
4235
4236 handle = ext4_journal_start(inode, EXT4_HT_TRUNCATE, credits);
zhengliang9a5d2652020-07-01 16:30:27 +08004237 if (IS_ERR(handle)) {
4238 err = PTR_ERR(handle);
4239 goto out_trace;
4240 }
Theodore Ts'o819c4922013-04-03 12:47:17 -04004241
Lukas Czernereb3544c2013-05-27 23:32:35 -04004242 if (inode->i_size & (inode->i_sb->s_blocksize - 1))
4243 ext4_block_truncate_page(handle, mapping, inode->i_size);
Theodore Ts'o819c4922013-04-03 12:47:17 -04004244
4245 /*
4246 * We add the inode to the orphan list, so that if this
4247 * truncate spans multiple transactions, and we crash, we will
4248 * resume the truncate when the filesystem recovers. It also
4249 * marks the inode dirty, to catch the new size.
4250 *
4251 * Implication: the file must always be in a sane, consistent
4252 * truncatable state while each transaction commits.
4253 */
Theodore Ts'o2c98eb52016-11-13 22:02:26 -05004254 err = ext4_orphan_add(handle, inode);
4255 if (err)
Theodore Ts'o819c4922013-04-03 12:47:17 -04004256 goto out_stop;
4257
4258 down_write(&EXT4_I(inode)->i_data_sem);
4259
brookxu27bc4462020-08-17 15:36:15 +08004260 ext4_discard_preallocations(inode, 0);
Theodore Ts'o819c4922013-04-03 12:47:17 -04004261
4262 if (ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS))
Theodore Ts'od0abb362016-11-13 22:02:28 -05004263 err = ext4_ext_truncate(handle, inode);
Theodore Ts'o819c4922013-04-03 12:47:17 -04004264 else
4265 ext4_ind_truncate(handle, inode);
4266
4267 up_write(&ei->i_data_sem);
Theodore Ts'od0abb362016-11-13 22:02:28 -05004268 if (err)
4269 goto out_stop;
Theodore Ts'o819c4922013-04-03 12:47:17 -04004270
4271 if (IS_SYNC(inode))
4272 ext4_handle_sync(handle);
4273
4274out_stop:
4275 /*
4276 * If this was a simple ftruncate() and the file will remain alive,
4277 * then we need to clear up the orphan record which we created above.
4278 * However, if this was a real unlink then we were called by
Wang Shilong58d86a52014-11-25 16:17:29 -05004279 * ext4_evict_inode(), and we allow that function to clean up the
Theodore Ts'o819c4922013-04-03 12:47:17 -04004280 * orphan info for us.
4281 */
4282 if (inode->i_nlink)
4283 ext4_orphan_del(handle, inode);
4284
Deepa Dinamanieeca7ea2016-11-14 21:40:10 -05004285 inode->i_mtime = inode->i_ctime = current_time(inode);
Harshad Shirwadkar4209ae12020-04-26 18:34:37 -07004286 err2 = ext4_mark_inode_dirty(handle, inode);
4287 if (unlikely(err2 && !err))
4288 err = err2;
Theodore Ts'o819c4922013-04-03 12:47:17 -04004289 ext4_journal_stop(handle);
Alex Tomasa86c6182006-10-11 01:21:03 -07004290
zhengliang9a5d2652020-07-01 16:30:27 +08004291out_trace:
Jiaying Zhang0562e0b2011-03-21 21:38:05 -04004292 trace_ext4_truncate_exit(inode);
Theodore Ts'o2c98eb52016-11-13 22:02:26 -05004293 return err;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004294}
4295
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004296/*
Mingming Cao617ba132006-10-11 01:20:53 -07004297 * ext4_get_inode_loc returns with an extra refcount against the inode's
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004298 * underlying buffer_head on success. If 'in_mem' is true, we have all
4299 * data in memory that is needed to recreate the on-disk version of this
4300 * inode.
4301 */
Harshad Shirwadkar8016e292020-10-15 13:37:59 -07004302static int __ext4_get_inode_loc(struct super_block *sb, unsigned long ino,
4303 struct ext4_iloc *iloc, int in_mem,
4304 ext4_fsblk_t *ret_block)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004305{
Theodore Ts'o240799c2008-10-09 23:53:47 -04004306 struct ext4_group_desc *gdp;
4307 struct buffer_head *bh;
Theodore Ts'o240799c2008-10-09 23:53:47 -04004308 ext4_fsblk_t block;
Linus Torvalds02f03c42019-09-29 17:59:23 -07004309 struct blk_plug plug;
Theodore Ts'o240799c2008-10-09 23:53:47 -04004310 int inodes_per_block, inode_offset;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004311
Aneesh Kumar K.V3a06d772008-11-22 15:04:59 -05004312 iloc->bh = NULL;
Harshad Shirwadkar8016e292020-10-15 13:37:59 -07004313 if (ino < EXT4_ROOT_INO ||
4314 ino > le32_to_cpu(EXT4_SB(sb)->s_es->s_inodes_count))
Darrick J. Wong6a797d22015-10-17 16:16:04 -04004315 return -EFSCORRUPTED;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004316
Harshad Shirwadkar8016e292020-10-15 13:37:59 -07004317 iloc->block_group = (ino - 1) / EXT4_INODES_PER_GROUP(sb);
Theodore Ts'o240799c2008-10-09 23:53:47 -04004318 gdp = ext4_get_group_desc(sb, iloc->block_group, NULL);
4319 if (!gdp)
4320 return -EIO;
4321
4322 /*
4323 * Figure out the offset within the block group inode table
4324 */
Tao Ma00d09882011-05-09 10:26:41 -04004325 inodes_per_block = EXT4_SB(sb)->s_inodes_per_block;
Harshad Shirwadkar8016e292020-10-15 13:37:59 -07004326 inode_offset = ((ino - 1) %
Theodore Ts'o240799c2008-10-09 23:53:47 -04004327 EXT4_INODES_PER_GROUP(sb));
4328 block = ext4_inode_table(sb, gdp) + (inode_offset / inodes_per_block);
4329 iloc->offset = (inode_offset % inodes_per_block) * EXT4_INODE_SIZE(sb);
4330
4331 bh = sb_getblk(sb, block);
Wang Shilongaebf0242013-01-12 16:28:47 -05004332 if (unlikely(!bh))
Theodore Ts'o860d21e2013-01-12 16:19:36 -05004333 return -ENOMEM;
Theodore Ts'o46f870d62019-11-21 13:09:43 -05004334 if (ext4_simulate_fail(sb, EXT4_SIM_INODE_EIO))
4335 goto simulate_eio;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004336 if (!buffer_uptodate(bh)) {
4337 lock_buffer(bh);
Hidehiro Kawai9c83a922008-07-26 16:39:26 -04004338
zhangyi (F)60c776e2020-09-24 15:33:34 +08004339 if (ext4_buffer_uptodate(bh)) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004340 /* someone brought it uptodate while we waited */
4341 unlock_buffer(bh);
4342 goto has_buffer;
4343 }
4344
4345 /*
4346 * If we have all information of the inode in memory and this
4347 * is the only valid inode in the block, we need not read the
4348 * block.
4349 */
4350 if (in_mem) {
4351 struct buffer_head *bitmap_bh;
Theodore Ts'o240799c2008-10-09 23:53:47 -04004352 int i, start;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004353
Theodore Ts'o240799c2008-10-09 23:53:47 -04004354 start = inode_offset & ~(inodes_per_block - 1);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004355
4356 /* Is the inode bitmap in cache? */
Theodore Ts'o240799c2008-10-09 23:53:47 -04004357 bitmap_bh = sb_getblk(sb, ext4_inode_bitmap(sb, gdp));
Wang Shilongaebf0242013-01-12 16:28:47 -05004358 if (unlikely(!bitmap_bh))
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004359 goto make_io;
4360
4361 /*
4362 * If the inode bitmap isn't in cache then the
4363 * optimisation may end up performing two reads instead
4364 * of one, so skip it.
4365 */
4366 if (!buffer_uptodate(bitmap_bh)) {
4367 brelse(bitmap_bh);
4368 goto make_io;
4369 }
Theodore Ts'o240799c2008-10-09 23:53:47 -04004370 for (i = start; i < start + inodes_per_block; i++) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004371 if (i == inode_offset)
4372 continue;
Mingming Cao617ba132006-10-11 01:20:53 -07004373 if (ext4_test_bit(i, bitmap_bh->b_data))
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004374 break;
4375 }
4376 brelse(bitmap_bh);
Theodore Ts'o240799c2008-10-09 23:53:47 -04004377 if (i == start + inodes_per_block) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004378 /* all other inodes are free, so skip I/O */
4379 memset(bh->b_data, 0, bh->b_size);
4380 set_buffer_uptodate(bh);
4381 unlock_buffer(bh);
4382 goto has_buffer;
4383 }
4384 }
4385
4386make_io:
4387 /*
Theodore Ts'o240799c2008-10-09 23:53:47 -04004388 * If we need to do any I/O, try to pre-readahead extra
4389 * blocks from the inode table.
4390 */
Linus Torvalds02f03c42019-09-29 17:59:23 -07004391 blk_start_plug(&plug);
Theodore Ts'o240799c2008-10-09 23:53:47 -04004392 if (EXT4_SB(sb)->s_inode_readahead_blks) {
4393 ext4_fsblk_t b, end, table;
4394 unsigned num;
Theodore Ts'o0d606e2c2013-04-23 08:59:35 -04004395 __u32 ra_blks = EXT4_SB(sb)->s_inode_readahead_blks;
Theodore Ts'o240799c2008-10-09 23:53:47 -04004396
4397 table = ext4_inode_table(sb, gdp);
Theodore Ts'ob713a5e2009-03-31 09:11:14 -04004398 /* s_inode_readahead_blks is always a power of 2 */
Theodore Ts'o0d606e2c2013-04-23 08:59:35 -04004399 b = block & ~((ext4_fsblk_t) ra_blks - 1);
Theodore Ts'o240799c2008-10-09 23:53:47 -04004400 if (table > b)
4401 b = table;
Theodore Ts'o0d606e2c2013-04-23 08:59:35 -04004402 end = b + ra_blks;
Theodore Ts'o240799c2008-10-09 23:53:47 -04004403 num = EXT4_INODES_PER_GROUP(sb);
Darrick J. Wongfeb0ab32012-04-29 18:45:10 -04004404 if (ext4_has_group_desc_csum(sb))
Aneesh Kumar K.V560671a2009-01-05 22:20:24 -05004405 num -= ext4_itable_unused_count(sb, gdp);
Theodore Ts'o240799c2008-10-09 23:53:47 -04004406 table += num / inodes_per_block;
4407 if (end > table)
4408 end = table;
4409 while (b <= end)
zhangyi (F)5df1d412020-09-24 15:33:35 +08004410 ext4_sb_breadahead_unmovable(sb, b++);
Theodore Ts'o240799c2008-10-09 23:53:47 -04004411 }
4412
4413 /*
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004414 * There are other valid inodes in the buffer, this inode
4415 * has in-inode xattrs, or we don't have this inode in memory.
4416 * Read the block from disk.
4417 */
Harshad Shirwadkar8016e292020-10-15 13:37:59 -07004418 trace_ext4_load_inode(sb, ino);
zhangyi (F)2d069c02020-09-24 15:33:33 +08004419 ext4_read_bh_nowait(bh, REQ_META | REQ_PRIO, NULL);
Linus Torvalds02f03c42019-09-29 17:59:23 -07004420 blk_finish_plug(&plug);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004421 wait_on_buffer(bh);
4422 if (!buffer_uptodate(bh)) {
Theodore Ts'o46f870d62019-11-21 13:09:43 -05004423 simulate_eio:
Harshad Shirwadkar8016e292020-10-15 13:37:59 -07004424 if (ret_block)
4425 *ret_block = block;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004426 brelse(bh);
4427 return -EIO;
4428 }
4429 }
4430has_buffer:
4431 iloc->bh = bh;
4432 return 0;
4433}
4434
Harshad Shirwadkar8016e292020-10-15 13:37:59 -07004435static int __ext4_get_inode_loc_noinmem(struct inode *inode,
4436 struct ext4_iloc *iloc)
4437{
4438 ext4_fsblk_t err_blk;
4439 int ret;
4440
4441 ret = __ext4_get_inode_loc(inode->i_sb, inode->i_ino, iloc, 0,
4442 &err_blk);
4443
4444 if (ret == -EIO)
4445 ext4_error_inode_block(inode, err_blk, EIO,
4446 "unable to read itable block");
4447
4448 return ret;
4449}
4450
Mingming Cao617ba132006-10-11 01:20:53 -07004451int ext4_get_inode_loc(struct inode *inode, struct ext4_iloc *iloc)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004452{
Harshad Shirwadkar8016e292020-10-15 13:37:59 -07004453 ext4_fsblk_t err_blk;
4454 int ret;
4455
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004456 /* We have all inode data except xattrs in memory here. */
Harshad Shirwadkar8016e292020-10-15 13:37:59 -07004457 ret = __ext4_get_inode_loc(inode->i_sb, inode->i_ino, iloc,
4458 !ext4_test_inode_state(inode, EXT4_STATE_XATTR), &err_blk);
4459
4460 if (ret == -EIO)
4461 ext4_error_inode_block(inode, err_blk, EIO,
4462 "unable to read itable block");
4463
4464 return ret;
4465}
4466
4467
4468int ext4_get_fc_inode_loc(struct super_block *sb, unsigned long ino,
4469 struct ext4_iloc *iloc)
4470{
4471 return __ext4_get_inode_loc(sb, ino, iloc, 0, NULL);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004472}
4473
Ira Weinya8ab6d32020-05-28 07:59:58 -07004474static bool ext4_should_enable_dax(struct inode *inode)
Ross Zwisler66425862017-10-12 12:00:59 -04004475{
Ira Weinya8ab6d32020-05-28 07:59:58 -07004476 struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb);
4477
Ira Weiny9cb20f92020-05-28 08:00:00 -07004478 if (test_opt2(inode->i_sb, DAX_NEVER))
Ross Zwisler66425862017-10-12 12:00:59 -04004479 return false;
4480 if (!S_ISREG(inode->i_mode))
4481 return false;
4482 if (ext4_should_journal_data(inode))
4483 return false;
4484 if (ext4_has_inline_data(inode))
4485 return false;
Chandan Rajendra592ddec2018-12-12 15:20:10 +05304486 if (ext4_test_inode_flag(inode, EXT4_INODE_ENCRYPT))
Ross Zwisler66425862017-10-12 12:00:59 -04004487 return false;
Eric Biggersc93d8f82019-07-22 09:26:24 -07004488 if (ext4_test_inode_flag(inode, EXT4_INODE_VERITY))
4489 return false;
Ira Weinya8ab6d32020-05-28 07:59:58 -07004490 if (!test_bit(EXT4_FLAGS_BDEV_IS_DAX, &sbi->s_ext4_flags))
4491 return false;
4492 if (test_opt(inode->i_sb, DAX_ALWAYS))
4493 return true;
4494
Ira Weinyb383a732020-05-28 08:00:02 -07004495 return ext4_test_inode_flag(inode, EXT4_INODE_DAX);
Ross Zwisler66425862017-10-12 12:00:59 -04004496}
4497
Ira Weiny043546e2020-05-28 07:59:59 -07004498void ext4_set_inode_flags(struct inode *inode, bool init)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004499{
Mingming Cao617ba132006-10-11 01:20:53 -07004500 unsigned int flags = EXT4_I(inode)->i_flags;
Theodore Ts'o00a1a052014-03-30 10:20:01 -04004501 unsigned int new_fl = 0;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004502
Ira Weiny043546e2020-05-28 07:59:59 -07004503 WARN_ON_ONCE(IS_DAX(inode) && init);
4504
Mingming Cao617ba132006-10-11 01:20:53 -07004505 if (flags & EXT4_SYNC_FL)
Theodore Ts'o00a1a052014-03-30 10:20:01 -04004506 new_fl |= S_SYNC;
Mingming Cao617ba132006-10-11 01:20:53 -07004507 if (flags & EXT4_APPEND_FL)
Theodore Ts'o00a1a052014-03-30 10:20:01 -04004508 new_fl |= S_APPEND;
Mingming Cao617ba132006-10-11 01:20:53 -07004509 if (flags & EXT4_IMMUTABLE_FL)
Theodore Ts'o00a1a052014-03-30 10:20:01 -04004510 new_fl |= S_IMMUTABLE;
Mingming Cao617ba132006-10-11 01:20:53 -07004511 if (flags & EXT4_NOATIME_FL)
Theodore Ts'o00a1a052014-03-30 10:20:01 -04004512 new_fl |= S_NOATIME;
Mingming Cao617ba132006-10-11 01:20:53 -07004513 if (flags & EXT4_DIRSYNC_FL)
Theodore Ts'o00a1a052014-03-30 10:20:01 -04004514 new_fl |= S_DIRSYNC;
Ira Weiny043546e2020-05-28 07:59:59 -07004515
4516 /* Because of the way inode_set_flags() works we must preserve S_DAX
4517 * here if already set. */
4518 new_fl |= (inode->i_flags & S_DAX);
4519 if (init && ext4_should_enable_dax(inode))
Ross Zwisler923ae0f2015-02-16 15:59:38 -08004520 new_fl |= S_DAX;
Ira Weiny043546e2020-05-28 07:59:59 -07004521
Eric Biggers2ee6a572017-10-09 12:15:35 -07004522 if (flags & EXT4_ENCRYPT_FL)
4523 new_fl |= S_ENCRYPTED;
Gabriel Krisman Bertazib886ee32019-04-25 14:12:08 -04004524 if (flags & EXT4_CASEFOLD_FL)
4525 new_fl |= S_CASEFOLD;
Eric Biggersc93d8f82019-07-22 09:26:24 -07004526 if (flags & EXT4_VERITY_FL)
4527 new_fl |= S_VERITY;
Theodore Ts'o5f16f322014-03-24 14:43:12 -04004528 inode_set_flags(inode, new_fl,
Eric Biggers2ee6a572017-10-09 12:15:35 -07004529 S_SYNC|S_APPEND|S_IMMUTABLE|S_NOATIME|S_DIRSYNC|S_DAX|
Eric Biggersc93d8f82019-07-22 09:26:24 -07004530 S_ENCRYPTED|S_CASEFOLD|S_VERITY);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004531}
4532
Aneesh Kumar K.V0fc1b452008-01-28 23:58:26 -05004533static blkcnt_t ext4_inode_blocks(struct ext4_inode *raw_inode,
Theodore Ts'ode9a55b2009-06-14 17:45:34 -04004534 struct ext4_inode_info *ei)
Aneesh Kumar K.V0fc1b452008-01-28 23:58:26 -05004535{
4536 blkcnt_t i_blocks ;
Aneesh Kumar K.V8180a562008-01-28 23:58:27 -05004537 struct inode *inode = &(ei->vfs_inode);
4538 struct super_block *sb = inode->i_sb;
Aneesh Kumar K.V0fc1b452008-01-28 23:58:26 -05004539
Darrick J. Wonge2b911c2015-10-17 16:18:43 -04004540 if (ext4_has_feature_huge_file(sb)) {
Aneesh Kumar K.V0fc1b452008-01-28 23:58:26 -05004541 /* we are using combined 48 bit field */
4542 i_blocks = ((u64)le16_to_cpu(raw_inode->i_blocks_high)) << 32 |
4543 le32_to_cpu(raw_inode->i_blocks_lo);
Theodore Ts'o07a03822010-06-14 09:54:48 -04004544 if (ext4_test_inode_flag(inode, EXT4_INODE_HUGE_FILE)) {
Aneesh Kumar K.V8180a562008-01-28 23:58:27 -05004545 /* i_blocks represent file system block size */
4546 return i_blocks << (inode->i_blkbits - 9);
4547 } else {
4548 return i_blocks;
4549 }
Aneesh Kumar K.V0fc1b452008-01-28 23:58:26 -05004550 } else {
4551 return le32_to_cpu(raw_inode->i_blocks_lo);
4552 }
4553}
Jan Karaff9ddf72007-07-18 09:24:20 -04004554
Theodore Ts'oeb9b5f02018-05-22 17:14:07 -04004555static inline int ext4_iget_extra_inode(struct inode *inode,
Tao Ma152a7b02012-12-02 11:13:24 -05004556 struct ext4_inode *raw_inode,
4557 struct ext4_inode_info *ei)
4558{
4559 __le32 *magic = (void *)raw_inode +
4560 EXT4_GOOD_OLD_INODE_SIZE + ei->i_extra_isize;
Theodore Ts'oeb9b5f02018-05-22 17:14:07 -04004561
Eric Biggers290ab232016-12-01 14:51:58 -05004562 if (EXT4_GOOD_OLD_INODE_SIZE + ei->i_extra_isize + sizeof(__le32) <=
4563 EXT4_INODE_SIZE(inode->i_sb) &&
4564 *magic == cpu_to_le32(EXT4_XATTR_MAGIC)) {
Tao Ma152a7b02012-12-02 11:13:24 -05004565 ext4_set_inode_state(inode, EXT4_STATE_XATTR);
Theodore Ts'oeb9b5f02018-05-22 17:14:07 -04004566 return ext4_find_inline_data_nolock(inode);
Tao Maf19d5872012-12-10 14:05:51 -05004567 } else
4568 EXT4_I(inode)->i_inline_off = 0;
Theodore Ts'oeb9b5f02018-05-22 17:14:07 -04004569 return 0;
Tao Ma152a7b02012-12-02 11:13:24 -05004570}
4571
Li Xi040cb372016-01-08 16:01:21 -05004572int ext4_get_projid(struct inode *inode, kprojid_t *projid)
4573{
Kaho Ng0b7b7772016-09-05 23:11:58 -04004574 if (!ext4_has_feature_project(inode->i_sb))
Li Xi040cb372016-01-08 16:01:21 -05004575 return -EOPNOTSUPP;
4576 *projid = EXT4_I(inode)->i_projid;
4577 return 0;
4578}
4579
Eryu Guane254d1a2018-05-10 11:55:31 -04004580/*
4581 * ext4 has self-managed i_version for ea inodes, it stores the lower 32bit of
4582 * refcount in i_version, so use raw values if inode has EXT4_EA_INODE_FL flag
4583 * set.
4584 */
4585static inline void ext4_inode_set_iversion_queried(struct inode *inode, u64 val)
4586{
4587 if (unlikely(EXT4_I(inode)->i_flags & EXT4_EA_INODE_FL))
4588 inode_set_iversion_raw(inode, val);
4589 else
4590 inode_set_iversion_queried(inode, val);
4591}
4592static inline u64 ext4_inode_peek_iversion(const struct inode *inode)
4593{
4594 if (unlikely(EXT4_I(inode)->i_flags & EXT4_EA_INODE_FL))
4595 return inode_peek_iversion_raw(inode);
4596 else
4597 return inode_peek_iversion(inode);
4598}
4599
Theodore Ts'o8a363972018-12-19 12:29:13 -05004600struct inode *__ext4_iget(struct super_block *sb, unsigned long ino,
4601 ext4_iget_flags flags, const char *function,
4602 unsigned int line)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004603{
Mingming Cao617ba132006-10-11 01:20:53 -07004604 struct ext4_iloc iloc;
4605 struct ext4_inode *raw_inode;
David Howells1d1fe1e2008-02-07 00:15:37 -08004606 struct ext4_inode_info *ei;
David Howells1d1fe1e2008-02-07 00:15:37 -08004607 struct inode *inode;
Jan Karab436b9b2009-12-08 23:51:10 -05004608 journal_t *journal = EXT4_SB(sb)->s_journal;
David Howells1d1fe1e2008-02-07 00:15:37 -08004609 long ret;
Darrick J. Wong7e6e1ef2016-12-10 09:55:01 -05004610 loff_t size;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004611 int block;
Eric W. Biederman08cefc72012-02-07 15:41:49 -08004612 uid_t i_uid;
4613 gid_t i_gid;
Li Xi040cb372016-01-08 16:01:21 -05004614 projid_t i_projid;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004615
Theodore Ts'o191ce172018-12-31 22:34:31 -05004616 if ((!(flags & EXT4_IGET_SPECIAL) &&
Theodore Ts'o8a363972018-12-19 12:29:13 -05004617 (ino < EXT4_FIRST_INO(sb) && ino != EXT4_ROOT_INO)) ||
4618 (ino < EXT4_ROOT_INO) ||
4619 (ino > le32_to_cpu(EXT4_SB(sb)->s_es->s_inodes_count))) {
4620 if (flags & EXT4_IGET_HANDLE)
4621 return ERR_PTR(-ESTALE);
Jan Kara014c9ca2020-11-27 12:33:57 +01004622 __ext4_error(sb, function, line, false, EFSCORRUPTED, 0,
Theodore Ts'o8a363972018-12-19 12:29:13 -05004623 "inode #%lu: comm %s: iget: illegal inode #",
4624 ino, current->comm);
4625 return ERR_PTR(-EFSCORRUPTED);
4626 }
4627
David Howells1d1fe1e2008-02-07 00:15:37 -08004628 inode = iget_locked(sb, ino);
4629 if (!inode)
4630 return ERR_PTR(-ENOMEM);
4631 if (!(inode->i_state & I_NEW))
4632 return inode;
4633
4634 ei = EXT4_I(inode);
Peter Huewe7dc57612011-02-21 21:01:42 -05004635 iloc.bh = NULL;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004636
Harshad Shirwadkar8016e292020-10-15 13:37:59 -07004637 ret = __ext4_get_inode_loc_noinmem(inode, &iloc);
David Howells1d1fe1e2008-02-07 00:15:37 -08004638 if (ret < 0)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004639 goto bad_inode;
Mingming Cao617ba132006-10-11 01:20:53 -07004640 raw_inode = ext4_raw_inode(&iloc);
Darrick J. Wong814525f2012-04-29 18:31:10 -04004641
Theodore Ts'o8e4b5ea2018-03-29 21:56:09 -04004642 if ((ino == EXT4_ROOT_INO) && (raw_inode->i_links_count == 0)) {
Theodore Ts'o8a363972018-12-19 12:29:13 -05004643 ext4_error_inode(inode, function, line, 0,
4644 "iget: root inode unallocated");
Theodore Ts'o8e4b5ea2018-03-29 21:56:09 -04004645 ret = -EFSCORRUPTED;
4646 goto bad_inode;
4647 }
4648
Theodore Ts'o8a363972018-12-19 12:29:13 -05004649 if ((flags & EXT4_IGET_HANDLE) &&
4650 (raw_inode->i_links_count == 0) && (raw_inode->i_mode == 0)) {
4651 ret = -ESTALE;
4652 goto bad_inode;
4653 }
4654
Darrick J. Wong814525f2012-04-29 18:31:10 -04004655 if (EXT4_INODE_SIZE(inode->i_sb) > EXT4_GOOD_OLD_INODE_SIZE) {
4656 ei->i_extra_isize = le16_to_cpu(raw_inode->i_extra_isize);
4657 if (EXT4_GOOD_OLD_INODE_SIZE + ei->i_extra_isize >
Eric Biggers2dc8d9e2016-12-01 14:43:33 -05004658 EXT4_INODE_SIZE(inode->i_sb) ||
4659 (ei->i_extra_isize & 3)) {
Theodore Ts'o8a363972018-12-19 12:29:13 -05004660 ext4_error_inode(inode, function, line, 0,
4661 "iget: bad extra_isize %u "
4662 "(inode size %u)",
Eric Biggers2dc8d9e2016-12-01 14:43:33 -05004663 ei->i_extra_isize,
4664 EXT4_INODE_SIZE(inode->i_sb));
Darrick J. Wong6a797d22015-10-17 16:16:04 -04004665 ret = -EFSCORRUPTED;
Darrick J. Wong814525f2012-04-29 18:31:10 -04004666 goto bad_inode;
4667 }
4668 } else
4669 ei->i_extra_isize = 0;
4670
4671 /* Precompute checksum seed for inode metadata */
Dmitry Monakhov9aa5d32b2014-10-13 03:36:16 -04004672 if (ext4_has_metadata_csum(sb)) {
Darrick J. Wong814525f2012-04-29 18:31:10 -04004673 struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb);
4674 __u32 csum;
4675 __le32 inum = cpu_to_le32(inode->i_ino);
4676 __le32 gen = raw_inode->i_generation;
4677 csum = ext4_chksum(sbi, sbi->s_csum_seed, (__u8 *)&inum,
4678 sizeof(inum));
4679 ei->i_csum_seed = ext4_chksum(sbi, csum, (__u8 *)&gen,
4680 sizeof(gen));
4681 }
4682
Harshad Shirwadkar8016e292020-10-15 13:37:59 -07004683 if ((!ext4_inode_csum_verify(inode, raw_inode, ei) ||
4684 ext4_simulate_fail(sb, EXT4_SIM_INODE_CRC)) &&
4685 (!(EXT4_SB(sb)->s_mount_state & EXT4_FC_REPLAY))) {
4686 ext4_error_inode_err(inode, function, line, 0,
4687 EFSBADCRC, "iget: checksum invalid");
Darrick J. Wong6a797d22015-10-17 16:16:04 -04004688 ret = -EFSBADCRC;
Darrick J. Wong814525f2012-04-29 18:31:10 -04004689 goto bad_inode;
4690 }
4691
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004692 inode->i_mode = le16_to_cpu(raw_inode->i_mode);
Eric W. Biederman08cefc72012-02-07 15:41:49 -08004693 i_uid = (uid_t)le16_to_cpu(raw_inode->i_uid_low);
4694 i_gid = (gid_t)le16_to_cpu(raw_inode->i_gid_low);
Kaho Ng0b7b7772016-09-05 23:11:58 -04004695 if (ext4_has_feature_project(sb) &&
Li Xi040cb372016-01-08 16:01:21 -05004696 EXT4_INODE_SIZE(sb) > EXT4_GOOD_OLD_INODE_SIZE &&
4697 EXT4_FITS_IN_INODE(raw_inode, ei, i_projid))
4698 i_projid = (projid_t)le32_to_cpu(raw_inode->i_projid);
4699 else
4700 i_projid = EXT4_DEF_PROJID;
4701
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04004702 if (!(test_opt(inode->i_sb, NO_UID32))) {
Eric W. Biederman08cefc72012-02-07 15:41:49 -08004703 i_uid |= le16_to_cpu(raw_inode->i_uid_high) << 16;
4704 i_gid |= le16_to_cpu(raw_inode->i_gid_high) << 16;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004705 }
Eric W. Biederman08cefc72012-02-07 15:41:49 -08004706 i_uid_write(inode, i_uid);
4707 i_gid_write(inode, i_gid);
Li Xi040cb372016-01-08 16:01:21 -05004708 ei->i_projid = make_kprojid(&init_user_ns, i_projid);
Miklos Szeredibfe86842011-10-28 14:13:29 +02004709 set_nlink(inode, le16_to_cpu(raw_inode->i_links_count));
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004710
Theodore Ts'o353eb832011-01-10 12:18:25 -05004711 ext4_clear_state_flags(ei); /* Only relevant on 32-bit archs */
Tao Ma67cf5b02012-12-10 14:04:46 -05004712 ei->i_inline_off = 0;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004713 ei->i_dir_start_lookup = 0;
4714 ei->i_dtime = le32_to_cpu(raw_inode->i_dtime);
4715 /* We now have enough fields to check if the inode was active or not.
4716 * This is needed because nfsd might try to access dead inodes
4717 * the test is that same one that e2fsck uses
4718 * NeilBrown 1999oct15
4719 */
4720 if (inode->i_nlink == 0) {
Dr. Tilmann Bubeck393d1d12013-04-08 12:54:05 -04004721 if ((inode->i_mode == 0 ||
4722 !(EXT4_SB(inode->i_sb)->s_mount_state & EXT4_ORPHAN_FS)) &&
4723 ino != EXT4_BOOT_LOADER_INO) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004724 /* this inode is deleted */
David Howells1d1fe1e2008-02-07 00:15:37 -08004725 ret = -ESTALE;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004726 goto bad_inode;
4727 }
4728 /* The only unlinked inodes we let through here have
4729 * valid i_mode and are being read by the orphan
4730 * recovery code: that's fine, we're about to complete
Dr. Tilmann Bubeck393d1d12013-04-08 12:54:05 -04004731 * the process of deleting those.
4732 * OR it is the EXT4_BOOT_LOADER_INO which is
4733 * not initialized on a new filesystem. */
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004734 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004735 ei->i_flags = le32_to_cpu(raw_inode->i_flags);
Ira Weiny043546e2020-05-28 07:59:59 -07004736 ext4_set_inode_flags(inode, true);
Aneesh Kumar K.V0fc1b452008-01-28 23:58:26 -05004737 inode->i_blocks = ext4_inode_blocks(raw_inode, ei);
Aneesh Kumar K.V7973c0c2008-01-28 23:58:27 -05004738 ei->i_file_acl = le32_to_cpu(raw_inode->i_file_acl_lo);
Darrick J. Wonge2b911c2015-10-17 16:18:43 -04004739 if (ext4_has_feature_64bit(sb))
Badari Pulavartya1ddeb72006-10-11 01:21:09 -07004740 ei->i_file_acl |=
4741 ((__u64)le16_to_cpu(raw_inode->i_file_acl_high)) << 32;
Artem Blagodarenkoe08ac992017-06-21 21:09:57 -04004742 inode->i_size = ext4_isize(sb, raw_inode);
Darrick J. Wong7e6e1ef2016-12-10 09:55:01 -05004743 if ((size = i_size_read(inode)) < 0) {
Theodore Ts'o8a363972018-12-19 12:29:13 -05004744 ext4_error_inode(inode, function, line, 0,
4745 "iget: bad i_size value: %lld", size);
Darrick J. Wong7e6e1ef2016-12-10 09:55:01 -05004746 ret = -EFSCORRUPTED;
4747 goto bad_inode;
4748 }
Jan Kara48a34312020-02-10 15:43:16 +01004749 /*
4750 * If dir_index is not enabled but there's dir with INDEX flag set,
4751 * we'd normally treat htree data as empty space. But with metadata
4752 * checksumming that corrupts checksums so forbid that.
4753 */
4754 if (!ext4_has_feature_dir_index(sb) && ext4_has_metadata_csum(sb) &&
4755 ext4_test_inode_flag(inode, EXT4_INODE_INDEX)) {
4756 ext4_error_inode(inode, function, line, 0,
4757 "iget: Dir with htree data on filesystem without dir_index feature.");
4758 ret = -EFSCORRUPTED;
4759 goto bad_inode;
4760 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004761 ei->i_disksize = inode->i_size;
Dmitry Monakhova9e7f442009-12-14 15:21:14 +03004762#ifdef CONFIG_QUOTA
4763 ei->i_reserved_quota = 0;
4764#endif
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004765 inode->i_generation = le32_to_cpu(raw_inode->i_generation);
4766 ei->i_block_group = iloc.block_group;
Theodore Ts'oa4912122009-03-12 12:18:34 -04004767 ei->i_last_alloc_group = ~0;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004768 /*
4769 * NOTE! The in-memory inode i_data array is in little-endian order
4770 * even on big-endian machines: we do NOT byteswap the block numbers!
4771 */
Mingming Cao617ba132006-10-11 01:20:53 -07004772 for (block = 0; block < EXT4_N_BLOCKS; block++)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004773 ei->i_data[block] = raw_inode->i_block[block];
4774 INIT_LIST_HEAD(&ei->i_orphan);
Harshad Shirwadkaraa75f4d2020-10-15 13:37:57 -07004775 ext4_fc_init_inode(&ei->vfs_inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004776
Jan Karab436b9b2009-12-08 23:51:10 -05004777 /*
4778 * Set transaction id's of transactions that have to be committed
4779 * to finish f[data]sync. We set them to currently running transaction
4780 * as we cannot be sure that the inode or some of its metadata isn't
4781 * part of the transaction - the inode could have been reclaimed and
4782 * now it is reread from disk.
4783 */
4784 if (journal) {
4785 transaction_t *transaction;
4786 tid_t tid;
4787
Theodore Ts'oa931da62010-08-03 21:35:12 -04004788 read_lock(&journal->j_state_lock);
Jan Karab436b9b2009-12-08 23:51:10 -05004789 if (journal->j_running_transaction)
4790 transaction = journal->j_running_transaction;
4791 else
4792 transaction = journal->j_committing_transaction;
4793 if (transaction)
4794 tid = transaction->t_tid;
4795 else
4796 tid = journal->j_commit_sequence;
Theodore Ts'oa931da62010-08-03 21:35:12 -04004797 read_unlock(&journal->j_state_lock);
Jan Karab436b9b2009-12-08 23:51:10 -05004798 ei->i_sync_tid = tid;
4799 ei->i_datasync_tid = tid;
4800 }
4801
Eric Sandeen0040d982008-02-05 22:36:43 -05004802 if (EXT4_INODE_SIZE(inode->i_sb) > EXT4_GOOD_OLD_INODE_SIZE) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004803 if (ei->i_extra_isize == 0) {
4804 /* The extra space is currently unused. Use it. */
Eric Biggers2dc8d9e2016-12-01 14:43:33 -05004805 BUILD_BUG_ON(sizeof(struct ext4_inode) & 3);
Mingming Cao617ba132006-10-11 01:20:53 -07004806 ei->i_extra_isize = sizeof(struct ext4_inode) -
4807 EXT4_GOOD_OLD_INODE_SIZE;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004808 } else {
Theodore Ts'oeb9b5f02018-05-22 17:14:07 -04004809 ret = ext4_iget_extra_inode(inode, raw_inode, ei);
4810 if (ret)
4811 goto bad_inode;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004812 }
Darrick J. Wong814525f2012-04-29 18:31:10 -04004813 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004814
Kalpak Shahef7f3832007-07-18 09:15:20 -04004815 EXT4_INODE_GET_XTIME(i_ctime, inode, raw_inode);
4816 EXT4_INODE_GET_XTIME(i_mtime, inode, raw_inode);
4817 EXT4_INODE_GET_XTIME(i_atime, inode, raw_inode);
4818 EXT4_EINODE_GET_XTIME(i_crtime, ei, raw_inode);
4819
Theodore Ts'oed3654e2014-03-24 14:09:06 -04004820 if (likely(!test_opt2(inode->i_sb, HURD_COMPAT))) {
Jeff Laytonee73f9a2018-01-09 08:21:39 -05004821 u64 ivers = le32_to_cpu(raw_inode->i_disk_version);
4822
Theodore Ts'oc4f65702014-03-20 00:32:57 -04004823 if (EXT4_INODE_SIZE(inode->i_sb) > EXT4_GOOD_OLD_INODE_SIZE) {
4824 if (EXT4_FITS_IN_INODE(raw_inode, ei, i_version_hi))
Jeff Laytonee73f9a2018-01-09 08:21:39 -05004825 ivers |=
Theodore Ts'oc4f65702014-03-20 00:32:57 -04004826 (__u64)(le32_to_cpu(raw_inode->i_version_hi)) << 32;
4827 }
Eryu Guane254d1a2018-05-10 11:55:31 -04004828 ext4_inode_set_iversion_queried(inode, ivers);
Jean Noel Cordenner25ec56b2008-01-28 23:58:27 -05004829 }
4830
Theodore Ts'oc4b5a612009-04-24 18:45:35 -04004831 ret = 0;
Theodore Ts'o485c26e2009-04-24 13:43:20 -04004832 if (ei->i_file_acl &&
Jan Karace9f24c2020-07-28 15:04:34 +02004833 !ext4_inode_block_valid(inode, ei->i_file_acl, 1)) {
Theodore Ts'o8a363972018-12-19 12:29:13 -05004834 ext4_error_inode(inode, function, line, 0,
4835 "iget: bad extended attribute block %llu",
Theodore Ts'o24676da2010-05-16 21:00:00 -04004836 ei->i_file_acl);
Darrick J. Wong6a797d22015-10-17 16:16:04 -04004837 ret = -EFSCORRUPTED;
Theodore Ts'o485c26e2009-04-24 13:43:20 -04004838 goto bad_inode;
Tao Maf19d5872012-12-10 14:05:51 -05004839 } else if (!ext4_has_inline_data(inode)) {
Liu Songbc716522018-08-02 00:11:16 -04004840 /* validate the block references in the inode */
Harshad Shirwadkar8016e292020-10-15 13:37:59 -07004841 if (!(EXT4_SB(sb)->s_mount_state & EXT4_FC_REPLAY) &&
4842 (S_ISREG(inode->i_mode) || S_ISDIR(inode->i_mode) ||
4843 (S_ISLNK(inode->i_mode) &&
4844 !ext4_inode_is_fast_symlink(inode)))) {
Liu Songbc716522018-08-02 00:11:16 -04004845 if (ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS))
Tao Maf19d5872012-12-10 14:05:51 -05004846 ret = ext4_ext_check_inode(inode);
Liu Songbc716522018-08-02 00:11:16 -04004847 else
4848 ret = ext4_ind_check_inode(inode);
Tao Maf19d5872012-12-10 14:05:51 -05004849 }
Thiemo Nagelfe2c8192009-03-31 08:36:10 -04004850 }
Theodore Ts'o567f3e92009-11-14 08:19:05 -05004851 if (ret)
Theodore Ts'ode9a55b2009-06-14 17:45:34 -04004852 goto bad_inode;
Aneesh Kumar K.V7a262f72009-03-27 16:39:58 -04004853
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004854 if (S_ISREG(inode->i_mode)) {
Mingming Cao617ba132006-10-11 01:20:53 -07004855 inode->i_op = &ext4_file_inode_operations;
Boaz Harroshbe64f882015-04-15 16:15:17 -07004856 inode->i_fop = &ext4_file_operations;
Mingming Cao617ba132006-10-11 01:20:53 -07004857 ext4_set_aops(inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004858 } else if (S_ISDIR(inode->i_mode)) {
Mingming Cao617ba132006-10-11 01:20:53 -07004859 inode->i_op = &ext4_dir_inode_operations;
4860 inode->i_fop = &ext4_dir_operations;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004861 } else if (S_ISLNK(inode->i_mode)) {
Luis R. Rodriguez6390d332018-05-13 16:45:56 -04004862 /* VFS does not allow setting these so must be corruption */
4863 if (IS_APPEND(inode) || IS_IMMUTABLE(inode)) {
Theodore Ts'o8a363972018-12-19 12:29:13 -05004864 ext4_error_inode(inode, function, line, 0,
4865 "iget: immutable or append flags "
4866 "not allowed on symlinks");
Luis R. Rodriguez6390d332018-05-13 16:45:56 -04004867 ret = -EFSCORRUPTED;
4868 goto bad_inode;
4869 }
Chandan Rajendra592ddec2018-12-12 15:20:10 +05304870 if (IS_ENCRYPTED(inode)) {
Al Viroa7a67e82015-04-27 17:51:30 -04004871 inode->i_op = &ext4_encrypted_symlink_inode_operations;
4872 ext4_set_aops(inode);
4873 } else if (ext4_inode_is_fast_symlink(inode)) {
Al Viro75e75662015-05-02 10:13:58 -04004874 inode->i_link = (char *)ei->i_data;
Mingming Cao617ba132006-10-11 01:20:53 -07004875 inode->i_op = &ext4_fast_symlink_inode_operations;
Duane Griffine83c1392008-12-19 20:47:15 +00004876 nd_terminate_link(ei->i_data, inode->i_size,
4877 sizeof(ei->i_data) - 1);
4878 } else {
Mingming Cao617ba132006-10-11 01:20:53 -07004879 inode->i_op = &ext4_symlink_inode_operations;
4880 ext4_set_aops(inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004881 }
Al Viro21fc61c2015-11-17 01:07:57 -05004882 inode_nohighmem(inode);
Theodore Ts'o563bdd62009-03-26 00:06:19 -04004883 } else if (S_ISCHR(inode->i_mode) || S_ISBLK(inode->i_mode) ||
4884 S_ISFIFO(inode->i_mode) || S_ISSOCK(inode->i_mode)) {
Mingming Cao617ba132006-10-11 01:20:53 -07004885 inode->i_op = &ext4_special_inode_operations;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004886 if (raw_inode->i_block[0])
4887 init_special_inode(inode, inode->i_mode,
4888 old_decode_dev(le32_to_cpu(raw_inode->i_block[0])));
4889 else
4890 init_special_inode(inode, inode->i_mode,
4891 new_decode_dev(le32_to_cpu(raw_inode->i_block[1])));
Dr. Tilmann Bubeck393d1d12013-04-08 12:54:05 -04004892 } else if (ino == EXT4_BOOT_LOADER_INO) {
4893 make_bad_inode(inode);
Theodore Ts'o563bdd62009-03-26 00:06:19 -04004894 } else {
Darrick J. Wong6a797d22015-10-17 16:16:04 -04004895 ret = -EFSCORRUPTED;
Theodore Ts'o8a363972018-12-19 12:29:13 -05004896 ext4_error_inode(inode, function, line, 0,
4897 "iget: bogus i_mode (%o)", inode->i_mode);
Theodore Ts'o563bdd62009-03-26 00:06:19 -04004898 goto bad_inode;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004899 }
Theodore Ts'o6456ca62019-09-03 01:43:17 -04004900 if (IS_CASEFOLDED(inode) && !ext4_has_feature_casefold(inode->i_sb))
4901 ext4_error_inode(inode, function, line, 0,
4902 "casefold flag without casefold feature");
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04004903 brelse(iloc.bh);
Tahsin Erdogandec214d2017-06-22 11:44:55 -04004904
David Howells1d1fe1e2008-02-07 00:15:37 -08004905 unlock_new_inode(inode);
4906 return inode;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004907
4908bad_inode:
Theodore Ts'o567f3e92009-11-14 08:19:05 -05004909 brelse(iloc.bh);
David Howells1d1fe1e2008-02-07 00:15:37 -08004910 iget_failed(inode);
4911 return ERR_PTR(ret);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004912}
4913
Aneesh Kumar K.V0fc1b452008-01-28 23:58:26 -05004914static int ext4_inode_blocks_set(handle_t *handle,
4915 struct ext4_inode *raw_inode,
4916 struct ext4_inode_info *ei)
4917{
4918 struct inode *inode = &(ei->vfs_inode);
Qian Cai28936b62020-02-21 23:32:58 -05004919 u64 i_blocks = READ_ONCE(inode->i_blocks);
Aneesh Kumar K.V0fc1b452008-01-28 23:58:26 -05004920 struct super_block *sb = inode->i_sb;
Aneesh Kumar K.V0fc1b452008-01-28 23:58:26 -05004921
4922 if (i_blocks <= ~0U) {
4923 /*
Anatol Pomozov4907cb72012-09-01 10:31:09 -07004924 * i_blocks can be represented in a 32 bit variable
Aneesh Kumar K.V0fc1b452008-01-28 23:58:26 -05004925 * as multiple of 512 bytes
4926 */
Aneesh Kumar K.V8180a562008-01-28 23:58:27 -05004927 raw_inode->i_blocks_lo = cpu_to_le32(i_blocks);
Aneesh Kumar K.V0fc1b452008-01-28 23:58:26 -05004928 raw_inode->i_blocks_high = 0;
Dmitry Monakhov84a8dce2010-06-05 11:51:27 -04004929 ext4_clear_inode_flag(inode, EXT4_INODE_HUGE_FILE);
Theodore Ts'of287a1a2008-10-16 22:50:48 -04004930 return 0;
4931 }
Darrick J. Wonge2b911c2015-10-17 16:18:43 -04004932 if (!ext4_has_feature_huge_file(sb))
Theodore Ts'of287a1a2008-10-16 22:50:48 -04004933 return -EFBIG;
4934
4935 if (i_blocks <= 0xffffffffffffULL) {
Aneesh Kumar K.V0fc1b452008-01-28 23:58:26 -05004936 /*
4937 * i_blocks can be represented in a 48 bit variable
4938 * as multiple of 512 bytes
4939 */
Aneesh Kumar K.V8180a562008-01-28 23:58:27 -05004940 raw_inode->i_blocks_lo = cpu_to_le32(i_blocks);
Aneesh Kumar K.V0fc1b452008-01-28 23:58:26 -05004941 raw_inode->i_blocks_high = cpu_to_le16(i_blocks >> 32);
Dmitry Monakhov84a8dce2010-06-05 11:51:27 -04004942 ext4_clear_inode_flag(inode, EXT4_INODE_HUGE_FILE);
Aneesh Kumar K.V0fc1b452008-01-28 23:58:26 -05004943 } else {
Dmitry Monakhov84a8dce2010-06-05 11:51:27 -04004944 ext4_set_inode_flag(inode, EXT4_INODE_HUGE_FILE);
Aneesh Kumar K.V8180a562008-01-28 23:58:27 -05004945 /* i_block is stored in file system block size */
4946 i_blocks = i_blocks >> (inode->i_blkbits - 9);
4947 raw_inode->i_blocks_lo = cpu_to_le32(i_blocks);
4948 raw_inode->i_blocks_high = cpu_to_le16(i_blocks >> 32);
Aneesh Kumar K.V0fc1b452008-01-28 23:58:26 -05004949 }
Theodore Ts'of287a1a2008-10-16 22:50:48 -04004950 return 0;
Aneesh Kumar K.V0fc1b452008-01-28 23:58:26 -05004951}
4952
David Howells3f19b2a2017-12-01 11:40:16 +00004953static void __ext4_update_other_inode_time(struct super_block *sb,
4954 unsigned long orig_ino,
4955 unsigned long ino,
4956 struct ext4_inode *raw_inode)
Theodore Ts'oa26f4992015-02-02 00:37:02 -05004957{
David Howells3f19b2a2017-12-01 11:40:16 +00004958 struct inode *inode;
Theodore Ts'oa26f4992015-02-02 00:37:02 -05004959
David Howells3f19b2a2017-12-01 11:40:16 +00004960 inode = find_inode_by_ino_rcu(sb, ino);
4961 if (!inode)
4962 return;
4963
4964 if ((inode->i_state & (I_FREEING | I_WILL_FREE | I_NEW |
Christoph Hellwig0e11f642018-02-21 07:54:49 -08004965 I_DIRTY_INODE)) ||
Theodore Ts'oa26f4992015-02-02 00:37:02 -05004966 ((inode->i_state & I_DIRTY_TIME) == 0))
David Howells3f19b2a2017-12-01 11:40:16 +00004967 return;
4968
Theodore Ts'oa26f4992015-02-02 00:37:02 -05004969 spin_lock(&inode->i_lock);
4970 if (((inode->i_state & (I_FREEING | I_WILL_FREE | I_NEW |
Christoph Hellwig0e11f642018-02-21 07:54:49 -08004971 I_DIRTY_INODE)) == 0) &&
Theodore Ts'oa26f4992015-02-02 00:37:02 -05004972 (inode->i_state & I_DIRTY_TIME)) {
4973 struct ext4_inode_info *ei = EXT4_I(inode);
4974
Jan Kara5fcd5752020-05-29 16:24:43 +02004975 inode->i_state &= ~I_DIRTY_TIME;
Theodore Ts'oa26f4992015-02-02 00:37:02 -05004976 spin_unlock(&inode->i_lock);
4977
4978 spin_lock(&ei->i_raw_lock);
David Howells3f19b2a2017-12-01 11:40:16 +00004979 EXT4_INODE_SET_XTIME(i_ctime, inode, raw_inode);
4980 EXT4_INODE_SET_XTIME(i_mtime, inode, raw_inode);
4981 EXT4_INODE_SET_XTIME(i_atime, inode, raw_inode);
4982 ext4_inode_csum_set(inode, raw_inode, ei);
Theodore Ts'oa26f4992015-02-02 00:37:02 -05004983 spin_unlock(&ei->i_raw_lock);
David Howells3f19b2a2017-12-01 11:40:16 +00004984 trace_ext4_other_inode_update_time(inode, orig_ino);
4985 return;
Theodore Ts'oa26f4992015-02-02 00:37:02 -05004986 }
4987 spin_unlock(&inode->i_lock);
Theodore Ts'oa26f4992015-02-02 00:37:02 -05004988}
4989
4990/*
4991 * Opportunistically update the other time fields for other inodes in
4992 * the same inode table block.
4993 */
4994static void ext4_update_other_inodes_time(struct super_block *sb,
4995 unsigned long orig_ino, char *buf)
4996{
Theodore Ts'oa26f4992015-02-02 00:37:02 -05004997 unsigned long ino;
4998 int i, inodes_per_block = EXT4_SB(sb)->s_inodes_per_block;
4999 int inode_size = EXT4_INODE_SIZE(sb);
5000
Theodore Ts'o0f0ff9a2015-07-01 23:37:46 -04005001 /*
5002 * Calculate the first inode in the inode table block. Inode
5003 * numbers are one-based. That is, the first inode in a block
5004 * (assuming 4k blocks and 256 byte inodes) is (n*16 + 1).
5005 */
5006 ino = ((orig_ino - 1) & ~(inodes_per_block - 1)) + 1;
David Howells3f19b2a2017-12-01 11:40:16 +00005007 rcu_read_lock();
Theodore Ts'oa26f4992015-02-02 00:37:02 -05005008 for (i = 0; i < inodes_per_block; i++, ino++, buf += inode_size) {
5009 if (ino == orig_ino)
5010 continue;
David Howells3f19b2a2017-12-01 11:40:16 +00005011 __ext4_update_other_inode_time(sb, orig_ino, ino,
5012 (struct ext4_inode *)buf);
Theodore Ts'oa26f4992015-02-02 00:37:02 -05005013 }
David Howells3f19b2a2017-12-01 11:40:16 +00005014 rcu_read_unlock();
Theodore Ts'oa26f4992015-02-02 00:37:02 -05005015}
5016
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005017/*
5018 * Post the struct inode info into an on-disk inode location in the
5019 * buffer-cache. This gobbles the caller's reference to the
5020 * buffer_head in the inode location struct.
5021 *
5022 * The caller must have write access to iloc->bh.
5023 */
Mingming Cao617ba132006-10-11 01:20:53 -07005024static int ext4_do_update_inode(handle_t *handle,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005025 struct inode *inode,
Frank Mayhar830156c2009-09-29 10:07:47 -04005026 struct ext4_iloc *iloc)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005027{
Mingming Cao617ba132006-10-11 01:20:53 -07005028 struct ext4_inode *raw_inode = ext4_raw_inode(iloc);
5029 struct ext4_inode_info *ei = EXT4_I(inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005030 struct buffer_head *bh = iloc->bh;
Theodore Ts'o202ee5d2014-04-21 14:37:55 -04005031 struct super_block *sb = inode->i_sb;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005032 int err = 0, rc, block;
Theodore Ts'o202ee5d2014-04-21 14:37:55 -04005033 int need_datasync = 0, set_large_file = 0;
Eric W. Biederman08cefc72012-02-07 15:41:49 -08005034 uid_t i_uid;
5035 gid_t i_gid;
Li Xi040cb372016-01-08 16:01:21 -05005036 projid_t i_projid;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005037
Theodore Ts'o202ee5d2014-04-21 14:37:55 -04005038 spin_lock(&ei->i_raw_lock);
5039
5040 /* For fields not tracked in the in-memory inode,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005041 * initialise them to zero for new inodes. */
Theodore Ts'o19f5fb72010-01-24 14:34:07 -05005042 if (ext4_test_inode_state(inode, EXT4_STATE_NEW))
Mingming Cao617ba132006-10-11 01:20:53 -07005043 memset(raw_inode, 0, EXT4_SB(inode->i_sb)->s_inode_size);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005044
Luo Meng13221812020-10-20 09:36:31 +08005045 err = ext4_inode_blocks_set(handle, raw_inode, ei);
5046 if (err) {
5047 spin_unlock(&ei->i_raw_lock);
5048 goto out_brelse;
5049 }
5050
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005051 raw_inode->i_mode = cpu_to_le16(inode->i_mode);
Eric W. Biederman08cefc72012-02-07 15:41:49 -08005052 i_uid = i_uid_read(inode);
5053 i_gid = i_gid_read(inode);
Li Xi040cb372016-01-08 16:01:21 -05005054 i_projid = from_kprojid(&init_user_ns, ei->i_projid);
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04005055 if (!(test_opt(inode->i_sb, NO_UID32))) {
Eric W. Biederman08cefc72012-02-07 15:41:49 -08005056 raw_inode->i_uid_low = cpu_to_le16(low_16_bits(i_uid));
5057 raw_inode->i_gid_low = cpu_to_le16(low_16_bits(i_gid));
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005058/*
5059 * Fix up interoperability with old kernels. Otherwise, old inodes get
5060 * re-used with the upper 16 bits of the uid/gid intact
5061 */
Daeho Jeong93e3b4e2016-09-05 22:56:10 -04005062 if (ei->i_dtime && list_empty(&ei->i_orphan)) {
5063 raw_inode->i_uid_high = 0;
5064 raw_inode->i_gid_high = 0;
5065 } else {
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005066 raw_inode->i_uid_high =
Eric W. Biederman08cefc72012-02-07 15:41:49 -08005067 cpu_to_le16(high_16_bits(i_uid));
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005068 raw_inode->i_gid_high =
Eric W. Biederman08cefc72012-02-07 15:41:49 -08005069 cpu_to_le16(high_16_bits(i_gid));
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005070 }
5071 } else {
Eric W. Biederman08cefc72012-02-07 15:41:49 -08005072 raw_inode->i_uid_low = cpu_to_le16(fs_high2lowuid(i_uid));
5073 raw_inode->i_gid_low = cpu_to_le16(fs_high2lowgid(i_gid));
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005074 raw_inode->i_uid_high = 0;
5075 raw_inode->i_gid_high = 0;
5076 }
5077 raw_inode->i_links_count = cpu_to_le16(inode->i_nlink);
Kalpak Shahef7f3832007-07-18 09:15:20 -04005078
5079 EXT4_INODE_SET_XTIME(i_ctime, inode, raw_inode);
5080 EXT4_INODE_SET_XTIME(i_mtime, inode, raw_inode);
5081 EXT4_INODE_SET_XTIME(i_atime, inode, raw_inode);
5082 EXT4_EINODE_SET_XTIME(i_crtime, ei, raw_inode);
5083
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005084 raw_inode->i_dtime = cpu_to_le32(ei->i_dtime);
Theodore Ts'o353eb832011-01-10 12:18:25 -05005085 raw_inode->i_flags = cpu_to_le32(ei->i_flags & 0xFFFFFFFF);
Theodore Ts'oed3654e2014-03-24 14:09:06 -04005086 if (likely(!test_opt2(inode->i_sb, HURD_COMPAT)))
Badari Pulavartya1ddeb72006-10-11 01:21:09 -07005087 raw_inode->i_file_acl_high =
5088 cpu_to_le16(ei->i_file_acl >> 32);
Aneesh Kumar K.V7973c0c2008-01-28 23:58:27 -05005089 raw_inode->i_file_acl_lo = cpu_to_le32(ei->i_file_acl);
Qiujun Huangdce8e232020-02-24 23:02:46 +08005090 if (READ_ONCE(ei->i_disksize) != ext4_isize(inode->i_sb, raw_inode)) {
Jan Karab71fc072012-09-26 21:52:20 -04005091 ext4_isize_set(raw_inode, ei->i_disksize);
5092 need_datasync = 1;
5093 }
Aneesh Kumar K.Va48380f2008-01-28 23:58:27 -05005094 if (ei->i_disksize > 0x7fffffffULL) {
Darrick J. Wonge2b911c2015-10-17 16:18:43 -04005095 if (!ext4_has_feature_large_file(sb) ||
Aneesh Kumar K.Va48380f2008-01-28 23:58:27 -05005096 EXT4_SB(sb)->s_es->s_rev_level ==
Theodore Ts'o202ee5d2014-04-21 14:37:55 -04005097 cpu_to_le32(EXT4_GOOD_OLD_REV))
5098 set_large_file = 1;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005099 }
5100 raw_inode->i_generation = cpu_to_le32(inode->i_generation);
5101 if (S_ISCHR(inode->i_mode) || S_ISBLK(inode->i_mode)) {
5102 if (old_valid_dev(inode->i_rdev)) {
5103 raw_inode->i_block[0] =
5104 cpu_to_le32(old_encode_dev(inode->i_rdev));
5105 raw_inode->i_block[1] = 0;
5106 } else {
5107 raw_inode->i_block[0] = 0;
5108 raw_inode->i_block[1] =
5109 cpu_to_le32(new_encode_dev(inode->i_rdev));
5110 raw_inode->i_block[2] = 0;
5111 }
Tao Maf19d5872012-12-10 14:05:51 -05005112 } else if (!ext4_has_inline_data(inode)) {
Theodore Ts'ode9a55b2009-06-14 17:45:34 -04005113 for (block = 0; block < EXT4_N_BLOCKS; block++)
5114 raw_inode->i_block[block] = ei->i_data[block];
Tao Maf19d5872012-12-10 14:05:51 -05005115 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005116
Theodore Ts'oed3654e2014-03-24 14:09:06 -04005117 if (likely(!test_opt2(inode->i_sb, HURD_COMPAT))) {
Eryu Guane254d1a2018-05-10 11:55:31 -04005118 u64 ivers = ext4_inode_peek_iversion(inode);
Jeff Laytonee73f9a2018-01-09 08:21:39 -05005119
5120 raw_inode->i_disk_version = cpu_to_le32(ivers);
Theodore Ts'oc4f65702014-03-20 00:32:57 -04005121 if (ei->i_extra_isize) {
5122 if (EXT4_FITS_IN_INODE(raw_inode, ei, i_version_hi))
5123 raw_inode->i_version_hi =
Jeff Laytonee73f9a2018-01-09 08:21:39 -05005124 cpu_to_le32(ivers >> 32);
Theodore Ts'oc4f65702014-03-20 00:32:57 -04005125 raw_inode->i_extra_isize =
5126 cpu_to_le16(ei->i_extra_isize);
5127 }
Jean Noel Cordenner25ec56b2008-01-28 23:58:27 -05005128 }
Li Xi040cb372016-01-08 16:01:21 -05005129
Kaho Ng0b7b7772016-09-05 23:11:58 -04005130 BUG_ON(!ext4_has_feature_project(inode->i_sb) &&
Li Xi040cb372016-01-08 16:01:21 -05005131 i_projid != EXT4_DEF_PROJID);
5132
5133 if (EXT4_INODE_SIZE(inode->i_sb) > EXT4_GOOD_OLD_INODE_SIZE &&
5134 EXT4_FITS_IN_INODE(raw_inode, ei, i_projid))
5135 raw_inode->i_projid = cpu_to_le32(i_projid);
5136
Darrick J. Wong814525f2012-04-29 18:31:10 -04005137 ext4_inode_csum_set(inode, raw_inode, ei);
Theodore Ts'o202ee5d2014-04-21 14:37:55 -04005138 spin_unlock(&ei->i_raw_lock);
Linus Torvalds1751e8a2017-11-27 13:05:09 -08005139 if (inode->i_sb->s_flags & SB_LAZYTIME)
Theodore Ts'oa26f4992015-02-02 00:37:02 -05005140 ext4_update_other_inodes_time(inode->i_sb, inode->i_ino,
5141 bh->b_data);
Theodore Ts'o202ee5d2014-04-21 14:37:55 -04005142
Frank Mayhar830156c2009-09-29 10:07:47 -04005143 BUFFER_TRACE(bh, "call ext4_handle_dirty_metadata");
Curt Wohlgemuth73b50c12010-02-16 15:06:29 -05005144 rc = ext4_handle_dirty_metadata(handle, NULL, bh);
Frank Mayhar830156c2009-09-29 10:07:47 -04005145 if (!err)
5146 err = rc;
Theodore Ts'o19f5fb72010-01-24 14:34:07 -05005147 ext4_clear_inode_state(inode, EXT4_STATE_NEW);
Theodore Ts'o202ee5d2014-04-21 14:37:55 -04005148 if (set_large_file) {
liang xie5d601252014-05-12 22:06:43 -04005149 BUFFER_TRACE(EXT4_SB(sb)->s_sbh, "get write access");
Theodore Ts'o202ee5d2014-04-21 14:37:55 -04005150 err = ext4_journal_get_write_access(handle, EXT4_SB(sb)->s_sbh);
5151 if (err)
5152 goto out_brelse;
Darrick J. Wonge2b911c2015-10-17 16:18:43 -04005153 ext4_set_feature_large_file(sb);
Theodore Ts'o202ee5d2014-04-21 14:37:55 -04005154 ext4_handle_sync(handle);
5155 err = ext4_handle_dirty_super(handle, sb);
5156 }
Jan Karab71fc072012-09-26 21:52:20 -04005157 ext4_update_inode_fsync_trans(handle, inode, need_datasync);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005158out_brelse:
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04005159 brelse(bh);
Mingming Cao617ba132006-10-11 01:20:53 -07005160 ext4_std_error(inode->i_sb, err);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005161 return err;
5162}
5163
5164/*
Mingming Cao617ba132006-10-11 01:20:53 -07005165 * ext4_write_inode()
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005166 *
5167 * We are called from a few places:
5168 *
Theodore Ts'o87f7e412014-04-08 11:38:28 -04005169 * - Within generic_file_aio_write() -> generic_write_sync() for O_SYNC files.
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005170 * Here, there will be no transaction running. We wait for any running
Anatol Pomozov4907cb72012-09-01 10:31:09 -07005171 * transaction to commit.
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005172 *
Theodore Ts'o87f7e412014-04-08 11:38:28 -04005173 * - Within flush work (sys_sync(), kupdate and such).
5174 * We wait on commit, if told to.
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005175 *
Theodore Ts'o87f7e412014-04-08 11:38:28 -04005176 * - Within iput_final() -> write_inode_now()
5177 * We wait on commit, if told to.
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005178 *
5179 * In all cases it is actually safe for us to return without doing anything,
5180 * because the inode has been copied into a raw inode buffer in
Theodore Ts'o87f7e412014-04-08 11:38:28 -04005181 * ext4_mark_inode_dirty(). This is a correctness thing for WB_SYNC_ALL
5182 * writeback.
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005183 *
5184 * Note that we are absolutely dependent upon all inode dirtiers doing the
5185 * right thing: they *must* call mark_inode_dirty() after dirtying info in
5186 * which we are interested.
5187 *
5188 * It would be a bug for them to not do this. The code:
5189 *
5190 * mark_inode_dirty(inode)
5191 * stuff();
5192 * inode->i_size = expr;
5193 *
Theodore Ts'o87f7e412014-04-08 11:38:28 -04005194 * is in error because write_inode() could occur while `stuff()' is running,
5195 * and the new i_size will be lost. Plus the inode will no longer be on the
5196 * superblock's dirty inode list.
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005197 */
Christoph Hellwiga9185b42010-03-05 09:21:37 +01005198int ext4_write_inode(struct inode *inode, struct writeback_control *wbc)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005199{
Frank Mayhar91ac6f42009-09-09 22:33:47 -04005200 int err;
5201
Theodore Ts'o18f2c4f2018-12-19 14:36:58 -05005202 if (WARN_ON_ONCE(current->flags & PF_MEMALLOC) ||
5203 sb_rdonly(inode->i_sb))
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005204 return 0;
5205
Theodore Ts'o18f2c4f2018-12-19 14:36:58 -05005206 if (unlikely(ext4_forced_shutdown(EXT4_SB(inode->i_sb))))
5207 return -EIO;
5208
Frank Mayhar91ac6f42009-09-09 22:33:47 -04005209 if (EXT4_SB(inode->i_sb)->s_journal) {
5210 if (ext4_journal_current_handle()) {
5211 jbd_debug(1, "called recursively, non-PF_MEMALLOC!\n");
5212 dump_stack();
5213 return -EIO;
5214 }
5215
Jan Kara10542c22014-03-04 10:50:50 -05005216 /*
5217 * No need to force transaction in WB_SYNC_NONE mode. Also
5218 * ext4_sync_fs() will force the commit after everything is
5219 * written.
5220 */
5221 if (wbc->sync_mode != WB_SYNC_ALL || wbc->for_sync)
Frank Mayhar91ac6f42009-09-09 22:33:47 -04005222 return 0;
5223
Harshad Shirwadkaraa75f4d2020-10-15 13:37:57 -07005224 err = ext4_fc_commit(EXT4_SB(inode->i_sb)->s_journal,
Theodore Ts'o18f2c4f2018-12-19 14:36:58 -05005225 EXT4_I(inode)->i_sync_tid);
Frank Mayhar91ac6f42009-09-09 22:33:47 -04005226 } else {
5227 struct ext4_iloc iloc;
5228
Harshad Shirwadkar8016e292020-10-15 13:37:59 -07005229 err = __ext4_get_inode_loc_noinmem(inode, &iloc);
Frank Mayhar91ac6f42009-09-09 22:33:47 -04005230 if (err)
5231 return err;
Jan Kara10542c22014-03-04 10:50:50 -05005232 /*
5233 * sync(2) will flush the whole buffer cache. No need to do
5234 * it here separately for each inode.
5235 */
5236 if (wbc->sync_mode == WB_SYNC_ALL && !wbc->for_sync)
Frank Mayhar830156c2009-09-29 10:07:47 -04005237 sync_dirty_buffer(iloc.bh);
5238 if (buffer_req(iloc.bh) && !buffer_uptodate(iloc.bh)) {
Theodore Ts'o54d3adb2020-03-28 19:33:43 -04005239 ext4_error_inode_block(inode, iloc.bh->b_blocknr, EIO,
5240 "IO error syncing inode");
Frank Mayhar830156c2009-09-29 10:07:47 -04005241 err = -EIO;
5242 }
Curt Wohlgemuthfd2dd9f2010-04-03 17:44:16 -04005243 brelse(iloc.bh);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005244 }
Frank Mayhar91ac6f42009-09-09 22:33:47 -04005245 return err;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005246}
5247
5248/*
Jan Kara53e87262012-12-25 13:29:52 -05005249 * In data=journal mode ext4_journalled_invalidatepage() may fail to invalidate
5250 * buffers that are attached to a page stradding i_size and are undergoing
5251 * commit. In that case we have to wait for commit to finish and try again.
5252 */
5253static void ext4_wait_for_tail_page_commit(struct inode *inode)
5254{
5255 struct page *page;
5256 unsigned offset;
5257 journal_t *journal = EXT4_SB(inode->i_sb)->s_journal;
5258 tid_t commit_tid = 0;
5259 int ret;
5260
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005261 offset = inode->i_size & (PAGE_SIZE - 1);
Jan Kara53e87262012-12-25 13:29:52 -05005262 /*
yangerkun565333a2019-09-19 14:35:08 +08005263 * If the page is fully truncated, we don't need to wait for any commit
5264 * (and we even should not as __ext4_journalled_invalidatepage() may
5265 * strip all buffers from the page but keep the page dirty which can then
5266 * confuse e.g. concurrent ext4_writepage() seeing dirty page without
5267 * buffers). Also we don't need to wait for any commit if all buffers in
5268 * the page remain valid. This is most beneficial for the common case of
5269 * blocksize == PAGESIZE.
Jan Kara53e87262012-12-25 13:29:52 -05005270 */
yangerkun565333a2019-09-19 14:35:08 +08005271 if (!offset || offset > (PAGE_SIZE - i_blocksize(inode)))
Jan Kara53e87262012-12-25 13:29:52 -05005272 return;
5273 while (1) {
5274 page = find_lock_page(inode->i_mapping,
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005275 inode->i_size >> PAGE_SHIFT);
Jan Kara53e87262012-12-25 13:29:52 -05005276 if (!page)
5277 return;
Lukas Czernerca99fdd2013-05-21 23:25:01 -04005278 ret = __ext4_journalled_invalidatepage(page, offset,
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005279 PAGE_SIZE - offset);
Jan Kara53e87262012-12-25 13:29:52 -05005280 unlock_page(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005281 put_page(page);
Jan Kara53e87262012-12-25 13:29:52 -05005282 if (ret != -EBUSY)
5283 return;
5284 commit_tid = 0;
5285 read_lock(&journal->j_state_lock);
5286 if (journal->j_committing_transaction)
5287 commit_tid = journal->j_committing_transaction->t_tid;
5288 read_unlock(&journal->j_state_lock);
5289 if (commit_tid)
5290 jbd2_log_wait_commit(journal, commit_tid);
5291 }
5292}
5293
5294/*
Mingming Cao617ba132006-10-11 01:20:53 -07005295 * ext4_setattr()
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005296 *
5297 * Called from notify_change.
5298 *
5299 * We want to trap VFS attempts to truncate the file as soon as
5300 * possible. In particular, we want to make sure that when the VFS
5301 * shrinks i_size, we put the inode on the orphan list and modify
5302 * i_disksize immediately, so that during the subsequent flushing of
5303 * dirty pages and freeing of disk blocks, we can guarantee that any
5304 * commit will leave the blocks being flushed in an unused state on
5305 * disk. (On recovery, the inode will get truncated and the blocks will
5306 * be freed, so we have a strong guarantee that no future commit will
5307 * leave these blocks visible to the user.)
5308 *
Jan Kara678aaf42008-07-11 19:27:31 -04005309 * Another thing we have to assure is that if we are in ordered mode
5310 * and inode is still attached to the committing transaction, we must
5311 * we start writeout of all the dirty pages which are being truncated.
5312 * This way we are sure that all the data written in the previous
5313 * transaction are already on disk (truncate waits for pages under
5314 * writeback).
5315 *
5316 * Called with inode->i_mutex down.
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005317 */
Mingming Cao617ba132006-10-11 01:20:53 -07005318int ext4_setattr(struct dentry *dentry, struct iattr *attr)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005319{
David Howells2b0143b2015-03-17 22:25:59 +00005320 struct inode *inode = d_inode(dentry);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005321 int error, rc = 0;
Dmitry Monakhov3d287de2010-10-27 22:08:46 -04005322 int orphan = 0;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005323 const unsigned int ia_valid = attr->ia_valid;
5324
Theodore Ts'o0db1ff22017-02-05 01:28:48 -05005325 if (unlikely(ext4_forced_shutdown(EXT4_SB(inode->i_sb))))
5326 return -EIO;
5327
Theodore Ts'o02b016c2019-06-09 22:04:33 -04005328 if (unlikely(IS_IMMUTABLE(inode)))
5329 return -EPERM;
5330
5331 if (unlikely(IS_APPEND(inode) &&
5332 (ia_valid & (ATTR_MODE | ATTR_UID |
5333 ATTR_GID | ATTR_TIMES_SET))))
5334 return -EPERM;
5335
Jan Kara31051c82016-05-26 16:55:18 +02005336 error = setattr_prepare(dentry, attr);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005337 if (error)
5338 return error;
5339
Eric Biggers3ce2b8d2017-10-18 20:21:58 -04005340 error = fscrypt_prepare_setattr(dentry, attr);
5341 if (error)
5342 return error;
5343
Eric Biggersc93d8f82019-07-22 09:26:24 -07005344 error = fsverity_prepare_setattr(dentry, attr);
5345 if (error)
5346 return error;
5347
Jan Karaa7cdade2015-06-29 16:22:54 +02005348 if (is_quota_modification(inode, attr)) {
5349 error = dquot_initialize(inode);
5350 if (error)
5351 return error;
5352 }
Harshad Shirwadkaraa75f4d2020-10-15 13:37:57 -07005353 ext4_fc_start_update(inode);
Eric W. Biederman08cefc72012-02-07 15:41:49 -08005354 if ((ia_valid & ATTR_UID && !uid_eq(attr->ia_uid, inode->i_uid)) ||
5355 (ia_valid & ATTR_GID && !gid_eq(attr->ia_gid, inode->i_gid))) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005356 handle_t *handle;
5357
5358 /* (user+group)*(old+new) structure, inode write (sb,
5359 * inode block, ? - but truncate inode update has it) */
Theodore Ts'o9924a922013-02-08 21:59:22 -05005360 handle = ext4_journal_start(inode, EXT4_HT_QUOTA,
5361 (EXT4_MAXQUOTAS_INIT_BLOCKS(inode->i_sb) +
5362 EXT4_MAXQUOTAS_DEL_BLOCKS(inode->i_sb)) + 3);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005363 if (IS_ERR(handle)) {
5364 error = PTR_ERR(handle);
5365 goto err_out;
5366 }
Tahsin Erdogan7a9ca532017-06-22 11:46:48 -04005367
5368 /* dquot_transfer() calls back ext4_get_inode_usage() which
5369 * counts xattr inode references.
5370 */
5371 down_read(&EXT4_I(inode)->xattr_sem);
Christoph Hellwigb43fa822010-03-03 09:05:03 -05005372 error = dquot_transfer(inode, attr);
Tahsin Erdogan7a9ca532017-06-22 11:46:48 -04005373 up_read(&EXT4_I(inode)->xattr_sem);
5374
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005375 if (error) {
Mingming Cao617ba132006-10-11 01:20:53 -07005376 ext4_journal_stop(handle);
Harshad Shirwadkaraa75f4d2020-10-15 13:37:57 -07005377 ext4_fc_stop_update(inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005378 return error;
5379 }
5380 /* Update corresponding info in inode so that everything is in
5381 * one transaction */
5382 if (attr->ia_valid & ATTR_UID)
5383 inode->i_uid = attr->ia_uid;
5384 if (attr->ia_valid & ATTR_GID)
5385 inode->i_gid = attr->ia_gid;
Mingming Cao617ba132006-10-11 01:20:53 -07005386 error = ext4_mark_inode_dirty(handle, inode);
5387 ext4_journal_stop(handle);
Harshad Shirwadkar4209ae12020-04-26 18:34:37 -07005388 if (unlikely(error))
5389 return error;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005390 }
5391
Josef Bacik3da40c72015-06-22 00:31:26 -04005392 if (attr->ia_valid & ATTR_SIZE) {
Jan Kara52083862013-08-17 10:07:17 -04005393 handle_t *handle;
Josef Bacik3da40c72015-06-22 00:31:26 -04005394 loff_t oldsize = inode->i_size;
Jan Karab9c1c262019-05-30 11:56:23 -04005395 int shrink = (attr->ia_size < inode->i_size);
Christoph Hellwig562c72aa52011-06-24 14:29:45 -04005396
Dmitry Monakhov12e9b892010-05-16 22:00:00 -04005397 if (!(ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS))) {
Eric Sandeene2b46572008-01-28 23:58:27 -05005398 struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb);
5399
Harshad Shirwadkaraa75f4d2020-10-15 13:37:57 -07005400 if (attr->ia_size > sbi->s_bitmap_maxbytes) {
5401 ext4_fc_stop_update(inode);
Theodore Ts'o0c095c72010-07-27 11:56:06 -04005402 return -EFBIG;
Harshad Shirwadkaraa75f4d2020-10-15 13:37:57 -07005403 }
Eric Sandeene2b46572008-01-28 23:58:27 -05005404 }
Harshad Shirwadkaraa75f4d2020-10-15 13:37:57 -07005405 if (!S_ISREG(inode->i_mode)) {
5406 ext4_fc_stop_update(inode);
Josef Bacik3da40c72015-06-22 00:31:26 -04005407 return -EINVAL;
Harshad Shirwadkaraa75f4d2020-10-15 13:37:57 -07005408 }
Christoph Hellwigdff6efc2013-11-19 07:17:07 -08005409
5410 if (IS_I_VERSION(inode) && attr->ia_size != inode->i_size)
5411 inode_inc_iversion(inode);
5412
Jan Karab9c1c262019-05-30 11:56:23 -04005413 if (shrink) {
5414 if (ext4_should_order_data(inode)) {
5415 error = ext4_begin_ordered_truncate(inode,
Jan Kara678aaf42008-07-11 19:27:31 -04005416 attr->ia_size);
Jan Karab9c1c262019-05-30 11:56:23 -04005417 if (error)
5418 goto err_out;
5419 }
5420 /*
5421 * Blocks are going to be removed from the inode. Wait
5422 * for dio in flight.
5423 */
5424 inode_dio_wait(inode);
Josef Bacik3da40c72015-06-22 00:31:26 -04005425 }
Jan Karab9c1c262019-05-30 11:56:23 -04005426
5427 down_write(&EXT4_I(inode)->i_mmap_sem);
5428
5429 rc = ext4_break_layouts(inode);
5430 if (rc) {
5431 up_write(&EXT4_I(inode)->i_mmap_sem);
Harshad Shirwadkaraa75f4d2020-10-15 13:37:57 -07005432 goto err_out;
Jan Karab9c1c262019-05-30 11:56:23 -04005433 }
5434
Josef Bacik3da40c72015-06-22 00:31:26 -04005435 if (attr->ia_size != inode->i_size) {
Jan Kara52083862013-08-17 10:07:17 -04005436 handle = ext4_journal_start(inode, EXT4_HT_INODE, 3);
5437 if (IS_ERR(handle)) {
5438 error = PTR_ERR(handle);
Jan Karab9c1c262019-05-30 11:56:23 -04005439 goto out_mmap_sem;
Jan Kara52083862013-08-17 10:07:17 -04005440 }
Josef Bacik3da40c72015-06-22 00:31:26 -04005441 if (ext4_handle_valid(handle) && shrink) {
Jan Kara52083862013-08-17 10:07:17 -04005442 error = ext4_orphan_add(handle, inode);
5443 orphan = 1;
5444 }
Eryu Guan911af572015-07-28 15:08:41 -04005445 /*
5446 * Update c/mtime on truncate up, ext4_truncate() will
5447 * update c/mtime in shrink case below
5448 */
5449 if (!shrink) {
Deepa Dinamanieeca7ea2016-11-14 21:40:10 -05005450 inode->i_mtime = current_time(inode);
Eryu Guan911af572015-07-28 15:08:41 -04005451 inode->i_ctime = inode->i_mtime;
5452 }
Harshad Shirwadkaraa75f4d2020-10-15 13:37:57 -07005453
5454 if (shrink)
Harshad Shirwadkara80f7fc2020-11-05 19:58:53 -08005455 ext4_fc_track_range(handle, inode,
Harshad Shirwadkaraa75f4d2020-10-15 13:37:57 -07005456 (attr->ia_size > 0 ? attr->ia_size - 1 : 0) >>
5457 inode->i_sb->s_blocksize_bits,
5458 (oldsize > 0 ? oldsize - 1 : 0) >>
5459 inode->i_sb->s_blocksize_bits);
5460 else
5461 ext4_fc_track_range(
Harshad Shirwadkara80f7fc2020-11-05 19:58:53 -08005462 handle, inode,
Harshad Shirwadkaraa75f4d2020-10-15 13:37:57 -07005463 (oldsize > 0 ? oldsize - 1 : oldsize) >>
5464 inode->i_sb->s_blocksize_bits,
5465 (attr->ia_size > 0 ? attr->ia_size - 1 : 0) >>
5466 inode->i_sb->s_blocksize_bits);
5467
Jan Kara90e775b2013-08-17 10:09:31 -04005468 down_write(&EXT4_I(inode)->i_data_sem);
Jan Kara52083862013-08-17 10:07:17 -04005469 EXT4_I(inode)->i_disksize = attr->ia_size;
5470 rc = ext4_mark_inode_dirty(handle, inode);
5471 if (!error)
5472 error = rc;
Jan Kara90e775b2013-08-17 10:09:31 -04005473 /*
5474 * We have to update i_size under i_data_sem together
5475 * with i_disksize to avoid races with writeback code
5476 * running ext4_wb_update_i_disksize().
5477 */
5478 if (!error)
5479 i_size_write(inode, attr->ia_size);
5480 up_write(&EXT4_I(inode)->i_data_sem);
Jan Kara52083862013-08-17 10:07:17 -04005481 ext4_journal_stop(handle);
Jan Karab9c1c262019-05-30 11:56:23 -04005482 if (error)
5483 goto out_mmap_sem;
5484 if (!shrink) {
5485 pagecache_isize_extended(inode, oldsize,
5486 inode->i_size);
5487 } else if (ext4_should_journal_data(inode)) {
5488 ext4_wait_for_tail_page_commit(inode);
Jan Kara678aaf42008-07-11 19:27:31 -04005489 }
Jan Karad6320cb2014-10-01 21:49:46 -04005490 }
Ross Zwisler430657b2018-07-29 17:00:22 -04005491
Jan Kara52083862013-08-17 10:07:17 -04005492 /*
5493 * Truncate pagecache after we've waited for commit
5494 * in data=journal mode to make pages freeable.
5495 */
Ross Zwisler923ae0f2015-02-16 15:59:38 -08005496 truncate_pagecache(inode, inode->i_size);
Jan Karab9c1c262019-05-30 11:56:23 -04005497 /*
5498 * Call ext4_truncate() even if i_size didn't change to
5499 * truncate possible preallocated blocks.
5500 */
5501 if (attr->ia_size <= oldsize) {
Theodore Ts'o2c98eb52016-11-13 22:02:26 -05005502 rc = ext4_truncate(inode);
5503 if (rc)
5504 error = rc;
5505 }
Jan Karab9c1c262019-05-30 11:56:23 -04005506out_mmap_sem:
Jan Karaea3d7202015-12-07 14:28:03 -05005507 up_write(&EXT4_I(inode)->i_mmap_sem);
Theodore Ts'o072bd7e2011-05-23 15:13:02 -04005508 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005509
Theodore Ts'o2c98eb52016-11-13 22:02:26 -05005510 if (!error) {
Christoph Hellwig10257742010-06-04 11:30:02 +02005511 setattr_copy(inode, attr);
5512 mark_inode_dirty(inode);
5513 }
5514
5515 /*
5516 * If the call to ext4_truncate failed to get a transaction handle at
5517 * all, we need to clean up the in-core orphan list manually.
5518 */
Dmitry Monakhov3d287de2010-10-27 22:08:46 -04005519 if (orphan && inode->i_nlink)
Mingming Cao617ba132006-10-11 01:20:53 -07005520 ext4_orphan_del(NULL, inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005521
Theodore Ts'o2c98eb52016-11-13 22:02:26 -05005522 if (!error && (ia_valid & ATTR_MODE))
Christoph Hellwig64e178a2013-12-20 05:16:44 -08005523 rc = posix_acl_chmod(inode, inode->i_mode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005524
5525err_out:
Harshad Shirwadkaraa75f4d2020-10-15 13:37:57 -07005526 if (error)
5527 ext4_std_error(inode->i_sb, error);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005528 if (!error)
5529 error = rc;
Harshad Shirwadkaraa75f4d2020-10-15 13:37:57 -07005530 ext4_fc_stop_update(inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005531 return error;
5532}
5533
David Howellsa528d352017-01-31 16:46:22 +00005534int ext4_getattr(const struct path *path, struct kstat *stat,
5535 u32 request_mask, unsigned int query_flags)
Mingming Cao3e3398a2008-07-11 19:27:31 -04005536{
David Howells99652ea2017-03-31 18:31:56 +01005537 struct inode *inode = d_inode(path->dentry);
5538 struct ext4_inode *raw_inode;
5539 struct ext4_inode_info *ei = EXT4_I(inode);
5540 unsigned int flags;
Mingming Cao3e3398a2008-07-11 19:27:31 -04005541
Theodore Ts'od4c5e962019-11-28 22:26:51 -05005542 if ((request_mask & STATX_BTIME) &&
5543 EXT4_FITS_IN_INODE(raw_inode, ei, i_crtime)) {
David Howells99652ea2017-03-31 18:31:56 +01005544 stat->result_mask |= STATX_BTIME;
5545 stat->btime.tv_sec = ei->i_crtime.tv_sec;
5546 stat->btime.tv_nsec = ei->i_crtime.tv_nsec;
5547 }
5548
5549 flags = ei->i_flags & EXT4_FL_USER_VISIBLE;
5550 if (flags & EXT4_APPEND_FL)
5551 stat->attributes |= STATX_ATTR_APPEND;
5552 if (flags & EXT4_COMPR_FL)
5553 stat->attributes |= STATX_ATTR_COMPRESSED;
5554 if (flags & EXT4_ENCRYPT_FL)
5555 stat->attributes |= STATX_ATTR_ENCRYPTED;
5556 if (flags & EXT4_IMMUTABLE_FL)
5557 stat->attributes |= STATX_ATTR_IMMUTABLE;
5558 if (flags & EXT4_NODUMP_FL)
5559 stat->attributes |= STATX_ATTR_NODUMP;
Eric Biggers1f607192019-10-29 13:41:39 -07005560 if (flags & EXT4_VERITY_FL)
5561 stat->attributes |= STATX_ATTR_VERITY;
David Howells99652ea2017-03-31 18:31:56 +01005562
David Howells3209f682017-03-31 18:32:17 +01005563 stat->attributes_mask |= (STATX_ATTR_APPEND |
5564 STATX_ATTR_COMPRESSED |
5565 STATX_ATTR_ENCRYPTED |
5566 STATX_ATTR_IMMUTABLE |
Eric Biggers1f607192019-10-29 13:41:39 -07005567 STATX_ATTR_NODUMP |
5568 STATX_ATTR_VERITY);
David Howells3209f682017-03-31 18:32:17 +01005569
Mingming Cao3e3398a2008-07-11 19:27:31 -04005570 generic_fillattr(inode, stat);
David Howells99652ea2017-03-31 18:31:56 +01005571 return 0;
5572}
5573
5574int ext4_file_getattr(const struct path *path, struct kstat *stat,
5575 u32 request_mask, unsigned int query_flags)
5576{
5577 struct inode *inode = d_inode(path->dentry);
5578 u64 delalloc_blocks;
5579
5580 ext4_getattr(path, stat, request_mask, query_flags);
Mingming Cao3e3398a2008-07-11 19:27:31 -04005581
5582 /*
Andreas Dilger9206c562013-11-11 22:38:12 -05005583 * If there is inline data in the inode, the inode will normally not
5584 * have data blocks allocated (it may have an external xattr block).
5585 * Report at least one sector for such files, so tools like tar, rsync,
Theodore Ts'od67d64f2017-03-25 17:33:31 -04005586 * others don't incorrectly think the file is completely sparse.
Andreas Dilger9206c562013-11-11 22:38:12 -05005587 */
5588 if (unlikely(ext4_has_inline_data(inode)))
5589 stat->blocks += (stat->size + 511) >> 9;
5590
5591 /*
Mingming Cao3e3398a2008-07-11 19:27:31 -04005592 * We can't update i_blocks if the block allocation is delayed
5593 * otherwise in the case of system crash before the real block
5594 * allocation is done, we will have i_blocks inconsistent with
5595 * on-disk file blocks.
5596 * We always keep i_blocks updated together with real
5597 * allocation. But to not confuse with user, stat
5598 * will return the blocks that include the delayed allocation
5599 * blocks for this file.
5600 */
Tao Ma96607552012-05-31 22:54:16 -04005601 delalloc_blocks = EXT4_C2B(EXT4_SB(inode->i_sb),
Andreas Dilger9206c562013-11-11 22:38:12 -05005602 EXT4_I(inode)->i_reserved_data_blocks);
5603 stat->blocks += delalloc_blocks << (inode->i_sb->s_blocksize_bits - 9);
Mingming Cao3e3398a2008-07-11 19:27:31 -04005604 return 0;
5605}
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005606
Jan Karafffb2732013-06-04 13:01:11 -04005607static int ext4_index_trans_blocks(struct inode *inode, int lblocks,
5608 int pextents)
Mingming Caoa02908f2008-08-19 22:16:07 -04005609{
Dmitry Monakhov12e9b892010-05-16 22:00:00 -04005610 if (!(ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS)))
Jan Karafffb2732013-06-04 13:01:11 -04005611 return ext4_ind_trans_blocks(inode, lblocks);
5612 return ext4_ext_index_trans_blocks(inode, pextents);
Mingming Caoa02908f2008-08-19 22:16:07 -04005613}
Theodore Ts'oac51d832008-11-06 16:49:36 -05005614
Mingming Caoa02908f2008-08-19 22:16:07 -04005615/*
5616 * Account for index blocks, block groups bitmaps and block group
5617 * descriptor blocks if modify datablocks and index blocks
5618 * worse case, the indexs blocks spread over different block groups
5619 *
5620 * If datablocks are discontiguous, they are possible to spread over
Anatol Pomozov4907cb72012-09-01 10:31:09 -07005621 * different block groups too. If they are contiguous, with flexbg,
Mingming Caoa02908f2008-08-19 22:16:07 -04005622 * they could still across block group boundary.
5623 *
5624 * Also account for superblock, inode, quota and xattr blocks
5625 */
Tahsin Erdogandec214d2017-06-22 11:44:55 -04005626static int ext4_meta_trans_blocks(struct inode *inode, int lblocks,
Jan Karafffb2732013-06-04 13:01:11 -04005627 int pextents)
Mingming Caoa02908f2008-08-19 22:16:07 -04005628{
Theodore Ts'o8df96752009-05-01 08:50:38 -04005629 ext4_group_t groups, ngroups = ext4_get_groups_count(inode->i_sb);
5630 int gdpblocks;
Mingming Caoa02908f2008-08-19 22:16:07 -04005631 int idxblocks;
5632 int ret = 0;
5633
5634 /*
Jan Karafffb2732013-06-04 13:01:11 -04005635 * How many index blocks need to touch to map @lblocks logical blocks
5636 * to @pextents physical extents?
Mingming Caoa02908f2008-08-19 22:16:07 -04005637 */
Jan Karafffb2732013-06-04 13:01:11 -04005638 idxblocks = ext4_index_trans_blocks(inode, lblocks, pextents);
Mingming Caoa02908f2008-08-19 22:16:07 -04005639
5640 ret = idxblocks;
5641
5642 /*
5643 * Now let's see how many group bitmaps and group descriptors need
5644 * to account
5645 */
Jan Karafffb2732013-06-04 13:01:11 -04005646 groups = idxblocks + pextents;
Mingming Caoa02908f2008-08-19 22:16:07 -04005647 gdpblocks = groups;
Theodore Ts'o8df96752009-05-01 08:50:38 -04005648 if (groups > ngroups)
5649 groups = ngroups;
Mingming Caoa02908f2008-08-19 22:16:07 -04005650 if (groups > EXT4_SB(inode->i_sb)->s_gdb_count)
5651 gdpblocks = EXT4_SB(inode->i_sb)->s_gdb_count;
5652
5653 /* bitmaps and block group descriptor blocks */
5654 ret += groups + gdpblocks;
5655
5656 /* Blocks for super block, inode, quota and xattr blocks */
5657 ret += EXT4_META_TRANS_BLOCKS(inode->i_sb);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005658
5659 return ret;
5660}
5661
5662/*
Lucas De Marchi25985ed2011-03-30 22:57:33 -03005663 * Calculate the total number of credits to reserve to fit
Mingming Caof3bd1f32008-08-19 22:16:03 -04005664 * the modification of a single pages into a single transaction,
5665 * which may include multiple chunks of block allocations.
Mingming Caoa02908f2008-08-19 22:16:07 -04005666 *
Mingming Cao525f4ed2008-08-19 22:15:58 -04005667 * This could be called via ext4_write_begin()
Mingming Caoa02908f2008-08-19 22:16:07 -04005668 *
Mingming Cao525f4ed2008-08-19 22:15:58 -04005669 * We need to consider the worse case, when
Mingming Caoa02908f2008-08-19 22:16:07 -04005670 * one new block per extent.
Mingming Caoa02908f2008-08-19 22:16:07 -04005671 */
5672int ext4_writepage_trans_blocks(struct inode *inode)
5673{
5674 int bpp = ext4_journal_blocks_per_page(inode);
5675 int ret;
5676
Jan Karafffb2732013-06-04 13:01:11 -04005677 ret = ext4_meta_trans_blocks(inode, bpp, bpp);
Mingming Caoa02908f2008-08-19 22:16:07 -04005678
5679 /* Account for data blocks for journalled mode */
5680 if (ext4_should_journal_data(inode))
5681 ret += bpp;
5682 return ret;
5683}
Mingming Caof3bd1f32008-08-19 22:16:03 -04005684
5685/*
5686 * Calculate the journal credits for a chunk of data modification.
5687 *
5688 * This is called from DIO, fallocate or whoever calling
Eric Sandeen79e83032010-07-27 11:56:07 -04005689 * ext4_map_blocks() to map/allocate a chunk of contiguous disk blocks.
Mingming Caof3bd1f32008-08-19 22:16:03 -04005690 *
5691 * journal buffers for data blocks are not included here, as DIO
5692 * and fallocate do no need to journal data buffers.
5693 */
5694int ext4_chunk_trans_blocks(struct inode *inode, int nrblocks)
5695{
5696 return ext4_meta_trans_blocks(inode, nrblocks, 1);
5697}
5698
Mingming Caoa02908f2008-08-19 22:16:07 -04005699/*
Mingming Cao617ba132006-10-11 01:20:53 -07005700 * The caller must have previously called ext4_reserve_inode_write().
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005701 * Give this, we know that the caller already has write access to iloc->bh.
5702 */
Mingming Cao617ba132006-10-11 01:20:53 -07005703int ext4_mark_iloc_dirty(handle_t *handle,
Theodore Ts'ode9a55b2009-06-14 17:45:34 -04005704 struct inode *inode, struct ext4_iloc *iloc)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005705{
5706 int err = 0;
5707
Vasily Averina6758302018-11-06 16:49:50 -05005708 if (unlikely(ext4_forced_shutdown(EXT4_SB(inode->i_sb)))) {
5709 put_bh(iloc->bh);
Theodore Ts'o0db1ff22017-02-05 01:28:48 -05005710 return -EIO;
Vasily Averina6758302018-11-06 16:49:50 -05005711 }
Harshad Shirwadkara80f7fc2020-11-05 19:58:53 -08005712 ext4_fc_track_inode(handle, inode);
Harshad Shirwadkaraa75f4d2020-10-15 13:37:57 -07005713
Theodore Ts'oc64db502012-03-02 12:23:11 -05005714 if (IS_I_VERSION(inode))
Jean Noel Cordenner25ec56b2008-01-28 23:58:27 -05005715 inode_inc_iversion(inode);
5716
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005717 /* the do_update_inode consumes one bh->b_count */
5718 get_bh(iloc->bh);
5719
Mingming Caodab291a2006-10-11 01:21:01 -07005720 /* ext4_do_update_inode() does jbd2_journal_dirty_metadata */
Frank Mayhar830156c2009-09-29 10:07:47 -04005721 err = ext4_do_update_inode(handle, inode, iloc);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005722 put_bh(iloc->bh);
5723 return err;
5724}
5725
5726/*
5727 * On success, We end up with an outstanding reference count against
5728 * iloc->bh. This _must_ be cleaned up later.
5729 */
5730
5731int
Mingming Cao617ba132006-10-11 01:20:53 -07005732ext4_reserve_inode_write(handle_t *handle, struct inode *inode,
5733 struct ext4_iloc *iloc)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005734{
Frank Mayhar03901312009-01-07 00:06:22 -05005735 int err;
5736
Theodore Ts'o0db1ff22017-02-05 01:28:48 -05005737 if (unlikely(ext4_forced_shutdown(EXT4_SB(inode->i_sb))))
5738 return -EIO;
5739
Frank Mayhar03901312009-01-07 00:06:22 -05005740 err = ext4_get_inode_loc(inode, iloc);
5741 if (!err) {
5742 BUFFER_TRACE(iloc->bh, "get_write_access");
5743 err = ext4_journal_get_write_access(handle, iloc->bh);
5744 if (err) {
5745 brelse(iloc->bh);
5746 iloc->bh = NULL;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005747 }
5748 }
Mingming Cao617ba132006-10-11 01:20:53 -07005749 ext4_std_error(inode->i_sb, err);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005750 return err;
5751}
5752
Miao Xiec03b45b2017-08-06 01:00:49 -04005753static int __ext4_expand_extra_isize(struct inode *inode,
5754 unsigned int new_extra_isize,
5755 struct ext4_iloc *iloc,
5756 handle_t *handle, int *no_expand)
5757{
5758 struct ext4_inode *raw_inode;
5759 struct ext4_xattr_ibody_header *header;
Theodore Ts'o4ea99932019-11-07 21:43:41 -05005760 unsigned int inode_size = EXT4_INODE_SIZE(inode->i_sb);
5761 struct ext4_inode_info *ei = EXT4_I(inode);
Miao Xiec03b45b2017-08-06 01:00:49 -04005762 int error;
5763
Theodore Ts'o4ea99932019-11-07 21:43:41 -05005764 /* this was checked at iget time, but double check for good measure */
5765 if ((EXT4_GOOD_OLD_INODE_SIZE + ei->i_extra_isize > inode_size) ||
5766 (ei->i_extra_isize & 3)) {
5767 EXT4_ERROR_INODE(inode, "bad extra_isize %u (inode size %u)",
5768 ei->i_extra_isize,
5769 EXT4_INODE_SIZE(inode->i_sb));
5770 return -EFSCORRUPTED;
5771 }
5772 if ((new_extra_isize < ei->i_extra_isize) ||
5773 (new_extra_isize < 4) ||
5774 (new_extra_isize > inode_size - EXT4_GOOD_OLD_INODE_SIZE))
5775 return -EINVAL; /* Should never happen */
5776
Miao Xiec03b45b2017-08-06 01:00:49 -04005777 raw_inode = ext4_raw_inode(iloc);
5778
5779 header = IHDR(inode, raw_inode);
5780
5781 /* No extended attributes present */
5782 if (!ext4_test_inode_state(inode, EXT4_STATE_XATTR) ||
5783 header->h_magic != cpu_to_le32(EXT4_XATTR_MAGIC)) {
5784 memset((void *)raw_inode + EXT4_GOOD_OLD_INODE_SIZE +
5785 EXT4_I(inode)->i_extra_isize, 0,
5786 new_extra_isize - EXT4_I(inode)->i_extra_isize);
5787 EXT4_I(inode)->i_extra_isize = new_extra_isize;
5788 return 0;
5789 }
5790
5791 /* try to expand with EAs present */
5792 error = ext4_expand_extra_isize_ea(inode, new_extra_isize,
5793 raw_inode, handle);
5794 if (error) {
5795 /*
5796 * Inode size expansion failed; don't try again
5797 */
5798 *no_expand = 1;
5799 }
5800
5801 return error;
5802}
5803
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005804/*
Kalpak Shah6dd4ee72007-07-18 09:19:57 -04005805 * Expand an inode by new_extra_isize bytes.
5806 * Returns 0 on success or negative error number on failure.
5807 */
Miao Xiecf0a5e82017-08-06 00:40:01 -04005808static int ext4_try_to_expand_extra_isize(struct inode *inode,
5809 unsigned int new_extra_isize,
5810 struct ext4_iloc iloc,
5811 handle_t *handle)
Kalpak Shah6dd4ee72007-07-18 09:19:57 -04005812{
Miao Xie3b10fdc2017-08-06 00:27:38 -04005813 int no_expand;
5814 int error;
Kalpak Shah6dd4ee72007-07-18 09:19:57 -04005815
Miao Xiecf0a5e82017-08-06 00:40:01 -04005816 if (ext4_test_inode_state(inode, EXT4_STATE_NO_EXPAND))
5817 return -EOVERFLOW;
5818
5819 /*
5820 * In nojournal mode, we can immediately attempt to expand
5821 * the inode. When journaled, we first need to obtain extra
5822 * buffer credits since we may write into the EA block
5823 * with this same handle. If journal_extend fails, then it will
5824 * only result in a minor loss of functionality for that inode.
5825 * If this is felt to be critical, then e2fsck should be run to
5826 * force a large enough s_min_extra_isize.
5827 */
Jan Kara6cb367c2019-11-05 17:44:14 +01005828 if (ext4_journal_extend(handle,
Jan Kara83448bd2019-11-05 17:44:29 +01005829 EXT4_DATA_TRANS_BLOCKS(inode->i_sb), 0) != 0)
Miao Xiecf0a5e82017-08-06 00:40:01 -04005830 return -ENOSPC;
Kalpak Shah6dd4ee72007-07-18 09:19:57 -04005831
Miao Xie3b10fdc2017-08-06 00:27:38 -04005832 if (ext4_write_trylock_xattr(inode, &no_expand) == 0)
Miao Xiecf0a5e82017-08-06 00:40:01 -04005833 return -EBUSY;
Miao Xie3b10fdc2017-08-06 00:27:38 -04005834
Miao Xiec03b45b2017-08-06 01:00:49 -04005835 error = __ext4_expand_extra_isize(inode, new_extra_isize, &iloc,
5836 handle, &no_expand);
Miao Xie3b10fdc2017-08-06 00:27:38 -04005837 ext4_write_unlock_xattr(inode, &no_expand);
Miao Xiecf0a5e82017-08-06 00:40:01 -04005838
Miao Xie3b10fdc2017-08-06 00:27:38 -04005839 return error;
Kalpak Shah6dd4ee72007-07-18 09:19:57 -04005840}
5841
Miao Xiec03b45b2017-08-06 01:00:49 -04005842int ext4_expand_extra_isize(struct inode *inode,
5843 unsigned int new_extra_isize,
5844 struct ext4_iloc *iloc)
5845{
5846 handle_t *handle;
5847 int no_expand;
5848 int error, rc;
5849
5850 if (ext4_test_inode_state(inode, EXT4_STATE_NO_EXPAND)) {
5851 brelse(iloc->bh);
5852 return -EOVERFLOW;
5853 }
5854
5855 handle = ext4_journal_start(inode, EXT4_HT_INODE,
5856 EXT4_DATA_TRANS_BLOCKS(inode->i_sb));
5857 if (IS_ERR(handle)) {
5858 error = PTR_ERR(handle);
5859 brelse(iloc->bh);
5860 return error;
5861 }
5862
5863 ext4_write_lock_xattr(inode, &no_expand);
5864
zhangyi (F)ddccb6d2019-02-21 11:29:10 -05005865 BUFFER_TRACE(iloc->bh, "get_write_access");
Miao Xiec03b45b2017-08-06 01:00:49 -04005866 error = ext4_journal_get_write_access(handle, iloc->bh);
5867 if (error) {
5868 brelse(iloc->bh);
Dan Carpenter7f420d642019-12-13 21:50:11 +03005869 goto out_unlock;
Miao Xiec03b45b2017-08-06 01:00:49 -04005870 }
5871
5872 error = __ext4_expand_extra_isize(inode, new_extra_isize, iloc,
5873 handle, &no_expand);
5874
5875 rc = ext4_mark_iloc_dirty(handle, inode, iloc);
5876 if (!error)
5877 error = rc;
5878
Dan Carpenter7f420d642019-12-13 21:50:11 +03005879out_unlock:
Miao Xiec03b45b2017-08-06 01:00:49 -04005880 ext4_write_unlock_xattr(inode, &no_expand);
Miao Xiec03b45b2017-08-06 01:00:49 -04005881 ext4_journal_stop(handle);
5882 return error;
5883}
5884
Kalpak Shah6dd4ee72007-07-18 09:19:57 -04005885/*
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005886 * What we do here is to mark the in-core inode as clean with respect to inode
5887 * dirtiness (it may still be data-dirty).
5888 * This means that the in-core inode may be reaped by prune_icache
5889 * without having to perform any I/O. This is a very good thing,
5890 * because *any* task may call prune_icache - even ones which
5891 * have a transaction open against a different journal.
5892 *
5893 * Is this cheating? Not really. Sure, we haven't written the
5894 * inode out, but prune_icache isn't a user-visible syncing function.
5895 * Whenever the user wants stuff synced (sys_sync, sys_msync, sys_fsync)
5896 * we start and wait on commits.
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005897 */
Harshad Shirwadkar4209ae12020-04-26 18:34:37 -07005898int __ext4_mark_inode_dirty(handle_t *handle, struct inode *inode,
5899 const char *func, unsigned int line)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005900{
Mingming Cao617ba132006-10-11 01:20:53 -07005901 struct ext4_iloc iloc;
Kalpak Shah6dd4ee72007-07-18 09:19:57 -04005902 struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb);
Miao Xiecf0a5e82017-08-06 00:40:01 -04005903 int err;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005904
5905 might_sleep();
Theodore Ts'o7ff9c072010-11-08 13:51:33 -05005906 trace_ext4_mark_inode_dirty(inode, _RET_IP_);
Mingming Cao617ba132006-10-11 01:20:53 -07005907 err = ext4_reserve_inode_write(handle, inode, &iloc);
Eryu Guan5e1021f2016-03-12 21:40:32 -05005908 if (err)
Harshad Shirwadkar4209ae12020-04-26 18:34:37 -07005909 goto out;
Miao Xiecf0a5e82017-08-06 00:40:01 -04005910
5911 if (EXT4_I(inode)->i_extra_isize < sbi->s_want_extra_isize)
5912 ext4_try_to_expand_extra_isize(inode, sbi->s_want_extra_isize,
5913 iloc, handle);
5914
Harshad Shirwadkar4209ae12020-04-26 18:34:37 -07005915 err = ext4_mark_iloc_dirty(handle, inode, &iloc);
5916out:
5917 if (unlikely(err))
5918 ext4_error_inode_err(inode, func, line, 0, err,
5919 "mark_inode_dirty error");
5920 return err;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005921}
5922
5923/*
Mingming Cao617ba132006-10-11 01:20:53 -07005924 * ext4_dirty_inode() is called from __mark_inode_dirty()
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005925 *
5926 * We're really interested in the case where a file is being extended.
5927 * i_size has been changed by generic_commit_write() and we thus need
5928 * to include the updated inode in the current transaction.
5929 *
Christoph Hellwig5dd40562010-03-03 09:05:00 -05005930 * Also, dquot_alloc_block() will always dirty the inode when blocks
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005931 * are allocated to the file.
5932 *
5933 * If the inode is marked synchronous, we don't honour that here - doing
5934 * so would cause a commit on atime updates, which we don't bother doing.
5935 * We handle synchronous inodes at the highest possible level.
5936 */
Christoph Hellwigaa385722011-05-27 06:53:02 -04005937void ext4_dirty_inode(struct inode *inode, int flags)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005938{
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005939 handle_t *handle;
5940
Theodore Ts'o9924a922013-02-08 21:59:22 -05005941 handle = ext4_journal_start(inode, EXT4_HT_INODE, 2);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005942 if (IS_ERR(handle))
Eric Biggerse2728c52021-01-12 11:02:47 -08005943 return;
Curt Wohlgemuthf3dc2722009-09-29 16:06:01 -04005944 ext4_mark_inode_dirty(handle, inode);
Mingming Cao617ba132006-10-11 01:20:53 -07005945 ext4_journal_stop(handle);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005946}
5947
Mingming Cao617ba132006-10-11 01:20:53 -07005948int ext4_change_inode_journal_flag(struct inode *inode, int val)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005949{
5950 journal_t *journal;
5951 handle_t *handle;
5952 int err;
Daeho Jeongc8585c62016-04-25 23:22:35 -04005953 struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005954
5955 /*
5956 * We have to be very careful here: changing a data block's
5957 * journaling status dynamically is dangerous. If we write a
5958 * data block to the journal, change the status and then delete
5959 * that block, we risk forgetting to revoke the old log record
5960 * from the journal and so a subsequent replay can corrupt data.
5961 * So, first we make sure that the journal is empty and that
5962 * nobody is changing anything.
5963 */
5964
Mingming Cao617ba132006-10-11 01:20:53 -07005965 journal = EXT4_JOURNAL(inode);
Frank Mayhar03901312009-01-07 00:06:22 -05005966 if (!journal)
5967 return 0;
Dave Hansend6995942007-07-18 08:33:51 -04005968 if (is_journal_aborted(journal))
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005969 return -EROFS;
5970
Dmitry Monakhov17335dc2012-09-29 00:41:21 -04005971 /* Wait for all existing dio workers */
Dmitry Monakhov17335dc2012-09-29 00:41:21 -04005972 inode_dio_wait(inode);
5973
Daeho Jeong4c546592016-04-25 23:21:00 -04005974 /*
5975 * Before flushing the journal and switching inode's aops, we have
5976 * to flush all dirty data the inode has. There can be outstanding
5977 * delayed allocations, there can be unwritten extents created by
5978 * fallocate or buffered writes in dioread_nolock mode covered by
5979 * dirty data which can be converted only after flushing the dirty
5980 * data (and journalled aops don't know how to handle these cases).
5981 */
5982 if (val) {
5983 down_write(&EXT4_I(inode)->i_mmap_sem);
5984 err = filemap_write_and_wait(inode->i_mapping);
5985 if (err < 0) {
5986 up_write(&EXT4_I(inode)->i_mmap_sem);
Daeho Jeong4c546592016-04-25 23:21:00 -04005987 return err;
5988 }
5989 }
5990
Eric Biggersbbd55932020-02-19 10:30:46 -08005991 percpu_down_write(&sbi->s_writepages_rwsem);
Mingming Caodab291a2006-10-11 01:21:01 -07005992 jbd2_journal_lock_updates(journal);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005993
5994 /*
5995 * OK, there are no updates running now, and all cached data is
5996 * synced to disk. We are now in a completely consistent state
5997 * which doesn't have anything in the journal, and we know that
5998 * no filesystem updates are running, so it is safe to modify
5999 * the inode's in-core data-journaling state flag now.
6000 */
6001
6002 if (val)
Dmitry Monakhov12e9b892010-05-16 22:00:00 -04006003 ext4_set_inode_flag(inode, EXT4_INODE_JOURNAL_DATA);
Yongqiang Yang5872dda2011-12-28 13:55:51 -05006004 else {
Jan Kara4f879ca2014-10-30 10:53:17 -04006005 err = jbd2_journal_flush(journal);
6006 if (err < 0) {
6007 jbd2_journal_unlock_updates(journal);
Eric Biggersbbd55932020-02-19 10:30:46 -08006008 percpu_up_write(&sbi->s_writepages_rwsem);
Jan Kara4f879ca2014-10-30 10:53:17 -04006009 return err;
6010 }
Dmitry Monakhov12e9b892010-05-16 22:00:00 -04006011 ext4_clear_inode_flag(inode, EXT4_INODE_JOURNAL_DATA);
Yongqiang Yang5872dda2011-12-28 13:55:51 -05006012 }
Mingming Cao617ba132006-10-11 01:20:53 -07006013 ext4_set_aops(inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07006014
Mingming Caodab291a2006-10-11 01:21:01 -07006015 jbd2_journal_unlock_updates(journal);
Eric Biggersbbd55932020-02-19 10:30:46 -08006016 percpu_up_write(&sbi->s_writepages_rwsem);
Daeho Jeongc8585c62016-04-25 23:22:35 -04006017
Daeho Jeong4c546592016-04-25 23:21:00 -04006018 if (val)
6019 up_write(&EXT4_I(inode)->i_mmap_sem);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07006020
6021 /* Finally we can mark the inode as dirty. */
6022
Theodore Ts'o9924a922013-02-08 21:59:22 -05006023 handle = ext4_journal_start(inode, EXT4_HT_INODE, 1);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07006024 if (IS_ERR(handle))
6025 return PTR_ERR(handle);
6026
Harshad Shirwadkaraa75f4d2020-10-15 13:37:57 -07006027 ext4_fc_mark_ineligible(inode->i_sb,
6028 EXT4_FC_REASON_JOURNAL_FLAG_CHANGE);
Mingming Cao617ba132006-10-11 01:20:53 -07006029 err = ext4_mark_inode_dirty(handle, inode);
Frank Mayhar03901312009-01-07 00:06:22 -05006030 ext4_handle_sync(handle);
Mingming Cao617ba132006-10-11 01:20:53 -07006031 ext4_journal_stop(handle);
6032 ext4_std_error(inode->i_sb, err);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07006033
6034 return err;
6035}
Aneesh Kumar K.V2e9ee852008-07-11 19:27:31 -04006036
6037static int ext4_bh_unmapped(handle_t *handle, struct buffer_head *bh)
6038{
6039 return !buffer_mapped(bh);
6040}
6041
Souptick Joarder401b25a2018-10-02 22:20:50 -04006042vm_fault_t ext4_page_mkwrite(struct vm_fault *vmf)
Aneesh Kumar K.V2e9ee852008-07-11 19:27:31 -04006043{
Dave Jiang11bac802017-02-24 14:56:41 -08006044 struct vm_area_struct *vma = vmf->vma;
Nick Pigginc2ec1752009-03-31 15:23:21 -07006045 struct page *page = vmf->page;
Aneesh Kumar K.V2e9ee852008-07-11 19:27:31 -04006046 loff_t size;
6047 unsigned long len;
Souptick Joarder401b25a2018-10-02 22:20:50 -04006048 int err;
6049 vm_fault_t ret;
Aneesh Kumar K.V2e9ee852008-07-11 19:27:31 -04006050 struct file *file = vma->vm_file;
Al Viro496ad9a2013-01-23 17:07:38 -05006051 struct inode *inode = file_inode(file);
Aneesh Kumar K.V2e9ee852008-07-11 19:27:31 -04006052 struct address_space *mapping = inode->i_mapping;
Jan Kara9ea7df52011-06-24 14:29:41 -04006053 handle_t *handle;
6054 get_block_t *get_block;
6055 int retries = 0;
Aneesh Kumar K.V2e9ee852008-07-11 19:27:31 -04006056
Theodore Ts'o02b016c2019-06-09 22:04:33 -04006057 if (unlikely(IS_IMMUTABLE(inode)))
6058 return VM_FAULT_SIGBUS;
6059
Jan Kara8e8ad8a2012-06-12 16:20:38 +02006060 sb_start_pagefault(inode->i_sb);
Theodore Ts'o041bbb6d2012-09-30 23:04:56 -04006061 file_update_time(vma->vm_file);
Jan Karaea3d7202015-12-07 14:28:03 -05006062
6063 down_read(&EXT4_I(inode)->i_mmap_sem);
Eric Biggers7b4cc972017-04-30 00:10:50 -04006064
Souptick Joarder401b25a2018-10-02 22:20:50 -04006065 err = ext4_convert_inline_data(inode);
6066 if (err)
Eric Biggers7b4cc972017-04-30 00:10:50 -04006067 goto out_ret;
6068
Mauricio Faria de Oliveira64a9f142020-10-05 21:48:40 -03006069 /*
6070 * On data journalling we skip straight to the transaction handle:
6071 * there's no delalloc; page truncated will be checked later; the
6072 * early return w/ all buffers mapped (calculates size/len) can't
6073 * be used; and there's no dioread_nolock, so only ext4_get_block.
6074 */
6075 if (ext4_should_journal_data(inode))
6076 goto retry_alloc;
6077
Jan Kara9ea7df52011-06-24 14:29:41 -04006078 /* Delalloc case is easy... */
6079 if (test_opt(inode->i_sb, DELALLOC) &&
Jan Kara9ea7df52011-06-24 14:29:41 -04006080 !ext4_nonda_switch(inode->i_sb)) {
6081 do {
Souptick Joarder401b25a2018-10-02 22:20:50 -04006082 err = block_page_mkwrite(vma, vmf,
Jan Kara9ea7df52011-06-24 14:29:41 -04006083 ext4_da_get_block_prep);
Souptick Joarder401b25a2018-10-02 22:20:50 -04006084 } while (err == -ENOSPC &&
Jan Kara9ea7df52011-06-24 14:29:41 -04006085 ext4_should_retry_alloc(inode->i_sb, &retries));
6086 goto out_ret;
Aneesh Kumar K.V2e9ee852008-07-11 19:27:31 -04006087 }
Darrick J. Wong0e499892011-05-18 13:55:20 -04006088
6089 lock_page(page);
Jan Kara9ea7df52011-06-24 14:29:41 -04006090 size = i_size_read(inode);
6091 /* Page got truncated from under us? */
6092 if (page->mapping != mapping || page_offset(page) > size) {
6093 unlock_page(page);
6094 ret = VM_FAULT_NOPAGE;
6095 goto out;
Darrick J. Wong0e499892011-05-18 13:55:20 -04006096 }
Aneesh Kumar K.V2e9ee852008-07-11 19:27:31 -04006097
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03006098 if (page->index == size >> PAGE_SHIFT)
6099 len = size & ~PAGE_MASK;
Aneesh Kumar K.V2e9ee852008-07-11 19:27:31 -04006100 else
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03006101 len = PAGE_SIZE;
Aneesh Kumar K.Va827eaf2009-09-09 22:36:03 -04006102 /*
Jan Kara9ea7df52011-06-24 14:29:41 -04006103 * Return if we have all the buffers mapped. This avoids the need to do
6104 * journal_start/journal_stop which can block and take a long time
Mauricio Faria de Oliveira64a9f142020-10-05 21:48:40 -03006105 *
6106 * This cannot be done for data journalling, as we have to add the
6107 * inode to the transaction's list to writeprotect pages on commit.
Aneesh Kumar K.Va827eaf2009-09-09 22:36:03 -04006108 */
Aneesh Kumar K.V2e9ee852008-07-11 19:27:31 -04006109 if (page_has_buffers(page)) {
Tao Maf19d5872012-12-10 14:05:51 -05006110 if (!ext4_walk_page_buffers(NULL, page_buffers(page),
6111 0, len, NULL,
6112 ext4_bh_unmapped)) {
Jan Kara9ea7df52011-06-24 14:29:41 -04006113 /* Wait so that we don't change page under IO */
Darrick J. Wong1d1d1a72013-02-21 16:42:51 -08006114 wait_for_stable_page(page);
Jan Kara9ea7df52011-06-24 14:29:41 -04006115 ret = VM_FAULT_LOCKED;
6116 goto out;
Aneesh Kumar K.Va827eaf2009-09-09 22:36:03 -04006117 }
Aneesh Kumar K.V2e9ee852008-07-11 19:27:31 -04006118 }
Aneesh Kumar K.Va827eaf2009-09-09 22:36:03 -04006119 unlock_page(page);
Jan Kara9ea7df52011-06-24 14:29:41 -04006120 /* OK, we need to fill the hole... */
6121 if (ext4_should_dioread_nolock(inode))
Jan Kara705965b2016-03-08 23:08:10 -05006122 get_block = ext4_get_block_unwritten;
Jan Kara9ea7df52011-06-24 14:29:41 -04006123 else
6124 get_block = ext4_get_block;
6125retry_alloc:
Theodore Ts'o9924a922013-02-08 21:59:22 -05006126 handle = ext4_journal_start(inode, EXT4_HT_WRITE_PAGE,
6127 ext4_writepage_trans_blocks(inode));
Jan Kara9ea7df52011-06-24 14:29:41 -04006128 if (IS_ERR(handle)) {
Nick Pigginc2ec1752009-03-31 15:23:21 -07006129 ret = VM_FAULT_SIGBUS;
Jan Kara9ea7df52011-06-24 14:29:41 -04006130 goto out;
6131 }
Mauricio Faria de Oliveira64a9f142020-10-05 21:48:40 -03006132 /*
6133 * Data journalling can't use block_page_mkwrite() because it
6134 * will set_buffer_dirty() before do_journal_get_write_access()
6135 * thus might hit warning messages for dirty metadata buffers.
6136 */
6137 if (!ext4_should_journal_data(inode)) {
6138 err = block_page_mkwrite(vma, vmf, get_block);
6139 } else {
6140 lock_page(page);
6141 size = i_size_read(inode);
6142 /* Page got truncated from under us? */
6143 if (page->mapping != mapping || page_offset(page) > size) {
Mauricio Faria de Oliveira64a9f142020-10-05 21:48:40 -03006144 ret = VM_FAULT_NOPAGE;
Mauricio Faria de Oliveiraafb585a2020-10-05 21:48:41 -03006145 goto out_error;
Jan Kara9ea7df52011-06-24 14:29:41 -04006146 }
Mauricio Faria de Oliveira64a9f142020-10-05 21:48:40 -03006147
6148 if (page->index == size >> PAGE_SHIFT)
6149 len = size & ~PAGE_MASK;
6150 else
6151 len = PAGE_SIZE;
6152
6153 err = __block_write_begin(page, 0, len, ext4_get_block);
6154 if (!err) {
Mauricio Faria de Oliveiraafb585a2020-10-05 21:48:41 -03006155 ret = VM_FAULT_SIGBUS;
Mauricio Faria de Oliveira64a9f142020-10-05 21:48:40 -03006156 if (ext4_walk_page_buffers(handle, page_buffers(page),
Mauricio Faria de Oliveiraafb585a2020-10-05 21:48:41 -03006157 0, len, NULL, do_journal_get_write_access))
6158 goto out_error;
6159 if (ext4_walk_page_buffers(handle, page_buffers(page),
6160 0, len, NULL, write_end_fn))
6161 goto out_error;
Jan Karab5b18162020-10-27 14:27:51 +01006162 if (ext4_jbd2_inode_add_write(handle, inode,
6163 page_offset(page), len))
Mauricio Faria de Oliveiraafb585a2020-10-05 21:48:41 -03006164 goto out_error;
Mauricio Faria de Oliveira64a9f142020-10-05 21:48:40 -03006165 ext4_set_inode_state(inode, EXT4_STATE_JDATA);
6166 } else {
6167 unlock_page(page);
6168 }
Jan Kara9ea7df52011-06-24 14:29:41 -04006169 }
6170 ext4_journal_stop(handle);
Souptick Joarder401b25a2018-10-02 22:20:50 -04006171 if (err == -ENOSPC && ext4_should_retry_alloc(inode->i_sb, &retries))
Jan Kara9ea7df52011-06-24 14:29:41 -04006172 goto retry_alloc;
6173out_ret:
Souptick Joarder401b25a2018-10-02 22:20:50 -04006174 ret = block_page_mkwrite_return(err);
Jan Kara9ea7df52011-06-24 14:29:41 -04006175out:
Jan Karaea3d7202015-12-07 14:28:03 -05006176 up_read(&EXT4_I(inode)->i_mmap_sem);
Jan Kara8e8ad8a2012-06-12 16:20:38 +02006177 sb_end_pagefault(inode->i_sb);
Aneesh Kumar K.V2e9ee852008-07-11 19:27:31 -04006178 return ret;
Mauricio Faria de Oliveiraafb585a2020-10-05 21:48:41 -03006179out_error:
6180 unlock_page(page);
6181 ext4_journal_stop(handle);
6182 goto out;
Aneesh Kumar K.V2e9ee852008-07-11 19:27:31 -04006183}
Jan Karaea3d7202015-12-07 14:28:03 -05006184
Souptick Joarder401b25a2018-10-02 22:20:50 -04006185vm_fault_t ext4_filemap_fault(struct vm_fault *vmf)
Jan Karaea3d7202015-12-07 14:28:03 -05006186{
Dave Jiang11bac802017-02-24 14:56:41 -08006187 struct inode *inode = file_inode(vmf->vma->vm_file);
Souptick Joarder401b25a2018-10-02 22:20:50 -04006188 vm_fault_t ret;
Jan Karaea3d7202015-12-07 14:28:03 -05006189
6190 down_read(&EXT4_I(inode)->i_mmap_sem);
Souptick Joarder401b25a2018-10-02 22:20:50 -04006191 ret = filemap_fault(vmf);
Jan Karaea3d7202015-12-07 14:28:03 -05006192 up_read(&EXT4_I(inode)->i_mmap_sem);
6193
Souptick Joarder401b25a2018-10-02 22:20:50 -04006194 return ret;
Jan Karaea3d7202015-12-07 14:28:03 -05006195}