blob: 456e8a6b4809b260caf21b147a5cfa51b6f646d7 [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
104static void ext4_inode_csum_set(struct inode *inode, struct ext4_inode *raw,
105 struct ext4_inode_info *ei)
106{
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;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700178
Theodore Ts'o7ff9c072010-11-08 13:51:33 -0500179 trace_ext4_evict_inode(inode);
Jiaying Zhang2581fdc2011-08-13 12:17:13 -0400180
Al Viro0930fcc2010-06-07 13:16:22 -0400181 if (inode->i_nlink) {
Jan Kara2d859db2011-07-26 09:07:11 -0400182 /*
183 * When journalling data dirty buffers are tracked only in the
184 * journal. So although mm thinks everything is clean and
185 * ready for reaping the inode might still have some pages to
186 * write in the running transaction or waiting to be
187 * checkpointed. Thus calling jbd2_journal_invalidatepage()
188 * (via truncate_inode_pages()) to discard these buffers can
189 * cause data loss. Also even if we did not discard these
190 * buffers, we would have no way to find them after the inode
191 * is reaped and thus user could see stale data if he tries to
192 * read them before the transaction is checkpointed. So be
193 * careful and force everything to disk here... We use
194 * ei->i_datasync_tid to store the newest transaction
195 * containing inode's data.
196 *
197 * Note that directories do not have this problem because they
198 * don't use page cache.
199 */
Vegard Nossum6a7fd522016-07-04 11:03:00 -0400200 if (inode->i_ino != EXT4_JOURNAL_INO &&
201 ext4_should_journal_data(inode) &&
Jan Kara3abb1a02017-06-22 23:49:46 -0400202 (S_ISLNK(inode->i_mode) || S_ISREG(inode->i_mode)) &&
203 inode->i_data.nrpages) {
Jan Kara2d859db2011-07-26 09:07:11 -0400204 journal_t *journal = EXT4_SB(inode->i_sb)->s_journal;
205 tid_t commit_tid = EXT4_I(inode)->i_datasync_tid;
206
Theodore Ts'od76a3a772013-04-03 22:02:52 -0400207 jbd2_complete_transaction(journal, commit_tid);
Jan Kara2d859db2011-07-26 09:07:11 -0400208 filemap_write_and_wait(&inode->i_data);
209 }
Johannes Weiner91b0abe2014-04-03 14:47:49 -0700210 truncate_inode_pages_final(&inode->i_data);
Jan Kara5dc23bd2013-06-04 14:46:12 -0400211
Al Viro0930fcc2010-06-07 13:16:22 -0400212 goto no_delete;
213 }
214
Theodore Ts'oe2bfb082014-10-05 22:47:07 -0400215 if (is_bad_inode(inode))
216 goto no_delete;
217 dquot_initialize(inode);
Christoph Hellwig907f4552010-03-03 09:05:06 -0500218
Jan Kara678aaf42008-07-11 19:27:31 -0400219 if (ext4_should_order_data(inode))
220 ext4_begin_ordered_truncate(inode, 0);
Johannes Weiner91b0abe2014-04-03 14:47:49 -0700221 truncate_inode_pages_final(&inode->i_data);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700222
Jan Kara8e8ad8a2012-06-12 16:20:38 +0200223 /*
Jan Karaceff86f2020-04-21 10:54:45 +0200224 * For inodes with journalled data, transaction commit could have
225 * dirtied the inode. Flush worker is ignoring it because of I_FREEING
226 * flag but we still need to remove the inode from the writeback lists.
227 */
228 if (!list_empty_careful(&inode->i_io_list)) {
229 WARN_ON_ONCE(!ext4_should_journal_data(inode));
230 inode_io_list_del(inode);
231 }
232
233 /*
Jan Kara8e8ad8a2012-06-12 16:20:38 +0200234 * Protect us against freezing - iput() caller didn't have to have any
235 * protection against it
236 */
237 sb_start_intwrite(inode->i_sb);
Andreas Dilgere50e5122017-06-21 21:10:32 -0400238
Tahsin Erdogan30a7eb92017-06-22 11:42:09 -0400239 if (!IS_NOQUOTA(inode))
240 extra_credits += EXT4_MAXQUOTAS_DEL_BLOCKS(inode->i_sb);
241
Jan Kara65db8692019-11-05 17:44:12 +0100242 /*
243 * Block bitmap, group descriptor, and inode are accounted in both
244 * ext4_blocks_for_truncate() and extra_credits. So subtract 3.
245 */
Tahsin Erdogan30a7eb92017-06-22 11:42:09 -0400246 handle = ext4_journal_start(inode, EXT4_HT_TRUNCATE,
Jan Kara65db8692019-11-05 17:44:12 +0100247 ext4_blocks_for_truncate(inode) + extra_credits - 3);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700248 if (IS_ERR(handle)) {
Theodore Ts'obc965ab2008-08-02 21:10:38 -0400249 ext4_std_error(inode->i_sb, PTR_ERR(handle));
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700250 /*
251 * If we're going to skip the normal cleanup, we still need to
252 * make sure that the in-core orphan linked list is properly
253 * cleaned up.
254 */
Mingming Cao617ba132006-10-11 01:20:53 -0700255 ext4_orphan_del(NULL, inode);
Jan Kara8e8ad8a2012-06-12 16:20:38 +0200256 sb_end_intwrite(inode->i_sb);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700257 goto no_delete;
258 }
Tahsin Erdogan30a7eb92017-06-22 11:42:09 -0400259
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700260 if (IS_SYNC(inode))
Frank Mayhar03901312009-01-07 00:06:22 -0500261 ext4_handle_sync(handle);
Tahsin Erdogan407cd7f2017-07-04 00:11:21 -0400262
263 /*
264 * Set inode->i_size to 0 before calling ext4_truncate(). We need
265 * special handling of symlinks here because i_size is used to
266 * determine whether ext4_inode_info->i_data contains symlink data or
267 * block mappings. Setting i_size to 0 will remove its fast symlink
268 * status. Erase i_data so that it becomes a valid empty block map.
269 */
270 if (ext4_inode_is_fast_symlink(inode))
271 memset(EXT4_I(inode)->i_data, 0, sizeof(EXT4_I(inode)->i_data));
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700272 inode->i_size = 0;
Theodore Ts'obc965ab2008-08-02 21:10:38 -0400273 err = ext4_mark_inode_dirty(handle, inode);
274 if (err) {
Eric Sandeen12062dd2010-02-15 14:19:27 -0500275 ext4_warning(inode->i_sb,
Theodore Ts'obc965ab2008-08-02 21:10:38 -0400276 "couldn't mark inode dirty (err %d)", err);
277 goto stop_handle;
278 }
Theodore Ts'o2c98eb52016-11-13 22:02:26 -0500279 if (inode->i_blocks) {
280 err = ext4_truncate(inode);
281 if (err) {
Theodore Ts'o54d3adb2020-03-28 19:33:43 -0400282 ext4_error_err(inode->i_sb, -err,
283 "couldn't truncate inode %lu (err %d)",
284 inode->i_ino, err);
Theodore Ts'o2c98eb52016-11-13 22:02:26 -0500285 goto stop_handle;
286 }
287 }
Theodore Ts'obc965ab2008-08-02 21:10:38 -0400288
Tahsin Erdogan30a7eb92017-06-22 11:42:09 -0400289 /* Remove xattr references. */
290 err = ext4_xattr_delete_inode(handle, inode, &ea_inode_array,
291 extra_credits);
292 if (err) {
293 ext4_warning(inode->i_sb, "xattr delete (err %d)", err);
294stop_handle:
295 ext4_journal_stop(handle);
296 ext4_orphan_del(NULL, inode);
297 sb_end_intwrite(inode->i_sb);
298 ext4_xattr_inode_array_free(ea_inode_array);
299 goto no_delete;
Theodore Ts'obc965ab2008-08-02 21:10:38 -0400300 }
301
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700302 /*
Mingming Cao617ba132006-10-11 01:20:53 -0700303 * Kill off the orphan record which ext4_truncate created.
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700304 * AKPM: I think this can be inside the above `if'.
Mingming Cao617ba132006-10-11 01:20:53 -0700305 * Note that ext4_orphan_del() has to be able to cope with the
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700306 * deletion of a non-existent orphan - this is because we don't
Mingming Cao617ba132006-10-11 01:20:53 -0700307 * know if ext4_truncate() actually created an orphan record.
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700308 * (Well, we could do this if we need to, but heck - it works)
309 */
Mingming Cao617ba132006-10-11 01:20:53 -0700310 ext4_orphan_del(handle, inode);
Arnd Bergmann5ffff832018-07-29 15:50:00 -0400311 EXT4_I(inode)->i_dtime = (__u32)ktime_get_real_seconds();
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700312
313 /*
314 * One subtle ordering requirement: if anything has gone wrong
315 * (transaction abort, IO errors, whatever), then we can still
316 * do these next steps (the fs will already have been marked as
317 * having errors), but we can't free the inode if the mark_dirty
318 * fails.
319 */
Mingming Cao617ba132006-10-11 01:20:53 -0700320 if (ext4_mark_inode_dirty(handle, inode))
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700321 /* If that failed, just do the required in-core inode clear. */
Al Viro0930fcc2010-06-07 13:16:22 -0400322 ext4_clear_inode(inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700323 else
Mingming Cao617ba132006-10-11 01:20:53 -0700324 ext4_free_inode(handle, inode);
325 ext4_journal_stop(handle);
Jan Kara8e8ad8a2012-06-12 16:20:38 +0200326 sb_end_intwrite(inode->i_sb);
Tahsin Erdogan0421a182017-06-22 10:26:31 -0400327 ext4_xattr_inode_array_free(ea_inode_array);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700328 return;
329no_delete:
Al Viro0930fcc2010-06-07 13:16:22 -0400330 ext4_clear_inode(inode); /* We must guarantee clearing of inode... */
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700331}
332
Dmitry Monakhova9e7f442009-12-14 15:21:14 +0300333#ifdef CONFIG_QUOTA
334qsize_t *ext4_get_reserved_space(struct inode *inode)
Mingming Cao60e58e02009-01-22 18:13:05 +0100335{
Dmitry Monakhova9e7f442009-12-14 15:21:14 +0300336 return &EXT4_I(inode)->i_reserved_quota;
Mingming Cao60e58e02009-01-22 18:13:05 +0100337}
Dmitry Monakhova9e7f442009-12-14 15:21:14 +0300338#endif
Theodore Ts'o9d0be502010-01-01 02:41:30 -0500339
Aneesh Kumar K.V12219ae2008-07-17 16:12:08 -0400340/*
Theodore Ts'o0637c6f2009-12-30 14:20:45 -0500341 * Called with i_data_sem down, which is important since we can call
342 * ext4_discard_preallocations() from here.
343 */
Aneesh Kumar K.V5f634d02010-01-25 04:00:31 -0500344void ext4_da_update_reserve_space(struct inode *inode,
345 int used, int quota_claim)
Aneesh Kumar K.V12219ae2008-07-17 16:12:08 -0400346{
347 struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb);
Theodore Ts'o0637c6f2009-12-30 14:20:45 -0500348 struct ext4_inode_info *ei = EXT4_I(inode);
Aneesh Kumar K.V12219ae2008-07-17 16:12:08 -0400349
Theodore Ts'o0637c6f2009-12-30 14:20:45 -0500350 spin_lock(&ei->i_block_reservation_lock);
Aditya Kalid8990242011-09-09 19:18:51 -0400351 trace_ext4_da_update_reserve_space(inode, used, quota_claim);
Theodore Ts'o0637c6f2009-12-30 14:20:45 -0500352 if (unlikely(used > ei->i_reserved_data_blocks)) {
Theodore Ts'o8de5c322013-02-14 15:11:41 -0500353 ext4_warning(inode->i_sb, "%s: ino %lu, used %d "
Theodore Ts'o1084f252012-03-19 23:13:43 -0400354 "with only %d reserved data blocks",
Theodore Ts'o0637c6f2009-12-30 14:20:45 -0500355 __func__, inode->i_ino, used,
356 ei->i_reserved_data_blocks);
357 WARN_ON(1);
358 used = ei->i_reserved_data_blocks;
Aneesh Kumar K.V6bc6e632008-10-10 09:39:00 -0400359 }
Aneesh Kumar K.V12219ae2008-07-17 16:12:08 -0400360
Theodore Ts'o0637c6f2009-12-30 14:20:45 -0500361 /* Update per-inode reservations */
362 ei->i_reserved_data_blocks -= used;
Theodore Ts'o71d4f7d2014-07-15 06:02:38 -0400363 percpu_counter_sub(&sbi->s_dirtyclusters_counter, used);
Theodore Ts'o0637c6f2009-12-30 14:20:45 -0500364
Aneesh Kumar K.V12219ae2008-07-17 16:12:08 -0400365 spin_unlock(&EXT4_I(inode)->i_block_reservation_lock);
Mingming Cao60e58e02009-01-22 18:13:05 +0100366
Eric Sandeen72b8ab92010-05-16 11:00:00 -0400367 /* Update quota subsystem for data blocks */
368 if (quota_claim)
Aditya Kali7b415bf2011-09-09 19:04:51 -0400369 dquot_claim_block(inode, EXT4_C2B(sbi, used));
Eric Sandeen72b8ab92010-05-16 11:00:00 -0400370 else {
Aneesh Kumar K.V5f634d02010-01-25 04:00:31 -0500371 /*
372 * We did fallocate with an offset that is already delayed
373 * allocated. So on delayed allocated writeback we should
Eric Sandeen72b8ab92010-05-16 11:00:00 -0400374 * not re-claim the quota for fallocated blocks.
Aneesh Kumar K.V5f634d02010-01-25 04:00:31 -0500375 */
Aditya Kali7b415bf2011-09-09 19:04:51 -0400376 dquot_release_reservation_block(inode, EXT4_C2B(sbi, used));
Aneesh Kumar K.V5f634d02010-01-25 04:00:31 -0500377 }
Aneesh Kumar K.Vd6014302009-03-27 22:36:43 -0400378
379 /*
380 * If we have done all the pending block allocations and if
381 * there aren't any writers on the inode, we can discard the
382 * inode's preallocations.
383 */
Theodore Ts'o0637c6f2009-12-30 14:20:45 -0500384 if ((ei->i_reserved_data_blocks == 0) &&
Nikolay Borisov82dd1242019-02-10 23:04:16 -0500385 !inode_is_open_for_write(inode))
Aneesh Kumar K.Vd6014302009-03-27 22:36:43 -0400386 ext4_discard_preallocations(inode);
Aneesh Kumar K.V12219ae2008-07-17 16:12:08 -0400387}
388
Theodore Ts'oe29136f2010-06-29 12:54:28 -0400389static int __check_block_validity(struct inode *inode, const char *func,
Theodore Ts'oc398eda2010-07-27 11:56:40 -0400390 unsigned int line,
391 struct ext4_map_blocks *map)
Theodore Ts'o6fd058f2009-05-17 15:38:01 -0400392{
Theodore Ts'o345c0db2019-04-09 23:37:08 -0400393 if (ext4_has_feature_journal(inode->i_sb) &&
394 (inode->i_ino ==
395 le32_to_cpu(EXT4_SB(inode->i_sb)->s_es->s_journal_inum)))
396 return 0;
Theodore Ts'o24676da2010-05-16 21:00:00 -0400397 if (!ext4_data_block_valid(EXT4_SB(inode->i_sb), map->m_pblk,
398 map->m_len)) {
Theodore Ts'oc398eda2010-07-27 11:56:40 -0400399 ext4_error_inode(inode, func, line, map->m_pblk,
Theodore Ts'obdbd6ce2018-06-15 12:27:16 -0400400 "lblock %lu mapped to illegal pblock %llu "
Theodore Ts'oc398eda2010-07-27 11:56:40 -0400401 "(length %d)", (unsigned long) map->m_lblk,
Theodore Ts'obdbd6ce2018-06-15 12:27:16 -0400402 map->m_pblk, map->m_len);
Darrick J. Wong6a797d22015-10-17 16:16:04 -0400403 return -EFSCORRUPTED;
Theodore Ts'o6fd058f2009-05-17 15:38:01 -0400404 }
405 return 0;
406}
407
Jan Kara53085fa2015-12-07 15:09:35 -0500408int ext4_issue_zeroout(struct inode *inode, ext4_lblk_t lblk, ext4_fsblk_t pblk,
409 ext4_lblk_t len)
410{
411 int ret;
412
Eric Biggers33b4cc22019-12-26 10:10:22 -0600413 if (IS_ENCRYPTED(inode) && S_ISREG(inode->i_mode))
Jaegeuk Kima7550b32016-07-10 14:01:03 -0400414 return fscrypt_zeroout_range(inode, lblk, pblk, len);
Jan Kara53085fa2015-12-07 15:09:35 -0500415
416 ret = sb_issue_zeroout(inode->i_sb, pblk, len, GFP_NOFS);
417 if (ret > 0)
418 ret = 0;
419
420 return ret;
421}
422
Theodore Ts'oe29136f2010-06-29 12:54:28 -0400423#define check_block_validity(inode, map) \
Theodore Ts'oc398eda2010-07-27 11:56:40 -0400424 __check_block_validity((inode), __func__, __LINE__, (map))
Theodore Ts'oe29136f2010-06-29 12:54:28 -0400425
Dmitry Monakhov921f2662013-03-10 21:01:03 -0400426#ifdef ES_AGGRESSIVE_TEST
427static void ext4_map_blocks_es_recheck(handle_t *handle,
428 struct inode *inode,
429 struct ext4_map_blocks *es_map,
430 struct ext4_map_blocks *map,
431 int flags)
432{
433 int retval;
434
435 map->m_flags = 0;
436 /*
437 * There is a race window that the result is not the same.
438 * e.g. xfstests #223 when dioread_nolock enables. The reason
439 * is that we lookup a block mapping in extent status tree with
440 * out taking i_data_sem. So at the time the unwritten extent
441 * could be converted.
442 */
Jan Kara2dcba472015-12-07 15:04:57 -0500443 down_read(&EXT4_I(inode)->i_data_sem);
Dmitry Monakhov921f2662013-03-10 21:01:03 -0400444 if (ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS)) {
Eric Whitney9e524842020-04-15 16:31:39 -0400445 retval = ext4_ext_map_blocks(handle, inode, map, 0);
Dmitry Monakhov921f2662013-03-10 21:01:03 -0400446 } else {
Eric Whitney9e524842020-04-15 16:31:39 -0400447 retval = ext4_ind_map_blocks(handle, inode, map, 0);
Dmitry Monakhov921f2662013-03-10 21:01:03 -0400448 }
Jan Kara2dcba472015-12-07 15:04:57 -0500449 up_read((&EXT4_I(inode)->i_data_sem));
Dmitry Monakhov921f2662013-03-10 21:01:03 -0400450
451 /*
452 * We don't check m_len because extent will be collpased in status
453 * tree. So the m_len might not equal.
454 */
455 if (es_map->m_lblk != map->m_lblk ||
456 es_map->m_flags != map->m_flags ||
457 es_map->m_pblk != map->m_pblk) {
Theodore Ts'obdafe422013-07-13 00:40:31 -0400458 printk("ES cache assertion failed for inode: %lu "
Dmitry Monakhov921f2662013-03-10 21:01:03 -0400459 "es_cached ex [%d/%d/%llu/%x] != "
460 "found ex [%d/%d/%llu/%x] retval %d flags %x\n",
461 inode->i_ino, es_map->m_lblk, es_map->m_len,
462 es_map->m_pblk, es_map->m_flags, map->m_lblk,
463 map->m_len, map->m_pblk, map->m_flags,
464 retval, flags);
465 }
466}
467#endif /* ES_AGGRESSIVE_TEST */
468
Theodore Ts'o55138e0b2009-09-29 13:31:31 -0400469/*
Theodore Ts'oe35fd662010-05-16 19:00:00 -0400470 * The ext4_map_blocks() function tries to look up the requested blocks,
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -0400471 * and returns if the blocks are already mapped.
Mingming Caof5ab0d12008-02-25 15:29:55 -0500472 *
Mingming Caof5ab0d12008-02-25 15:29:55 -0500473 * Otherwise it takes the write lock of the i_data_sem and allocate blocks
474 * and store the allocated blocks in the result buffer head and mark it
475 * mapped.
476 *
Theodore Ts'oe35fd662010-05-16 19:00:00 -0400477 * If file type is extents based, it will call ext4_ext_map_blocks(),
478 * Otherwise, call with ext4_ind_map_blocks() to handle indirect mapping
Mingming Caof5ab0d12008-02-25 15:29:55 -0500479 * based files
480 *
Jan Karafacab4d2016-03-09 22:54:00 -0500481 * On success, it returns the number of blocks being mapped or allocated. if
482 * create==0 and the blocks are pre-allocated and unwritten, the resulting @map
483 * is marked as unwritten. If the create == 1, it will mark @map as mapped.
Mingming Caof5ab0d12008-02-25 15:29:55 -0500484 *
485 * It returns 0 if plain look up failed (blocks have not been allocated), in
Jan Karafacab4d2016-03-09 22:54:00 -0500486 * that case, @map is returned as unmapped but we still do fill map->m_len to
487 * indicate the length of a hole starting at map->m_lblk.
Mingming Caof5ab0d12008-02-25 15:29:55 -0500488 *
489 * It returns the error in case of allocation failure.
490 */
Theodore Ts'oe35fd662010-05-16 19:00:00 -0400491int ext4_map_blocks(handle_t *handle, struct inode *inode,
492 struct ext4_map_blocks *map, int flags)
Aneesh Kumar K.V0e855ac2008-01-28 23:58:26 -0500493{
Zheng Liud100eef2013-02-18 00:29:59 -0500494 struct extent_status es;
Aneesh Kumar K.V0e855ac2008-01-28 23:58:26 -0500495 int retval;
Lukas Czernerb8a86842014-03-18 18:05:35 -0400496 int ret = 0;
Dmitry Monakhov921f2662013-03-10 21:01:03 -0400497#ifdef ES_AGGRESSIVE_TEST
498 struct ext4_map_blocks orig_map;
499
500 memcpy(&orig_map, map, sizeof(*map));
501#endif
Mingming Caof5ab0d12008-02-25 15:29:55 -0500502
Theodore Ts'oe35fd662010-05-16 19:00:00 -0400503 map->m_flags = 0;
504 ext_debug("ext4_map_blocks(): inode %lu, flag %d, max_blocks %u,"
505 "logical block %lu\n", inode->i_ino, flags, map->m_len,
506 (unsigned long) map->m_lblk);
Zheng Liud100eef2013-02-18 00:29:59 -0500507
Theodore Ts'oe861b5e2014-02-20 12:54:05 -0500508 /*
509 * ext4_map_blocks returns an int, and m_len is an unsigned int
510 */
511 if (unlikely(map->m_len > INT_MAX))
512 map->m_len = INT_MAX;
513
Kazuya Mio4adb6ab2014-04-07 10:53:28 -0400514 /* We can handle the block number less than EXT_MAX_BLOCKS */
515 if (unlikely(map->m_lblk >= EXT_MAX_BLOCKS))
Darrick J. Wong6a797d22015-10-17 16:16:04 -0400516 return -EFSCORRUPTED;
Kazuya Mio4adb6ab2014-04-07 10:53:28 -0400517
Zheng Liud100eef2013-02-18 00:29:59 -0500518 /* Lookup extent status tree firstly */
Theodore Ts'obb5835e2019-08-11 16:32:41 -0400519 if (ext4_es_lookup_extent(inode, map->m_lblk, NULL, &es)) {
Zheng Liud100eef2013-02-18 00:29:59 -0500520 if (ext4_es_is_written(&es) || ext4_es_is_unwritten(&es)) {
521 map->m_pblk = ext4_es_pblock(&es) +
522 map->m_lblk - es.es_lblk;
523 map->m_flags |= ext4_es_is_written(&es) ?
524 EXT4_MAP_MAPPED : EXT4_MAP_UNWRITTEN;
525 retval = es.es_len - (map->m_lblk - es.es_lblk);
526 if (retval > map->m_len)
527 retval = map->m_len;
528 map->m_len = retval;
529 } else if (ext4_es_is_delayed(&es) || ext4_es_is_hole(&es)) {
Jan Karafacab4d2016-03-09 22:54:00 -0500530 map->m_pblk = 0;
531 retval = es.es_len - (map->m_lblk - es.es_lblk);
532 if (retval > map->m_len)
533 retval = map->m_len;
534 map->m_len = retval;
Zheng Liud100eef2013-02-18 00:29:59 -0500535 retval = 0;
536 } else {
Arnd Bergmann1e83bc82019-04-07 12:24:43 -0400537 BUG();
Zheng Liud100eef2013-02-18 00:29:59 -0500538 }
Dmitry Monakhov921f2662013-03-10 21:01:03 -0400539#ifdef ES_AGGRESSIVE_TEST
540 ext4_map_blocks_es_recheck(handle, inode, map,
541 &orig_map, flags);
542#endif
Zheng Liud100eef2013-02-18 00:29:59 -0500543 goto found;
544 }
545
Aneesh Kumar K.V4df3d262008-01-28 23:58:29 -0500546 /*
Theodore Ts'ob920c752009-05-14 00:54:29 -0400547 * Try to see if we can get the block without requesting a new
548 * file system block.
Aneesh Kumar K.V4df3d262008-01-28 23:58:29 -0500549 */
Jan Kara2dcba472015-12-07 15:04:57 -0500550 down_read(&EXT4_I(inode)->i_data_sem);
Dmitry Monakhov12e9b892010-05-16 22:00:00 -0400551 if (ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS)) {
Eric Whitney9e524842020-04-15 16:31:39 -0400552 retval = ext4_ext_map_blocks(handle, inode, map, 0);
Aneesh Kumar K.V0e855ac2008-01-28 23:58:26 -0500553 } else {
Eric Whitney9e524842020-04-15 16:31:39 -0400554 retval = ext4_ind_map_blocks(handle, inode, map, 0);
Aneesh Kumar K.V0e855ac2008-01-28 23:58:26 -0500555 }
Zheng Liuf7fec032013-02-18 00:28:47 -0500556 if (retval > 0) {
Theodore Ts'o3be78c72013-08-16 21:22:41 -0400557 unsigned int status;
Zheng Liuf7fec032013-02-18 00:28:47 -0500558
Zheng Liu44fb851d2013-07-29 12:51:42 -0400559 if (unlikely(retval != map->m_len)) {
560 ext4_warning(inode->i_sb,
561 "ES len assertion failed for inode "
562 "%lu: retval %d != map->m_len %d",
563 inode->i_ino, retval, map->m_len);
564 WARN_ON(1);
Dmitry Monakhov921f2662013-03-10 21:01:03 -0400565 }
Dmitry Monakhov921f2662013-03-10 21:01:03 -0400566
Zheng Liuf7fec032013-02-18 00:28:47 -0500567 status = map->m_flags & EXT4_MAP_UNWRITTEN ?
568 EXTENT_STATUS_UNWRITTEN : EXTENT_STATUS_WRITTEN;
569 if (!(flags & EXT4_GET_BLOCKS_DELALLOC_RESERVE) &&
Lukas Czernerd2dc3172015-05-02 21:36:55 -0400570 !(status & EXTENT_STATUS_WRITTEN) &&
Eric Whitneyad431022018-10-01 14:10:39 -0400571 ext4_es_scan_range(inode, &ext4_es_is_delayed, map->m_lblk,
572 map->m_lblk + map->m_len - 1))
Zheng Liuf7fec032013-02-18 00:28:47 -0500573 status |= EXTENT_STATUS_DELAYED;
574 ret = ext4_es_insert_extent(inode, map->m_lblk,
575 map->m_len, map->m_pblk, status);
576 if (ret < 0)
577 retval = ret;
578 }
Jan Kara2dcba472015-12-07 15:04:57 -0500579 up_read((&EXT4_I(inode)->i_data_sem));
Mingming Caof5ab0d12008-02-25 15:29:55 -0500580
Zheng Liud100eef2013-02-18 00:29:59 -0500581found:
Theodore Ts'oe35fd662010-05-16 19:00:00 -0400582 if (retval > 0 && map->m_flags & EXT4_MAP_MAPPED) {
Lukas Czernerb8a86842014-03-18 18:05:35 -0400583 ret = check_block_validity(inode, map);
Theodore Ts'o6fd058f2009-05-17 15:38:01 -0400584 if (ret != 0)
585 return ret;
586 }
587
Mingming Caof5ab0d12008-02-25 15:29:55 -0500588 /* If it is only a block(s) look up */
Theodore Ts'oc2177052009-05-14 00:58:52 -0400589 if ((flags & EXT4_GET_BLOCKS_CREATE) == 0)
Aneesh Kumar K.V4df3d262008-01-28 23:58:29 -0500590 return retval;
591
592 /*
Mingming Caof5ab0d12008-02-25 15:29:55 -0500593 * Returns if the blocks have already allocated
594 *
595 * Note that if blocks have been preallocated
Tao Madf3ab172011-10-08 15:53:49 -0400596 * ext4_ext_get_block() returns the create = 0
Mingming Caof5ab0d12008-02-25 15:29:55 -0500597 * with buffer head unmapped.
598 */
Theodore Ts'oe35fd662010-05-16 19:00:00 -0400599 if (retval > 0 && map->m_flags & EXT4_MAP_MAPPED)
Lukas Czernerb8a86842014-03-18 18:05:35 -0400600 /*
601 * If we need to convert extent to unwritten
602 * we continue and do the actual work in
603 * ext4_ext_map_blocks()
604 */
605 if (!(flags & EXT4_GET_BLOCKS_CONVERT_UNWRITTEN))
606 return retval;
Mingming Caof5ab0d12008-02-25 15:29:55 -0500607
608 /*
Zheng Liua25a4e12013-02-18 00:28:04 -0500609 * Here we clear m_flags because after allocating an new extent,
610 * it will be set again.
Aneesh Kumar K.V2a8964d2009-05-14 17:05:39 -0400611 */
Zheng Liua25a4e12013-02-18 00:28:04 -0500612 map->m_flags &= ~EXT4_MAP_FLAGS;
Aneesh Kumar K.V2a8964d2009-05-14 17:05:39 -0400613
614 /*
Lukas Czerner556615d2014-04-20 23:45:47 -0400615 * New blocks allocate and/or writing to unwritten extent
Mingming Caof5ab0d12008-02-25 15:29:55 -0500616 * will possibly result in updating i_data, so we take
Seunghun Leed91bd2c2014-09-01 22:15:30 -0400617 * the write lock of i_data_sem, and call get_block()
Mingming Caof5ab0d12008-02-25 15:29:55 -0500618 * with create == 1 flag.
Aneesh Kumar K.V4df3d262008-01-28 23:58:29 -0500619 */
Lukas Czernerc8b459f2014-05-12 12:55:07 -0400620 down_write(&EXT4_I(inode)->i_data_sem);
Mingming Caod2a17632008-07-14 17:52:37 -0400621
622 /*
Aneesh Kumar K.V4df3d262008-01-28 23:58:29 -0500623 * We need to check for EXT4 here because migrate
624 * could have changed the inode type in between
625 */
Dmitry Monakhov12e9b892010-05-16 22:00:00 -0400626 if (ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS)) {
Theodore Ts'oe35fd662010-05-16 19:00:00 -0400627 retval = ext4_ext_map_blocks(handle, inode, map, flags);
Aneesh Kumar K.V0e855ac2008-01-28 23:58:26 -0500628 } else {
Theodore Ts'oe35fd662010-05-16 19:00:00 -0400629 retval = ext4_ind_map_blocks(handle, inode, map, flags);
Aneesh Kumar K.V267e4db2008-04-29 08:11:12 -0400630
Theodore Ts'oe35fd662010-05-16 19:00:00 -0400631 if (retval > 0 && map->m_flags & EXT4_MAP_NEW) {
Aneesh Kumar K.V267e4db2008-04-29 08:11:12 -0400632 /*
633 * We allocated new blocks which will result in
634 * i_data's format changing. Force the migrate
635 * to fail by clearing migrate flags
636 */
Theodore Ts'o19f5fb72010-01-24 14:34:07 -0500637 ext4_clear_inode_state(inode, EXT4_STATE_EXT_MIGRATE);
Aneesh Kumar K.V267e4db2008-04-29 08:11:12 -0400638 }
Mingming Caod2a17632008-07-14 17:52:37 -0400639
Aneesh Kumar K.V5f634d02010-01-25 04:00:31 -0500640 /*
641 * Update reserved blocks/metadata blocks after successful
642 * block allocation which had been deferred till now. We don't
643 * support fallocate for non extent files. So we can update
644 * reserve space here.
645 */
646 if ((retval > 0) &&
Aneesh Kumar K.V1296cc82010-01-15 01:27:59 -0500647 (flags & EXT4_GET_BLOCKS_DELALLOC_RESERVE))
Aneesh Kumar K.V5f634d02010-01-25 04:00:31 -0500648 ext4_da_update_reserve_space(inode, retval, 1);
649 }
Theodore Ts'o2ac3b6e2009-05-14 13:57:08 -0400650
Zheng Liuf7fec032013-02-18 00:28:47 -0500651 if (retval > 0) {
Theodore Ts'o3be78c72013-08-16 21:22:41 -0400652 unsigned int status;
Zheng Liuf7fec032013-02-18 00:28:47 -0500653
Zheng Liu44fb851d2013-07-29 12:51:42 -0400654 if (unlikely(retval != map->m_len)) {
655 ext4_warning(inode->i_sb,
656 "ES len assertion failed for inode "
657 "%lu: retval %d != map->m_len %d",
658 inode->i_ino, retval, map->m_len);
659 WARN_ON(1);
Dmitry Monakhov921f2662013-03-10 21:01:03 -0400660 }
Dmitry Monakhov921f2662013-03-10 21:01:03 -0400661
Zheng Liuadb23552013-03-10 21:13:05 -0400662 /*
Jan Karac86d8db2015-12-07 15:10:26 -0500663 * We have to zeroout blocks before inserting them into extent
664 * status tree. Otherwise someone could look them up there and
Jan Kara9b623df2016-09-30 02:02:29 -0400665 * use them before they are really zeroed. We also have to
666 * unmap metadata before zeroing as otherwise writeback can
667 * overwrite zeros with stale data from block device.
Jan Karac86d8db2015-12-07 15:10:26 -0500668 */
669 if (flags & EXT4_GET_BLOCKS_ZERO &&
670 map->m_flags & EXT4_MAP_MAPPED &&
671 map->m_flags & EXT4_MAP_NEW) {
672 ret = ext4_issue_zeroout(inode, map->m_lblk,
673 map->m_pblk, map->m_len);
674 if (ret) {
675 retval = ret;
676 goto out_sem;
677 }
678 }
679
680 /*
Zheng Liuadb23552013-03-10 21:13:05 -0400681 * If the extent has been zeroed out, we don't need to update
682 * extent status tree.
683 */
684 if ((flags & EXT4_GET_BLOCKS_PRE_IO) &&
Theodore Ts'obb5835e2019-08-11 16:32:41 -0400685 ext4_es_lookup_extent(inode, map->m_lblk, NULL, &es)) {
Zheng Liuadb23552013-03-10 21:13:05 -0400686 if (ext4_es_is_written(&es))
Jan Karac86d8db2015-12-07 15:10:26 -0500687 goto out_sem;
Zheng Liuadb23552013-03-10 21:13:05 -0400688 }
Zheng Liuf7fec032013-02-18 00:28:47 -0500689 status = map->m_flags & EXT4_MAP_UNWRITTEN ?
690 EXTENT_STATUS_UNWRITTEN : EXTENT_STATUS_WRITTEN;
691 if (!(flags & EXT4_GET_BLOCKS_DELALLOC_RESERVE) &&
Lukas Czernerd2dc3172015-05-02 21:36:55 -0400692 !(status & EXTENT_STATUS_WRITTEN) &&
Eric Whitneyad431022018-10-01 14:10:39 -0400693 ext4_es_scan_range(inode, &ext4_es_is_delayed, map->m_lblk,
694 map->m_lblk + map->m_len - 1))
Zheng Liuf7fec032013-02-18 00:28:47 -0500695 status |= EXTENT_STATUS_DELAYED;
696 ret = ext4_es_insert_extent(inode, map->m_lblk, map->m_len,
697 map->m_pblk, status);
Jan Karac86d8db2015-12-07 15:10:26 -0500698 if (ret < 0) {
Zheng Liuf7fec032013-02-18 00:28:47 -0500699 retval = ret;
Jan Karac86d8db2015-12-07 15:10:26 -0500700 goto out_sem;
701 }
Aditya Kali5356f2612011-09-09 19:20:51 -0400702 }
703
Jan Karac86d8db2015-12-07 15:10:26 -0500704out_sem:
Aneesh Kumar K.V4df3d262008-01-28 23:58:29 -0500705 up_write((&EXT4_I(inode)->i_data_sem));
Theodore Ts'oe35fd662010-05-16 19:00:00 -0400706 if (retval > 0 && map->m_flags & EXT4_MAP_MAPPED) {
Lukas Czernerb8a86842014-03-18 18:05:35 -0400707 ret = check_block_validity(inode, map);
Theodore Ts'o6fd058f2009-05-17 15:38:01 -0400708 if (ret != 0)
709 return ret;
Jan Kara06bd3c32016-04-24 00:56:03 -0400710
711 /*
712 * Inodes with freshly allocated blocks where contents will be
713 * visible after transaction commit must be on transaction's
714 * ordered data list.
715 */
716 if (map->m_flags & EXT4_MAP_NEW &&
717 !(map->m_flags & EXT4_MAP_UNWRITTEN) &&
718 !(flags & EXT4_GET_BLOCKS_ZERO) &&
Tahsin Erdogan02749a42017-06-22 11:31:25 -0400719 !ext4_is_quota_file(inode) &&
Jan Kara06bd3c32016-04-24 00:56:03 -0400720 ext4_should_order_data(inode)) {
Ross Zwisler73131fb2019-06-20 17:26:26 -0400721 loff_t start_byte =
722 (loff_t)map->m_lblk << inode->i_blkbits;
723 loff_t length = (loff_t)map->m_len << inode->i_blkbits;
724
Jan Karaee0876b2016-04-24 00:56:08 -0400725 if (flags & EXT4_GET_BLOCKS_IO_SUBMIT)
Ross Zwisler73131fb2019-06-20 17:26:26 -0400726 ret = ext4_jbd2_inode_add_wait(handle, inode,
727 start_byte, length);
Jan Karaee0876b2016-04-24 00:56:08 -0400728 else
Ross Zwisler73131fb2019-06-20 17:26:26 -0400729 ret = ext4_jbd2_inode_add_write(handle, inode,
730 start_byte, length);
Jan Kara06bd3c32016-04-24 00:56:03 -0400731 if (ret)
732 return ret;
733 }
Theodore Ts'o6fd058f2009-05-17 15:38:01 -0400734 }
Aneesh Kumar K.V0e855ac2008-01-28 23:58:26 -0500735 return retval;
736}
737
Jan Karaed8ad832016-02-19 00:18:25 -0500738/*
739 * Update EXT4_MAP_FLAGS in bh->b_state. For buffer heads attached to pages
740 * we have to be careful as someone else may be manipulating b_state as well.
741 */
742static void ext4_update_bh_state(struct buffer_head *bh, unsigned long flags)
743{
744 unsigned long old_state;
745 unsigned long new_state;
746
747 flags &= EXT4_MAP_FLAGS;
748
749 /* Dummy buffer_head? Set non-atomically. */
750 if (!bh->b_page) {
751 bh->b_state = (bh->b_state & ~EXT4_MAP_FLAGS) | flags;
752 return;
753 }
754 /*
755 * Someone else may be modifying b_state. Be careful! This is ugly but
756 * once we get rid of using bh as a container for mapping information
757 * to pass to / from get_block functions, this can go away.
758 */
759 do {
760 old_state = READ_ONCE(bh->b_state);
761 new_state = (old_state & ~EXT4_MAP_FLAGS) | flags;
762 } while (unlikely(
763 cmpxchg(&bh->b_state, old_state, new_state) != old_state));
764}
765
Theodore Ts'o2ed88682010-05-16 20:00:00 -0400766static int _ext4_get_block(struct inode *inode, sector_t iblock,
767 struct buffer_head *bh, int flags)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700768{
Theodore Ts'o2ed88682010-05-16 20:00:00 -0400769 struct ext4_map_blocks map;
Jan Karaefe70c22016-03-08 23:35:46 -0500770 int ret = 0;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700771
Tao Ma46c7f252012-12-10 14:04:52 -0500772 if (ext4_has_inline_data(inode))
773 return -ERANGE;
774
Theodore Ts'o2ed88682010-05-16 20:00:00 -0400775 map.m_lblk = iblock;
776 map.m_len = bh->b_size >> inode->i_blkbits;
777
Jan Karaefe70c22016-03-08 23:35:46 -0500778 ret = ext4_map_blocks(ext4_journal_current_handle(), inode, &map,
779 flags);
Jan Kara7fb54092008-02-10 01:08:38 -0500780 if (ret > 0) {
Theodore Ts'o2ed88682010-05-16 20:00:00 -0400781 map_bh(bh, inode->i_sb, map.m_pblk);
Jan Karaed8ad832016-02-19 00:18:25 -0500782 ext4_update_bh_state(bh, map.m_flags);
Theodore Ts'o2ed88682010-05-16 20:00:00 -0400783 bh->b_size = inode->i_sb->s_blocksize * map.m_len;
Jan Kara7fb54092008-02-10 01:08:38 -0500784 ret = 0;
Ross Zwisler547edce2016-11-08 11:30:58 +1100785 } else if (ret == 0) {
786 /* hole case, need to fill in bh->b_size */
787 bh->b_size = inode->i_sb->s_blocksize * map.m_len;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700788 }
789 return ret;
790}
791
Theodore Ts'o2ed88682010-05-16 20:00:00 -0400792int ext4_get_block(struct inode *inode, sector_t iblock,
793 struct buffer_head *bh, int create)
794{
795 return _ext4_get_block(inode, iblock, bh,
796 create ? EXT4_GET_BLOCKS_CREATE : 0);
797}
798
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700799/*
Jan Kara705965b2016-03-08 23:08:10 -0500800 * Get block function used when preparing for buffered write if we require
801 * creating an unwritten extent if blocks haven't been allocated. The extent
802 * will be converted to written after the IO is complete.
803 */
804int ext4_get_block_unwritten(struct inode *inode, sector_t iblock,
805 struct buffer_head *bh_result, int create)
806{
807 ext4_debug("ext4_get_block_unwritten: inode %lu, create flag %d\n",
808 inode->i_ino, create);
809 return _ext4_get_block(inode, iblock, bh_result,
810 EXT4_GET_BLOCKS_IO_CREATE_EXT);
811}
812
Jan Karaefe70c22016-03-08 23:35:46 -0500813/* Maximum number of blocks we map for direct IO at once. */
814#define DIO_MAX_BLOCKS 4096
815
Jan Karae84dfbe2016-04-01 02:07:22 -0400816/*
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700817 * `handle' can be NULL if create is zero
818 */
Mingming Cao617ba132006-10-11 01:20:53 -0700819struct buffer_head *ext4_getblk(handle_t *handle, struct inode *inode,
Theodore Ts'oc5e298a2015-06-21 01:25:29 -0400820 ext4_lblk_t block, int map_flags)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700821{
Theodore Ts'o2ed88682010-05-16 20:00:00 -0400822 struct ext4_map_blocks map;
823 struct buffer_head *bh;
Theodore Ts'oc5e298a2015-06-21 01:25:29 -0400824 int create = map_flags & EXT4_GET_BLOCKS_CREATE;
Theodore Ts'o10560082014-08-29 20:51:32 -0400825 int err;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700826
827 J_ASSERT(handle != NULL || create == 0);
828
Theodore Ts'o2ed88682010-05-16 20:00:00 -0400829 map.m_lblk = block;
830 map.m_len = 1;
Theodore Ts'oc5e298a2015-06-21 01:25:29 -0400831 err = ext4_map_blocks(handle, inode, &map, map_flags);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700832
Theodore Ts'o10560082014-08-29 20:51:32 -0400833 if (err == 0)
834 return create ? ERR_PTR(-ENOSPC) : NULL;
Theodore Ts'o2ed88682010-05-16 20:00:00 -0400835 if (err < 0)
Theodore Ts'o10560082014-08-29 20:51:32 -0400836 return ERR_PTR(err);
Theodore Ts'o2ed88682010-05-16 20:00:00 -0400837
838 bh = sb_getblk(inode->i_sb, map.m_pblk);
Theodore Ts'o10560082014-08-29 20:51:32 -0400839 if (unlikely(!bh))
840 return ERR_PTR(-ENOMEM);
Theodore Ts'o2ed88682010-05-16 20:00:00 -0400841 if (map.m_flags & EXT4_MAP_NEW) {
842 J_ASSERT(create != 0);
843 J_ASSERT(handle != NULL);
844
845 /*
846 * Now that we do not always journal data, we should
847 * keep in mind whether this should always journal the
848 * new buffer as metadata. For now, regular file
849 * writes use ext4_get_block instead, so it's not a
850 * problem.
851 */
852 lock_buffer(bh);
853 BUFFER_TRACE(bh, "call get_create_access");
Theodore Ts'o10560082014-08-29 20:51:32 -0400854 err = ext4_journal_get_create_access(handle, bh);
855 if (unlikely(err)) {
856 unlock_buffer(bh);
857 goto errout;
858 }
859 if (!buffer_uptodate(bh)) {
Theodore Ts'o2ed88682010-05-16 20:00:00 -0400860 memset(bh->b_data, 0, inode->i_sb->s_blocksize);
861 set_buffer_uptodate(bh);
862 }
863 unlock_buffer(bh);
864 BUFFER_TRACE(bh, "call ext4_handle_dirty_metadata");
865 err = ext4_handle_dirty_metadata(handle, inode, bh);
Theodore Ts'o10560082014-08-29 20:51:32 -0400866 if (unlikely(err))
867 goto errout;
868 } else
Theodore Ts'o2ed88682010-05-16 20:00:00 -0400869 BUFFER_TRACE(bh, "not a new buffer");
Theodore Ts'o2ed88682010-05-16 20:00:00 -0400870 return bh;
Theodore Ts'o10560082014-08-29 20:51:32 -0400871errout:
872 brelse(bh);
873 return ERR_PTR(err);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700874}
875
Mingming Cao617ba132006-10-11 01:20:53 -0700876struct buffer_head *ext4_bread(handle_t *handle, struct inode *inode,
Theodore Ts'oc5e298a2015-06-21 01:25:29 -0400877 ext4_lblk_t block, int map_flags)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700878{
Theodore Ts'oaf5bc922008-09-08 22:25:24 -0400879 struct buffer_head *bh;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700880
Theodore Ts'oc5e298a2015-06-21 01:25:29 -0400881 bh = ext4_getblk(handle, inode, block, map_flags);
Theodore Ts'o1c215022014-08-29 20:52:15 -0400882 if (IS_ERR(bh))
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700883 return bh;
ZhangXiaoxu7963e5a2019-08-22 23:00:32 -0400884 if (!bh || ext4_buffer_uptodate(bh))
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700885 return bh;
Mike Christiedfec8a12016-06-05 14:31:44 -0500886 ll_rw_block(REQ_OP_READ, REQ_META | REQ_PRIO, 1, &bh);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700887 wait_on_buffer(bh);
888 if (buffer_uptodate(bh))
889 return bh;
890 put_bh(bh);
Theodore Ts'o1c215022014-08-29 20:52:15 -0400891 return ERR_PTR(-EIO);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700892}
893
Tahsin Erdogan9699d4f2017-08-06 00:07:01 -0400894/* Read a contiguous batch of blocks. */
895int ext4_bread_batch(struct inode *inode, ext4_lblk_t block, int bh_count,
896 bool wait, struct buffer_head **bhs)
897{
898 int i, err;
899
900 for (i = 0; i < bh_count; i++) {
901 bhs[i] = ext4_getblk(NULL, inode, block + i, 0 /* map_flags */);
902 if (IS_ERR(bhs[i])) {
903 err = PTR_ERR(bhs[i]);
904 bh_count = i;
905 goto out_brelse;
906 }
907 }
908
909 for (i = 0; i < bh_count; i++)
910 /* Note that NULL bhs[i] is valid because of holes. */
ZhangXiaoxu7963e5a2019-08-22 23:00:32 -0400911 if (bhs[i] && !ext4_buffer_uptodate(bhs[i]))
Tahsin Erdogan9699d4f2017-08-06 00:07:01 -0400912 ll_rw_block(REQ_OP_READ, REQ_META | REQ_PRIO, 1,
913 &bhs[i]);
914
915 if (!wait)
916 return 0;
917
918 for (i = 0; i < bh_count; i++)
919 if (bhs[i])
920 wait_on_buffer(bhs[i]);
921
922 for (i = 0; i < bh_count; i++) {
923 if (bhs[i] && !buffer_uptodate(bhs[i])) {
924 err = -EIO;
925 goto out_brelse;
926 }
927 }
928 return 0;
929
930out_brelse:
931 for (i = 0; i < bh_count; i++) {
932 brelse(bhs[i]);
933 bhs[i] = NULL;
934 }
935 return err;
936}
937
Tao Maf19d5872012-12-10 14:05:51 -0500938int ext4_walk_page_buffers(handle_t *handle,
939 struct buffer_head *head,
940 unsigned from,
941 unsigned to,
942 int *partial,
943 int (*fn)(handle_t *handle,
944 struct buffer_head *bh))
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700945{
946 struct buffer_head *bh;
947 unsigned block_start, block_end;
948 unsigned blocksize = head->b_size;
949 int err, ret = 0;
950 struct buffer_head *next;
951
Theodore Ts'oaf5bc922008-09-08 22:25:24 -0400952 for (bh = head, block_start = 0;
953 ret == 0 && (bh != head || !block_start);
Theodore Ts'ode9a55b2009-06-14 17:45:34 -0400954 block_start = block_end, bh = next) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700955 next = bh->b_this_page;
956 block_end = block_start + blocksize;
957 if (block_end <= from || block_start >= to) {
958 if (partial && !buffer_uptodate(bh))
959 *partial = 1;
960 continue;
961 }
962 err = (*fn)(handle, bh);
963 if (!ret)
964 ret = err;
965 }
966 return ret;
967}
968
969/*
970 * To preserve ordering, it is essential that the hole instantiation and
971 * the data write be encapsulated in a single transaction. We cannot
Mingming Cao617ba132006-10-11 01:20:53 -0700972 * close off a transaction and start a new one between the ext4_get_block()
Mingming Caodab291a2006-10-11 01:21:01 -0700973 * and the commit_write(). So doing the jbd2_journal_start at the start of
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700974 * prepare_write() is the right place.
975 *
Jan Kara36ade452013-01-28 09:30:52 -0500976 * Also, this function can nest inside ext4_writepage(). In that case, we
977 * *know* that ext4_writepage() has generated enough buffer credits to do the
978 * whole page. So we won't block on the journal in that case, which is good,
979 * because the caller may be PF_MEMALLOC.
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700980 *
Mingming Cao617ba132006-10-11 01:20:53 -0700981 * By accident, ext4 can be reentered when a transaction is open via
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700982 * quota file writes. If we were to commit the transaction while thus
983 * reentered, there can be a deadlock - we would be holding a quota
984 * lock, and the commit would never complete if another thread had a
985 * transaction open and was blocking on the quota lock - a ranking
986 * violation.
987 *
Mingming Caodab291a2006-10-11 01:21:01 -0700988 * So what we do is to rely on the fact that jbd2_journal_stop/journal_start
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700989 * will _not_ run commit under these circumstances because handle->h_ref
990 * is elevated. We'll still have enough credits for the tiny quotafile
991 * write.
992 */
Tao Maf19d5872012-12-10 14:05:51 -0500993int do_journal_get_write_access(handle_t *handle,
994 struct buffer_head *bh)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700995{
Jan Kara56d35a42010-08-05 14:41:42 -0400996 int dirty = buffer_dirty(bh);
997 int ret;
998
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700999 if (!buffer_mapped(bh) || buffer_freed(bh))
1000 return 0;
Jan Kara56d35a42010-08-05 14:41:42 -04001001 /*
Christoph Hellwigebdec242010-10-06 10:47:23 +02001002 * __block_write_begin() could have dirtied some buffers. Clean
Jan Kara56d35a42010-08-05 14:41:42 -04001003 * the dirty bit as jbd2_journal_get_write_access() could complain
1004 * otherwise about fs integrity issues. Setting of the dirty bit
Christoph Hellwigebdec242010-10-06 10:47:23 +02001005 * by __block_write_begin() isn't a real problem here as we clear
Jan Kara56d35a42010-08-05 14:41:42 -04001006 * the bit before releasing a page lock and thus writeback cannot
1007 * ever write the buffer.
1008 */
1009 if (dirty)
1010 clear_buffer_dirty(bh);
liang xie5d601252014-05-12 22:06:43 -04001011 BUFFER_TRACE(bh, "get write access");
Jan Kara56d35a42010-08-05 14:41:42 -04001012 ret = ext4_journal_get_write_access(handle, bh);
1013 if (!ret && dirty)
1014 ret = ext4_handle_dirty_metadata(handle, NULL, bh);
1015 return ret;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001016}
1017
Chandan Rajendra643fa962018-12-12 15:20:12 +05301018#ifdef CONFIG_FS_ENCRYPTION
Michael Halcrow2058f832015-04-12 00:55:10 -04001019static int ext4_block_write_begin(struct page *page, loff_t pos, unsigned len,
1020 get_block_t *get_block)
1021{
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001022 unsigned from = pos & (PAGE_SIZE - 1);
Michael Halcrow2058f832015-04-12 00:55:10 -04001023 unsigned to = from + len;
1024 struct inode *inode = page->mapping->host;
1025 unsigned block_start, block_end;
1026 sector_t block;
1027 int err = 0;
1028 unsigned blocksize = inode->i_sb->s_blocksize;
1029 unsigned bbits;
Chandan Rajendra0b578f32019-05-20 09:29:50 -07001030 struct buffer_head *bh, *head, *wait[2];
1031 int nr_wait = 0;
1032 int i;
Michael Halcrow2058f832015-04-12 00:55:10 -04001033
1034 BUG_ON(!PageLocked(page));
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001035 BUG_ON(from > PAGE_SIZE);
1036 BUG_ON(to > PAGE_SIZE);
Michael Halcrow2058f832015-04-12 00:55:10 -04001037 BUG_ON(from > to);
1038
1039 if (!page_has_buffers(page))
1040 create_empty_buffers(page, blocksize, 0);
1041 head = page_buffers(page);
1042 bbits = ilog2(blocksize);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001043 block = (sector_t)page->index << (PAGE_SHIFT - bbits);
Michael Halcrow2058f832015-04-12 00:55:10 -04001044
1045 for (bh = head, block_start = 0; bh != head || !block_start;
1046 block++, block_start = block_end, bh = bh->b_this_page) {
1047 block_end = block_start + blocksize;
1048 if (block_end <= from || block_start >= to) {
1049 if (PageUptodate(page)) {
1050 if (!buffer_uptodate(bh))
1051 set_buffer_uptodate(bh);
1052 }
1053 continue;
1054 }
1055 if (buffer_new(bh))
1056 clear_buffer_new(bh);
1057 if (!buffer_mapped(bh)) {
1058 WARN_ON(bh->b_size != blocksize);
1059 err = get_block(inode, block, bh, 1);
1060 if (err)
1061 break;
1062 if (buffer_new(bh)) {
Michael Halcrow2058f832015-04-12 00:55:10 -04001063 if (PageUptodate(page)) {
1064 clear_buffer_new(bh);
1065 set_buffer_uptodate(bh);
1066 mark_buffer_dirty(bh);
1067 continue;
1068 }
1069 if (block_end > to || block_start < from)
1070 zero_user_segments(page, to, block_end,
1071 block_start, from);
1072 continue;
1073 }
1074 }
1075 if (PageUptodate(page)) {
1076 if (!buffer_uptodate(bh))
1077 set_buffer_uptodate(bh);
1078 continue;
1079 }
1080 if (!buffer_uptodate(bh) && !buffer_delay(bh) &&
1081 !buffer_unwritten(bh) &&
1082 (block_start < from || block_end > to)) {
Mike Christiedfec8a12016-06-05 14:31:44 -05001083 ll_rw_block(REQ_OP_READ, 0, 1, &bh);
Chandan Rajendra0b578f32019-05-20 09:29:50 -07001084 wait[nr_wait++] = bh;
Michael Halcrow2058f832015-04-12 00:55:10 -04001085 }
1086 }
1087 /*
1088 * If we issued read requests, let them complete.
1089 */
Chandan Rajendra0b578f32019-05-20 09:29:50 -07001090 for (i = 0; i < nr_wait; i++) {
1091 wait_on_buffer(wait[i]);
1092 if (!buffer_uptodate(wait[i]))
Michael Halcrow2058f832015-04-12 00:55:10 -04001093 err = -EIO;
1094 }
Chandan Rajendra7e0785f2019-05-20 09:29:49 -07001095 if (unlikely(err)) {
Michael Halcrow2058f832015-04-12 00:55:10 -04001096 page_zero_new_buffers(page, from, to);
Chandan Rajendra0b578f32019-05-20 09:29:50 -07001097 } else if (IS_ENCRYPTED(inode) && S_ISREG(inode->i_mode)) {
1098 for (i = 0; i < nr_wait; i++) {
1099 int err2;
1100
1101 err2 = fscrypt_decrypt_pagecache_blocks(page, blocksize,
1102 bh_offset(wait[i]));
1103 if (err2) {
1104 clear_buffer_uptodate(wait[i]);
1105 err = err2;
1106 }
1107 }
Chandan Rajendra7e0785f2019-05-20 09:29:49 -07001108 }
1109
Michael Halcrow2058f832015-04-12 00:55:10 -04001110 return err;
1111}
1112#endif
1113
Nick Pigginbfc1af62007-10-16 01:25:05 -07001114static int ext4_write_begin(struct file *file, struct address_space *mapping,
Theodore Ts'ode9a55b2009-06-14 17:45:34 -04001115 loff_t pos, unsigned len, unsigned flags,
1116 struct page **pagep, void **fsdata)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001117{
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04001118 struct inode *inode = mapping->host;
Aneesh Kumar K.V1938a152009-06-05 01:00:26 -04001119 int ret, needed_blocks;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001120 handle_t *handle;
1121 int retries = 0;
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04001122 struct page *page;
Theodore Ts'ode9a55b2009-06-14 17:45:34 -04001123 pgoff_t index;
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04001124 unsigned from, to;
Nick Pigginbfc1af62007-10-16 01:25:05 -07001125
Theodore Ts'o0db1ff22017-02-05 01:28:48 -05001126 if (unlikely(ext4_forced_shutdown(EXT4_SB(inode->i_sb))))
1127 return -EIO;
1128
Theodore Ts'o9bffad12009-06-17 11:48:11 -04001129 trace_ext4_write_begin(inode, pos, len, flags);
Aneesh Kumar K.V1938a152009-06-05 01:00:26 -04001130 /*
1131 * Reserve one block more for addition to orphan list in case
1132 * we allocate blocks but write fails for some reason
1133 */
1134 needed_blocks = ext4_writepage_trans_blocks(inode) + 1;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001135 index = pos >> PAGE_SHIFT;
1136 from = pos & (PAGE_SIZE - 1);
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04001137 to = from + len;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001138
Tao Maf19d5872012-12-10 14:05:51 -05001139 if (ext4_test_inode_state(inode, EXT4_STATE_MAY_INLINE_DATA)) {
1140 ret = ext4_try_to_write_inline_data(mapping, inode, pos, len,
1141 flags, pagep);
1142 if (ret < 0)
Theodore Ts'o47564bf2013-02-09 09:24:14 -05001143 return ret;
1144 if (ret == 1)
1145 return 0;
Tao Maf19d5872012-12-10 14:05:51 -05001146 }
1147
Theodore Ts'o47564bf2013-02-09 09:24:14 -05001148 /*
1149 * grab_cache_page_write_begin() can take a long time if the
1150 * system is thrashing due to memory pressure, or if the page
1151 * is being written back. So grab it first before we start
1152 * the transaction handle. This also allows us to allocate
1153 * the page (if needed) without using GFP_NOFS.
1154 */
1155retry_grab:
Nick Piggin54566b22009-01-04 12:00:53 -08001156 page = grab_cache_page_write_begin(mapping, index, flags);
Theodore Ts'o47564bf2013-02-09 09:24:14 -05001157 if (!page)
1158 return -ENOMEM;
1159 unlock_page(page);
1160
1161retry_journal:
Theodore Ts'o9924a922013-02-08 21:59:22 -05001162 handle = ext4_journal_start(inode, EXT4_HT_WRITE_PAGE, needed_blocks);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001163 if (IS_ERR(handle)) {
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001164 put_page(page);
Theodore Ts'o47564bf2013-02-09 09:24:14 -05001165 return PTR_ERR(handle);
Jan Karacf108bc2008-07-11 19:27:31 -04001166 }
Tao Maf19d5872012-12-10 14:05:51 -05001167
Theodore Ts'o47564bf2013-02-09 09:24:14 -05001168 lock_page(page);
1169 if (page->mapping != mapping) {
1170 /* The page got truncated from under us */
1171 unlock_page(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001172 put_page(page);
Jan Karacf108bc2008-07-11 19:27:31 -04001173 ext4_journal_stop(handle);
Theodore Ts'o47564bf2013-02-09 09:24:14 -05001174 goto retry_grab;
Jan Karacf108bc2008-07-11 19:27:31 -04001175 }
Dmitry Monakhov7afe5aa2013-08-28 14:30:47 -04001176 /* In case writeback began while the page was unlocked */
1177 wait_for_stable_page(page);
Jan Karacf108bc2008-07-11 19:27:31 -04001178
Chandan Rajendra643fa962018-12-12 15:20:12 +05301179#ifdef CONFIG_FS_ENCRYPTION
Michael Halcrow2058f832015-04-12 00:55:10 -04001180 if (ext4_should_dioread_nolock(inode))
1181 ret = ext4_block_write_begin(page, pos, len,
Jan Kara705965b2016-03-08 23:08:10 -05001182 ext4_get_block_unwritten);
Michael Halcrow2058f832015-04-12 00:55:10 -04001183 else
1184 ret = ext4_block_write_begin(page, pos, len,
1185 ext4_get_block);
1186#else
Jiaying Zhang744692d2010-03-04 16:14:02 -05001187 if (ext4_should_dioread_nolock(inode))
Jan Kara705965b2016-03-08 23:08:10 -05001188 ret = __block_write_begin(page, pos, len,
1189 ext4_get_block_unwritten);
Jiaying Zhang744692d2010-03-04 16:14:02 -05001190 else
Christoph Hellwig6e1db882010-06-04 11:29:57 +02001191 ret = __block_write_begin(page, pos, len, ext4_get_block);
Michael Halcrow2058f832015-04-12 00:55:10 -04001192#endif
Nick Pigginbfc1af62007-10-16 01:25:05 -07001193 if (!ret && ext4_should_journal_data(inode)) {
Tao Maf19d5872012-12-10 14:05:51 -05001194 ret = ext4_walk_page_buffers(handle, page_buffers(page),
1195 from, to, NULL,
1196 do_journal_get_write_access);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001197 }
Nick Pigginbfc1af62007-10-16 01:25:05 -07001198
1199 if (ret) {
Eric Biggersc93d8f82019-07-22 09:26:24 -07001200 bool extended = (pos + len > inode->i_size) &&
1201 !ext4_verity_in_progress(inode);
1202
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04001203 unlock_page(page);
Aneesh Kumar K.Vae4d5372008-09-13 13:10:25 -04001204 /*
Christoph Hellwig6e1db882010-06-04 11:29:57 +02001205 * __block_write_begin may have instantiated a few blocks
Aneesh Kumar K.Vae4d5372008-09-13 13:10:25 -04001206 * outside i_size. Trim these off again. Don't need
1207 * i_size_read because we hold i_mutex.
Aneesh Kumar K.V1938a152009-06-05 01:00:26 -04001208 *
1209 * Add inode to orphan list in case we crash before
1210 * truncate finishes
Aneesh Kumar K.Vae4d5372008-09-13 13:10:25 -04001211 */
Eric Biggersc93d8f82019-07-22 09:26:24 -07001212 if (extended && ext4_can_truncate(inode))
Aneesh Kumar K.V1938a152009-06-05 01:00:26 -04001213 ext4_orphan_add(handle, inode);
1214
1215 ext4_journal_stop(handle);
Eric Biggersc93d8f82019-07-22 09:26:24 -07001216 if (extended) {
Jan Karab9a42072009-12-08 21:24:33 -05001217 ext4_truncate_failed_write(inode);
Theodore Ts'ode9a55b2009-06-14 17:45:34 -04001218 /*
Jan Karaffacfa72009-07-13 16:22:22 -04001219 * If truncate failed early the inode might
Aneesh Kumar K.V1938a152009-06-05 01:00:26 -04001220 * still be on the orphan list; we need to
1221 * make sure the inode is removed from the
1222 * orphan list in that case.
1223 */
1224 if (inode->i_nlink)
1225 ext4_orphan_del(NULL, inode);
1226 }
Nick Pigginbfc1af62007-10-16 01:25:05 -07001227
Theodore Ts'o47564bf2013-02-09 09:24:14 -05001228 if (ret == -ENOSPC &&
1229 ext4_should_retry_alloc(inode->i_sb, &retries))
1230 goto retry_journal;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001231 put_page(page);
Theodore Ts'o47564bf2013-02-09 09:24:14 -05001232 return ret;
1233 }
1234 *pagep = page;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001235 return ret;
1236}
1237
Nick Pigginbfc1af62007-10-16 01:25:05 -07001238/* For write_end() in data=journal mode */
1239static int write_end_fn(handle_t *handle, struct buffer_head *bh)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001240{
Theodore Ts'o13fca322013-04-21 16:45:54 -04001241 int ret;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001242 if (!buffer_mapped(bh) || buffer_freed(bh))
1243 return 0;
1244 set_buffer_uptodate(bh);
Theodore Ts'o13fca322013-04-21 16:45:54 -04001245 ret = ext4_handle_dirty_metadata(handle, NULL, bh);
1246 clear_buffer_meta(bh);
1247 clear_buffer_prio(bh);
1248 return ret;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001249}
1250
Zheng Liueed43332013-04-03 12:41:17 -04001251/*
1252 * We need to pick up the new inode size which generic_commit_write gave us
1253 * `file' can be NULL - eg, when called from page_symlink().
1254 *
1255 * ext4 never places buffers on inode->i_mapping->private_list. metadata
1256 * buffers are managed internally.
1257 */
1258static int ext4_write_end(struct file *file,
1259 struct address_space *mapping,
1260 loff_t pos, unsigned len, unsigned copied,
1261 struct page *page, void *fsdata)
Aneesh Kumar K.Vf8514082009-06-05 00:56:49 -04001262{
Aneesh Kumar K.Vf8514082009-06-05 00:56:49 -04001263 handle_t *handle = ext4_journal_current_handle();
Zheng Liueed43332013-04-03 12:41:17 -04001264 struct inode *inode = mapping->host;
Xiaoguang Wang05726392015-02-12 23:00:17 -05001265 loff_t old_size = inode->i_size;
Zheng Liueed43332013-04-03 12:41:17 -04001266 int ret = 0, ret2;
1267 int i_size_changed = 0;
Theodore Ts'o362eca72018-07-10 01:07:43 -04001268 int inline_data = ext4_has_inline_data(inode);
Eric Biggersc93d8f82019-07-22 09:26:24 -07001269 bool verity = ext4_verity_in_progress(inode);
Zheng Liueed43332013-04-03 12:41:17 -04001270
1271 trace_ext4_write_end(inode, pos, len, copied);
Theodore Ts'o362eca72018-07-10 01:07:43 -04001272 if (inline_data) {
Theodore Ts'o42c832d2013-07-01 08:12:39 -04001273 ret = ext4_write_inline_data_end(inode, pos, len,
1274 copied, page);
Theodore Ts'oeb5efbc2017-02-04 23:04:00 -05001275 if (ret < 0) {
1276 unlock_page(page);
1277 put_page(page);
Theodore Ts'o42c832d2013-07-01 08:12:39 -04001278 goto errout;
Theodore Ts'oeb5efbc2017-02-04 23:04:00 -05001279 }
Theodore Ts'o42c832d2013-07-01 08:12:39 -04001280 copied = ret;
1281 } else
Tao Maf19d5872012-12-10 14:05:51 -05001282 copied = block_write_end(file, mapping, pos,
1283 len, copied, page, fsdata);
Aneesh Kumar K.Vf8514082009-06-05 00:56:49 -04001284 /*
Dmitry Monakhov4631dbf2014-08-23 17:48:28 -04001285 * it's important to update i_size while still holding page lock:
Aneesh Kumar K.Vf8514082009-06-05 00:56:49 -04001286 * page writeout could otherwise come in and zero beyond i_size.
Eric Biggersc93d8f82019-07-22 09:26:24 -07001287 *
1288 * If FS_IOC_ENABLE_VERITY is running on this inode, then Merkle tree
1289 * blocks are being written past EOF, so skip the i_size update.
Aneesh Kumar K.Vf8514082009-06-05 00:56:49 -04001290 */
Eric Biggersc93d8f82019-07-22 09:26:24 -07001291 if (!verity)
1292 i_size_changed = ext4_update_inode_size(inode, pos + copied);
Aneesh Kumar K.Vf8514082009-06-05 00:56:49 -04001293 unlock_page(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001294 put_page(page);
Aneesh Kumar K.Vf8514082009-06-05 00:56:49 -04001295
Eric Biggersc93d8f82019-07-22 09:26:24 -07001296 if (old_size < pos && !verity)
Xiaoguang Wang05726392015-02-12 23:00:17 -05001297 pagecache_isize_extended(inode, old_size, pos);
Aneesh Kumar K.Vf8514082009-06-05 00:56:49 -04001298 /*
1299 * Don't mark the inode dirty under page lock. First, it unnecessarily
1300 * makes the holding time of page lock longer. Second, it forces lock
1301 * ordering of page lock and transaction start for journaling
1302 * filesystems.
1303 */
Theodore Ts'o362eca72018-07-10 01:07:43 -04001304 if (i_size_changed || inline_data)
Harshad Shirwadkar4209ae12020-04-26 18:34:37 -07001305 ret = ext4_mark_inode_dirty(handle, inode);
Aneesh Kumar K.Vf8514082009-06-05 00:56:49 -04001306
Eric Biggersc93d8f82019-07-22 09:26:24 -07001307 if (pos + len > inode->i_size && !verity && ext4_can_truncate(inode))
Aneesh Kumar K.Vf8514082009-06-05 00:56:49 -04001308 /* if we have allocated more blocks and copied
1309 * less. We will have blocks allocated outside
1310 * inode->i_size. So truncate them
1311 */
1312 ext4_orphan_add(handle, inode);
Theodore Ts'o74d553a2013-04-03 12:39:17 -04001313errout:
Mingming Cao617ba132006-10-11 01:20:53 -07001314 ret2 = ext4_journal_stop(handle);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001315 if (!ret)
1316 ret = ret2;
Nick Pigginbfc1af62007-10-16 01:25:05 -07001317
Eric Biggersc93d8f82019-07-22 09:26:24 -07001318 if (pos + len > inode->i_size && !verity) {
Jan Karab9a42072009-12-08 21:24:33 -05001319 ext4_truncate_failed_write(inode);
Theodore Ts'ode9a55b2009-06-14 17:45:34 -04001320 /*
Jan Karaffacfa72009-07-13 16:22:22 -04001321 * If truncate failed early the inode might still be
Aneesh Kumar K.Vf8514082009-06-05 00:56:49 -04001322 * on the orphan list; we need to make sure the inode
1323 * is removed from the orphan list in that case.
1324 */
1325 if (inode->i_nlink)
1326 ext4_orphan_del(NULL, inode);
1327 }
1328
Nick Pigginbfc1af62007-10-16 01:25:05 -07001329 return ret ? ret : copied;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001330}
1331
Theodore Ts'ob90197b2015-10-15 10:29:05 -04001332/*
1333 * This is a private version of page_zero_new_buffers() which doesn't
1334 * set the buffer to be dirty, since in data=journalled mode we need
1335 * to call ext4_handle_dirty_metadata() instead.
1336 */
Jan Kara3b136492017-01-27 14:35:38 -05001337static void ext4_journalled_zero_new_buffers(handle_t *handle,
1338 struct page *page,
1339 unsigned from, unsigned to)
Theodore Ts'ob90197b2015-10-15 10:29:05 -04001340{
1341 unsigned int block_start = 0, block_end;
1342 struct buffer_head *head, *bh;
1343
1344 bh = head = page_buffers(page);
1345 do {
1346 block_end = block_start + bh->b_size;
1347 if (buffer_new(bh)) {
1348 if (block_end > from && block_start < to) {
1349 if (!PageUptodate(page)) {
1350 unsigned start, size;
1351
1352 start = max(from, block_start);
1353 size = min(to, block_end) - start;
1354
1355 zero_user(page, start, size);
Jan Kara3b136492017-01-27 14:35:38 -05001356 write_end_fn(handle, bh);
Theodore Ts'ob90197b2015-10-15 10:29:05 -04001357 }
1358 clear_buffer_new(bh);
1359 }
1360 }
1361 block_start = block_end;
1362 bh = bh->b_this_page;
1363 } while (bh != head);
1364}
1365
Nick Pigginbfc1af62007-10-16 01:25:05 -07001366static int ext4_journalled_write_end(struct file *file,
Theodore Ts'ode9a55b2009-06-14 17:45:34 -04001367 struct address_space *mapping,
1368 loff_t pos, unsigned len, unsigned copied,
1369 struct page *page, void *fsdata)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001370{
Mingming Cao617ba132006-10-11 01:20:53 -07001371 handle_t *handle = ext4_journal_current_handle();
Nick Pigginbfc1af62007-10-16 01:25:05 -07001372 struct inode *inode = mapping->host;
Xiaoguang Wang05726392015-02-12 23:00:17 -05001373 loff_t old_size = inode->i_size;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001374 int ret = 0, ret2;
1375 int partial = 0;
Nick Pigginbfc1af62007-10-16 01:25:05 -07001376 unsigned from, to;
Dmitry Monakhov4631dbf2014-08-23 17:48:28 -04001377 int size_changed = 0;
Theodore Ts'o362eca72018-07-10 01:07:43 -04001378 int inline_data = ext4_has_inline_data(inode);
Eric Biggersc93d8f82019-07-22 09:26:24 -07001379 bool verity = ext4_verity_in_progress(inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001380
Theodore Ts'o9bffad12009-06-17 11:48:11 -04001381 trace_ext4_journalled_write_end(inode, pos, len, copied);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001382 from = pos & (PAGE_SIZE - 1);
Nick Pigginbfc1af62007-10-16 01:25:05 -07001383 to = from + len;
1384
Curt Wohlgemuth441c8502011-08-13 11:25:18 -04001385 BUG_ON(!ext4_handle_valid(handle));
1386
Theodore Ts'o362eca72018-07-10 01:07:43 -04001387 if (inline_data) {
Theodore Ts'oeb5efbc2017-02-04 23:04:00 -05001388 ret = ext4_write_inline_data_end(inode, pos, len,
1389 copied, page);
1390 if (ret < 0) {
1391 unlock_page(page);
1392 put_page(page);
1393 goto errout;
1394 }
1395 copied = ret;
1396 } else if (unlikely(copied < len) && !PageUptodate(page)) {
Jan Kara3b136492017-01-27 14:35:38 -05001397 copied = 0;
1398 ext4_journalled_zero_new_buffers(handle, page, from, to);
1399 } else {
1400 if (unlikely(copied < len))
1401 ext4_journalled_zero_new_buffers(handle, page,
1402 from + copied, to);
Tao Ma3fdcfb62012-12-10 14:05:57 -05001403 ret = ext4_walk_page_buffers(handle, page_buffers(page), from,
Jan Kara3b136492017-01-27 14:35:38 -05001404 from + copied, &partial,
1405 write_end_fn);
Tao Ma3fdcfb62012-12-10 14:05:57 -05001406 if (!partial)
1407 SetPageUptodate(page);
1408 }
Eric Biggersc93d8f82019-07-22 09:26:24 -07001409 if (!verity)
1410 size_changed = ext4_update_inode_size(inode, pos + copied);
Theodore Ts'o19f5fb72010-01-24 14:34:07 -05001411 ext4_set_inode_state(inode, EXT4_STATE_JDATA);
Jan Kara2d859db2011-07-26 09:07:11 -04001412 EXT4_I(inode)->i_datasync_tid = handle->h_transaction->t_tid;
Dmitry Monakhov4631dbf2014-08-23 17:48:28 -04001413 unlock_page(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001414 put_page(page);
Dmitry Monakhov4631dbf2014-08-23 17:48:28 -04001415
Eric Biggersc93d8f82019-07-22 09:26:24 -07001416 if (old_size < pos && !verity)
Xiaoguang Wang05726392015-02-12 23:00:17 -05001417 pagecache_isize_extended(inode, old_size, pos);
1418
Theodore Ts'o362eca72018-07-10 01:07:43 -04001419 if (size_changed || inline_data) {
Mingming Cao617ba132006-10-11 01:20:53 -07001420 ret2 = ext4_mark_inode_dirty(handle, inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001421 if (!ret)
1422 ret = ret2;
1423 }
Nick Pigginbfc1af62007-10-16 01:25:05 -07001424
Eric Biggersc93d8f82019-07-22 09:26:24 -07001425 if (pos + len > inode->i_size && !verity && ext4_can_truncate(inode))
Aneesh Kumar K.Vf8514082009-06-05 00:56:49 -04001426 /* if we have allocated more blocks and copied
1427 * less. We will have blocks allocated outside
1428 * inode->i_size. So truncate them
1429 */
1430 ext4_orphan_add(handle, inode);
1431
Theodore Ts'oeb5efbc2017-02-04 23:04:00 -05001432errout:
Mingming Cao617ba132006-10-11 01:20:53 -07001433 ret2 = ext4_journal_stop(handle);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001434 if (!ret)
1435 ret = ret2;
Eric Biggersc93d8f82019-07-22 09:26:24 -07001436 if (pos + len > inode->i_size && !verity) {
Jan Karab9a42072009-12-08 21:24:33 -05001437 ext4_truncate_failed_write(inode);
Theodore Ts'ode9a55b2009-06-14 17:45:34 -04001438 /*
Jan Karaffacfa72009-07-13 16:22:22 -04001439 * If truncate failed early the inode might still be
Aneesh Kumar K.Vf8514082009-06-05 00:56:49 -04001440 * on the orphan list; we need to make sure the inode
1441 * is removed from the orphan list in that case.
1442 */
1443 if (inode->i_nlink)
1444 ext4_orphan_del(NULL, inode);
1445 }
Nick Pigginbfc1af62007-10-16 01:25:05 -07001446
1447 return ret ? ret : copied;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001448}
Mingming Caod2a17632008-07-14 17:52:37 -04001449
Theodore Ts'o9d0be502010-01-01 02:41:30 -05001450/*
Eric Whitneyc27e43a2015-06-21 21:37:05 -04001451 * Reserve space for a single cluster
Theodore Ts'o9d0be502010-01-01 02:41:30 -05001452 */
Eric Whitneyc27e43a2015-06-21 21:37:05 -04001453static int ext4_da_reserve_space(struct inode *inode)
Mingming Caod2a17632008-07-14 17:52:37 -04001454{
Mingming Cao60e58e02009-01-22 18:13:05 +01001455 struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb);
Theodore Ts'o0637c6f2009-12-30 14:20:45 -05001456 struct ext4_inode_info *ei = EXT4_I(inode);
Christoph Hellwig5dd40562010-03-03 09:05:00 -05001457 int ret;
Mingming Caod2a17632008-07-14 17:52:37 -04001458
Mingming Cao60e58e02009-01-22 18:13:05 +01001459 /*
Eric Sandeen72b8ab92010-05-16 11:00:00 -04001460 * We will charge metadata quota at writeout time; this saves
1461 * us from metadata over-estimation, though we may go over by
1462 * a small amount in the end. Here we just reserve for data.
Mingming Cao60e58e02009-01-22 18:13:05 +01001463 */
Aditya Kali7b415bf2011-09-09 19:04:51 -04001464 ret = dquot_reserve_block(inode, EXT4_C2B(sbi, 1));
Christoph Hellwig5dd40562010-03-03 09:05:00 -05001465 if (ret)
1466 return ret;
Theodore Ts'o03179fe2012-07-23 00:00:20 -04001467
Theodore Ts'o03179fe2012-07-23 00:00:20 -04001468 spin_lock(&ei->i_block_reservation_lock);
Theodore Ts'o71d4f7d2014-07-15 06:02:38 -04001469 if (ext4_claim_free_clusters(sbi, 1, 0)) {
Theodore Ts'o03179fe2012-07-23 00:00:20 -04001470 spin_unlock(&ei->i_block_reservation_lock);
Theodore Ts'o03179fe2012-07-23 00:00:20 -04001471 dquot_release_reservation_block(inode, EXT4_C2B(sbi, 1));
Mingming Caod2a17632008-07-14 17:52:37 -04001472 return -ENOSPC;
1473 }
Theodore Ts'o9d0be502010-01-01 02:41:30 -05001474 ei->i_reserved_data_blocks++;
Eric Whitneyc27e43a2015-06-21 21:37:05 -04001475 trace_ext4_da_reserve_space(inode);
Theodore Ts'o0637c6f2009-12-30 14:20:45 -05001476 spin_unlock(&ei->i_block_reservation_lock);
Dmitry Monakhov39bc6802009-12-10 16:36:27 +00001477
Mingming Caod2a17632008-07-14 17:52:37 -04001478 return 0; /* success */
1479}
1480
Eric Whitneyf4567672018-10-01 14:33:24 -04001481void ext4_da_release_space(struct inode *inode, int to_free)
Mingming Caod2a17632008-07-14 17:52:37 -04001482{
1483 struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb);
Theodore Ts'o0637c6f2009-12-30 14:20:45 -05001484 struct ext4_inode_info *ei = EXT4_I(inode);
Mingming Caod2a17632008-07-14 17:52:37 -04001485
Mingming Caocd213222008-08-19 22:16:59 -04001486 if (!to_free)
1487 return; /* Nothing to release, exit */
1488
Mingming Caod2a17632008-07-14 17:52:37 -04001489 spin_lock(&EXT4_I(inode)->i_block_reservation_lock);
Mingming Caocd213222008-08-19 22:16:59 -04001490
Li Zefan5a58ec872010-05-17 02:00:00 -04001491 trace_ext4_da_release_space(inode, to_free);
Theodore Ts'o0637c6f2009-12-30 14:20:45 -05001492 if (unlikely(to_free > ei->i_reserved_data_blocks)) {
Mingming Caocd213222008-08-19 22:16:59 -04001493 /*
Theodore Ts'o0637c6f2009-12-30 14:20:45 -05001494 * if there aren't enough reserved blocks, then the
1495 * counter is messed up somewhere. Since this
1496 * function is called from invalidate page, it's
1497 * harmless to return without any action.
Mingming Caocd213222008-08-19 22:16:59 -04001498 */
Theodore Ts'o8de5c322013-02-14 15:11:41 -05001499 ext4_warning(inode->i_sb, "ext4_da_release_space: "
Theodore Ts'o0637c6f2009-12-30 14:20:45 -05001500 "ino %lu, to_free %d with only %d reserved "
Theodore Ts'o1084f252012-03-19 23:13:43 -04001501 "data blocks", inode->i_ino, to_free,
Theodore Ts'o0637c6f2009-12-30 14:20:45 -05001502 ei->i_reserved_data_blocks);
1503 WARN_ON(1);
1504 to_free = ei->i_reserved_data_blocks;
1505 }
1506 ei->i_reserved_data_blocks -= to_free;
1507
Eric Sandeen72b8ab92010-05-16 11:00:00 -04001508 /* update fs dirty data blocks counter */
Theodore Ts'o57042652011-09-09 18:56:51 -04001509 percpu_counter_sub(&sbi->s_dirtyclusters_counter, to_free);
Mingming Caod2a17632008-07-14 17:52:37 -04001510
Mingming Caod2a17632008-07-14 17:52:37 -04001511 spin_unlock(&EXT4_I(inode)->i_block_reservation_lock);
Mingming Cao60e58e02009-01-22 18:13:05 +01001512
Aditya Kali7b415bf2011-09-09 19:04:51 -04001513 dquot_release_reservation_block(inode, EXT4_C2B(sbi, to_free));
Mingming Caod2a17632008-07-14 17:52:37 -04001514}
1515
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001516/*
Alex Tomas64769242008-07-11 19:27:31 -04001517 * Delayed allocation stuff
1518 */
1519
Jan Kara4e7ea812013-06-04 13:17:40 -04001520struct mpage_da_data {
1521 struct inode *inode;
1522 struct writeback_control *wbc;
Jan Kara6b523df2013-06-04 13:21:11 -04001523
Jan Kara4e7ea812013-06-04 13:17:40 -04001524 pgoff_t first_page; /* The first page to write */
1525 pgoff_t next_page; /* Current page to examine */
1526 pgoff_t last_page; /* Last page to examine */
Aneesh Kumar K.V791b7f02009-01-05 21:50:43 -05001527 /*
Jan Kara4e7ea812013-06-04 13:17:40 -04001528 * Extent to map - this can be after first_page because that can be
1529 * fully mapped. We somewhat abuse m_flags to store whether the extent
1530 * is delalloc or unwritten.
Aneesh Kumar K.V791b7f02009-01-05 21:50:43 -05001531 */
Jan Kara4e7ea812013-06-04 13:17:40 -04001532 struct ext4_map_blocks map;
1533 struct ext4_io_submit io_submit; /* IO submission data */
Jan Karadddbd6a2017-04-30 18:29:10 -04001534 unsigned int do_map:1;
Jan Kara4e7ea812013-06-04 13:17:40 -04001535};
Alex Tomas64769242008-07-11 19:27:31 -04001536
Jan Kara4e7ea812013-06-04 13:17:40 -04001537static void mpage_release_unused_pages(struct mpage_da_data *mpd,
1538 bool invalidate)
Aneesh Kumar K.Vc4a0c462008-08-19 21:08:18 -04001539{
1540 int nr_pages, i;
1541 pgoff_t index, end;
1542 struct pagevec pvec;
1543 struct inode *inode = mpd->inode;
1544 struct address_space *mapping = inode->i_mapping;
Jan Kara4e7ea812013-06-04 13:17:40 -04001545
1546 /* This is necessary when next_page == 0. */
1547 if (mpd->first_page >= mpd->next_page)
1548 return;
Aneesh Kumar K.Vc4a0c462008-08-19 21:08:18 -04001549
Curt Wohlgemuthc7f59382011-02-26 12:27:52 -05001550 index = mpd->first_page;
1551 end = mpd->next_page - 1;
Jan Kara4e7ea812013-06-04 13:17:40 -04001552 if (invalidate) {
1553 ext4_lblk_t start, last;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001554 start = index << (PAGE_SHIFT - inode->i_blkbits);
1555 last = end << (PAGE_SHIFT - inode->i_blkbits);
Jan Kara4e7ea812013-06-04 13:17:40 -04001556 ext4_es_remove_extent(inode, start, last - start + 1);
1557 }
Zheng Liu51865fd2012-11-08 21:57:32 -05001558
Mel Gorman86679822017-11-15 17:37:52 -08001559 pagevec_init(&pvec);
Aneesh Kumar K.Vc4a0c462008-08-19 21:08:18 -04001560 while (index <= end) {
Jan Kara397162f2017-09-06 16:21:43 -07001561 nr_pages = pagevec_lookup_range(&pvec, mapping, &index, end);
Aneesh Kumar K.Vc4a0c462008-08-19 21:08:18 -04001562 if (nr_pages == 0)
1563 break;
1564 for (i = 0; i < nr_pages; i++) {
1565 struct page *page = pvec.pages[i];
Jan Kara2b85a612017-09-06 16:21:30 -07001566
Aneesh Kumar K.Vc4a0c462008-08-19 21:08:18 -04001567 BUG_ON(!PageLocked(page));
1568 BUG_ON(PageWriteback(page));
Jan Kara4e7ea812013-06-04 13:17:40 -04001569 if (invalidate) {
wangguang4e800c02016-09-15 11:32:46 -04001570 if (page_mapped(page))
1571 clear_page_dirty_for_io(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001572 block_invalidatepage(page, 0, PAGE_SIZE);
Jan Kara4e7ea812013-06-04 13:17:40 -04001573 ClearPageUptodate(page);
1574 }
Aneesh Kumar K.Vc4a0c462008-08-19 21:08:18 -04001575 unlock_page(page);
1576 }
Jan Kara9b1d09982010-03-03 16:19:32 -05001577 pagevec_release(&pvec);
Aneesh Kumar K.Vc4a0c462008-08-19 21:08:18 -04001578 }
Aneesh Kumar K.Vc4a0c462008-08-19 21:08:18 -04001579}
1580
Aneesh Kumar K.Vdf222912008-09-08 23:05:34 -04001581static void ext4_print_free_blocks(struct inode *inode)
1582{
1583 struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb);
Theodore Ts'o92b97812012-03-19 23:41:49 -04001584 struct super_block *sb = inode->i_sb;
Lukas Czernerf78ee70d2013-04-03 23:33:30 -04001585 struct ext4_inode_info *ei = EXT4_I(inode);
Theodore Ts'o92b97812012-03-19 23:41:49 -04001586
1587 ext4_msg(sb, KERN_CRIT, "Total free blocks count %lld",
Theodore Ts'o5dee5432011-09-09 19:10:51 -04001588 EXT4_C2B(EXT4_SB(inode->i_sb),
Lukas Czernerf78ee70d2013-04-03 23:33:30 -04001589 ext4_count_free_clusters(sb)));
Theodore Ts'o92b97812012-03-19 23:41:49 -04001590 ext4_msg(sb, KERN_CRIT, "Free/Dirty block details");
1591 ext4_msg(sb, KERN_CRIT, "free_blocks=%lld",
Lukas Czernerf78ee70d2013-04-03 23:33:30 -04001592 (long long) EXT4_C2B(EXT4_SB(sb),
Theodore Ts'o57042652011-09-09 18:56:51 -04001593 percpu_counter_sum(&sbi->s_freeclusters_counter)));
Theodore Ts'o92b97812012-03-19 23:41:49 -04001594 ext4_msg(sb, KERN_CRIT, "dirty_blocks=%lld",
Lukas Czernerf78ee70d2013-04-03 23:33:30 -04001595 (long long) EXT4_C2B(EXT4_SB(sb),
Aditya Kali7b415bf2011-09-09 19:04:51 -04001596 percpu_counter_sum(&sbi->s_dirtyclusters_counter)));
Theodore Ts'o92b97812012-03-19 23:41:49 -04001597 ext4_msg(sb, KERN_CRIT, "Block reservation details");
1598 ext4_msg(sb, KERN_CRIT, "i_reserved_data_blocks=%u",
Lukas Czernerf78ee70d2013-04-03 23:33:30 -04001599 ei->i_reserved_data_blocks);
Aneesh Kumar K.Vdf222912008-09-08 23:05:34 -04001600 return;
1601}
1602
Aneesh Kumar K.Vc364b222009-06-14 17:57:10 -04001603static int ext4_bh_delay_or_unwritten(handle_t *handle, struct buffer_head *bh)
Aneesh Kumar K.V29fa89d2009-05-12 16:30:27 -04001604{
Aneesh Kumar K.Vc364b222009-06-14 17:57:10 -04001605 return (buffer_delay(bh) || buffer_unwritten(bh)) && buffer_dirty(bh);
Aneesh Kumar K.V29fa89d2009-05-12 16:30:27 -04001606}
1607
Alex Tomas64769242008-07-11 19:27:31 -04001608/*
Eric Whitney0b02f4c2018-10-01 14:19:37 -04001609 * ext4_insert_delayed_block - adds a delayed block to the extents status
1610 * tree, incrementing the reserved cluster/block
1611 * count or making a pending reservation
1612 * where needed
1613 *
1614 * @inode - file containing the newly added block
1615 * @lblk - logical block to be added
1616 *
1617 * Returns 0 on success, negative error code on failure.
1618 */
1619static int ext4_insert_delayed_block(struct inode *inode, ext4_lblk_t lblk)
1620{
1621 struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb);
1622 int ret;
1623 bool allocated = false;
1624
1625 /*
1626 * If the cluster containing lblk is shared with a delayed,
1627 * written, or unwritten extent in a bigalloc file system, it's
1628 * already been accounted for and does not need to be reserved.
1629 * A pending reservation must be made for the cluster if it's
1630 * shared with a written or unwritten extent and doesn't already
1631 * have one. Written and unwritten extents can be purged from the
1632 * extents status tree if the system is under memory pressure, so
1633 * it's necessary to examine the extent tree if a search of the
1634 * extents status tree doesn't get a match.
1635 */
1636 if (sbi->s_cluster_ratio == 1) {
1637 ret = ext4_da_reserve_space(inode);
1638 if (ret != 0) /* ENOSPC */
1639 goto errout;
1640 } else { /* bigalloc */
1641 if (!ext4_es_scan_clu(inode, &ext4_es_is_delonly, lblk)) {
1642 if (!ext4_es_scan_clu(inode,
1643 &ext4_es_is_mapped, lblk)) {
1644 ret = ext4_clu_mapped(inode,
1645 EXT4_B2C(sbi, lblk));
1646 if (ret < 0)
1647 goto errout;
1648 if (ret == 0) {
1649 ret = ext4_da_reserve_space(inode);
1650 if (ret != 0) /* ENOSPC */
1651 goto errout;
1652 } else {
1653 allocated = true;
1654 }
1655 } else {
1656 allocated = true;
1657 }
1658 }
1659 }
1660
1661 ret = ext4_es_insert_delayed_block(inode, lblk, allocated);
1662
1663errout:
1664 return ret;
1665}
1666
1667/*
Aditya Kali5356f2612011-09-09 19:20:51 -04001668 * This function is grabs code from the very beginning of
1669 * ext4_map_blocks, but assumes that the caller is from delayed write
1670 * time. This function looks up the requested blocks and sets the
1671 * buffer delay bit under the protection of i_data_sem.
1672 */
1673static int ext4_da_map_blocks(struct inode *inode, sector_t iblock,
1674 struct ext4_map_blocks *map,
1675 struct buffer_head *bh)
1676{
Zheng Liud100eef2013-02-18 00:29:59 -05001677 struct extent_status es;
Aditya Kali5356f2612011-09-09 19:20:51 -04001678 int retval;
1679 sector_t invalid_block = ~((sector_t) 0xffff);
Dmitry Monakhov921f2662013-03-10 21:01:03 -04001680#ifdef ES_AGGRESSIVE_TEST
1681 struct ext4_map_blocks orig_map;
1682
1683 memcpy(&orig_map, map, sizeof(*map));
1684#endif
Aditya Kali5356f2612011-09-09 19:20:51 -04001685
1686 if (invalid_block < ext4_blocks_count(EXT4_SB(inode->i_sb)->s_es))
1687 invalid_block = ~0;
1688
1689 map->m_flags = 0;
1690 ext_debug("ext4_da_map_blocks(): inode %lu, max_blocks %u,"
1691 "logical block %lu\n", inode->i_ino, map->m_len,
1692 (unsigned long) map->m_lblk);
Zheng Liud100eef2013-02-18 00:29:59 -05001693
1694 /* Lookup extent status tree firstly */
Theodore Ts'obb5835e2019-08-11 16:32:41 -04001695 if (ext4_es_lookup_extent(inode, iblock, NULL, &es)) {
Zheng Liud100eef2013-02-18 00:29:59 -05001696 if (ext4_es_is_hole(&es)) {
1697 retval = 0;
Lukas Czernerc8b459f2014-05-12 12:55:07 -04001698 down_read(&EXT4_I(inode)->i_data_sem);
Zheng Liud100eef2013-02-18 00:29:59 -05001699 goto add_delayed;
1700 }
1701
1702 /*
1703 * Delayed extent could be allocated by fallocate.
1704 * So we need to check it.
1705 */
1706 if (ext4_es_is_delayed(&es) && !ext4_es_is_unwritten(&es)) {
1707 map_bh(bh, inode->i_sb, invalid_block);
1708 set_buffer_new(bh);
1709 set_buffer_delay(bh);
1710 return 0;
1711 }
1712
1713 map->m_pblk = ext4_es_pblock(&es) + iblock - es.es_lblk;
1714 retval = es.es_len - (iblock - es.es_lblk);
1715 if (retval > map->m_len)
1716 retval = map->m_len;
1717 map->m_len = retval;
1718 if (ext4_es_is_written(&es))
1719 map->m_flags |= EXT4_MAP_MAPPED;
1720 else if (ext4_es_is_unwritten(&es))
1721 map->m_flags |= EXT4_MAP_UNWRITTEN;
1722 else
Arnd Bergmann1e83bc82019-04-07 12:24:43 -04001723 BUG();
Zheng Liud100eef2013-02-18 00:29:59 -05001724
Dmitry Monakhov921f2662013-03-10 21:01:03 -04001725#ifdef ES_AGGRESSIVE_TEST
1726 ext4_map_blocks_es_recheck(NULL, inode, map, &orig_map, 0);
1727#endif
Zheng Liud100eef2013-02-18 00:29:59 -05001728 return retval;
1729 }
1730
Aditya Kali5356f2612011-09-09 19:20:51 -04001731 /*
1732 * Try to see if we can get the block without requesting a new
1733 * file system block.
1734 */
Lukas Czernerc8b459f2014-05-12 12:55:07 -04001735 down_read(&EXT4_I(inode)->i_data_sem);
Jan Karacbd75842014-11-25 11:41:49 -05001736 if (ext4_has_inline_data(inode))
Tao Ma9c3569b2012-12-10 14:05:57 -05001737 retval = 0;
Jan Karacbd75842014-11-25 11:41:49 -05001738 else if (ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS))
Zheng Liu2f8e0a72014-11-25 11:44:37 -05001739 retval = ext4_ext_map_blocks(NULL, inode, map, 0);
Aditya Kali5356f2612011-09-09 19:20:51 -04001740 else
Zheng Liu2f8e0a72014-11-25 11:44:37 -05001741 retval = ext4_ind_map_blocks(NULL, inode, map, 0);
Aditya Kali5356f2612011-09-09 19:20:51 -04001742
Zheng Liud100eef2013-02-18 00:29:59 -05001743add_delayed:
Aditya Kali5356f2612011-09-09 19:20:51 -04001744 if (retval == 0) {
Zheng Liuf7fec032013-02-18 00:28:47 -05001745 int ret;
Eric Whitneyad431022018-10-01 14:10:39 -04001746
Aditya Kali5356f2612011-09-09 19:20:51 -04001747 /*
1748 * XXX: __block_prepare_write() unmaps passed block,
1749 * is it OK?
1750 */
Aditya Kali5356f2612011-09-09 19:20:51 -04001751
Eric Whitney0b02f4c2018-10-01 14:19:37 -04001752 ret = ext4_insert_delayed_block(inode, map->m_lblk);
1753 if (ret != 0) {
Zheng Liuf7fec032013-02-18 00:28:47 -05001754 retval = ret;
Zheng Liu51865fd2012-11-08 21:57:32 -05001755 goto out_unlock;
Zheng Liuf7fec032013-02-18 00:28:47 -05001756 }
Zheng Liu51865fd2012-11-08 21:57:32 -05001757
Aditya Kali5356f2612011-09-09 19:20:51 -04001758 map_bh(bh, inode->i_sb, invalid_block);
1759 set_buffer_new(bh);
1760 set_buffer_delay(bh);
Zheng Liuf7fec032013-02-18 00:28:47 -05001761 } else if (retval > 0) {
1762 int ret;
Theodore Ts'o3be78c72013-08-16 21:22:41 -04001763 unsigned int status;
Zheng Liuf7fec032013-02-18 00:28:47 -05001764
Zheng Liu44fb851d2013-07-29 12:51:42 -04001765 if (unlikely(retval != map->m_len)) {
1766 ext4_warning(inode->i_sb,
1767 "ES len assertion failed for inode "
1768 "%lu: retval %d != map->m_len %d",
1769 inode->i_ino, retval, map->m_len);
1770 WARN_ON(1);
Dmitry Monakhov921f2662013-03-10 21:01:03 -04001771 }
Dmitry Monakhov921f2662013-03-10 21:01:03 -04001772
Zheng Liuf7fec032013-02-18 00:28:47 -05001773 status = map->m_flags & EXT4_MAP_UNWRITTEN ?
1774 EXTENT_STATUS_UNWRITTEN : EXTENT_STATUS_WRITTEN;
1775 ret = ext4_es_insert_extent(inode, map->m_lblk, map->m_len,
1776 map->m_pblk, status);
1777 if (ret != 0)
1778 retval = ret;
Aditya Kali5356f2612011-09-09 19:20:51 -04001779 }
1780
1781out_unlock:
1782 up_read((&EXT4_I(inode)->i_data_sem));
1783
1784 return retval;
1785}
1786
1787/*
Seunghun Leed91bd2c2014-09-01 22:15:30 -04001788 * This is a special get_block_t callback which is used by
Theodore Ts'ob920c752009-05-14 00:54:29 -04001789 * ext4_da_write_begin(). It will either return mapped block or
1790 * reserve space for a single block.
Aneesh Kumar K.V29fa89d2009-05-12 16:30:27 -04001791 *
1792 * For delayed buffer_head we have BH_Mapped, BH_New, BH_Delay set.
1793 * We also have b_blocknr = -1 and b_bdev initialized properly
1794 *
1795 * For unwritten buffer_head we have BH_Mapped, BH_New, BH_Unwritten set.
1796 * We also have b_blocknr = physicalblock mapping unwritten extent and b_bdev
1797 * initialized properly.
Alex Tomas64769242008-07-11 19:27:31 -04001798 */
Tao Ma9c3569b2012-12-10 14:05:57 -05001799int ext4_da_get_block_prep(struct inode *inode, sector_t iblock,
1800 struct buffer_head *bh, int create)
Alex Tomas64769242008-07-11 19:27:31 -04001801{
Theodore Ts'o2ed88682010-05-16 20:00:00 -04001802 struct ext4_map_blocks map;
Alex Tomas64769242008-07-11 19:27:31 -04001803 int ret = 0;
1804
1805 BUG_ON(create == 0);
Theodore Ts'o2ed88682010-05-16 20:00:00 -04001806 BUG_ON(bh->b_size != inode->i_sb->s_blocksize);
1807
1808 map.m_lblk = iblock;
1809 map.m_len = 1;
Alex Tomas64769242008-07-11 19:27:31 -04001810
1811 /*
1812 * first, we need to know whether the block is allocated already
1813 * preallocated blocks are unmapped but should treated
1814 * the same as allocated blocks.
1815 */
Aditya Kali5356f2612011-09-09 19:20:51 -04001816 ret = ext4_da_map_blocks(inode, iblock, &map, bh);
1817 if (ret <= 0)
Theodore Ts'o2ed88682010-05-16 20:00:00 -04001818 return ret;
Alex Tomas64769242008-07-11 19:27:31 -04001819
Theodore Ts'o2ed88682010-05-16 20:00:00 -04001820 map_bh(bh, inode->i_sb, map.m_pblk);
Jan Karaed8ad832016-02-19 00:18:25 -05001821 ext4_update_bh_state(bh, map.m_flags);
Theodore Ts'o2ed88682010-05-16 20:00:00 -04001822
1823 if (buffer_unwritten(bh)) {
1824 /* A delayed write to unwritten bh should be marked
1825 * new and mapped. Mapped ensures that we don't do
1826 * get_block multiple times when we write to the same
1827 * offset and new ensures that we do proper zero out
1828 * for partial write.
1829 */
1830 set_buffer_new(bh);
Theodore Ts'oc8205632011-04-10 22:30:07 -04001831 set_buffer_mapped(bh);
Theodore Ts'o2ed88682010-05-16 20:00:00 -04001832 }
1833 return 0;
Alex Tomas64769242008-07-11 19:27:31 -04001834}
Mingming Cao61628a32008-07-11 19:27:31 -04001835
Aneesh Kumar K.V62e086b2009-06-14 17:59:34 -04001836static int bget_one(handle_t *handle, struct buffer_head *bh)
1837{
1838 get_bh(bh);
1839 return 0;
1840}
1841
1842static int bput_one(handle_t *handle, struct buffer_head *bh)
1843{
1844 put_bh(bh);
1845 return 0;
1846}
1847
1848static int __ext4_journalled_writepage(struct page *page,
Aneesh Kumar K.V62e086b2009-06-14 17:59:34 -04001849 unsigned int len)
1850{
1851 struct address_space *mapping = page->mapping;
1852 struct inode *inode = mapping->host;
Tao Ma3fdcfb62012-12-10 14:05:57 -05001853 struct buffer_head *page_bufs = NULL;
Aneesh Kumar K.V62e086b2009-06-14 17:59:34 -04001854 handle_t *handle = NULL;
Tao Ma3fdcfb62012-12-10 14:05:57 -05001855 int ret = 0, err = 0;
1856 int inline_data = ext4_has_inline_data(inode);
1857 struct buffer_head *inode_bh = NULL;
Aneesh Kumar K.V62e086b2009-06-14 17:59:34 -04001858
Theodore Ts'ocb20d512010-10-27 21:30:09 -04001859 ClearPageChecked(page);
Tao Ma3fdcfb62012-12-10 14:05:57 -05001860
1861 if (inline_data) {
1862 BUG_ON(page->index != 0);
1863 BUG_ON(len > ext4_get_max_inline_size(inode));
1864 inode_bh = ext4_journalled_write_inline_data(inode, len, page);
1865 if (inode_bh == NULL)
1866 goto out;
1867 } else {
1868 page_bufs = page_buffers(page);
1869 if (!page_bufs) {
1870 BUG();
1871 goto out;
1872 }
1873 ext4_walk_page_buffers(handle, page_bufs, 0, len,
1874 NULL, bget_one);
1875 }
Theodore Ts'obdf96832015-06-12 23:45:33 -04001876 /*
1877 * We need to release the page lock before we start the
1878 * journal, so grab a reference so the page won't disappear
1879 * out from under us.
1880 */
1881 get_page(page);
Aneesh Kumar K.V62e086b2009-06-14 17:59:34 -04001882 unlock_page(page);
1883
Theodore Ts'o9924a922013-02-08 21:59:22 -05001884 handle = ext4_journal_start(inode, EXT4_HT_WRITE_PAGE,
1885 ext4_writepage_trans_blocks(inode));
Aneesh Kumar K.V62e086b2009-06-14 17:59:34 -04001886 if (IS_ERR(handle)) {
1887 ret = PTR_ERR(handle);
Theodore Ts'obdf96832015-06-12 23:45:33 -04001888 put_page(page);
1889 goto out_no_pagelock;
1890 }
1891 BUG_ON(!ext4_handle_valid(handle));
1892
1893 lock_page(page);
1894 put_page(page);
1895 if (page->mapping != mapping) {
1896 /* The page got truncated from under us */
1897 ext4_journal_stop(handle);
1898 ret = 0;
Aneesh Kumar K.V62e086b2009-06-14 17:59:34 -04001899 goto out;
1900 }
1901
Tao Ma3fdcfb62012-12-10 14:05:57 -05001902 if (inline_data) {
Theodore Ts'o362eca72018-07-10 01:07:43 -04001903 ret = ext4_mark_inode_dirty(handle, inode);
Tao Ma3fdcfb62012-12-10 14:05:57 -05001904 } else {
1905 ret = ext4_walk_page_buffers(handle, page_bufs, 0, len, NULL,
1906 do_journal_get_write_access);
1907
1908 err = ext4_walk_page_buffers(handle, page_bufs, 0, len, NULL,
1909 write_end_fn);
1910 }
Aneesh Kumar K.V62e086b2009-06-14 17:59:34 -04001911 if (ret == 0)
1912 ret = err;
Jan Kara2d859db2011-07-26 09:07:11 -04001913 EXT4_I(inode)->i_datasync_tid = handle->h_transaction->t_tid;
Aneesh Kumar K.V62e086b2009-06-14 17:59:34 -04001914 err = ext4_journal_stop(handle);
1915 if (!ret)
1916 ret = err;
1917
Tao Ma3fdcfb62012-12-10 14:05:57 -05001918 if (!ext4_has_inline_data(inode))
Theodore Ts'o8c9367f2014-01-07 13:08:03 -05001919 ext4_walk_page_buffers(NULL, page_bufs, 0, len,
Tao Ma3fdcfb62012-12-10 14:05:57 -05001920 NULL, bput_one);
Theodore Ts'o19f5fb72010-01-24 14:34:07 -05001921 ext4_set_inode_state(inode, EXT4_STATE_JDATA);
Aneesh Kumar K.V62e086b2009-06-14 17:59:34 -04001922out:
Theodore Ts'obdf96832015-06-12 23:45:33 -04001923 unlock_page(page);
1924out_no_pagelock:
Tao Ma3fdcfb62012-12-10 14:05:57 -05001925 brelse(inode_bh);
Aneesh Kumar K.V62e086b2009-06-14 17:59:34 -04001926 return ret;
1927}
1928
Mingming Cao61628a32008-07-11 19:27:31 -04001929/*
Aneesh Kumar K.V43ce1d22009-06-14 17:58:45 -04001930 * Note that we don't need to start a transaction unless we're journaling data
1931 * because we should have holes filled from ext4_page_mkwrite(). We even don't
1932 * need to file the inode to the transaction's list in ordered mode because if
1933 * we are writing back data added by write(), the inode is already there and if
Lucas De Marchi25985ed2011-03-30 22:57:33 -03001934 * we are writing back data modified via mmap(), no one guarantees in which
Aneesh Kumar K.V43ce1d22009-06-14 17:58:45 -04001935 * transaction the data will hit the disk. In case we are journaling data, we
1936 * cannot start transaction directly because transaction start ranks above page
1937 * lock so we have to do some magic.
1938 *
Theodore Ts'ob920c752009-05-14 00:54:29 -04001939 * This function can get called via...
Theodore Ts'o20970ba2013-06-06 14:00:46 -04001940 * - ext4_writepages after taking page lock (have journal handle)
Theodore Ts'ob920c752009-05-14 00:54:29 -04001941 * - journal_submit_inode_data_buffers (no journal handle)
Artem Bityutskiyf6463b02012-07-25 18:12:04 +03001942 * - shrink_page_list via the kswapd/direct reclaim (no journal handle)
Theodore Ts'ob920c752009-05-14 00:54:29 -04001943 * - grab_page_cache when doing write_begin (have journal handle)
Aneesh Kumar K.V43ce1d22009-06-14 17:58:45 -04001944 *
1945 * We don't do any block allocation in this function. If we have page with
1946 * multiple blocks we need to write those buffer_heads that are mapped. This
1947 * is important for mmaped based write. So if we do with blocksize 1K
1948 * truncate(f, 1024);
1949 * a = mmap(f, 0, 4096);
1950 * a[0] = 'a';
1951 * truncate(f, 4096);
1952 * we have in the page first buffer_head mapped via page_mkwrite call back
Paul Bolle90802ed2011-12-05 13:00:34 +01001953 * but other buffer_heads would be unmapped but dirty (dirty done via the
Aneesh Kumar K.V43ce1d22009-06-14 17:58:45 -04001954 * do_wp_page). So writepage should write the first block. If we modify
1955 * the mmap area beyond 1024 we will again get a page_fault and the
1956 * page_mkwrite callback will do the block allocation and mark the
1957 * buffer_heads mapped.
1958 *
1959 * We redirty the page if we have any buffer_heads that is either delay or
1960 * unwritten in the page.
1961 *
1962 * We can get recursively called as show below.
1963 *
1964 * ext4_writepage() -> kmalloc() -> __alloc_pages() -> page_launder() ->
1965 * ext4_writepage()
1966 *
1967 * But since we don't do any block allocation we should not deadlock.
1968 * Page also have the dirty flag cleared so we don't get recurive page_lock.
Mingming Cao61628a32008-07-11 19:27:31 -04001969 */
Aneesh Kumar K.V43ce1d22009-06-14 17:58:45 -04001970static int ext4_writepage(struct page *page,
Aneesh Kumar K.V62e086b2009-06-14 17:59:34 -04001971 struct writeback_control *wbc)
Alex Tomas64769242008-07-11 19:27:31 -04001972{
Jan Karaf8bec372013-01-28 12:55:08 -05001973 int ret = 0;
Mingming Cao61628a32008-07-11 19:27:31 -04001974 loff_t size;
Theodore Ts'o498e5f22008-11-05 00:14:04 -05001975 unsigned int len;
Jiaying Zhang744692d2010-03-04 16:14:02 -05001976 struct buffer_head *page_bufs = NULL;
Mingming Cao61628a32008-07-11 19:27:31 -04001977 struct inode *inode = page->mapping->host;
Jan Kara36ade452013-01-28 09:30:52 -05001978 struct ext4_io_submit io_submit;
Namjae Jeon1c8349a2014-05-12 08:12:25 -04001979 bool keep_towrite = false;
Alex Tomas64769242008-07-11 19:27:31 -04001980
Theodore Ts'o0db1ff22017-02-05 01:28:48 -05001981 if (unlikely(ext4_forced_shutdown(EXT4_SB(inode->i_sb)))) {
yangerkunc2a559b2020-02-26 12:10:02 +08001982 inode->i_mapping->a_ops->invalidatepage(page, 0, PAGE_SIZE);
Theodore Ts'o0db1ff22017-02-05 01:28:48 -05001983 unlock_page(page);
1984 return -EIO;
1985 }
1986
Lukas Czernera9c667f2011-06-06 09:51:52 -04001987 trace_ext4_writepage(page);
Aneesh Kumar K.Vf0e6c982008-07-11 19:27:31 -04001988 size = i_size_read(inode);
Eric Biggersc93d8f82019-07-22 09:26:24 -07001989 if (page->index == size >> PAGE_SHIFT &&
1990 !ext4_verity_in_progress(inode))
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001991 len = size & ~PAGE_MASK;
Aneesh Kumar K.Vf0e6c982008-07-11 19:27:31 -04001992 else
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001993 len = PAGE_SIZE;
Alex Tomas64769242008-07-11 19:27:31 -04001994
Theodore Ts'oa42afc52010-10-27 21:30:09 -04001995 page_bufs = page_buffers(page);
Aneesh Kumar K.Vc364b222009-06-14 17:57:10 -04001996 /*
Jan Karafe386132013-01-28 21:06:42 -05001997 * We cannot do block allocation or other extent handling in this
1998 * function. If there are buffers needing that, we have to redirty
1999 * the page. But we may reach here when we do a journal commit via
2000 * journal_submit_inode_data_buffers() and in that case we must write
2001 * allocated buffers to achieve data=ordered mode guarantees.
Theodore Ts'occcd1472015-10-03 10:49:23 -04002002 *
2003 * Also, if there is only one buffer per page (the fs block
2004 * size == the page size), if one buffer needs block
2005 * allocation or needs to modify the extent tree to clear the
2006 * unwritten flag, we know that the page can't be written at
2007 * all, so we might as well refuse the write immediately.
2008 * Unfortunately if the block size != page size, we can't as
2009 * easily detect this case using ext4_walk_page_buffers(), but
2010 * for the extremely common case, this is an optimization that
2011 * skips a useless round trip through ext4_bio_write_page().
Aneesh Kumar K.Vcd1aac32008-07-11 19:27:31 -04002012 */
Tao Maf19d5872012-12-10 14:05:51 -05002013 if (ext4_walk_page_buffers(NULL, page_bufs, 0, len, NULL,
2014 ext4_bh_delay_or_unwritten)) {
Jan Karaf8bec372013-01-28 12:55:08 -05002015 redirty_page_for_writepage(wbc, page);
Theodore Ts'occcd1472015-10-03 10:49:23 -04002016 if ((current->flags & PF_MEMALLOC) ||
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002017 (inode->i_sb->s_blocksize == PAGE_SIZE)) {
Jan Karafe386132013-01-28 21:06:42 -05002018 /*
2019 * For memory cleaning there's no point in writing only
2020 * some buffers. So just bail out. Warn if we came here
2021 * from direct reclaim.
2022 */
2023 WARN_ON_ONCE((current->flags & (PF_MEMALLOC|PF_KSWAPD))
2024 == PF_MEMALLOC);
Aneesh Kumar K.Vf0e6c982008-07-11 19:27:31 -04002025 unlock_page(page);
2026 return 0;
2027 }
Namjae Jeon1c8349a2014-05-12 08:12:25 -04002028 keep_towrite = true;
Theodore Ts'oa42afc52010-10-27 21:30:09 -04002029 }
Alex Tomas64769242008-07-11 19:27:31 -04002030
Theodore Ts'ocb20d512010-10-27 21:30:09 -04002031 if (PageChecked(page) && ext4_should_journal_data(inode))
Aneesh Kumar K.V43ce1d22009-06-14 17:58:45 -04002032 /*
2033 * It's mmapped pagecache. Add buffers and journal it. There
2034 * doesn't seem much point in redirtying the page here.
2035 */
Wu Fengguang3f0ca302009-11-24 11:15:44 -05002036 return __ext4_journalled_writepage(page, len);
Aneesh Kumar K.V43ce1d22009-06-14 17:58:45 -04002037
Jan Kara97a851e2013-06-04 11:58:58 -04002038 ext4_io_submit_init(&io_submit, wbc);
2039 io_submit.io_end = ext4_init_io_end(inode, GFP_NOFS);
2040 if (!io_submit.io_end) {
2041 redirty_page_for_writepage(wbc, page);
2042 unlock_page(page);
2043 return -ENOMEM;
2044 }
Namjae Jeon1c8349a2014-05-12 08:12:25 -04002045 ret = ext4_bio_write_page(&io_submit, page, len, wbc, keep_towrite);
Jan Kara36ade452013-01-28 09:30:52 -05002046 ext4_io_submit(&io_submit);
Jan Kara97a851e2013-06-04 11:58:58 -04002047 /* Drop io_end reference we got from init */
2048 ext4_put_io_end_defer(io_submit.io_end);
Alex Tomas64769242008-07-11 19:27:31 -04002049 return ret;
2050}
2051
Jan Kara5f1132b2013-08-17 10:02:33 -04002052static int mpage_submit_page(struct mpage_da_data *mpd, struct page *page)
2053{
2054 int len;
Jan Karaa056bda2017-05-26 17:45:45 -04002055 loff_t size;
Jan Kara5f1132b2013-08-17 10:02:33 -04002056 int err;
2057
2058 BUG_ON(page->index != mpd->first_page);
Jan Karaa056bda2017-05-26 17:45:45 -04002059 clear_page_dirty_for_io(page);
2060 /*
2061 * We have to be very careful here! Nothing protects writeback path
2062 * against i_size changes and the page can be writeably mapped into
2063 * page tables. So an application can be growing i_size and writing
2064 * data through mmap while writeback runs. clear_page_dirty_for_io()
2065 * write-protects our page in page tables and the page cannot get
2066 * written to again until we release page lock. So only after
2067 * clear_page_dirty_for_io() we are safe to sample i_size for
2068 * ext4_bio_write_page() to zero-out tail of the written page. We rely
2069 * on the barrier provided by TestClearPageDirty in
2070 * clear_page_dirty_for_io() to make sure i_size is really sampled only
2071 * after page tables are updated.
2072 */
2073 size = i_size_read(mpd->inode);
Eric Biggersc93d8f82019-07-22 09:26:24 -07002074 if (page->index == size >> PAGE_SHIFT &&
2075 !ext4_verity_in_progress(mpd->inode))
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002076 len = size & ~PAGE_MASK;
Jan Kara5f1132b2013-08-17 10:02:33 -04002077 else
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002078 len = PAGE_SIZE;
Namjae Jeon1c8349a2014-05-12 08:12:25 -04002079 err = ext4_bio_write_page(&mpd->io_submit, page, len, mpd->wbc, false);
Jan Kara5f1132b2013-08-17 10:02:33 -04002080 if (!err)
2081 mpd->wbc->nr_to_write--;
2082 mpd->first_page++;
2083
2084 return err;
2085}
2086
Jan Kara4e7ea812013-06-04 13:17:40 -04002087#define BH_FLAGS ((1 << BH_Unwritten) | (1 << BH_Delay))
2088
Mingming Cao61628a32008-07-11 19:27:31 -04002089/*
Jan Karafffb2732013-06-04 13:01:11 -04002090 * mballoc gives us at most this number of blocks...
2091 * XXX: That seems to be only a limitation of ext4_mb_normalize_request().
Anatol Pomozov70261f52013-08-28 14:40:12 -04002092 * The rest of mballoc seems to handle chunks up to full group size.
Mingming Cao61628a32008-07-11 19:27:31 -04002093 */
Jan Karafffb2732013-06-04 13:01:11 -04002094#define MAX_WRITEPAGES_EXTENT_LEN 2048
Mingming Cao525f4ed2008-08-19 22:15:58 -04002095
Jan Karafffb2732013-06-04 13:01:11 -04002096/*
Jan Kara4e7ea812013-06-04 13:17:40 -04002097 * mpage_add_bh_to_extent - try to add bh to extent of blocks to map
2098 *
2099 * @mpd - extent of blocks
2100 * @lblk - logical number of the block in the file
Jan Kara09930042013-08-17 09:57:56 -04002101 * @bh - buffer head we want to add to the extent
Jan Kara4e7ea812013-06-04 13:17:40 -04002102 *
Jan Kara09930042013-08-17 09:57:56 -04002103 * The function is used to collect contig. blocks in the same state. If the
2104 * buffer doesn't require mapping for writeback and we haven't started the
2105 * extent of buffers to map yet, the function returns 'true' immediately - the
2106 * caller can write the buffer right away. Otherwise the function returns true
2107 * if the block has been added to the extent, false if the block couldn't be
2108 * added.
Jan Kara4e7ea812013-06-04 13:17:40 -04002109 */
Jan Kara09930042013-08-17 09:57:56 -04002110static bool mpage_add_bh_to_extent(struct mpage_da_data *mpd, ext4_lblk_t lblk,
2111 struct buffer_head *bh)
Jan Kara4e7ea812013-06-04 13:17:40 -04002112{
2113 struct ext4_map_blocks *map = &mpd->map;
2114
Jan Kara09930042013-08-17 09:57:56 -04002115 /* Buffer that doesn't need mapping for writeback? */
2116 if (!buffer_dirty(bh) || !buffer_mapped(bh) ||
2117 (!buffer_delay(bh) && !buffer_unwritten(bh))) {
2118 /* So far no extent to map => we write the buffer right away */
2119 if (map->m_len == 0)
2120 return true;
2121 return false;
2122 }
Jan Kara4e7ea812013-06-04 13:17:40 -04002123
2124 /* First block in the extent? */
2125 if (map->m_len == 0) {
Jan Karadddbd6a2017-04-30 18:29:10 -04002126 /* We cannot map unless handle is started... */
2127 if (!mpd->do_map)
2128 return false;
Jan Kara4e7ea812013-06-04 13:17:40 -04002129 map->m_lblk = lblk;
2130 map->m_len = 1;
Jan Kara09930042013-08-17 09:57:56 -04002131 map->m_flags = bh->b_state & BH_FLAGS;
2132 return true;
Jan Kara4e7ea812013-06-04 13:17:40 -04002133 }
2134
Jan Kara09930042013-08-17 09:57:56 -04002135 /* Don't go larger than mballoc is willing to allocate */
2136 if (map->m_len >= MAX_WRITEPAGES_EXTENT_LEN)
2137 return false;
2138
Jan Kara4e7ea812013-06-04 13:17:40 -04002139 /* Can we merge the block to our big extent? */
2140 if (lblk == map->m_lblk + map->m_len &&
Jan Kara09930042013-08-17 09:57:56 -04002141 (bh->b_state & BH_FLAGS) == map->m_flags) {
Jan Kara4e7ea812013-06-04 13:17:40 -04002142 map->m_len++;
Jan Kara09930042013-08-17 09:57:56 -04002143 return true;
Jan Kara4e7ea812013-06-04 13:17:40 -04002144 }
Jan Kara09930042013-08-17 09:57:56 -04002145 return false;
Jan Kara4e7ea812013-06-04 13:17:40 -04002146}
2147
Jan Kara5f1132b2013-08-17 10:02:33 -04002148/*
2149 * mpage_process_page_bufs - submit page buffers for IO or add them to extent
2150 *
2151 * @mpd - extent of blocks for mapping
2152 * @head - the first buffer in the page
2153 * @bh - buffer we should start processing from
2154 * @lblk - logical number of the block in the file corresponding to @bh
2155 *
2156 * Walk through page buffers from @bh upto @head (exclusive) and either submit
2157 * the page for IO if all buffers in this page were mapped and there's no
2158 * accumulated extent of buffers to map or add buffers in the page to the
2159 * extent of buffers to map. The function returns 1 if the caller can continue
2160 * by processing the next page, 0 if it should stop adding buffers to the
2161 * extent to map because we cannot extend it anymore. It can also return value
2162 * < 0 in case of error during IO submission.
2163 */
2164static int mpage_process_page_bufs(struct mpage_da_data *mpd,
2165 struct buffer_head *head,
2166 struct buffer_head *bh,
2167 ext4_lblk_t lblk)
Jan Kara4e7ea812013-06-04 13:17:40 -04002168{
2169 struct inode *inode = mpd->inode;
Jan Kara5f1132b2013-08-17 10:02:33 -04002170 int err;
Fabian Frederick93407472017-02-27 14:28:32 -08002171 ext4_lblk_t blocks = (i_size_read(inode) + i_blocksize(inode) - 1)
Jan Kara4e7ea812013-06-04 13:17:40 -04002172 >> inode->i_blkbits;
2173
Eric Biggersc93d8f82019-07-22 09:26:24 -07002174 if (ext4_verity_in_progress(inode))
2175 blocks = EXT_MAX_BLOCKS;
2176
Jan Kara4e7ea812013-06-04 13:17:40 -04002177 do {
2178 BUG_ON(buffer_locked(bh));
2179
Jan Kara09930042013-08-17 09:57:56 -04002180 if (lblk >= blocks || !mpage_add_bh_to_extent(mpd, lblk, bh)) {
Jan Kara4e7ea812013-06-04 13:17:40 -04002181 /* Found extent to map? */
2182 if (mpd->map.m_len)
Jan Kara5f1132b2013-08-17 10:02:33 -04002183 return 0;
Jan Karadddbd6a2017-04-30 18:29:10 -04002184 /* Buffer needs mapping and handle is not started? */
2185 if (!mpd->do_map)
2186 return 0;
Jan Kara09930042013-08-17 09:57:56 -04002187 /* Everything mapped so far and we hit EOF */
Jan Kara5f1132b2013-08-17 10:02:33 -04002188 break;
Jan Kara4e7ea812013-06-04 13:17:40 -04002189 }
Jan Kara4e7ea812013-06-04 13:17:40 -04002190 } while (lblk++, (bh = bh->b_this_page) != head);
Jan Kara5f1132b2013-08-17 10:02:33 -04002191 /* So far everything mapped? Submit the page for IO. */
2192 if (mpd->map.m_len == 0) {
2193 err = mpage_submit_page(mpd, head->b_page);
2194 if (err < 0)
2195 return err;
2196 }
2197 return lblk < blocks;
Jan Kara4e7ea812013-06-04 13:17:40 -04002198}
2199
2200/*
Ritesh Harjani2943fdb2019-10-16 13:07:09 +05302201 * mpage_process_page - update page buffers corresponding to changed extent and
2202 * may submit fully mapped page for IO
2203 *
2204 * @mpd - description of extent to map, on return next extent to map
2205 * @m_lblk - logical block mapping.
2206 * @m_pblk - corresponding physical mapping.
2207 * @map_bh - determines on return whether this page requires any further
2208 * mapping or not.
2209 * Scan given page buffers corresponding to changed extent and update buffer
2210 * state according to new extent state.
2211 * We map delalloc buffers to their physical location, clear unwritten bits.
2212 * If the given page is not fully mapped, we update @map to the next extent in
2213 * the given page that needs mapping & return @map_bh as true.
2214 */
2215static int mpage_process_page(struct mpage_da_data *mpd, struct page *page,
2216 ext4_lblk_t *m_lblk, ext4_fsblk_t *m_pblk,
2217 bool *map_bh)
2218{
2219 struct buffer_head *head, *bh;
2220 ext4_io_end_t *io_end = mpd->io_submit.io_end;
2221 ext4_lblk_t lblk = *m_lblk;
2222 ext4_fsblk_t pblock = *m_pblk;
2223 int err = 0;
Ritesh Harjanic8cc8812019-10-16 13:07:10 +05302224 int blkbits = mpd->inode->i_blkbits;
2225 ssize_t io_end_size = 0;
2226 struct ext4_io_end_vec *io_end_vec = ext4_last_io_end_vec(io_end);
Ritesh Harjani2943fdb2019-10-16 13:07:09 +05302227
2228 bh = head = page_buffers(page);
2229 do {
2230 if (lblk < mpd->map.m_lblk)
2231 continue;
2232 if (lblk >= mpd->map.m_lblk + mpd->map.m_len) {
2233 /*
2234 * Buffer after end of mapped extent.
2235 * Find next buffer in the page to map.
2236 */
2237 mpd->map.m_len = 0;
2238 mpd->map.m_flags = 0;
Ritesh Harjanic8cc8812019-10-16 13:07:10 +05302239 io_end_vec->size += io_end_size;
2240 io_end_size = 0;
Ritesh Harjani2943fdb2019-10-16 13:07:09 +05302241
Ritesh Harjani2943fdb2019-10-16 13:07:09 +05302242 err = mpage_process_page_bufs(mpd, head, bh, lblk);
2243 if (err > 0)
2244 err = 0;
Ritesh Harjanic8cc8812019-10-16 13:07:10 +05302245 if (!err && mpd->map.m_len && mpd->map.m_lblk > lblk) {
2246 io_end_vec = ext4_alloc_io_end_vec(io_end);
Ritesh Harjani4d06bfb2019-11-06 15:08:09 +05302247 if (IS_ERR(io_end_vec)) {
2248 err = PTR_ERR(io_end_vec);
2249 goto out;
2250 }
Ritesh Harjanic8cc8812019-10-16 13:07:10 +05302251 io_end_vec->offset = mpd->map.m_lblk << blkbits;
2252 }
Ritesh Harjani2943fdb2019-10-16 13:07:09 +05302253 *map_bh = true;
2254 goto out;
2255 }
2256 if (buffer_delay(bh)) {
2257 clear_buffer_delay(bh);
2258 bh->b_blocknr = pblock++;
2259 }
2260 clear_buffer_unwritten(bh);
Ritesh Harjanic8cc8812019-10-16 13:07:10 +05302261 io_end_size += (1 << blkbits);
Ritesh Harjani2943fdb2019-10-16 13:07:09 +05302262 } while (lblk++, (bh = bh->b_this_page) != head);
Ritesh Harjanic8cc8812019-10-16 13:07:10 +05302263
2264 io_end_vec->size += io_end_size;
2265 io_end_size = 0;
Ritesh Harjani2943fdb2019-10-16 13:07:09 +05302266 *map_bh = false;
2267out:
2268 *m_lblk = lblk;
2269 *m_pblk = pblock;
2270 return err;
2271}
2272
2273/*
Jan Kara4e7ea812013-06-04 13:17:40 -04002274 * mpage_map_buffers - update buffers corresponding to changed extent and
2275 * submit fully mapped pages for IO
2276 *
2277 * @mpd - description of extent to map, on return next extent to map
2278 *
2279 * Scan buffers corresponding to changed extent (we expect corresponding pages
2280 * to be already locked) and update buffer state according to new extent state.
2281 * We map delalloc buffers to their physical location, clear unwritten bits,
Lukas Czerner556615d2014-04-20 23:45:47 -04002282 * and mark buffers as uninit when we perform writes to unwritten extents
Jan Kara4e7ea812013-06-04 13:17:40 -04002283 * and do extent conversion after IO is finished. If the last page is not fully
2284 * mapped, we update @map to the next extent in the last page that needs
2285 * mapping. Otherwise we submit the page for IO.
2286 */
2287static int mpage_map_and_submit_buffers(struct mpage_da_data *mpd)
2288{
2289 struct pagevec pvec;
2290 int nr_pages, i;
2291 struct inode *inode = mpd->inode;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002292 int bpp_bits = PAGE_SHIFT - inode->i_blkbits;
Jan Kara4e7ea812013-06-04 13:17:40 -04002293 pgoff_t start, end;
2294 ext4_lblk_t lblk;
Ritesh Harjani2943fdb2019-10-16 13:07:09 +05302295 ext4_fsblk_t pblock;
Jan Kara4e7ea812013-06-04 13:17:40 -04002296 int err;
Ritesh Harjani2943fdb2019-10-16 13:07:09 +05302297 bool map_bh = false;
Jan Kara4e7ea812013-06-04 13:17:40 -04002298
2299 start = mpd->map.m_lblk >> bpp_bits;
2300 end = (mpd->map.m_lblk + mpd->map.m_len - 1) >> bpp_bits;
2301 lblk = start << bpp_bits;
2302 pblock = mpd->map.m_pblk;
2303
Mel Gorman86679822017-11-15 17:37:52 -08002304 pagevec_init(&pvec);
Jan Kara4e7ea812013-06-04 13:17:40 -04002305 while (start <= end) {
Jan Kara2b85a612017-09-06 16:21:30 -07002306 nr_pages = pagevec_lookup_range(&pvec, inode->i_mapping,
Jan Kara397162f2017-09-06 16:21:43 -07002307 &start, end);
Jan Kara4e7ea812013-06-04 13:17:40 -04002308 if (nr_pages == 0)
2309 break;
2310 for (i = 0; i < nr_pages; i++) {
2311 struct page *page = pvec.pages[i];
2312
Ritesh Harjani2943fdb2019-10-16 13:07:09 +05302313 err = mpage_process_page(mpd, page, &lblk, &pblock,
2314 &map_bh);
Jan Kara4e7ea812013-06-04 13:17:40 -04002315 /*
Ritesh Harjani2943fdb2019-10-16 13:07:09 +05302316 * If map_bh is true, means page may require further bh
2317 * mapping, or maybe the page was submitted for IO.
2318 * So we return to call further extent mapping.
Jan Kara4e7ea812013-06-04 13:17:40 -04002319 */
Jason Yan39c0ae12020-04-20 12:29:18 +08002320 if (err < 0 || map_bh)
Ritesh Harjani2943fdb2019-10-16 13:07:09 +05302321 goto out;
Jan Kara4e7ea812013-06-04 13:17:40 -04002322 /* Page fully mapped - let IO run! */
2323 err = mpage_submit_page(mpd, page);
Ritesh Harjani2943fdb2019-10-16 13:07:09 +05302324 if (err < 0)
2325 goto out;
Jan Kara4e7ea812013-06-04 13:17:40 -04002326 }
2327 pagevec_release(&pvec);
2328 }
2329 /* Extent fully mapped and matches with page boundary. We are done. */
2330 mpd->map.m_len = 0;
2331 mpd->map.m_flags = 0;
2332 return 0;
Ritesh Harjani2943fdb2019-10-16 13:07:09 +05302333out:
2334 pagevec_release(&pvec);
2335 return err;
Jan Kara4e7ea812013-06-04 13:17:40 -04002336}
2337
2338static int mpage_map_one_extent(handle_t *handle, struct mpage_da_data *mpd)
2339{
2340 struct inode *inode = mpd->inode;
2341 struct ext4_map_blocks *map = &mpd->map;
2342 int get_blocks_flags;
Lukas Czerner090f32e2014-04-20 23:44:47 -04002343 int err, dioread_nolock;
Jan Kara4e7ea812013-06-04 13:17:40 -04002344
2345 trace_ext4_da_write_pages_extent(inode, map);
2346 /*
2347 * Call ext4_map_blocks() to allocate any delayed allocation blocks, or
Lukas Czerner556615d2014-04-20 23:45:47 -04002348 * to convert an unwritten extent to be initialized (in the case
Jan Kara4e7ea812013-06-04 13:17:40 -04002349 * where we have written into one or more preallocated blocks). It is
2350 * possible that we're going to need more metadata blocks than
2351 * previously reserved. However we must not fail because we're in
2352 * writeback and there is nothing we can do about it so it might result
2353 * in data loss. So use reserved blocks to allocate metadata if
2354 * possible.
2355 *
Theodore Ts'o754cfed2014-09-04 18:08:22 -04002356 * We pass in the magic EXT4_GET_BLOCKS_DELALLOC_RESERVE if
2357 * the blocks in question are delalloc blocks. This indicates
2358 * that the blocks and quotas has already been checked when
2359 * the data was copied into the page cache.
Jan Kara4e7ea812013-06-04 13:17:40 -04002360 */
2361 get_blocks_flags = EXT4_GET_BLOCKS_CREATE |
Jan Karaee0876b2016-04-24 00:56:08 -04002362 EXT4_GET_BLOCKS_METADATA_NOFAIL |
2363 EXT4_GET_BLOCKS_IO_SUBMIT;
Lukas Czerner090f32e2014-04-20 23:44:47 -04002364 dioread_nolock = ext4_should_dioread_nolock(inode);
2365 if (dioread_nolock)
Jan Kara4e7ea812013-06-04 13:17:40 -04002366 get_blocks_flags |= EXT4_GET_BLOCKS_IO_CREATE_EXT;
2367 if (map->m_flags & (1 << BH_Delay))
2368 get_blocks_flags |= EXT4_GET_BLOCKS_DELALLOC_RESERVE;
2369
2370 err = ext4_map_blocks(handle, inode, map, get_blocks_flags);
2371 if (err < 0)
2372 return err;
Lukas Czerner090f32e2014-04-20 23:44:47 -04002373 if (dioread_nolock && (map->m_flags & EXT4_MAP_UNWRITTEN)) {
Jan Kara6b523df2013-06-04 13:21:11 -04002374 if (!mpd->io_submit.io_end->handle &&
2375 ext4_handle_valid(handle)) {
2376 mpd->io_submit.io_end->handle = handle->h_rsv_handle;
2377 handle->h_rsv_handle = NULL;
2378 }
Jan Kara3613d222013-06-04 13:19:34 -04002379 ext4_set_io_unwritten_flag(inode, mpd->io_submit.io_end);
Jan Kara6b523df2013-06-04 13:21:11 -04002380 }
Jan Kara4e7ea812013-06-04 13:17:40 -04002381
2382 BUG_ON(map->m_len == 0);
Jan Kara4e7ea812013-06-04 13:17:40 -04002383 return 0;
2384}
2385
2386/*
2387 * mpage_map_and_submit_extent - map extent starting at mpd->lblk of length
2388 * mpd->len and submit pages underlying it for IO
2389 *
2390 * @handle - handle for journal operations
2391 * @mpd - extent to map
Jan Kara7534e852013-10-16 08:26:08 -04002392 * @give_up_on_write - we set this to true iff there is a fatal error and there
2393 * is no hope of writing the data. The caller should discard
2394 * dirty pages to avoid infinite loops.
Jan Kara4e7ea812013-06-04 13:17:40 -04002395 *
2396 * The function maps extent starting at mpd->lblk of length mpd->len. If it is
2397 * delayed, blocks are allocated, if it is unwritten, we may need to convert
2398 * them to initialized or split the described range from larger unwritten
2399 * extent. Note that we need not map all the described range since allocation
2400 * can return less blocks or the range is covered by more unwritten extents. We
2401 * cannot map more because we are limited by reserved transaction credits. On
2402 * the other hand we always make sure that the last touched page is fully
2403 * mapped so that it can be written out (and thus forward progress is
2404 * guaranteed). After mapping we submit all mapped pages for IO.
2405 */
2406static int mpage_map_and_submit_extent(handle_t *handle,
Theodore Ts'ocb530542013-07-01 08:12:40 -04002407 struct mpage_da_data *mpd,
2408 bool *give_up_on_write)
Jan Kara4e7ea812013-06-04 13:17:40 -04002409{
2410 struct inode *inode = mpd->inode;
2411 struct ext4_map_blocks *map = &mpd->map;
2412 int err;
2413 loff_t disksize;
Dmitry Monakhov66031202014-08-27 18:40:03 -04002414 int progress = 0;
Ritesh Harjanic8cc8812019-10-16 13:07:10 +05302415 ext4_io_end_t *io_end = mpd->io_submit.io_end;
Ritesh Harjani4d06bfb2019-11-06 15:08:09 +05302416 struct ext4_io_end_vec *io_end_vec;
Jan Kara4e7ea812013-06-04 13:17:40 -04002417
Ritesh Harjani4d06bfb2019-11-06 15:08:09 +05302418 io_end_vec = ext4_alloc_io_end_vec(io_end);
2419 if (IS_ERR(io_end_vec))
2420 return PTR_ERR(io_end_vec);
Ritesh Harjanic8cc8812019-10-16 13:07:10 +05302421 io_end_vec->offset = ((loff_t)map->m_lblk) << inode->i_blkbits;
Jan Kara27d7c4e2013-07-05 21:57:22 -04002422 do {
Jan Kara4e7ea812013-06-04 13:17:40 -04002423 err = mpage_map_one_extent(handle, mpd);
2424 if (err < 0) {
2425 struct super_block *sb = inode->i_sb;
2426
Theodore Ts'o0db1ff22017-02-05 01:28:48 -05002427 if (ext4_forced_shutdown(EXT4_SB(sb)) ||
2428 EXT4_SB(sb)->s_mount_flags & EXT4_MF_FS_ABORTED)
Theodore Ts'ocb530542013-07-01 08:12:40 -04002429 goto invalidate_dirty_pages;
Jan Kara4e7ea812013-06-04 13:17:40 -04002430 /*
Theodore Ts'ocb530542013-07-01 08:12:40 -04002431 * Let the uper layers retry transient errors.
2432 * In the case of ENOSPC, if ext4_count_free_blocks()
2433 * is non-zero, a commit should free up blocks.
Jan Kara4e7ea812013-06-04 13:17:40 -04002434 */
Theodore Ts'ocb530542013-07-01 08:12:40 -04002435 if ((err == -ENOMEM) ||
Dmitry Monakhov66031202014-08-27 18:40:03 -04002436 (err == -ENOSPC && ext4_count_free_clusters(sb))) {
2437 if (progress)
2438 goto update_disksize;
Theodore Ts'ocb530542013-07-01 08:12:40 -04002439 return err;
Dmitry Monakhov66031202014-08-27 18:40:03 -04002440 }
Theodore Ts'ocb530542013-07-01 08:12:40 -04002441 ext4_msg(sb, KERN_CRIT,
2442 "Delayed block allocation failed for "
2443 "inode %lu at logical offset %llu with"
2444 " max blocks %u with error %d",
2445 inode->i_ino,
2446 (unsigned long long)map->m_lblk,
2447 (unsigned)map->m_len, -err);
2448 ext4_msg(sb, KERN_CRIT,
2449 "This should not happen!! Data will "
2450 "be lost\n");
2451 if (err == -ENOSPC)
2452 ext4_print_free_blocks(inode);
2453 invalidate_dirty_pages:
2454 *give_up_on_write = true;
Jan Kara4e7ea812013-06-04 13:17:40 -04002455 return err;
2456 }
Dmitry Monakhov66031202014-08-27 18:40:03 -04002457 progress = 1;
Jan Kara4e7ea812013-06-04 13:17:40 -04002458 /*
2459 * Update buffer state, submit mapped pages, and get us new
2460 * extent to map
2461 */
2462 err = mpage_map_and_submit_buffers(mpd);
2463 if (err < 0)
Dmitry Monakhov66031202014-08-27 18:40:03 -04002464 goto update_disksize;
Jan Kara27d7c4e2013-07-05 21:57:22 -04002465 } while (map->m_len);
Jan Kara4e7ea812013-06-04 13:17:40 -04002466
Dmitry Monakhov66031202014-08-27 18:40:03 -04002467update_disksize:
Theodore Ts'o622cad12014-04-11 10:35:17 -04002468 /*
2469 * Update on-disk size after IO is submitted. Races with
2470 * truncate are avoided by checking i_size under i_data_sem.
2471 */
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002472 disksize = ((loff_t)mpd->first_page) << PAGE_SHIFT;
Qian Cai35df4292020-02-07 09:29:11 -05002473 if (disksize > READ_ONCE(EXT4_I(inode)->i_disksize)) {
Jan Kara4e7ea812013-06-04 13:17:40 -04002474 int err2;
Theodore Ts'o622cad12014-04-11 10:35:17 -04002475 loff_t i_size;
Jan Kara4e7ea812013-06-04 13:17:40 -04002476
Theodore Ts'o622cad12014-04-11 10:35:17 -04002477 down_write(&EXT4_I(inode)->i_data_sem);
2478 i_size = i_size_read(inode);
2479 if (disksize > i_size)
2480 disksize = i_size;
2481 if (disksize > EXT4_I(inode)->i_disksize)
2482 EXT4_I(inode)->i_disksize = disksize;
Theodore Ts'o622cad12014-04-11 10:35:17 -04002483 up_write(&EXT4_I(inode)->i_data_sem);
Theodore Ts'ob907f2d2017-01-11 22:14:49 -05002484 err2 = ext4_mark_inode_dirty(handle, inode);
Theodore Ts'o878520a2019-11-19 21:54:15 -05002485 if (err2) {
Theodore Ts'o54d3adb2020-03-28 19:33:43 -04002486 ext4_error_err(inode->i_sb, -err2,
2487 "Failed to mark inode %lu dirty",
2488 inode->i_ino);
Theodore Ts'o878520a2019-11-19 21:54:15 -05002489 }
Jan Kara4e7ea812013-06-04 13:17:40 -04002490 if (!err)
2491 err = err2;
2492 }
2493 return err;
2494}
2495
2496/*
Jan Karafffb2732013-06-04 13:01:11 -04002497 * Calculate the total number of credits to reserve for one writepages
Theodore Ts'o20970ba2013-06-06 14:00:46 -04002498 * iteration. This is called from ext4_writepages(). We map an extent of
Anatol Pomozov70261f52013-08-28 14:40:12 -04002499 * up to MAX_WRITEPAGES_EXTENT_LEN blocks and then we go on and finish mapping
Jan Karafffb2732013-06-04 13:01:11 -04002500 * the last partial page. So in total we can map MAX_WRITEPAGES_EXTENT_LEN +
2501 * bpp - 1 blocks in bpp different extents.
2502 */
Mingming Cao525f4ed2008-08-19 22:15:58 -04002503static int ext4_da_writepages_trans_blocks(struct inode *inode)
2504{
Jan Karafffb2732013-06-04 13:01:11 -04002505 int bpp = ext4_journal_blocks_per_page(inode);
Mingming Cao525f4ed2008-08-19 22:15:58 -04002506
Jan Karafffb2732013-06-04 13:01:11 -04002507 return ext4_meta_trans_blocks(inode,
2508 MAX_WRITEPAGES_EXTENT_LEN + bpp - 1, bpp);
Mingming Cao525f4ed2008-08-19 22:15:58 -04002509}
Mingming Cao61628a32008-07-11 19:27:31 -04002510
Theodore Ts'o8e48dcf2010-05-16 18:00:00 -04002511/*
Jan Kara4e7ea812013-06-04 13:17:40 -04002512 * mpage_prepare_extent_to_map - find & lock contiguous range of dirty pages
2513 * and underlying extent to map
2514 *
2515 * @mpd - where to look for pages
2516 *
2517 * Walk dirty pages in the mapping. If they are fully mapped, submit them for
2518 * IO immediately. When we find a page which isn't mapped we start accumulating
2519 * extent of buffers underlying these pages that needs mapping (formed by
2520 * either delayed or unwritten buffers). We also lock the pages containing
2521 * these buffers. The extent found is returned in @mpd structure (starting at
2522 * mpd->lblk with length mpd->len blocks).
2523 *
2524 * Note that this function can attach bios to one io_end structure which are
2525 * neither logically nor physically contiguous. Although it may seem as an
2526 * unnecessary complication, it is actually inevitable in blocksize < pagesize
2527 * 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 -04002528 */
Jan Kara4e7ea812013-06-04 13:17:40 -04002529static int mpage_prepare_extent_to_map(struct mpage_da_data *mpd)
Theodore Ts'o8e48dcf2010-05-16 18:00:00 -04002530{
Jan Kara4e7ea812013-06-04 13:17:40 -04002531 struct address_space *mapping = mpd->inode->i_mapping;
2532 struct pagevec pvec;
2533 unsigned int nr_pages;
Ming Leiaeac5892013-10-17 18:56:16 -04002534 long left = mpd->wbc->nr_to_write;
Jan Kara4e7ea812013-06-04 13:17:40 -04002535 pgoff_t index = mpd->first_page;
2536 pgoff_t end = mpd->last_page;
Matthew Wilcox10bbd232017-12-05 17:30:38 -05002537 xa_mark_t tag;
Jan Kara4e7ea812013-06-04 13:17:40 -04002538 int i, err = 0;
2539 int blkbits = mpd->inode->i_blkbits;
2540 ext4_lblk_t lblk;
2541 struct buffer_head *head;
Theodore Ts'o8e48dcf2010-05-16 18:00:00 -04002542
Jan Kara4e7ea812013-06-04 13:17:40 -04002543 if (mpd->wbc->sync_mode == WB_SYNC_ALL || mpd->wbc->tagged_writepages)
Eric Sandeen5b41d922010-10-27 21:30:13 -04002544 tag = PAGECACHE_TAG_TOWRITE;
2545 else
2546 tag = PAGECACHE_TAG_DIRTY;
2547
Mel Gorman86679822017-11-15 17:37:52 -08002548 pagevec_init(&pvec);
Jan Kara4e7ea812013-06-04 13:17:40 -04002549 mpd->map.m_len = 0;
2550 mpd->next_page = index;
Theodore Ts'o4f01b022011-02-26 14:07:37 -05002551 while (index <= end) {
Jan Karadc7f3e82017-11-15 17:34:44 -08002552 nr_pages = pagevec_lookup_range_tag(&pvec, mapping, &index, end,
Jan Kara67fd7072017-11-15 17:35:19 -08002553 tag);
Theodore Ts'o8e48dcf2010-05-16 18:00:00 -04002554 if (nr_pages == 0)
Jan Kara4e7ea812013-06-04 13:17:40 -04002555 goto out;
Theodore Ts'o8e48dcf2010-05-16 18:00:00 -04002556
2557 for (i = 0; i < nr_pages; i++) {
2558 struct page *page = pvec.pages[i];
2559
2560 /*
Ming Leiaeac5892013-10-17 18:56:16 -04002561 * Accumulated enough dirty pages? This doesn't apply
2562 * to WB_SYNC_ALL mode. For integrity sync we have to
2563 * keep going because someone may be concurrently
2564 * dirtying pages, and we might have synced a lot of
2565 * newly appeared dirty pages, but have not synced all
2566 * of the old dirty pages.
2567 */
2568 if (mpd->wbc->sync_mode == WB_SYNC_NONE && left <= 0)
2569 goto out;
2570
Jan Kara4e7ea812013-06-04 13:17:40 -04002571 /* If we can't merge this page, we are done. */
2572 if (mpd->map.m_len > 0 && mpd->next_page != page->index)
2573 goto out;
Theodore Ts'o78aaced2011-02-26 14:09:14 -05002574
Theodore Ts'o8e48dcf2010-05-16 18:00:00 -04002575 lock_page(page);
Theodore Ts'o8e48dcf2010-05-16 18:00:00 -04002576 /*
Jan Kara4e7ea812013-06-04 13:17:40 -04002577 * If the page is no longer dirty, or its mapping no
2578 * longer corresponds to inode we are writing (which
2579 * means it has been truncated or invalidated), or the
2580 * page is already under writeback and we are not doing
2581 * a data integrity writeback, skip the page
Theodore Ts'o8e48dcf2010-05-16 18:00:00 -04002582 */
Theodore Ts'o4f01b022011-02-26 14:07:37 -05002583 if (!PageDirty(page) ||
2584 (PageWriteback(page) &&
Jan Kara4e7ea812013-06-04 13:17:40 -04002585 (mpd->wbc->sync_mode == WB_SYNC_NONE)) ||
Theodore Ts'o4f01b022011-02-26 14:07:37 -05002586 unlikely(page->mapping != mapping)) {
Theodore Ts'o8e48dcf2010-05-16 18:00:00 -04002587 unlock_page(page);
2588 continue;
2589 }
2590
Darrick J. Wong7cb1a532011-05-18 13:53:20 -04002591 wait_on_page_writeback(page);
Theodore Ts'o8e48dcf2010-05-16 18:00:00 -04002592 BUG_ON(PageWriteback(page));
Theodore Ts'o8e48dcf2010-05-16 18:00:00 -04002593
Jan Kara4e7ea812013-06-04 13:17:40 -04002594 if (mpd->map.m_len == 0)
Theodore Ts'o8eb9e5c2011-02-26 14:07:31 -05002595 mpd->first_page = page->index;
Theodore Ts'o8eb9e5c2011-02-26 14:07:31 -05002596 mpd->next_page = page->index + 1;
Jan Karaf8bec372013-01-28 12:55:08 -05002597 /* Add all dirty buffers to mpd */
Jan Kara4e7ea812013-06-04 13:17:40 -04002598 lblk = ((ext4_lblk_t)page->index) <<
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002599 (PAGE_SHIFT - blkbits);
Jan Karaf8bec372013-01-28 12:55:08 -05002600 head = page_buffers(page);
Jan Kara5f1132b2013-08-17 10:02:33 -04002601 err = mpage_process_page_bufs(mpd, head, head, lblk);
2602 if (err <= 0)
Jan Kara4e7ea812013-06-04 13:17:40 -04002603 goto out;
Jan Kara5f1132b2013-08-17 10:02:33 -04002604 err = 0;
Ming Leiaeac5892013-10-17 18:56:16 -04002605 left--;
Theodore Ts'o8e48dcf2010-05-16 18:00:00 -04002606 }
2607 pagevec_release(&pvec);
2608 cond_resched();
2609 }
Theodore Ts'o4f01b022011-02-26 14:07:37 -05002610 return 0;
Theodore Ts'o8eb9e5c2011-02-26 14:07:31 -05002611out:
2612 pagevec_release(&pvec);
Jan Kara4e7ea812013-06-04 13:17:40 -04002613 return err;
Theodore Ts'o8e48dcf2010-05-16 18:00:00 -04002614}
2615
Theodore Ts'o20970ba2013-06-06 14:00:46 -04002616static int ext4_writepages(struct address_space *mapping,
2617 struct writeback_control *wbc)
Alex Tomas64769242008-07-11 19:27:31 -04002618{
Jan Kara4e7ea812013-06-04 13:17:40 -04002619 pgoff_t writeback_index = 0;
2620 long nr_to_write = wbc->nr_to_write;
Aneesh Kumar K.V22208de2008-10-16 10:10:36 -04002621 int range_whole = 0;
Jan Kara4e7ea812013-06-04 13:17:40 -04002622 int cycled = 1;
Mingming Cao61628a32008-07-11 19:27:31 -04002623 handle_t *handle = NULL;
Aneesh Kumar K.Vdf222912008-09-08 23:05:34 -04002624 struct mpage_da_data mpd;
Aneesh Kumar K.V5e745b02008-08-18 18:00:57 -04002625 struct inode *inode = mapping->host;
Jan Kara6b523df2013-06-04 13:21:11 -04002626 int needed_blocks, rsv_blocks = 0, ret = 0;
Aneesh Kumar K.V5e745b02008-08-18 18:00:57 -04002627 struct ext4_sb_info *sbi = EXT4_SB(mapping->host->i_sb);
Jan Kara4e7ea812013-06-04 13:17:40 -04002628 bool done;
Shaohua Li1bce63d12011-10-18 10:55:51 -04002629 struct blk_plug plug;
Theodore Ts'ocb530542013-07-01 08:12:40 -04002630 bool give_up_on_write = false;
Mingming Cao61628a32008-07-11 19:27:31 -04002631
Theodore Ts'o0db1ff22017-02-05 01:28:48 -05002632 if (unlikely(ext4_forced_shutdown(EXT4_SB(inode->i_sb))))
2633 return -EIO;
2634
Eric Biggersbbd55932020-02-19 10:30:46 -08002635 percpu_down_read(&sbi->s_writepages_rwsem);
Theodore Ts'o20970ba2013-06-06 14:00:46 -04002636 trace_ext4_writepages(inode, wbc);
Theodore Ts'oba80b102009-01-03 20:03:21 -05002637
Mingming Cao61628a32008-07-11 19:27:31 -04002638 /*
2639 * No pages to write? This is mainly a kludge to avoid starting
2640 * a transaction for special inodes like journal inode on last iput()
2641 * because that could violate lock ordering on umount
2642 */
Aneesh Kumar K.Va1d6cc52008-08-19 21:55:02 -04002643 if (!mapping->nrpages || !mapping_tagged(mapping, PAGECACHE_TAG_DIRTY))
Ming Leibbf023c72013-10-30 07:27:16 -04002644 goto out_writepages;
Theodore Ts'o2a21e372008-11-05 09:22:24 -05002645
Theodore Ts'o20970ba2013-06-06 14:00:46 -04002646 if (ext4_should_journal_data(inode)) {
Goldwyn Rodrigues043d20d2018-03-26 01:32:50 -04002647 ret = generic_writepages(mapping, wbc);
Ming Leibbf023c72013-10-30 07:27:16 -04002648 goto out_writepages;
Theodore Ts'o20970ba2013-06-06 14:00:46 -04002649 }
2650
Theodore Ts'o2a21e372008-11-05 09:22:24 -05002651 /*
2652 * If the filesystem has aborted, it is read-only, so return
2653 * right away instead of dumping stack traces later on that
2654 * will obscure the real source of the problem. We test
Linus Torvalds1751e8a2017-11-27 13:05:09 -08002655 * EXT4_MF_FS_ABORTED instead of sb->s_flag's SB_RDONLY because
Theodore Ts'o2a21e372008-11-05 09:22:24 -05002656 * the latter could be true if the filesystem is mounted
Theodore Ts'o20970ba2013-06-06 14:00:46 -04002657 * read-only, and in that case, ext4_writepages should
Theodore Ts'o2a21e372008-11-05 09:22:24 -05002658 * *never* be called, so if that ever happens, we would want
2659 * the stack trace.
2660 */
Theodore Ts'o0db1ff22017-02-05 01:28:48 -05002661 if (unlikely(ext4_forced_shutdown(EXT4_SB(mapping->host->i_sb)) ||
2662 sbi->s_mount_flags & EXT4_MF_FS_ABORTED)) {
Ming Leibbf023c72013-10-30 07:27:16 -04002663 ret = -EROFS;
2664 goto out_writepages;
2665 }
Theodore Ts'o2a21e372008-11-05 09:22:24 -05002666
Jan Kara4e7ea812013-06-04 13:17:40 -04002667 /*
2668 * If we have inline data and arrive here, it means that
2669 * we will soon create the block for the 1st page, so
2670 * we'd better clear the inline data here.
2671 */
2672 if (ext4_has_inline_data(inode)) {
2673 /* Just inode will be modified... */
2674 handle = ext4_journal_start(inode, EXT4_HT_INODE, 1);
2675 if (IS_ERR(handle)) {
2676 ret = PTR_ERR(handle);
2677 goto out_writepages;
2678 }
2679 BUG_ON(ext4_test_inode_state(inode,
2680 EXT4_STATE_MAY_INLINE_DATA));
2681 ext4_destroy_inline_data(handle, inode);
2682 ext4_journal_stop(handle);
2683 }
2684
yangerkun4e343232019-08-11 16:27:41 -04002685 if (ext4_should_dioread_nolock(inode)) {
2686 /*
2687 * We may need to convert up to one extent per block in
2688 * the page and we may dirty the inode.
2689 */
2690 rsv_blocks = 1 + ext4_chunk_trans_blocks(inode,
2691 PAGE_SIZE >> inode->i_blkbits);
2692 }
2693
Aneesh Kumar K.V22208de2008-10-16 10:10:36 -04002694 if (wbc->range_start == 0 && wbc->range_end == LLONG_MAX)
2695 range_whole = 1;
Mingming Cao61628a32008-07-11 19:27:31 -04002696
Aneesh Kumar K.V2acf2c22009-02-14 10:42:58 -05002697 if (wbc->range_cyclic) {
Jan Kara4e7ea812013-06-04 13:17:40 -04002698 writeback_index = mapping->writeback_index;
2699 if (writeback_index)
Aneesh Kumar K.V2acf2c22009-02-14 10:42:58 -05002700 cycled = 0;
Jan Kara4e7ea812013-06-04 13:17:40 -04002701 mpd.first_page = writeback_index;
2702 mpd.last_page = -1;
Eric Sandeen5b41d922010-10-27 21:30:13 -04002703 } else {
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002704 mpd.first_page = wbc->range_start >> PAGE_SHIFT;
2705 mpd.last_page = wbc->range_end >> PAGE_SHIFT;
Eric Sandeen5b41d922010-10-27 21:30:13 -04002706 }
Aneesh Kumar K.Va1d6cc52008-08-19 21:55:02 -04002707
Jan Kara4e7ea812013-06-04 13:17:40 -04002708 mpd.inode = inode;
2709 mpd.wbc = wbc;
2710 ext4_io_submit_init(&mpd.io_submit, wbc);
Aneesh Kumar K.V2acf2c22009-02-14 10:42:58 -05002711retry:
Wu Fengguang6e6938b2010-06-06 10:38:15 -06002712 if (wbc->sync_mode == WB_SYNC_ALL || wbc->tagged_writepages)
Jan Kara4e7ea812013-06-04 13:17:40 -04002713 tag_pages_for_writeback(mapping, mpd.first_page, mpd.last_page);
2714 done = false;
Shaohua Li1bce63d12011-10-18 10:55:51 -04002715 blk_start_plug(&plug);
Jan Karadddbd6a2017-04-30 18:29:10 -04002716
2717 /*
2718 * First writeback pages that don't need mapping - we can avoid
2719 * starting a transaction unnecessarily and also avoid being blocked
2720 * in the block layer on device congestion while having transaction
2721 * started.
2722 */
2723 mpd.do_map = 0;
2724 mpd.io_submit.io_end = ext4_init_io_end(inode, GFP_KERNEL);
2725 if (!mpd.io_submit.io_end) {
2726 ret = -ENOMEM;
2727 goto unplug;
2728 }
2729 ret = mpage_prepare_extent_to_map(&mpd);
Xiaoguang Wanga297b2f2019-02-10 23:53:21 -05002730 /* Unlock pages we didn't use */
2731 mpage_release_unused_pages(&mpd, false);
Jan Karadddbd6a2017-04-30 18:29:10 -04002732 /* Submit prepared bio */
2733 ext4_io_submit(&mpd.io_submit);
2734 ext4_put_io_end_defer(mpd.io_submit.io_end);
2735 mpd.io_submit.io_end = NULL;
Jan Karadddbd6a2017-04-30 18:29:10 -04002736 if (ret < 0)
2737 goto unplug;
2738
Jan Kara4e7ea812013-06-04 13:17:40 -04002739 while (!done && mpd.first_page <= mpd.last_page) {
2740 /* For each extent of pages we use new io_end */
2741 mpd.io_submit.io_end = ext4_init_io_end(inode, GFP_KERNEL);
2742 if (!mpd.io_submit.io_end) {
2743 ret = -ENOMEM;
2744 break;
2745 }
Aneesh Kumar K.Va1d6cc52008-08-19 21:55:02 -04002746
2747 /*
Jan Kara4e7ea812013-06-04 13:17:40 -04002748 * We have two constraints: We find one extent to map and we
2749 * must always write out whole page (makes a difference when
2750 * blocksize < pagesize) so that we don't block on IO when we
2751 * try to write out the rest of the page. Journalled mode is
2752 * not supported by delalloc.
Aneesh Kumar K.Va1d6cc52008-08-19 21:55:02 -04002753 */
2754 BUG_ON(ext4_should_journal_data(inode));
Mingming Cao525f4ed2008-08-19 22:15:58 -04002755 needed_blocks = ext4_da_writepages_trans_blocks(inode);
Aneesh Kumar K.Va1d6cc52008-08-19 21:55:02 -04002756
Jan Kara4e7ea812013-06-04 13:17:40 -04002757 /* start a new transaction */
Jan Kara6b523df2013-06-04 13:21:11 -04002758 handle = ext4_journal_start_with_reserve(inode,
2759 EXT4_HT_WRITE_PAGE, needed_blocks, rsv_blocks);
Mingming Cao61628a32008-07-11 19:27:31 -04002760 if (IS_ERR(handle)) {
2761 ret = PTR_ERR(handle);
Theodore Ts'o16939182009-09-26 17:43:59 -04002762 ext4_msg(inode->i_sb, KERN_CRIT, "%s: jbd2_start: "
Curt Wohlgemuthfbe845d2010-05-16 13:00:00 -04002763 "%ld pages, ino %lu; err %d", __func__,
Aneesh Kumar K.Va1d6cc52008-08-19 21:55:02 -04002764 wbc->nr_to_write, inode->i_ino, ret);
Jan Kara4e7ea812013-06-04 13:17:40 -04002765 /* Release allocated io_end */
2766 ext4_put_io_end(mpd.io_submit.io_end);
Jan Karadddbd6a2017-04-30 18:29:10 -04002767 mpd.io_submit.io_end = NULL;
Jan Kara4e7ea812013-06-04 13:17:40 -04002768 break;
Mingming Cao61628a32008-07-11 19:27:31 -04002769 }
Jan Karadddbd6a2017-04-30 18:29:10 -04002770 mpd.do_map = 1;
Theodore Ts'of63e60052009-02-23 16:42:39 -05002771
Jan Kara4e7ea812013-06-04 13:17:40 -04002772 trace_ext4_da_write_pages(inode, mpd.first_page, mpd.wbc);
2773 ret = mpage_prepare_extent_to_map(&mpd);
2774 if (!ret) {
2775 if (mpd.map.m_len)
Theodore Ts'ocb530542013-07-01 08:12:40 -04002776 ret = mpage_map_and_submit_extent(handle, &mpd,
2777 &give_up_on_write);
Jan Kara4e7ea812013-06-04 13:17:40 -04002778 else {
2779 /*
2780 * We scanned the whole range (or exhausted
2781 * nr_to_write), submitted what was mapped and
2782 * didn't find anything needing mapping. We are
2783 * done.
2784 */
2785 done = true;
2786 }
Theodore Ts'of63e60052009-02-23 16:42:39 -05002787 }
Jan Kara646caa92016-07-04 10:14:01 -04002788 /*
2789 * Caution: If the handle is synchronous,
2790 * ext4_journal_stop() can wait for transaction commit
2791 * to finish which may depend on writeback of pages to
2792 * complete or on page lock to be released. In that
2793 * case, we have to wait until after after we have
2794 * submitted all the IO, released page locks we hold,
2795 * and dropped io_end reference (for extent conversion
2796 * to be able to complete) before stopping the handle.
2797 */
2798 if (!ext4_handle_valid(handle) || handle->h_sync == 0) {
2799 ext4_journal_stop(handle);
2800 handle = NULL;
Jan Karadddbd6a2017-04-30 18:29:10 -04002801 mpd.do_map = 0;
Jan Kara646caa92016-07-04 10:14:01 -04002802 }
Jan Kara4e7ea812013-06-04 13:17:40 -04002803 /* Unlock pages we didn't use */
Theodore Ts'ocb530542013-07-01 08:12:40 -04002804 mpage_release_unused_pages(&mpd, give_up_on_write);
Xiaoguang Wanga297b2f2019-02-10 23:53:21 -05002805 /* Submit prepared bio */
2806 ext4_io_submit(&mpd.io_submit);
2807
Jan Kara646caa92016-07-04 10:14:01 -04002808 /*
2809 * Drop our io_end reference we got from init. We have
2810 * to be careful and use deferred io_end finishing if
2811 * we are still holding the transaction as we can
2812 * release the last reference to io_end which may end
2813 * up doing unwritten extent conversion.
2814 */
2815 if (handle) {
2816 ext4_put_io_end_defer(mpd.io_submit.io_end);
2817 ext4_journal_stop(handle);
2818 } else
2819 ext4_put_io_end(mpd.io_submit.io_end);
Jan Karadddbd6a2017-04-30 18:29:10 -04002820 mpd.io_submit.io_end = NULL;
Aneesh Kumar K.Vdf222912008-09-08 23:05:34 -04002821
Jan Kara4e7ea812013-06-04 13:17:40 -04002822 if (ret == -ENOSPC && sbi->s_journal) {
2823 /*
2824 * Commit the transaction which would
Aneesh Kumar K.V22208de2008-10-16 10:10:36 -04002825 * free blocks released in the transaction
2826 * and try again
2827 */
Aneesh Kumar K.Vdf222912008-09-08 23:05:34 -04002828 jbd2_journal_force_commit_nested(sbi->s_journal);
Aneesh Kumar K.V22208de2008-10-16 10:10:36 -04002829 ret = 0;
Jan Kara4e7ea812013-06-04 13:17:40 -04002830 continue;
2831 }
2832 /* Fatal error - ENOMEM, EIO... */
2833 if (ret)
Mingming Cao61628a32008-07-11 19:27:31 -04002834 break;
Mingming Cao61628a32008-07-11 19:27:31 -04002835 }
Jan Karadddbd6a2017-04-30 18:29:10 -04002836unplug:
Shaohua Li1bce63d12011-10-18 10:55:51 -04002837 blk_finish_plug(&plug);
Jan Kara9c12a832013-09-16 08:24:26 -04002838 if (!ret && !cycled && wbc->nr_to_write > 0) {
Aneesh Kumar K.V2acf2c22009-02-14 10:42:58 -05002839 cycled = 1;
Jan Kara4e7ea812013-06-04 13:17:40 -04002840 mpd.last_page = writeback_index - 1;
2841 mpd.first_page = 0;
Aneesh Kumar K.V2acf2c22009-02-14 10:42:58 -05002842 goto retry;
2843 }
Mingming Cao61628a32008-07-11 19:27:31 -04002844
Aneesh Kumar K.V22208de2008-10-16 10:10:36 -04002845 /* Update index */
Aneesh Kumar K.V22208de2008-10-16 10:10:36 -04002846 if (wbc->range_cyclic || (range_whole && wbc->nr_to_write > 0))
2847 /*
Jan Kara4e7ea812013-06-04 13:17:40 -04002848 * Set the writeback_index so that range_cyclic
Aneesh Kumar K.V22208de2008-10-16 10:10:36 -04002849 * mode will write it back later
2850 */
Jan Kara4e7ea812013-06-04 13:17:40 -04002851 mapping->writeback_index = mpd.first_page;
Aneesh Kumar K.Va1d6cc52008-08-19 21:55:02 -04002852
Mingming Cao61628a32008-07-11 19:27:31 -04002853out_writepages:
Theodore Ts'o20970ba2013-06-06 14:00:46 -04002854 trace_ext4_writepages_result(inode, wbc, ret,
2855 nr_to_write - wbc->nr_to_write);
Eric Biggersbbd55932020-02-19 10:30:46 -08002856 percpu_up_read(&sbi->s_writepages_rwsem);
Mingming Cao61628a32008-07-11 19:27:31 -04002857 return ret;
Alex Tomas64769242008-07-11 19:27:31 -04002858}
2859
Dan Williams5f0663b2017-12-21 12:25:11 -08002860static int ext4_dax_writepages(struct address_space *mapping,
2861 struct writeback_control *wbc)
2862{
2863 int ret;
2864 long nr_to_write = wbc->nr_to_write;
2865 struct inode *inode = mapping->host;
2866 struct ext4_sb_info *sbi = EXT4_SB(mapping->host->i_sb);
2867
2868 if (unlikely(ext4_forced_shutdown(EXT4_SB(inode->i_sb))))
2869 return -EIO;
2870
Eric Biggersbbd55932020-02-19 10:30:46 -08002871 percpu_down_read(&sbi->s_writepages_rwsem);
Dan Williams5f0663b2017-12-21 12:25:11 -08002872 trace_ext4_writepages(inode, wbc);
2873
Vivek Goyal3f666c52020-01-03 13:33:07 -05002874 ret = dax_writeback_mapping_range(mapping, sbi->s_daxdev, wbc);
Dan Williams5f0663b2017-12-21 12:25:11 -08002875 trace_ext4_writepages_result(inode, wbc, ret,
2876 nr_to_write - wbc->nr_to_write);
Eric Biggersbbd55932020-02-19 10:30:46 -08002877 percpu_up_read(&sbi->s_writepages_rwsem);
Dan Williams5f0663b2017-12-21 12:25:11 -08002878 return ret;
2879}
2880
Aneesh Kumar K.V79f0be82008-10-08 23:13:30 -04002881static int ext4_nonda_switch(struct super_block *sb)
2882{
Eric Whitney5c1ff332013-04-09 09:27:31 -04002883 s64 free_clusters, dirty_clusters;
Aneesh Kumar K.V79f0be82008-10-08 23:13:30 -04002884 struct ext4_sb_info *sbi = EXT4_SB(sb);
2885
2886 /*
2887 * switch to non delalloc mode if we are running low
2888 * on free block. The free block accounting via percpu
Eric Dumazet179f7eb2009-01-06 14:41:04 -08002889 * counters can get slightly wrong with percpu_counter_batch getting
Aneesh Kumar K.V79f0be82008-10-08 23:13:30 -04002890 * accumulated on each CPU without updating global counters
2891 * Delalloc need an accurate free block accounting. So switch
2892 * to non delalloc when we are near to error range.
2893 */
Eric Whitney5c1ff332013-04-09 09:27:31 -04002894 free_clusters =
2895 percpu_counter_read_positive(&sbi->s_freeclusters_counter);
2896 dirty_clusters =
2897 percpu_counter_read_positive(&sbi->s_dirtyclusters_counter);
Theodore Ts'o00d4e732012-09-19 22:42:36 -04002898 /*
2899 * Start pushing delalloc when 1/2 of free blocks are dirty.
2900 */
Eric Whitney5c1ff332013-04-09 09:27:31 -04002901 if (dirty_clusters && (free_clusters < 2 * dirty_clusters))
Miao Xie10ee27a2013-01-10 13:47:57 +08002902 try_to_writeback_inodes_sb(sb, WB_REASON_FS_FREE_SPACE);
Theodore Ts'o00d4e732012-09-19 22:42:36 -04002903
Eric Whitney5c1ff332013-04-09 09:27:31 -04002904 if (2 * free_clusters < 3 * dirty_clusters ||
2905 free_clusters < (dirty_clusters + EXT4_FREECLUSTERS_WATERMARK)) {
Aneesh Kumar K.V79f0be82008-10-08 23:13:30 -04002906 /*
Eric Sandeenc8afb442009-12-23 07:58:12 -05002907 * free block count is less than 150% of dirty blocks
2908 * or free blocks is less than watermark
Aneesh Kumar K.V79f0be82008-10-08 23:13:30 -04002909 */
2910 return 1;
2911 }
2912 return 0;
2913}
2914
Eric Sandeen0ff89472014-10-11 19:51:17 -04002915/* We always reserve for an inode update; the superblock could be there too */
2916static int ext4_da_write_credits(struct inode *inode, loff_t pos, unsigned len)
2917{
Darrick J. Wonge2b911c2015-10-17 16:18:43 -04002918 if (likely(ext4_has_feature_large_file(inode->i_sb)))
Eric Sandeen0ff89472014-10-11 19:51:17 -04002919 return 1;
2920
2921 if (pos + len <= 0x7fffffffULL)
2922 return 1;
2923
2924 /* We might need to update the superblock to set LARGE_FILE */
2925 return 2;
2926}
2927
Alex Tomas64769242008-07-11 19:27:31 -04002928static int ext4_da_write_begin(struct file *file, struct address_space *mapping,
Theodore Ts'ode9a55b2009-06-14 17:45:34 -04002929 loff_t pos, unsigned len, unsigned flags,
2930 struct page **pagep, void **fsdata)
Alex Tomas64769242008-07-11 19:27:31 -04002931{
Eric Sandeen72b8ab92010-05-16 11:00:00 -04002932 int ret, retries = 0;
Alex Tomas64769242008-07-11 19:27:31 -04002933 struct page *page;
2934 pgoff_t index;
Alex Tomas64769242008-07-11 19:27:31 -04002935 struct inode *inode = mapping->host;
2936 handle_t *handle;
2937
Theodore Ts'o0db1ff22017-02-05 01:28:48 -05002938 if (unlikely(ext4_forced_shutdown(EXT4_SB(inode->i_sb))))
2939 return -EIO;
2940
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002941 index = pos >> PAGE_SHIFT;
Aneesh Kumar K.V79f0be82008-10-08 23:13:30 -04002942
Eric Biggersc93d8f82019-07-22 09:26:24 -07002943 if (ext4_nonda_switch(inode->i_sb) || S_ISLNK(inode->i_mode) ||
2944 ext4_verity_in_progress(inode)) {
Aneesh Kumar K.V79f0be82008-10-08 23:13:30 -04002945 *fsdata = (void *)FALL_BACK_TO_NONDELALLOC;
2946 return ext4_write_begin(file, mapping, pos,
2947 len, flags, pagep, fsdata);
2948 }
2949 *fsdata = (void *)0;
Theodore Ts'o9bffad12009-06-17 11:48:11 -04002950 trace_ext4_da_write_begin(inode, pos, len, flags);
Tao Ma9c3569b2012-12-10 14:05:57 -05002951
2952 if (ext4_test_inode_state(inode, EXT4_STATE_MAY_INLINE_DATA)) {
2953 ret = ext4_da_write_inline_data_begin(mapping, inode,
2954 pos, len, flags,
2955 pagep, fsdata);
2956 if (ret < 0)
Theodore Ts'o47564bf2013-02-09 09:24:14 -05002957 return ret;
2958 if (ret == 1)
2959 return 0;
Tao Ma9c3569b2012-12-10 14:05:57 -05002960 }
2961
Theodore Ts'o47564bf2013-02-09 09:24:14 -05002962 /*
2963 * grab_cache_page_write_begin() can take a long time if the
2964 * system is thrashing due to memory pressure, or if the page
2965 * is being written back. So grab it first before we start
2966 * the transaction handle. This also allows us to allocate
2967 * the page (if needed) without using GFP_NOFS.
2968 */
2969retry_grab:
2970 page = grab_cache_page_write_begin(mapping, index, flags);
2971 if (!page)
2972 return -ENOMEM;
2973 unlock_page(page);
2974
Alex Tomas64769242008-07-11 19:27:31 -04002975 /*
2976 * With delayed allocation, we don't log the i_disksize update
2977 * if there is delayed block allocation. But we still need
2978 * to journalling the i_disksize update if writes to the end
2979 * of file which has an already mapped buffer.
2980 */
Theodore Ts'o47564bf2013-02-09 09:24:14 -05002981retry_journal:
Eric Sandeen0ff89472014-10-11 19:51:17 -04002982 handle = ext4_journal_start(inode, EXT4_HT_WRITE_PAGE,
2983 ext4_da_write_credits(inode, pos, len));
Alex Tomas64769242008-07-11 19:27:31 -04002984 if (IS_ERR(handle)) {
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002985 put_page(page);
Theodore Ts'o47564bf2013-02-09 09:24:14 -05002986 return PTR_ERR(handle);
Alex Tomas64769242008-07-11 19:27:31 -04002987 }
2988
Theodore Ts'o47564bf2013-02-09 09:24:14 -05002989 lock_page(page);
2990 if (page->mapping != mapping) {
2991 /* The page got truncated from under us */
2992 unlock_page(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002993 put_page(page);
Eric Sandeend5a0d4f2008-08-02 18:51:06 -04002994 ext4_journal_stop(handle);
Theodore Ts'o47564bf2013-02-09 09:24:14 -05002995 goto retry_grab;
Eric Sandeend5a0d4f2008-08-02 18:51:06 -04002996 }
Theodore Ts'o47564bf2013-02-09 09:24:14 -05002997 /* In case writeback began while the page was unlocked */
Dmitry Monakhov7afe5aa2013-08-28 14:30:47 -04002998 wait_for_stable_page(page);
Alex Tomas64769242008-07-11 19:27:31 -04002999
Chandan Rajendra643fa962018-12-12 15:20:12 +05303000#ifdef CONFIG_FS_ENCRYPTION
Michael Halcrow2058f832015-04-12 00:55:10 -04003001 ret = ext4_block_write_begin(page, pos, len,
3002 ext4_da_get_block_prep);
3003#else
Christoph Hellwig6e1db882010-06-04 11:29:57 +02003004 ret = __block_write_begin(page, pos, len, ext4_da_get_block_prep);
Michael Halcrow2058f832015-04-12 00:55:10 -04003005#endif
Alex Tomas64769242008-07-11 19:27:31 -04003006 if (ret < 0) {
3007 unlock_page(page);
3008 ext4_journal_stop(handle);
Aneesh Kumar K.Vae4d5372008-09-13 13:10:25 -04003009 /*
3010 * block_write_begin may have instantiated a few blocks
3011 * outside i_size. Trim these off again. Don't need
3012 * i_size_read because we hold i_mutex.
3013 */
3014 if (pos + len > inode->i_size)
Jan Karab9a42072009-12-08 21:24:33 -05003015 ext4_truncate_failed_write(inode);
Theodore Ts'o47564bf2013-02-09 09:24:14 -05003016
3017 if (ret == -ENOSPC &&
3018 ext4_should_retry_alloc(inode->i_sb, &retries))
3019 goto retry_journal;
3020
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03003021 put_page(page);
Theodore Ts'o47564bf2013-02-09 09:24:14 -05003022 return ret;
Alex Tomas64769242008-07-11 19:27:31 -04003023 }
3024
Theodore Ts'o47564bf2013-02-09 09:24:14 -05003025 *pagep = page;
Alex Tomas64769242008-07-11 19:27:31 -04003026 return ret;
3027}
3028
Mingming Cao632eaea2008-07-11 19:27:31 -04003029/*
3030 * Check if we should update i_disksize
3031 * when write to the end of file but not require block allocation
3032 */
3033static int ext4_da_should_update_i_disksize(struct page *page,
Theodore Ts'ode9a55b2009-06-14 17:45:34 -04003034 unsigned long offset)
Mingming Cao632eaea2008-07-11 19:27:31 -04003035{
3036 struct buffer_head *bh;
3037 struct inode *inode = page->mapping->host;
3038 unsigned int idx;
3039 int i;
3040
3041 bh = page_buffers(page);
3042 idx = offset >> inode->i_blkbits;
3043
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04003044 for (i = 0; i < idx; i++)
Mingming Cao632eaea2008-07-11 19:27:31 -04003045 bh = bh->b_this_page;
3046
Aneesh Kumar K.V29fa89d2009-05-12 16:30:27 -04003047 if (!buffer_mapped(bh) || (buffer_delay(bh)) || buffer_unwritten(bh))
Mingming Cao632eaea2008-07-11 19:27:31 -04003048 return 0;
3049 return 1;
3050}
3051
Alex Tomas64769242008-07-11 19:27:31 -04003052static int ext4_da_write_end(struct file *file,
Theodore Ts'ode9a55b2009-06-14 17:45:34 -04003053 struct address_space *mapping,
3054 loff_t pos, unsigned len, unsigned copied,
3055 struct page *page, void *fsdata)
Alex Tomas64769242008-07-11 19:27:31 -04003056{
3057 struct inode *inode = mapping->host;
3058 int ret = 0, ret2;
3059 handle_t *handle = ext4_journal_current_handle();
3060 loff_t new_i_size;
Mingming Cao632eaea2008-07-11 19:27:31 -04003061 unsigned long start, end;
Aneesh Kumar K.V79f0be82008-10-08 23:13:30 -04003062 int write_mode = (int)(unsigned long)fsdata;
3063
Theodore Ts'o74d553a2013-04-03 12:39:17 -04003064 if (write_mode == FALL_BACK_TO_NONDELALLOC)
3065 return ext4_write_end(file, mapping, pos,
3066 len, copied, page, fsdata);
Mingming Cao632eaea2008-07-11 19:27:31 -04003067
Theodore Ts'o9bffad12009-06-17 11:48:11 -04003068 trace_ext4_da_write_end(inode, pos, len, copied);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03003069 start = pos & (PAGE_SIZE - 1);
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04003070 end = start + copied - 1;
Alex Tomas64769242008-07-11 19:27:31 -04003071
3072 /*
3073 * generic_write_end() will run mark_inode_dirty() if i_size
3074 * changes. So let's piggyback the i_disksize mark_inode_dirty
3075 * into that.
3076 */
Alex Tomas64769242008-07-11 19:27:31 -04003077 new_i_size = pos + copied;
Andrea Arcangeliea51d132011-12-13 21:41:15 -05003078 if (copied && new_i_size > EXT4_I(inode)->i_disksize) {
Tao Ma9c3569b2012-12-10 14:05:57 -05003079 if (ext4_has_inline_data(inode) ||
3080 ext4_da_should_update_i_disksize(page, end)) {
Dmitry Monakhovee124d22014-08-30 23:34:06 -04003081 ext4_update_i_disksize(inode, new_i_size);
Aneesh Kumar K.Vcf17fea2008-09-13 13:06:18 -04003082 /* We need to mark inode dirty even if
3083 * new_i_size is less that inode->i_size
3084 * bu greater than i_disksize.(hint delalloc)
3085 */
Harshad Shirwadkar4209ae12020-04-26 18:34:37 -07003086 ret = ext4_mark_inode_dirty(handle, inode);
Alex Tomas64769242008-07-11 19:27:31 -04003087 }
Mingming Cao632eaea2008-07-11 19:27:31 -04003088 }
Tao Ma9c3569b2012-12-10 14:05:57 -05003089
3090 if (write_mode != CONVERT_INLINE_DATA &&
3091 ext4_test_inode_state(inode, EXT4_STATE_MAY_INLINE_DATA) &&
3092 ext4_has_inline_data(inode))
3093 ret2 = ext4_da_write_inline_data_end(inode, pos, len, copied,
3094 page);
3095 else
3096 ret2 = generic_write_end(file, mapping, pos, len, copied,
Alex Tomas64769242008-07-11 19:27:31 -04003097 page, fsdata);
Tao Ma9c3569b2012-12-10 14:05:57 -05003098
Alex Tomas64769242008-07-11 19:27:31 -04003099 copied = ret2;
3100 if (ret2 < 0)
3101 ret = ret2;
3102 ret2 = ext4_journal_stop(handle);
Harshad Shirwadkar4209ae12020-04-26 18:34:37 -07003103 if (unlikely(ret2 && !ret))
Alex Tomas64769242008-07-11 19:27:31 -04003104 ret = ret2;
3105
3106 return ret ? ret : copied;
3107}
3108
Theodore Ts'occd25062009-02-26 01:04:07 -05003109/*
3110 * Force all delayed allocation blocks to be allocated for a given inode.
3111 */
3112int ext4_alloc_da_blocks(struct inode *inode)
3113{
Theodore Ts'ofb40ba02009-09-16 19:30:40 -04003114 trace_ext4_alloc_da_blocks(inode);
3115
Theodore Ts'o71d4f7d2014-07-15 06:02:38 -04003116 if (!EXT4_I(inode)->i_reserved_data_blocks)
Theodore Ts'occd25062009-02-26 01:04:07 -05003117 return 0;
3118
3119 /*
3120 * We do something simple for now. The filemap_flush() will
3121 * also start triggering a write of the data blocks, which is
3122 * not strictly speaking necessary (and for users of
3123 * laptop_mode, not even desirable). However, to do otherwise
3124 * would require replicating code paths in:
Theodore Ts'ode9a55b2009-06-14 17:45:34 -04003125 *
Theodore Ts'o20970ba2013-06-06 14:00:46 -04003126 * ext4_writepages() ->
Theodore Ts'occd25062009-02-26 01:04:07 -05003127 * write_cache_pages() ---> (via passed in callback function)
3128 * __mpage_da_writepage() -->
3129 * mpage_add_bh_to_extent()
3130 * mpage_da_map_blocks()
3131 *
3132 * The problem is that write_cache_pages(), located in
3133 * mm/page-writeback.c, marks pages clean in preparation for
3134 * doing I/O, which is not desirable if we're not planning on
3135 * doing I/O at all.
3136 *
3137 * We could call write_cache_pages(), and then redirty all of
Wu Fengguang380cf092010-11-11 19:23:29 +08003138 * the pages by calling redirty_page_for_writepage() but that
Theodore Ts'occd25062009-02-26 01:04:07 -05003139 * would be ugly in the extreme. So instead we would need to
3140 * replicate parts of the code in the above functions,
Lucas De Marchi25985ed2011-03-30 22:57:33 -03003141 * simplifying them because we wouldn't actually intend to
Theodore Ts'occd25062009-02-26 01:04:07 -05003142 * write out the pages, but rather only collect contiguous
3143 * logical block extents, call the multi-block allocator, and
3144 * then update the buffer heads with the block allocations.
Theodore Ts'ode9a55b2009-06-14 17:45:34 -04003145 *
Theodore Ts'occd25062009-02-26 01:04:07 -05003146 * For now, though, we'll cheat by calling filemap_flush(),
3147 * which will map the blocks, and start the I/O, but not
3148 * actually wait for the I/O to complete.
3149 */
3150 return filemap_flush(inode->i_mapping);
3151}
Alex Tomas64769242008-07-11 19:27:31 -04003152
3153/*
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003154 * bmap() is special. It gets used by applications such as lilo and by
3155 * the swapper to find the on-disk block of a specific piece of data.
3156 *
3157 * Naturally, this is dangerous if the block concerned is still in the
Mingming Cao617ba132006-10-11 01:20:53 -07003158 * journal. If somebody makes a swapfile on an ext4 data-journaling
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003159 * filesystem and enables swap, then they may get a nasty shock when the
3160 * data getting swapped to that swapfile suddenly gets overwritten by
3161 * the original zero's written out previously to the journal and
3162 * awaiting writeback in the kernel's buffer cache.
3163 *
3164 * So, if we see any bmap calls here on a modified, data-journaled file,
3165 * take extra steps to flush any blocks which might be in the cache.
3166 */
Mingming Cao617ba132006-10-11 01:20:53 -07003167static sector_t ext4_bmap(struct address_space *mapping, sector_t block)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003168{
3169 struct inode *inode = mapping->host;
3170 journal_t *journal;
3171 int err;
3172
Tao Ma46c7f252012-12-10 14:04:52 -05003173 /*
3174 * We can get here for an inline file via the FIBMAP ioctl
3175 */
3176 if (ext4_has_inline_data(inode))
3177 return 0;
3178
Alex Tomas64769242008-07-11 19:27:31 -04003179 if (mapping_tagged(mapping, PAGECACHE_TAG_DIRTY) &&
3180 test_opt(inode->i_sb, DELALLOC)) {
3181 /*
3182 * With delalloc we want to sync the file
3183 * so that we can make sure we allocate
3184 * blocks for file
3185 */
3186 filemap_write_and_wait(mapping);
3187 }
3188
Theodore Ts'o19f5fb72010-01-24 14:34:07 -05003189 if (EXT4_JOURNAL(inode) &&
3190 ext4_test_inode_state(inode, EXT4_STATE_JDATA)) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003191 /*
3192 * This is a REALLY heavyweight approach, but the use of
3193 * bmap on dirty files is expected to be extremely rare:
3194 * only if we run lilo or swapon on a freshly made file
3195 * do we expect this to happen.
3196 *
3197 * (bmap requires CAP_SYS_RAWIO so this does not
3198 * represent an unprivileged user DOS attack --- we'd be
3199 * in trouble if mortal users could trigger this path at
3200 * will.)
3201 *
Mingming Cao617ba132006-10-11 01:20:53 -07003202 * NB. EXT4_STATE_JDATA is not set on files other than
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003203 * regular files. If somebody wants to bmap a directory
3204 * or symlink and gets confused because the buffer
3205 * hasn't yet been flushed to disk, they deserve
3206 * everything they get.
3207 */
3208
Theodore Ts'o19f5fb72010-01-24 14:34:07 -05003209 ext4_clear_inode_state(inode, EXT4_STATE_JDATA);
Mingming Cao617ba132006-10-11 01:20:53 -07003210 journal = EXT4_JOURNAL(inode);
Mingming Caodab291a2006-10-11 01:21:01 -07003211 jbd2_journal_lock_updates(journal);
3212 err = jbd2_journal_flush(journal);
3213 jbd2_journal_unlock_updates(journal);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003214
3215 if (err)
3216 return 0;
3217 }
3218
Ritesh Harjaniac58e4f2020-02-28 14:56:56 +05303219 return iomap_bmap(mapping, block, &ext4_iomap_ops);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003220}
3221
Mingming Cao617ba132006-10-11 01:20:53 -07003222static int ext4_readpage(struct file *file, struct page *page)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003223{
Tao Ma46c7f252012-12-10 14:04:52 -05003224 int ret = -EAGAIN;
3225 struct inode *inode = page->mapping->host;
3226
Jiaying Zhang0562e0b2011-03-21 21:38:05 -04003227 trace_ext4_readpage(page);
Tao Ma46c7f252012-12-10 14:04:52 -05003228
3229 if (ext4_has_inline_data(inode))
3230 ret = ext4_readpage_inline(inode, page);
3231
3232 if (ret == -EAGAIN)
Jens Axboeac22b462018-08-17 15:45:42 -07003233 return ext4_mpage_readpages(page->mapping, NULL, page, 1,
3234 false);
Tao Ma46c7f252012-12-10 14:04:52 -05003235
3236 return ret;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003237}
3238
3239static int
Mingming Cao617ba132006-10-11 01:20:53 -07003240ext4_readpages(struct file *file, struct address_space *mapping,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003241 struct list_head *pages, unsigned nr_pages)
3242{
Tao Ma46c7f252012-12-10 14:04:52 -05003243 struct inode *inode = mapping->host;
3244
3245 /* If the file has inline data, no need to do readpages. */
3246 if (ext4_has_inline_data(inode))
3247 return 0;
3248
Jens Axboeac22b462018-08-17 15:45:42 -07003249 return ext4_mpage_readpages(mapping, pages, NULL, nr_pages, true);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003250}
3251
Lukas Czernerd47992f2013-05-21 23:17:23 -04003252static void ext4_invalidatepage(struct page *page, unsigned int offset,
3253 unsigned int length)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003254{
Lukas Czernerca99fdd2013-05-21 23:25:01 -04003255 trace_ext4_invalidatepage(page, offset, length);
Jiaying Zhang0562e0b2011-03-21 21:38:05 -04003256
Jan Kara4520fb32012-12-25 13:28:54 -05003257 /* No journalling happens on data buffers when this function is used */
3258 WARN_ON(page_has_buffers(page) && buffer_jbd(page_buffers(page)));
3259
Lukas Czernerca99fdd2013-05-21 23:25:01 -04003260 block_invalidatepage(page, offset, length);
Jan Kara4520fb32012-12-25 13:28:54 -05003261}
3262
Jan Kara53e87262012-12-25 13:29:52 -05003263static int __ext4_journalled_invalidatepage(struct page *page,
Lukas Czernerca99fdd2013-05-21 23:25:01 -04003264 unsigned int offset,
3265 unsigned int length)
Jan Kara4520fb32012-12-25 13:28:54 -05003266{
3267 journal_t *journal = EXT4_JOURNAL(page->mapping->host);
3268
Lukas Czernerca99fdd2013-05-21 23:25:01 -04003269 trace_ext4_journalled_invalidatepage(page, offset, length);
Jan Kara4520fb32012-12-25 13:28:54 -05003270
Jiaying Zhang744692d2010-03-04 16:14:02 -05003271 /*
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003272 * If it's a full truncate we just forget about the pending dirtying
3273 */
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03003274 if (offset == 0 && length == PAGE_SIZE)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003275 ClearPageChecked(page);
3276
Lukas Czernerca99fdd2013-05-21 23:25:01 -04003277 return jbd2_journal_invalidatepage(journal, page, offset, length);
Jan Kara53e87262012-12-25 13:29:52 -05003278}
3279
3280/* Wrapper for aops... */
3281static void ext4_journalled_invalidatepage(struct page *page,
Lukas Czernerd47992f2013-05-21 23:17:23 -04003282 unsigned int offset,
3283 unsigned int length)
Jan Kara53e87262012-12-25 13:29:52 -05003284{
Lukas Czernerca99fdd2013-05-21 23:25:01 -04003285 WARN_ON(__ext4_journalled_invalidatepage(page, offset, length) < 0);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003286}
3287
Mingming Cao617ba132006-10-11 01:20:53 -07003288static int ext4_releasepage(struct page *page, gfp_t wait)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003289{
Mingming Cao617ba132006-10-11 01:20:53 -07003290 journal_t *journal = EXT4_JOURNAL(page->mapping->host);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003291
Jiaying Zhang0562e0b2011-03-21 21:38:05 -04003292 trace_ext4_releasepage(page);
3293
Jan Karae1c36592013-03-10 22:19:00 -04003294 /* Page has dirty journalled data -> cannot release */
3295 if (PageChecked(page))
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003296 return 0;
Frank Mayhar03901312009-01-07 00:06:22 -05003297 if (journal)
3298 return jbd2_journal_try_to_free_buffers(journal, page, wait);
3299 else
3300 return try_to_free_buffers(page);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003301}
3302
Jan Karab8a61762017-11-01 16:36:45 +01003303static bool ext4_inode_datasync_dirty(struct inode *inode)
3304{
3305 journal_t *journal = EXT4_SB(inode->i_sb)->s_journal;
3306
3307 if (journal)
3308 return !jbd2_transaction_committed(journal,
3309 EXT4_I(inode)->i_datasync_tid);
3310 /* Any metadata buffers to write? */
3311 if (!list_empty(&inode->i_mapping->private_list))
3312 return true;
3313 return inode->i_state & I_DIRTY_DATASYNC;
3314}
3315
Matthew Bobrowskic8fdfe292019-11-05 22:59:56 +11003316static void ext4_set_iomap(struct inode *inode, struct iomap *iomap,
3317 struct ext4_map_blocks *map, loff_t offset,
3318 loff_t length)
Jan Kara364443c2016-11-20 17:36:06 -05003319{
Matthew Bobrowskic8fdfe292019-11-05 22:59:56 +11003320 u8 blkbits = inode->i_blkbits;
3321
3322 /*
3323 * Writes that span EOF might trigger an I/O size update on completion,
3324 * so consider them to be dirty for the purpose of O_DSYNC, even if
3325 * there is no other metadata changes being made or are pending.
3326 */
3327 iomap->flags = 0;
3328 if (ext4_inode_datasync_dirty(inode) ||
3329 offset + length > i_size_read(inode))
3330 iomap->flags |= IOMAP_F_DIRTY;
3331
3332 if (map->m_flags & EXT4_MAP_NEW)
3333 iomap->flags |= IOMAP_F_NEW;
3334
3335 iomap->bdev = inode->i_sb->s_bdev;
3336 iomap->dax_dev = EXT4_SB(inode->i_sb)->s_daxdev;
3337 iomap->offset = (u64) map->m_lblk << blkbits;
3338 iomap->length = (u64) map->m_len << blkbits;
3339
Ritesh Harjani63867222020-02-28 14:56:54 +05303340 if ((map->m_flags & EXT4_MAP_MAPPED) &&
3341 !ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS))
3342 iomap->flags |= IOMAP_F_MERGED;
3343
Matthew Bobrowskic8fdfe292019-11-05 22:59:56 +11003344 /*
3345 * Flags passed to ext4_map_blocks() for direct I/O writes can result
3346 * in m_flags having both EXT4_MAP_MAPPED and EXT4_MAP_UNWRITTEN bits
3347 * set. In order for any allocated unwritten extents to be converted
3348 * into written extents correctly within the ->end_io() handler, we
3349 * need to ensure that the iomap->type is set appropriately. Hence, the
3350 * reason why we need to check whether the EXT4_MAP_UNWRITTEN bit has
3351 * been set first.
3352 */
3353 if (map->m_flags & EXT4_MAP_UNWRITTEN) {
3354 iomap->type = IOMAP_UNWRITTEN;
3355 iomap->addr = (u64) map->m_pblk << blkbits;
3356 } else if (map->m_flags & EXT4_MAP_MAPPED) {
3357 iomap->type = IOMAP_MAPPED;
3358 iomap->addr = (u64) map->m_pblk << blkbits;
3359 } else {
3360 iomap->type = IOMAP_HOLE;
3361 iomap->addr = IOMAP_NULL_ADDR;
3362 }
3363}
3364
Matthew Bobrowskif063db52019-11-05 23:00:14 +11003365static int ext4_iomap_alloc(struct inode *inode, struct ext4_map_blocks *map,
3366 unsigned int flags)
3367{
3368 handle_t *handle;
Matthew Bobrowski378f32b2019-11-05 23:02:39 +11003369 u8 blkbits = inode->i_blkbits;
3370 int ret, dio_credits, m_flags = 0, retries = 0;
Matthew Bobrowskif063db52019-11-05 23:00:14 +11003371
3372 /*
3373 * Trim the mapping request to the maximum value that we can map at
3374 * once for direct I/O.
3375 */
3376 if (map->m_len > DIO_MAX_BLOCKS)
3377 map->m_len = DIO_MAX_BLOCKS;
3378 dio_credits = ext4_chunk_trans_blocks(inode, map->m_len);
3379
3380retry:
3381 /*
3382 * Either we allocate blocks and then don't get an unwritten extent, so
3383 * in that case we have reserved enough credits. Or, the blocks are
3384 * already allocated and unwritten. In that case, the extent conversion
3385 * fits into the credits as well.
3386 */
3387 handle = ext4_journal_start(inode, EXT4_HT_MAP_BLOCKS, dio_credits);
3388 if (IS_ERR(handle))
3389 return PTR_ERR(handle);
3390
Matthew Bobrowski378f32b2019-11-05 23:02:39 +11003391 /*
3392 * DAX and direct I/O are the only two operations that are currently
3393 * supported with IOMAP_WRITE.
3394 */
3395 WARN_ON(!IS_DAX(inode) && !(flags & IOMAP_DIRECT));
3396 if (IS_DAX(inode))
3397 m_flags = EXT4_GET_BLOCKS_CREATE_ZERO;
3398 /*
3399 * We use i_size instead of i_disksize here because delalloc writeback
3400 * can complete at any point during the I/O and subsequently push the
3401 * i_disksize out to i_size. This could be beyond where direct I/O is
3402 * happening and thus expose allocated blocks to direct I/O reads.
3403 */
3404 else if ((map->m_lblk * (1 << blkbits)) >= i_size_read(inode))
3405 m_flags = EXT4_GET_BLOCKS_CREATE;
3406 else if (ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS))
3407 m_flags = EXT4_GET_BLOCKS_IO_CREATE_EXT;
3408
3409 ret = ext4_map_blocks(handle, inode, map, m_flags);
3410
3411 /*
3412 * We cannot fill holes in indirect tree based inodes as that could
3413 * expose stale data in the case of a crash. Use the magic error code
3414 * to fallback to buffered I/O.
3415 */
3416 if (!m_flags && !ret)
3417 ret = -ENOTBLK;
Matthew Bobrowskif063db52019-11-05 23:00:14 +11003418
Matthew Bobrowskif063db52019-11-05 23:00:14 +11003419 ext4_journal_stop(handle);
3420 if (ret == -ENOSPC && ext4_should_retry_alloc(inode->i_sb, &retries))
3421 goto retry;
3422
3423 return ret;
3424}
3425
3426
Jan Kara364443c2016-11-20 17:36:06 -05003427static int ext4_iomap_begin(struct inode *inode, loff_t offset, loff_t length,
Goldwyn Rodriguesc039b992019-10-18 16:44:10 -07003428 unsigned flags, struct iomap *iomap, struct iomap *srcmap)
Jan Kara364443c2016-11-20 17:36:06 -05003429{
Jan Kara364443c2016-11-20 17:36:06 -05003430 int ret;
Matthew Bobrowski09edf4d2019-11-05 23:03:31 +11003431 struct ext4_map_blocks map;
3432 u8 blkbits = inode->i_blkbits;
Jan Kara364443c2016-11-20 17:36:06 -05003433
Theodore Ts'obcd8e912018-09-01 12:45:04 -04003434 if ((offset >> blkbits) > EXT4_MAX_LOGICAL_BLOCK)
3435 return -EINVAL;
Andreas Gruenbacher7046ae32017-10-01 17:57:54 -04003436
Matthew Bobrowski09edf4d2019-11-05 23:03:31 +11003437 if (WARN_ON_ONCE(ext4_has_inline_data(inode)))
3438 return -ERANGE;
Jan Kara364443c2016-11-20 17:36:06 -05003439
Matthew Bobrowski09edf4d2019-11-05 23:03:31 +11003440 /*
3441 * Calculate the first and last logical blocks respectively.
3442 */
3443 map.m_lblk = offset >> blkbits;
3444 map.m_len = min_t(loff_t, (offset + length - 1) >> blkbits,
3445 EXT4_MAX_LOGICAL_BLOCK) - map.m_lblk + 1;
Jan Kara364443c2016-11-20 17:36:06 -05003446
Matthew Bobrowski09edf4d2019-11-05 23:03:31 +11003447 if (flags & IOMAP_WRITE)
Matthew Bobrowskif063db52019-11-05 23:00:14 +11003448 ret = ext4_iomap_alloc(inode, &map, flags);
Matthew Bobrowski09edf4d2019-11-05 23:03:31 +11003449 else
Jan Kara776722e2016-11-20 18:09:11 -05003450 ret = ext4_map_blocks(NULL, inode, &map, 0);
Christoph Hellwig545052e2017-10-01 17:58:54 -04003451
Matthew Bobrowskif063db52019-11-05 23:00:14 +11003452 if (ret < 0)
3453 return ret;
Christoph Hellwig545052e2017-10-01 17:58:54 -04003454
Matthew Bobrowskic8fdfe292019-11-05 22:59:56 +11003455 ext4_set_iomap(inode, iomap, &map, offset, length);
Christoph Hellwig545052e2017-10-01 17:58:54 -04003456
Jan Kara364443c2016-11-20 17:36:06 -05003457 return 0;
3458}
3459
Jan Kara8cd115b2019-12-18 18:44:33 +01003460static int ext4_iomap_overwrite_begin(struct inode *inode, loff_t offset,
3461 loff_t length, unsigned flags, struct iomap *iomap,
3462 struct iomap *srcmap)
3463{
3464 int ret;
3465
3466 /*
3467 * Even for writes we don't need to allocate blocks, so just pretend
3468 * we are reading to save overhead of starting a transaction.
3469 */
3470 flags &= ~IOMAP_WRITE;
3471 ret = ext4_iomap_begin(inode, offset, length, flags, iomap, srcmap);
3472 WARN_ON_ONCE(iomap->type != IOMAP_MAPPED);
3473 return ret;
3474}
3475
Jan Kara776722e2016-11-20 18:09:11 -05003476static int ext4_iomap_end(struct inode *inode, loff_t offset, loff_t length,
3477 ssize_t written, unsigned flags, struct iomap *iomap)
3478{
Jan Kara776722e2016-11-20 18:09:11 -05003479 /*
Matthew Bobrowski378f32b2019-11-05 23:02:39 +11003480 * Check to see whether an error occurred while writing out the data to
3481 * the allocated blocks. If so, return the magic error code so that we
3482 * fallback to buffered I/O and attempt to complete the remainder of
3483 * the I/O. Any blocks that may have been allocated in preparation for
3484 * the direct I/O will be reused during buffered I/O.
Jan Kara776722e2016-11-20 18:09:11 -05003485 */
Matthew Bobrowski378f32b2019-11-05 23:02:39 +11003486 if (flags & (IOMAP_WRITE | IOMAP_DIRECT) && written == 0)
3487 return -ENOTBLK;
Jan Kara776722e2016-11-20 18:09:11 -05003488
Matthew Bobrowski569342d2019-11-05 23:01:51 +11003489 return 0;
Jan Kara776722e2016-11-20 18:09:11 -05003490}
3491
Christoph Hellwig8ff6daa2017-01-27 23:20:26 -08003492const struct iomap_ops ext4_iomap_ops = {
Jan Kara364443c2016-11-20 17:36:06 -05003493 .iomap_begin = ext4_iomap_begin,
Jan Kara776722e2016-11-20 18:09:11 -05003494 .iomap_end = ext4_iomap_end,
Jan Kara364443c2016-11-20 17:36:06 -05003495};
3496
Jan Kara8cd115b2019-12-18 18:44:33 +01003497const struct iomap_ops ext4_iomap_overwrite_ops = {
3498 .iomap_begin = ext4_iomap_overwrite_begin,
3499 .iomap_end = ext4_iomap_end,
3500};
3501
Matthew Bobrowski09edf4d2019-11-05 23:03:31 +11003502static bool ext4_iomap_is_delalloc(struct inode *inode,
3503 struct ext4_map_blocks *map)
Mingming Cao4c0425f2009-09-28 15:48:41 -04003504{
Matthew Bobrowski09edf4d2019-11-05 23:03:31 +11003505 struct extent_status es;
3506 ext4_lblk_t offset = 0, end = map->m_lblk + map->m_len - 1;
Mingming Cao4c0425f2009-09-28 15:48:41 -04003507
Matthew Bobrowski09edf4d2019-11-05 23:03:31 +11003508 ext4_es_find_extent_range(inode, &ext4_es_is_delayed,
3509 map->m_lblk, end, &es);
Mingming4b70df12009-11-03 14:44:54 -05003510
Matthew Bobrowski09edf4d2019-11-05 23:03:31 +11003511 if (!es.es_len || es.es_lblk > end)
3512 return false;
3513
3514 if (es.es_lblk > map->m_lblk) {
3515 map->m_len = es.es_lblk - map->m_lblk;
3516 return false;
3517 }
3518
3519 offset = map->m_lblk - es.es_lblk;
3520 map->m_len = es.es_len - offset;
3521
3522 return true;
3523}
3524
3525static int ext4_iomap_begin_report(struct inode *inode, loff_t offset,
3526 loff_t length, unsigned int flags,
3527 struct iomap *iomap, struct iomap *srcmap)
3528{
3529 int ret;
3530 bool delalloc = false;
3531 struct ext4_map_blocks map;
3532 u8 blkbits = inode->i_blkbits;
3533
3534 if ((offset >> blkbits) > EXT4_MAX_LOGICAL_BLOCK)
3535 return -EINVAL;
3536
3537 if (ext4_has_inline_data(inode)) {
3538 ret = ext4_inline_data_iomap(inode, iomap);
3539 if (ret != -EAGAIN) {
3540 if (ret == 0 && offset >= iomap->length)
3541 ret = -ENOENT;
3542 return ret;
3543 }
3544 }
Mingming Cao8d5d02e2009-09-28 15:48:29 -04003545
Jan Kara74c66bc2016-02-29 08:36:38 +11003546 /*
Matthew Bobrowski09edf4d2019-11-05 23:03:31 +11003547 * Calculate the first and last logical block respectively.
Jan Kara74c66bc2016-02-29 08:36:38 +11003548 */
Matthew Bobrowski09edf4d2019-11-05 23:03:31 +11003549 map.m_lblk = offset >> blkbits;
3550 map.m_len = min_t(loff_t, (offset + length - 1) >> blkbits,
3551 EXT4_MAX_LOGICAL_BLOCK) - map.m_lblk + 1;
3552
Ritesh Harjanib2c57642020-02-28 14:56:57 +05303553 /*
3554 * Fiemap callers may call for offset beyond s_bitmap_maxbytes.
3555 * So handle it here itself instead of querying ext4_map_blocks().
3556 * Since ext4_map_blocks() will warn about it and will return
3557 * -EIO error.
3558 */
3559 if (!(ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS))) {
3560 struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb);
3561
3562 if (offset >= sbi->s_bitmap_maxbytes) {
3563 map.m_flags = 0;
3564 goto set_iomap;
3565 }
3566 }
3567
Matthew Bobrowski09edf4d2019-11-05 23:03:31 +11003568 ret = ext4_map_blocks(NULL, inode, &map, 0);
3569 if (ret < 0)
3570 return ret;
3571 if (ret == 0)
3572 delalloc = ext4_iomap_is_delalloc(inode, &map);
3573
Ritesh Harjanib2c57642020-02-28 14:56:57 +05303574set_iomap:
Matthew Bobrowski09edf4d2019-11-05 23:03:31 +11003575 ext4_set_iomap(inode, iomap, &map, offset, length);
3576 if (delalloc && iomap->type == IOMAP_HOLE)
3577 iomap->type = IOMAP_DELALLOC;
Christoph Hellwig187372a2016-02-08 14:40:51 +11003578
3579 return 0;
Mingming Cao4c0425f2009-09-28 15:48:41 -04003580}
Jiaying Zhangc7064ef2010-03-02 13:28:44 -05003581
Matthew Bobrowski09edf4d2019-11-05 23:03:31 +11003582const struct iomap_ops ext4_iomap_report_ops = {
3583 .iomap_begin = ext4_iomap_begin_report,
3584};
Mingming Cao4c0425f2009-09-28 15:48:41 -04003585
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003586/*
Mingming Cao617ba132006-10-11 01:20:53 -07003587 * Pages can be marked dirty completely asynchronously from ext4's journalling
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003588 * activity. By filemap_sync_pte(), try_to_unmap_one(), etc. We cannot do
3589 * much here because ->set_page_dirty is called under VFS locks. The page is
3590 * not necessarily locked.
3591 *
3592 * We cannot just dirty the page and leave attached buffers clean, because the
3593 * buffers' dirty state is "definitive". We cannot just set the buffers dirty
3594 * or jbddirty because all the journalling code will explode.
3595 *
3596 * So what we do is to mark the page "pending dirty" and next time writepage
3597 * is called, propagate that into the buffers appropriately.
3598 */
Mingming Cao617ba132006-10-11 01:20:53 -07003599static int ext4_journalled_set_page_dirty(struct page *page)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003600{
3601 SetPageChecked(page);
3602 return __set_page_dirty_nobuffers(page);
3603}
3604
Jan Kara6dcc6932016-12-01 11:46:40 -05003605static int ext4_set_page_dirty(struct page *page)
3606{
3607 WARN_ON_ONCE(!PageLocked(page) && !PageDirty(page));
3608 WARN_ON_ONCE(!page_has_buffers(page));
3609 return __set_page_dirty_buffers(page);
3610}
3611
Theodore Ts'o74d553a2013-04-03 12:39:17 -04003612static const struct address_space_operations ext4_aops = {
Hisashi Hifumi8ab22b92008-07-28 15:46:36 -07003613 .readpage = ext4_readpage,
3614 .readpages = ext4_readpages,
Aneesh Kumar K.V43ce1d22009-06-14 17:58:45 -04003615 .writepage = ext4_writepage,
Theodore Ts'o20970ba2013-06-06 14:00:46 -04003616 .writepages = ext4_writepages,
Hisashi Hifumi8ab22b92008-07-28 15:46:36 -07003617 .write_begin = ext4_write_begin,
Theodore Ts'o74d553a2013-04-03 12:39:17 -04003618 .write_end = ext4_write_end,
Jan Kara6dcc6932016-12-01 11:46:40 -05003619 .set_page_dirty = ext4_set_page_dirty,
Hisashi Hifumi8ab22b92008-07-28 15:46:36 -07003620 .bmap = ext4_bmap,
3621 .invalidatepage = ext4_invalidatepage,
3622 .releasepage = ext4_releasepage,
Matthew Bobrowski378f32b2019-11-05 23:02:39 +11003623 .direct_IO = noop_direct_IO,
Hisashi Hifumi8ab22b92008-07-28 15:46:36 -07003624 .migratepage = buffer_migrate_page,
3625 .is_partially_uptodate = block_is_partially_uptodate,
Andi Kleenaa261f52009-09-16 11:50:16 +02003626 .error_remove_page = generic_error_remove_page,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003627};
3628
Mingming Cao617ba132006-10-11 01:20:53 -07003629static const struct address_space_operations ext4_journalled_aops = {
Hisashi Hifumi8ab22b92008-07-28 15:46:36 -07003630 .readpage = ext4_readpage,
3631 .readpages = ext4_readpages,
Aneesh Kumar K.V43ce1d22009-06-14 17:58:45 -04003632 .writepage = ext4_writepage,
Theodore Ts'o20970ba2013-06-06 14:00:46 -04003633 .writepages = ext4_writepages,
Hisashi Hifumi8ab22b92008-07-28 15:46:36 -07003634 .write_begin = ext4_write_begin,
3635 .write_end = ext4_journalled_write_end,
3636 .set_page_dirty = ext4_journalled_set_page_dirty,
3637 .bmap = ext4_bmap,
Jan Kara4520fb32012-12-25 13:28:54 -05003638 .invalidatepage = ext4_journalled_invalidatepage,
Hisashi Hifumi8ab22b92008-07-28 15:46:36 -07003639 .releasepage = ext4_releasepage,
Matthew Bobrowski378f32b2019-11-05 23:02:39 +11003640 .direct_IO = noop_direct_IO,
Hisashi Hifumi8ab22b92008-07-28 15:46:36 -07003641 .is_partially_uptodate = block_is_partially_uptodate,
Andi Kleenaa261f52009-09-16 11:50:16 +02003642 .error_remove_page = generic_error_remove_page,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003643};
3644
Alex Tomas64769242008-07-11 19:27:31 -04003645static const struct address_space_operations ext4_da_aops = {
Hisashi Hifumi8ab22b92008-07-28 15:46:36 -07003646 .readpage = ext4_readpage,
3647 .readpages = ext4_readpages,
Aneesh Kumar K.V43ce1d22009-06-14 17:58:45 -04003648 .writepage = ext4_writepage,
Theodore Ts'o20970ba2013-06-06 14:00:46 -04003649 .writepages = ext4_writepages,
Hisashi Hifumi8ab22b92008-07-28 15:46:36 -07003650 .write_begin = ext4_da_write_begin,
3651 .write_end = ext4_da_write_end,
Jan Kara6dcc6932016-12-01 11:46:40 -05003652 .set_page_dirty = ext4_set_page_dirty,
Hisashi Hifumi8ab22b92008-07-28 15:46:36 -07003653 .bmap = ext4_bmap,
Eric Whitney8fcc3a52019-08-22 23:22:14 -04003654 .invalidatepage = ext4_invalidatepage,
Hisashi Hifumi8ab22b92008-07-28 15:46:36 -07003655 .releasepage = ext4_releasepage,
Matthew Bobrowski378f32b2019-11-05 23:02:39 +11003656 .direct_IO = noop_direct_IO,
Hisashi Hifumi8ab22b92008-07-28 15:46:36 -07003657 .migratepage = buffer_migrate_page,
3658 .is_partially_uptodate = block_is_partially_uptodate,
Andi Kleenaa261f52009-09-16 11:50:16 +02003659 .error_remove_page = generic_error_remove_page,
Alex Tomas64769242008-07-11 19:27:31 -04003660};
3661
Dan Williams5f0663b2017-12-21 12:25:11 -08003662static const struct address_space_operations ext4_dax_aops = {
3663 .writepages = ext4_dax_writepages,
3664 .direct_IO = noop_direct_IO,
3665 .set_page_dirty = noop_set_page_dirty,
Toshi Kani94dbb632018-09-15 21:23:41 -04003666 .bmap = ext4_bmap,
Dan Williams5f0663b2017-12-21 12:25:11 -08003667 .invalidatepage = noop_invalidatepage,
3668};
3669
Mingming Cao617ba132006-10-11 01:20:53 -07003670void ext4_set_aops(struct inode *inode)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003671{
Lukas Czerner3d2b1582012-02-20 17:53:00 -05003672 switch (ext4_inode_journal_mode(inode)) {
3673 case EXT4_INODE_ORDERED_DATA_MODE:
Lukas Czerner3d2b1582012-02-20 17:53:00 -05003674 case EXT4_INODE_WRITEBACK_DATA_MODE:
Lukas Czerner3d2b1582012-02-20 17:53:00 -05003675 break;
3676 case EXT4_INODE_JOURNAL_DATA_MODE:
Mingming Cao617ba132006-10-11 01:20:53 -07003677 inode->i_mapping->a_ops = &ext4_journalled_aops;
Theodore Ts'o74d553a2013-04-03 12:39:17 -04003678 return;
Lukas Czerner3d2b1582012-02-20 17:53:00 -05003679 default:
3680 BUG();
3681 }
Dan Williams5f0663b2017-12-21 12:25:11 -08003682 if (IS_DAX(inode))
3683 inode->i_mapping->a_ops = &ext4_dax_aops;
3684 else if (test_opt(inode->i_sb, DELALLOC))
Theodore Ts'o74d553a2013-04-03 12:39:17 -04003685 inode->i_mapping->a_ops = &ext4_da_aops;
3686 else
3687 inode->i_mapping->a_ops = &ext4_aops;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003688}
3689
Ross Zwisler923ae0f2015-02-16 15:59:38 -08003690static int __ext4_block_zero_page_range(handle_t *handle,
Lukas Czernerd863dc32013-05-27 23:32:35 -04003691 struct address_space *mapping, loff_t from, loff_t length)
3692{
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03003693 ext4_fsblk_t index = from >> PAGE_SHIFT;
3694 unsigned offset = from & (PAGE_SIZE-1);
Ross Zwisler923ae0f2015-02-16 15:59:38 -08003695 unsigned blocksize, pos;
Lukas Czernerd863dc32013-05-27 23:32:35 -04003696 ext4_lblk_t iblock;
3697 struct inode *inode = mapping->host;
3698 struct buffer_head *bh;
3699 struct page *page;
3700 int err = 0;
3701
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03003702 page = find_or_create_page(mapping, from >> PAGE_SHIFT,
Michal Hockoc62d2552015-11-06 16:28:49 -08003703 mapping_gfp_constraint(mapping, ~__GFP_FS));
Lukas Czernerd863dc32013-05-27 23:32:35 -04003704 if (!page)
3705 return -ENOMEM;
3706
3707 blocksize = inode->i_sb->s_blocksize;
Lukas Czernerd863dc32013-05-27 23:32:35 -04003708
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03003709 iblock = index << (PAGE_SHIFT - inode->i_sb->s_blocksize_bits);
Lukas Czernerd863dc32013-05-27 23:32:35 -04003710
3711 if (!page_has_buffers(page))
3712 create_empty_buffers(page, blocksize, 0);
3713
3714 /* Find the buffer that contains "offset" */
3715 bh = page_buffers(page);
3716 pos = blocksize;
3717 while (offset >= pos) {
3718 bh = bh->b_this_page;
3719 iblock++;
3720 pos += blocksize;
3721 }
Lukas Czernerd863dc32013-05-27 23:32:35 -04003722 if (buffer_freed(bh)) {
3723 BUFFER_TRACE(bh, "freed: skip");
3724 goto unlock;
3725 }
Lukas Czernerd863dc32013-05-27 23:32:35 -04003726 if (!buffer_mapped(bh)) {
3727 BUFFER_TRACE(bh, "unmapped");
3728 ext4_get_block(inode, iblock, bh, 0);
3729 /* unmapped? It's a hole - nothing to do */
3730 if (!buffer_mapped(bh)) {
3731 BUFFER_TRACE(bh, "still unmapped");
3732 goto unlock;
3733 }
3734 }
3735
3736 /* Ok, it's mapped. Make sure it's up-to-date */
3737 if (PageUptodate(page))
3738 set_buffer_uptodate(bh);
3739
3740 if (!buffer_uptodate(bh)) {
3741 err = -EIO;
Mike Christiedfec8a12016-06-05 14:31:44 -05003742 ll_rw_block(REQ_OP_READ, 0, 1, &bh);
Lukas Czernerd863dc32013-05-27 23:32:35 -04003743 wait_on_buffer(bh);
3744 /* Uhhuh. Read error. Complain and punt. */
3745 if (!buffer_uptodate(bh))
3746 goto unlock;
Chandan Rajendra592ddec2018-12-12 15:20:10 +05303747 if (S_ISREG(inode->i_mode) && IS_ENCRYPTED(inode)) {
Michael Halcrowc9c74292015-04-12 00:56:10 -04003748 /* We expect the key to be set. */
Jaegeuk Kima7550b32016-07-10 14:01:03 -04003749 BUG_ON(!fscrypt_has_encryption_key(inode));
Eric Biggers834f1562019-12-26 09:41:05 -06003750 err = fscrypt_decrypt_pagecache_blocks(page, blocksize,
3751 bh_offset(bh));
3752 if (err) {
3753 clear_buffer_uptodate(bh);
3754 goto unlock;
3755 }
Michael Halcrowc9c74292015-04-12 00:56:10 -04003756 }
Lukas Czernerd863dc32013-05-27 23:32:35 -04003757 }
Lukas Czernerd863dc32013-05-27 23:32:35 -04003758 if (ext4_should_journal_data(inode)) {
3759 BUFFER_TRACE(bh, "get write access");
3760 err = ext4_journal_get_write_access(handle, bh);
3761 if (err)
3762 goto unlock;
3763 }
Lukas Czernerd863dc32013-05-27 23:32:35 -04003764 zero_user(page, offset, length);
Lukas Czernerd863dc32013-05-27 23:32:35 -04003765 BUFFER_TRACE(bh, "zeroed end of block");
3766
Lukas Czernerd863dc32013-05-27 23:32:35 -04003767 if (ext4_should_journal_data(inode)) {
3768 err = ext4_handle_dirty_metadata(handle, inode, bh);
Lukas Czerner0713ed02013-05-27 23:32:35 -04003769 } else {
jon ernst353eefd2013-07-01 08:12:39 -04003770 err = 0;
Lukas Czernerd863dc32013-05-27 23:32:35 -04003771 mark_buffer_dirty(bh);
Jan Kara3957ef52016-04-24 00:56:05 -04003772 if (ext4_should_order_data(inode))
Ross Zwisler73131fb2019-06-20 17:26:26 -04003773 err = ext4_jbd2_inode_add_write(handle, inode, from,
3774 length);
Lukas Czerner0713ed02013-05-27 23:32:35 -04003775 }
Lukas Czernerd863dc32013-05-27 23:32:35 -04003776
3777unlock:
3778 unlock_page(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03003779 put_page(page);
Lukas Czernerd863dc32013-05-27 23:32:35 -04003780 return err;
3781}
3782
Matthew Wilcox94350ab2014-03-24 15:09:16 -04003783/*
Ross Zwisler923ae0f2015-02-16 15:59:38 -08003784 * ext4_block_zero_page_range() zeros out a mapping of length 'length'
3785 * starting from file offset 'from'. The range to be zero'd must
3786 * be contained with in one block. If the specified range exceeds
3787 * the end of the block it will be shortened to end of the block
3788 * that cooresponds to 'from'
3789 */
3790static int ext4_block_zero_page_range(handle_t *handle,
3791 struct address_space *mapping, loff_t from, loff_t length)
3792{
3793 struct inode *inode = mapping->host;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03003794 unsigned offset = from & (PAGE_SIZE-1);
Ross Zwisler923ae0f2015-02-16 15:59:38 -08003795 unsigned blocksize = inode->i_sb->s_blocksize;
3796 unsigned max = blocksize - (offset & (blocksize - 1));
3797
3798 /*
3799 * correct length if it does not fall between
3800 * 'from' and the end of the block
3801 */
3802 if (length > max || length < 0)
3803 length = max;
3804
Jan Kara47e69352016-11-20 18:08:05 -05003805 if (IS_DAX(inode)) {
3806 return iomap_zero_range(inode, from, length, NULL,
3807 &ext4_iomap_ops);
3808 }
Ross Zwisler923ae0f2015-02-16 15:59:38 -08003809 return __ext4_block_zero_page_range(handle, mapping, from, length);
3810}
3811
3812/*
Matthew Wilcox94350ab2014-03-24 15:09:16 -04003813 * ext4_block_truncate_page() zeroes out a mapping from file offset `from'
3814 * up to the end of the block which corresponds to `from'.
3815 * This required during truncate. We need to physically zero the tail end
3816 * of that block so it doesn't yield old data if the file is later grown.
3817 */
Stephen Hemmingerc1978552014-05-12 10:50:23 -04003818static int ext4_block_truncate_page(handle_t *handle,
Matthew Wilcox94350ab2014-03-24 15:09:16 -04003819 struct address_space *mapping, loff_t from)
3820{
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03003821 unsigned offset = from & (PAGE_SIZE-1);
Matthew Wilcox94350ab2014-03-24 15:09:16 -04003822 unsigned length;
3823 unsigned blocksize;
3824 struct inode *inode = mapping->host;
3825
Theodore Ts'o0d068632017-02-14 11:31:15 -05003826 /* If we are processing an encrypted inode during orphan list handling */
Chandan Rajendra592ddec2018-12-12 15:20:10 +05303827 if (IS_ENCRYPTED(inode) && !fscrypt_has_encryption_key(inode))
Theodore Ts'o0d068632017-02-14 11:31:15 -05003828 return 0;
3829
Matthew Wilcox94350ab2014-03-24 15:09:16 -04003830 blocksize = inode->i_sb->s_blocksize;
3831 length = blocksize - (offset & (blocksize - 1));
3832
3833 return ext4_block_zero_page_range(handle, mapping, from, length);
3834}
3835
Lukas Czernera87dd182013-05-27 23:32:35 -04003836int ext4_zero_partial_blocks(handle_t *handle, struct inode *inode,
3837 loff_t lstart, loff_t length)
3838{
3839 struct super_block *sb = inode->i_sb;
3840 struct address_space *mapping = inode->i_mapping;
Lukas Czernere1be3a92013-07-01 08:12:39 -04003841 unsigned partial_start, partial_end;
Lukas Czernera87dd182013-05-27 23:32:35 -04003842 ext4_fsblk_t start, end;
3843 loff_t byte_end = (lstart + length - 1);
3844 int err = 0;
3845
Lukas Czernere1be3a92013-07-01 08:12:39 -04003846 partial_start = lstart & (sb->s_blocksize - 1);
3847 partial_end = byte_end & (sb->s_blocksize - 1);
3848
Lukas Czernera87dd182013-05-27 23:32:35 -04003849 start = lstart >> sb->s_blocksize_bits;
3850 end = byte_end >> sb->s_blocksize_bits;
3851
3852 /* Handle partial zero within the single block */
Lukas Czernere1be3a92013-07-01 08:12:39 -04003853 if (start == end &&
3854 (partial_start || (partial_end != sb->s_blocksize - 1))) {
Lukas Czernera87dd182013-05-27 23:32:35 -04003855 err = ext4_block_zero_page_range(handle, mapping,
3856 lstart, length);
3857 return err;
3858 }
3859 /* Handle partial zero out on the start of the range */
Lukas Czernere1be3a92013-07-01 08:12:39 -04003860 if (partial_start) {
Lukas Czernera87dd182013-05-27 23:32:35 -04003861 err = ext4_block_zero_page_range(handle, mapping,
3862 lstart, sb->s_blocksize);
3863 if (err)
3864 return err;
3865 }
3866 /* Handle partial zero out on the end of the range */
Lukas Czernere1be3a92013-07-01 08:12:39 -04003867 if (partial_end != sb->s_blocksize - 1)
Lukas Czernera87dd182013-05-27 23:32:35 -04003868 err = ext4_block_zero_page_range(handle, mapping,
Lukas Czernere1be3a92013-07-01 08:12:39 -04003869 byte_end - partial_end,
3870 partial_end + 1);
Lukas Czernera87dd182013-05-27 23:32:35 -04003871 return err;
3872}
3873
Duane Griffin91ef4ca2008-07-11 19:27:31 -04003874int ext4_can_truncate(struct inode *inode)
3875{
Duane Griffin91ef4ca2008-07-11 19:27:31 -04003876 if (S_ISREG(inode->i_mode))
3877 return 1;
3878 if (S_ISDIR(inode->i_mode))
3879 return 1;
3880 if (S_ISLNK(inode->i_mode))
3881 return !ext4_inode_is_fast_symlink(inode);
3882 return 0;
3883}
3884
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003885/*
Jan Kara01127842015-12-07 14:34:49 -05003886 * We have to make sure i_disksize gets properly updated before we truncate
3887 * page cache due to hole punching or zero range. Otherwise i_disksize update
3888 * can get lost as it may have been postponed to submission of writeback but
3889 * that will never happen after we truncate page cache.
3890 */
3891int ext4_update_disksize_before_punch(struct inode *inode, loff_t offset,
3892 loff_t len)
3893{
3894 handle_t *handle;
Harshad Shirwadkar4209ae12020-04-26 18:34:37 -07003895 int ret;
3896
Jan Kara01127842015-12-07 14:34:49 -05003897 loff_t size = i_size_read(inode);
3898
Al Viro59551022016-01-22 15:40:57 -05003899 WARN_ON(!inode_is_locked(inode));
Jan Kara01127842015-12-07 14:34:49 -05003900 if (offset > size || offset + len < size)
3901 return 0;
3902
3903 if (EXT4_I(inode)->i_disksize >= size)
3904 return 0;
3905
3906 handle = ext4_journal_start(inode, EXT4_HT_MISC, 1);
3907 if (IS_ERR(handle))
3908 return PTR_ERR(handle);
3909 ext4_update_i_disksize(inode, size);
Harshad Shirwadkar4209ae12020-04-26 18:34:37 -07003910 ret = ext4_mark_inode_dirty(handle, inode);
Jan Kara01127842015-12-07 14:34:49 -05003911 ext4_journal_stop(handle);
3912
Harshad Shirwadkar4209ae12020-04-26 18:34:37 -07003913 return ret;
Jan Kara01127842015-12-07 14:34:49 -05003914}
3915
Ross Zwislerb1f38212018-09-11 13:31:16 -04003916static void ext4_wait_dax_page(struct ext4_inode_info *ei)
Ross Zwisler430657b2018-07-29 17:00:22 -04003917{
Ross Zwisler430657b2018-07-29 17:00:22 -04003918 up_write(&ei->i_mmap_sem);
3919 schedule();
3920 down_write(&ei->i_mmap_sem);
3921}
3922
3923int ext4_break_layouts(struct inode *inode)
3924{
3925 struct ext4_inode_info *ei = EXT4_I(inode);
3926 struct page *page;
Ross Zwisler430657b2018-07-29 17:00:22 -04003927 int error;
3928
3929 if (WARN_ON_ONCE(!rwsem_is_locked(&ei->i_mmap_sem)))
3930 return -EINVAL;
3931
3932 do {
Ross Zwisler430657b2018-07-29 17:00:22 -04003933 page = dax_layout_busy_page(inode->i_mapping);
3934 if (!page)
3935 return 0;
3936
3937 error = ___wait_var_event(&page->_refcount,
3938 atomic_read(&page->_refcount) == 1,
3939 TASK_INTERRUPTIBLE, 0, 0,
Ross Zwislerb1f38212018-09-11 13:31:16 -04003940 ext4_wait_dax_page(ei));
3941 } while (error == 0);
Ross Zwisler430657b2018-07-29 17:00:22 -04003942
3943 return error;
3944}
3945
Jan Kara01127842015-12-07 14:34:49 -05003946/*
Ross Zwislercca32b72016-09-22 11:49:38 -04003947 * ext4_punch_hole: punches a hole in a file by releasing the blocks
Allison Hendersona4bb6b62011-05-25 07:41:50 -04003948 * associated with the given offset and length
3949 *
3950 * @inode: File inode
3951 * @offset: The offset where the hole will begin
3952 * @len: The length of the hole
3953 *
Anatol Pomozov4907cb72012-09-01 10:31:09 -07003954 * Returns: 0 on success or negative on failure
Allison Hendersona4bb6b62011-05-25 07:41:50 -04003955 */
3956
Ashish Sangwanaeb28172013-07-01 08:12:38 -04003957int ext4_punch_hole(struct inode *inode, loff_t offset, loff_t length)
Allison Hendersona4bb6b62011-05-25 07:41:50 -04003958{
Theodore Ts'o26a4c0c2013-04-03 12:45:17 -04003959 struct super_block *sb = inode->i_sb;
3960 ext4_lblk_t first_block, stop_block;
3961 struct address_space *mapping = inode->i_mapping;
Lukas Czernera87dd182013-05-27 23:32:35 -04003962 loff_t first_block_offset, last_block_offset;
Theodore Ts'o26a4c0c2013-04-03 12:45:17 -04003963 handle_t *handle;
3964 unsigned int credits;
Harshad Shirwadkar4209ae12020-04-26 18:34:37 -07003965 int ret = 0, ret2 = 0;
Theodore Ts'o26a4c0c2013-04-03 12:45:17 -04003966
Lukas Czernerb8a86842014-03-18 18:05:35 -04003967 trace_ext4_punch_hole(inode, offset, length, 0);
Zheng Liuaaddea82013-01-16 20:21:26 -05003968
Theodore Ts'oc1e82202019-08-23 22:38:00 -04003969 ext4_clear_inode_state(inode, EXT4_STATE_MAY_INLINE_DATA);
3970 if (ext4_has_inline_data(inode)) {
3971 down_write(&EXT4_I(inode)->i_mmap_sem);
3972 ret = ext4_convert_inline_data(inode);
3973 up_write(&EXT4_I(inode)->i_mmap_sem);
3974 if (ret)
3975 return ret;
3976 }
3977
Theodore Ts'o26a4c0c2013-04-03 12:45:17 -04003978 /*
3979 * Write out all dirty pages to avoid race conditions
3980 * Then release them.
3981 */
Ross Zwislercca32b72016-09-22 11:49:38 -04003982 if (mapping_tagged(mapping, PAGECACHE_TAG_DIRTY)) {
Theodore Ts'o26a4c0c2013-04-03 12:45:17 -04003983 ret = filemap_write_and_wait_range(mapping, offset,
3984 offset + length - 1);
3985 if (ret)
3986 return ret;
3987 }
3988
Al Viro59551022016-01-22 15:40:57 -05003989 inode_lock(inode);
Lukas Czerner9ef06ce2014-04-12 09:47:00 -04003990
Theodore Ts'o26a4c0c2013-04-03 12:45:17 -04003991 /* No need to punch hole beyond i_size */
3992 if (offset >= inode->i_size)
3993 goto out_mutex;
3994
3995 /*
3996 * If the hole extends beyond i_size, set the hole
3997 * to end after the page that contains i_size
3998 */
3999 if (offset + length > inode->i_size) {
4000 length = inode->i_size +
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03004001 PAGE_SIZE - (inode->i_size & (PAGE_SIZE - 1)) -
Theodore Ts'o26a4c0c2013-04-03 12:45:17 -04004002 offset;
4003 }
4004
Jan Karaa3612932013-08-16 21:19:41 -04004005 if (offset & (sb->s_blocksize - 1) ||
4006 (offset + length) & (sb->s_blocksize - 1)) {
4007 /*
4008 * Attach jinode to inode for jbd2 if we do any zeroing of
4009 * partial block
4010 */
4011 ret = ext4_inode_attach_jinode(inode);
4012 if (ret < 0)
4013 goto out_mutex;
4014
4015 }
4016
Jan Karaea3d7202015-12-07 14:28:03 -05004017 /* Wait all existing dio workers, newcomers will block on i_mutex */
Jan Karaea3d7202015-12-07 14:28:03 -05004018 inode_dio_wait(inode);
4019
4020 /*
4021 * Prevent page faults from reinstantiating pages we have released from
4022 * page cache.
4023 */
4024 down_write(&EXT4_I(inode)->i_mmap_sem);
Ross Zwisler430657b2018-07-29 17:00:22 -04004025
4026 ret = ext4_break_layouts(inode);
4027 if (ret)
4028 goto out_dio;
4029
Lukas Czernera87dd182013-05-27 23:32:35 -04004030 first_block_offset = round_up(offset, sb->s_blocksize);
4031 last_block_offset = round_down((offset + length), sb->s_blocksize) - 1;
Theodore Ts'o26a4c0c2013-04-03 12:45:17 -04004032
Lukas Czernera87dd182013-05-27 23:32:35 -04004033 /* Now release the pages and zero block aligned part of pages*/
Jan Kara01127842015-12-07 14:34:49 -05004034 if (last_block_offset > first_block_offset) {
4035 ret = ext4_update_disksize_before_punch(inode, offset, length);
4036 if (ret)
4037 goto out_dio;
Lukas Czernera87dd182013-05-27 23:32:35 -04004038 truncate_pagecache_range(inode, first_block_offset,
4039 last_block_offset);
Jan Kara01127842015-12-07 14:34:49 -05004040 }
Theodore Ts'o26a4c0c2013-04-03 12:45:17 -04004041
4042 if (ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS))
4043 credits = ext4_writepage_trans_blocks(inode);
4044 else
4045 credits = ext4_blocks_for_truncate(inode);
4046 handle = ext4_journal_start(inode, EXT4_HT_TRUNCATE, credits);
4047 if (IS_ERR(handle)) {
4048 ret = PTR_ERR(handle);
4049 ext4_std_error(sb, ret);
4050 goto out_dio;
4051 }
4052
Lukas Czernera87dd182013-05-27 23:32:35 -04004053 ret = ext4_zero_partial_blocks(handle, inode, offset,
4054 length);
4055 if (ret)
4056 goto out_stop;
Theodore Ts'o26a4c0c2013-04-03 12:45:17 -04004057
4058 first_block = (offset + sb->s_blocksize - 1) >>
4059 EXT4_BLOCK_SIZE_BITS(sb);
4060 stop_block = (offset + length) >> EXT4_BLOCK_SIZE_BITS(sb);
4061
Lukas Czernereee597a2018-05-13 19:28:35 -04004062 /* If there are blocks to remove, do it */
4063 if (stop_block > first_block) {
Theodore Ts'o26a4c0c2013-04-03 12:45:17 -04004064
Lukas Czernereee597a2018-05-13 19:28:35 -04004065 down_write(&EXT4_I(inode)->i_data_sem);
4066 ext4_discard_preallocations(inode);
Theodore Ts'o26a4c0c2013-04-03 12:45:17 -04004067
Lukas Czernereee597a2018-05-13 19:28:35 -04004068 ret = ext4_es_remove_extent(inode, first_block,
4069 stop_block - first_block);
4070 if (ret) {
4071 up_write(&EXT4_I(inode)->i_data_sem);
4072 goto out_stop;
4073 }
4074
4075 if (ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS))
4076 ret = ext4_ext_remove_space(inode, first_block,
4077 stop_block - 1);
4078 else
4079 ret = ext4_ind_remove_space(handle, inode, first_block,
4080 stop_block);
4081
Theodore Ts'o26a4c0c2013-04-03 12:45:17 -04004082 up_write(&EXT4_I(inode)->i_data_sem);
Theodore Ts'o26a4c0c2013-04-03 12:45:17 -04004083 }
Theodore Ts'o26a4c0c2013-04-03 12:45:17 -04004084 if (IS_SYNC(inode))
4085 ext4_handle_sync(handle);
Maxim Patlasove251f9b2014-02-20 16:58:05 -05004086
Deepa Dinamanieeca7ea2016-11-14 21:40:10 -05004087 inode->i_mtime = inode->i_ctime = current_time(inode);
Harshad Shirwadkar4209ae12020-04-26 18:34:37 -07004088 ret2 = ext4_mark_inode_dirty(handle, inode);
4089 if (unlikely(ret2))
4090 ret = ret2;
Jan Kara67a7d5f2017-05-29 13:24:55 -04004091 if (ret >= 0)
4092 ext4_update_inode_fsync_trans(handle, inode, 1);
Theodore Ts'o26a4c0c2013-04-03 12:45:17 -04004093out_stop:
4094 ext4_journal_stop(handle);
4095out_dio:
Jan Karaea3d7202015-12-07 14:28:03 -05004096 up_write(&EXT4_I(inode)->i_mmap_sem);
Theodore Ts'o26a4c0c2013-04-03 12:45:17 -04004097out_mutex:
Al Viro59551022016-01-22 15:40:57 -05004098 inode_unlock(inode);
Theodore Ts'o26a4c0c2013-04-03 12:45:17 -04004099 return ret;
Allison Hendersona4bb6b62011-05-25 07:41:50 -04004100}
4101
Jan Karaa3612932013-08-16 21:19:41 -04004102int ext4_inode_attach_jinode(struct inode *inode)
4103{
4104 struct ext4_inode_info *ei = EXT4_I(inode);
4105 struct jbd2_inode *jinode;
4106
4107 if (ei->jinode || !EXT4_SB(inode->i_sb)->s_journal)
4108 return 0;
4109
4110 jinode = jbd2_alloc_inode(GFP_KERNEL);
4111 spin_lock(&inode->i_lock);
4112 if (!ei->jinode) {
4113 if (!jinode) {
4114 spin_unlock(&inode->i_lock);
4115 return -ENOMEM;
4116 }
4117 ei->jinode = jinode;
4118 jbd2_journal_init_jbd_inode(ei->jinode, inode);
4119 jinode = NULL;
4120 }
4121 spin_unlock(&inode->i_lock);
4122 if (unlikely(jinode != NULL))
4123 jbd2_free_inode(jinode);
4124 return 0;
4125}
4126
Allison Hendersona4bb6b62011-05-25 07:41:50 -04004127/*
Mingming Cao617ba132006-10-11 01:20:53 -07004128 * ext4_truncate()
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004129 *
Mingming Cao617ba132006-10-11 01:20:53 -07004130 * We block out ext4_get_block() block instantiations across the entire
4131 * transaction, and VFS/VM ensures that ext4_truncate() cannot run
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004132 * simultaneously on behalf of the same inode.
4133 *
Justin P. Mattock42b2aa82011-11-28 20:31:00 -08004134 * As we work through the truncate and commit bits of it to the journal there
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004135 * is one core, guiding principle: the file's tree must always be consistent on
4136 * disk. We must be able to restart the truncate after a crash.
4137 *
4138 * The file's tree may be transiently inconsistent in memory (although it
4139 * probably isn't), but whenever we close off and commit a journal transaction,
4140 * the contents of (the filesystem + the journal) must be consistent and
4141 * restartable. It's pretty simple, really: bottom up, right to left (although
4142 * left-to-right works OK too).
4143 *
4144 * Note that at recovery time, journal replay occurs *before* the restart of
4145 * truncate against the orphan inode list.
4146 *
4147 * The committed inode has the new, desired i_size (which is the same as
Mingming Cao617ba132006-10-11 01:20:53 -07004148 * i_disksize in this case). After a crash, ext4_orphan_cleanup() will see
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004149 * that this inode's truncate did not complete and it will again call
Mingming Cao617ba132006-10-11 01:20:53 -07004150 * ext4_truncate() to have another go. So there will be instantiated blocks
4151 * to the right of the truncation point in a crashed ext4 filesystem. But
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004152 * that's fine - as long as they are linked from the inode, the post-crash
Mingming Cao617ba132006-10-11 01:20:53 -07004153 * ext4_truncate() run will find them and release them.
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004154 */
Theodore Ts'o2c98eb52016-11-13 22:02:26 -05004155int ext4_truncate(struct inode *inode)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004156{
Theodore Ts'o819c4922013-04-03 12:47:17 -04004157 struct ext4_inode_info *ei = EXT4_I(inode);
4158 unsigned int credits;
Harshad Shirwadkar4209ae12020-04-26 18:34:37 -07004159 int err = 0, err2;
Theodore Ts'o819c4922013-04-03 12:47:17 -04004160 handle_t *handle;
4161 struct address_space *mapping = inode->i_mapping;
Theodore Ts'o819c4922013-04-03 12:47:17 -04004162
Theodore Ts'o19b5ef62013-04-03 21:58:52 -04004163 /*
4164 * There is a possibility that we're either freeing the inode
Matthew Wilcoxe04027e2014-03-24 15:15:07 -04004165 * or it's a completely new inode. In those cases we might not
Theodore Ts'o19b5ef62013-04-03 21:58:52 -04004166 * have i_mutex locked because it's not necessary.
4167 */
4168 if (!(inode->i_state & (I_NEW|I_FREEING)))
Al Viro59551022016-01-22 15:40:57 -05004169 WARN_ON(!inode_is_locked(inode));
Jiaying Zhang0562e0b2011-03-21 21:38:05 -04004170 trace_ext4_truncate_enter(inode);
4171
Duane Griffin91ef4ca2008-07-11 19:27:31 -04004172 if (!ext4_can_truncate(inode))
Theodore Ts'o2c98eb52016-11-13 22:02:26 -05004173 return 0;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004174
Theodore Ts'o5534fb52009-09-17 09:34:16 -04004175 if (inode->i_size == 0 && !test_opt(inode->i_sb, NO_AUTO_DA_ALLOC))
Theodore Ts'o19f5fb72010-01-24 14:34:07 -05004176 ext4_set_inode_state(inode, EXT4_STATE_DA_ALLOC_CLOSE);
Theodore Ts'o7d8f9f72009-02-24 08:21:14 -05004177
Tao Maaef1c852012-12-10 14:06:02 -05004178 if (ext4_has_inline_data(inode)) {
4179 int has_inline = 1;
4180
Theodore Ts'o01daf942017-01-22 19:35:49 -05004181 err = ext4_inline_data_truncate(inode, &has_inline);
4182 if (err)
4183 return err;
Tao Maaef1c852012-12-10 14:06:02 -05004184 if (has_inline)
Theodore Ts'o2c98eb52016-11-13 22:02:26 -05004185 return 0;
Tao Maaef1c852012-12-10 14:06:02 -05004186 }
4187
Jan Karaa3612932013-08-16 21:19:41 -04004188 /* If we zero-out tail of the page, we have to create jinode for jbd2 */
4189 if (inode->i_size & (inode->i_sb->s_blocksize - 1)) {
4190 if (ext4_inode_attach_jinode(inode) < 0)
Theodore Ts'o2c98eb52016-11-13 22:02:26 -05004191 return 0;
Jan Karaa3612932013-08-16 21:19:41 -04004192 }
4193
Amir Goldsteinff9893d2011-06-27 16:36:31 -04004194 if (ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS))
Theodore Ts'o819c4922013-04-03 12:47:17 -04004195 credits = ext4_writepage_trans_blocks(inode);
Amir Goldsteinff9893d2011-06-27 16:36:31 -04004196 else
Theodore Ts'o819c4922013-04-03 12:47:17 -04004197 credits = ext4_blocks_for_truncate(inode);
4198
4199 handle = ext4_journal_start(inode, EXT4_HT_TRUNCATE, credits);
Theodore Ts'o2c98eb52016-11-13 22:02:26 -05004200 if (IS_ERR(handle))
4201 return PTR_ERR(handle);
Theodore Ts'o819c4922013-04-03 12:47:17 -04004202
Lukas Czernereb3544c2013-05-27 23:32:35 -04004203 if (inode->i_size & (inode->i_sb->s_blocksize - 1))
4204 ext4_block_truncate_page(handle, mapping, inode->i_size);
Theodore Ts'o819c4922013-04-03 12:47:17 -04004205
4206 /*
4207 * We add the inode to the orphan list, so that if this
4208 * truncate spans multiple transactions, and we crash, we will
4209 * resume the truncate when the filesystem recovers. It also
4210 * marks the inode dirty, to catch the new size.
4211 *
4212 * Implication: the file must always be in a sane, consistent
4213 * truncatable state while each transaction commits.
4214 */
Theodore Ts'o2c98eb52016-11-13 22:02:26 -05004215 err = ext4_orphan_add(handle, inode);
4216 if (err)
Theodore Ts'o819c4922013-04-03 12:47:17 -04004217 goto out_stop;
4218
4219 down_write(&EXT4_I(inode)->i_data_sem);
4220
4221 ext4_discard_preallocations(inode);
4222
4223 if (ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS))
Theodore Ts'od0abb362016-11-13 22:02:28 -05004224 err = ext4_ext_truncate(handle, inode);
Theodore Ts'o819c4922013-04-03 12:47:17 -04004225 else
4226 ext4_ind_truncate(handle, inode);
4227
4228 up_write(&ei->i_data_sem);
Theodore Ts'od0abb362016-11-13 22:02:28 -05004229 if (err)
4230 goto out_stop;
Theodore Ts'o819c4922013-04-03 12:47:17 -04004231
4232 if (IS_SYNC(inode))
4233 ext4_handle_sync(handle);
4234
4235out_stop:
4236 /*
4237 * If this was a simple ftruncate() and the file will remain alive,
4238 * then we need to clear up the orphan record which we created above.
4239 * However, if this was a real unlink then we were called by
Wang Shilong58d86a52014-11-25 16:17:29 -05004240 * ext4_evict_inode(), and we allow that function to clean up the
Theodore Ts'o819c4922013-04-03 12:47:17 -04004241 * orphan info for us.
4242 */
4243 if (inode->i_nlink)
4244 ext4_orphan_del(handle, inode);
4245
Deepa Dinamanieeca7ea2016-11-14 21:40:10 -05004246 inode->i_mtime = inode->i_ctime = current_time(inode);
Harshad Shirwadkar4209ae12020-04-26 18:34:37 -07004247 err2 = ext4_mark_inode_dirty(handle, inode);
4248 if (unlikely(err2 && !err))
4249 err = err2;
Theodore Ts'o819c4922013-04-03 12:47:17 -04004250 ext4_journal_stop(handle);
Alex Tomasa86c6182006-10-11 01:21:03 -07004251
Jiaying Zhang0562e0b2011-03-21 21:38:05 -04004252 trace_ext4_truncate_exit(inode);
Theodore Ts'o2c98eb52016-11-13 22:02:26 -05004253 return err;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004254}
4255
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004256/*
Mingming Cao617ba132006-10-11 01:20:53 -07004257 * ext4_get_inode_loc returns with an extra refcount against the inode's
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004258 * underlying buffer_head on success. If 'in_mem' is true, we have all
4259 * data in memory that is needed to recreate the on-disk version of this
4260 * inode.
4261 */
Mingming Cao617ba132006-10-11 01:20:53 -07004262static int __ext4_get_inode_loc(struct inode *inode,
4263 struct ext4_iloc *iloc, int in_mem)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004264{
Theodore Ts'o240799c2008-10-09 23:53:47 -04004265 struct ext4_group_desc *gdp;
4266 struct buffer_head *bh;
4267 struct super_block *sb = inode->i_sb;
4268 ext4_fsblk_t block;
Linus Torvalds02f03c42019-09-29 17:59:23 -07004269 struct blk_plug plug;
Theodore Ts'o240799c2008-10-09 23:53:47 -04004270 int inodes_per_block, inode_offset;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004271
Aneesh Kumar K.V3a06d772008-11-22 15:04:59 -05004272 iloc->bh = NULL;
Theodore Ts'oc37e9e02018-06-17 00:41:14 -04004273 if (inode->i_ino < EXT4_ROOT_INO ||
4274 inode->i_ino > le32_to_cpu(EXT4_SB(sb)->s_es->s_inodes_count))
Darrick J. Wong6a797d22015-10-17 16:16:04 -04004275 return -EFSCORRUPTED;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004276
Theodore Ts'o240799c2008-10-09 23:53:47 -04004277 iloc->block_group = (inode->i_ino - 1) / EXT4_INODES_PER_GROUP(sb);
4278 gdp = ext4_get_group_desc(sb, iloc->block_group, NULL);
4279 if (!gdp)
4280 return -EIO;
4281
4282 /*
4283 * Figure out the offset within the block group inode table
4284 */
Tao Ma00d09882011-05-09 10:26:41 -04004285 inodes_per_block = EXT4_SB(sb)->s_inodes_per_block;
Theodore Ts'o240799c2008-10-09 23:53:47 -04004286 inode_offset = ((inode->i_ino - 1) %
4287 EXT4_INODES_PER_GROUP(sb));
4288 block = ext4_inode_table(sb, gdp) + (inode_offset / inodes_per_block);
4289 iloc->offset = (inode_offset % inodes_per_block) * EXT4_INODE_SIZE(sb);
4290
4291 bh = sb_getblk(sb, block);
Wang Shilongaebf0242013-01-12 16:28:47 -05004292 if (unlikely(!bh))
Theodore Ts'o860d21e2013-01-12 16:19:36 -05004293 return -ENOMEM;
Theodore Ts'o46f870d62019-11-21 13:09:43 -05004294 if (ext4_simulate_fail(sb, EXT4_SIM_INODE_EIO))
4295 goto simulate_eio;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004296 if (!buffer_uptodate(bh)) {
4297 lock_buffer(bh);
Hidehiro Kawai9c83a922008-07-26 16:39:26 -04004298
4299 /*
4300 * If the buffer has the write error flag, we have failed
4301 * to write out another inode in the same block. In this
4302 * case, we don't have to read the block because we may
4303 * read the old inode data successfully.
4304 */
4305 if (buffer_write_io_error(bh) && !buffer_uptodate(bh))
4306 set_buffer_uptodate(bh);
4307
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004308 if (buffer_uptodate(bh)) {
4309 /* someone brought it uptodate while we waited */
4310 unlock_buffer(bh);
4311 goto has_buffer;
4312 }
4313
4314 /*
4315 * If we have all information of the inode in memory and this
4316 * is the only valid inode in the block, we need not read the
4317 * block.
4318 */
4319 if (in_mem) {
4320 struct buffer_head *bitmap_bh;
Theodore Ts'o240799c2008-10-09 23:53:47 -04004321 int i, start;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004322
Theodore Ts'o240799c2008-10-09 23:53:47 -04004323 start = inode_offset & ~(inodes_per_block - 1);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004324
4325 /* Is the inode bitmap in cache? */
Theodore Ts'o240799c2008-10-09 23:53:47 -04004326 bitmap_bh = sb_getblk(sb, ext4_inode_bitmap(sb, gdp));
Wang Shilongaebf0242013-01-12 16:28:47 -05004327 if (unlikely(!bitmap_bh))
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004328 goto make_io;
4329
4330 /*
4331 * If the inode bitmap isn't in cache then the
4332 * optimisation may end up performing two reads instead
4333 * of one, so skip it.
4334 */
4335 if (!buffer_uptodate(bitmap_bh)) {
4336 brelse(bitmap_bh);
4337 goto make_io;
4338 }
Theodore Ts'o240799c2008-10-09 23:53:47 -04004339 for (i = start; i < start + inodes_per_block; i++) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004340 if (i == inode_offset)
4341 continue;
Mingming Cao617ba132006-10-11 01:20:53 -07004342 if (ext4_test_bit(i, bitmap_bh->b_data))
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004343 break;
4344 }
4345 brelse(bitmap_bh);
Theodore Ts'o240799c2008-10-09 23:53:47 -04004346 if (i == start + inodes_per_block) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004347 /* all other inodes are free, so skip I/O */
4348 memset(bh->b_data, 0, bh->b_size);
4349 set_buffer_uptodate(bh);
4350 unlock_buffer(bh);
4351 goto has_buffer;
4352 }
4353 }
4354
4355make_io:
4356 /*
Theodore Ts'o240799c2008-10-09 23:53:47 -04004357 * If we need to do any I/O, try to pre-readahead extra
4358 * blocks from the inode table.
4359 */
Linus Torvalds02f03c42019-09-29 17:59:23 -07004360 blk_start_plug(&plug);
Theodore Ts'o240799c2008-10-09 23:53:47 -04004361 if (EXT4_SB(sb)->s_inode_readahead_blks) {
4362 ext4_fsblk_t b, end, table;
4363 unsigned num;
Theodore Ts'o0d606e2c2013-04-23 08:59:35 -04004364 __u32 ra_blks = EXT4_SB(sb)->s_inode_readahead_blks;
Theodore Ts'o240799c2008-10-09 23:53:47 -04004365
4366 table = ext4_inode_table(sb, gdp);
Theodore Ts'ob713a5e2009-03-31 09:11:14 -04004367 /* s_inode_readahead_blks is always a power of 2 */
Theodore Ts'o0d606e2c2013-04-23 08:59:35 -04004368 b = block & ~((ext4_fsblk_t) ra_blks - 1);
Theodore Ts'o240799c2008-10-09 23:53:47 -04004369 if (table > b)
4370 b = table;
Theodore Ts'o0d606e2c2013-04-23 08:59:35 -04004371 end = b + ra_blks;
Theodore Ts'o240799c2008-10-09 23:53:47 -04004372 num = EXT4_INODES_PER_GROUP(sb);
Darrick J. Wongfeb0ab32012-04-29 18:45:10 -04004373 if (ext4_has_group_desc_csum(sb))
Aneesh Kumar K.V560671a2009-01-05 22:20:24 -05004374 num -= ext4_itable_unused_count(sb, gdp);
Theodore Ts'o240799c2008-10-09 23:53:47 -04004375 table += num / inodes_per_block;
4376 if (end > table)
4377 end = table;
4378 while (b <= end)
Roman Gushchind87f6392020-02-28 16:14:11 -08004379 sb_breadahead_unmovable(sb, b++);
Theodore Ts'o240799c2008-10-09 23:53:47 -04004380 }
4381
4382 /*
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004383 * There are other valid inodes in the buffer, this inode
4384 * has in-inode xattrs, or we don't have this inode in memory.
4385 * Read the block from disk.
4386 */
Jiaying Zhang0562e0b2011-03-21 21:38:05 -04004387 trace_ext4_load_inode(inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004388 get_bh(bh);
4389 bh->b_end_io = end_buffer_read_sync;
Mike Christie2a222ca2016-06-05 14:31:43 -05004390 submit_bh(REQ_OP_READ, REQ_META | REQ_PRIO, bh);
Linus Torvalds02f03c42019-09-29 17:59:23 -07004391 blk_finish_plug(&plug);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004392 wait_on_buffer(bh);
4393 if (!buffer_uptodate(bh)) {
Theodore Ts'o46f870d62019-11-21 13:09:43 -05004394 simulate_eio:
Theodore Ts'o54d3adb2020-03-28 19:33:43 -04004395 ext4_error_inode_block(inode, block, EIO,
Theodore Ts'oc398eda2010-07-27 11:56:40 -04004396 "unable to read itable block");
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004397 brelse(bh);
4398 return -EIO;
4399 }
4400 }
4401has_buffer:
4402 iloc->bh = bh;
4403 return 0;
4404}
4405
Mingming Cao617ba132006-10-11 01:20:53 -07004406int ext4_get_inode_loc(struct inode *inode, struct ext4_iloc *iloc)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004407{
4408 /* We have all inode data except xattrs in memory here. */
Mingming Cao617ba132006-10-11 01:20:53 -07004409 return __ext4_get_inode_loc(inode, iloc,
Theodore Ts'o19f5fb72010-01-24 14:34:07 -05004410 !ext4_test_inode_state(inode, EXT4_STATE_XATTR));
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004411}
4412
Ross Zwisler66425862017-10-12 12:00:59 -04004413static bool ext4_should_use_dax(struct inode *inode)
4414{
4415 if (!test_opt(inode->i_sb, DAX))
4416 return false;
4417 if (!S_ISREG(inode->i_mode))
4418 return false;
4419 if (ext4_should_journal_data(inode))
4420 return false;
4421 if (ext4_has_inline_data(inode))
4422 return false;
Chandan Rajendra592ddec2018-12-12 15:20:10 +05304423 if (ext4_test_inode_flag(inode, EXT4_INODE_ENCRYPT))
Ross Zwisler66425862017-10-12 12:00:59 -04004424 return false;
Eric Biggersc93d8f82019-07-22 09:26:24 -07004425 if (ext4_test_inode_flag(inode, EXT4_INODE_VERITY))
4426 return false;
Ross Zwisler66425862017-10-12 12:00:59 -04004427 return true;
4428}
4429
Mingming Cao617ba132006-10-11 01:20:53 -07004430void ext4_set_inode_flags(struct inode *inode)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004431{
Mingming Cao617ba132006-10-11 01:20:53 -07004432 unsigned int flags = EXT4_I(inode)->i_flags;
Theodore Ts'o00a1a052014-03-30 10:20:01 -04004433 unsigned int new_fl = 0;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004434
Mingming Cao617ba132006-10-11 01:20:53 -07004435 if (flags & EXT4_SYNC_FL)
Theodore Ts'o00a1a052014-03-30 10:20:01 -04004436 new_fl |= S_SYNC;
Mingming Cao617ba132006-10-11 01:20:53 -07004437 if (flags & EXT4_APPEND_FL)
Theodore Ts'o00a1a052014-03-30 10:20:01 -04004438 new_fl |= S_APPEND;
Mingming Cao617ba132006-10-11 01:20:53 -07004439 if (flags & EXT4_IMMUTABLE_FL)
Theodore Ts'o00a1a052014-03-30 10:20:01 -04004440 new_fl |= S_IMMUTABLE;
Mingming Cao617ba132006-10-11 01:20:53 -07004441 if (flags & EXT4_NOATIME_FL)
Theodore Ts'o00a1a052014-03-30 10:20:01 -04004442 new_fl |= S_NOATIME;
Mingming Cao617ba132006-10-11 01:20:53 -07004443 if (flags & EXT4_DIRSYNC_FL)
Theodore Ts'o00a1a052014-03-30 10:20:01 -04004444 new_fl |= S_DIRSYNC;
Ross Zwisler66425862017-10-12 12:00:59 -04004445 if (ext4_should_use_dax(inode))
Ross Zwisler923ae0f2015-02-16 15:59:38 -08004446 new_fl |= S_DAX;
Eric Biggers2ee6a572017-10-09 12:15:35 -07004447 if (flags & EXT4_ENCRYPT_FL)
4448 new_fl |= S_ENCRYPTED;
Gabriel Krisman Bertazib886ee32019-04-25 14:12:08 -04004449 if (flags & EXT4_CASEFOLD_FL)
4450 new_fl |= S_CASEFOLD;
Eric Biggersc93d8f82019-07-22 09:26:24 -07004451 if (flags & EXT4_VERITY_FL)
4452 new_fl |= S_VERITY;
Theodore Ts'o5f16f322014-03-24 14:43:12 -04004453 inode_set_flags(inode, new_fl,
Eric Biggers2ee6a572017-10-09 12:15:35 -07004454 S_SYNC|S_APPEND|S_IMMUTABLE|S_NOATIME|S_DIRSYNC|S_DAX|
Eric Biggersc93d8f82019-07-22 09:26:24 -07004455 S_ENCRYPTED|S_CASEFOLD|S_VERITY);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004456}
4457
Aneesh Kumar K.V0fc1b452008-01-28 23:58:26 -05004458static blkcnt_t ext4_inode_blocks(struct ext4_inode *raw_inode,
Theodore Ts'ode9a55b2009-06-14 17:45:34 -04004459 struct ext4_inode_info *ei)
Aneesh Kumar K.V0fc1b452008-01-28 23:58:26 -05004460{
4461 blkcnt_t i_blocks ;
Aneesh Kumar K.V8180a562008-01-28 23:58:27 -05004462 struct inode *inode = &(ei->vfs_inode);
4463 struct super_block *sb = inode->i_sb;
Aneesh Kumar K.V0fc1b452008-01-28 23:58:26 -05004464
Darrick J. Wonge2b911c2015-10-17 16:18:43 -04004465 if (ext4_has_feature_huge_file(sb)) {
Aneesh Kumar K.V0fc1b452008-01-28 23:58:26 -05004466 /* we are using combined 48 bit field */
4467 i_blocks = ((u64)le16_to_cpu(raw_inode->i_blocks_high)) << 32 |
4468 le32_to_cpu(raw_inode->i_blocks_lo);
Theodore Ts'o07a03822010-06-14 09:54:48 -04004469 if (ext4_test_inode_flag(inode, EXT4_INODE_HUGE_FILE)) {
Aneesh Kumar K.V8180a562008-01-28 23:58:27 -05004470 /* i_blocks represent file system block size */
4471 return i_blocks << (inode->i_blkbits - 9);
4472 } else {
4473 return i_blocks;
4474 }
Aneesh Kumar K.V0fc1b452008-01-28 23:58:26 -05004475 } else {
4476 return le32_to_cpu(raw_inode->i_blocks_lo);
4477 }
4478}
Jan Karaff9ddf72007-07-18 09:24:20 -04004479
Theodore Ts'oeb9b5f02018-05-22 17:14:07 -04004480static inline int ext4_iget_extra_inode(struct inode *inode,
Tao Ma152a7b02012-12-02 11:13:24 -05004481 struct ext4_inode *raw_inode,
4482 struct ext4_inode_info *ei)
4483{
4484 __le32 *magic = (void *)raw_inode +
4485 EXT4_GOOD_OLD_INODE_SIZE + ei->i_extra_isize;
Theodore Ts'oeb9b5f02018-05-22 17:14:07 -04004486
Eric Biggers290ab232016-12-01 14:51:58 -05004487 if (EXT4_GOOD_OLD_INODE_SIZE + ei->i_extra_isize + sizeof(__le32) <=
4488 EXT4_INODE_SIZE(inode->i_sb) &&
4489 *magic == cpu_to_le32(EXT4_XATTR_MAGIC)) {
Tao Ma152a7b02012-12-02 11:13:24 -05004490 ext4_set_inode_state(inode, EXT4_STATE_XATTR);
Theodore Ts'oeb9b5f02018-05-22 17:14:07 -04004491 return ext4_find_inline_data_nolock(inode);
Tao Maf19d5872012-12-10 14:05:51 -05004492 } else
4493 EXT4_I(inode)->i_inline_off = 0;
Theodore Ts'oeb9b5f02018-05-22 17:14:07 -04004494 return 0;
Tao Ma152a7b02012-12-02 11:13:24 -05004495}
4496
Li Xi040cb372016-01-08 16:01:21 -05004497int ext4_get_projid(struct inode *inode, kprojid_t *projid)
4498{
Kaho Ng0b7b7772016-09-05 23:11:58 -04004499 if (!ext4_has_feature_project(inode->i_sb))
Li Xi040cb372016-01-08 16:01:21 -05004500 return -EOPNOTSUPP;
4501 *projid = EXT4_I(inode)->i_projid;
4502 return 0;
4503}
4504
Eryu Guane254d1a2018-05-10 11:55:31 -04004505/*
4506 * ext4 has self-managed i_version for ea inodes, it stores the lower 32bit of
4507 * refcount in i_version, so use raw values if inode has EXT4_EA_INODE_FL flag
4508 * set.
4509 */
4510static inline void ext4_inode_set_iversion_queried(struct inode *inode, u64 val)
4511{
4512 if (unlikely(EXT4_I(inode)->i_flags & EXT4_EA_INODE_FL))
4513 inode_set_iversion_raw(inode, val);
4514 else
4515 inode_set_iversion_queried(inode, val);
4516}
4517static inline u64 ext4_inode_peek_iversion(const struct inode *inode)
4518{
4519 if (unlikely(EXT4_I(inode)->i_flags & EXT4_EA_INODE_FL))
4520 return inode_peek_iversion_raw(inode);
4521 else
4522 return inode_peek_iversion(inode);
4523}
4524
Theodore Ts'o8a363972018-12-19 12:29:13 -05004525struct inode *__ext4_iget(struct super_block *sb, unsigned long ino,
4526 ext4_iget_flags flags, const char *function,
4527 unsigned int line)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004528{
Mingming Cao617ba132006-10-11 01:20:53 -07004529 struct ext4_iloc iloc;
4530 struct ext4_inode *raw_inode;
David Howells1d1fe1e2008-02-07 00:15:37 -08004531 struct ext4_inode_info *ei;
David Howells1d1fe1e2008-02-07 00:15:37 -08004532 struct inode *inode;
Jan Karab436b9b2009-12-08 23:51:10 -05004533 journal_t *journal = EXT4_SB(sb)->s_journal;
David Howells1d1fe1e2008-02-07 00:15:37 -08004534 long ret;
Darrick J. Wong7e6e1ef2016-12-10 09:55:01 -05004535 loff_t size;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004536 int block;
Eric W. Biederman08cefc72012-02-07 15:41:49 -08004537 uid_t i_uid;
4538 gid_t i_gid;
Li Xi040cb372016-01-08 16:01:21 -05004539 projid_t i_projid;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004540
Theodore Ts'o191ce172018-12-31 22:34:31 -05004541 if ((!(flags & EXT4_IGET_SPECIAL) &&
Theodore Ts'o8a363972018-12-19 12:29:13 -05004542 (ino < EXT4_FIRST_INO(sb) && ino != EXT4_ROOT_INO)) ||
4543 (ino < EXT4_ROOT_INO) ||
4544 (ino > le32_to_cpu(EXT4_SB(sb)->s_es->s_inodes_count))) {
4545 if (flags & EXT4_IGET_HANDLE)
4546 return ERR_PTR(-ESTALE);
Theodore Ts'o54d3adb2020-03-28 19:33:43 -04004547 __ext4_error(sb, function, line, EFSCORRUPTED, 0,
Theodore Ts'o8a363972018-12-19 12:29:13 -05004548 "inode #%lu: comm %s: iget: illegal inode #",
4549 ino, current->comm);
4550 return ERR_PTR(-EFSCORRUPTED);
4551 }
4552
David Howells1d1fe1e2008-02-07 00:15:37 -08004553 inode = iget_locked(sb, ino);
4554 if (!inode)
4555 return ERR_PTR(-ENOMEM);
4556 if (!(inode->i_state & I_NEW))
4557 return inode;
4558
4559 ei = EXT4_I(inode);
Peter Huewe7dc57612011-02-21 21:01:42 -05004560 iloc.bh = NULL;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004561
David Howells1d1fe1e2008-02-07 00:15:37 -08004562 ret = __ext4_get_inode_loc(inode, &iloc, 0);
4563 if (ret < 0)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004564 goto bad_inode;
Mingming Cao617ba132006-10-11 01:20:53 -07004565 raw_inode = ext4_raw_inode(&iloc);
Darrick J. Wong814525f2012-04-29 18:31:10 -04004566
Theodore Ts'o8e4b5ea2018-03-29 21:56:09 -04004567 if ((ino == EXT4_ROOT_INO) && (raw_inode->i_links_count == 0)) {
Theodore Ts'o8a363972018-12-19 12:29:13 -05004568 ext4_error_inode(inode, function, line, 0,
4569 "iget: root inode unallocated");
Theodore Ts'o8e4b5ea2018-03-29 21:56:09 -04004570 ret = -EFSCORRUPTED;
4571 goto bad_inode;
4572 }
4573
Theodore Ts'o8a363972018-12-19 12:29:13 -05004574 if ((flags & EXT4_IGET_HANDLE) &&
4575 (raw_inode->i_links_count == 0) && (raw_inode->i_mode == 0)) {
4576 ret = -ESTALE;
4577 goto bad_inode;
4578 }
4579
Darrick J. Wong814525f2012-04-29 18:31:10 -04004580 if (EXT4_INODE_SIZE(inode->i_sb) > EXT4_GOOD_OLD_INODE_SIZE) {
4581 ei->i_extra_isize = le16_to_cpu(raw_inode->i_extra_isize);
4582 if (EXT4_GOOD_OLD_INODE_SIZE + ei->i_extra_isize >
Eric Biggers2dc8d9e2016-12-01 14:43:33 -05004583 EXT4_INODE_SIZE(inode->i_sb) ||
4584 (ei->i_extra_isize & 3)) {
Theodore Ts'o8a363972018-12-19 12:29:13 -05004585 ext4_error_inode(inode, function, line, 0,
4586 "iget: bad extra_isize %u "
4587 "(inode size %u)",
Eric Biggers2dc8d9e2016-12-01 14:43:33 -05004588 ei->i_extra_isize,
4589 EXT4_INODE_SIZE(inode->i_sb));
Darrick J. Wong6a797d22015-10-17 16:16:04 -04004590 ret = -EFSCORRUPTED;
Darrick J. Wong814525f2012-04-29 18:31:10 -04004591 goto bad_inode;
4592 }
4593 } else
4594 ei->i_extra_isize = 0;
4595
4596 /* Precompute checksum seed for inode metadata */
Dmitry Monakhov9aa5d32b2014-10-13 03:36:16 -04004597 if (ext4_has_metadata_csum(sb)) {
Darrick J. Wong814525f2012-04-29 18:31:10 -04004598 struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb);
4599 __u32 csum;
4600 __le32 inum = cpu_to_le32(inode->i_ino);
4601 __le32 gen = raw_inode->i_generation;
4602 csum = ext4_chksum(sbi, sbi->s_csum_seed, (__u8 *)&inum,
4603 sizeof(inum));
4604 ei->i_csum_seed = ext4_chksum(sbi, csum, (__u8 *)&gen,
4605 sizeof(gen));
4606 }
4607
Theodore Ts'o46f870d62019-11-21 13:09:43 -05004608 if (!ext4_inode_csum_verify(inode, raw_inode, ei) ||
4609 ext4_simulate_fail(sb, EXT4_SIM_INODE_CRC)) {
Theodore Ts'o54d3adb2020-03-28 19:33:43 -04004610 ext4_error_inode_err(inode, function, line, 0, EFSBADCRC,
4611 "iget: checksum invalid");
Darrick J. Wong6a797d22015-10-17 16:16:04 -04004612 ret = -EFSBADCRC;
Darrick J. Wong814525f2012-04-29 18:31:10 -04004613 goto bad_inode;
4614 }
4615
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004616 inode->i_mode = le16_to_cpu(raw_inode->i_mode);
Eric W. Biederman08cefc72012-02-07 15:41:49 -08004617 i_uid = (uid_t)le16_to_cpu(raw_inode->i_uid_low);
4618 i_gid = (gid_t)le16_to_cpu(raw_inode->i_gid_low);
Kaho Ng0b7b7772016-09-05 23:11:58 -04004619 if (ext4_has_feature_project(sb) &&
Li Xi040cb372016-01-08 16:01:21 -05004620 EXT4_INODE_SIZE(sb) > EXT4_GOOD_OLD_INODE_SIZE &&
4621 EXT4_FITS_IN_INODE(raw_inode, ei, i_projid))
4622 i_projid = (projid_t)le32_to_cpu(raw_inode->i_projid);
4623 else
4624 i_projid = EXT4_DEF_PROJID;
4625
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04004626 if (!(test_opt(inode->i_sb, NO_UID32))) {
Eric W. Biederman08cefc72012-02-07 15:41:49 -08004627 i_uid |= le16_to_cpu(raw_inode->i_uid_high) << 16;
4628 i_gid |= le16_to_cpu(raw_inode->i_gid_high) << 16;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004629 }
Eric W. Biederman08cefc72012-02-07 15:41:49 -08004630 i_uid_write(inode, i_uid);
4631 i_gid_write(inode, i_gid);
Li Xi040cb372016-01-08 16:01:21 -05004632 ei->i_projid = make_kprojid(&init_user_ns, i_projid);
Miklos Szeredibfe86842011-10-28 14:13:29 +02004633 set_nlink(inode, le16_to_cpu(raw_inode->i_links_count));
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004634
Theodore Ts'o353eb832011-01-10 12:18:25 -05004635 ext4_clear_state_flags(ei); /* Only relevant on 32-bit archs */
Tao Ma67cf5b02012-12-10 14:04:46 -05004636 ei->i_inline_off = 0;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004637 ei->i_dir_start_lookup = 0;
4638 ei->i_dtime = le32_to_cpu(raw_inode->i_dtime);
4639 /* We now have enough fields to check if the inode was active or not.
4640 * This is needed because nfsd might try to access dead inodes
4641 * the test is that same one that e2fsck uses
4642 * NeilBrown 1999oct15
4643 */
4644 if (inode->i_nlink == 0) {
Dr. Tilmann Bubeck393d1d12013-04-08 12:54:05 -04004645 if ((inode->i_mode == 0 ||
4646 !(EXT4_SB(inode->i_sb)->s_mount_state & EXT4_ORPHAN_FS)) &&
4647 ino != EXT4_BOOT_LOADER_INO) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004648 /* this inode is deleted */
David Howells1d1fe1e2008-02-07 00:15:37 -08004649 ret = -ESTALE;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004650 goto bad_inode;
4651 }
4652 /* The only unlinked inodes we let through here have
4653 * valid i_mode and are being read by the orphan
4654 * recovery code: that's fine, we're about to complete
Dr. Tilmann Bubeck393d1d12013-04-08 12:54:05 -04004655 * the process of deleting those.
4656 * OR it is the EXT4_BOOT_LOADER_INO which is
4657 * not initialized on a new filesystem. */
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004658 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004659 ei->i_flags = le32_to_cpu(raw_inode->i_flags);
Toshi Kanicce6c9f2018-09-15 21:37:59 -04004660 ext4_set_inode_flags(inode);
Aneesh Kumar K.V0fc1b452008-01-28 23:58:26 -05004661 inode->i_blocks = ext4_inode_blocks(raw_inode, ei);
Aneesh Kumar K.V7973c0c2008-01-28 23:58:27 -05004662 ei->i_file_acl = le32_to_cpu(raw_inode->i_file_acl_lo);
Darrick J. Wonge2b911c2015-10-17 16:18:43 -04004663 if (ext4_has_feature_64bit(sb))
Badari Pulavartya1ddeb72006-10-11 01:21:09 -07004664 ei->i_file_acl |=
4665 ((__u64)le16_to_cpu(raw_inode->i_file_acl_high)) << 32;
Artem Blagodarenkoe08ac992017-06-21 21:09:57 -04004666 inode->i_size = ext4_isize(sb, raw_inode);
Darrick J. Wong7e6e1ef2016-12-10 09:55:01 -05004667 if ((size = i_size_read(inode)) < 0) {
Theodore Ts'o8a363972018-12-19 12:29:13 -05004668 ext4_error_inode(inode, function, line, 0,
4669 "iget: bad i_size value: %lld", size);
Darrick J. Wong7e6e1ef2016-12-10 09:55:01 -05004670 ret = -EFSCORRUPTED;
4671 goto bad_inode;
4672 }
Jan Kara48a34312020-02-10 15:43:16 +01004673 /*
4674 * If dir_index is not enabled but there's dir with INDEX flag set,
4675 * we'd normally treat htree data as empty space. But with metadata
4676 * checksumming that corrupts checksums so forbid that.
4677 */
4678 if (!ext4_has_feature_dir_index(sb) && ext4_has_metadata_csum(sb) &&
4679 ext4_test_inode_flag(inode, EXT4_INODE_INDEX)) {
4680 ext4_error_inode(inode, function, line, 0,
4681 "iget: Dir with htree data on filesystem without dir_index feature.");
4682 ret = -EFSCORRUPTED;
4683 goto bad_inode;
4684 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004685 ei->i_disksize = inode->i_size;
Dmitry Monakhova9e7f442009-12-14 15:21:14 +03004686#ifdef CONFIG_QUOTA
4687 ei->i_reserved_quota = 0;
4688#endif
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004689 inode->i_generation = le32_to_cpu(raw_inode->i_generation);
4690 ei->i_block_group = iloc.block_group;
Theodore Ts'oa4912122009-03-12 12:18:34 -04004691 ei->i_last_alloc_group = ~0;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004692 /*
4693 * NOTE! The in-memory inode i_data array is in little-endian order
4694 * even on big-endian machines: we do NOT byteswap the block numbers!
4695 */
Mingming Cao617ba132006-10-11 01:20:53 -07004696 for (block = 0; block < EXT4_N_BLOCKS; block++)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004697 ei->i_data[block] = raw_inode->i_block[block];
4698 INIT_LIST_HEAD(&ei->i_orphan);
4699
Jan Karab436b9b2009-12-08 23:51:10 -05004700 /*
4701 * Set transaction id's of transactions that have to be committed
4702 * to finish f[data]sync. We set them to currently running transaction
4703 * as we cannot be sure that the inode or some of its metadata isn't
4704 * part of the transaction - the inode could have been reclaimed and
4705 * now it is reread from disk.
4706 */
4707 if (journal) {
4708 transaction_t *transaction;
4709 tid_t tid;
4710
Theodore Ts'oa931da62010-08-03 21:35:12 -04004711 read_lock(&journal->j_state_lock);
Jan Karab436b9b2009-12-08 23:51:10 -05004712 if (journal->j_running_transaction)
4713 transaction = journal->j_running_transaction;
4714 else
4715 transaction = journal->j_committing_transaction;
4716 if (transaction)
4717 tid = transaction->t_tid;
4718 else
4719 tid = journal->j_commit_sequence;
Theodore Ts'oa931da62010-08-03 21:35:12 -04004720 read_unlock(&journal->j_state_lock);
Jan Karab436b9b2009-12-08 23:51:10 -05004721 ei->i_sync_tid = tid;
4722 ei->i_datasync_tid = tid;
4723 }
4724
Eric Sandeen0040d982008-02-05 22:36:43 -05004725 if (EXT4_INODE_SIZE(inode->i_sb) > EXT4_GOOD_OLD_INODE_SIZE) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004726 if (ei->i_extra_isize == 0) {
4727 /* The extra space is currently unused. Use it. */
Eric Biggers2dc8d9e2016-12-01 14:43:33 -05004728 BUILD_BUG_ON(sizeof(struct ext4_inode) & 3);
Mingming Cao617ba132006-10-11 01:20:53 -07004729 ei->i_extra_isize = sizeof(struct ext4_inode) -
4730 EXT4_GOOD_OLD_INODE_SIZE;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004731 } else {
Theodore Ts'oeb9b5f02018-05-22 17:14:07 -04004732 ret = ext4_iget_extra_inode(inode, raw_inode, ei);
4733 if (ret)
4734 goto bad_inode;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004735 }
Darrick J. Wong814525f2012-04-29 18:31:10 -04004736 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004737
Kalpak Shahef7f3832007-07-18 09:15:20 -04004738 EXT4_INODE_GET_XTIME(i_ctime, inode, raw_inode);
4739 EXT4_INODE_GET_XTIME(i_mtime, inode, raw_inode);
4740 EXT4_INODE_GET_XTIME(i_atime, inode, raw_inode);
4741 EXT4_EINODE_GET_XTIME(i_crtime, ei, raw_inode);
4742
Theodore Ts'oed3654e2014-03-24 14:09:06 -04004743 if (likely(!test_opt2(inode->i_sb, HURD_COMPAT))) {
Jeff Laytonee73f9a2018-01-09 08:21:39 -05004744 u64 ivers = le32_to_cpu(raw_inode->i_disk_version);
4745
Theodore Ts'oc4f65702014-03-20 00:32:57 -04004746 if (EXT4_INODE_SIZE(inode->i_sb) > EXT4_GOOD_OLD_INODE_SIZE) {
4747 if (EXT4_FITS_IN_INODE(raw_inode, ei, i_version_hi))
Jeff Laytonee73f9a2018-01-09 08:21:39 -05004748 ivers |=
Theodore Ts'oc4f65702014-03-20 00:32:57 -04004749 (__u64)(le32_to_cpu(raw_inode->i_version_hi)) << 32;
4750 }
Eryu Guane254d1a2018-05-10 11:55:31 -04004751 ext4_inode_set_iversion_queried(inode, ivers);
Jean Noel Cordenner25ec56b2008-01-28 23:58:27 -05004752 }
4753
Theodore Ts'oc4b5a612009-04-24 18:45:35 -04004754 ret = 0;
Theodore Ts'o485c26e2009-04-24 13:43:20 -04004755 if (ei->i_file_acl &&
Theodore Ts'o10329882009-11-15 15:29:56 -05004756 !ext4_data_block_valid(EXT4_SB(sb), ei->i_file_acl, 1)) {
Theodore Ts'o8a363972018-12-19 12:29:13 -05004757 ext4_error_inode(inode, function, line, 0,
4758 "iget: bad extended attribute block %llu",
Theodore Ts'o24676da2010-05-16 21:00:00 -04004759 ei->i_file_acl);
Darrick J. Wong6a797d22015-10-17 16:16:04 -04004760 ret = -EFSCORRUPTED;
Theodore Ts'o485c26e2009-04-24 13:43:20 -04004761 goto bad_inode;
Tao Maf19d5872012-12-10 14:05:51 -05004762 } else if (!ext4_has_inline_data(inode)) {
Liu Songbc716522018-08-02 00:11:16 -04004763 /* validate the block references in the inode */
4764 if (S_ISREG(inode->i_mode) || S_ISDIR(inode->i_mode) ||
4765 (S_ISLNK(inode->i_mode) &&
4766 !ext4_inode_is_fast_symlink(inode))) {
4767 if (ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS))
Tao Maf19d5872012-12-10 14:05:51 -05004768 ret = ext4_ext_check_inode(inode);
Liu Songbc716522018-08-02 00:11:16 -04004769 else
4770 ret = ext4_ind_check_inode(inode);
Tao Maf19d5872012-12-10 14:05:51 -05004771 }
Thiemo Nagelfe2c8192009-03-31 08:36:10 -04004772 }
Theodore Ts'o567f3e92009-11-14 08:19:05 -05004773 if (ret)
Theodore Ts'ode9a55b2009-06-14 17:45:34 -04004774 goto bad_inode;
Aneesh Kumar K.V7a262f72009-03-27 16:39:58 -04004775
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004776 if (S_ISREG(inode->i_mode)) {
Mingming Cao617ba132006-10-11 01:20:53 -07004777 inode->i_op = &ext4_file_inode_operations;
Boaz Harroshbe64f882015-04-15 16:15:17 -07004778 inode->i_fop = &ext4_file_operations;
Mingming Cao617ba132006-10-11 01:20:53 -07004779 ext4_set_aops(inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004780 } else if (S_ISDIR(inode->i_mode)) {
Mingming Cao617ba132006-10-11 01:20:53 -07004781 inode->i_op = &ext4_dir_inode_operations;
4782 inode->i_fop = &ext4_dir_operations;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004783 } else if (S_ISLNK(inode->i_mode)) {
Luis R. Rodriguez6390d332018-05-13 16:45:56 -04004784 /* VFS does not allow setting these so must be corruption */
4785 if (IS_APPEND(inode) || IS_IMMUTABLE(inode)) {
Theodore Ts'o8a363972018-12-19 12:29:13 -05004786 ext4_error_inode(inode, function, line, 0,
4787 "iget: immutable or append flags "
4788 "not allowed on symlinks");
Luis R. Rodriguez6390d332018-05-13 16:45:56 -04004789 ret = -EFSCORRUPTED;
4790 goto bad_inode;
4791 }
Chandan Rajendra592ddec2018-12-12 15:20:10 +05304792 if (IS_ENCRYPTED(inode)) {
Al Viroa7a67e82015-04-27 17:51:30 -04004793 inode->i_op = &ext4_encrypted_symlink_inode_operations;
4794 ext4_set_aops(inode);
4795 } else if (ext4_inode_is_fast_symlink(inode)) {
Al Viro75e75662015-05-02 10:13:58 -04004796 inode->i_link = (char *)ei->i_data;
Mingming Cao617ba132006-10-11 01:20:53 -07004797 inode->i_op = &ext4_fast_symlink_inode_operations;
Duane Griffine83c1392008-12-19 20:47:15 +00004798 nd_terminate_link(ei->i_data, inode->i_size,
4799 sizeof(ei->i_data) - 1);
4800 } else {
Mingming Cao617ba132006-10-11 01:20:53 -07004801 inode->i_op = &ext4_symlink_inode_operations;
4802 ext4_set_aops(inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004803 }
Al Viro21fc61c2015-11-17 01:07:57 -05004804 inode_nohighmem(inode);
Theodore Ts'o563bdd62009-03-26 00:06:19 -04004805 } else if (S_ISCHR(inode->i_mode) || S_ISBLK(inode->i_mode) ||
4806 S_ISFIFO(inode->i_mode) || S_ISSOCK(inode->i_mode)) {
Mingming Cao617ba132006-10-11 01:20:53 -07004807 inode->i_op = &ext4_special_inode_operations;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004808 if (raw_inode->i_block[0])
4809 init_special_inode(inode, inode->i_mode,
4810 old_decode_dev(le32_to_cpu(raw_inode->i_block[0])));
4811 else
4812 init_special_inode(inode, inode->i_mode,
4813 new_decode_dev(le32_to_cpu(raw_inode->i_block[1])));
Dr. Tilmann Bubeck393d1d12013-04-08 12:54:05 -04004814 } else if (ino == EXT4_BOOT_LOADER_INO) {
4815 make_bad_inode(inode);
Theodore Ts'o563bdd62009-03-26 00:06:19 -04004816 } else {
Darrick J. Wong6a797d22015-10-17 16:16:04 -04004817 ret = -EFSCORRUPTED;
Theodore Ts'o8a363972018-12-19 12:29:13 -05004818 ext4_error_inode(inode, function, line, 0,
4819 "iget: bogus i_mode (%o)", inode->i_mode);
Theodore Ts'o563bdd62009-03-26 00:06:19 -04004820 goto bad_inode;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004821 }
Theodore Ts'o6456ca62019-09-03 01:43:17 -04004822 if (IS_CASEFOLDED(inode) && !ext4_has_feature_casefold(inode->i_sb))
4823 ext4_error_inode(inode, function, line, 0,
4824 "casefold flag without casefold feature");
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04004825 brelse(iloc.bh);
Tahsin Erdogandec214d2017-06-22 11:44:55 -04004826
David Howells1d1fe1e2008-02-07 00:15:37 -08004827 unlock_new_inode(inode);
4828 return inode;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004829
4830bad_inode:
Theodore Ts'o567f3e92009-11-14 08:19:05 -05004831 brelse(iloc.bh);
David Howells1d1fe1e2008-02-07 00:15:37 -08004832 iget_failed(inode);
4833 return ERR_PTR(ret);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004834}
4835
Aneesh Kumar K.V0fc1b452008-01-28 23:58:26 -05004836static int ext4_inode_blocks_set(handle_t *handle,
4837 struct ext4_inode *raw_inode,
4838 struct ext4_inode_info *ei)
4839{
4840 struct inode *inode = &(ei->vfs_inode);
Qian Cai28936b62020-02-21 23:32:58 -05004841 u64 i_blocks = READ_ONCE(inode->i_blocks);
Aneesh Kumar K.V0fc1b452008-01-28 23:58:26 -05004842 struct super_block *sb = inode->i_sb;
Aneesh Kumar K.V0fc1b452008-01-28 23:58:26 -05004843
4844 if (i_blocks <= ~0U) {
4845 /*
Anatol Pomozov4907cb72012-09-01 10:31:09 -07004846 * i_blocks can be represented in a 32 bit variable
Aneesh Kumar K.V0fc1b452008-01-28 23:58:26 -05004847 * as multiple of 512 bytes
4848 */
Aneesh Kumar K.V8180a562008-01-28 23:58:27 -05004849 raw_inode->i_blocks_lo = cpu_to_le32(i_blocks);
Aneesh Kumar K.V0fc1b452008-01-28 23:58:26 -05004850 raw_inode->i_blocks_high = 0;
Dmitry Monakhov84a8dce2010-06-05 11:51:27 -04004851 ext4_clear_inode_flag(inode, EXT4_INODE_HUGE_FILE);
Theodore Ts'of287a1a2008-10-16 22:50:48 -04004852 return 0;
4853 }
Darrick J. Wonge2b911c2015-10-17 16:18:43 -04004854 if (!ext4_has_feature_huge_file(sb))
Theodore Ts'of287a1a2008-10-16 22:50:48 -04004855 return -EFBIG;
4856
4857 if (i_blocks <= 0xffffffffffffULL) {
Aneesh Kumar K.V0fc1b452008-01-28 23:58:26 -05004858 /*
4859 * i_blocks can be represented in a 48 bit variable
4860 * as multiple of 512 bytes
4861 */
Aneesh Kumar K.V8180a562008-01-28 23:58:27 -05004862 raw_inode->i_blocks_lo = cpu_to_le32(i_blocks);
Aneesh Kumar K.V0fc1b452008-01-28 23:58:26 -05004863 raw_inode->i_blocks_high = cpu_to_le16(i_blocks >> 32);
Dmitry Monakhov84a8dce2010-06-05 11:51:27 -04004864 ext4_clear_inode_flag(inode, EXT4_INODE_HUGE_FILE);
Aneesh Kumar K.V0fc1b452008-01-28 23:58:26 -05004865 } else {
Dmitry Monakhov84a8dce2010-06-05 11:51:27 -04004866 ext4_set_inode_flag(inode, EXT4_INODE_HUGE_FILE);
Aneesh Kumar K.V8180a562008-01-28 23:58:27 -05004867 /* i_block is stored in file system block size */
4868 i_blocks = i_blocks >> (inode->i_blkbits - 9);
4869 raw_inode->i_blocks_lo = cpu_to_le32(i_blocks);
4870 raw_inode->i_blocks_high = cpu_to_le16(i_blocks >> 32);
Aneesh Kumar K.V0fc1b452008-01-28 23:58:26 -05004871 }
Theodore Ts'of287a1a2008-10-16 22:50:48 -04004872 return 0;
Aneesh Kumar K.V0fc1b452008-01-28 23:58:26 -05004873}
4874
Theodore Ts'oa26f4992015-02-02 00:37:02 -05004875struct other_inode {
4876 unsigned long orig_ino;
4877 struct ext4_inode *raw_inode;
4878};
4879
4880static int other_inode_match(struct inode * inode, unsigned long ino,
4881 void *data)
4882{
4883 struct other_inode *oi = (struct other_inode *) data;
4884
4885 if ((inode->i_ino != ino) ||
4886 (inode->i_state & (I_FREEING | I_WILL_FREE | I_NEW |
Christoph Hellwig0e11f642018-02-21 07:54:49 -08004887 I_DIRTY_INODE)) ||
Theodore Ts'oa26f4992015-02-02 00:37:02 -05004888 ((inode->i_state & I_DIRTY_TIME) == 0))
4889 return 0;
4890 spin_lock(&inode->i_lock);
4891 if (((inode->i_state & (I_FREEING | I_WILL_FREE | I_NEW |
Christoph Hellwig0e11f642018-02-21 07:54:49 -08004892 I_DIRTY_INODE)) == 0) &&
Theodore Ts'oa26f4992015-02-02 00:37:02 -05004893 (inode->i_state & I_DIRTY_TIME)) {
4894 struct ext4_inode_info *ei = EXT4_I(inode);
4895
4896 inode->i_state &= ~(I_DIRTY_TIME | I_DIRTY_TIME_EXPIRED);
4897 spin_unlock(&inode->i_lock);
4898
4899 spin_lock(&ei->i_raw_lock);
4900 EXT4_INODE_SET_XTIME(i_ctime, inode, oi->raw_inode);
4901 EXT4_INODE_SET_XTIME(i_mtime, inode, oi->raw_inode);
4902 EXT4_INODE_SET_XTIME(i_atime, inode, oi->raw_inode);
4903 ext4_inode_csum_set(inode, oi->raw_inode, ei);
4904 spin_unlock(&ei->i_raw_lock);
4905 trace_ext4_other_inode_update_time(inode, oi->orig_ino);
4906 return -1;
4907 }
4908 spin_unlock(&inode->i_lock);
4909 return -1;
4910}
4911
4912/*
4913 * Opportunistically update the other time fields for other inodes in
4914 * the same inode table block.
4915 */
4916static void ext4_update_other_inodes_time(struct super_block *sb,
4917 unsigned long orig_ino, char *buf)
4918{
4919 struct other_inode oi;
4920 unsigned long ino;
4921 int i, inodes_per_block = EXT4_SB(sb)->s_inodes_per_block;
4922 int inode_size = EXT4_INODE_SIZE(sb);
4923
4924 oi.orig_ino = orig_ino;
Theodore Ts'o0f0ff9a2015-07-01 23:37:46 -04004925 /*
4926 * Calculate the first inode in the inode table block. Inode
4927 * numbers are one-based. That is, the first inode in a block
4928 * (assuming 4k blocks and 256 byte inodes) is (n*16 + 1).
4929 */
4930 ino = ((orig_ino - 1) & ~(inodes_per_block - 1)) + 1;
Theodore Ts'oa26f4992015-02-02 00:37:02 -05004931 for (i = 0; i < inodes_per_block; i++, ino++, buf += inode_size) {
4932 if (ino == orig_ino)
4933 continue;
4934 oi.raw_inode = (struct ext4_inode *) buf;
4935 (void) find_inode_nowait(sb, ino, other_inode_match, &oi);
4936 }
4937}
4938
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004939/*
4940 * Post the struct inode info into an on-disk inode location in the
4941 * buffer-cache. This gobbles the caller's reference to the
4942 * buffer_head in the inode location struct.
4943 *
4944 * The caller must have write access to iloc->bh.
4945 */
Mingming Cao617ba132006-10-11 01:20:53 -07004946static int ext4_do_update_inode(handle_t *handle,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004947 struct inode *inode,
Frank Mayhar830156c2009-09-29 10:07:47 -04004948 struct ext4_iloc *iloc)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004949{
Mingming Cao617ba132006-10-11 01:20:53 -07004950 struct ext4_inode *raw_inode = ext4_raw_inode(iloc);
4951 struct ext4_inode_info *ei = EXT4_I(inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004952 struct buffer_head *bh = iloc->bh;
Theodore Ts'o202ee5d2014-04-21 14:37:55 -04004953 struct super_block *sb = inode->i_sb;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004954 int err = 0, rc, block;
Theodore Ts'o202ee5d2014-04-21 14:37:55 -04004955 int need_datasync = 0, set_large_file = 0;
Eric W. Biederman08cefc72012-02-07 15:41:49 -08004956 uid_t i_uid;
4957 gid_t i_gid;
Li Xi040cb372016-01-08 16:01:21 -05004958 projid_t i_projid;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004959
Theodore Ts'o202ee5d2014-04-21 14:37:55 -04004960 spin_lock(&ei->i_raw_lock);
4961
4962 /* For fields not tracked in the in-memory inode,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004963 * initialise them to zero for new inodes. */
Theodore Ts'o19f5fb72010-01-24 14:34:07 -05004964 if (ext4_test_inode_state(inode, EXT4_STATE_NEW))
Mingming Cao617ba132006-10-11 01:20:53 -07004965 memset(raw_inode, 0, EXT4_SB(inode->i_sb)->s_inode_size);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004966
4967 raw_inode->i_mode = cpu_to_le16(inode->i_mode);
Eric W. Biederman08cefc72012-02-07 15:41:49 -08004968 i_uid = i_uid_read(inode);
4969 i_gid = i_gid_read(inode);
Li Xi040cb372016-01-08 16:01:21 -05004970 i_projid = from_kprojid(&init_user_ns, ei->i_projid);
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04004971 if (!(test_opt(inode->i_sb, NO_UID32))) {
Eric W. Biederman08cefc72012-02-07 15:41:49 -08004972 raw_inode->i_uid_low = cpu_to_le16(low_16_bits(i_uid));
4973 raw_inode->i_gid_low = cpu_to_le16(low_16_bits(i_gid));
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004974/*
4975 * Fix up interoperability with old kernels. Otherwise, old inodes get
4976 * re-used with the upper 16 bits of the uid/gid intact
4977 */
Daeho Jeong93e3b4e2016-09-05 22:56:10 -04004978 if (ei->i_dtime && list_empty(&ei->i_orphan)) {
4979 raw_inode->i_uid_high = 0;
4980 raw_inode->i_gid_high = 0;
4981 } else {
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004982 raw_inode->i_uid_high =
Eric W. Biederman08cefc72012-02-07 15:41:49 -08004983 cpu_to_le16(high_16_bits(i_uid));
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004984 raw_inode->i_gid_high =
Eric W. Biederman08cefc72012-02-07 15:41:49 -08004985 cpu_to_le16(high_16_bits(i_gid));
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004986 }
4987 } else {
Eric W. Biederman08cefc72012-02-07 15:41:49 -08004988 raw_inode->i_uid_low = cpu_to_le16(fs_high2lowuid(i_uid));
4989 raw_inode->i_gid_low = cpu_to_le16(fs_high2lowgid(i_gid));
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004990 raw_inode->i_uid_high = 0;
4991 raw_inode->i_gid_high = 0;
4992 }
4993 raw_inode->i_links_count = cpu_to_le16(inode->i_nlink);
Kalpak Shahef7f3832007-07-18 09:15:20 -04004994
4995 EXT4_INODE_SET_XTIME(i_ctime, inode, raw_inode);
4996 EXT4_INODE_SET_XTIME(i_mtime, inode, raw_inode);
4997 EXT4_INODE_SET_XTIME(i_atime, inode, raw_inode);
4998 EXT4_EINODE_SET_XTIME(i_crtime, ei, raw_inode);
4999
Li Xibce92d52014-10-01 22:11:06 -04005000 err = ext4_inode_blocks_set(handle, raw_inode, ei);
5001 if (err) {
Theodore Ts'o202ee5d2014-04-21 14:37:55 -04005002 spin_unlock(&ei->i_raw_lock);
Aneesh Kumar K.V0fc1b452008-01-28 23:58:26 -05005003 goto out_brelse;
Theodore Ts'o202ee5d2014-04-21 14:37:55 -04005004 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005005 raw_inode->i_dtime = cpu_to_le32(ei->i_dtime);
Theodore Ts'o353eb832011-01-10 12:18:25 -05005006 raw_inode->i_flags = cpu_to_le32(ei->i_flags & 0xFFFFFFFF);
Theodore Ts'oed3654e2014-03-24 14:09:06 -04005007 if (likely(!test_opt2(inode->i_sb, HURD_COMPAT)))
Badari Pulavartya1ddeb72006-10-11 01:21:09 -07005008 raw_inode->i_file_acl_high =
5009 cpu_to_le16(ei->i_file_acl >> 32);
Aneesh Kumar K.V7973c0c2008-01-28 23:58:27 -05005010 raw_inode->i_file_acl_lo = cpu_to_le32(ei->i_file_acl);
Qiujun Huangdce8e232020-02-24 23:02:46 +08005011 if (READ_ONCE(ei->i_disksize) != ext4_isize(inode->i_sb, raw_inode)) {
Jan Karab71fc072012-09-26 21:52:20 -04005012 ext4_isize_set(raw_inode, ei->i_disksize);
5013 need_datasync = 1;
5014 }
Aneesh Kumar K.Va48380f2008-01-28 23:58:27 -05005015 if (ei->i_disksize > 0x7fffffffULL) {
Darrick J. Wonge2b911c2015-10-17 16:18:43 -04005016 if (!ext4_has_feature_large_file(sb) ||
Aneesh Kumar K.Va48380f2008-01-28 23:58:27 -05005017 EXT4_SB(sb)->s_es->s_rev_level ==
Theodore Ts'o202ee5d2014-04-21 14:37:55 -04005018 cpu_to_le32(EXT4_GOOD_OLD_REV))
5019 set_large_file = 1;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005020 }
5021 raw_inode->i_generation = cpu_to_le32(inode->i_generation);
5022 if (S_ISCHR(inode->i_mode) || S_ISBLK(inode->i_mode)) {
5023 if (old_valid_dev(inode->i_rdev)) {
5024 raw_inode->i_block[0] =
5025 cpu_to_le32(old_encode_dev(inode->i_rdev));
5026 raw_inode->i_block[1] = 0;
5027 } else {
5028 raw_inode->i_block[0] = 0;
5029 raw_inode->i_block[1] =
5030 cpu_to_le32(new_encode_dev(inode->i_rdev));
5031 raw_inode->i_block[2] = 0;
5032 }
Tao Maf19d5872012-12-10 14:05:51 -05005033 } else if (!ext4_has_inline_data(inode)) {
Theodore Ts'ode9a55b2009-06-14 17:45:34 -04005034 for (block = 0; block < EXT4_N_BLOCKS; block++)
5035 raw_inode->i_block[block] = ei->i_data[block];
Tao Maf19d5872012-12-10 14:05:51 -05005036 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005037
Theodore Ts'oed3654e2014-03-24 14:09:06 -04005038 if (likely(!test_opt2(inode->i_sb, HURD_COMPAT))) {
Eryu Guane254d1a2018-05-10 11:55:31 -04005039 u64 ivers = ext4_inode_peek_iversion(inode);
Jeff Laytonee73f9a2018-01-09 08:21:39 -05005040
5041 raw_inode->i_disk_version = cpu_to_le32(ivers);
Theodore Ts'oc4f65702014-03-20 00:32:57 -04005042 if (ei->i_extra_isize) {
5043 if (EXT4_FITS_IN_INODE(raw_inode, ei, i_version_hi))
5044 raw_inode->i_version_hi =
Jeff Laytonee73f9a2018-01-09 08:21:39 -05005045 cpu_to_le32(ivers >> 32);
Theodore Ts'oc4f65702014-03-20 00:32:57 -04005046 raw_inode->i_extra_isize =
5047 cpu_to_le16(ei->i_extra_isize);
5048 }
Jean Noel Cordenner25ec56b2008-01-28 23:58:27 -05005049 }
Li Xi040cb372016-01-08 16:01:21 -05005050
Kaho Ng0b7b7772016-09-05 23:11:58 -04005051 BUG_ON(!ext4_has_feature_project(inode->i_sb) &&
Li Xi040cb372016-01-08 16:01:21 -05005052 i_projid != EXT4_DEF_PROJID);
5053
5054 if (EXT4_INODE_SIZE(inode->i_sb) > EXT4_GOOD_OLD_INODE_SIZE &&
5055 EXT4_FITS_IN_INODE(raw_inode, ei, i_projid))
5056 raw_inode->i_projid = cpu_to_le32(i_projid);
5057
Darrick J. Wong814525f2012-04-29 18:31:10 -04005058 ext4_inode_csum_set(inode, raw_inode, ei);
Theodore Ts'o202ee5d2014-04-21 14:37:55 -04005059 spin_unlock(&ei->i_raw_lock);
Linus Torvalds1751e8a2017-11-27 13:05:09 -08005060 if (inode->i_sb->s_flags & SB_LAZYTIME)
Theodore Ts'oa26f4992015-02-02 00:37:02 -05005061 ext4_update_other_inodes_time(inode->i_sb, inode->i_ino,
5062 bh->b_data);
Theodore Ts'o202ee5d2014-04-21 14:37:55 -04005063
Frank Mayhar830156c2009-09-29 10:07:47 -04005064 BUFFER_TRACE(bh, "call ext4_handle_dirty_metadata");
Curt Wohlgemuth73b50c12010-02-16 15:06:29 -05005065 rc = ext4_handle_dirty_metadata(handle, NULL, bh);
Frank Mayhar830156c2009-09-29 10:07:47 -04005066 if (!err)
5067 err = rc;
Theodore Ts'o19f5fb72010-01-24 14:34:07 -05005068 ext4_clear_inode_state(inode, EXT4_STATE_NEW);
Theodore Ts'o202ee5d2014-04-21 14:37:55 -04005069 if (set_large_file) {
liang xie5d601252014-05-12 22:06:43 -04005070 BUFFER_TRACE(EXT4_SB(sb)->s_sbh, "get write access");
Theodore Ts'o202ee5d2014-04-21 14:37:55 -04005071 err = ext4_journal_get_write_access(handle, EXT4_SB(sb)->s_sbh);
5072 if (err)
5073 goto out_brelse;
Darrick J. Wonge2b911c2015-10-17 16:18:43 -04005074 ext4_set_feature_large_file(sb);
Theodore Ts'o202ee5d2014-04-21 14:37:55 -04005075 ext4_handle_sync(handle);
5076 err = ext4_handle_dirty_super(handle, sb);
5077 }
Jan Karab71fc072012-09-26 21:52:20 -04005078 ext4_update_inode_fsync_trans(handle, inode, need_datasync);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005079out_brelse:
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04005080 brelse(bh);
Mingming Cao617ba132006-10-11 01:20:53 -07005081 ext4_std_error(inode->i_sb, err);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005082 return err;
5083}
5084
5085/*
Mingming Cao617ba132006-10-11 01:20:53 -07005086 * ext4_write_inode()
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005087 *
5088 * We are called from a few places:
5089 *
Theodore Ts'o87f7e412014-04-08 11:38:28 -04005090 * - Within generic_file_aio_write() -> generic_write_sync() for O_SYNC files.
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005091 * Here, there will be no transaction running. We wait for any running
Anatol Pomozov4907cb72012-09-01 10:31:09 -07005092 * transaction to commit.
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005093 *
Theodore Ts'o87f7e412014-04-08 11:38:28 -04005094 * - Within flush work (sys_sync(), kupdate and such).
5095 * We wait on commit, if told to.
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005096 *
Theodore Ts'o87f7e412014-04-08 11:38:28 -04005097 * - Within iput_final() -> write_inode_now()
5098 * We wait on commit, if told to.
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005099 *
5100 * In all cases it is actually safe for us to return without doing anything,
5101 * because the inode has been copied into a raw inode buffer in
Theodore Ts'o87f7e412014-04-08 11:38:28 -04005102 * ext4_mark_inode_dirty(). This is a correctness thing for WB_SYNC_ALL
5103 * writeback.
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005104 *
5105 * Note that we are absolutely dependent upon all inode dirtiers doing the
5106 * right thing: they *must* call mark_inode_dirty() after dirtying info in
5107 * which we are interested.
5108 *
5109 * It would be a bug for them to not do this. The code:
5110 *
5111 * mark_inode_dirty(inode)
5112 * stuff();
5113 * inode->i_size = expr;
5114 *
Theodore Ts'o87f7e412014-04-08 11:38:28 -04005115 * is in error because write_inode() could occur while `stuff()' is running,
5116 * and the new i_size will be lost. Plus the inode will no longer be on the
5117 * superblock's dirty inode list.
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005118 */
Christoph Hellwiga9185b42010-03-05 09:21:37 +01005119int ext4_write_inode(struct inode *inode, struct writeback_control *wbc)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005120{
Frank Mayhar91ac6f42009-09-09 22:33:47 -04005121 int err;
5122
Theodore Ts'o18f2c4f2018-12-19 14:36:58 -05005123 if (WARN_ON_ONCE(current->flags & PF_MEMALLOC) ||
5124 sb_rdonly(inode->i_sb))
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005125 return 0;
5126
Theodore Ts'o18f2c4f2018-12-19 14:36:58 -05005127 if (unlikely(ext4_forced_shutdown(EXT4_SB(inode->i_sb))))
5128 return -EIO;
5129
Frank Mayhar91ac6f42009-09-09 22:33:47 -04005130 if (EXT4_SB(inode->i_sb)->s_journal) {
5131 if (ext4_journal_current_handle()) {
5132 jbd_debug(1, "called recursively, non-PF_MEMALLOC!\n");
5133 dump_stack();
5134 return -EIO;
5135 }
5136
Jan Kara10542c22014-03-04 10:50:50 -05005137 /*
5138 * No need to force transaction in WB_SYNC_NONE mode. Also
5139 * ext4_sync_fs() will force the commit after everything is
5140 * written.
5141 */
5142 if (wbc->sync_mode != WB_SYNC_ALL || wbc->for_sync)
Frank Mayhar91ac6f42009-09-09 22:33:47 -04005143 return 0;
5144
Theodore Ts'o18f2c4f2018-12-19 14:36:58 -05005145 err = jbd2_complete_transaction(EXT4_SB(inode->i_sb)->s_journal,
5146 EXT4_I(inode)->i_sync_tid);
Frank Mayhar91ac6f42009-09-09 22:33:47 -04005147 } else {
5148 struct ext4_iloc iloc;
5149
Curt Wohlgemuth8b472d72010-04-03 16:45:06 -04005150 err = __ext4_get_inode_loc(inode, &iloc, 0);
Frank Mayhar91ac6f42009-09-09 22:33:47 -04005151 if (err)
5152 return err;
Jan Kara10542c22014-03-04 10:50:50 -05005153 /*
5154 * sync(2) will flush the whole buffer cache. No need to do
5155 * it here separately for each inode.
5156 */
5157 if (wbc->sync_mode == WB_SYNC_ALL && !wbc->for_sync)
Frank Mayhar830156c2009-09-29 10:07:47 -04005158 sync_dirty_buffer(iloc.bh);
5159 if (buffer_req(iloc.bh) && !buffer_uptodate(iloc.bh)) {
Theodore Ts'o54d3adb2020-03-28 19:33:43 -04005160 ext4_error_inode_block(inode, iloc.bh->b_blocknr, EIO,
5161 "IO error syncing inode");
Frank Mayhar830156c2009-09-29 10:07:47 -04005162 err = -EIO;
5163 }
Curt Wohlgemuthfd2dd9f2010-04-03 17:44:16 -04005164 brelse(iloc.bh);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005165 }
Frank Mayhar91ac6f42009-09-09 22:33:47 -04005166 return err;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005167}
5168
5169/*
Jan Kara53e87262012-12-25 13:29:52 -05005170 * In data=journal mode ext4_journalled_invalidatepage() may fail to invalidate
5171 * buffers that are attached to a page stradding i_size and are undergoing
5172 * commit. In that case we have to wait for commit to finish and try again.
5173 */
5174static void ext4_wait_for_tail_page_commit(struct inode *inode)
5175{
5176 struct page *page;
5177 unsigned offset;
5178 journal_t *journal = EXT4_SB(inode->i_sb)->s_journal;
5179 tid_t commit_tid = 0;
5180 int ret;
5181
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005182 offset = inode->i_size & (PAGE_SIZE - 1);
Jan Kara53e87262012-12-25 13:29:52 -05005183 /*
yangerkun565333a2019-09-19 14:35:08 +08005184 * If the page is fully truncated, we don't need to wait for any commit
5185 * (and we even should not as __ext4_journalled_invalidatepage() may
5186 * strip all buffers from the page but keep the page dirty which can then
5187 * confuse e.g. concurrent ext4_writepage() seeing dirty page without
5188 * buffers). Also we don't need to wait for any commit if all buffers in
5189 * the page remain valid. This is most beneficial for the common case of
5190 * blocksize == PAGESIZE.
Jan Kara53e87262012-12-25 13:29:52 -05005191 */
yangerkun565333a2019-09-19 14:35:08 +08005192 if (!offset || offset > (PAGE_SIZE - i_blocksize(inode)))
Jan Kara53e87262012-12-25 13:29:52 -05005193 return;
5194 while (1) {
5195 page = find_lock_page(inode->i_mapping,
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005196 inode->i_size >> PAGE_SHIFT);
Jan Kara53e87262012-12-25 13:29:52 -05005197 if (!page)
5198 return;
Lukas Czernerca99fdd2013-05-21 23:25:01 -04005199 ret = __ext4_journalled_invalidatepage(page, offset,
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005200 PAGE_SIZE - offset);
Jan Kara53e87262012-12-25 13:29:52 -05005201 unlock_page(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005202 put_page(page);
Jan Kara53e87262012-12-25 13:29:52 -05005203 if (ret != -EBUSY)
5204 return;
5205 commit_tid = 0;
5206 read_lock(&journal->j_state_lock);
5207 if (journal->j_committing_transaction)
5208 commit_tid = journal->j_committing_transaction->t_tid;
5209 read_unlock(&journal->j_state_lock);
5210 if (commit_tid)
5211 jbd2_log_wait_commit(journal, commit_tid);
5212 }
5213}
5214
5215/*
Mingming Cao617ba132006-10-11 01:20:53 -07005216 * ext4_setattr()
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005217 *
5218 * Called from notify_change.
5219 *
5220 * We want to trap VFS attempts to truncate the file as soon as
5221 * possible. In particular, we want to make sure that when the VFS
5222 * shrinks i_size, we put the inode on the orphan list and modify
5223 * i_disksize immediately, so that during the subsequent flushing of
5224 * dirty pages and freeing of disk blocks, we can guarantee that any
5225 * commit will leave the blocks being flushed in an unused state on
5226 * disk. (On recovery, the inode will get truncated and the blocks will
5227 * be freed, so we have a strong guarantee that no future commit will
5228 * leave these blocks visible to the user.)
5229 *
Jan Kara678aaf42008-07-11 19:27:31 -04005230 * Another thing we have to assure is that if we are in ordered mode
5231 * and inode is still attached to the committing transaction, we must
5232 * we start writeout of all the dirty pages which are being truncated.
5233 * This way we are sure that all the data written in the previous
5234 * transaction are already on disk (truncate waits for pages under
5235 * writeback).
5236 *
5237 * Called with inode->i_mutex down.
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005238 */
Mingming Cao617ba132006-10-11 01:20:53 -07005239int ext4_setattr(struct dentry *dentry, struct iattr *attr)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005240{
David Howells2b0143b2015-03-17 22:25:59 +00005241 struct inode *inode = d_inode(dentry);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005242 int error, rc = 0;
Dmitry Monakhov3d287de2010-10-27 22:08:46 -04005243 int orphan = 0;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005244 const unsigned int ia_valid = attr->ia_valid;
5245
Theodore Ts'o0db1ff22017-02-05 01:28:48 -05005246 if (unlikely(ext4_forced_shutdown(EXT4_SB(inode->i_sb))))
5247 return -EIO;
5248
Theodore Ts'o02b016c2019-06-09 22:04:33 -04005249 if (unlikely(IS_IMMUTABLE(inode)))
5250 return -EPERM;
5251
5252 if (unlikely(IS_APPEND(inode) &&
5253 (ia_valid & (ATTR_MODE | ATTR_UID |
5254 ATTR_GID | ATTR_TIMES_SET))))
5255 return -EPERM;
5256
Jan Kara31051c82016-05-26 16:55:18 +02005257 error = setattr_prepare(dentry, attr);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005258 if (error)
5259 return error;
5260
Eric Biggers3ce2b8d2017-10-18 20:21:58 -04005261 error = fscrypt_prepare_setattr(dentry, attr);
5262 if (error)
5263 return error;
5264
Eric Biggersc93d8f82019-07-22 09:26:24 -07005265 error = fsverity_prepare_setattr(dentry, attr);
5266 if (error)
5267 return error;
5268
Jan Karaa7cdade2015-06-29 16:22:54 +02005269 if (is_quota_modification(inode, attr)) {
5270 error = dquot_initialize(inode);
5271 if (error)
5272 return error;
5273 }
Eric W. Biederman08cefc72012-02-07 15:41:49 -08005274 if ((ia_valid & ATTR_UID && !uid_eq(attr->ia_uid, inode->i_uid)) ||
5275 (ia_valid & ATTR_GID && !gid_eq(attr->ia_gid, inode->i_gid))) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005276 handle_t *handle;
5277
5278 /* (user+group)*(old+new) structure, inode write (sb,
5279 * inode block, ? - but truncate inode update has it) */
Theodore Ts'o9924a922013-02-08 21:59:22 -05005280 handle = ext4_journal_start(inode, EXT4_HT_QUOTA,
5281 (EXT4_MAXQUOTAS_INIT_BLOCKS(inode->i_sb) +
5282 EXT4_MAXQUOTAS_DEL_BLOCKS(inode->i_sb)) + 3);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005283 if (IS_ERR(handle)) {
5284 error = PTR_ERR(handle);
5285 goto err_out;
5286 }
Tahsin Erdogan7a9ca532017-06-22 11:46:48 -04005287
5288 /* dquot_transfer() calls back ext4_get_inode_usage() which
5289 * counts xattr inode references.
5290 */
5291 down_read(&EXT4_I(inode)->xattr_sem);
Christoph Hellwigb43fa822010-03-03 09:05:03 -05005292 error = dquot_transfer(inode, attr);
Tahsin Erdogan7a9ca532017-06-22 11:46:48 -04005293 up_read(&EXT4_I(inode)->xattr_sem);
5294
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005295 if (error) {
Mingming Cao617ba132006-10-11 01:20:53 -07005296 ext4_journal_stop(handle);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005297 return error;
5298 }
5299 /* Update corresponding info in inode so that everything is in
5300 * one transaction */
5301 if (attr->ia_valid & ATTR_UID)
5302 inode->i_uid = attr->ia_uid;
5303 if (attr->ia_valid & ATTR_GID)
5304 inode->i_gid = attr->ia_gid;
Mingming Cao617ba132006-10-11 01:20:53 -07005305 error = ext4_mark_inode_dirty(handle, inode);
5306 ext4_journal_stop(handle);
Harshad Shirwadkar4209ae12020-04-26 18:34:37 -07005307 if (unlikely(error))
5308 return error;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005309 }
5310
Josef Bacik3da40c72015-06-22 00:31:26 -04005311 if (attr->ia_valid & ATTR_SIZE) {
Jan Kara52083862013-08-17 10:07:17 -04005312 handle_t *handle;
Josef Bacik3da40c72015-06-22 00:31:26 -04005313 loff_t oldsize = inode->i_size;
Jan Karab9c1c262019-05-30 11:56:23 -04005314 int shrink = (attr->ia_size < inode->i_size);
Christoph Hellwig562c72aa52011-06-24 14:29:45 -04005315
Dmitry Monakhov12e9b892010-05-16 22:00:00 -04005316 if (!(ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS))) {
Eric Sandeene2b46572008-01-28 23:58:27 -05005317 struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb);
5318
Theodore Ts'o0c095c72010-07-27 11:56:06 -04005319 if (attr->ia_size > sbi->s_bitmap_maxbytes)
5320 return -EFBIG;
Eric Sandeene2b46572008-01-28 23:58:27 -05005321 }
Josef Bacik3da40c72015-06-22 00:31:26 -04005322 if (!S_ISREG(inode->i_mode))
5323 return -EINVAL;
Christoph Hellwigdff6efc2013-11-19 07:17:07 -08005324
5325 if (IS_I_VERSION(inode) && attr->ia_size != inode->i_size)
5326 inode_inc_iversion(inode);
5327
Jan Karab9c1c262019-05-30 11:56:23 -04005328 if (shrink) {
5329 if (ext4_should_order_data(inode)) {
5330 error = ext4_begin_ordered_truncate(inode,
Jan Kara678aaf42008-07-11 19:27:31 -04005331 attr->ia_size);
Jan Karab9c1c262019-05-30 11:56:23 -04005332 if (error)
5333 goto err_out;
5334 }
5335 /*
5336 * Blocks are going to be removed from the inode. Wait
5337 * for dio in flight.
5338 */
5339 inode_dio_wait(inode);
Josef Bacik3da40c72015-06-22 00:31:26 -04005340 }
Jan Karab9c1c262019-05-30 11:56:23 -04005341
5342 down_write(&EXT4_I(inode)->i_mmap_sem);
5343
5344 rc = ext4_break_layouts(inode);
5345 if (rc) {
5346 up_write(&EXT4_I(inode)->i_mmap_sem);
5347 return rc;
5348 }
5349
Josef Bacik3da40c72015-06-22 00:31:26 -04005350 if (attr->ia_size != inode->i_size) {
Jan Kara52083862013-08-17 10:07:17 -04005351 handle = ext4_journal_start(inode, EXT4_HT_INODE, 3);
5352 if (IS_ERR(handle)) {
5353 error = PTR_ERR(handle);
Jan Karab9c1c262019-05-30 11:56:23 -04005354 goto out_mmap_sem;
Jan Kara52083862013-08-17 10:07:17 -04005355 }
Josef Bacik3da40c72015-06-22 00:31:26 -04005356 if (ext4_handle_valid(handle) && shrink) {
Jan Kara52083862013-08-17 10:07:17 -04005357 error = ext4_orphan_add(handle, inode);
5358 orphan = 1;
5359 }
Eryu Guan911af572015-07-28 15:08:41 -04005360 /*
5361 * Update c/mtime on truncate up, ext4_truncate() will
5362 * update c/mtime in shrink case below
5363 */
5364 if (!shrink) {
Deepa Dinamanieeca7ea2016-11-14 21:40:10 -05005365 inode->i_mtime = current_time(inode);
Eryu Guan911af572015-07-28 15:08:41 -04005366 inode->i_ctime = inode->i_mtime;
5367 }
Jan Kara90e775b2013-08-17 10:09:31 -04005368 down_write(&EXT4_I(inode)->i_data_sem);
Jan Kara52083862013-08-17 10:07:17 -04005369 EXT4_I(inode)->i_disksize = attr->ia_size;
5370 rc = ext4_mark_inode_dirty(handle, inode);
5371 if (!error)
5372 error = rc;
Jan Kara90e775b2013-08-17 10:09:31 -04005373 /*
5374 * We have to update i_size under i_data_sem together
5375 * with i_disksize to avoid races with writeback code
5376 * running ext4_wb_update_i_disksize().
5377 */
5378 if (!error)
5379 i_size_write(inode, attr->ia_size);
5380 up_write(&EXT4_I(inode)->i_data_sem);
Jan Kara52083862013-08-17 10:07:17 -04005381 ext4_journal_stop(handle);
Jan Karab9c1c262019-05-30 11:56:23 -04005382 if (error)
5383 goto out_mmap_sem;
5384 if (!shrink) {
5385 pagecache_isize_extended(inode, oldsize,
5386 inode->i_size);
5387 } else if (ext4_should_journal_data(inode)) {
5388 ext4_wait_for_tail_page_commit(inode);
Jan Kara678aaf42008-07-11 19:27:31 -04005389 }
Jan Karad6320cb2014-10-01 21:49:46 -04005390 }
Ross Zwisler430657b2018-07-29 17:00:22 -04005391
Jan Kara52083862013-08-17 10:07:17 -04005392 /*
5393 * Truncate pagecache after we've waited for commit
5394 * in data=journal mode to make pages freeable.
5395 */
Ross Zwisler923ae0f2015-02-16 15:59:38 -08005396 truncate_pagecache(inode, inode->i_size);
Jan Karab9c1c262019-05-30 11:56:23 -04005397 /*
5398 * Call ext4_truncate() even if i_size didn't change to
5399 * truncate possible preallocated blocks.
5400 */
5401 if (attr->ia_size <= oldsize) {
Theodore Ts'o2c98eb52016-11-13 22:02:26 -05005402 rc = ext4_truncate(inode);
5403 if (rc)
5404 error = rc;
5405 }
Jan Karab9c1c262019-05-30 11:56:23 -04005406out_mmap_sem:
Jan Karaea3d7202015-12-07 14:28:03 -05005407 up_write(&EXT4_I(inode)->i_mmap_sem);
Theodore Ts'o072bd7e2011-05-23 15:13:02 -04005408 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005409
Theodore Ts'o2c98eb52016-11-13 22:02:26 -05005410 if (!error) {
Christoph Hellwig10257742010-06-04 11:30:02 +02005411 setattr_copy(inode, attr);
5412 mark_inode_dirty(inode);
5413 }
5414
5415 /*
5416 * If the call to ext4_truncate failed to get a transaction handle at
5417 * all, we need to clean up the in-core orphan list manually.
5418 */
Dmitry Monakhov3d287de2010-10-27 22:08:46 -04005419 if (orphan && inode->i_nlink)
Mingming Cao617ba132006-10-11 01:20:53 -07005420 ext4_orphan_del(NULL, inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005421
Theodore Ts'o2c98eb52016-11-13 22:02:26 -05005422 if (!error && (ia_valid & ATTR_MODE))
Christoph Hellwig64e178a2013-12-20 05:16:44 -08005423 rc = posix_acl_chmod(inode, inode->i_mode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005424
5425err_out:
Mingming Cao617ba132006-10-11 01:20:53 -07005426 ext4_std_error(inode->i_sb, error);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005427 if (!error)
5428 error = rc;
5429 return error;
5430}
5431
David Howellsa528d352017-01-31 16:46:22 +00005432int ext4_getattr(const struct path *path, struct kstat *stat,
5433 u32 request_mask, unsigned int query_flags)
Mingming Cao3e3398a2008-07-11 19:27:31 -04005434{
David Howells99652ea2017-03-31 18:31:56 +01005435 struct inode *inode = d_inode(path->dentry);
5436 struct ext4_inode *raw_inode;
5437 struct ext4_inode_info *ei = EXT4_I(inode);
5438 unsigned int flags;
Mingming Cao3e3398a2008-07-11 19:27:31 -04005439
Theodore Ts'od4c5e962019-11-28 22:26:51 -05005440 if ((request_mask & STATX_BTIME) &&
5441 EXT4_FITS_IN_INODE(raw_inode, ei, i_crtime)) {
David Howells99652ea2017-03-31 18:31:56 +01005442 stat->result_mask |= STATX_BTIME;
5443 stat->btime.tv_sec = ei->i_crtime.tv_sec;
5444 stat->btime.tv_nsec = ei->i_crtime.tv_nsec;
5445 }
5446
5447 flags = ei->i_flags & EXT4_FL_USER_VISIBLE;
5448 if (flags & EXT4_APPEND_FL)
5449 stat->attributes |= STATX_ATTR_APPEND;
5450 if (flags & EXT4_COMPR_FL)
5451 stat->attributes |= STATX_ATTR_COMPRESSED;
5452 if (flags & EXT4_ENCRYPT_FL)
5453 stat->attributes |= STATX_ATTR_ENCRYPTED;
5454 if (flags & EXT4_IMMUTABLE_FL)
5455 stat->attributes |= STATX_ATTR_IMMUTABLE;
5456 if (flags & EXT4_NODUMP_FL)
5457 stat->attributes |= STATX_ATTR_NODUMP;
Eric Biggers1f607192019-10-29 13:41:39 -07005458 if (flags & EXT4_VERITY_FL)
5459 stat->attributes |= STATX_ATTR_VERITY;
David Howells99652ea2017-03-31 18:31:56 +01005460
David Howells3209f682017-03-31 18:32:17 +01005461 stat->attributes_mask |= (STATX_ATTR_APPEND |
5462 STATX_ATTR_COMPRESSED |
5463 STATX_ATTR_ENCRYPTED |
5464 STATX_ATTR_IMMUTABLE |
Eric Biggers1f607192019-10-29 13:41:39 -07005465 STATX_ATTR_NODUMP |
5466 STATX_ATTR_VERITY);
David Howells3209f682017-03-31 18:32:17 +01005467
Mingming Cao3e3398a2008-07-11 19:27:31 -04005468 generic_fillattr(inode, stat);
David Howells99652ea2017-03-31 18:31:56 +01005469 return 0;
5470}
5471
5472int ext4_file_getattr(const struct path *path, struct kstat *stat,
5473 u32 request_mask, unsigned int query_flags)
5474{
5475 struct inode *inode = d_inode(path->dentry);
5476 u64 delalloc_blocks;
5477
5478 ext4_getattr(path, stat, request_mask, query_flags);
Mingming Cao3e3398a2008-07-11 19:27:31 -04005479
5480 /*
Andreas Dilger9206c562013-11-11 22:38:12 -05005481 * If there is inline data in the inode, the inode will normally not
5482 * have data blocks allocated (it may have an external xattr block).
5483 * Report at least one sector for such files, so tools like tar, rsync,
Theodore Ts'od67d64f2017-03-25 17:33:31 -04005484 * others don't incorrectly think the file is completely sparse.
Andreas Dilger9206c562013-11-11 22:38:12 -05005485 */
5486 if (unlikely(ext4_has_inline_data(inode)))
5487 stat->blocks += (stat->size + 511) >> 9;
5488
5489 /*
Mingming Cao3e3398a2008-07-11 19:27:31 -04005490 * We can't update i_blocks if the block allocation is delayed
5491 * otherwise in the case of system crash before the real block
5492 * allocation is done, we will have i_blocks inconsistent with
5493 * on-disk file blocks.
5494 * We always keep i_blocks updated together with real
5495 * allocation. But to not confuse with user, stat
5496 * will return the blocks that include the delayed allocation
5497 * blocks for this file.
5498 */
Tao Ma96607552012-05-31 22:54:16 -04005499 delalloc_blocks = EXT4_C2B(EXT4_SB(inode->i_sb),
Andreas Dilger9206c562013-11-11 22:38:12 -05005500 EXT4_I(inode)->i_reserved_data_blocks);
5501 stat->blocks += delalloc_blocks << (inode->i_sb->s_blocksize_bits - 9);
Mingming Cao3e3398a2008-07-11 19:27:31 -04005502 return 0;
5503}
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005504
Jan Karafffb2732013-06-04 13:01:11 -04005505static int ext4_index_trans_blocks(struct inode *inode, int lblocks,
5506 int pextents)
Mingming Caoa02908f2008-08-19 22:16:07 -04005507{
Dmitry Monakhov12e9b892010-05-16 22:00:00 -04005508 if (!(ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS)))
Jan Karafffb2732013-06-04 13:01:11 -04005509 return ext4_ind_trans_blocks(inode, lblocks);
5510 return ext4_ext_index_trans_blocks(inode, pextents);
Mingming Caoa02908f2008-08-19 22:16:07 -04005511}
Theodore Ts'oac51d832008-11-06 16:49:36 -05005512
Mingming Caoa02908f2008-08-19 22:16:07 -04005513/*
5514 * Account for index blocks, block groups bitmaps and block group
5515 * descriptor blocks if modify datablocks and index blocks
5516 * worse case, the indexs blocks spread over different block groups
5517 *
5518 * If datablocks are discontiguous, they are possible to spread over
Anatol Pomozov4907cb72012-09-01 10:31:09 -07005519 * different block groups too. If they are contiguous, with flexbg,
Mingming Caoa02908f2008-08-19 22:16:07 -04005520 * they could still across block group boundary.
5521 *
5522 * Also account for superblock, inode, quota and xattr blocks
5523 */
Tahsin Erdogandec214d2017-06-22 11:44:55 -04005524static int ext4_meta_trans_blocks(struct inode *inode, int lblocks,
Jan Karafffb2732013-06-04 13:01:11 -04005525 int pextents)
Mingming Caoa02908f2008-08-19 22:16:07 -04005526{
Theodore Ts'o8df96752009-05-01 08:50:38 -04005527 ext4_group_t groups, ngroups = ext4_get_groups_count(inode->i_sb);
5528 int gdpblocks;
Mingming Caoa02908f2008-08-19 22:16:07 -04005529 int idxblocks;
5530 int ret = 0;
5531
5532 /*
Jan Karafffb2732013-06-04 13:01:11 -04005533 * How many index blocks need to touch to map @lblocks logical blocks
5534 * to @pextents physical extents?
Mingming Caoa02908f2008-08-19 22:16:07 -04005535 */
Jan Karafffb2732013-06-04 13:01:11 -04005536 idxblocks = ext4_index_trans_blocks(inode, lblocks, pextents);
Mingming Caoa02908f2008-08-19 22:16:07 -04005537
5538 ret = idxblocks;
5539
5540 /*
5541 * Now let's see how many group bitmaps and group descriptors need
5542 * to account
5543 */
Jan Karafffb2732013-06-04 13:01:11 -04005544 groups = idxblocks + pextents;
Mingming Caoa02908f2008-08-19 22:16:07 -04005545 gdpblocks = groups;
Theodore Ts'o8df96752009-05-01 08:50:38 -04005546 if (groups > ngroups)
5547 groups = ngroups;
Mingming Caoa02908f2008-08-19 22:16:07 -04005548 if (groups > EXT4_SB(inode->i_sb)->s_gdb_count)
5549 gdpblocks = EXT4_SB(inode->i_sb)->s_gdb_count;
5550
5551 /* bitmaps and block group descriptor blocks */
5552 ret += groups + gdpblocks;
5553
5554 /* Blocks for super block, inode, quota and xattr blocks */
5555 ret += EXT4_META_TRANS_BLOCKS(inode->i_sb);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005556
5557 return ret;
5558}
5559
5560/*
Lucas De Marchi25985ed2011-03-30 22:57:33 -03005561 * Calculate the total number of credits to reserve to fit
Mingming Caof3bd1f32008-08-19 22:16:03 -04005562 * the modification of a single pages into a single transaction,
5563 * which may include multiple chunks of block allocations.
Mingming Caoa02908f2008-08-19 22:16:07 -04005564 *
Mingming Cao525f4ed2008-08-19 22:15:58 -04005565 * This could be called via ext4_write_begin()
Mingming Caoa02908f2008-08-19 22:16:07 -04005566 *
Mingming Cao525f4ed2008-08-19 22:15:58 -04005567 * We need to consider the worse case, when
Mingming Caoa02908f2008-08-19 22:16:07 -04005568 * one new block per extent.
Mingming Caoa02908f2008-08-19 22:16:07 -04005569 */
5570int ext4_writepage_trans_blocks(struct inode *inode)
5571{
5572 int bpp = ext4_journal_blocks_per_page(inode);
5573 int ret;
5574
Jan Karafffb2732013-06-04 13:01:11 -04005575 ret = ext4_meta_trans_blocks(inode, bpp, bpp);
Mingming Caoa02908f2008-08-19 22:16:07 -04005576
5577 /* Account for data blocks for journalled mode */
5578 if (ext4_should_journal_data(inode))
5579 ret += bpp;
5580 return ret;
5581}
Mingming Caof3bd1f32008-08-19 22:16:03 -04005582
5583/*
5584 * Calculate the journal credits for a chunk of data modification.
5585 *
5586 * This is called from DIO, fallocate or whoever calling
Eric Sandeen79e83032010-07-27 11:56:07 -04005587 * ext4_map_blocks() to map/allocate a chunk of contiguous disk blocks.
Mingming Caof3bd1f32008-08-19 22:16:03 -04005588 *
5589 * journal buffers for data blocks are not included here, as DIO
5590 * and fallocate do no need to journal data buffers.
5591 */
5592int ext4_chunk_trans_blocks(struct inode *inode, int nrblocks)
5593{
5594 return ext4_meta_trans_blocks(inode, nrblocks, 1);
5595}
5596
Mingming Caoa02908f2008-08-19 22:16:07 -04005597/*
Mingming Cao617ba132006-10-11 01:20:53 -07005598 * The caller must have previously called ext4_reserve_inode_write().
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005599 * Give this, we know that the caller already has write access to iloc->bh.
5600 */
Mingming Cao617ba132006-10-11 01:20:53 -07005601int ext4_mark_iloc_dirty(handle_t *handle,
Theodore Ts'ode9a55b2009-06-14 17:45:34 -04005602 struct inode *inode, struct ext4_iloc *iloc)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005603{
5604 int err = 0;
5605
Vasily Averina6758302018-11-06 16:49:50 -05005606 if (unlikely(ext4_forced_shutdown(EXT4_SB(inode->i_sb)))) {
5607 put_bh(iloc->bh);
Theodore Ts'o0db1ff22017-02-05 01:28:48 -05005608 return -EIO;
Vasily Averina6758302018-11-06 16:49:50 -05005609 }
Theodore Ts'oc64db502012-03-02 12:23:11 -05005610 if (IS_I_VERSION(inode))
Jean Noel Cordenner25ec56b2008-01-28 23:58:27 -05005611 inode_inc_iversion(inode);
5612
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005613 /* the do_update_inode consumes one bh->b_count */
5614 get_bh(iloc->bh);
5615
Mingming Caodab291a2006-10-11 01:21:01 -07005616 /* ext4_do_update_inode() does jbd2_journal_dirty_metadata */
Frank Mayhar830156c2009-09-29 10:07:47 -04005617 err = ext4_do_update_inode(handle, inode, iloc);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005618 put_bh(iloc->bh);
5619 return err;
5620}
5621
5622/*
5623 * On success, We end up with an outstanding reference count against
5624 * iloc->bh. This _must_ be cleaned up later.
5625 */
5626
5627int
Mingming Cao617ba132006-10-11 01:20:53 -07005628ext4_reserve_inode_write(handle_t *handle, struct inode *inode,
5629 struct ext4_iloc *iloc)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005630{
Frank Mayhar03901312009-01-07 00:06:22 -05005631 int err;
5632
Theodore Ts'o0db1ff22017-02-05 01:28:48 -05005633 if (unlikely(ext4_forced_shutdown(EXT4_SB(inode->i_sb))))
5634 return -EIO;
5635
Frank Mayhar03901312009-01-07 00:06:22 -05005636 err = ext4_get_inode_loc(inode, iloc);
5637 if (!err) {
5638 BUFFER_TRACE(iloc->bh, "get_write_access");
5639 err = ext4_journal_get_write_access(handle, iloc->bh);
5640 if (err) {
5641 brelse(iloc->bh);
5642 iloc->bh = NULL;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005643 }
5644 }
Mingming Cao617ba132006-10-11 01:20:53 -07005645 ext4_std_error(inode->i_sb, err);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005646 return err;
5647}
5648
Miao Xiec03b45b2017-08-06 01:00:49 -04005649static int __ext4_expand_extra_isize(struct inode *inode,
5650 unsigned int new_extra_isize,
5651 struct ext4_iloc *iloc,
5652 handle_t *handle, int *no_expand)
5653{
5654 struct ext4_inode *raw_inode;
5655 struct ext4_xattr_ibody_header *header;
Theodore Ts'o4ea99932019-11-07 21:43:41 -05005656 unsigned int inode_size = EXT4_INODE_SIZE(inode->i_sb);
5657 struct ext4_inode_info *ei = EXT4_I(inode);
Miao Xiec03b45b2017-08-06 01:00:49 -04005658 int error;
5659
Theodore Ts'o4ea99932019-11-07 21:43:41 -05005660 /* this was checked at iget time, but double check for good measure */
5661 if ((EXT4_GOOD_OLD_INODE_SIZE + ei->i_extra_isize > inode_size) ||
5662 (ei->i_extra_isize & 3)) {
5663 EXT4_ERROR_INODE(inode, "bad extra_isize %u (inode size %u)",
5664 ei->i_extra_isize,
5665 EXT4_INODE_SIZE(inode->i_sb));
5666 return -EFSCORRUPTED;
5667 }
5668 if ((new_extra_isize < ei->i_extra_isize) ||
5669 (new_extra_isize < 4) ||
5670 (new_extra_isize > inode_size - EXT4_GOOD_OLD_INODE_SIZE))
5671 return -EINVAL; /* Should never happen */
5672
Miao Xiec03b45b2017-08-06 01:00:49 -04005673 raw_inode = ext4_raw_inode(iloc);
5674
5675 header = IHDR(inode, raw_inode);
5676
5677 /* No extended attributes present */
5678 if (!ext4_test_inode_state(inode, EXT4_STATE_XATTR) ||
5679 header->h_magic != cpu_to_le32(EXT4_XATTR_MAGIC)) {
5680 memset((void *)raw_inode + EXT4_GOOD_OLD_INODE_SIZE +
5681 EXT4_I(inode)->i_extra_isize, 0,
5682 new_extra_isize - EXT4_I(inode)->i_extra_isize);
5683 EXT4_I(inode)->i_extra_isize = new_extra_isize;
5684 return 0;
5685 }
5686
5687 /* try to expand with EAs present */
5688 error = ext4_expand_extra_isize_ea(inode, new_extra_isize,
5689 raw_inode, handle);
5690 if (error) {
5691 /*
5692 * Inode size expansion failed; don't try again
5693 */
5694 *no_expand = 1;
5695 }
5696
5697 return error;
5698}
5699
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005700/*
Kalpak Shah6dd4ee72007-07-18 09:19:57 -04005701 * Expand an inode by new_extra_isize bytes.
5702 * Returns 0 on success or negative error number on failure.
5703 */
Miao Xiecf0a5e82017-08-06 00:40:01 -04005704static int ext4_try_to_expand_extra_isize(struct inode *inode,
5705 unsigned int new_extra_isize,
5706 struct ext4_iloc iloc,
5707 handle_t *handle)
Kalpak Shah6dd4ee72007-07-18 09:19:57 -04005708{
Miao Xie3b10fdc2017-08-06 00:27:38 -04005709 int no_expand;
5710 int error;
Kalpak Shah6dd4ee72007-07-18 09:19:57 -04005711
Miao Xiecf0a5e82017-08-06 00:40:01 -04005712 if (ext4_test_inode_state(inode, EXT4_STATE_NO_EXPAND))
5713 return -EOVERFLOW;
5714
5715 /*
5716 * In nojournal mode, we can immediately attempt to expand
5717 * the inode. When journaled, we first need to obtain extra
5718 * buffer credits since we may write into the EA block
5719 * with this same handle. If journal_extend fails, then it will
5720 * only result in a minor loss of functionality for that inode.
5721 * If this is felt to be critical, then e2fsck should be run to
5722 * force a large enough s_min_extra_isize.
5723 */
Jan Kara6cb367c2019-11-05 17:44:14 +01005724 if (ext4_journal_extend(handle,
Jan Kara83448bd2019-11-05 17:44:29 +01005725 EXT4_DATA_TRANS_BLOCKS(inode->i_sb), 0) != 0)
Miao Xiecf0a5e82017-08-06 00:40:01 -04005726 return -ENOSPC;
Kalpak Shah6dd4ee72007-07-18 09:19:57 -04005727
Miao Xie3b10fdc2017-08-06 00:27:38 -04005728 if (ext4_write_trylock_xattr(inode, &no_expand) == 0)
Miao Xiecf0a5e82017-08-06 00:40:01 -04005729 return -EBUSY;
Miao Xie3b10fdc2017-08-06 00:27:38 -04005730
Miao Xiec03b45b2017-08-06 01:00:49 -04005731 error = __ext4_expand_extra_isize(inode, new_extra_isize, &iloc,
5732 handle, &no_expand);
Miao Xie3b10fdc2017-08-06 00:27:38 -04005733 ext4_write_unlock_xattr(inode, &no_expand);
Miao Xiecf0a5e82017-08-06 00:40:01 -04005734
Miao Xie3b10fdc2017-08-06 00:27:38 -04005735 return error;
Kalpak Shah6dd4ee72007-07-18 09:19:57 -04005736}
5737
Miao Xiec03b45b2017-08-06 01:00:49 -04005738int ext4_expand_extra_isize(struct inode *inode,
5739 unsigned int new_extra_isize,
5740 struct ext4_iloc *iloc)
5741{
5742 handle_t *handle;
5743 int no_expand;
5744 int error, rc;
5745
5746 if (ext4_test_inode_state(inode, EXT4_STATE_NO_EXPAND)) {
5747 brelse(iloc->bh);
5748 return -EOVERFLOW;
5749 }
5750
5751 handle = ext4_journal_start(inode, EXT4_HT_INODE,
5752 EXT4_DATA_TRANS_BLOCKS(inode->i_sb));
5753 if (IS_ERR(handle)) {
5754 error = PTR_ERR(handle);
5755 brelse(iloc->bh);
5756 return error;
5757 }
5758
5759 ext4_write_lock_xattr(inode, &no_expand);
5760
zhangyi (F)ddccb6d2019-02-21 11:29:10 -05005761 BUFFER_TRACE(iloc->bh, "get_write_access");
Miao Xiec03b45b2017-08-06 01:00:49 -04005762 error = ext4_journal_get_write_access(handle, iloc->bh);
5763 if (error) {
5764 brelse(iloc->bh);
Dan Carpenter7f420d642019-12-13 21:50:11 +03005765 goto out_unlock;
Miao Xiec03b45b2017-08-06 01:00:49 -04005766 }
5767
5768 error = __ext4_expand_extra_isize(inode, new_extra_isize, iloc,
5769 handle, &no_expand);
5770
5771 rc = ext4_mark_iloc_dirty(handle, inode, iloc);
5772 if (!error)
5773 error = rc;
5774
Dan Carpenter7f420d642019-12-13 21:50:11 +03005775out_unlock:
Miao Xiec03b45b2017-08-06 01:00:49 -04005776 ext4_write_unlock_xattr(inode, &no_expand);
Miao Xiec03b45b2017-08-06 01:00:49 -04005777 ext4_journal_stop(handle);
5778 return error;
5779}
5780
Kalpak Shah6dd4ee72007-07-18 09:19:57 -04005781/*
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005782 * What we do here is to mark the in-core inode as clean with respect to inode
5783 * dirtiness (it may still be data-dirty).
5784 * This means that the in-core inode may be reaped by prune_icache
5785 * without having to perform any I/O. This is a very good thing,
5786 * because *any* task may call prune_icache - even ones which
5787 * have a transaction open against a different journal.
5788 *
5789 * Is this cheating? Not really. Sure, we haven't written the
5790 * inode out, but prune_icache isn't a user-visible syncing function.
5791 * Whenever the user wants stuff synced (sys_sync, sys_msync, sys_fsync)
5792 * we start and wait on commits.
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005793 */
Harshad Shirwadkar4209ae12020-04-26 18:34:37 -07005794int __ext4_mark_inode_dirty(handle_t *handle, struct inode *inode,
5795 const char *func, unsigned int line)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005796{
Mingming Cao617ba132006-10-11 01:20:53 -07005797 struct ext4_iloc iloc;
Kalpak Shah6dd4ee72007-07-18 09:19:57 -04005798 struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb);
Miao Xiecf0a5e82017-08-06 00:40:01 -04005799 int err;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005800
5801 might_sleep();
Theodore Ts'o7ff9c072010-11-08 13:51:33 -05005802 trace_ext4_mark_inode_dirty(inode, _RET_IP_);
Mingming Cao617ba132006-10-11 01:20:53 -07005803 err = ext4_reserve_inode_write(handle, inode, &iloc);
Eryu Guan5e1021f2016-03-12 21:40:32 -05005804 if (err)
Harshad Shirwadkar4209ae12020-04-26 18:34:37 -07005805 goto out;
Miao Xiecf0a5e82017-08-06 00:40:01 -04005806
5807 if (EXT4_I(inode)->i_extra_isize < sbi->s_want_extra_isize)
5808 ext4_try_to_expand_extra_isize(inode, sbi->s_want_extra_isize,
5809 iloc, handle);
5810
Harshad Shirwadkar4209ae12020-04-26 18:34:37 -07005811 err = ext4_mark_iloc_dirty(handle, inode, &iloc);
5812out:
5813 if (unlikely(err))
5814 ext4_error_inode_err(inode, func, line, 0, err,
5815 "mark_inode_dirty error");
5816 return err;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005817}
5818
5819/*
Mingming Cao617ba132006-10-11 01:20:53 -07005820 * ext4_dirty_inode() is called from __mark_inode_dirty()
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005821 *
5822 * We're really interested in the case where a file is being extended.
5823 * i_size has been changed by generic_commit_write() and we thus need
5824 * to include the updated inode in the current transaction.
5825 *
Christoph Hellwig5dd40562010-03-03 09:05:00 -05005826 * Also, dquot_alloc_block() will always dirty the inode when blocks
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005827 * are allocated to the file.
5828 *
5829 * If the inode is marked synchronous, we don't honour that here - doing
5830 * so would cause a commit on atime updates, which we don't bother doing.
5831 * We handle synchronous inodes at the highest possible level.
Theodore Ts'o0ae45f62015-02-02 00:37:00 -05005832 *
5833 * If only the I_DIRTY_TIME flag is set, we can skip everything. If
5834 * I_DIRTY_TIME and I_DIRTY_SYNC is set, the only inode fields we need
5835 * to copy into the on-disk inode structure are the timestamp files.
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005836 */
Christoph Hellwigaa385722011-05-27 06:53:02 -04005837void ext4_dirty_inode(struct inode *inode, int flags)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005838{
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005839 handle_t *handle;
5840
Theodore Ts'o0ae45f62015-02-02 00:37:00 -05005841 if (flags == I_DIRTY_TIME)
5842 return;
Theodore Ts'o9924a922013-02-08 21:59:22 -05005843 handle = ext4_journal_start(inode, EXT4_HT_INODE, 2);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005844 if (IS_ERR(handle))
5845 goto out;
Curt Wohlgemuthf3dc2722009-09-29 16:06:01 -04005846
Curt Wohlgemuthf3dc2722009-09-29 16:06:01 -04005847 ext4_mark_inode_dirty(handle, inode);
5848
Mingming Cao617ba132006-10-11 01:20:53 -07005849 ext4_journal_stop(handle);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005850out:
5851 return;
5852}
5853
Mingming Cao617ba132006-10-11 01:20:53 -07005854int ext4_change_inode_journal_flag(struct inode *inode, int val)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005855{
5856 journal_t *journal;
5857 handle_t *handle;
5858 int err;
Daeho Jeongc8585c62016-04-25 23:22:35 -04005859 struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005860
5861 /*
5862 * We have to be very careful here: changing a data block's
5863 * journaling status dynamically is dangerous. If we write a
5864 * data block to the journal, change the status and then delete
5865 * that block, we risk forgetting to revoke the old log record
5866 * from the journal and so a subsequent replay can corrupt data.
5867 * So, first we make sure that the journal is empty and that
5868 * nobody is changing anything.
5869 */
5870
Mingming Cao617ba132006-10-11 01:20:53 -07005871 journal = EXT4_JOURNAL(inode);
Frank Mayhar03901312009-01-07 00:06:22 -05005872 if (!journal)
5873 return 0;
Dave Hansend6995942007-07-18 08:33:51 -04005874 if (is_journal_aborted(journal))
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005875 return -EROFS;
5876
Dmitry Monakhov17335dc2012-09-29 00:41:21 -04005877 /* Wait for all existing dio workers */
Dmitry Monakhov17335dc2012-09-29 00:41:21 -04005878 inode_dio_wait(inode);
5879
Daeho Jeong4c546592016-04-25 23:21:00 -04005880 /*
5881 * Before flushing the journal and switching inode's aops, we have
5882 * to flush all dirty data the inode has. There can be outstanding
5883 * delayed allocations, there can be unwritten extents created by
5884 * fallocate or buffered writes in dioread_nolock mode covered by
5885 * dirty data which can be converted only after flushing the dirty
5886 * data (and journalled aops don't know how to handle these cases).
5887 */
5888 if (val) {
5889 down_write(&EXT4_I(inode)->i_mmap_sem);
5890 err = filemap_write_and_wait(inode->i_mapping);
5891 if (err < 0) {
5892 up_write(&EXT4_I(inode)->i_mmap_sem);
Daeho Jeong4c546592016-04-25 23:21:00 -04005893 return err;
5894 }
5895 }
5896
Eric Biggersbbd55932020-02-19 10:30:46 -08005897 percpu_down_write(&sbi->s_writepages_rwsem);
Mingming Caodab291a2006-10-11 01:21:01 -07005898 jbd2_journal_lock_updates(journal);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005899
5900 /*
5901 * OK, there are no updates running now, and all cached data is
5902 * synced to disk. We are now in a completely consistent state
5903 * which doesn't have anything in the journal, and we know that
5904 * no filesystem updates are running, so it is safe to modify
5905 * the inode's in-core data-journaling state flag now.
5906 */
5907
5908 if (val)
Dmitry Monakhov12e9b892010-05-16 22:00:00 -04005909 ext4_set_inode_flag(inode, EXT4_INODE_JOURNAL_DATA);
Yongqiang Yang5872dda2011-12-28 13:55:51 -05005910 else {
Jan Kara4f879ca2014-10-30 10:53:17 -04005911 err = jbd2_journal_flush(journal);
5912 if (err < 0) {
5913 jbd2_journal_unlock_updates(journal);
Eric Biggersbbd55932020-02-19 10:30:46 -08005914 percpu_up_write(&sbi->s_writepages_rwsem);
Jan Kara4f879ca2014-10-30 10:53:17 -04005915 return err;
5916 }
Dmitry Monakhov12e9b892010-05-16 22:00:00 -04005917 ext4_clear_inode_flag(inode, EXT4_INODE_JOURNAL_DATA);
Yongqiang Yang5872dda2011-12-28 13:55:51 -05005918 }
Mingming Cao617ba132006-10-11 01:20:53 -07005919 ext4_set_aops(inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005920
Mingming Caodab291a2006-10-11 01:21:01 -07005921 jbd2_journal_unlock_updates(journal);
Eric Biggersbbd55932020-02-19 10:30:46 -08005922 percpu_up_write(&sbi->s_writepages_rwsem);
Daeho Jeongc8585c62016-04-25 23:22:35 -04005923
Daeho Jeong4c546592016-04-25 23:21:00 -04005924 if (val)
5925 up_write(&EXT4_I(inode)->i_mmap_sem);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005926
5927 /* Finally we can mark the inode as dirty. */
5928
Theodore Ts'o9924a922013-02-08 21:59:22 -05005929 handle = ext4_journal_start(inode, EXT4_HT_INODE, 1);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005930 if (IS_ERR(handle))
5931 return PTR_ERR(handle);
5932
Mingming Cao617ba132006-10-11 01:20:53 -07005933 err = ext4_mark_inode_dirty(handle, inode);
Frank Mayhar03901312009-01-07 00:06:22 -05005934 ext4_handle_sync(handle);
Mingming Cao617ba132006-10-11 01:20:53 -07005935 ext4_journal_stop(handle);
5936 ext4_std_error(inode->i_sb, err);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005937
5938 return err;
5939}
Aneesh Kumar K.V2e9ee852008-07-11 19:27:31 -04005940
5941static int ext4_bh_unmapped(handle_t *handle, struct buffer_head *bh)
5942{
5943 return !buffer_mapped(bh);
5944}
5945
Souptick Joarder401b25a2018-10-02 22:20:50 -04005946vm_fault_t ext4_page_mkwrite(struct vm_fault *vmf)
Aneesh Kumar K.V2e9ee852008-07-11 19:27:31 -04005947{
Dave Jiang11bac802017-02-24 14:56:41 -08005948 struct vm_area_struct *vma = vmf->vma;
Nick Pigginc2ec1752009-03-31 15:23:21 -07005949 struct page *page = vmf->page;
Aneesh Kumar K.V2e9ee852008-07-11 19:27:31 -04005950 loff_t size;
5951 unsigned long len;
Souptick Joarder401b25a2018-10-02 22:20:50 -04005952 int err;
5953 vm_fault_t ret;
Aneesh Kumar K.V2e9ee852008-07-11 19:27:31 -04005954 struct file *file = vma->vm_file;
Al Viro496ad9a2013-01-23 17:07:38 -05005955 struct inode *inode = file_inode(file);
Aneesh Kumar K.V2e9ee852008-07-11 19:27:31 -04005956 struct address_space *mapping = inode->i_mapping;
Jan Kara9ea7df52011-06-24 14:29:41 -04005957 handle_t *handle;
5958 get_block_t *get_block;
5959 int retries = 0;
Aneesh Kumar K.V2e9ee852008-07-11 19:27:31 -04005960
Theodore Ts'o02b016c2019-06-09 22:04:33 -04005961 if (unlikely(IS_IMMUTABLE(inode)))
5962 return VM_FAULT_SIGBUS;
5963
Jan Kara8e8ad8a2012-06-12 16:20:38 +02005964 sb_start_pagefault(inode->i_sb);
Theodore Ts'o041bbb6d2012-09-30 23:04:56 -04005965 file_update_time(vma->vm_file);
Jan Karaea3d7202015-12-07 14:28:03 -05005966
5967 down_read(&EXT4_I(inode)->i_mmap_sem);
Eric Biggers7b4cc972017-04-30 00:10:50 -04005968
Souptick Joarder401b25a2018-10-02 22:20:50 -04005969 err = ext4_convert_inline_data(inode);
5970 if (err)
Eric Biggers7b4cc972017-04-30 00:10:50 -04005971 goto out_ret;
5972
Jan Kara9ea7df52011-06-24 14:29:41 -04005973 /* Delalloc case is easy... */
5974 if (test_opt(inode->i_sb, DELALLOC) &&
5975 !ext4_should_journal_data(inode) &&
5976 !ext4_nonda_switch(inode->i_sb)) {
5977 do {
Souptick Joarder401b25a2018-10-02 22:20:50 -04005978 err = block_page_mkwrite(vma, vmf,
Jan Kara9ea7df52011-06-24 14:29:41 -04005979 ext4_da_get_block_prep);
Souptick Joarder401b25a2018-10-02 22:20:50 -04005980 } while (err == -ENOSPC &&
Jan Kara9ea7df52011-06-24 14:29:41 -04005981 ext4_should_retry_alloc(inode->i_sb, &retries));
5982 goto out_ret;
Aneesh Kumar K.V2e9ee852008-07-11 19:27:31 -04005983 }
Darrick J. Wong0e499892011-05-18 13:55:20 -04005984
5985 lock_page(page);
Jan Kara9ea7df52011-06-24 14:29:41 -04005986 size = i_size_read(inode);
5987 /* Page got truncated from under us? */
5988 if (page->mapping != mapping || page_offset(page) > size) {
5989 unlock_page(page);
5990 ret = VM_FAULT_NOPAGE;
5991 goto out;
Darrick J. Wong0e499892011-05-18 13:55:20 -04005992 }
Aneesh Kumar K.V2e9ee852008-07-11 19:27:31 -04005993
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005994 if (page->index == size >> PAGE_SHIFT)
5995 len = size & ~PAGE_MASK;
Aneesh Kumar K.V2e9ee852008-07-11 19:27:31 -04005996 else
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005997 len = PAGE_SIZE;
Aneesh Kumar K.Va827eaf2009-09-09 22:36:03 -04005998 /*
Jan Kara9ea7df52011-06-24 14:29:41 -04005999 * Return if we have all the buffers mapped. This avoids the need to do
6000 * journal_start/journal_stop which can block and take a long time
Aneesh Kumar K.Va827eaf2009-09-09 22:36:03 -04006001 */
Aneesh Kumar K.V2e9ee852008-07-11 19:27:31 -04006002 if (page_has_buffers(page)) {
Tao Maf19d5872012-12-10 14:05:51 -05006003 if (!ext4_walk_page_buffers(NULL, page_buffers(page),
6004 0, len, NULL,
6005 ext4_bh_unmapped)) {
Jan Kara9ea7df52011-06-24 14:29:41 -04006006 /* Wait so that we don't change page under IO */
Darrick J. Wong1d1d1a72013-02-21 16:42:51 -08006007 wait_for_stable_page(page);
Jan Kara9ea7df52011-06-24 14:29:41 -04006008 ret = VM_FAULT_LOCKED;
6009 goto out;
Aneesh Kumar K.Va827eaf2009-09-09 22:36:03 -04006010 }
Aneesh Kumar K.V2e9ee852008-07-11 19:27:31 -04006011 }
Aneesh Kumar K.Va827eaf2009-09-09 22:36:03 -04006012 unlock_page(page);
Jan Kara9ea7df52011-06-24 14:29:41 -04006013 /* OK, we need to fill the hole... */
6014 if (ext4_should_dioread_nolock(inode))
Jan Kara705965b2016-03-08 23:08:10 -05006015 get_block = ext4_get_block_unwritten;
Jan Kara9ea7df52011-06-24 14:29:41 -04006016 else
6017 get_block = ext4_get_block;
6018retry_alloc:
Theodore Ts'o9924a922013-02-08 21:59:22 -05006019 handle = ext4_journal_start(inode, EXT4_HT_WRITE_PAGE,
6020 ext4_writepage_trans_blocks(inode));
Jan Kara9ea7df52011-06-24 14:29:41 -04006021 if (IS_ERR(handle)) {
Nick Pigginc2ec1752009-03-31 15:23:21 -07006022 ret = VM_FAULT_SIGBUS;
Jan Kara9ea7df52011-06-24 14:29:41 -04006023 goto out;
6024 }
Souptick Joarder401b25a2018-10-02 22:20:50 -04006025 err = block_page_mkwrite(vma, vmf, get_block);
6026 if (!err && ext4_should_journal_data(inode)) {
Tao Maf19d5872012-12-10 14:05:51 -05006027 if (ext4_walk_page_buffers(handle, page_buffers(page), 0,
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03006028 PAGE_SIZE, NULL, do_journal_get_write_access)) {
Jan Kara9ea7df52011-06-24 14:29:41 -04006029 unlock_page(page);
6030 ret = VM_FAULT_SIGBUS;
Yongqiang Yangfcbb5512011-10-26 05:00:19 -04006031 ext4_journal_stop(handle);
Jan Kara9ea7df52011-06-24 14:29:41 -04006032 goto out;
6033 }
6034 ext4_set_inode_state(inode, EXT4_STATE_JDATA);
6035 }
6036 ext4_journal_stop(handle);
Souptick Joarder401b25a2018-10-02 22:20:50 -04006037 if (err == -ENOSPC && ext4_should_retry_alloc(inode->i_sb, &retries))
Jan Kara9ea7df52011-06-24 14:29:41 -04006038 goto retry_alloc;
6039out_ret:
Souptick Joarder401b25a2018-10-02 22:20:50 -04006040 ret = block_page_mkwrite_return(err);
Jan Kara9ea7df52011-06-24 14:29:41 -04006041out:
Jan Karaea3d7202015-12-07 14:28:03 -05006042 up_read(&EXT4_I(inode)->i_mmap_sem);
Jan Kara8e8ad8a2012-06-12 16:20:38 +02006043 sb_end_pagefault(inode->i_sb);
Aneesh Kumar K.V2e9ee852008-07-11 19:27:31 -04006044 return ret;
6045}
Jan Karaea3d7202015-12-07 14:28:03 -05006046
Souptick Joarder401b25a2018-10-02 22:20:50 -04006047vm_fault_t ext4_filemap_fault(struct vm_fault *vmf)
Jan Karaea3d7202015-12-07 14:28:03 -05006048{
Dave Jiang11bac802017-02-24 14:56:41 -08006049 struct inode *inode = file_inode(vmf->vma->vm_file);
Souptick Joarder401b25a2018-10-02 22:20:50 -04006050 vm_fault_t ret;
Jan Karaea3d7202015-12-07 14:28:03 -05006051
6052 down_read(&EXT4_I(inode)->i_mmap_sem);
Souptick Joarder401b25a2018-10-02 22:20:50 -04006053 ret = filemap_fault(vmf);
Jan Karaea3d7202015-12-07 14:28:03 -05006054 up_read(&EXT4_I(inode)->i_mmap_sem);
6055
Souptick Joarder401b25a2018-10-02 22:20:50 -04006056 return ret;
Jan Karaea3d7202015-12-07 14:28:03 -05006057}