blob: 1b0d54b372f2345211201d8b515102d830a84240 [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
Aneesh Kumar K.Va1d6cc52008-08-19 21:55:02 -040051#define MPAGE_DA_EXTENT_TAIL 0x01
52
Darrick J. Wong814525f2012-04-29 18:31:10 -040053static __u32 ext4_inode_csum(struct inode *inode, struct ext4_inode *raw,
54 struct ext4_inode_info *ei)
55{
56 struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb);
Darrick J. Wong814525f2012-04-29 18:31:10 -040057 __u32 csum;
Daeho Jeongb47820e2016-07-03 17:51:39 -040058 __u16 dummy_csum = 0;
59 int offset = offsetof(struct ext4_inode, i_checksum_lo);
60 unsigned int csum_size = sizeof(dummy_csum);
Darrick J. Wong814525f2012-04-29 18:31:10 -040061
Daeho Jeongb47820e2016-07-03 17:51:39 -040062 csum = ext4_chksum(sbi, ei->i_csum_seed, (__u8 *)raw, offset);
63 csum = ext4_chksum(sbi, csum, (__u8 *)&dummy_csum, csum_size);
64 offset += csum_size;
65 csum = ext4_chksum(sbi, csum, (__u8 *)raw + offset,
66 EXT4_GOOD_OLD_INODE_SIZE - offset);
67
68 if (EXT4_INODE_SIZE(inode->i_sb) > EXT4_GOOD_OLD_INODE_SIZE) {
69 offset = offsetof(struct ext4_inode, i_checksum_hi);
70 csum = ext4_chksum(sbi, csum, (__u8 *)raw +
71 EXT4_GOOD_OLD_INODE_SIZE,
72 offset - EXT4_GOOD_OLD_INODE_SIZE);
73 if (EXT4_FITS_IN_INODE(raw, ei, i_checksum_hi)) {
74 csum = ext4_chksum(sbi, csum, (__u8 *)&dummy_csum,
75 csum_size);
76 offset += csum_size;
Daeho Jeongb47820e2016-07-03 17:51:39 -040077 }
Daeho Jeong05ac5aa2016-12-01 11:49:12 -050078 csum = ext4_chksum(sbi, csum, (__u8 *)raw + offset,
79 EXT4_INODE_SIZE(inode->i_sb) - offset);
Darrick J. Wong814525f2012-04-29 18:31:10 -040080 }
81
Darrick J. Wong814525f2012-04-29 18:31:10 -040082 return csum;
83}
84
85static int ext4_inode_csum_verify(struct inode *inode, struct ext4_inode *raw,
86 struct ext4_inode_info *ei)
87{
88 __u32 provided, calculated;
89
90 if (EXT4_SB(inode->i_sb)->s_es->s_creator_os !=
91 cpu_to_le32(EXT4_OS_LINUX) ||
Dmitry Monakhov9aa5d32b2014-10-13 03:36:16 -040092 !ext4_has_metadata_csum(inode->i_sb))
Darrick J. Wong814525f2012-04-29 18:31:10 -040093 return 1;
94
95 provided = le16_to_cpu(raw->i_checksum_lo);
96 calculated = ext4_inode_csum(inode, raw, ei);
97 if (EXT4_INODE_SIZE(inode->i_sb) > EXT4_GOOD_OLD_INODE_SIZE &&
98 EXT4_FITS_IN_INODE(raw, ei, i_checksum_hi))
99 provided |= ((__u32)le16_to_cpu(raw->i_checksum_hi)) << 16;
100 else
101 calculated &= 0xFFFF;
102
103 return provided == calculated;
104}
105
106static void ext4_inode_csum_set(struct inode *inode, struct ext4_inode *raw,
107 struct ext4_inode_info *ei)
108{
109 __u32 csum;
110
111 if (EXT4_SB(inode->i_sb)->s_es->s_creator_os !=
112 cpu_to_le32(EXT4_OS_LINUX) ||
Dmitry Monakhov9aa5d32b2014-10-13 03:36:16 -0400113 !ext4_has_metadata_csum(inode->i_sb))
Darrick J. Wong814525f2012-04-29 18:31:10 -0400114 return;
115
116 csum = ext4_inode_csum(inode, raw, ei);
117 raw->i_checksum_lo = cpu_to_le16(csum & 0xFFFF);
118 if (EXT4_INODE_SIZE(inode->i_sb) > EXT4_GOOD_OLD_INODE_SIZE &&
119 EXT4_FITS_IN_INODE(raw, ei, i_checksum_hi))
120 raw->i_checksum_hi = cpu_to_le16(csum >> 16);
121}
122
Jan Kara678aaf42008-07-11 19:27:31 -0400123static inline int ext4_begin_ordered_truncate(struct inode *inode,
124 loff_t new_size)
125{
Theodore Ts'o7ff9c072010-11-08 13:51:33 -0500126 trace_ext4_begin_ordered_truncate(inode, new_size);
Theodore Ts'o8aefcd52011-01-10 12:29:43 -0500127 /*
128 * If jinode is zero, then we never opened the file for
129 * writing, so there's no need to call
130 * jbd2_journal_begin_ordered_truncate() since there's no
131 * outstanding writes we need to flush.
132 */
133 if (!EXT4_I(inode)->jinode)
134 return 0;
135 return jbd2_journal_begin_ordered_truncate(EXT4_JOURNAL(inode),
136 EXT4_I(inode)->jinode,
137 new_size);
Jan Kara678aaf42008-07-11 19:27:31 -0400138}
139
Lukas Czernerd47992f2013-05-21 23:17:23 -0400140static void ext4_invalidatepage(struct page *page, unsigned int offset,
141 unsigned int length);
Theodore Ts'ocb20d512010-10-27 21:30:09 -0400142static int __ext4_journalled_writepage(struct page *page, unsigned int len);
143static int ext4_bh_delay_or_unwritten(handle_t *handle, struct buffer_head *bh);
Tahsin Erdogandec214d2017-06-22 11:44:55 -0400144static int ext4_meta_trans_blocks(struct inode *inode, int lblocks,
145 int pextents);
Alex Tomas64769242008-07-11 19:27:31 -0400146
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700147/*
148 * Test whether an inode is a fast symlink.
Tahsin Erdogan407cd7f2017-07-04 00:11:21 -0400149 * A fast symlink has its symlink data stored in ext4_inode_info->i_data.
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700150 */
Theodore Ts'of348c252015-04-16 01:55:00 -0400151int ext4_inode_is_fast_symlink(struct inode *inode)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700152{
Tahsin Erdogan407cd7f2017-07-04 00:11:21 -0400153 return S_ISLNK(inode->i_mode) && inode->i_size &&
154 (inode->i_size < EXT4_N_BLOCKS * 4);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700155}
156
157/*
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700158 * Restart the transaction associated with *handle. This does a commit,
159 * so before we call here everything must be consistently dirtied against
160 * this transaction.
161 */
Aneesh Kumar K.Vfa5d1112009-11-02 18:50:49 -0500162int ext4_truncate_restart_trans(handle_t *handle, struct inode *inode,
Jan Kara487caee2009-08-17 22:17:20 -0400163 int nblocks)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700164{
Jan Kara487caee2009-08-17 22:17:20 -0400165 int ret;
166
167 /*
Theodore Ts'oe35fd662010-05-16 19:00:00 -0400168 * Drop i_data_sem to avoid deadlock with ext4_map_blocks. At this
Jan Kara487caee2009-08-17 22:17:20 -0400169 * moment, get_block can be called only for blocks inside i_size since
170 * page cache has been already dropped and writes are blocked by
171 * i_mutex. So we can safely drop the i_data_sem here.
172 */
Frank Mayhar03901312009-01-07 00:06:22 -0500173 BUG_ON(EXT4_JOURNAL(inode) == NULL);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700174 jbd_debug(2, "restarting handle %p\n", handle);
Jan Kara487caee2009-08-17 22:17:20 -0400175 up_write(&EXT4_I(inode)->i_data_sem);
Amir Goldstein8e8eaab2011-02-27 23:32:12 -0500176 ret = ext4_journal_restart(handle, nblocks);
Jan Kara487caee2009-08-17 22:17:20 -0400177 down_write(&EXT4_I(inode)->i_data_sem);
Aneesh Kumar K.Vfa5d1112009-11-02 18:50:49 -0500178 ext4_discard_preallocations(inode);
Jan Kara487caee2009-08-17 22:17:20 -0400179
180 return ret;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700181}
182
183/*
184 * Called at the last iput() if i_nlink is zero.
185 */
Al Viro0930fcc2010-06-07 13:16:22 -0400186void ext4_evict_inode(struct inode *inode)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700187{
188 handle_t *handle;
Theodore Ts'obc965ab2008-08-02 21:10:38 -0400189 int err;
Andreas Dilgere50e5122017-06-21 21:10:32 -0400190 int extra_credits = 3;
Tahsin Erdogan0421a182017-06-22 10:26:31 -0400191 struct ext4_xattr_inode_array *ea_inode_array = NULL;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700192
Theodore Ts'o7ff9c072010-11-08 13:51:33 -0500193 trace_ext4_evict_inode(inode);
Jiaying Zhang2581fdc2011-08-13 12:17:13 -0400194
Al Viro0930fcc2010-06-07 13:16:22 -0400195 if (inode->i_nlink) {
Jan Kara2d859db2011-07-26 09:07:11 -0400196 /*
197 * When journalling data dirty buffers are tracked only in the
198 * journal. So although mm thinks everything is clean and
199 * ready for reaping the inode might still have some pages to
200 * write in the running transaction or waiting to be
201 * checkpointed. Thus calling jbd2_journal_invalidatepage()
202 * (via truncate_inode_pages()) to discard these buffers can
203 * cause data loss. Also even if we did not discard these
204 * buffers, we would have no way to find them after the inode
205 * is reaped and thus user could see stale data if he tries to
206 * read them before the transaction is checkpointed. So be
207 * careful and force everything to disk here... We use
208 * ei->i_datasync_tid to store the newest transaction
209 * containing inode's data.
210 *
211 * Note that directories do not have this problem because they
212 * don't use page cache.
213 */
Vegard Nossum6a7fd522016-07-04 11:03:00 -0400214 if (inode->i_ino != EXT4_JOURNAL_INO &&
215 ext4_should_journal_data(inode) &&
Jan Kara3abb1a02017-06-22 23:49:46 -0400216 (S_ISLNK(inode->i_mode) || S_ISREG(inode->i_mode)) &&
217 inode->i_data.nrpages) {
Jan Kara2d859db2011-07-26 09:07:11 -0400218 journal_t *journal = EXT4_SB(inode->i_sb)->s_journal;
219 tid_t commit_tid = EXT4_I(inode)->i_datasync_tid;
220
Theodore Ts'od76a3a772013-04-03 22:02:52 -0400221 jbd2_complete_transaction(journal, commit_tid);
Jan Kara2d859db2011-07-26 09:07:11 -0400222 filemap_write_and_wait(&inode->i_data);
223 }
Johannes Weiner91b0abe2014-04-03 14:47:49 -0700224 truncate_inode_pages_final(&inode->i_data);
Jan Kara5dc23bd2013-06-04 14:46:12 -0400225
Al Viro0930fcc2010-06-07 13:16:22 -0400226 goto no_delete;
227 }
228
Theodore Ts'oe2bfb082014-10-05 22:47:07 -0400229 if (is_bad_inode(inode))
230 goto no_delete;
231 dquot_initialize(inode);
Christoph Hellwig907f4552010-03-03 09:05:06 -0500232
Jan Kara678aaf42008-07-11 19:27:31 -0400233 if (ext4_should_order_data(inode))
234 ext4_begin_ordered_truncate(inode, 0);
Johannes Weiner91b0abe2014-04-03 14:47:49 -0700235 truncate_inode_pages_final(&inode->i_data);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700236
Jan Kara8e8ad8a2012-06-12 16:20:38 +0200237 /*
238 * Protect us against freezing - iput() caller didn't have to have any
239 * protection against it
240 */
241 sb_start_intwrite(inode->i_sb);
Andreas Dilgere50e5122017-06-21 21:10:32 -0400242
Tahsin Erdogan30a7eb92017-06-22 11:42:09 -0400243 if (!IS_NOQUOTA(inode))
244 extra_credits += EXT4_MAXQUOTAS_DEL_BLOCKS(inode->i_sb);
245
246 handle = ext4_journal_start(inode, EXT4_HT_TRUNCATE,
247 ext4_blocks_for_truncate(inode)+extra_credits);
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) {
282 ext4_error(inode->i_sb,
283 "couldn't truncate inode %lu (err %d)",
284 inode->i_ino, err);
285 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);
311 EXT4_I(inode)->i_dtime = get_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'o0637c6f42009-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'o0637c6f42009-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'o0637c6f42009-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'o0637c6f42009-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'o0637c6f42009-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'o0637c6f42009-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'o0637c6f42009-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'o0637c6f42009-12-30 14:20:45 -0500384 if ((ei->i_reserved_data_blocks == 0) &&
385 (atomic_read(&inode->i_writecount) == 0))
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'o24676da2010-05-16 21:00:00 -0400393 if (!ext4_data_block_valid(EXT4_SB(inode->i_sb), map->m_pblk,
394 map->m_len)) {
Theodore Ts'oc398eda2010-07-27 11:56:40 -0400395 ext4_error_inode(inode, func, line, map->m_pblk,
396 "lblock %lu mapped to illegal pblock "
397 "(length %d)", (unsigned long) map->m_lblk,
398 map->m_len);
Darrick J. Wong6a797d22015-10-17 16:16:04 -0400399 return -EFSCORRUPTED;
Theodore Ts'o6fd058f2009-05-17 15:38:01 -0400400 }
401 return 0;
402}
403
Jan Kara53085fa2015-12-07 15:09:35 -0500404int ext4_issue_zeroout(struct inode *inode, ext4_lblk_t lblk, ext4_fsblk_t pblk,
405 ext4_lblk_t len)
406{
407 int ret;
408
409 if (ext4_encrypted_inode(inode))
Jaegeuk Kima7550b32016-07-10 14:01:03 -0400410 return fscrypt_zeroout_range(inode, lblk, pblk, len);
Jan Kara53085fa2015-12-07 15:09:35 -0500411
412 ret = sb_issue_zeroout(inode->i_sb, pblk, len, GFP_NOFS);
413 if (ret > 0)
414 ret = 0;
415
416 return ret;
417}
418
Theodore Ts'oe29136f2010-06-29 12:54:28 -0400419#define check_block_validity(inode, map) \
Theodore Ts'oc398eda2010-07-27 11:56:40 -0400420 __check_block_validity((inode), __func__, __LINE__, (map))
Theodore Ts'oe29136f2010-06-29 12:54:28 -0400421
Dmitry Monakhov921f2662013-03-10 21:01:03 -0400422#ifdef ES_AGGRESSIVE_TEST
423static void ext4_map_blocks_es_recheck(handle_t *handle,
424 struct inode *inode,
425 struct ext4_map_blocks *es_map,
426 struct ext4_map_blocks *map,
427 int flags)
428{
429 int retval;
430
431 map->m_flags = 0;
432 /*
433 * There is a race window that the result is not the same.
434 * e.g. xfstests #223 when dioread_nolock enables. The reason
435 * is that we lookup a block mapping in extent status tree with
436 * out taking i_data_sem. So at the time the unwritten extent
437 * could be converted.
438 */
Jan Kara2dcba472015-12-07 15:04:57 -0500439 down_read(&EXT4_I(inode)->i_data_sem);
Dmitry Monakhov921f2662013-03-10 21:01:03 -0400440 if (ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS)) {
441 retval = ext4_ext_map_blocks(handle, inode, map, flags &
442 EXT4_GET_BLOCKS_KEEP_SIZE);
443 } else {
444 retval = ext4_ind_map_blocks(handle, inode, map, flags &
445 EXT4_GET_BLOCKS_KEEP_SIZE);
446 }
Jan Kara2dcba472015-12-07 15:04:57 -0500447 up_read((&EXT4_I(inode)->i_data_sem));
Dmitry Monakhov921f2662013-03-10 21:01:03 -0400448
449 /*
450 * We don't check m_len because extent will be collpased in status
451 * tree. So the m_len might not equal.
452 */
453 if (es_map->m_lblk != map->m_lblk ||
454 es_map->m_flags != map->m_flags ||
455 es_map->m_pblk != map->m_pblk) {
Theodore Ts'obdafe422013-07-13 00:40:31 -0400456 printk("ES cache assertion failed for inode: %lu "
Dmitry Monakhov921f2662013-03-10 21:01:03 -0400457 "es_cached ex [%d/%d/%llu/%x] != "
458 "found ex [%d/%d/%llu/%x] retval %d flags %x\n",
459 inode->i_ino, es_map->m_lblk, es_map->m_len,
460 es_map->m_pblk, es_map->m_flags, map->m_lblk,
461 map->m_len, map->m_pblk, map->m_flags,
462 retval, flags);
463 }
464}
465#endif /* ES_AGGRESSIVE_TEST */
466
Theodore Ts'o55138e0b2009-09-29 13:31:31 -0400467/*
Theodore Ts'oe35fd662010-05-16 19:00:00 -0400468 * The ext4_map_blocks() function tries to look up the requested blocks,
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -0400469 * and returns if the blocks are already mapped.
Mingming Caof5ab0d12008-02-25 15:29:55 -0500470 *
Mingming Caof5ab0d12008-02-25 15:29:55 -0500471 * Otherwise it takes the write lock of the i_data_sem and allocate blocks
472 * and store the allocated blocks in the result buffer head and mark it
473 * mapped.
474 *
Theodore Ts'oe35fd662010-05-16 19:00:00 -0400475 * If file type is extents based, it will call ext4_ext_map_blocks(),
476 * Otherwise, call with ext4_ind_map_blocks() to handle indirect mapping
Mingming Caof5ab0d12008-02-25 15:29:55 -0500477 * based files
478 *
Jan Karafacab4d2016-03-09 22:54:00 -0500479 * On success, it returns the number of blocks being mapped or allocated. if
480 * create==0 and the blocks are pre-allocated and unwritten, the resulting @map
481 * is marked as unwritten. If the create == 1, it will mark @map as mapped.
Mingming Caof5ab0d12008-02-25 15:29:55 -0500482 *
483 * It returns 0 if plain look up failed (blocks have not been allocated), in
Jan Karafacab4d2016-03-09 22:54:00 -0500484 * that case, @map is returned as unmapped but we still do fill map->m_len to
485 * indicate the length of a hole starting at map->m_lblk.
Mingming Caof5ab0d12008-02-25 15:29:55 -0500486 *
487 * It returns the error in case of allocation failure.
488 */
Theodore Ts'oe35fd662010-05-16 19:00:00 -0400489int ext4_map_blocks(handle_t *handle, struct inode *inode,
490 struct ext4_map_blocks *map, int flags)
Aneesh Kumar K.V0e855ac2008-01-28 23:58:26 -0500491{
Zheng Liud100eef2013-02-18 00:29:59 -0500492 struct extent_status es;
Aneesh Kumar K.V0e855ac2008-01-28 23:58:26 -0500493 int retval;
Lukas Czernerb8a86842014-03-18 18:05:35 -0400494 int ret = 0;
Dmitry Monakhov921f2662013-03-10 21:01:03 -0400495#ifdef ES_AGGRESSIVE_TEST
496 struct ext4_map_blocks orig_map;
497
498 memcpy(&orig_map, map, sizeof(*map));
499#endif
Mingming Caof5ab0d12008-02-25 15:29:55 -0500500
Theodore Ts'oe35fd662010-05-16 19:00:00 -0400501 map->m_flags = 0;
502 ext_debug("ext4_map_blocks(): inode %lu, flag %d, max_blocks %u,"
503 "logical block %lu\n", inode->i_ino, flags, map->m_len,
504 (unsigned long) map->m_lblk);
Zheng Liud100eef2013-02-18 00:29:59 -0500505
Theodore Ts'oe861b5e2014-02-20 12:54:05 -0500506 /*
507 * ext4_map_blocks returns an int, and m_len is an unsigned int
508 */
509 if (unlikely(map->m_len > INT_MAX))
510 map->m_len = INT_MAX;
511
Kazuya Mio4adb6ab2014-04-07 10:53:28 -0400512 /* We can handle the block number less than EXT_MAX_BLOCKS */
513 if (unlikely(map->m_lblk >= EXT_MAX_BLOCKS))
Darrick J. Wong6a797d22015-10-17 16:16:04 -0400514 return -EFSCORRUPTED;
Kazuya Mio4adb6ab2014-04-07 10:53:28 -0400515
Zheng Liud100eef2013-02-18 00:29:59 -0500516 /* Lookup extent status tree firstly */
517 if (ext4_es_lookup_extent(inode, map->m_lblk, &es)) {
518 if (ext4_es_is_written(&es) || ext4_es_is_unwritten(&es)) {
519 map->m_pblk = ext4_es_pblock(&es) +
520 map->m_lblk - es.es_lblk;
521 map->m_flags |= ext4_es_is_written(&es) ?
522 EXT4_MAP_MAPPED : EXT4_MAP_UNWRITTEN;
523 retval = es.es_len - (map->m_lblk - es.es_lblk);
524 if (retval > map->m_len)
525 retval = map->m_len;
526 map->m_len = retval;
527 } else if (ext4_es_is_delayed(&es) || ext4_es_is_hole(&es)) {
Jan Karafacab4d2016-03-09 22:54:00 -0500528 map->m_pblk = 0;
529 retval = es.es_len - (map->m_lblk - es.es_lblk);
530 if (retval > map->m_len)
531 retval = map->m_len;
532 map->m_len = retval;
Zheng Liud100eef2013-02-18 00:29:59 -0500533 retval = 0;
534 } else {
535 BUG_ON(1);
536 }
Dmitry Monakhov921f2662013-03-10 21:01:03 -0400537#ifdef ES_AGGRESSIVE_TEST
538 ext4_map_blocks_es_recheck(handle, inode, map,
539 &orig_map, flags);
540#endif
Zheng Liud100eef2013-02-18 00:29:59 -0500541 goto found;
542 }
543
Aneesh Kumar K.V4df3d262008-01-28 23:58:29 -0500544 /*
Theodore Ts'ob920c752009-05-14 00:54:29 -0400545 * Try to see if we can get the block without requesting a new
546 * file system block.
Aneesh Kumar K.V4df3d262008-01-28 23:58:29 -0500547 */
Jan Kara2dcba472015-12-07 15:04:57 -0500548 down_read(&EXT4_I(inode)->i_data_sem);
Dmitry Monakhov12e9b892010-05-16 22:00:00 -0400549 if (ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS)) {
Dmitry Monakhova4e5d882011-10-25 08:15:12 -0400550 retval = ext4_ext_map_blocks(handle, inode, map, flags &
551 EXT4_GET_BLOCKS_KEEP_SIZE);
Aneesh Kumar K.V0e855ac2008-01-28 23:58:26 -0500552 } else {
Dmitry Monakhova4e5d882011-10-25 08:15:12 -0400553 retval = ext4_ind_map_blocks(handle, inode, map, flags &
554 EXT4_GET_BLOCKS_KEEP_SIZE);
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) &&
Zheng Liuf7fec032013-02-18 00:28:47 -0500571 ext4_find_delalloc_range(inode, map->m_lblk,
572 map->m_lblk + map->m_len - 1))
573 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) {
Jan Kara64e1c572016-11-04 18:08:13 +0100672 clean_bdev_aliases(inode->i_sb->s_bdev, map->m_pblk,
673 map->m_len);
Jan Karac86d8db2015-12-07 15:10:26 -0500674 ret = ext4_issue_zeroout(inode, map->m_lblk,
675 map->m_pblk, map->m_len);
676 if (ret) {
677 retval = ret;
678 goto out_sem;
679 }
680 }
681
682 /*
Zheng Liuadb23552013-03-10 21:13:05 -0400683 * If the extent has been zeroed out, we don't need to update
684 * extent status tree.
685 */
686 if ((flags & EXT4_GET_BLOCKS_PRE_IO) &&
687 ext4_es_lookup_extent(inode, map->m_lblk, &es)) {
688 if (ext4_es_is_written(&es))
Jan Karac86d8db2015-12-07 15:10:26 -0500689 goto out_sem;
Zheng Liuadb23552013-03-10 21:13:05 -0400690 }
Zheng Liuf7fec032013-02-18 00:28:47 -0500691 status = map->m_flags & EXT4_MAP_UNWRITTEN ?
692 EXTENT_STATUS_UNWRITTEN : EXTENT_STATUS_WRITTEN;
693 if (!(flags & EXT4_GET_BLOCKS_DELALLOC_RESERVE) &&
Lukas Czernerd2dc3172015-05-02 21:36:55 -0400694 !(status & EXTENT_STATUS_WRITTEN) &&
Zheng Liuf7fec032013-02-18 00:28:47 -0500695 ext4_find_delalloc_range(inode, map->m_lblk,
696 map->m_lblk + map->m_len - 1))
697 status |= EXTENT_STATUS_DELAYED;
698 ret = ext4_es_insert_extent(inode, map->m_lblk, map->m_len,
699 map->m_pblk, status);
Jan Karac86d8db2015-12-07 15:10:26 -0500700 if (ret < 0) {
Zheng Liuf7fec032013-02-18 00:28:47 -0500701 retval = ret;
Jan Karac86d8db2015-12-07 15:10:26 -0500702 goto out_sem;
703 }
Aditya Kali5356f2612011-09-09 19:20:51 -0400704 }
705
Jan Karac86d8db2015-12-07 15:10:26 -0500706out_sem:
Aneesh Kumar K.V4df3d262008-01-28 23:58:29 -0500707 up_write((&EXT4_I(inode)->i_data_sem));
Theodore Ts'oe35fd662010-05-16 19:00:00 -0400708 if (retval > 0 && map->m_flags & EXT4_MAP_MAPPED) {
Lukas Czernerb8a86842014-03-18 18:05:35 -0400709 ret = check_block_validity(inode, map);
Theodore Ts'o6fd058f2009-05-17 15:38:01 -0400710 if (ret != 0)
711 return ret;
Jan Kara06bd3c32016-04-24 00:56:03 -0400712
713 /*
714 * Inodes with freshly allocated blocks where contents will be
715 * visible after transaction commit must be on transaction's
716 * ordered data list.
717 */
718 if (map->m_flags & EXT4_MAP_NEW &&
719 !(map->m_flags & EXT4_MAP_UNWRITTEN) &&
720 !(flags & EXT4_GET_BLOCKS_ZERO) &&
Tahsin Erdogan02749a42017-06-22 11:31:25 -0400721 !ext4_is_quota_file(inode) &&
Jan Kara06bd3c32016-04-24 00:56:03 -0400722 ext4_should_order_data(inode)) {
Jan Karaee0876b2016-04-24 00:56:08 -0400723 if (flags & EXT4_GET_BLOCKS_IO_SUBMIT)
724 ret = ext4_jbd2_inode_add_wait(handle, inode);
725 else
726 ret = ext4_jbd2_inode_add_write(handle, inode);
Jan Kara06bd3c32016-04-24 00:56:03 -0400727 if (ret)
728 return ret;
729 }
Theodore Ts'o6fd058f2009-05-17 15:38:01 -0400730 }
Aneesh Kumar K.V0e855ac2008-01-28 23:58:26 -0500731 return retval;
732}
733
Jan Karaed8ad832016-02-19 00:18:25 -0500734/*
735 * Update EXT4_MAP_FLAGS in bh->b_state. For buffer heads attached to pages
736 * we have to be careful as someone else may be manipulating b_state as well.
737 */
738static void ext4_update_bh_state(struct buffer_head *bh, unsigned long flags)
739{
740 unsigned long old_state;
741 unsigned long new_state;
742
743 flags &= EXT4_MAP_FLAGS;
744
745 /* Dummy buffer_head? Set non-atomically. */
746 if (!bh->b_page) {
747 bh->b_state = (bh->b_state & ~EXT4_MAP_FLAGS) | flags;
748 return;
749 }
750 /*
751 * Someone else may be modifying b_state. Be careful! This is ugly but
752 * once we get rid of using bh as a container for mapping information
753 * to pass to / from get_block functions, this can go away.
754 */
755 do {
756 old_state = READ_ONCE(bh->b_state);
757 new_state = (old_state & ~EXT4_MAP_FLAGS) | flags;
758 } while (unlikely(
759 cmpxchg(&bh->b_state, old_state, new_state) != old_state));
760}
761
Theodore Ts'o2ed88682010-05-16 20:00:00 -0400762static int _ext4_get_block(struct inode *inode, sector_t iblock,
763 struct buffer_head *bh, int flags)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700764{
Theodore Ts'o2ed88682010-05-16 20:00:00 -0400765 struct ext4_map_blocks map;
Jan Karaefe70c22016-03-08 23:35:46 -0500766 int ret = 0;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700767
Tao Ma46c7f252012-12-10 14:04:52 -0500768 if (ext4_has_inline_data(inode))
769 return -ERANGE;
770
Theodore Ts'o2ed88682010-05-16 20:00:00 -0400771 map.m_lblk = iblock;
772 map.m_len = bh->b_size >> inode->i_blkbits;
773
Jan Karaefe70c22016-03-08 23:35:46 -0500774 ret = ext4_map_blocks(ext4_journal_current_handle(), inode, &map,
775 flags);
Jan Kara7fb54092008-02-10 01:08:38 -0500776 if (ret > 0) {
Theodore Ts'o2ed88682010-05-16 20:00:00 -0400777 map_bh(bh, inode->i_sb, map.m_pblk);
Jan Karaed8ad832016-02-19 00:18:25 -0500778 ext4_update_bh_state(bh, map.m_flags);
Theodore Ts'o2ed88682010-05-16 20:00:00 -0400779 bh->b_size = inode->i_sb->s_blocksize * map.m_len;
Jan Kara7fb54092008-02-10 01:08:38 -0500780 ret = 0;
Ross Zwisler547edce2016-11-08 11:30:58 +1100781 } else if (ret == 0) {
782 /* hole case, need to fill in bh->b_size */
783 bh->b_size = inode->i_sb->s_blocksize * map.m_len;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700784 }
785 return ret;
786}
787
Theodore Ts'o2ed88682010-05-16 20:00:00 -0400788int ext4_get_block(struct inode *inode, sector_t iblock,
789 struct buffer_head *bh, int create)
790{
791 return _ext4_get_block(inode, iblock, bh,
792 create ? EXT4_GET_BLOCKS_CREATE : 0);
793}
794
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700795/*
Jan Kara705965b2016-03-08 23:08:10 -0500796 * Get block function used when preparing for buffered write if we require
797 * creating an unwritten extent if blocks haven't been allocated. The extent
798 * will be converted to written after the IO is complete.
799 */
800int ext4_get_block_unwritten(struct inode *inode, sector_t iblock,
801 struct buffer_head *bh_result, int create)
802{
803 ext4_debug("ext4_get_block_unwritten: inode %lu, create flag %d\n",
804 inode->i_ino, create);
805 return _ext4_get_block(inode, iblock, bh_result,
806 EXT4_GET_BLOCKS_IO_CREATE_EXT);
807}
808
Jan Karaefe70c22016-03-08 23:35:46 -0500809/* Maximum number of blocks we map for direct IO at once. */
810#define DIO_MAX_BLOCKS 4096
811
Jan Karae84dfbe2016-04-01 02:07:22 -0400812/*
813 * Get blocks function for the cases that need to start a transaction -
814 * generally difference cases of direct IO and DAX IO. It also handles retries
815 * in case of ENOSPC.
816 */
817static int ext4_get_block_trans(struct inode *inode, sector_t iblock,
818 struct buffer_head *bh_result, int flags)
Jan Karaefe70c22016-03-08 23:35:46 -0500819{
820 int dio_credits;
Jan Karae84dfbe2016-04-01 02:07:22 -0400821 handle_t *handle;
822 int retries = 0;
823 int ret;
Jan Karaefe70c22016-03-08 23:35:46 -0500824
825 /* Trim mapping request to maximum we can map at once for DIO */
826 if (bh_result->b_size >> inode->i_blkbits > DIO_MAX_BLOCKS)
827 bh_result->b_size = DIO_MAX_BLOCKS << inode->i_blkbits;
828 dio_credits = ext4_chunk_trans_blocks(inode,
829 bh_result->b_size >> inode->i_blkbits);
Jan Karae84dfbe2016-04-01 02:07:22 -0400830retry:
831 handle = ext4_journal_start(inode, EXT4_HT_MAP_BLOCKS, dio_credits);
832 if (IS_ERR(handle))
833 return PTR_ERR(handle);
834
835 ret = _ext4_get_block(inode, iblock, bh_result, flags);
836 ext4_journal_stop(handle);
837
838 if (ret == -ENOSPC && ext4_should_retry_alloc(inode->i_sb, &retries))
839 goto retry;
840 return ret;
Jan Karaefe70c22016-03-08 23:35:46 -0500841}
842
Jan Kara705965b2016-03-08 23:08:10 -0500843/* Get block function for DIO reads and writes to inodes without extents */
844int ext4_dio_get_block(struct inode *inode, sector_t iblock,
845 struct buffer_head *bh, int create)
846{
Jan Karaefe70c22016-03-08 23:35:46 -0500847 /* We don't expect handle for direct IO */
848 WARN_ON_ONCE(ext4_journal_current_handle());
849
Jan Karae84dfbe2016-04-01 02:07:22 -0400850 if (!create)
851 return _ext4_get_block(inode, iblock, bh, 0);
852 return ext4_get_block_trans(inode, iblock, bh, EXT4_GET_BLOCKS_CREATE);
Jan Kara705965b2016-03-08 23:08:10 -0500853}
854
855/*
Jan Kara109811c2016-03-08 23:36:46 -0500856 * Get block function for AIO DIO writes when we create unwritten extent if
Jan Kara705965b2016-03-08 23:08:10 -0500857 * blocks are not allocated yet. The extent will be converted to written
858 * after IO is complete.
859 */
Jan Kara109811c2016-03-08 23:36:46 -0500860static int ext4_dio_get_block_unwritten_async(struct inode *inode,
861 sector_t iblock, struct buffer_head *bh_result, int create)
Jan Kara705965b2016-03-08 23:08:10 -0500862{
Jan Karaefe70c22016-03-08 23:35:46 -0500863 int ret;
864
Jan Karaefe70c22016-03-08 23:35:46 -0500865 /* We don't expect handle for direct IO */
866 WARN_ON_ONCE(ext4_journal_current_handle());
867
Jan Karae84dfbe2016-04-01 02:07:22 -0400868 ret = ext4_get_block_trans(inode, iblock, bh_result,
869 EXT4_GET_BLOCKS_IO_CREATE_EXT);
Jan Karaefe70c22016-03-08 23:35:46 -0500870
Jan Kara109811c2016-03-08 23:36:46 -0500871 /*
872 * When doing DIO using unwritten extents, we need io_end to convert
873 * unwritten extents to written on IO completion. We allocate io_end
874 * once we spot unwritten extent and store it in b_private. Generic
875 * DIO code keeps b_private set and furthermore passes the value to
876 * our completion callback in 'private' argument.
877 */
878 if (!ret && buffer_unwritten(bh_result)) {
879 if (!bh_result->b_private) {
880 ext4_io_end_t *io_end;
881
882 io_end = ext4_init_io_end(inode, GFP_KERNEL);
883 if (!io_end)
884 return -ENOMEM;
885 bh_result->b_private = io_end;
886 ext4_set_io_unwritten_flag(inode, io_end);
887 }
Jan Karaefe70c22016-03-08 23:35:46 -0500888 set_buffer_defer_completion(bh_result);
Jan Karaefe70c22016-03-08 23:35:46 -0500889 }
890
891 return ret;
Jan Kara705965b2016-03-08 23:08:10 -0500892}
893
Jan Kara109811c2016-03-08 23:36:46 -0500894/*
895 * Get block function for non-AIO DIO writes when we create unwritten extent if
896 * blocks are not allocated yet. The extent will be converted to written
Eric Whitney1e211962017-07-30 22:26:40 -0400897 * after IO is complete by ext4_direct_IO_write().
Jan Kara109811c2016-03-08 23:36:46 -0500898 */
899static int ext4_dio_get_block_unwritten_sync(struct inode *inode,
900 sector_t iblock, struct buffer_head *bh_result, int create)
901{
Jan Kara109811c2016-03-08 23:36:46 -0500902 int ret;
903
904 /* We don't expect handle for direct IO */
905 WARN_ON_ONCE(ext4_journal_current_handle());
906
Jan Karae84dfbe2016-04-01 02:07:22 -0400907 ret = ext4_get_block_trans(inode, iblock, bh_result,
908 EXT4_GET_BLOCKS_IO_CREATE_EXT);
Jan Kara109811c2016-03-08 23:36:46 -0500909
910 /*
911 * Mark inode as having pending DIO writes to unwritten extents.
Eric Whitney1e211962017-07-30 22:26:40 -0400912 * ext4_direct_IO_write() checks this flag and converts extents to
Jan Kara109811c2016-03-08 23:36:46 -0500913 * written.
914 */
915 if (!ret && buffer_unwritten(bh_result))
916 ext4_set_inode_state(inode, EXT4_STATE_DIO_UNWRITTEN);
917
918 return ret;
919}
920
Jan Kara705965b2016-03-08 23:08:10 -0500921static int ext4_dio_get_block_overwrite(struct inode *inode, sector_t iblock,
922 struct buffer_head *bh_result, int create)
923{
924 int ret;
925
926 ext4_debug("ext4_dio_get_block_overwrite: inode %lu, create flag %d\n",
927 inode->i_ino, create);
Jan Karaefe70c22016-03-08 23:35:46 -0500928 /* We don't expect handle for direct IO */
929 WARN_ON_ONCE(ext4_journal_current_handle());
930
Jan Kara705965b2016-03-08 23:08:10 -0500931 ret = _ext4_get_block(inode, iblock, bh_result, 0);
932 /*
933 * Blocks should have been preallocated! ext4_file_write_iter() checks
934 * that.
935 */
Jan Karaefe70c22016-03-08 23:35:46 -0500936 WARN_ON_ONCE(!buffer_mapped(bh_result) || buffer_unwritten(bh_result));
Jan Kara705965b2016-03-08 23:08:10 -0500937
938 return ret;
939}
940
941
942/*
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700943 * `handle' can be NULL if create is zero
944 */
Mingming Cao617ba132006-10-11 01:20:53 -0700945struct buffer_head *ext4_getblk(handle_t *handle, struct inode *inode,
Theodore Ts'oc5e298a2015-06-21 01:25:29 -0400946 ext4_lblk_t block, int map_flags)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700947{
Theodore Ts'o2ed88682010-05-16 20:00:00 -0400948 struct ext4_map_blocks map;
949 struct buffer_head *bh;
Theodore Ts'oc5e298a2015-06-21 01:25:29 -0400950 int create = map_flags & EXT4_GET_BLOCKS_CREATE;
Theodore Ts'o10560082014-08-29 20:51:32 -0400951 int err;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700952
953 J_ASSERT(handle != NULL || create == 0);
954
Theodore Ts'o2ed88682010-05-16 20:00:00 -0400955 map.m_lblk = block;
956 map.m_len = 1;
Theodore Ts'oc5e298a2015-06-21 01:25:29 -0400957 err = ext4_map_blocks(handle, inode, &map, map_flags);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700958
Theodore Ts'o10560082014-08-29 20:51:32 -0400959 if (err == 0)
960 return create ? ERR_PTR(-ENOSPC) : NULL;
Theodore Ts'o2ed88682010-05-16 20:00:00 -0400961 if (err < 0)
Theodore Ts'o10560082014-08-29 20:51:32 -0400962 return ERR_PTR(err);
Theodore Ts'o2ed88682010-05-16 20:00:00 -0400963
964 bh = sb_getblk(inode->i_sb, map.m_pblk);
Theodore Ts'o10560082014-08-29 20:51:32 -0400965 if (unlikely(!bh))
966 return ERR_PTR(-ENOMEM);
Theodore Ts'o2ed88682010-05-16 20:00:00 -0400967 if (map.m_flags & EXT4_MAP_NEW) {
968 J_ASSERT(create != 0);
969 J_ASSERT(handle != NULL);
970
971 /*
972 * Now that we do not always journal data, we should
973 * keep in mind whether this should always journal the
974 * new buffer as metadata. For now, regular file
975 * writes use ext4_get_block instead, so it's not a
976 * problem.
977 */
978 lock_buffer(bh);
979 BUFFER_TRACE(bh, "call get_create_access");
Theodore Ts'o10560082014-08-29 20:51:32 -0400980 err = ext4_journal_get_create_access(handle, bh);
981 if (unlikely(err)) {
982 unlock_buffer(bh);
983 goto errout;
984 }
985 if (!buffer_uptodate(bh)) {
Theodore Ts'o2ed88682010-05-16 20:00:00 -0400986 memset(bh->b_data, 0, inode->i_sb->s_blocksize);
987 set_buffer_uptodate(bh);
988 }
989 unlock_buffer(bh);
990 BUFFER_TRACE(bh, "call ext4_handle_dirty_metadata");
991 err = ext4_handle_dirty_metadata(handle, inode, bh);
Theodore Ts'o10560082014-08-29 20:51:32 -0400992 if (unlikely(err))
993 goto errout;
994 } else
Theodore Ts'o2ed88682010-05-16 20:00:00 -0400995 BUFFER_TRACE(bh, "not a new buffer");
Theodore Ts'o2ed88682010-05-16 20:00:00 -0400996 return bh;
Theodore Ts'o10560082014-08-29 20:51:32 -0400997errout:
998 brelse(bh);
999 return ERR_PTR(err);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001000}
1001
Mingming Cao617ba132006-10-11 01:20:53 -07001002struct buffer_head *ext4_bread(handle_t *handle, struct inode *inode,
Theodore Ts'oc5e298a2015-06-21 01:25:29 -04001003 ext4_lblk_t block, int map_flags)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001004{
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04001005 struct buffer_head *bh;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001006
Theodore Ts'oc5e298a2015-06-21 01:25:29 -04001007 bh = ext4_getblk(handle, inode, block, map_flags);
Theodore Ts'o1c215022014-08-29 20:52:15 -04001008 if (IS_ERR(bh))
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001009 return bh;
Theodore Ts'o1c215022014-08-29 20:52:15 -04001010 if (!bh || buffer_uptodate(bh))
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001011 return bh;
Mike Christiedfec8a12016-06-05 14:31:44 -05001012 ll_rw_block(REQ_OP_READ, REQ_META | REQ_PRIO, 1, &bh);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001013 wait_on_buffer(bh);
1014 if (buffer_uptodate(bh))
1015 return bh;
1016 put_bh(bh);
Theodore Ts'o1c215022014-08-29 20:52:15 -04001017 return ERR_PTR(-EIO);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001018}
1019
Tahsin Erdogan9699d4f2017-08-06 00:07:01 -04001020/* Read a contiguous batch of blocks. */
1021int ext4_bread_batch(struct inode *inode, ext4_lblk_t block, int bh_count,
1022 bool wait, struct buffer_head **bhs)
1023{
1024 int i, err;
1025
1026 for (i = 0; i < bh_count; i++) {
1027 bhs[i] = ext4_getblk(NULL, inode, block + i, 0 /* map_flags */);
1028 if (IS_ERR(bhs[i])) {
1029 err = PTR_ERR(bhs[i]);
1030 bh_count = i;
1031 goto out_brelse;
1032 }
1033 }
1034
1035 for (i = 0; i < bh_count; i++)
1036 /* Note that NULL bhs[i] is valid because of holes. */
1037 if (bhs[i] && !buffer_uptodate(bhs[i]))
1038 ll_rw_block(REQ_OP_READ, REQ_META | REQ_PRIO, 1,
1039 &bhs[i]);
1040
1041 if (!wait)
1042 return 0;
1043
1044 for (i = 0; i < bh_count; i++)
1045 if (bhs[i])
1046 wait_on_buffer(bhs[i]);
1047
1048 for (i = 0; i < bh_count; i++) {
1049 if (bhs[i] && !buffer_uptodate(bhs[i])) {
1050 err = -EIO;
1051 goto out_brelse;
1052 }
1053 }
1054 return 0;
1055
1056out_brelse:
1057 for (i = 0; i < bh_count; i++) {
1058 brelse(bhs[i]);
1059 bhs[i] = NULL;
1060 }
1061 return err;
1062}
1063
Tao Maf19d5872012-12-10 14:05:51 -05001064int ext4_walk_page_buffers(handle_t *handle,
1065 struct buffer_head *head,
1066 unsigned from,
1067 unsigned to,
1068 int *partial,
1069 int (*fn)(handle_t *handle,
1070 struct buffer_head *bh))
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001071{
1072 struct buffer_head *bh;
1073 unsigned block_start, block_end;
1074 unsigned blocksize = head->b_size;
1075 int err, ret = 0;
1076 struct buffer_head *next;
1077
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04001078 for (bh = head, block_start = 0;
1079 ret == 0 && (bh != head || !block_start);
Theodore Ts'ode9a55b2009-06-14 17:45:34 -04001080 block_start = block_end, bh = next) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001081 next = bh->b_this_page;
1082 block_end = block_start + blocksize;
1083 if (block_end <= from || block_start >= to) {
1084 if (partial && !buffer_uptodate(bh))
1085 *partial = 1;
1086 continue;
1087 }
1088 err = (*fn)(handle, bh);
1089 if (!ret)
1090 ret = err;
1091 }
1092 return ret;
1093}
1094
1095/*
1096 * To preserve ordering, it is essential that the hole instantiation and
1097 * the data write be encapsulated in a single transaction. We cannot
Mingming Cao617ba132006-10-11 01:20:53 -07001098 * close off a transaction and start a new one between the ext4_get_block()
Mingming Caodab291a2006-10-11 01:21:01 -07001099 * and the commit_write(). So doing the jbd2_journal_start at the start of
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001100 * prepare_write() is the right place.
1101 *
Jan Kara36ade452013-01-28 09:30:52 -05001102 * Also, this function can nest inside ext4_writepage(). In that case, we
1103 * *know* that ext4_writepage() has generated enough buffer credits to do the
1104 * whole page. So we won't block on the journal in that case, which is good,
1105 * because the caller may be PF_MEMALLOC.
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001106 *
Mingming Cao617ba132006-10-11 01:20:53 -07001107 * By accident, ext4 can be reentered when a transaction is open via
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001108 * quota file writes. If we were to commit the transaction while thus
1109 * reentered, there can be a deadlock - we would be holding a quota
1110 * lock, and the commit would never complete if another thread had a
1111 * transaction open and was blocking on the quota lock - a ranking
1112 * violation.
1113 *
Mingming Caodab291a2006-10-11 01:21:01 -07001114 * So what we do is to rely on the fact that jbd2_journal_stop/journal_start
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001115 * will _not_ run commit under these circumstances because handle->h_ref
1116 * is elevated. We'll still have enough credits for the tiny quotafile
1117 * write.
1118 */
Tao Maf19d5872012-12-10 14:05:51 -05001119int do_journal_get_write_access(handle_t *handle,
1120 struct buffer_head *bh)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001121{
Jan Kara56d35a42010-08-05 14:41:42 -04001122 int dirty = buffer_dirty(bh);
1123 int ret;
1124
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001125 if (!buffer_mapped(bh) || buffer_freed(bh))
1126 return 0;
Jan Kara56d35a42010-08-05 14:41:42 -04001127 /*
Christoph Hellwigebdec242010-10-06 10:47:23 +02001128 * __block_write_begin() could have dirtied some buffers. Clean
Jan Kara56d35a42010-08-05 14:41:42 -04001129 * the dirty bit as jbd2_journal_get_write_access() could complain
1130 * otherwise about fs integrity issues. Setting of the dirty bit
Christoph Hellwigebdec242010-10-06 10:47:23 +02001131 * by __block_write_begin() isn't a real problem here as we clear
Jan Kara56d35a42010-08-05 14:41:42 -04001132 * the bit before releasing a page lock and thus writeback cannot
1133 * ever write the buffer.
1134 */
1135 if (dirty)
1136 clear_buffer_dirty(bh);
liang xie5d601252014-05-12 22:06:43 -04001137 BUFFER_TRACE(bh, "get write access");
Jan Kara56d35a42010-08-05 14:41:42 -04001138 ret = ext4_journal_get_write_access(handle, bh);
1139 if (!ret && dirty)
1140 ret = ext4_handle_dirty_metadata(handle, NULL, bh);
1141 return ret;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001142}
1143
Michael Halcrow2058f832015-04-12 00:55:10 -04001144#ifdef CONFIG_EXT4_FS_ENCRYPTION
1145static int ext4_block_write_begin(struct page *page, loff_t pos, unsigned len,
1146 get_block_t *get_block)
1147{
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001148 unsigned from = pos & (PAGE_SIZE - 1);
Michael Halcrow2058f832015-04-12 00:55:10 -04001149 unsigned to = from + len;
1150 struct inode *inode = page->mapping->host;
1151 unsigned block_start, block_end;
1152 sector_t block;
1153 int err = 0;
1154 unsigned blocksize = inode->i_sb->s_blocksize;
1155 unsigned bbits;
1156 struct buffer_head *bh, *head, *wait[2], **wait_bh = wait;
1157 bool decrypt = false;
1158
1159 BUG_ON(!PageLocked(page));
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001160 BUG_ON(from > PAGE_SIZE);
1161 BUG_ON(to > PAGE_SIZE);
Michael Halcrow2058f832015-04-12 00:55:10 -04001162 BUG_ON(from > to);
1163
1164 if (!page_has_buffers(page))
1165 create_empty_buffers(page, blocksize, 0);
1166 head = page_buffers(page);
1167 bbits = ilog2(blocksize);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001168 block = (sector_t)page->index << (PAGE_SHIFT - bbits);
Michael Halcrow2058f832015-04-12 00:55:10 -04001169
1170 for (bh = head, block_start = 0; bh != head || !block_start;
1171 block++, block_start = block_end, bh = bh->b_this_page) {
1172 block_end = block_start + blocksize;
1173 if (block_end <= from || block_start >= to) {
1174 if (PageUptodate(page)) {
1175 if (!buffer_uptodate(bh))
1176 set_buffer_uptodate(bh);
1177 }
1178 continue;
1179 }
1180 if (buffer_new(bh))
1181 clear_buffer_new(bh);
1182 if (!buffer_mapped(bh)) {
1183 WARN_ON(bh->b_size != blocksize);
1184 err = get_block(inode, block, bh, 1);
1185 if (err)
1186 break;
1187 if (buffer_new(bh)) {
Jan Karae64855c2016-11-04 18:08:15 +01001188 clean_bdev_bh_alias(bh);
Michael Halcrow2058f832015-04-12 00:55:10 -04001189 if (PageUptodate(page)) {
1190 clear_buffer_new(bh);
1191 set_buffer_uptodate(bh);
1192 mark_buffer_dirty(bh);
1193 continue;
1194 }
1195 if (block_end > to || block_start < from)
1196 zero_user_segments(page, to, block_end,
1197 block_start, from);
1198 continue;
1199 }
1200 }
1201 if (PageUptodate(page)) {
1202 if (!buffer_uptodate(bh))
1203 set_buffer_uptodate(bh);
1204 continue;
1205 }
1206 if (!buffer_uptodate(bh) && !buffer_delay(bh) &&
1207 !buffer_unwritten(bh) &&
1208 (block_start < from || block_end > to)) {
Mike Christiedfec8a12016-06-05 14:31:44 -05001209 ll_rw_block(REQ_OP_READ, 0, 1, &bh);
Michael Halcrow2058f832015-04-12 00:55:10 -04001210 *wait_bh++ = bh;
1211 decrypt = ext4_encrypted_inode(inode) &&
1212 S_ISREG(inode->i_mode);
1213 }
1214 }
1215 /*
1216 * If we issued read requests, let them complete.
1217 */
1218 while (wait_bh > wait) {
1219 wait_on_buffer(*--wait_bh);
1220 if (!buffer_uptodate(*wait_bh))
1221 err = -EIO;
1222 }
1223 if (unlikely(err))
1224 page_zero_new_buffers(page, from, to);
1225 else if (decrypt)
David Gstir7821d4d2016-11-13 22:20:46 +01001226 err = fscrypt_decrypt_page(page->mapping->host, page,
David Gstir9c4bb8a2016-11-13 22:20:48 +01001227 PAGE_SIZE, 0, page->index);
Michael Halcrow2058f832015-04-12 00:55:10 -04001228 return err;
1229}
1230#endif
1231
Nick Pigginbfc1af62007-10-16 01:25:05 -07001232static int ext4_write_begin(struct file *file, struct address_space *mapping,
Theodore Ts'ode9a55b2009-06-14 17:45:34 -04001233 loff_t pos, unsigned len, unsigned flags,
1234 struct page **pagep, void **fsdata)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001235{
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04001236 struct inode *inode = mapping->host;
Aneesh Kumar K.V1938a152009-06-05 01:00:26 -04001237 int ret, needed_blocks;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001238 handle_t *handle;
1239 int retries = 0;
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04001240 struct page *page;
Theodore Ts'ode9a55b2009-06-14 17:45:34 -04001241 pgoff_t index;
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04001242 unsigned from, to;
Nick Pigginbfc1af62007-10-16 01:25:05 -07001243
Theodore Ts'o0db1ff22017-02-05 01:28:48 -05001244 if (unlikely(ext4_forced_shutdown(EXT4_SB(inode->i_sb))))
1245 return -EIO;
1246
Theodore Ts'o9bffad12009-06-17 11:48:11 -04001247 trace_ext4_write_begin(inode, pos, len, flags);
Aneesh Kumar K.V1938a152009-06-05 01:00:26 -04001248 /*
1249 * Reserve one block more for addition to orphan list in case
1250 * we allocate blocks but write fails for some reason
1251 */
1252 needed_blocks = ext4_writepage_trans_blocks(inode) + 1;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001253 index = pos >> PAGE_SHIFT;
1254 from = pos & (PAGE_SIZE - 1);
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04001255 to = from + len;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001256
Tao Maf19d5872012-12-10 14:05:51 -05001257 if (ext4_test_inode_state(inode, EXT4_STATE_MAY_INLINE_DATA)) {
1258 ret = ext4_try_to_write_inline_data(mapping, inode, pos, len,
1259 flags, pagep);
1260 if (ret < 0)
Theodore Ts'o47564bf2013-02-09 09:24:14 -05001261 return ret;
1262 if (ret == 1)
1263 return 0;
Tao Maf19d5872012-12-10 14:05:51 -05001264 }
1265
Theodore Ts'o47564bf2013-02-09 09:24:14 -05001266 /*
1267 * grab_cache_page_write_begin() can take a long time if the
1268 * system is thrashing due to memory pressure, or if the page
1269 * is being written back. So grab it first before we start
1270 * the transaction handle. This also allows us to allocate
1271 * the page (if needed) without using GFP_NOFS.
1272 */
1273retry_grab:
Nick Piggin54566b22009-01-04 12:00:53 -08001274 page = grab_cache_page_write_begin(mapping, index, flags);
Theodore Ts'o47564bf2013-02-09 09:24:14 -05001275 if (!page)
1276 return -ENOMEM;
1277 unlock_page(page);
1278
1279retry_journal:
Theodore Ts'o9924a922013-02-08 21:59:22 -05001280 handle = ext4_journal_start(inode, EXT4_HT_WRITE_PAGE, needed_blocks);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001281 if (IS_ERR(handle)) {
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001282 put_page(page);
Theodore Ts'o47564bf2013-02-09 09:24:14 -05001283 return PTR_ERR(handle);
Jan Karacf108bc2008-07-11 19:27:31 -04001284 }
Tao Maf19d5872012-12-10 14:05:51 -05001285
Theodore Ts'o47564bf2013-02-09 09:24:14 -05001286 lock_page(page);
1287 if (page->mapping != mapping) {
1288 /* The page got truncated from under us */
1289 unlock_page(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001290 put_page(page);
Jan Karacf108bc2008-07-11 19:27:31 -04001291 ext4_journal_stop(handle);
Theodore Ts'o47564bf2013-02-09 09:24:14 -05001292 goto retry_grab;
Jan Karacf108bc2008-07-11 19:27:31 -04001293 }
Dmitry Monakhov7afe5aa2013-08-28 14:30:47 -04001294 /* In case writeback began while the page was unlocked */
1295 wait_for_stable_page(page);
Jan Karacf108bc2008-07-11 19:27:31 -04001296
Michael Halcrow2058f832015-04-12 00:55:10 -04001297#ifdef CONFIG_EXT4_FS_ENCRYPTION
1298 if (ext4_should_dioread_nolock(inode))
1299 ret = ext4_block_write_begin(page, pos, len,
Jan Kara705965b2016-03-08 23:08:10 -05001300 ext4_get_block_unwritten);
Michael Halcrow2058f832015-04-12 00:55:10 -04001301 else
1302 ret = ext4_block_write_begin(page, pos, len,
1303 ext4_get_block);
1304#else
Jiaying Zhang744692d2010-03-04 16:14:02 -05001305 if (ext4_should_dioread_nolock(inode))
Jan Kara705965b2016-03-08 23:08:10 -05001306 ret = __block_write_begin(page, pos, len,
1307 ext4_get_block_unwritten);
Jiaying Zhang744692d2010-03-04 16:14:02 -05001308 else
Christoph Hellwig6e1db882010-06-04 11:29:57 +02001309 ret = __block_write_begin(page, pos, len, ext4_get_block);
Michael Halcrow2058f832015-04-12 00:55:10 -04001310#endif
Nick Pigginbfc1af62007-10-16 01:25:05 -07001311 if (!ret && ext4_should_journal_data(inode)) {
Tao Maf19d5872012-12-10 14:05:51 -05001312 ret = ext4_walk_page_buffers(handle, page_buffers(page),
1313 from, to, NULL,
1314 do_journal_get_write_access);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001315 }
Nick Pigginbfc1af62007-10-16 01:25:05 -07001316
1317 if (ret) {
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04001318 unlock_page(page);
Aneesh Kumar K.Vae4d5372008-09-13 13:10:25 -04001319 /*
Christoph Hellwig6e1db882010-06-04 11:29:57 +02001320 * __block_write_begin may have instantiated a few blocks
Aneesh Kumar K.Vae4d5372008-09-13 13:10:25 -04001321 * outside i_size. Trim these off again. Don't need
1322 * i_size_read because we hold i_mutex.
Aneesh Kumar K.V1938a152009-06-05 01:00:26 -04001323 *
1324 * Add inode to orphan list in case we crash before
1325 * truncate finishes
Aneesh Kumar K.Vae4d5372008-09-13 13:10:25 -04001326 */
Jan Karaffacfa72009-07-13 16:22:22 -04001327 if (pos + len > inode->i_size && ext4_can_truncate(inode))
Aneesh Kumar K.V1938a152009-06-05 01:00:26 -04001328 ext4_orphan_add(handle, inode);
1329
1330 ext4_journal_stop(handle);
1331 if (pos + len > inode->i_size) {
Jan Karab9a42072009-12-08 21:24:33 -05001332 ext4_truncate_failed_write(inode);
Theodore Ts'ode9a55b2009-06-14 17:45:34 -04001333 /*
Jan Karaffacfa72009-07-13 16:22:22 -04001334 * If truncate failed early the inode might
Aneesh Kumar K.V1938a152009-06-05 01:00:26 -04001335 * still be on the orphan list; we need to
1336 * make sure the inode is removed from the
1337 * orphan list in that case.
1338 */
1339 if (inode->i_nlink)
1340 ext4_orphan_del(NULL, inode);
1341 }
Nick Pigginbfc1af62007-10-16 01:25:05 -07001342
Theodore Ts'o47564bf2013-02-09 09:24:14 -05001343 if (ret == -ENOSPC &&
1344 ext4_should_retry_alloc(inode->i_sb, &retries))
1345 goto retry_journal;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001346 put_page(page);
Theodore Ts'o47564bf2013-02-09 09:24:14 -05001347 return ret;
1348 }
1349 *pagep = page;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001350 return ret;
1351}
1352
Nick Pigginbfc1af62007-10-16 01:25:05 -07001353/* For write_end() in data=journal mode */
1354static int write_end_fn(handle_t *handle, struct buffer_head *bh)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001355{
Theodore Ts'o13fca322013-04-21 16:45:54 -04001356 int ret;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001357 if (!buffer_mapped(bh) || buffer_freed(bh))
1358 return 0;
1359 set_buffer_uptodate(bh);
Theodore Ts'o13fca322013-04-21 16:45:54 -04001360 ret = ext4_handle_dirty_metadata(handle, NULL, bh);
1361 clear_buffer_meta(bh);
1362 clear_buffer_prio(bh);
1363 return ret;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001364}
1365
Zheng Liueed43332013-04-03 12:41:17 -04001366/*
1367 * We need to pick up the new inode size which generic_commit_write gave us
1368 * `file' can be NULL - eg, when called from page_symlink().
1369 *
1370 * ext4 never places buffers on inode->i_mapping->private_list. metadata
1371 * buffers are managed internally.
1372 */
1373static int ext4_write_end(struct file *file,
1374 struct address_space *mapping,
1375 loff_t pos, unsigned len, unsigned copied,
1376 struct page *page, void *fsdata)
Aneesh Kumar K.Vf8514082009-06-05 00:56:49 -04001377{
Aneesh Kumar K.Vf8514082009-06-05 00:56:49 -04001378 handle_t *handle = ext4_journal_current_handle();
Zheng Liueed43332013-04-03 12:41:17 -04001379 struct inode *inode = mapping->host;
Xiaoguang Wang05726392015-02-12 23:00:17 -05001380 loff_t old_size = inode->i_size;
Zheng Liueed43332013-04-03 12:41:17 -04001381 int ret = 0, ret2;
1382 int i_size_changed = 0;
1383
1384 trace_ext4_write_end(inode, pos, len, copied);
Theodore Ts'o42c832d2013-07-01 08:12:39 -04001385 if (ext4_has_inline_data(inode)) {
1386 ret = ext4_write_inline_data_end(inode, pos, len,
1387 copied, page);
Theodore Ts'oeb5efbc2017-02-04 23:04:00 -05001388 if (ret < 0) {
1389 unlock_page(page);
1390 put_page(page);
Theodore Ts'o42c832d2013-07-01 08:12:39 -04001391 goto errout;
Theodore Ts'oeb5efbc2017-02-04 23:04:00 -05001392 }
Theodore Ts'o42c832d2013-07-01 08:12:39 -04001393 copied = ret;
1394 } else
Tao Maf19d5872012-12-10 14:05:51 -05001395 copied = block_write_end(file, mapping, pos,
1396 len, copied, page, fsdata);
Aneesh Kumar K.Vf8514082009-06-05 00:56:49 -04001397 /*
Dmitry Monakhov4631dbf2014-08-23 17:48:28 -04001398 * it's important to update i_size while still holding page lock:
Aneesh Kumar K.Vf8514082009-06-05 00:56:49 -04001399 * page writeout could otherwise come in and zero beyond i_size.
1400 */
Dmitry Monakhov4631dbf2014-08-23 17:48:28 -04001401 i_size_changed = ext4_update_inode_size(inode, pos + copied);
Aneesh Kumar K.Vf8514082009-06-05 00:56:49 -04001402 unlock_page(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001403 put_page(page);
Aneesh Kumar K.Vf8514082009-06-05 00:56:49 -04001404
Xiaoguang Wang05726392015-02-12 23:00:17 -05001405 if (old_size < pos)
1406 pagecache_isize_extended(inode, old_size, pos);
Aneesh Kumar K.Vf8514082009-06-05 00:56:49 -04001407 /*
1408 * Don't mark the inode dirty under page lock. First, it unnecessarily
1409 * makes the holding time of page lock longer. Second, it forces lock
1410 * ordering of page lock and transaction start for journaling
1411 * filesystems.
1412 */
1413 if (i_size_changed)
1414 ext4_mark_inode_dirty(handle, inode);
1415
Jan Karaffacfa72009-07-13 16:22:22 -04001416 if (pos + len > inode->i_size && ext4_can_truncate(inode))
Aneesh Kumar K.Vf8514082009-06-05 00:56:49 -04001417 /* if we have allocated more blocks and copied
1418 * less. We will have blocks allocated outside
1419 * inode->i_size. So truncate them
1420 */
1421 ext4_orphan_add(handle, inode);
Theodore Ts'o74d553a2013-04-03 12:39:17 -04001422errout:
Mingming Cao617ba132006-10-11 01:20:53 -07001423 ret2 = ext4_journal_stop(handle);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001424 if (!ret)
1425 ret = ret2;
Nick Pigginbfc1af62007-10-16 01:25:05 -07001426
Aneesh Kumar K.Vf8514082009-06-05 00:56:49 -04001427 if (pos + len > inode->i_size) {
Jan Karab9a42072009-12-08 21:24:33 -05001428 ext4_truncate_failed_write(inode);
Theodore Ts'ode9a55b2009-06-14 17:45:34 -04001429 /*
Jan Karaffacfa72009-07-13 16:22:22 -04001430 * If truncate failed early the inode might still be
Aneesh Kumar K.Vf8514082009-06-05 00:56:49 -04001431 * on the orphan list; we need to make sure the inode
1432 * is removed from the orphan list in that case.
1433 */
1434 if (inode->i_nlink)
1435 ext4_orphan_del(NULL, inode);
1436 }
1437
Nick Pigginbfc1af62007-10-16 01:25:05 -07001438 return ret ? ret : copied;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001439}
1440
Theodore Ts'ob90197b2015-10-15 10:29:05 -04001441/*
1442 * This is a private version of page_zero_new_buffers() which doesn't
1443 * set the buffer to be dirty, since in data=journalled mode we need
1444 * to call ext4_handle_dirty_metadata() instead.
1445 */
Jan Kara3b136492017-01-27 14:35:38 -05001446static void ext4_journalled_zero_new_buffers(handle_t *handle,
1447 struct page *page,
1448 unsigned from, unsigned to)
Theodore Ts'ob90197b2015-10-15 10:29:05 -04001449{
1450 unsigned int block_start = 0, block_end;
1451 struct buffer_head *head, *bh;
1452
1453 bh = head = page_buffers(page);
1454 do {
1455 block_end = block_start + bh->b_size;
1456 if (buffer_new(bh)) {
1457 if (block_end > from && block_start < to) {
1458 if (!PageUptodate(page)) {
1459 unsigned start, size;
1460
1461 start = max(from, block_start);
1462 size = min(to, block_end) - start;
1463
1464 zero_user(page, start, size);
Jan Kara3b136492017-01-27 14:35:38 -05001465 write_end_fn(handle, bh);
Theodore Ts'ob90197b2015-10-15 10:29:05 -04001466 }
1467 clear_buffer_new(bh);
1468 }
1469 }
1470 block_start = block_end;
1471 bh = bh->b_this_page;
1472 } while (bh != head);
1473}
1474
Nick Pigginbfc1af62007-10-16 01:25:05 -07001475static int ext4_journalled_write_end(struct file *file,
Theodore Ts'ode9a55b2009-06-14 17:45:34 -04001476 struct address_space *mapping,
1477 loff_t pos, unsigned len, unsigned copied,
1478 struct page *page, void *fsdata)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001479{
Mingming Cao617ba132006-10-11 01:20:53 -07001480 handle_t *handle = ext4_journal_current_handle();
Nick Pigginbfc1af62007-10-16 01:25:05 -07001481 struct inode *inode = mapping->host;
Xiaoguang Wang05726392015-02-12 23:00:17 -05001482 loff_t old_size = inode->i_size;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001483 int ret = 0, ret2;
1484 int partial = 0;
Nick Pigginbfc1af62007-10-16 01:25:05 -07001485 unsigned from, to;
Dmitry Monakhov4631dbf2014-08-23 17:48:28 -04001486 int size_changed = 0;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001487
Theodore Ts'o9bffad12009-06-17 11:48:11 -04001488 trace_ext4_journalled_write_end(inode, pos, len, copied);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001489 from = pos & (PAGE_SIZE - 1);
Nick Pigginbfc1af62007-10-16 01:25:05 -07001490 to = from + len;
1491
Curt Wohlgemuth441c8502011-08-13 11:25:18 -04001492 BUG_ON(!ext4_handle_valid(handle));
1493
Theodore Ts'oeb5efbc2017-02-04 23:04:00 -05001494 if (ext4_has_inline_data(inode)) {
1495 ret = ext4_write_inline_data_end(inode, pos, len,
1496 copied, page);
1497 if (ret < 0) {
1498 unlock_page(page);
1499 put_page(page);
1500 goto errout;
1501 }
1502 copied = ret;
1503 } else if (unlikely(copied < len) && !PageUptodate(page)) {
Jan Kara3b136492017-01-27 14:35:38 -05001504 copied = 0;
1505 ext4_journalled_zero_new_buffers(handle, page, from, to);
1506 } else {
1507 if (unlikely(copied < len))
1508 ext4_journalled_zero_new_buffers(handle, page,
1509 from + copied, to);
Tao Ma3fdcfb62012-12-10 14:05:57 -05001510 ret = ext4_walk_page_buffers(handle, page_buffers(page), from,
Jan Kara3b136492017-01-27 14:35:38 -05001511 from + copied, &partial,
1512 write_end_fn);
Tao Ma3fdcfb62012-12-10 14:05:57 -05001513 if (!partial)
1514 SetPageUptodate(page);
1515 }
Dmitry Monakhov4631dbf2014-08-23 17:48:28 -04001516 size_changed = ext4_update_inode_size(inode, pos + copied);
Theodore Ts'o19f5fb72010-01-24 14:34:07 -05001517 ext4_set_inode_state(inode, EXT4_STATE_JDATA);
Jan Kara2d859db2011-07-26 09:07:11 -04001518 EXT4_I(inode)->i_datasync_tid = handle->h_transaction->t_tid;
Dmitry Monakhov4631dbf2014-08-23 17:48:28 -04001519 unlock_page(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001520 put_page(page);
Dmitry Monakhov4631dbf2014-08-23 17:48:28 -04001521
Xiaoguang Wang05726392015-02-12 23:00:17 -05001522 if (old_size < pos)
1523 pagecache_isize_extended(inode, old_size, pos);
1524
Dmitry Monakhov4631dbf2014-08-23 17:48:28 -04001525 if (size_changed) {
Mingming Cao617ba132006-10-11 01:20:53 -07001526 ret2 = ext4_mark_inode_dirty(handle, inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001527 if (!ret)
1528 ret = ret2;
1529 }
Nick Pigginbfc1af62007-10-16 01:25:05 -07001530
Jan Karaffacfa72009-07-13 16:22:22 -04001531 if (pos + len > inode->i_size && ext4_can_truncate(inode))
Aneesh Kumar K.Vf8514082009-06-05 00:56:49 -04001532 /* if we have allocated more blocks and copied
1533 * less. We will have blocks allocated outside
1534 * inode->i_size. So truncate them
1535 */
1536 ext4_orphan_add(handle, inode);
1537
Theodore Ts'oeb5efbc2017-02-04 23:04:00 -05001538errout:
Mingming Cao617ba132006-10-11 01:20:53 -07001539 ret2 = ext4_journal_stop(handle);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001540 if (!ret)
1541 ret = ret2;
Aneesh Kumar K.Vf8514082009-06-05 00:56:49 -04001542 if (pos + len > inode->i_size) {
Jan Karab9a42072009-12-08 21:24:33 -05001543 ext4_truncate_failed_write(inode);
Theodore Ts'ode9a55b2009-06-14 17:45:34 -04001544 /*
Jan Karaffacfa72009-07-13 16:22:22 -04001545 * If truncate failed early the inode might still be
Aneesh Kumar K.Vf8514082009-06-05 00:56:49 -04001546 * on the orphan list; we need to make sure the inode
1547 * is removed from the orphan list in that case.
1548 */
1549 if (inode->i_nlink)
1550 ext4_orphan_del(NULL, inode);
1551 }
Nick Pigginbfc1af62007-10-16 01:25:05 -07001552
1553 return ret ? ret : copied;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001554}
Mingming Caod2a17632008-07-14 17:52:37 -04001555
Theodore Ts'o9d0be502010-01-01 02:41:30 -05001556/*
Eric Whitneyc27e43a2015-06-21 21:37:05 -04001557 * Reserve space for a single cluster
Theodore Ts'o9d0be502010-01-01 02:41:30 -05001558 */
Eric Whitneyc27e43a2015-06-21 21:37:05 -04001559static int ext4_da_reserve_space(struct inode *inode)
Mingming Caod2a17632008-07-14 17:52:37 -04001560{
Mingming Cao60e58e02009-01-22 18:13:05 +01001561 struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb);
Theodore Ts'o0637c6f42009-12-30 14:20:45 -05001562 struct ext4_inode_info *ei = EXT4_I(inode);
Christoph Hellwig5dd40562010-03-03 09:05:00 -05001563 int ret;
Mingming Caod2a17632008-07-14 17:52:37 -04001564
Mingming Cao60e58e02009-01-22 18:13:05 +01001565 /*
Eric Sandeen72b8ab92010-05-16 11:00:00 -04001566 * We will charge metadata quota at writeout time; this saves
1567 * us from metadata over-estimation, though we may go over by
1568 * a small amount in the end. Here we just reserve for data.
Mingming Cao60e58e02009-01-22 18:13:05 +01001569 */
Aditya Kali7b415bf2011-09-09 19:04:51 -04001570 ret = dquot_reserve_block(inode, EXT4_C2B(sbi, 1));
Christoph Hellwig5dd40562010-03-03 09:05:00 -05001571 if (ret)
1572 return ret;
Theodore Ts'o03179fe2012-07-23 00:00:20 -04001573
Theodore Ts'o03179fe2012-07-23 00:00:20 -04001574 spin_lock(&ei->i_block_reservation_lock);
Theodore Ts'o71d4f7d2014-07-15 06:02:38 -04001575 if (ext4_claim_free_clusters(sbi, 1, 0)) {
Theodore Ts'o03179fe2012-07-23 00:00:20 -04001576 spin_unlock(&ei->i_block_reservation_lock);
Theodore Ts'o03179fe2012-07-23 00:00:20 -04001577 dquot_release_reservation_block(inode, EXT4_C2B(sbi, 1));
Mingming Caod2a17632008-07-14 17:52:37 -04001578 return -ENOSPC;
1579 }
Theodore Ts'o9d0be502010-01-01 02:41:30 -05001580 ei->i_reserved_data_blocks++;
Eric Whitneyc27e43a2015-06-21 21:37:05 -04001581 trace_ext4_da_reserve_space(inode);
Theodore Ts'o0637c6f42009-12-30 14:20:45 -05001582 spin_unlock(&ei->i_block_reservation_lock);
Dmitry Monakhov39bc6802009-12-10 16:36:27 +00001583
Mingming Caod2a17632008-07-14 17:52:37 -04001584 return 0; /* success */
1585}
1586
Aneesh Kumar K.V12219ae2008-07-17 16:12:08 -04001587static void ext4_da_release_space(struct inode *inode, int to_free)
Mingming Caod2a17632008-07-14 17:52:37 -04001588{
1589 struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb);
Theodore Ts'o0637c6f42009-12-30 14:20:45 -05001590 struct ext4_inode_info *ei = EXT4_I(inode);
Mingming Caod2a17632008-07-14 17:52:37 -04001591
Mingming Caocd213222008-08-19 22:16:59 -04001592 if (!to_free)
1593 return; /* Nothing to release, exit */
1594
Mingming Caod2a17632008-07-14 17:52:37 -04001595 spin_lock(&EXT4_I(inode)->i_block_reservation_lock);
Mingming Caocd213222008-08-19 22:16:59 -04001596
Li Zefan5a58ec82010-05-17 02:00:00 -04001597 trace_ext4_da_release_space(inode, to_free);
Theodore Ts'o0637c6f42009-12-30 14:20:45 -05001598 if (unlikely(to_free > ei->i_reserved_data_blocks)) {
Mingming Caocd213222008-08-19 22:16:59 -04001599 /*
Theodore Ts'o0637c6f42009-12-30 14:20:45 -05001600 * if there aren't enough reserved blocks, then the
1601 * counter is messed up somewhere. Since this
1602 * function is called from invalidate page, it's
1603 * harmless to return without any action.
Mingming Caocd213222008-08-19 22:16:59 -04001604 */
Theodore Ts'o8de5c322013-02-14 15:11:41 -05001605 ext4_warning(inode->i_sb, "ext4_da_release_space: "
Theodore Ts'o0637c6f42009-12-30 14:20:45 -05001606 "ino %lu, to_free %d with only %d reserved "
Theodore Ts'o1084f252012-03-19 23:13:43 -04001607 "data blocks", inode->i_ino, to_free,
Theodore Ts'o0637c6f42009-12-30 14:20:45 -05001608 ei->i_reserved_data_blocks);
1609 WARN_ON(1);
1610 to_free = ei->i_reserved_data_blocks;
1611 }
1612 ei->i_reserved_data_blocks -= to_free;
1613
Eric Sandeen72b8ab92010-05-16 11:00:00 -04001614 /* update fs dirty data blocks counter */
Theodore Ts'o57042652011-09-09 18:56:51 -04001615 percpu_counter_sub(&sbi->s_dirtyclusters_counter, to_free);
Mingming Caod2a17632008-07-14 17:52:37 -04001616
Mingming Caod2a17632008-07-14 17:52:37 -04001617 spin_unlock(&EXT4_I(inode)->i_block_reservation_lock);
Mingming Cao60e58e02009-01-22 18:13:05 +01001618
Aditya Kali7b415bf2011-09-09 19:04:51 -04001619 dquot_release_reservation_block(inode, EXT4_C2B(sbi, to_free));
Mingming Caod2a17632008-07-14 17:52:37 -04001620}
1621
1622static void ext4_da_page_release_reservation(struct page *page,
Lukas Czernerca99fdd2013-05-21 23:25:01 -04001623 unsigned int offset,
1624 unsigned int length)
Mingming Caod2a17632008-07-14 17:52:37 -04001625{
Lukas Czerner9705acd2015-07-03 21:13:55 -04001626 int to_release = 0, contiguous_blks = 0;
Mingming Caod2a17632008-07-14 17:52:37 -04001627 struct buffer_head *head, *bh;
1628 unsigned int curr_off = 0;
Aditya Kali7b415bf2011-09-09 19:04:51 -04001629 struct inode *inode = page->mapping->host;
1630 struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb);
Lukas Czernerca99fdd2013-05-21 23:25:01 -04001631 unsigned int stop = offset + length;
Aditya Kali7b415bf2011-09-09 19:04:51 -04001632 int num_clusters;
Zheng Liu51865fd2012-11-08 21:57:32 -05001633 ext4_fsblk_t lblk;
Mingming Caod2a17632008-07-14 17:52:37 -04001634
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001635 BUG_ON(stop > PAGE_SIZE || stop < length);
Lukas Czernerca99fdd2013-05-21 23:25:01 -04001636
Mingming Caod2a17632008-07-14 17:52:37 -04001637 head = page_buffers(page);
1638 bh = head;
1639 do {
1640 unsigned int next_off = curr_off + bh->b_size;
1641
Lukas Czernerca99fdd2013-05-21 23:25:01 -04001642 if (next_off > stop)
1643 break;
1644
Mingming Caod2a17632008-07-14 17:52:37 -04001645 if ((offset <= curr_off) && (buffer_delay(bh))) {
1646 to_release++;
Lukas Czerner9705acd2015-07-03 21:13:55 -04001647 contiguous_blks++;
Mingming Caod2a17632008-07-14 17:52:37 -04001648 clear_buffer_delay(bh);
Lukas Czerner9705acd2015-07-03 21:13:55 -04001649 } else if (contiguous_blks) {
1650 lblk = page->index <<
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001651 (PAGE_SHIFT - inode->i_blkbits);
Lukas Czerner9705acd2015-07-03 21:13:55 -04001652 lblk += (curr_off >> inode->i_blkbits) -
1653 contiguous_blks;
1654 ext4_es_remove_extent(inode, lblk, contiguous_blks);
1655 contiguous_blks = 0;
Mingming Caod2a17632008-07-14 17:52:37 -04001656 }
1657 curr_off = next_off;
1658 } while ((bh = bh->b_this_page) != head);
Aditya Kali7b415bf2011-09-09 19:04:51 -04001659
Lukas Czerner9705acd2015-07-03 21:13:55 -04001660 if (contiguous_blks) {
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001661 lblk = page->index << (PAGE_SHIFT - inode->i_blkbits);
Lukas Czerner9705acd2015-07-03 21:13:55 -04001662 lblk += (curr_off >> inode->i_blkbits) - contiguous_blks;
1663 ext4_es_remove_extent(inode, lblk, contiguous_blks);
Zheng Liu51865fd2012-11-08 21:57:32 -05001664 }
1665
Aditya Kali7b415bf2011-09-09 19:04:51 -04001666 /* If we have released all the blocks belonging to a cluster, then we
1667 * need to release the reserved space for that cluster. */
1668 num_clusters = EXT4_NUM_B2C(sbi, to_release);
1669 while (num_clusters > 0) {
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001670 lblk = (page->index << (PAGE_SHIFT - inode->i_blkbits)) +
Aditya Kali7b415bf2011-09-09 19:04:51 -04001671 ((num_clusters - 1) << sbi->s_cluster_bits);
1672 if (sbi->s_cluster_ratio == 1 ||
Zheng Liu7d1b1fb2012-11-08 21:57:35 -05001673 !ext4_find_delalloc_cluster(inode, lblk))
Aditya Kali7b415bf2011-09-09 19:04:51 -04001674 ext4_da_release_space(inode, 1);
1675
1676 num_clusters--;
1677 }
Mingming Caod2a17632008-07-14 17:52:37 -04001678}
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001679
1680/*
Alex Tomas64769242008-07-11 19:27:31 -04001681 * Delayed allocation stuff
1682 */
1683
Jan Kara4e7ea812013-06-04 13:17:40 -04001684struct mpage_da_data {
1685 struct inode *inode;
1686 struct writeback_control *wbc;
Jan Kara6b523df2013-06-04 13:21:11 -04001687
Jan Kara4e7ea812013-06-04 13:17:40 -04001688 pgoff_t first_page; /* The first page to write */
1689 pgoff_t next_page; /* Current page to examine */
1690 pgoff_t last_page; /* Last page to examine */
Aneesh Kumar K.V791b7f02009-01-05 21:50:43 -05001691 /*
Jan Kara4e7ea812013-06-04 13:17:40 -04001692 * Extent to map - this can be after first_page because that can be
1693 * fully mapped. We somewhat abuse m_flags to store whether the extent
1694 * is delalloc or unwritten.
Aneesh Kumar K.V791b7f02009-01-05 21:50:43 -05001695 */
Jan Kara4e7ea812013-06-04 13:17:40 -04001696 struct ext4_map_blocks map;
1697 struct ext4_io_submit io_submit; /* IO submission data */
Jan Karadddbd6a2017-04-30 18:29:10 -04001698 unsigned int do_map:1;
Jan Kara4e7ea812013-06-04 13:17:40 -04001699};
Alex Tomas64769242008-07-11 19:27:31 -04001700
Jan Kara4e7ea812013-06-04 13:17:40 -04001701static void mpage_release_unused_pages(struct mpage_da_data *mpd,
1702 bool invalidate)
Aneesh Kumar K.Vc4a0c462008-08-19 21:08:18 -04001703{
1704 int nr_pages, i;
1705 pgoff_t index, end;
1706 struct pagevec pvec;
1707 struct inode *inode = mpd->inode;
1708 struct address_space *mapping = inode->i_mapping;
Jan Kara4e7ea812013-06-04 13:17:40 -04001709
1710 /* This is necessary when next_page == 0. */
1711 if (mpd->first_page >= mpd->next_page)
1712 return;
Aneesh Kumar K.Vc4a0c462008-08-19 21:08:18 -04001713
Curt Wohlgemuthc7f59382011-02-26 12:27:52 -05001714 index = mpd->first_page;
1715 end = mpd->next_page - 1;
Jan Kara4e7ea812013-06-04 13:17:40 -04001716 if (invalidate) {
1717 ext4_lblk_t start, last;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001718 start = index << (PAGE_SHIFT - inode->i_blkbits);
1719 last = end << (PAGE_SHIFT - inode->i_blkbits);
Jan Kara4e7ea812013-06-04 13:17:40 -04001720 ext4_es_remove_extent(inode, start, last - start + 1);
1721 }
Zheng Liu51865fd2012-11-08 21:57:32 -05001722
Mel Gorman86679822017-11-15 17:37:52 -08001723 pagevec_init(&pvec);
Aneesh Kumar K.Vc4a0c462008-08-19 21:08:18 -04001724 while (index <= end) {
Jan Kara397162f2017-09-06 16:21:43 -07001725 nr_pages = pagevec_lookup_range(&pvec, mapping, &index, end);
Aneesh Kumar K.Vc4a0c462008-08-19 21:08:18 -04001726 if (nr_pages == 0)
1727 break;
1728 for (i = 0; i < nr_pages; i++) {
1729 struct page *page = pvec.pages[i];
Jan Kara2b85a612017-09-06 16:21:30 -07001730
Aneesh Kumar K.Vc4a0c462008-08-19 21:08:18 -04001731 BUG_ON(!PageLocked(page));
1732 BUG_ON(PageWriteback(page));
Jan Kara4e7ea812013-06-04 13:17:40 -04001733 if (invalidate) {
wangguang4e800c02016-09-15 11:32:46 -04001734 if (page_mapped(page))
1735 clear_page_dirty_for_io(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001736 block_invalidatepage(page, 0, PAGE_SIZE);
Jan Kara4e7ea812013-06-04 13:17:40 -04001737 ClearPageUptodate(page);
1738 }
Aneesh Kumar K.Vc4a0c462008-08-19 21:08:18 -04001739 unlock_page(page);
1740 }
Jan Kara9b1d09982010-03-03 16:19:32 -05001741 pagevec_release(&pvec);
Aneesh Kumar K.Vc4a0c462008-08-19 21:08:18 -04001742 }
Aneesh Kumar K.Vc4a0c462008-08-19 21:08:18 -04001743}
1744
Aneesh Kumar K.Vdf222912008-09-08 23:05:34 -04001745static void ext4_print_free_blocks(struct inode *inode)
1746{
1747 struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb);
Theodore Ts'o92b97812012-03-19 23:41:49 -04001748 struct super_block *sb = inode->i_sb;
Lukas Czernerf78ee70d2013-04-03 23:33:30 -04001749 struct ext4_inode_info *ei = EXT4_I(inode);
Theodore Ts'o92b97812012-03-19 23:41:49 -04001750
1751 ext4_msg(sb, KERN_CRIT, "Total free blocks count %lld",
Theodore Ts'o5dee5432011-09-09 19:10:51 -04001752 EXT4_C2B(EXT4_SB(inode->i_sb),
Lukas Czernerf78ee70d2013-04-03 23:33:30 -04001753 ext4_count_free_clusters(sb)));
Theodore Ts'o92b97812012-03-19 23:41:49 -04001754 ext4_msg(sb, KERN_CRIT, "Free/Dirty block details");
1755 ext4_msg(sb, KERN_CRIT, "free_blocks=%lld",
Lukas Czernerf78ee70d2013-04-03 23:33:30 -04001756 (long long) EXT4_C2B(EXT4_SB(sb),
Theodore Ts'o57042652011-09-09 18:56:51 -04001757 percpu_counter_sum(&sbi->s_freeclusters_counter)));
Theodore Ts'o92b97812012-03-19 23:41:49 -04001758 ext4_msg(sb, KERN_CRIT, "dirty_blocks=%lld",
Lukas Czernerf78ee70d2013-04-03 23:33:30 -04001759 (long long) EXT4_C2B(EXT4_SB(sb),
Aditya Kali7b415bf2011-09-09 19:04:51 -04001760 percpu_counter_sum(&sbi->s_dirtyclusters_counter)));
Theodore Ts'o92b97812012-03-19 23:41:49 -04001761 ext4_msg(sb, KERN_CRIT, "Block reservation details");
1762 ext4_msg(sb, KERN_CRIT, "i_reserved_data_blocks=%u",
Lukas Czernerf78ee70d2013-04-03 23:33:30 -04001763 ei->i_reserved_data_blocks);
Aneesh Kumar K.Vdf222912008-09-08 23:05:34 -04001764 return;
1765}
1766
Aneesh Kumar K.Vc364b222009-06-14 17:57:10 -04001767static int ext4_bh_delay_or_unwritten(handle_t *handle, struct buffer_head *bh)
Aneesh Kumar K.V29fa89d2009-05-12 16:30:27 -04001768{
Aneesh Kumar K.Vc364b222009-06-14 17:57:10 -04001769 return (buffer_delay(bh) || buffer_unwritten(bh)) && buffer_dirty(bh);
Aneesh Kumar K.V29fa89d2009-05-12 16:30:27 -04001770}
1771
Alex Tomas64769242008-07-11 19:27:31 -04001772/*
Aditya Kali5356f2612011-09-09 19:20:51 -04001773 * This function is grabs code from the very beginning of
1774 * ext4_map_blocks, but assumes that the caller is from delayed write
1775 * time. This function looks up the requested blocks and sets the
1776 * buffer delay bit under the protection of i_data_sem.
1777 */
1778static int ext4_da_map_blocks(struct inode *inode, sector_t iblock,
1779 struct ext4_map_blocks *map,
1780 struct buffer_head *bh)
1781{
Zheng Liud100eef2013-02-18 00:29:59 -05001782 struct extent_status es;
Aditya Kali5356f2612011-09-09 19:20:51 -04001783 int retval;
1784 sector_t invalid_block = ~((sector_t) 0xffff);
Dmitry Monakhov921f2662013-03-10 21:01:03 -04001785#ifdef ES_AGGRESSIVE_TEST
1786 struct ext4_map_blocks orig_map;
1787
1788 memcpy(&orig_map, map, sizeof(*map));
1789#endif
Aditya Kali5356f2612011-09-09 19:20:51 -04001790
1791 if (invalid_block < ext4_blocks_count(EXT4_SB(inode->i_sb)->s_es))
1792 invalid_block = ~0;
1793
1794 map->m_flags = 0;
1795 ext_debug("ext4_da_map_blocks(): inode %lu, max_blocks %u,"
1796 "logical block %lu\n", inode->i_ino, map->m_len,
1797 (unsigned long) map->m_lblk);
Zheng Liud100eef2013-02-18 00:29:59 -05001798
1799 /* Lookup extent status tree firstly */
1800 if (ext4_es_lookup_extent(inode, iblock, &es)) {
Zheng Liud100eef2013-02-18 00:29:59 -05001801 if (ext4_es_is_hole(&es)) {
1802 retval = 0;
Lukas Czernerc8b459f2014-05-12 12:55:07 -04001803 down_read(&EXT4_I(inode)->i_data_sem);
Zheng Liud100eef2013-02-18 00:29:59 -05001804 goto add_delayed;
1805 }
1806
1807 /*
1808 * Delayed extent could be allocated by fallocate.
1809 * So we need to check it.
1810 */
1811 if (ext4_es_is_delayed(&es) && !ext4_es_is_unwritten(&es)) {
1812 map_bh(bh, inode->i_sb, invalid_block);
1813 set_buffer_new(bh);
1814 set_buffer_delay(bh);
1815 return 0;
1816 }
1817
1818 map->m_pblk = ext4_es_pblock(&es) + iblock - es.es_lblk;
1819 retval = es.es_len - (iblock - es.es_lblk);
1820 if (retval > map->m_len)
1821 retval = map->m_len;
1822 map->m_len = retval;
1823 if (ext4_es_is_written(&es))
1824 map->m_flags |= EXT4_MAP_MAPPED;
1825 else if (ext4_es_is_unwritten(&es))
1826 map->m_flags |= EXT4_MAP_UNWRITTEN;
1827 else
1828 BUG_ON(1);
1829
Dmitry Monakhov921f2662013-03-10 21:01:03 -04001830#ifdef ES_AGGRESSIVE_TEST
1831 ext4_map_blocks_es_recheck(NULL, inode, map, &orig_map, 0);
1832#endif
Zheng Liud100eef2013-02-18 00:29:59 -05001833 return retval;
1834 }
1835
Aditya Kali5356f2612011-09-09 19:20:51 -04001836 /*
1837 * Try to see if we can get the block without requesting a new
1838 * file system block.
1839 */
Lukas Czernerc8b459f2014-05-12 12:55:07 -04001840 down_read(&EXT4_I(inode)->i_data_sem);
Jan Karacbd75842014-11-25 11:41:49 -05001841 if (ext4_has_inline_data(inode))
Tao Ma9c3569b2012-12-10 14:05:57 -05001842 retval = 0;
Jan Karacbd75842014-11-25 11:41:49 -05001843 else if (ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS))
Zheng Liu2f8e0a72014-11-25 11:44:37 -05001844 retval = ext4_ext_map_blocks(NULL, inode, map, 0);
Aditya Kali5356f2612011-09-09 19:20:51 -04001845 else
Zheng Liu2f8e0a72014-11-25 11:44:37 -05001846 retval = ext4_ind_map_blocks(NULL, inode, map, 0);
Aditya Kali5356f2612011-09-09 19:20:51 -04001847
Zheng Liud100eef2013-02-18 00:29:59 -05001848add_delayed:
Aditya Kali5356f2612011-09-09 19:20:51 -04001849 if (retval == 0) {
Zheng Liuf7fec032013-02-18 00:28:47 -05001850 int ret;
Aditya Kali5356f2612011-09-09 19:20:51 -04001851 /*
1852 * XXX: __block_prepare_write() unmaps passed block,
1853 * is it OK?
1854 */
Lukas Czerner386ad672013-03-10 22:50:00 -04001855 /*
1856 * If the block was allocated from previously allocated cluster,
1857 * then we don't need to reserve it again. However we still need
1858 * to reserve metadata for every block we're going to write.
1859 */
Eric Whitneyc27e43a2015-06-21 21:37:05 -04001860 if (EXT4_SB(inode->i_sb)->s_cluster_ratio == 1 ||
Jan Karacbd75842014-11-25 11:41:49 -05001861 !ext4_find_delalloc_cluster(inode, map->m_lblk)) {
Eric Whitneyc27e43a2015-06-21 21:37:05 -04001862 ret = ext4_da_reserve_space(inode);
Zheng Liuf7fec032013-02-18 00:28:47 -05001863 if (ret) {
Aditya Kali5356f2612011-09-09 19:20:51 -04001864 /* not enough space to reserve */
Zheng Liuf7fec032013-02-18 00:28:47 -05001865 retval = ret;
Aditya Kali5356f2612011-09-09 19:20:51 -04001866 goto out_unlock;
Zheng Liuf7fec032013-02-18 00:28:47 -05001867 }
Aditya Kali5356f2612011-09-09 19:20:51 -04001868 }
1869
Zheng Liuf7fec032013-02-18 00:28:47 -05001870 ret = ext4_es_insert_extent(inode, map->m_lblk, map->m_len,
1871 ~0, EXTENT_STATUS_DELAYED);
1872 if (ret) {
1873 retval = ret;
Zheng Liu51865fd2012-11-08 21:57:32 -05001874 goto out_unlock;
Zheng Liuf7fec032013-02-18 00:28:47 -05001875 }
Zheng Liu51865fd2012-11-08 21:57:32 -05001876
Aditya Kali5356f2612011-09-09 19:20:51 -04001877 map_bh(bh, inode->i_sb, invalid_block);
1878 set_buffer_new(bh);
1879 set_buffer_delay(bh);
Zheng Liuf7fec032013-02-18 00:28:47 -05001880 } else if (retval > 0) {
1881 int ret;
Theodore Ts'o3be78c72013-08-16 21:22:41 -04001882 unsigned int status;
Zheng Liuf7fec032013-02-18 00:28:47 -05001883
Zheng Liu44fb851d2013-07-29 12:51:42 -04001884 if (unlikely(retval != map->m_len)) {
1885 ext4_warning(inode->i_sb,
1886 "ES len assertion failed for inode "
1887 "%lu: retval %d != map->m_len %d",
1888 inode->i_ino, retval, map->m_len);
1889 WARN_ON(1);
Dmitry Monakhov921f2662013-03-10 21:01:03 -04001890 }
Dmitry Monakhov921f2662013-03-10 21:01:03 -04001891
Zheng Liuf7fec032013-02-18 00:28:47 -05001892 status = map->m_flags & EXT4_MAP_UNWRITTEN ?
1893 EXTENT_STATUS_UNWRITTEN : EXTENT_STATUS_WRITTEN;
1894 ret = ext4_es_insert_extent(inode, map->m_lblk, map->m_len,
1895 map->m_pblk, status);
1896 if (ret != 0)
1897 retval = ret;
Aditya Kali5356f2612011-09-09 19:20:51 -04001898 }
1899
1900out_unlock:
1901 up_read((&EXT4_I(inode)->i_data_sem));
1902
1903 return retval;
1904}
1905
1906/*
Seunghun Leed91bd2c2014-09-01 22:15:30 -04001907 * This is a special get_block_t callback which is used by
Theodore Ts'ob920c752009-05-14 00:54:29 -04001908 * ext4_da_write_begin(). It will either return mapped block or
1909 * reserve space for a single block.
Aneesh Kumar K.V29fa89d2009-05-12 16:30:27 -04001910 *
1911 * For delayed buffer_head we have BH_Mapped, BH_New, BH_Delay set.
1912 * We also have b_blocknr = -1 and b_bdev initialized properly
1913 *
1914 * For unwritten buffer_head we have BH_Mapped, BH_New, BH_Unwritten set.
1915 * We also have b_blocknr = physicalblock mapping unwritten extent and b_bdev
1916 * initialized properly.
Alex Tomas64769242008-07-11 19:27:31 -04001917 */
Tao Ma9c3569b2012-12-10 14:05:57 -05001918int ext4_da_get_block_prep(struct inode *inode, sector_t iblock,
1919 struct buffer_head *bh, int create)
Alex Tomas64769242008-07-11 19:27:31 -04001920{
Theodore Ts'o2ed88682010-05-16 20:00:00 -04001921 struct ext4_map_blocks map;
Alex Tomas64769242008-07-11 19:27:31 -04001922 int ret = 0;
1923
1924 BUG_ON(create == 0);
Theodore Ts'o2ed88682010-05-16 20:00:00 -04001925 BUG_ON(bh->b_size != inode->i_sb->s_blocksize);
1926
1927 map.m_lblk = iblock;
1928 map.m_len = 1;
Alex Tomas64769242008-07-11 19:27:31 -04001929
1930 /*
1931 * first, we need to know whether the block is allocated already
1932 * preallocated blocks are unmapped but should treated
1933 * the same as allocated blocks.
1934 */
Aditya Kali5356f2612011-09-09 19:20:51 -04001935 ret = ext4_da_map_blocks(inode, iblock, &map, bh);
1936 if (ret <= 0)
Theodore Ts'o2ed88682010-05-16 20:00:00 -04001937 return ret;
Alex Tomas64769242008-07-11 19:27:31 -04001938
Theodore Ts'o2ed88682010-05-16 20:00:00 -04001939 map_bh(bh, inode->i_sb, map.m_pblk);
Jan Karaed8ad832016-02-19 00:18:25 -05001940 ext4_update_bh_state(bh, map.m_flags);
Theodore Ts'o2ed88682010-05-16 20:00:00 -04001941
1942 if (buffer_unwritten(bh)) {
1943 /* A delayed write to unwritten bh should be marked
1944 * new and mapped. Mapped ensures that we don't do
1945 * get_block multiple times when we write to the same
1946 * offset and new ensures that we do proper zero out
1947 * for partial write.
1948 */
1949 set_buffer_new(bh);
Theodore Ts'oc8205632011-04-10 22:30:07 -04001950 set_buffer_mapped(bh);
Theodore Ts'o2ed88682010-05-16 20:00:00 -04001951 }
1952 return 0;
Alex Tomas64769242008-07-11 19:27:31 -04001953}
Mingming Cao61628a32008-07-11 19:27:31 -04001954
Aneesh Kumar K.V62e086b2009-06-14 17:59:34 -04001955static int bget_one(handle_t *handle, struct buffer_head *bh)
1956{
1957 get_bh(bh);
1958 return 0;
1959}
1960
1961static int bput_one(handle_t *handle, struct buffer_head *bh)
1962{
1963 put_bh(bh);
1964 return 0;
1965}
1966
1967static int __ext4_journalled_writepage(struct page *page,
Aneesh Kumar K.V62e086b2009-06-14 17:59:34 -04001968 unsigned int len)
1969{
1970 struct address_space *mapping = page->mapping;
1971 struct inode *inode = mapping->host;
Tao Ma3fdcfb62012-12-10 14:05:57 -05001972 struct buffer_head *page_bufs = NULL;
Aneesh Kumar K.V62e086b2009-06-14 17:59:34 -04001973 handle_t *handle = NULL;
Tao Ma3fdcfb62012-12-10 14:05:57 -05001974 int ret = 0, err = 0;
1975 int inline_data = ext4_has_inline_data(inode);
1976 struct buffer_head *inode_bh = NULL;
Aneesh Kumar K.V62e086b2009-06-14 17:59:34 -04001977
Theodore Ts'ocb20d512010-10-27 21:30:09 -04001978 ClearPageChecked(page);
Tao Ma3fdcfb62012-12-10 14:05:57 -05001979
1980 if (inline_data) {
1981 BUG_ON(page->index != 0);
1982 BUG_ON(len > ext4_get_max_inline_size(inode));
1983 inode_bh = ext4_journalled_write_inline_data(inode, len, page);
1984 if (inode_bh == NULL)
1985 goto out;
1986 } else {
1987 page_bufs = page_buffers(page);
1988 if (!page_bufs) {
1989 BUG();
1990 goto out;
1991 }
1992 ext4_walk_page_buffers(handle, page_bufs, 0, len,
1993 NULL, bget_one);
1994 }
Theodore Ts'obdf96832015-06-12 23:45:33 -04001995 /*
1996 * We need to release the page lock before we start the
1997 * journal, so grab a reference so the page won't disappear
1998 * out from under us.
1999 */
2000 get_page(page);
Aneesh Kumar K.V62e086b2009-06-14 17:59:34 -04002001 unlock_page(page);
2002
Theodore Ts'o9924a922013-02-08 21:59:22 -05002003 handle = ext4_journal_start(inode, EXT4_HT_WRITE_PAGE,
2004 ext4_writepage_trans_blocks(inode));
Aneesh Kumar K.V62e086b2009-06-14 17:59:34 -04002005 if (IS_ERR(handle)) {
2006 ret = PTR_ERR(handle);
Theodore Ts'obdf96832015-06-12 23:45:33 -04002007 put_page(page);
2008 goto out_no_pagelock;
2009 }
2010 BUG_ON(!ext4_handle_valid(handle));
2011
2012 lock_page(page);
2013 put_page(page);
2014 if (page->mapping != mapping) {
2015 /* The page got truncated from under us */
2016 ext4_journal_stop(handle);
2017 ret = 0;
Aneesh Kumar K.V62e086b2009-06-14 17:59:34 -04002018 goto out;
2019 }
2020
Tao Ma3fdcfb62012-12-10 14:05:57 -05002021 if (inline_data) {
liang xie5d601252014-05-12 22:06:43 -04002022 BUFFER_TRACE(inode_bh, "get write access");
Tao Ma3fdcfb62012-12-10 14:05:57 -05002023 ret = ext4_journal_get_write_access(handle, inode_bh);
Aneesh Kumar K.V62e086b2009-06-14 17:59:34 -04002024
Tao Ma3fdcfb62012-12-10 14:05:57 -05002025 err = ext4_handle_dirty_metadata(handle, inode, inode_bh);
2026
2027 } else {
2028 ret = ext4_walk_page_buffers(handle, page_bufs, 0, len, NULL,
2029 do_journal_get_write_access);
2030
2031 err = ext4_walk_page_buffers(handle, page_bufs, 0, len, NULL,
2032 write_end_fn);
2033 }
Aneesh Kumar K.V62e086b2009-06-14 17:59:34 -04002034 if (ret == 0)
2035 ret = err;
Jan Kara2d859db2011-07-26 09:07:11 -04002036 EXT4_I(inode)->i_datasync_tid = handle->h_transaction->t_tid;
Aneesh Kumar K.V62e086b2009-06-14 17:59:34 -04002037 err = ext4_journal_stop(handle);
2038 if (!ret)
2039 ret = err;
2040
Tao Ma3fdcfb62012-12-10 14:05:57 -05002041 if (!ext4_has_inline_data(inode))
Theodore Ts'o8c9367f2014-01-07 13:08:03 -05002042 ext4_walk_page_buffers(NULL, page_bufs, 0, len,
Tao Ma3fdcfb62012-12-10 14:05:57 -05002043 NULL, bput_one);
Theodore Ts'o19f5fb72010-01-24 14:34:07 -05002044 ext4_set_inode_state(inode, EXT4_STATE_JDATA);
Aneesh Kumar K.V62e086b2009-06-14 17:59:34 -04002045out:
Theodore Ts'obdf96832015-06-12 23:45:33 -04002046 unlock_page(page);
2047out_no_pagelock:
Tao Ma3fdcfb62012-12-10 14:05:57 -05002048 brelse(inode_bh);
Aneesh Kumar K.V62e086b2009-06-14 17:59:34 -04002049 return ret;
2050}
2051
Mingming Cao61628a32008-07-11 19:27:31 -04002052/*
Aneesh Kumar K.V43ce1d22009-06-14 17:58:45 -04002053 * Note that we don't need to start a transaction unless we're journaling data
2054 * because we should have holes filled from ext4_page_mkwrite(). We even don't
2055 * need to file the inode to the transaction's list in ordered mode because if
2056 * we are writing back data added by write(), the inode is already there and if
Lucas De Marchi25985ed2011-03-30 22:57:33 -03002057 * we are writing back data modified via mmap(), no one guarantees in which
Aneesh Kumar K.V43ce1d22009-06-14 17:58:45 -04002058 * transaction the data will hit the disk. In case we are journaling data, we
2059 * cannot start transaction directly because transaction start ranks above page
2060 * lock so we have to do some magic.
2061 *
Theodore Ts'ob920c752009-05-14 00:54:29 -04002062 * This function can get called via...
Theodore Ts'o20970ba2013-06-06 14:00:46 -04002063 * - ext4_writepages after taking page lock (have journal handle)
Theodore Ts'ob920c752009-05-14 00:54:29 -04002064 * - journal_submit_inode_data_buffers (no journal handle)
Artem Bityutskiyf6463b02012-07-25 18:12:04 +03002065 * - shrink_page_list via the kswapd/direct reclaim (no journal handle)
Theodore Ts'ob920c752009-05-14 00:54:29 -04002066 * - grab_page_cache when doing write_begin (have journal handle)
Aneesh Kumar K.V43ce1d22009-06-14 17:58:45 -04002067 *
2068 * We don't do any block allocation in this function. If we have page with
2069 * multiple blocks we need to write those buffer_heads that are mapped. This
2070 * is important for mmaped based write. So if we do with blocksize 1K
2071 * truncate(f, 1024);
2072 * a = mmap(f, 0, 4096);
2073 * a[0] = 'a';
2074 * truncate(f, 4096);
2075 * we have in the page first buffer_head mapped via page_mkwrite call back
Paul Bolle90802ed2011-12-05 13:00:34 +01002076 * but other buffer_heads would be unmapped but dirty (dirty done via the
Aneesh Kumar K.V43ce1d22009-06-14 17:58:45 -04002077 * do_wp_page). So writepage should write the first block. If we modify
2078 * the mmap area beyond 1024 we will again get a page_fault and the
2079 * page_mkwrite callback will do the block allocation and mark the
2080 * buffer_heads mapped.
2081 *
2082 * We redirty the page if we have any buffer_heads that is either delay or
2083 * unwritten in the page.
2084 *
2085 * We can get recursively called as show below.
2086 *
2087 * ext4_writepage() -> kmalloc() -> __alloc_pages() -> page_launder() ->
2088 * ext4_writepage()
2089 *
2090 * But since we don't do any block allocation we should not deadlock.
2091 * Page also have the dirty flag cleared so we don't get recurive page_lock.
Mingming Cao61628a32008-07-11 19:27:31 -04002092 */
Aneesh Kumar K.V43ce1d22009-06-14 17:58:45 -04002093static int ext4_writepage(struct page *page,
Aneesh Kumar K.V62e086b2009-06-14 17:59:34 -04002094 struct writeback_control *wbc)
Alex Tomas64769242008-07-11 19:27:31 -04002095{
Jan Karaf8bec372013-01-28 12:55:08 -05002096 int ret = 0;
Mingming Cao61628a32008-07-11 19:27:31 -04002097 loff_t size;
Theodore Ts'o498e5f22008-11-05 00:14:04 -05002098 unsigned int len;
Jiaying Zhang744692d2010-03-04 16:14:02 -05002099 struct buffer_head *page_bufs = NULL;
Mingming Cao61628a32008-07-11 19:27:31 -04002100 struct inode *inode = page->mapping->host;
Jan Kara36ade452013-01-28 09:30:52 -05002101 struct ext4_io_submit io_submit;
Namjae Jeon1c8349a2014-05-12 08:12:25 -04002102 bool keep_towrite = false;
Alex Tomas64769242008-07-11 19:27:31 -04002103
Theodore Ts'o0db1ff22017-02-05 01:28:48 -05002104 if (unlikely(ext4_forced_shutdown(EXT4_SB(inode->i_sb)))) {
2105 ext4_invalidatepage(page, 0, PAGE_SIZE);
2106 unlock_page(page);
2107 return -EIO;
2108 }
2109
Lukas Czernera9c667f2011-06-06 09:51:52 -04002110 trace_ext4_writepage(page);
Aneesh Kumar K.Vf0e6c982008-07-11 19:27:31 -04002111 size = i_size_read(inode);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002112 if (page->index == size >> PAGE_SHIFT)
2113 len = size & ~PAGE_MASK;
Aneesh Kumar K.Vf0e6c982008-07-11 19:27:31 -04002114 else
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002115 len = PAGE_SIZE;
Alex Tomas64769242008-07-11 19:27:31 -04002116
Theodore Ts'oa42afc52010-10-27 21:30:09 -04002117 page_bufs = page_buffers(page);
Aneesh Kumar K.Vc364b222009-06-14 17:57:10 -04002118 /*
Jan Karafe386132013-01-28 21:06:42 -05002119 * We cannot do block allocation or other extent handling in this
2120 * function. If there are buffers needing that, we have to redirty
2121 * the page. But we may reach here when we do a journal commit via
2122 * journal_submit_inode_data_buffers() and in that case we must write
2123 * allocated buffers to achieve data=ordered mode guarantees.
Theodore Ts'occcd1472015-10-03 10:49:23 -04002124 *
2125 * Also, if there is only one buffer per page (the fs block
2126 * size == the page size), if one buffer needs block
2127 * allocation or needs to modify the extent tree to clear the
2128 * unwritten flag, we know that the page can't be written at
2129 * all, so we might as well refuse the write immediately.
2130 * Unfortunately if the block size != page size, we can't as
2131 * easily detect this case using ext4_walk_page_buffers(), but
2132 * for the extremely common case, this is an optimization that
2133 * skips a useless round trip through ext4_bio_write_page().
Aneesh Kumar K.Vcd1aac32008-07-11 19:27:31 -04002134 */
Tao Maf19d5872012-12-10 14:05:51 -05002135 if (ext4_walk_page_buffers(NULL, page_bufs, 0, len, NULL,
2136 ext4_bh_delay_or_unwritten)) {
Jan Karaf8bec372013-01-28 12:55:08 -05002137 redirty_page_for_writepage(wbc, page);
Theodore Ts'occcd1472015-10-03 10:49:23 -04002138 if ((current->flags & PF_MEMALLOC) ||
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002139 (inode->i_sb->s_blocksize == PAGE_SIZE)) {
Jan Karafe386132013-01-28 21:06:42 -05002140 /*
2141 * For memory cleaning there's no point in writing only
2142 * some buffers. So just bail out. Warn if we came here
2143 * from direct reclaim.
2144 */
2145 WARN_ON_ONCE((current->flags & (PF_MEMALLOC|PF_KSWAPD))
2146 == PF_MEMALLOC);
Aneesh Kumar K.Vf0e6c982008-07-11 19:27:31 -04002147 unlock_page(page);
2148 return 0;
2149 }
Namjae Jeon1c8349a2014-05-12 08:12:25 -04002150 keep_towrite = true;
Theodore Ts'oa42afc52010-10-27 21:30:09 -04002151 }
Alex Tomas64769242008-07-11 19:27:31 -04002152
Theodore Ts'ocb20d512010-10-27 21:30:09 -04002153 if (PageChecked(page) && ext4_should_journal_data(inode))
Aneesh Kumar K.V43ce1d22009-06-14 17:58:45 -04002154 /*
2155 * It's mmapped pagecache. Add buffers and journal it. There
2156 * doesn't seem much point in redirtying the page here.
2157 */
Wu Fengguang3f0ca302009-11-24 11:15:44 -05002158 return __ext4_journalled_writepage(page, len);
Aneesh Kumar K.V43ce1d22009-06-14 17:58:45 -04002159
Jan Kara97a851e2013-06-04 11:58:58 -04002160 ext4_io_submit_init(&io_submit, wbc);
2161 io_submit.io_end = ext4_init_io_end(inode, GFP_NOFS);
2162 if (!io_submit.io_end) {
2163 redirty_page_for_writepage(wbc, page);
2164 unlock_page(page);
2165 return -ENOMEM;
2166 }
Namjae Jeon1c8349a2014-05-12 08:12:25 -04002167 ret = ext4_bio_write_page(&io_submit, page, len, wbc, keep_towrite);
Jan Kara36ade452013-01-28 09:30:52 -05002168 ext4_io_submit(&io_submit);
Jan Kara97a851e2013-06-04 11:58:58 -04002169 /* Drop io_end reference we got from init */
2170 ext4_put_io_end_defer(io_submit.io_end);
Alex Tomas64769242008-07-11 19:27:31 -04002171 return ret;
2172}
2173
Jan Kara5f1132b2013-08-17 10:02:33 -04002174static int mpage_submit_page(struct mpage_da_data *mpd, struct page *page)
2175{
2176 int len;
Jan Karaa056bda2017-05-26 17:45:45 -04002177 loff_t size;
Jan Kara5f1132b2013-08-17 10:02:33 -04002178 int err;
2179
2180 BUG_ON(page->index != mpd->first_page);
Jan Karaa056bda2017-05-26 17:45:45 -04002181 clear_page_dirty_for_io(page);
2182 /*
2183 * We have to be very careful here! Nothing protects writeback path
2184 * against i_size changes and the page can be writeably mapped into
2185 * page tables. So an application can be growing i_size and writing
2186 * data through mmap while writeback runs. clear_page_dirty_for_io()
2187 * write-protects our page in page tables and the page cannot get
2188 * written to again until we release page lock. So only after
2189 * clear_page_dirty_for_io() we are safe to sample i_size for
2190 * ext4_bio_write_page() to zero-out tail of the written page. We rely
2191 * on the barrier provided by TestClearPageDirty in
2192 * clear_page_dirty_for_io() to make sure i_size is really sampled only
2193 * after page tables are updated.
2194 */
2195 size = i_size_read(mpd->inode);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002196 if (page->index == size >> PAGE_SHIFT)
2197 len = size & ~PAGE_MASK;
Jan Kara5f1132b2013-08-17 10:02:33 -04002198 else
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002199 len = PAGE_SIZE;
Namjae Jeon1c8349a2014-05-12 08:12:25 -04002200 err = ext4_bio_write_page(&mpd->io_submit, page, len, mpd->wbc, false);
Jan Kara5f1132b2013-08-17 10:02:33 -04002201 if (!err)
2202 mpd->wbc->nr_to_write--;
2203 mpd->first_page++;
2204
2205 return err;
2206}
2207
Jan Kara4e7ea812013-06-04 13:17:40 -04002208#define BH_FLAGS ((1 << BH_Unwritten) | (1 << BH_Delay))
2209
Mingming Cao61628a32008-07-11 19:27:31 -04002210/*
Jan Karafffb2732013-06-04 13:01:11 -04002211 * mballoc gives us at most this number of blocks...
2212 * XXX: That seems to be only a limitation of ext4_mb_normalize_request().
Anatol Pomozov70261f52013-08-28 14:40:12 -04002213 * The rest of mballoc seems to handle chunks up to full group size.
Mingming Cao61628a32008-07-11 19:27:31 -04002214 */
Jan Karafffb2732013-06-04 13:01:11 -04002215#define MAX_WRITEPAGES_EXTENT_LEN 2048
Mingming Cao525f4ed2008-08-19 22:15:58 -04002216
Jan Karafffb2732013-06-04 13:01:11 -04002217/*
Jan Kara4e7ea812013-06-04 13:17:40 -04002218 * mpage_add_bh_to_extent - try to add bh to extent of blocks to map
2219 *
2220 * @mpd - extent of blocks
2221 * @lblk - logical number of the block in the file
Jan Kara09930042013-08-17 09:57:56 -04002222 * @bh - buffer head we want to add to the extent
Jan Kara4e7ea812013-06-04 13:17:40 -04002223 *
Jan Kara09930042013-08-17 09:57:56 -04002224 * The function is used to collect contig. blocks in the same state. If the
2225 * buffer doesn't require mapping for writeback and we haven't started the
2226 * extent of buffers to map yet, the function returns 'true' immediately - the
2227 * caller can write the buffer right away. Otherwise the function returns true
2228 * if the block has been added to the extent, false if the block couldn't be
2229 * added.
Jan Kara4e7ea812013-06-04 13:17:40 -04002230 */
Jan Kara09930042013-08-17 09:57:56 -04002231static bool mpage_add_bh_to_extent(struct mpage_da_data *mpd, ext4_lblk_t lblk,
2232 struct buffer_head *bh)
Jan Kara4e7ea812013-06-04 13:17:40 -04002233{
2234 struct ext4_map_blocks *map = &mpd->map;
2235
Jan Kara09930042013-08-17 09:57:56 -04002236 /* Buffer that doesn't need mapping for writeback? */
2237 if (!buffer_dirty(bh) || !buffer_mapped(bh) ||
2238 (!buffer_delay(bh) && !buffer_unwritten(bh))) {
2239 /* So far no extent to map => we write the buffer right away */
2240 if (map->m_len == 0)
2241 return true;
2242 return false;
2243 }
Jan Kara4e7ea812013-06-04 13:17:40 -04002244
2245 /* First block in the extent? */
2246 if (map->m_len == 0) {
Jan Karadddbd6a2017-04-30 18:29:10 -04002247 /* We cannot map unless handle is started... */
2248 if (!mpd->do_map)
2249 return false;
Jan Kara4e7ea812013-06-04 13:17:40 -04002250 map->m_lblk = lblk;
2251 map->m_len = 1;
Jan Kara09930042013-08-17 09:57:56 -04002252 map->m_flags = bh->b_state & BH_FLAGS;
2253 return true;
Jan Kara4e7ea812013-06-04 13:17:40 -04002254 }
2255
Jan Kara09930042013-08-17 09:57:56 -04002256 /* Don't go larger than mballoc is willing to allocate */
2257 if (map->m_len >= MAX_WRITEPAGES_EXTENT_LEN)
2258 return false;
2259
Jan Kara4e7ea812013-06-04 13:17:40 -04002260 /* Can we merge the block to our big extent? */
2261 if (lblk == map->m_lblk + map->m_len &&
Jan Kara09930042013-08-17 09:57:56 -04002262 (bh->b_state & BH_FLAGS) == map->m_flags) {
Jan Kara4e7ea812013-06-04 13:17:40 -04002263 map->m_len++;
Jan Kara09930042013-08-17 09:57:56 -04002264 return true;
Jan Kara4e7ea812013-06-04 13:17:40 -04002265 }
Jan Kara09930042013-08-17 09:57:56 -04002266 return false;
Jan Kara4e7ea812013-06-04 13:17:40 -04002267}
2268
Jan Kara5f1132b2013-08-17 10:02:33 -04002269/*
2270 * mpage_process_page_bufs - submit page buffers for IO or add them to extent
2271 *
2272 * @mpd - extent of blocks for mapping
2273 * @head - the first buffer in the page
2274 * @bh - buffer we should start processing from
2275 * @lblk - logical number of the block in the file corresponding to @bh
2276 *
2277 * Walk through page buffers from @bh upto @head (exclusive) and either submit
2278 * the page for IO if all buffers in this page were mapped and there's no
2279 * accumulated extent of buffers to map or add buffers in the page to the
2280 * extent of buffers to map. The function returns 1 if the caller can continue
2281 * by processing the next page, 0 if it should stop adding buffers to the
2282 * extent to map because we cannot extend it anymore. It can also return value
2283 * < 0 in case of error during IO submission.
2284 */
2285static int mpage_process_page_bufs(struct mpage_da_data *mpd,
2286 struct buffer_head *head,
2287 struct buffer_head *bh,
2288 ext4_lblk_t lblk)
Jan Kara4e7ea812013-06-04 13:17:40 -04002289{
2290 struct inode *inode = mpd->inode;
Jan Kara5f1132b2013-08-17 10:02:33 -04002291 int err;
Fabian Frederick93407472017-02-27 14:28:32 -08002292 ext4_lblk_t blocks = (i_size_read(inode) + i_blocksize(inode) - 1)
Jan Kara4e7ea812013-06-04 13:17:40 -04002293 >> inode->i_blkbits;
2294
2295 do {
2296 BUG_ON(buffer_locked(bh));
2297
Jan Kara09930042013-08-17 09:57:56 -04002298 if (lblk >= blocks || !mpage_add_bh_to_extent(mpd, lblk, bh)) {
Jan Kara4e7ea812013-06-04 13:17:40 -04002299 /* Found extent to map? */
2300 if (mpd->map.m_len)
Jan Kara5f1132b2013-08-17 10:02:33 -04002301 return 0;
Jan Karadddbd6a2017-04-30 18:29:10 -04002302 /* Buffer needs mapping and handle is not started? */
2303 if (!mpd->do_map)
2304 return 0;
Jan Kara09930042013-08-17 09:57:56 -04002305 /* Everything mapped so far and we hit EOF */
Jan Kara5f1132b2013-08-17 10:02:33 -04002306 break;
Jan Kara4e7ea812013-06-04 13:17:40 -04002307 }
Jan Kara4e7ea812013-06-04 13:17:40 -04002308 } while (lblk++, (bh = bh->b_this_page) != head);
Jan Kara5f1132b2013-08-17 10:02:33 -04002309 /* So far everything mapped? Submit the page for IO. */
2310 if (mpd->map.m_len == 0) {
2311 err = mpage_submit_page(mpd, head->b_page);
2312 if (err < 0)
2313 return err;
2314 }
2315 return lblk < blocks;
Jan Kara4e7ea812013-06-04 13:17:40 -04002316}
2317
2318/*
2319 * mpage_map_buffers - update buffers corresponding to changed extent and
2320 * submit fully mapped pages for IO
2321 *
2322 * @mpd - description of extent to map, on return next extent to map
2323 *
2324 * Scan buffers corresponding to changed extent (we expect corresponding pages
2325 * to be already locked) and update buffer state according to new extent state.
2326 * We map delalloc buffers to their physical location, clear unwritten bits,
Lukas Czerner556615d2014-04-20 23:45:47 -04002327 * and mark buffers as uninit when we perform writes to unwritten extents
Jan Kara4e7ea812013-06-04 13:17:40 -04002328 * and do extent conversion after IO is finished. If the last page is not fully
2329 * mapped, we update @map to the next extent in the last page that needs
2330 * mapping. Otherwise we submit the page for IO.
2331 */
2332static int mpage_map_and_submit_buffers(struct mpage_da_data *mpd)
2333{
2334 struct pagevec pvec;
2335 int nr_pages, i;
2336 struct inode *inode = mpd->inode;
2337 struct buffer_head *head, *bh;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002338 int bpp_bits = PAGE_SHIFT - inode->i_blkbits;
Jan Kara4e7ea812013-06-04 13:17:40 -04002339 pgoff_t start, end;
2340 ext4_lblk_t lblk;
2341 sector_t pblock;
2342 int err;
2343
2344 start = mpd->map.m_lblk >> bpp_bits;
2345 end = (mpd->map.m_lblk + mpd->map.m_len - 1) >> bpp_bits;
2346 lblk = start << bpp_bits;
2347 pblock = mpd->map.m_pblk;
2348
Mel Gorman86679822017-11-15 17:37:52 -08002349 pagevec_init(&pvec);
Jan Kara4e7ea812013-06-04 13:17:40 -04002350 while (start <= end) {
Jan Kara2b85a612017-09-06 16:21:30 -07002351 nr_pages = pagevec_lookup_range(&pvec, inode->i_mapping,
Jan Kara397162f2017-09-06 16:21:43 -07002352 &start, end);
Jan Kara4e7ea812013-06-04 13:17:40 -04002353 if (nr_pages == 0)
2354 break;
2355 for (i = 0; i < nr_pages; i++) {
2356 struct page *page = pvec.pages[i];
2357
Jan Kara4e7ea812013-06-04 13:17:40 -04002358 bh = head = page_buffers(page);
2359 do {
2360 if (lblk < mpd->map.m_lblk)
2361 continue;
2362 if (lblk >= mpd->map.m_lblk + mpd->map.m_len) {
2363 /*
2364 * Buffer after end of mapped extent.
2365 * Find next buffer in the page to map.
2366 */
2367 mpd->map.m_len = 0;
2368 mpd->map.m_flags = 0;
Jan Kara5f1132b2013-08-17 10:02:33 -04002369 /*
2370 * FIXME: If dioread_nolock supports
2371 * blocksize < pagesize, we need to make
2372 * sure we add size mapped so far to
2373 * io_end->size as the following call
2374 * can submit the page for IO.
2375 */
2376 err = mpage_process_page_bufs(mpd, head,
2377 bh, lblk);
Jan Kara4e7ea812013-06-04 13:17:40 -04002378 pagevec_release(&pvec);
Jan Kara5f1132b2013-08-17 10:02:33 -04002379 if (err > 0)
2380 err = 0;
2381 return err;
Jan Kara4e7ea812013-06-04 13:17:40 -04002382 }
2383 if (buffer_delay(bh)) {
2384 clear_buffer_delay(bh);
2385 bh->b_blocknr = pblock++;
2386 }
Jan Kara4e7ea812013-06-04 13:17:40 -04002387 clear_buffer_unwritten(bh);
Jan Kara5f1132b2013-08-17 10:02:33 -04002388 } while (lblk++, (bh = bh->b_this_page) != head);
Jan Kara4e7ea812013-06-04 13:17:40 -04002389
2390 /*
2391 * FIXME: This is going to break if dioread_nolock
2392 * supports blocksize < pagesize as we will try to
2393 * convert potentially unmapped parts of inode.
2394 */
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002395 mpd->io_submit.io_end->size += PAGE_SIZE;
Jan Kara4e7ea812013-06-04 13:17:40 -04002396 /* Page fully mapped - let IO run! */
2397 err = mpage_submit_page(mpd, page);
2398 if (err < 0) {
2399 pagevec_release(&pvec);
2400 return err;
2401 }
Jan Kara4e7ea812013-06-04 13:17:40 -04002402 }
2403 pagevec_release(&pvec);
2404 }
2405 /* Extent fully mapped and matches with page boundary. We are done. */
2406 mpd->map.m_len = 0;
2407 mpd->map.m_flags = 0;
2408 return 0;
2409}
2410
2411static int mpage_map_one_extent(handle_t *handle, struct mpage_da_data *mpd)
2412{
2413 struct inode *inode = mpd->inode;
2414 struct ext4_map_blocks *map = &mpd->map;
2415 int get_blocks_flags;
Lukas Czerner090f32e2014-04-20 23:44:47 -04002416 int err, dioread_nolock;
Jan Kara4e7ea812013-06-04 13:17:40 -04002417
2418 trace_ext4_da_write_pages_extent(inode, map);
2419 /*
2420 * Call ext4_map_blocks() to allocate any delayed allocation blocks, or
Lukas Czerner556615d2014-04-20 23:45:47 -04002421 * to convert an unwritten extent to be initialized (in the case
Jan Kara4e7ea812013-06-04 13:17:40 -04002422 * where we have written into one or more preallocated blocks). It is
2423 * possible that we're going to need more metadata blocks than
2424 * previously reserved. However we must not fail because we're in
2425 * writeback and there is nothing we can do about it so it might result
2426 * in data loss. So use reserved blocks to allocate metadata if
2427 * possible.
2428 *
Theodore Ts'o754cfed2014-09-04 18:08:22 -04002429 * We pass in the magic EXT4_GET_BLOCKS_DELALLOC_RESERVE if
2430 * the blocks in question are delalloc blocks. This indicates
2431 * that the blocks and quotas has already been checked when
2432 * the data was copied into the page cache.
Jan Kara4e7ea812013-06-04 13:17:40 -04002433 */
2434 get_blocks_flags = EXT4_GET_BLOCKS_CREATE |
Jan Karaee0876b2016-04-24 00:56:08 -04002435 EXT4_GET_BLOCKS_METADATA_NOFAIL |
2436 EXT4_GET_BLOCKS_IO_SUBMIT;
Lukas Czerner090f32e2014-04-20 23:44:47 -04002437 dioread_nolock = ext4_should_dioread_nolock(inode);
2438 if (dioread_nolock)
Jan Kara4e7ea812013-06-04 13:17:40 -04002439 get_blocks_flags |= EXT4_GET_BLOCKS_IO_CREATE_EXT;
2440 if (map->m_flags & (1 << BH_Delay))
2441 get_blocks_flags |= EXT4_GET_BLOCKS_DELALLOC_RESERVE;
2442
2443 err = ext4_map_blocks(handle, inode, map, get_blocks_flags);
2444 if (err < 0)
2445 return err;
Lukas Czerner090f32e2014-04-20 23:44:47 -04002446 if (dioread_nolock && (map->m_flags & EXT4_MAP_UNWRITTEN)) {
Jan Kara6b523df2013-06-04 13:21:11 -04002447 if (!mpd->io_submit.io_end->handle &&
2448 ext4_handle_valid(handle)) {
2449 mpd->io_submit.io_end->handle = handle->h_rsv_handle;
2450 handle->h_rsv_handle = NULL;
2451 }
Jan Kara3613d222013-06-04 13:19:34 -04002452 ext4_set_io_unwritten_flag(inode, mpd->io_submit.io_end);
Jan Kara6b523df2013-06-04 13:21:11 -04002453 }
Jan Kara4e7ea812013-06-04 13:17:40 -04002454
2455 BUG_ON(map->m_len == 0);
2456 if (map->m_flags & EXT4_MAP_NEW) {
Jan Kara64e1c572016-11-04 18:08:13 +01002457 clean_bdev_aliases(inode->i_sb->s_bdev, map->m_pblk,
2458 map->m_len);
Jan Kara4e7ea812013-06-04 13:17:40 -04002459 }
2460 return 0;
2461}
2462
2463/*
2464 * mpage_map_and_submit_extent - map extent starting at mpd->lblk of length
2465 * mpd->len and submit pages underlying it for IO
2466 *
2467 * @handle - handle for journal operations
2468 * @mpd - extent to map
Jan Kara7534e852013-10-16 08:26:08 -04002469 * @give_up_on_write - we set this to true iff there is a fatal error and there
2470 * is no hope of writing the data. The caller should discard
2471 * dirty pages to avoid infinite loops.
Jan Kara4e7ea812013-06-04 13:17:40 -04002472 *
2473 * The function maps extent starting at mpd->lblk of length mpd->len. If it is
2474 * delayed, blocks are allocated, if it is unwritten, we may need to convert
2475 * them to initialized or split the described range from larger unwritten
2476 * extent. Note that we need not map all the described range since allocation
2477 * can return less blocks or the range is covered by more unwritten extents. We
2478 * cannot map more because we are limited by reserved transaction credits. On
2479 * the other hand we always make sure that the last touched page is fully
2480 * mapped so that it can be written out (and thus forward progress is
2481 * guaranteed). After mapping we submit all mapped pages for IO.
2482 */
2483static int mpage_map_and_submit_extent(handle_t *handle,
Theodore Ts'ocb530542013-07-01 08:12:40 -04002484 struct mpage_da_data *mpd,
2485 bool *give_up_on_write)
Jan Kara4e7ea812013-06-04 13:17:40 -04002486{
2487 struct inode *inode = mpd->inode;
2488 struct ext4_map_blocks *map = &mpd->map;
2489 int err;
2490 loff_t disksize;
Dmitry Monakhov66031202014-08-27 18:40:03 -04002491 int progress = 0;
Jan Kara4e7ea812013-06-04 13:17:40 -04002492
2493 mpd->io_submit.io_end->offset =
2494 ((loff_t)map->m_lblk) << inode->i_blkbits;
Jan Kara27d7c4e2013-07-05 21:57:22 -04002495 do {
Jan Kara4e7ea812013-06-04 13:17:40 -04002496 err = mpage_map_one_extent(handle, mpd);
2497 if (err < 0) {
2498 struct super_block *sb = inode->i_sb;
2499
Theodore Ts'o0db1ff22017-02-05 01:28:48 -05002500 if (ext4_forced_shutdown(EXT4_SB(sb)) ||
2501 EXT4_SB(sb)->s_mount_flags & EXT4_MF_FS_ABORTED)
Theodore Ts'ocb530542013-07-01 08:12:40 -04002502 goto invalidate_dirty_pages;
Jan Kara4e7ea812013-06-04 13:17:40 -04002503 /*
Theodore Ts'ocb530542013-07-01 08:12:40 -04002504 * Let the uper layers retry transient errors.
2505 * In the case of ENOSPC, if ext4_count_free_blocks()
2506 * is non-zero, a commit should free up blocks.
Jan Kara4e7ea812013-06-04 13:17:40 -04002507 */
Theodore Ts'ocb530542013-07-01 08:12:40 -04002508 if ((err == -ENOMEM) ||
Dmitry Monakhov66031202014-08-27 18:40:03 -04002509 (err == -ENOSPC && ext4_count_free_clusters(sb))) {
2510 if (progress)
2511 goto update_disksize;
Theodore Ts'ocb530542013-07-01 08:12:40 -04002512 return err;
Dmitry Monakhov66031202014-08-27 18:40:03 -04002513 }
Theodore Ts'ocb530542013-07-01 08:12:40 -04002514 ext4_msg(sb, KERN_CRIT,
2515 "Delayed block allocation failed for "
2516 "inode %lu at logical offset %llu with"
2517 " max blocks %u with error %d",
2518 inode->i_ino,
2519 (unsigned long long)map->m_lblk,
2520 (unsigned)map->m_len, -err);
2521 ext4_msg(sb, KERN_CRIT,
2522 "This should not happen!! Data will "
2523 "be lost\n");
2524 if (err == -ENOSPC)
2525 ext4_print_free_blocks(inode);
2526 invalidate_dirty_pages:
2527 *give_up_on_write = true;
Jan Kara4e7ea812013-06-04 13:17:40 -04002528 return err;
2529 }
Dmitry Monakhov66031202014-08-27 18:40:03 -04002530 progress = 1;
Jan Kara4e7ea812013-06-04 13:17:40 -04002531 /*
2532 * Update buffer state, submit mapped pages, and get us new
2533 * extent to map
2534 */
2535 err = mpage_map_and_submit_buffers(mpd);
2536 if (err < 0)
Dmitry Monakhov66031202014-08-27 18:40:03 -04002537 goto update_disksize;
Jan Kara27d7c4e2013-07-05 21:57:22 -04002538 } while (map->m_len);
Jan Kara4e7ea812013-06-04 13:17:40 -04002539
Dmitry Monakhov66031202014-08-27 18:40:03 -04002540update_disksize:
Theodore Ts'o622cad12014-04-11 10:35:17 -04002541 /*
2542 * Update on-disk size after IO is submitted. Races with
2543 * truncate are avoided by checking i_size under i_data_sem.
2544 */
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002545 disksize = ((loff_t)mpd->first_page) << PAGE_SHIFT;
Jan Kara4e7ea812013-06-04 13:17:40 -04002546 if (disksize > EXT4_I(inode)->i_disksize) {
2547 int err2;
Theodore Ts'o622cad12014-04-11 10:35:17 -04002548 loff_t i_size;
Jan Kara4e7ea812013-06-04 13:17:40 -04002549
Theodore Ts'o622cad12014-04-11 10:35:17 -04002550 down_write(&EXT4_I(inode)->i_data_sem);
2551 i_size = i_size_read(inode);
2552 if (disksize > i_size)
2553 disksize = i_size;
2554 if (disksize > EXT4_I(inode)->i_disksize)
2555 EXT4_I(inode)->i_disksize = disksize;
Theodore Ts'o622cad12014-04-11 10:35:17 -04002556 up_write(&EXT4_I(inode)->i_data_sem);
Theodore Ts'ob907f2d2017-01-11 22:14:49 -05002557 err2 = ext4_mark_inode_dirty(handle, inode);
Jan Kara4e7ea812013-06-04 13:17:40 -04002558 if (err2)
2559 ext4_error(inode->i_sb,
2560 "Failed to mark inode %lu dirty",
2561 inode->i_ino);
2562 if (!err)
2563 err = err2;
2564 }
2565 return err;
2566}
2567
2568/*
Jan Karafffb2732013-06-04 13:01:11 -04002569 * Calculate the total number of credits to reserve for one writepages
Theodore Ts'o20970ba2013-06-06 14:00:46 -04002570 * iteration. This is called from ext4_writepages(). We map an extent of
Anatol Pomozov70261f52013-08-28 14:40:12 -04002571 * up to MAX_WRITEPAGES_EXTENT_LEN blocks and then we go on and finish mapping
Jan Karafffb2732013-06-04 13:01:11 -04002572 * the last partial page. So in total we can map MAX_WRITEPAGES_EXTENT_LEN +
2573 * bpp - 1 blocks in bpp different extents.
2574 */
Mingming Cao525f4ed2008-08-19 22:15:58 -04002575static int ext4_da_writepages_trans_blocks(struct inode *inode)
2576{
Jan Karafffb2732013-06-04 13:01:11 -04002577 int bpp = ext4_journal_blocks_per_page(inode);
Mingming Cao525f4ed2008-08-19 22:15:58 -04002578
Jan Karafffb2732013-06-04 13:01:11 -04002579 return ext4_meta_trans_blocks(inode,
2580 MAX_WRITEPAGES_EXTENT_LEN + bpp - 1, bpp);
Mingming Cao525f4ed2008-08-19 22:15:58 -04002581}
Mingming Cao61628a32008-07-11 19:27:31 -04002582
Theodore Ts'o8e48dcf2010-05-16 18:00:00 -04002583/*
Jan Kara4e7ea812013-06-04 13:17:40 -04002584 * mpage_prepare_extent_to_map - find & lock contiguous range of dirty pages
2585 * and underlying extent to map
2586 *
2587 * @mpd - where to look for pages
2588 *
2589 * Walk dirty pages in the mapping. If they are fully mapped, submit them for
2590 * IO immediately. When we find a page which isn't mapped we start accumulating
2591 * extent of buffers underlying these pages that needs mapping (formed by
2592 * either delayed or unwritten buffers). We also lock the pages containing
2593 * these buffers. The extent found is returned in @mpd structure (starting at
2594 * mpd->lblk with length mpd->len blocks).
2595 *
2596 * Note that this function can attach bios to one io_end structure which are
2597 * neither logically nor physically contiguous. Although it may seem as an
2598 * unnecessary complication, it is actually inevitable in blocksize < pagesize
2599 * 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 -04002600 */
Jan Kara4e7ea812013-06-04 13:17:40 -04002601static int mpage_prepare_extent_to_map(struct mpage_da_data *mpd)
Theodore Ts'o8e48dcf2010-05-16 18:00:00 -04002602{
Jan Kara4e7ea812013-06-04 13:17:40 -04002603 struct address_space *mapping = mpd->inode->i_mapping;
2604 struct pagevec pvec;
2605 unsigned int nr_pages;
Ming Leiaeac5892013-10-17 18:56:16 -04002606 long left = mpd->wbc->nr_to_write;
Jan Kara4e7ea812013-06-04 13:17:40 -04002607 pgoff_t index = mpd->first_page;
2608 pgoff_t end = mpd->last_page;
2609 int tag;
2610 int i, err = 0;
2611 int blkbits = mpd->inode->i_blkbits;
2612 ext4_lblk_t lblk;
2613 struct buffer_head *head;
Theodore Ts'o8e48dcf2010-05-16 18:00:00 -04002614
Jan Kara4e7ea812013-06-04 13:17:40 -04002615 if (mpd->wbc->sync_mode == WB_SYNC_ALL || mpd->wbc->tagged_writepages)
Eric Sandeen5b41d922010-10-27 21:30:13 -04002616 tag = PAGECACHE_TAG_TOWRITE;
2617 else
2618 tag = PAGECACHE_TAG_DIRTY;
2619
Mel Gorman86679822017-11-15 17:37:52 -08002620 pagevec_init(&pvec);
Jan Kara4e7ea812013-06-04 13:17:40 -04002621 mpd->map.m_len = 0;
2622 mpd->next_page = index;
Theodore Ts'o4f01b022011-02-26 14:07:37 -05002623 while (index <= end) {
Jan Karadc7f3e82017-11-15 17:34:44 -08002624 nr_pages = pagevec_lookup_range_tag(&pvec, mapping, &index, end,
Jan Kara67fd7072017-11-15 17:35:19 -08002625 tag);
Theodore Ts'o8e48dcf2010-05-16 18:00:00 -04002626 if (nr_pages == 0)
Jan Kara4e7ea812013-06-04 13:17:40 -04002627 goto out;
Theodore Ts'o8e48dcf2010-05-16 18:00:00 -04002628
2629 for (i = 0; i < nr_pages; i++) {
2630 struct page *page = pvec.pages[i];
2631
2632 /*
Ming Leiaeac5892013-10-17 18:56:16 -04002633 * Accumulated enough dirty pages? This doesn't apply
2634 * to WB_SYNC_ALL mode. For integrity sync we have to
2635 * keep going because someone may be concurrently
2636 * dirtying pages, and we might have synced a lot of
2637 * newly appeared dirty pages, but have not synced all
2638 * of the old dirty pages.
2639 */
2640 if (mpd->wbc->sync_mode == WB_SYNC_NONE && left <= 0)
2641 goto out;
2642
Jan Kara4e7ea812013-06-04 13:17:40 -04002643 /* If we can't merge this page, we are done. */
2644 if (mpd->map.m_len > 0 && mpd->next_page != page->index)
2645 goto out;
Theodore Ts'o78aaced2011-02-26 14:09:14 -05002646
Theodore Ts'o8e48dcf2010-05-16 18:00:00 -04002647 lock_page(page);
Theodore Ts'o8e48dcf2010-05-16 18:00:00 -04002648 /*
Jan Kara4e7ea812013-06-04 13:17:40 -04002649 * If the page is no longer dirty, or its mapping no
2650 * longer corresponds to inode we are writing (which
2651 * means it has been truncated or invalidated), or the
2652 * page is already under writeback and we are not doing
2653 * a data integrity writeback, skip the page
Theodore Ts'o8e48dcf2010-05-16 18:00:00 -04002654 */
Theodore Ts'o4f01b022011-02-26 14:07:37 -05002655 if (!PageDirty(page) ||
2656 (PageWriteback(page) &&
Jan Kara4e7ea812013-06-04 13:17:40 -04002657 (mpd->wbc->sync_mode == WB_SYNC_NONE)) ||
Theodore Ts'o4f01b022011-02-26 14:07:37 -05002658 unlikely(page->mapping != mapping)) {
Theodore Ts'o8e48dcf2010-05-16 18:00:00 -04002659 unlock_page(page);
2660 continue;
2661 }
2662
Darrick J. Wong7cb1a532011-05-18 13:53:20 -04002663 wait_on_page_writeback(page);
Theodore Ts'o8e48dcf2010-05-16 18:00:00 -04002664 BUG_ON(PageWriteback(page));
Theodore Ts'o8e48dcf2010-05-16 18:00:00 -04002665
Jan Kara4e7ea812013-06-04 13:17:40 -04002666 if (mpd->map.m_len == 0)
Theodore Ts'o8eb9e5c2011-02-26 14:07:31 -05002667 mpd->first_page = page->index;
Theodore Ts'o8eb9e5c2011-02-26 14:07:31 -05002668 mpd->next_page = page->index + 1;
Jan Karaf8bec372013-01-28 12:55:08 -05002669 /* Add all dirty buffers to mpd */
Jan Kara4e7ea812013-06-04 13:17:40 -04002670 lblk = ((ext4_lblk_t)page->index) <<
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002671 (PAGE_SHIFT - blkbits);
Jan Karaf8bec372013-01-28 12:55:08 -05002672 head = page_buffers(page);
Jan Kara5f1132b2013-08-17 10:02:33 -04002673 err = mpage_process_page_bufs(mpd, head, head, lblk);
2674 if (err <= 0)
Jan Kara4e7ea812013-06-04 13:17:40 -04002675 goto out;
Jan Kara5f1132b2013-08-17 10:02:33 -04002676 err = 0;
Ming Leiaeac5892013-10-17 18:56:16 -04002677 left--;
Theodore Ts'o8e48dcf2010-05-16 18:00:00 -04002678 }
2679 pagevec_release(&pvec);
2680 cond_resched();
2681 }
Theodore Ts'o4f01b022011-02-26 14:07:37 -05002682 return 0;
Theodore Ts'o8eb9e5c2011-02-26 14:07:31 -05002683out:
2684 pagevec_release(&pvec);
Jan Kara4e7ea812013-06-04 13:17:40 -04002685 return err;
Theodore Ts'o8e48dcf2010-05-16 18:00:00 -04002686}
2687
Theodore Ts'o20970ba2013-06-06 14:00:46 -04002688static int __writepage(struct page *page, struct writeback_control *wbc,
2689 void *data)
2690{
2691 struct address_space *mapping = data;
2692 int ret = ext4_writepage(page, wbc);
2693 mapping_set_error(mapping, ret);
2694 return ret;
2695}
2696
2697static int ext4_writepages(struct address_space *mapping,
2698 struct writeback_control *wbc)
Alex Tomas64769242008-07-11 19:27:31 -04002699{
Jan Kara4e7ea812013-06-04 13:17:40 -04002700 pgoff_t writeback_index = 0;
2701 long nr_to_write = wbc->nr_to_write;
Aneesh Kumar K.V22208de2008-10-16 10:10:36 -04002702 int range_whole = 0;
Jan Kara4e7ea812013-06-04 13:17:40 -04002703 int cycled = 1;
Mingming Cao61628a32008-07-11 19:27:31 -04002704 handle_t *handle = NULL;
Aneesh Kumar K.Vdf222912008-09-08 23:05:34 -04002705 struct mpage_da_data mpd;
Aneesh Kumar K.V5e745b02008-08-18 18:00:57 -04002706 struct inode *inode = mapping->host;
Jan Kara6b523df2013-06-04 13:21:11 -04002707 int needed_blocks, rsv_blocks = 0, ret = 0;
Aneesh Kumar K.V5e745b02008-08-18 18:00:57 -04002708 struct ext4_sb_info *sbi = EXT4_SB(mapping->host->i_sb);
Jan Kara4e7ea812013-06-04 13:17:40 -04002709 bool done;
Shaohua Li1bce63d2011-10-18 10:55:51 -04002710 struct blk_plug plug;
Theodore Ts'ocb530542013-07-01 08:12:40 -04002711 bool give_up_on_write = false;
Mingming Cao61628a32008-07-11 19:27:31 -04002712
Theodore Ts'o0db1ff22017-02-05 01:28:48 -05002713 if (unlikely(ext4_forced_shutdown(EXT4_SB(inode->i_sb))))
2714 return -EIO;
2715
Daeho Jeongc8585c62016-04-25 23:22:35 -04002716 percpu_down_read(&sbi->s_journal_flag_rwsem);
Theodore Ts'o20970ba2013-06-06 14:00:46 -04002717 trace_ext4_writepages(inode, wbc);
Theodore Ts'oba80b102009-01-03 20:03:21 -05002718
Daeho Jeongc8585c62016-04-25 23:22:35 -04002719 if (dax_mapping(mapping)) {
2720 ret = dax_writeback_mapping_range(mapping, inode->i_sb->s_bdev,
2721 wbc);
2722 goto out_writepages;
2723 }
Ross Zwisler7f6d5b52016-02-26 15:19:55 -08002724
Mingming Cao61628a32008-07-11 19:27:31 -04002725 /*
2726 * No pages to write? This is mainly a kludge to avoid starting
2727 * a transaction for special inodes like journal inode on last iput()
2728 * because that could violate lock ordering on umount
2729 */
Aneesh Kumar K.Va1d6cc52008-08-19 21:55:02 -04002730 if (!mapping->nrpages || !mapping_tagged(mapping, PAGECACHE_TAG_DIRTY))
Ming Leibbf023c2013-10-30 07:27:16 -04002731 goto out_writepages;
Theodore Ts'o2a21e372008-11-05 09:22:24 -05002732
Theodore Ts'o20970ba2013-06-06 14:00:46 -04002733 if (ext4_should_journal_data(inode)) {
2734 struct blk_plug plug;
Theodore Ts'o20970ba2013-06-06 14:00:46 -04002735
2736 blk_start_plug(&plug);
2737 ret = write_cache_pages(mapping, wbc, __writepage, mapping);
2738 blk_finish_plug(&plug);
Ming Leibbf023c2013-10-30 07:27:16 -04002739 goto out_writepages;
Theodore Ts'o20970ba2013-06-06 14:00:46 -04002740 }
2741
Theodore Ts'o2a21e372008-11-05 09:22:24 -05002742 /*
2743 * If the filesystem has aborted, it is read-only, so return
2744 * right away instead of dumping stack traces later on that
2745 * will obscure the real source of the problem. We test
Linus Torvalds1751e8a2017-11-27 13:05:09 -08002746 * EXT4_MF_FS_ABORTED instead of sb->s_flag's SB_RDONLY because
Theodore Ts'o2a21e372008-11-05 09:22:24 -05002747 * the latter could be true if the filesystem is mounted
Theodore Ts'o20970ba2013-06-06 14:00:46 -04002748 * read-only, and in that case, ext4_writepages should
Theodore Ts'o2a21e372008-11-05 09:22:24 -05002749 * *never* be called, so if that ever happens, we would want
2750 * the stack trace.
2751 */
Theodore Ts'o0db1ff22017-02-05 01:28:48 -05002752 if (unlikely(ext4_forced_shutdown(EXT4_SB(mapping->host->i_sb)) ||
2753 sbi->s_mount_flags & EXT4_MF_FS_ABORTED)) {
Ming Leibbf023c2013-10-30 07:27:16 -04002754 ret = -EROFS;
2755 goto out_writepages;
2756 }
Theodore Ts'o2a21e372008-11-05 09:22:24 -05002757
Jan Kara6b523df2013-06-04 13:21:11 -04002758 if (ext4_should_dioread_nolock(inode)) {
2759 /*
Anatol Pomozov70261f52013-08-28 14:40:12 -04002760 * We may need to convert up to one extent per block in
Jan Kara6b523df2013-06-04 13:21:11 -04002761 * the page and we may dirty the inode.
2762 */
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002763 rsv_blocks = 1 + (PAGE_SIZE >> inode->i_blkbits);
Jan Kara6b523df2013-06-04 13:21:11 -04002764 }
2765
Jan Kara4e7ea812013-06-04 13:17:40 -04002766 /*
2767 * If we have inline data and arrive here, it means that
2768 * we will soon create the block for the 1st page, so
2769 * we'd better clear the inline data here.
2770 */
2771 if (ext4_has_inline_data(inode)) {
2772 /* Just inode will be modified... */
2773 handle = ext4_journal_start(inode, EXT4_HT_INODE, 1);
2774 if (IS_ERR(handle)) {
2775 ret = PTR_ERR(handle);
2776 goto out_writepages;
2777 }
2778 BUG_ON(ext4_test_inode_state(inode,
2779 EXT4_STATE_MAY_INLINE_DATA));
2780 ext4_destroy_inline_data(handle, inode);
2781 ext4_journal_stop(handle);
2782 }
2783
Aneesh Kumar K.V22208de2008-10-16 10:10:36 -04002784 if (wbc->range_start == 0 && wbc->range_end == LLONG_MAX)
2785 range_whole = 1;
Mingming Cao61628a32008-07-11 19:27:31 -04002786
Aneesh Kumar K.V2acf2c22009-02-14 10:42:58 -05002787 if (wbc->range_cyclic) {
Jan Kara4e7ea812013-06-04 13:17:40 -04002788 writeback_index = mapping->writeback_index;
2789 if (writeback_index)
Aneesh Kumar K.V2acf2c22009-02-14 10:42:58 -05002790 cycled = 0;
Jan Kara4e7ea812013-06-04 13:17:40 -04002791 mpd.first_page = writeback_index;
2792 mpd.last_page = -1;
Eric Sandeen5b41d922010-10-27 21:30:13 -04002793 } else {
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002794 mpd.first_page = wbc->range_start >> PAGE_SHIFT;
2795 mpd.last_page = wbc->range_end >> PAGE_SHIFT;
Eric Sandeen5b41d922010-10-27 21:30:13 -04002796 }
Aneesh Kumar K.Va1d6cc52008-08-19 21:55:02 -04002797
Jan Kara4e7ea812013-06-04 13:17:40 -04002798 mpd.inode = inode;
2799 mpd.wbc = wbc;
2800 ext4_io_submit_init(&mpd.io_submit, wbc);
Aneesh Kumar K.V2acf2c22009-02-14 10:42:58 -05002801retry:
Wu Fengguang6e6938b2010-06-06 10:38:15 -06002802 if (wbc->sync_mode == WB_SYNC_ALL || wbc->tagged_writepages)
Jan Kara4e7ea812013-06-04 13:17:40 -04002803 tag_pages_for_writeback(mapping, mpd.first_page, mpd.last_page);
2804 done = false;
Shaohua Li1bce63d2011-10-18 10:55:51 -04002805 blk_start_plug(&plug);
Jan Karadddbd6a2017-04-30 18:29:10 -04002806
2807 /*
2808 * First writeback pages that don't need mapping - we can avoid
2809 * starting a transaction unnecessarily and also avoid being blocked
2810 * in the block layer on device congestion while having transaction
2811 * started.
2812 */
2813 mpd.do_map = 0;
2814 mpd.io_submit.io_end = ext4_init_io_end(inode, GFP_KERNEL);
2815 if (!mpd.io_submit.io_end) {
2816 ret = -ENOMEM;
2817 goto unplug;
2818 }
2819 ret = mpage_prepare_extent_to_map(&mpd);
2820 /* Submit prepared bio */
2821 ext4_io_submit(&mpd.io_submit);
2822 ext4_put_io_end_defer(mpd.io_submit.io_end);
2823 mpd.io_submit.io_end = NULL;
2824 /* Unlock pages we didn't use */
2825 mpage_release_unused_pages(&mpd, false);
2826 if (ret < 0)
2827 goto unplug;
2828
Jan Kara4e7ea812013-06-04 13:17:40 -04002829 while (!done && mpd.first_page <= mpd.last_page) {
2830 /* For each extent of pages we use new io_end */
2831 mpd.io_submit.io_end = ext4_init_io_end(inode, GFP_KERNEL);
2832 if (!mpd.io_submit.io_end) {
2833 ret = -ENOMEM;
2834 break;
2835 }
Aneesh Kumar K.Va1d6cc52008-08-19 21:55:02 -04002836
2837 /*
Jan Kara4e7ea812013-06-04 13:17:40 -04002838 * We have two constraints: We find one extent to map and we
2839 * must always write out whole page (makes a difference when
2840 * blocksize < pagesize) so that we don't block on IO when we
2841 * try to write out the rest of the page. Journalled mode is
2842 * not supported by delalloc.
Aneesh Kumar K.Va1d6cc52008-08-19 21:55:02 -04002843 */
2844 BUG_ON(ext4_should_journal_data(inode));
Mingming Cao525f4ed2008-08-19 22:15:58 -04002845 needed_blocks = ext4_da_writepages_trans_blocks(inode);
Aneesh Kumar K.Va1d6cc52008-08-19 21:55:02 -04002846
Jan Kara4e7ea812013-06-04 13:17:40 -04002847 /* start a new transaction */
Jan Kara6b523df2013-06-04 13:21:11 -04002848 handle = ext4_journal_start_with_reserve(inode,
2849 EXT4_HT_WRITE_PAGE, needed_blocks, rsv_blocks);
Mingming Cao61628a32008-07-11 19:27:31 -04002850 if (IS_ERR(handle)) {
2851 ret = PTR_ERR(handle);
Theodore Ts'o16939182009-09-26 17:43:59 -04002852 ext4_msg(inode->i_sb, KERN_CRIT, "%s: jbd2_start: "
Curt Wohlgemuthfbe845d2010-05-16 13:00:00 -04002853 "%ld pages, ino %lu; err %d", __func__,
Aneesh Kumar K.Va1d6cc52008-08-19 21:55:02 -04002854 wbc->nr_to_write, inode->i_ino, ret);
Jan Kara4e7ea812013-06-04 13:17:40 -04002855 /* Release allocated io_end */
2856 ext4_put_io_end(mpd.io_submit.io_end);
Jan Karadddbd6a2017-04-30 18:29:10 -04002857 mpd.io_submit.io_end = NULL;
Jan Kara4e7ea812013-06-04 13:17:40 -04002858 break;
Mingming Cao61628a32008-07-11 19:27:31 -04002859 }
Jan Karadddbd6a2017-04-30 18:29:10 -04002860 mpd.do_map = 1;
Theodore Ts'of63e6002009-02-23 16:42:39 -05002861
Jan Kara4e7ea812013-06-04 13:17:40 -04002862 trace_ext4_da_write_pages(inode, mpd.first_page, mpd.wbc);
2863 ret = mpage_prepare_extent_to_map(&mpd);
2864 if (!ret) {
2865 if (mpd.map.m_len)
Theodore Ts'ocb530542013-07-01 08:12:40 -04002866 ret = mpage_map_and_submit_extent(handle, &mpd,
2867 &give_up_on_write);
Jan Kara4e7ea812013-06-04 13:17:40 -04002868 else {
2869 /*
2870 * We scanned the whole range (or exhausted
2871 * nr_to_write), submitted what was mapped and
2872 * didn't find anything needing mapping. We are
2873 * done.
2874 */
2875 done = true;
2876 }
Theodore Ts'of63e6002009-02-23 16:42:39 -05002877 }
Jan Kara646caa92016-07-04 10:14:01 -04002878 /*
2879 * Caution: If the handle is synchronous,
2880 * ext4_journal_stop() can wait for transaction commit
2881 * to finish which may depend on writeback of pages to
2882 * complete or on page lock to be released. In that
2883 * case, we have to wait until after after we have
2884 * submitted all the IO, released page locks we hold,
2885 * and dropped io_end reference (for extent conversion
2886 * to be able to complete) before stopping the handle.
2887 */
2888 if (!ext4_handle_valid(handle) || handle->h_sync == 0) {
2889 ext4_journal_stop(handle);
2890 handle = NULL;
Jan Karadddbd6a2017-04-30 18:29:10 -04002891 mpd.do_map = 0;
Jan Kara646caa92016-07-04 10:14:01 -04002892 }
Jan Kara4e7ea812013-06-04 13:17:40 -04002893 /* Submit prepared bio */
2894 ext4_io_submit(&mpd.io_submit);
2895 /* Unlock pages we didn't use */
Theodore Ts'ocb530542013-07-01 08:12:40 -04002896 mpage_release_unused_pages(&mpd, give_up_on_write);
Jan Kara646caa92016-07-04 10:14:01 -04002897 /*
2898 * Drop our io_end reference we got from init. We have
2899 * to be careful and use deferred io_end finishing if
2900 * we are still holding the transaction as we can
2901 * release the last reference to io_end which may end
2902 * up doing unwritten extent conversion.
2903 */
2904 if (handle) {
2905 ext4_put_io_end_defer(mpd.io_submit.io_end);
2906 ext4_journal_stop(handle);
2907 } else
2908 ext4_put_io_end(mpd.io_submit.io_end);
Jan Karadddbd6a2017-04-30 18:29:10 -04002909 mpd.io_submit.io_end = NULL;
Aneesh Kumar K.Vdf222912008-09-08 23:05:34 -04002910
Jan Kara4e7ea812013-06-04 13:17:40 -04002911 if (ret == -ENOSPC && sbi->s_journal) {
2912 /*
2913 * Commit the transaction which would
Aneesh Kumar K.V22208de2008-10-16 10:10:36 -04002914 * free blocks released in the transaction
2915 * and try again
2916 */
Aneesh Kumar K.Vdf222912008-09-08 23:05:34 -04002917 jbd2_journal_force_commit_nested(sbi->s_journal);
Aneesh Kumar K.V22208de2008-10-16 10:10:36 -04002918 ret = 0;
Jan Kara4e7ea812013-06-04 13:17:40 -04002919 continue;
2920 }
2921 /* Fatal error - ENOMEM, EIO... */
2922 if (ret)
Mingming Cao61628a32008-07-11 19:27:31 -04002923 break;
Mingming Cao61628a32008-07-11 19:27:31 -04002924 }
Jan Karadddbd6a2017-04-30 18:29:10 -04002925unplug:
Shaohua Li1bce63d2011-10-18 10:55:51 -04002926 blk_finish_plug(&plug);
Jan Kara9c12a832013-09-16 08:24:26 -04002927 if (!ret && !cycled && wbc->nr_to_write > 0) {
Aneesh Kumar K.V2acf2c22009-02-14 10:42:58 -05002928 cycled = 1;
Jan Kara4e7ea812013-06-04 13:17:40 -04002929 mpd.last_page = writeback_index - 1;
2930 mpd.first_page = 0;
Aneesh Kumar K.V2acf2c22009-02-14 10:42:58 -05002931 goto retry;
2932 }
Mingming Cao61628a32008-07-11 19:27:31 -04002933
Aneesh Kumar K.V22208de2008-10-16 10:10:36 -04002934 /* Update index */
Aneesh Kumar K.V22208de2008-10-16 10:10:36 -04002935 if (wbc->range_cyclic || (range_whole && wbc->nr_to_write > 0))
2936 /*
Jan Kara4e7ea812013-06-04 13:17:40 -04002937 * Set the writeback_index so that range_cyclic
Aneesh Kumar K.V22208de2008-10-16 10:10:36 -04002938 * mode will write it back later
2939 */
Jan Kara4e7ea812013-06-04 13:17:40 -04002940 mapping->writeback_index = mpd.first_page;
Aneesh Kumar K.Va1d6cc52008-08-19 21:55:02 -04002941
Mingming Cao61628a32008-07-11 19:27:31 -04002942out_writepages:
Theodore Ts'o20970ba2013-06-06 14:00:46 -04002943 trace_ext4_writepages_result(inode, wbc, ret,
2944 nr_to_write - wbc->nr_to_write);
Daeho Jeongc8585c62016-04-25 23:22:35 -04002945 percpu_up_read(&sbi->s_journal_flag_rwsem);
Mingming Cao61628a32008-07-11 19:27:31 -04002946 return ret;
Alex Tomas64769242008-07-11 19:27:31 -04002947}
2948
Aneesh Kumar K.V79f0be82008-10-08 23:13:30 -04002949static int ext4_nonda_switch(struct super_block *sb)
2950{
Eric Whitney5c1ff332013-04-09 09:27:31 -04002951 s64 free_clusters, dirty_clusters;
Aneesh Kumar K.V79f0be82008-10-08 23:13:30 -04002952 struct ext4_sb_info *sbi = EXT4_SB(sb);
2953
2954 /*
2955 * switch to non delalloc mode if we are running low
2956 * on free block. The free block accounting via percpu
Eric Dumazet179f7eb2009-01-06 14:41:04 -08002957 * counters can get slightly wrong with percpu_counter_batch getting
Aneesh Kumar K.V79f0be82008-10-08 23:13:30 -04002958 * accumulated on each CPU without updating global counters
2959 * Delalloc need an accurate free block accounting. So switch
2960 * to non delalloc when we are near to error range.
2961 */
Eric Whitney5c1ff332013-04-09 09:27:31 -04002962 free_clusters =
2963 percpu_counter_read_positive(&sbi->s_freeclusters_counter);
2964 dirty_clusters =
2965 percpu_counter_read_positive(&sbi->s_dirtyclusters_counter);
Theodore Ts'o00d4e732012-09-19 22:42:36 -04002966 /*
2967 * Start pushing delalloc when 1/2 of free blocks are dirty.
2968 */
Eric Whitney5c1ff332013-04-09 09:27:31 -04002969 if (dirty_clusters && (free_clusters < 2 * dirty_clusters))
Miao Xie10ee27a2013-01-10 13:47:57 +08002970 try_to_writeback_inodes_sb(sb, WB_REASON_FS_FREE_SPACE);
Theodore Ts'o00d4e732012-09-19 22:42:36 -04002971
Eric Whitney5c1ff332013-04-09 09:27:31 -04002972 if (2 * free_clusters < 3 * dirty_clusters ||
2973 free_clusters < (dirty_clusters + EXT4_FREECLUSTERS_WATERMARK)) {
Aneesh Kumar K.V79f0be82008-10-08 23:13:30 -04002974 /*
Eric Sandeenc8afb442009-12-23 07:58:12 -05002975 * free block count is less than 150% of dirty blocks
2976 * or free blocks is less than watermark
Aneesh Kumar K.V79f0be82008-10-08 23:13:30 -04002977 */
2978 return 1;
2979 }
2980 return 0;
2981}
2982
Eric Sandeen0ff89472014-10-11 19:51:17 -04002983/* We always reserve for an inode update; the superblock could be there too */
2984static int ext4_da_write_credits(struct inode *inode, loff_t pos, unsigned len)
2985{
Darrick J. Wonge2b911c2015-10-17 16:18:43 -04002986 if (likely(ext4_has_feature_large_file(inode->i_sb)))
Eric Sandeen0ff89472014-10-11 19:51:17 -04002987 return 1;
2988
2989 if (pos + len <= 0x7fffffffULL)
2990 return 1;
2991
2992 /* We might need to update the superblock to set LARGE_FILE */
2993 return 2;
2994}
2995
Alex Tomas64769242008-07-11 19:27:31 -04002996static int ext4_da_write_begin(struct file *file, struct address_space *mapping,
Theodore Ts'ode9a55b2009-06-14 17:45:34 -04002997 loff_t pos, unsigned len, unsigned flags,
2998 struct page **pagep, void **fsdata)
Alex Tomas64769242008-07-11 19:27:31 -04002999{
Eric Sandeen72b8ab92010-05-16 11:00:00 -04003000 int ret, retries = 0;
Alex Tomas64769242008-07-11 19:27:31 -04003001 struct page *page;
3002 pgoff_t index;
Alex Tomas64769242008-07-11 19:27:31 -04003003 struct inode *inode = mapping->host;
3004 handle_t *handle;
3005
Theodore Ts'o0db1ff22017-02-05 01:28:48 -05003006 if (unlikely(ext4_forced_shutdown(EXT4_SB(inode->i_sb))))
3007 return -EIO;
3008
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03003009 index = pos >> PAGE_SHIFT;
Aneesh Kumar K.V79f0be82008-10-08 23:13:30 -04003010
Theodore Ts'o4db0d882016-12-02 12:12:53 -05003011 if (ext4_nonda_switch(inode->i_sb) ||
3012 S_ISLNK(inode->i_mode)) {
Aneesh Kumar K.V79f0be82008-10-08 23:13:30 -04003013 *fsdata = (void *)FALL_BACK_TO_NONDELALLOC;
3014 return ext4_write_begin(file, mapping, pos,
3015 len, flags, pagep, fsdata);
3016 }
3017 *fsdata = (void *)0;
Theodore Ts'o9bffad12009-06-17 11:48:11 -04003018 trace_ext4_da_write_begin(inode, pos, len, flags);
Tao Ma9c3569b2012-12-10 14:05:57 -05003019
3020 if (ext4_test_inode_state(inode, EXT4_STATE_MAY_INLINE_DATA)) {
3021 ret = ext4_da_write_inline_data_begin(mapping, inode,
3022 pos, len, flags,
3023 pagep, fsdata);
3024 if (ret < 0)
Theodore Ts'o47564bf2013-02-09 09:24:14 -05003025 return ret;
3026 if (ret == 1)
3027 return 0;
Tao Ma9c3569b2012-12-10 14:05:57 -05003028 }
3029
Theodore Ts'o47564bf2013-02-09 09:24:14 -05003030 /*
3031 * grab_cache_page_write_begin() can take a long time if the
3032 * system is thrashing due to memory pressure, or if the page
3033 * is being written back. So grab it first before we start
3034 * the transaction handle. This also allows us to allocate
3035 * the page (if needed) without using GFP_NOFS.
3036 */
3037retry_grab:
3038 page = grab_cache_page_write_begin(mapping, index, flags);
3039 if (!page)
3040 return -ENOMEM;
3041 unlock_page(page);
3042
Alex Tomas64769242008-07-11 19:27:31 -04003043 /*
3044 * With delayed allocation, we don't log the i_disksize update
3045 * if there is delayed block allocation. But we still need
3046 * to journalling the i_disksize update if writes to the end
3047 * of file which has an already mapped buffer.
3048 */
Theodore Ts'o47564bf2013-02-09 09:24:14 -05003049retry_journal:
Eric Sandeen0ff89472014-10-11 19:51:17 -04003050 handle = ext4_journal_start(inode, EXT4_HT_WRITE_PAGE,
3051 ext4_da_write_credits(inode, pos, len));
Alex Tomas64769242008-07-11 19:27:31 -04003052 if (IS_ERR(handle)) {
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03003053 put_page(page);
Theodore Ts'o47564bf2013-02-09 09:24:14 -05003054 return PTR_ERR(handle);
Alex Tomas64769242008-07-11 19:27:31 -04003055 }
3056
Theodore Ts'o47564bf2013-02-09 09:24:14 -05003057 lock_page(page);
3058 if (page->mapping != mapping) {
3059 /* The page got truncated from under us */
3060 unlock_page(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03003061 put_page(page);
Eric Sandeend5a0d4f2008-08-02 18:51:06 -04003062 ext4_journal_stop(handle);
Theodore Ts'o47564bf2013-02-09 09:24:14 -05003063 goto retry_grab;
Eric Sandeend5a0d4f2008-08-02 18:51:06 -04003064 }
Theodore Ts'o47564bf2013-02-09 09:24:14 -05003065 /* In case writeback began while the page was unlocked */
Dmitry Monakhov7afe5aa2013-08-28 14:30:47 -04003066 wait_for_stable_page(page);
Alex Tomas64769242008-07-11 19:27:31 -04003067
Michael Halcrow2058f832015-04-12 00:55:10 -04003068#ifdef CONFIG_EXT4_FS_ENCRYPTION
3069 ret = ext4_block_write_begin(page, pos, len,
3070 ext4_da_get_block_prep);
3071#else
Christoph Hellwig6e1db882010-06-04 11:29:57 +02003072 ret = __block_write_begin(page, pos, len, ext4_da_get_block_prep);
Michael Halcrow2058f832015-04-12 00:55:10 -04003073#endif
Alex Tomas64769242008-07-11 19:27:31 -04003074 if (ret < 0) {
3075 unlock_page(page);
3076 ext4_journal_stop(handle);
Aneesh Kumar K.Vae4d5372008-09-13 13:10:25 -04003077 /*
3078 * block_write_begin may have instantiated a few blocks
3079 * outside i_size. Trim these off again. Don't need
3080 * i_size_read because we hold i_mutex.
3081 */
3082 if (pos + len > inode->i_size)
Jan Karab9a42072009-12-08 21:24:33 -05003083 ext4_truncate_failed_write(inode);
Theodore Ts'o47564bf2013-02-09 09:24:14 -05003084
3085 if (ret == -ENOSPC &&
3086 ext4_should_retry_alloc(inode->i_sb, &retries))
3087 goto retry_journal;
3088
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03003089 put_page(page);
Theodore Ts'o47564bf2013-02-09 09:24:14 -05003090 return ret;
Alex Tomas64769242008-07-11 19:27:31 -04003091 }
3092
Theodore Ts'o47564bf2013-02-09 09:24:14 -05003093 *pagep = page;
Alex Tomas64769242008-07-11 19:27:31 -04003094 return ret;
3095}
3096
Mingming Cao632eaea2008-07-11 19:27:31 -04003097/*
3098 * Check if we should update i_disksize
3099 * when write to the end of file but not require block allocation
3100 */
3101static int ext4_da_should_update_i_disksize(struct page *page,
Theodore Ts'ode9a55b2009-06-14 17:45:34 -04003102 unsigned long offset)
Mingming Cao632eaea2008-07-11 19:27:31 -04003103{
3104 struct buffer_head *bh;
3105 struct inode *inode = page->mapping->host;
3106 unsigned int idx;
3107 int i;
3108
3109 bh = page_buffers(page);
3110 idx = offset >> inode->i_blkbits;
3111
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04003112 for (i = 0; i < idx; i++)
Mingming Cao632eaea2008-07-11 19:27:31 -04003113 bh = bh->b_this_page;
3114
Aneesh Kumar K.V29fa89d2009-05-12 16:30:27 -04003115 if (!buffer_mapped(bh) || (buffer_delay(bh)) || buffer_unwritten(bh))
Mingming Cao632eaea2008-07-11 19:27:31 -04003116 return 0;
3117 return 1;
3118}
3119
Alex Tomas64769242008-07-11 19:27:31 -04003120static int ext4_da_write_end(struct file *file,
Theodore Ts'ode9a55b2009-06-14 17:45:34 -04003121 struct address_space *mapping,
3122 loff_t pos, unsigned len, unsigned copied,
3123 struct page *page, void *fsdata)
Alex Tomas64769242008-07-11 19:27:31 -04003124{
3125 struct inode *inode = mapping->host;
3126 int ret = 0, ret2;
3127 handle_t *handle = ext4_journal_current_handle();
3128 loff_t new_i_size;
Mingming Cao632eaea2008-07-11 19:27:31 -04003129 unsigned long start, end;
Aneesh Kumar K.V79f0be82008-10-08 23:13:30 -04003130 int write_mode = (int)(unsigned long)fsdata;
3131
Theodore Ts'o74d553a2013-04-03 12:39:17 -04003132 if (write_mode == FALL_BACK_TO_NONDELALLOC)
3133 return ext4_write_end(file, mapping, pos,
3134 len, copied, page, fsdata);
Mingming Cao632eaea2008-07-11 19:27:31 -04003135
Theodore Ts'o9bffad12009-06-17 11:48:11 -04003136 trace_ext4_da_write_end(inode, pos, len, copied);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03003137 start = pos & (PAGE_SIZE - 1);
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04003138 end = start + copied - 1;
Alex Tomas64769242008-07-11 19:27:31 -04003139
3140 /*
3141 * generic_write_end() will run mark_inode_dirty() if i_size
3142 * changes. So let's piggyback the i_disksize mark_inode_dirty
3143 * into that.
3144 */
Alex Tomas64769242008-07-11 19:27:31 -04003145 new_i_size = pos + copied;
Andrea Arcangeliea51d132011-12-13 21:41:15 -05003146 if (copied && new_i_size > EXT4_I(inode)->i_disksize) {
Tao Ma9c3569b2012-12-10 14:05:57 -05003147 if (ext4_has_inline_data(inode) ||
3148 ext4_da_should_update_i_disksize(page, end)) {
Dmitry Monakhovee124d22014-08-30 23:34:06 -04003149 ext4_update_i_disksize(inode, new_i_size);
Aneesh Kumar K.Vcf17fea2008-09-13 13:06:18 -04003150 /* We need to mark inode dirty even if
3151 * new_i_size is less that inode->i_size
3152 * bu greater than i_disksize.(hint delalloc)
3153 */
3154 ext4_mark_inode_dirty(handle, inode);
Alex Tomas64769242008-07-11 19:27:31 -04003155 }
Mingming Cao632eaea2008-07-11 19:27:31 -04003156 }
Tao Ma9c3569b2012-12-10 14:05:57 -05003157
3158 if (write_mode != CONVERT_INLINE_DATA &&
3159 ext4_test_inode_state(inode, EXT4_STATE_MAY_INLINE_DATA) &&
3160 ext4_has_inline_data(inode))
3161 ret2 = ext4_da_write_inline_data_end(inode, pos, len, copied,
3162 page);
3163 else
3164 ret2 = generic_write_end(file, mapping, pos, len, copied,
Alex Tomas64769242008-07-11 19:27:31 -04003165 page, fsdata);
Tao Ma9c3569b2012-12-10 14:05:57 -05003166
Alex Tomas64769242008-07-11 19:27:31 -04003167 copied = ret2;
3168 if (ret2 < 0)
3169 ret = ret2;
3170 ret2 = ext4_journal_stop(handle);
3171 if (!ret)
3172 ret = ret2;
3173
3174 return ret ? ret : copied;
3175}
3176
Lukas Czernerd47992f2013-05-21 23:17:23 -04003177static void ext4_da_invalidatepage(struct page *page, unsigned int offset,
3178 unsigned int length)
Alex Tomas64769242008-07-11 19:27:31 -04003179{
Alex Tomas64769242008-07-11 19:27:31 -04003180 /*
3181 * Drop reserved blocks
3182 */
3183 BUG_ON(!PageLocked(page));
3184 if (!page_has_buffers(page))
3185 goto out;
3186
Lukas Czernerca99fdd2013-05-21 23:25:01 -04003187 ext4_da_page_release_reservation(page, offset, length);
Alex Tomas64769242008-07-11 19:27:31 -04003188
3189out:
Lukas Czernerd47992f2013-05-21 23:17:23 -04003190 ext4_invalidatepage(page, offset, length);
Alex Tomas64769242008-07-11 19:27:31 -04003191
3192 return;
3193}
3194
Theodore Ts'occd25062009-02-26 01:04:07 -05003195/*
3196 * Force all delayed allocation blocks to be allocated for a given inode.
3197 */
3198int ext4_alloc_da_blocks(struct inode *inode)
3199{
Theodore Ts'ofb40ba02009-09-16 19:30:40 -04003200 trace_ext4_alloc_da_blocks(inode);
3201
Theodore Ts'o71d4f7d2014-07-15 06:02:38 -04003202 if (!EXT4_I(inode)->i_reserved_data_blocks)
Theodore Ts'occd25062009-02-26 01:04:07 -05003203 return 0;
3204
3205 /*
3206 * We do something simple for now. The filemap_flush() will
3207 * also start triggering a write of the data blocks, which is
3208 * not strictly speaking necessary (and for users of
3209 * laptop_mode, not even desirable). However, to do otherwise
3210 * would require replicating code paths in:
Theodore Ts'ode9a55b2009-06-14 17:45:34 -04003211 *
Theodore Ts'o20970ba2013-06-06 14:00:46 -04003212 * ext4_writepages() ->
Theodore Ts'occd25062009-02-26 01:04:07 -05003213 * write_cache_pages() ---> (via passed in callback function)
3214 * __mpage_da_writepage() -->
3215 * mpage_add_bh_to_extent()
3216 * mpage_da_map_blocks()
3217 *
3218 * The problem is that write_cache_pages(), located in
3219 * mm/page-writeback.c, marks pages clean in preparation for
3220 * doing I/O, which is not desirable if we're not planning on
3221 * doing I/O at all.
3222 *
3223 * We could call write_cache_pages(), and then redirty all of
Wu Fengguang380cf092010-11-11 19:23:29 +08003224 * the pages by calling redirty_page_for_writepage() but that
Theodore Ts'occd25062009-02-26 01:04:07 -05003225 * would be ugly in the extreme. So instead we would need to
3226 * replicate parts of the code in the above functions,
Lucas De Marchi25985ed2011-03-30 22:57:33 -03003227 * simplifying them because we wouldn't actually intend to
Theodore Ts'occd25062009-02-26 01:04:07 -05003228 * write out the pages, but rather only collect contiguous
3229 * logical block extents, call the multi-block allocator, and
3230 * then update the buffer heads with the block allocations.
Theodore Ts'ode9a55b2009-06-14 17:45:34 -04003231 *
Theodore Ts'occd25062009-02-26 01:04:07 -05003232 * For now, though, we'll cheat by calling filemap_flush(),
3233 * which will map the blocks, and start the I/O, but not
3234 * actually wait for the I/O to complete.
3235 */
3236 return filemap_flush(inode->i_mapping);
3237}
Alex Tomas64769242008-07-11 19:27:31 -04003238
3239/*
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003240 * bmap() is special. It gets used by applications such as lilo and by
3241 * the swapper to find the on-disk block of a specific piece of data.
3242 *
3243 * Naturally, this is dangerous if the block concerned is still in the
Mingming Cao617ba132006-10-11 01:20:53 -07003244 * journal. If somebody makes a swapfile on an ext4 data-journaling
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003245 * filesystem and enables swap, then they may get a nasty shock when the
3246 * data getting swapped to that swapfile suddenly gets overwritten by
3247 * the original zero's written out previously to the journal and
3248 * awaiting writeback in the kernel's buffer cache.
3249 *
3250 * So, if we see any bmap calls here on a modified, data-journaled file,
3251 * take extra steps to flush any blocks which might be in the cache.
3252 */
Mingming Cao617ba132006-10-11 01:20:53 -07003253static sector_t ext4_bmap(struct address_space *mapping, sector_t block)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003254{
3255 struct inode *inode = mapping->host;
3256 journal_t *journal;
3257 int err;
3258
Tao Ma46c7f252012-12-10 14:04:52 -05003259 /*
3260 * We can get here for an inline file via the FIBMAP ioctl
3261 */
3262 if (ext4_has_inline_data(inode))
3263 return 0;
3264
Alex Tomas64769242008-07-11 19:27:31 -04003265 if (mapping_tagged(mapping, PAGECACHE_TAG_DIRTY) &&
3266 test_opt(inode->i_sb, DELALLOC)) {
3267 /*
3268 * With delalloc we want to sync the file
3269 * so that we can make sure we allocate
3270 * blocks for file
3271 */
3272 filemap_write_and_wait(mapping);
3273 }
3274
Theodore Ts'o19f5fb72010-01-24 14:34:07 -05003275 if (EXT4_JOURNAL(inode) &&
3276 ext4_test_inode_state(inode, EXT4_STATE_JDATA)) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003277 /*
3278 * This is a REALLY heavyweight approach, but the use of
3279 * bmap on dirty files is expected to be extremely rare:
3280 * only if we run lilo or swapon on a freshly made file
3281 * do we expect this to happen.
3282 *
3283 * (bmap requires CAP_SYS_RAWIO so this does not
3284 * represent an unprivileged user DOS attack --- we'd be
3285 * in trouble if mortal users could trigger this path at
3286 * will.)
3287 *
Mingming Cao617ba132006-10-11 01:20:53 -07003288 * NB. EXT4_STATE_JDATA is not set on files other than
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003289 * regular files. If somebody wants to bmap a directory
3290 * or symlink and gets confused because the buffer
3291 * hasn't yet been flushed to disk, they deserve
3292 * everything they get.
3293 */
3294
Theodore Ts'o19f5fb72010-01-24 14:34:07 -05003295 ext4_clear_inode_state(inode, EXT4_STATE_JDATA);
Mingming Cao617ba132006-10-11 01:20:53 -07003296 journal = EXT4_JOURNAL(inode);
Mingming Caodab291a2006-10-11 01:21:01 -07003297 jbd2_journal_lock_updates(journal);
3298 err = jbd2_journal_flush(journal);
3299 jbd2_journal_unlock_updates(journal);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003300
3301 if (err)
3302 return 0;
3303 }
3304
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04003305 return generic_block_bmap(mapping, block, ext4_get_block);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003306}
3307
Mingming Cao617ba132006-10-11 01:20:53 -07003308static int ext4_readpage(struct file *file, struct page *page)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003309{
Tao Ma46c7f252012-12-10 14:04:52 -05003310 int ret = -EAGAIN;
3311 struct inode *inode = page->mapping->host;
3312
Jiaying Zhang0562e0b2011-03-21 21:38:05 -04003313 trace_ext4_readpage(page);
Tao Ma46c7f252012-12-10 14:04:52 -05003314
3315 if (ext4_has_inline_data(inode))
3316 ret = ext4_readpage_inline(inode, page);
3317
3318 if (ret == -EAGAIN)
Theodore Ts'of64e02f2015-04-08 00:00:32 -04003319 return ext4_mpage_readpages(page->mapping, NULL, page, 1);
Tao Ma46c7f252012-12-10 14:04:52 -05003320
3321 return ret;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003322}
3323
3324static int
Mingming Cao617ba132006-10-11 01:20:53 -07003325ext4_readpages(struct file *file, struct address_space *mapping,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003326 struct list_head *pages, unsigned nr_pages)
3327{
Tao Ma46c7f252012-12-10 14:04:52 -05003328 struct inode *inode = mapping->host;
3329
3330 /* If the file has inline data, no need to do readpages. */
3331 if (ext4_has_inline_data(inode))
3332 return 0;
3333
Theodore Ts'of64e02f2015-04-08 00:00:32 -04003334 return ext4_mpage_readpages(mapping, pages, NULL, nr_pages);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003335}
3336
Lukas Czernerd47992f2013-05-21 23:17:23 -04003337static void ext4_invalidatepage(struct page *page, unsigned int offset,
3338 unsigned int length)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003339{
Lukas Czernerca99fdd2013-05-21 23:25:01 -04003340 trace_ext4_invalidatepage(page, offset, length);
Jiaying Zhang0562e0b2011-03-21 21:38:05 -04003341
Jan Kara4520fb32012-12-25 13:28:54 -05003342 /* No journalling happens on data buffers when this function is used */
3343 WARN_ON(page_has_buffers(page) && buffer_jbd(page_buffers(page)));
3344
Lukas Czernerca99fdd2013-05-21 23:25:01 -04003345 block_invalidatepage(page, offset, length);
Jan Kara4520fb32012-12-25 13:28:54 -05003346}
3347
Jan Kara53e87262012-12-25 13:29:52 -05003348static int __ext4_journalled_invalidatepage(struct page *page,
Lukas Czernerca99fdd2013-05-21 23:25:01 -04003349 unsigned int offset,
3350 unsigned int length)
Jan Kara4520fb32012-12-25 13:28:54 -05003351{
3352 journal_t *journal = EXT4_JOURNAL(page->mapping->host);
3353
Lukas Czernerca99fdd2013-05-21 23:25:01 -04003354 trace_ext4_journalled_invalidatepage(page, offset, length);
Jan Kara4520fb32012-12-25 13:28:54 -05003355
Jiaying Zhang744692d2010-03-04 16:14:02 -05003356 /*
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003357 * If it's a full truncate we just forget about the pending dirtying
3358 */
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03003359 if (offset == 0 && length == PAGE_SIZE)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003360 ClearPageChecked(page);
3361
Lukas Czernerca99fdd2013-05-21 23:25:01 -04003362 return jbd2_journal_invalidatepage(journal, page, offset, length);
Jan Kara53e87262012-12-25 13:29:52 -05003363}
3364
3365/* Wrapper for aops... */
3366static void ext4_journalled_invalidatepage(struct page *page,
Lukas Czernerd47992f2013-05-21 23:17:23 -04003367 unsigned int offset,
3368 unsigned int length)
Jan Kara53e87262012-12-25 13:29:52 -05003369{
Lukas Czernerca99fdd2013-05-21 23:25:01 -04003370 WARN_ON(__ext4_journalled_invalidatepage(page, offset, length) < 0);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003371}
3372
Mingming Cao617ba132006-10-11 01:20:53 -07003373static int ext4_releasepage(struct page *page, gfp_t wait)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003374{
Mingming Cao617ba132006-10-11 01:20:53 -07003375 journal_t *journal = EXT4_JOURNAL(page->mapping->host);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003376
Jiaying Zhang0562e0b2011-03-21 21:38:05 -04003377 trace_ext4_releasepage(page);
3378
Jan Karae1c36592013-03-10 22:19:00 -04003379 /* Page has dirty journalled data -> cannot release */
3380 if (PageChecked(page))
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003381 return 0;
Frank Mayhar03901312009-01-07 00:06:22 -05003382 if (journal)
3383 return jbd2_journal_try_to_free_buffers(journal, page, wait);
3384 else
3385 return try_to_free_buffers(page);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003386}
3387
Jan Karab8a61762017-11-01 16:36:45 +01003388static bool ext4_inode_datasync_dirty(struct inode *inode)
3389{
3390 journal_t *journal = EXT4_SB(inode->i_sb)->s_journal;
3391
3392 if (journal)
3393 return !jbd2_transaction_committed(journal,
3394 EXT4_I(inode)->i_datasync_tid);
3395 /* Any metadata buffers to write? */
3396 if (!list_empty(&inode->i_mapping->private_list))
3397 return true;
3398 return inode->i_state & I_DIRTY_DATASYNC;
3399}
3400
Jan Kara364443c2016-11-20 17:36:06 -05003401static int ext4_iomap_begin(struct inode *inode, loff_t offset, loff_t length,
3402 unsigned flags, struct iomap *iomap)
3403{
Dan Williams5e405592017-08-24 16:42:48 -07003404 struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb);
Jan Kara364443c2016-11-20 17:36:06 -05003405 unsigned int blkbits = inode->i_blkbits;
3406 unsigned long first_block = offset >> blkbits;
3407 unsigned long last_block = (offset + length - 1) >> blkbits;
3408 struct ext4_map_blocks map;
Christoph Hellwig545052e2017-10-01 17:58:54 -04003409 bool delalloc = false;
Jan Kara364443c2016-11-20 17:36:06 -05003410 int ret;
3411
Andreas Gruenbacher7046ae32017-10-01 17:57:54 -04003412
3413 if (flags & IOMAP_REPORT) {
3414 if (ext4_has_inline_data(inode)) {
3415 ret = ext4_inline_data_iomap(inode, iomap);
3416 if (ret != -EAGAIN) {
3417 if (ret == 0 && offset >= iomap->length)
3418 ret = -ENOENT;
3419 return ret;
3420 }
3421 }
3422 } else {
3423 if (WARN_ON_ONCE(ext4_has_inline_data(inode)))
3424 return -ERANGE;
3425 }
Jan Kara364443c2016-11-20 17:36:06 -05003426
3427 map.m_lblk = first_block;
3428 map.m_len = last_block - first_block + 1;
3429
Christoph Hellwig545052e2017-10-01 17:58:54 -04003430 if (flags & IOMAP_REPORT) {
Jan Kara776722e2016-11-20 18:09:11 -05003431 ret = ext4_map_blocks(NULL, inode, &map, 0);
Christoph Hellwig545052e2017-10-01 17:58:54 -04003432 if (ret < 0)
3433 return ret;
3434
3435 if (ret == 0) {
3436 ext4_lblk_t end = map.m_lblk + map.m_len - 1;
3437 struct extent_status es;
3438
3439 ext4_es_find_delayed_extent_range(inode, map.m_lblk, end, &es);
3440
3441 if (!es.es_len || es.es_lblk > end) {
3442 /* entire range is a hole */
3443 } else if (es.es_lblk > map.m_lblk) {
3444 /* range starts with a hole */
3445 map.m_len = es.es_lblk - map.m_lblk;
3446 } else {
3447 ext4_lblk_t offs = 0;
3448
3449 if (es.es_lblk < map.m_lblk)
3450 offs = map.m_lblk - es.es_lblk;
3451 map.m_lblk = es.es_lblk + offs;
3452 map.m_len = es.es_len - offs;
3453 delalloc = true;
3454 }
3455 }
3456 } else if (flags & IOMAP_WRITE) {
Jan Kara776722e2016-11-20 18:09:11 -05003457 int dio_credits;
3458 handle_t *handle;
3459 int retries = 0;
3460
3461 /* Trim mapping request to maximum we can map at once for DIO */
3462 if (map.m_len > DIO_MAX_BLOCKS)
3463 map.m_len = DIO_MAX_BLOCKS;
3464 dio_credits = ext4_chunk_trans_blocks(inode, map.m_len);
3465retry:
3466 /*
3467 * Either we allocate blocks and then we don't get unwritten
3468 * extent so we have reserved enough credits, or the blocks
3469 * are already allocated and unwritten and in that case
3470 * extent conversion fits in the credits as well.
3471 */
3472 handle = ext4_journal_start(inode, EXT4_HT_MAP_BLOCKS,
3473 dio_credits);
3474 if (IS_ERR(handle))
3475 return PTR_ERR(handle);
3476
3477 ret = ext4_map_blocks(handle, inode, &map,
Jan Kara776722e2016-11-20 18:09:11 -05003478 EXT4_GET_BLOCKS_CREATE_ZERO);
3479 if (ret < 0) {
3480 ext4_journal_stop(handle);
3481 if (ret == -ENOSPC &&
3482 ext4_should_retry_alloc(inode->i_sb, &retries))
3483 goto retry;
3484 return ret;
3485 }
Jan Kara776722e2016-11-20 18:09:11 -05003486
3487 /*
Jan Karae2ae7662016-11-20 18:51:24 -05003488 * If we added blocks beyond i_size, we need to make sure they
Jan Kara776722e2016-11-20 18:09:11 -05003489 * will get truncated if we crash before updating i_size in
Jan Karae2ae7662016-11-20 18:51:24 -05003490 * ext4_iomap_end(). For faults we don't need to do that (and
3491 * even cannot because for orphan list operations inode_lock is
3492 * required) - if we happen to instantiate block beyond i_size,
3493 * it is because we race with truncate which has already added
3494 * the inode to the orphan list.
Jan Kara776722e2016-11-20 18:09:11 -05003495 */
Jan Karae2ae7662016-11-20 18:51:24 -05003496 if (!(flags & IOMAP_FAULT) && first_block + map.m_len >
3497 (i_size_read(inode) + (1 << blkbits) - 1) >> blkbits) {
Jan Kara776722e2016-11-20 18:09:11 -05003498 int err;
3499
3500 err = ext4_orphan_add(handle, inode);
3501 if (err < 0) {
3502 ext4_journal_stop(handle);
3503 return err;
3504 }
3505 }
3506 ext4_journal_stop(handle);
Christoph Hellwig545052e2017-10-01 17:58:54 -04003507 } else {
3508 ret = ext4_map_blocks(NULL, inode, &map, 0);
3509 if (ret < 0)
3510 return ret;
Jan Kara776722e2016-11-20 18:09:11 -05003511 }
Jan Kara364443c2016-11-20 17:36:06 -05003512
3513 iomap->flags = 0;
Dan Williamsaaa422c2017-11-13 16:38:44 -08003514 if (ext4_inode_datasync_dirty(inode))
Jan Karab8a61762017-11-01 16:36:45 +01003515 iomap->flags |= IOMAP_F_DIRTY;
Dan Williams5e405592017-08-24 16:42:48 -07003516 iomap->bdev = inode->i_sb->s_bdev;
3517 iomap->dax_dev = sbi->s_daxdev;
Jan Kara364443c2016-11-20 17:36:06 -05003518 iomap->offset = first_block << blkbits;
Christoph Hellwig545052e2017-10-01 17:58:54 -04003519 iomap->length = (u64)map.m_len << blkbits;
Jan Kara364443c2016-11-20 17:36:06 -05003520
3521 if (ret == 0) {
Christoph Hellwig545052e2017-10-01 17:58:54 -04003522 iomap->type = delalloc ? IOMAP_DELALLOC : IOMAP_HOLE;
Andreas Gruenbacher19fe5f62017-10-01 17:55:54 -04003523 iomap->addr = IOMAP_NULL_ADDR;
Jan Kara364443c2016-11-20 17:36:06 -05003524 } else {
3525 if (map.m_flags & EXT4_MAP_MAPPED) {
3526 iomap->type = IOMAP_MAPPED;
3527 } else if (map.m_flags & EXT4_MAP_UNWRITTEN) {
3528 iomap->type = IOMAP_UNWRITTEN;
3529 } else {
3530 WARN_ON_ONCE(1);
3531 return -EIO;
3532 }
Andreas Gruenbacher19fe5f62017-10-01 17:55:54 -04003533 iomap->addr = (u64)map.m_pblk << blkbits;
Jan Kara364443c2016-11-20 17:36:06 -05003534 }
3535
3536 if (map.m_flags & EXT4_MAP_NEW)
3537 iomap->flags |= IOMAP_F_NEW;
Christoph Hellwig545052e2017-10-01 17:58:54 -04003538
Jan Kara364443c2016-11-20 17:36:06 -05003539 return 0;
3540}
3541
Jan Kara776722e2016-11-20 18:09:11 -05003542static int ext4_iomap_end(struct inode *inode, loff_t offset, loff_t length,
3543 ssize_t written, unsigned flags, struct iomap *iomap)
3544{
3545 int ret = 0;
3546 handle_t *handle;
3547 int blkbits = inode->i_blkbits;
3548 bool truncate = false;
3549
Jan Karae2ae7662016-11-20 18:51:24 -05003550 if (!(flags & IOMAP_WRITE) || (flags & IOMAP_FAULT))
Jan Kara776722e2016-11-20 18:09:11 -05003551 return 0;
3552
3553 handle = ext4_journal_start(inode, EXT4_HT_INODE, 2);
3554 if (IS_ERR(handle)) {
3555 ret = PTR_ERR(handle);
3556 goto orphan_del;
3557 }
3558 if (ext4_update_inode_size(inode, offset + written))
3559 ext4_mark_inode_dirty(handle, inode);
3560 /*
3561 * We may need to truncate allocated but not written blocks beyond EOF.
3562 */
3563 if (iomap->offset + iomap->length >
3564 ALIGN(inode->i_size, 1 << blkbits)) {
3565 ext4_lblk_t written_blk, end_blk;
3566
3567 written_blk = (offset + written) >> blkbits;
3568 end_blk = (offset + length) >> blkbits;
3569 if (written_blk < end_blk && ext4_can_truncate(inode))
3570 truncate = true;
3571 }
3572 /*
3573 * Remove inode from orphan list if we were extending a inode and
3574 * everything went fine.
3575 */
3576 if (!truncate && inode->i_nlink &&
3577 !list_empty(&EXT4_I(inode)->i_orphan))
3578 ext4_orphan_del(handle, inode);
3579 ext4_journal_stop(handle);
3580 if (truncate) {
3581 ext4_truncate_failed_write(inode);
3582orphan_del:
3583 /*
3584 * If truncate failed early the inode might still be on the
3585 * orphan list; we need to make sure the inode is removed from
3586 * the orphan list in that case.
3587 */
3588 if (inode->i_nlink)
3589 ext4_orphan_del(NULL, inode);
3590 }
3591 return ret;
3592}
3593
Christoph Hellwig8ff6daa2017-01-27 23:20:26 -08003594const struct iomap_ops ext4_iomap_ops = {
Jan Kara364443c2016-11-20 17:36:06 -05003595 .iomap_begin = ext4_iomap_begin,
Jan Kara776722e2016-11-20 18:09:11 -05003596 .iomap_end = ext4_iomap_end,
Jan Kara364443c2016-11-20 17:36:06 -05003597};
3598
Christoph Hellwig187372a2016-02-08 14:40:51 +11003599static int ext4_end_io_dio(struct kiocb *iocb, loff_t offset,
Christoph Hellwig7b7a8662013-09-04 15:04:39 +02003600 ssize_t size, void *private)
Mingming Cao4c0425f2009-09-28 15:48:41 -04003601{
Jan Kara109811c2016-03-08 23:36:46 -05003602 ext4_io_end_t *io_end = private;
Mingming Cao4c0425f2009-09-28 15:48:41 -04003603
Jan Kara97a851e2013-06-04 11:58:58 -04003604 /* if not async direct IO just return */
Christoph Hellwig7b7a8662013-09-04 15:04:39 +02003605 if (!io_end)
Christoph Hellwig187372a2016-02-08 14:40:51 +11003606 return 0;
Mingming4b70df12009-11-03 14:44:54 -05003607
Zheng Liu88635ca2011-12-28 19:00:25 -05003608 ext_debug("ext4_end_io_dio(): io_end 0x%p "
Joe Perchesace36ad2012-03-19 23:11:43 -04003609 "for inode %lu, iocb 0x%p, offset %llu, size %zd\n",
Jan Kara109811c2016-03-08 23:36:46 -05003610 io_end, io_end->inode->i_ino, iocb, offset, size);
Mingming Cao8d5d02e2009-09-28 15:48:29 -04003611
Jan Kara74c66bc2016-02-29 08:36:38 +11003612 /*
3613 * Error during AIO DIO. We cannot convert unwritten extents as the
3614 * data was not written. Just clear the unwritten flag and drop io_end.
3615 */
3616 if (size <= 0) {
3617 ext4_clear_io_unwritten_flag(io_end);
3618 size = 0;
3619 }
Mingming Cao4c0425f2009-09-28 15:48:41 -04003620 io_end->offset = offset;
3621 io_end->size = size;
Christoph Hellwig7b7a8662013-09-04 15:04:39 +02003622 ext4_put_io_end(io_end);
Christoph Hellwig187372a2016-02-08 14:40:51 +11003623
3624 return 0;
Mingming Cao4c0425f2009-09-28 15:48:41 -04003625}
Jiaying Zhangc7064ef2010-03-02 13:28:44 -05003626
Mingming Cao4c0425f2009-09-28 15:48:41 -04003627/*
Jan Kara914f82a2016-05-13 00:44:16 -04003628 * Handling of direct IO writes.
3629 *
3630 * For ext4 extent files, ext4 will do direct-io write even to holes,
Mingming Cao4c0425f2009-09-28 15:48:41 -04003631 * preallocated extents, and those write extend the file, no need to
3632 * fall back to buffered IO.
3633 *
Lukas Czerner556615d2014-04-20 23:45:47 -04003634 * For holes, we fallocate those blocks, mark them as unwritten
Theodore Ts'o69c499d2012-11-29 21:13:48 -05003635 * If those blocks were preallocated, we mark sure they are split, but
Lukas Czerner556615d2014-04-20 23:45:47 -04003636 * still keep the range to write as unwritten.
Mingming Cao4c0425f2009-09-28 15:48:41 -04003637 *
Theodore Ts'o69c499d2012-11-29 21:13:48 -05003638 * The unwritten extents will be converted to written when DIO is completed.
Mingming Cao8d5d02e2009-09-28 15:48:29 -04003639 * For async direct IO, since the IO may still pending when return, we
Lucas De Marchi25985ed2011-03-30 22:57:33 -03003640 * set up an end_io call back function, which will do the conversion
Mingming Cao8d5d02e2009-09-28 15:48:29 -04003641 * when async direct IO completed.
Mingming Cao4c0425f2009-09-28 15:48:41 -04003642 *
3643 * If the O_DIRECT write will extend the file then add this inode to the
3644 * orphan list. So recovery will truncate it back to the original size
3645 * if the machine crashes during the write.
3646 *
3647 */
Linus Torvalds0e01df12016-05-24 12:55:26 -07003648static ssize_t ext4_direct_IO_write(struct kiocb *iocb, struct iov_iter *iter)
Mingming Cao4c0425f2009-09-28 15:48:41 -04003649{
3650 struct file *file = iocb->ki_filp;
3651 struct inode *inode = file->f_mapping->host;
Jan Kara914f82a2016-05-13 00:44:16 -04003652 struct ext4_inode_info *ei = EXT4_I(inode);
Mingming Cao4c0425f2009-09-28 15:48:41 -04003653 ssize_t ret;
Christoph Hellwigc8b8e322016-04-07 08:51:58 -07003654 loff_t offset = iocb->ki_pos;
Al Viroa6cbcd42014-03-04 22:38:00 -05003655 size_t count = iov_iter_count(iter);
Theodore Ts'o69c499d2012-11-29 21:13:48 -05003656 int overwrite = 0;
3657 get_block_t *get_block_func = NULL;
3658 int dio_flags = 0;
Mingming Cao4c0425f2009-09-28 15:48:41 -04003659 loff_t final_size = offset + count;
Jan Kara914f82a2016-05-13 00:44:16 -04003660 int orphan = 0;
3661 handle_t *handle;
Zheng Liu729f52c2012-07-09 16:29:29 -04003662
Jan Kara914f82a2016-05-13 00:44:16 -04003663 if (final_size > inode->i_size) {
3664 /* Credits for sb + inode write */
3665 handle = ext4_journal_start(inode, EXT4_HT_INODE, 2);
3666 if (IS_ERR(handle)) {
3667 ret = PTR_ERR(handle);
3668 goto out;
3669 }
3670 ret = ext4_orphan_add(handle, inode);
3671 if (ret) {
3672 ext4_journal_stop(handle);
3673 goto out;
3674 }
3675 orphan = 1;
3676 ei->i_disksize = inode->i_size;
3677 ext4_journal_stop(handle);
3678 }
Zheng Liu4bd809d2012-07-22 20:19:31 -04003679
Theodore Ts'o69c499d2012-11-29 21:13:48 -05003680 BUG_ON(iocb->private == NULL);
Zheng Liu4bd809d2012-07-22 20:19:31 -04003681
Jan Karae8340392013-06-04 14:27:38 -04003682 /*
3683 * Make all waiters for direct IO properly wait also for extent
3684 * conversion. This also disallows race between truncate() and
3685 * overwrite DIO as i_dio_count needs to be incremented under i_mutex.
3686 */
Jan Kara914f82a2016-05-13 00:44:16 -04003687 inode_dio_begin(inode);
Jan Karae8340392013-06-04 14:27:38 -04003688
Theodore Ts'o69c499d2012-11-29 21:13:48 -05003689 /* If we do a overwrite dio, i_mutex locking can be released */
3690 overwrite = *((int *)iocb->private);
Zheng Liu4bd809d2012-07-22 20:19:31 -04003691
Jan Kara2dcba472015-12-07 15:04:57 -05003692 if (overwrite)
Al Viro59551022016-01-22 15:40:57 -05003693 inode_unlock(inode);
Mingming Cao8d5d02e2009-09-28 15:48:29 -04003694
Theodore Ts'o69c499d2012-11-29 21:13:48 -05003695 /*
Jan Kara914f82a2016-05-13 00:44:16 -04003696 * For extent mapped files we could direct write to holes and fallocate.
Theodore Ts'o69c499d2012-11-29 21:13:48 -05003697 *
Jan Kara109811c2016-03-08 23:36:46 -05003698 * Allocated blocks to fill the hole are marked as unwritten to prevent
3699 * parallel buffered read to expose the stale data before DIO complete
3700 * the data IO.
Theodore Ts'o69c499d2012-11-29 21:13:48 -05003701 *
Jan Kara109811c2016-03-08 23:36:46 -05003702 * As to previously fallocated extents, ext4 get_block will just simply
3703 * mark the buffer mapped but still keep the extents unwritten.
Theodore Ts'o69c499d2012-11-29 21:13:48 -05003704 *
Jan Kara109811c2016-03-08 23:36:46 -05003705 * For non AIO case, we will convert those unwritten extents to written
3706 * after return back from blockdev_direct_IO. That way we save us from
3707 * allocating io_end structure and also the overhead of offloading
3708 * the extent convertion to a workqueue.
Theodore Ts'o69c499d2012-11-29 21:13:48 -05003709 *
3710 * For async DIO, the conversion needs to be deferred when the
3711 * IO is completed. The ext4 end_io callback function will be
3712 * called to take care of the conversion work. Here for async
3713 * case, we allocate an io_end structure to hook to the iocb.
3714 */
3715 iocb->private = NULL;
Jan Kara109811c2016-03-08 23:36:46 -05003716 if (overwrite)
Jan Kara705965b2016-03-08 23:08:10 -05003717 get_block_func = ext4_dio_get_block_overwrite;
Jan Kara0bd2d5e2016-11-20 18:53:30 -05003718 else if (!ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS) ||
Fabian Frederick93407472017-02-27 14:28:32 -08003719 round_down(offset, i_blocksize(inode)) >= inode->i_size) {
Jan Kara914f82a2016-05-13 00:44:16 -04003720 get_block_func = ext4_dio_get_block;
3721 dio_flags = DIO_LOCKING | DIO_SKIP_HOLES;
3722 } else if (is_sync_kiocb(iocb)) {
Jan Kara109811c2016-03-08 23:36:46 -05003723 get_block_func = ext4_dio_get_block_unwritten_sync;
3724 dio_flags = DIO_LOCKING;
Theodore Ts'o69c499d2012-11-29 21:13:48 -05003725 } else {
Jan Kara109811c2016-03-08 23:36:46 -05003726 get_block_func = ext4_dio_get_block_unwritten_async;
Theodore Ts'o69c499d2012-11-29 21:13:48 -05003727 dio_flags = DIO_LOCKING;
3728 }
Jan Kara0bd2d5e2016-11-20 18:53:30 -05003729 ret = __blockdev_direct_IO(iocb, inode, inode->i_sb->s_bdev, iter,
3730 get_block_func, ext4_end_io_dio, NULL,
3731 dio_flags);
Theodore Ts'o69c499d2012-11-29 21:13:48 -05003732
Jan Kara97a851e2013-06-04 11:58:58 -04003733 if (ret > 0 && !overwrite && ext4_test_inode_state(inode,
Theodore Ts'o69c499d2012-11-29 21:13:48 -05003734 EXT4_STATE_DIO_UNWRITTEN)) {
3735 int err;
3736 /*
3737 * for non AIO case, since the IO is already
3738 * completed, we could do the conversion right here
3739 */
Jan Kara6b523df2013-06-04 13:21:11 -04003740 err = ext4_convert_unwritten_extents(NULL, inode,
Theodore Ts'o69c499d2012-11-29 21:13:48 -05003741 offset, ret);
3742 if (err < 0)
3743 ret = err;
3744 ext4_clear_inode_state(inode, EXT4_STATE_DIO_UNWRITTEN);
3745 }
3746
Jan Kara914f82a2016-05-13 00:44:16 -04003747 inode_dio_end(inode);
Theodore Ts'o69c499d2012-11-29 21:13:48 -05003748 /* take i_mutex locking again if we do a ovewrite dio */
Jan Kara2dcba472015-12-07 15:04:57 -05003749 if (overwrite)
Al Viro59551022016-01-22 15:40:57 -05003750 inode_lock(inode);
Theodore Ts'o69c499d2012-11-29 21:13:48 -05003751
Jan Kara914f82a2016-05-13 00:44:16 -04003752 if (ret < 0 && final_size > inode->i_size)
3753 ext4_truncate_failed_write(inode);
3754
3755 /* Handle extending of i_size after direct IO write */
3756 if (orphan) {
3757 int err;
3758
3759 /* Credits for sb + inode write */
3760 handle = ext4_journal_start(inode, EXT4_HT_INODE, 2);
3761 if (IS_ERR(handle)) {
3762 /* This is really bad luck. We've written the data
3763 * but cannot extend i_size. Bail out and pretend
3764 * the write failed... */
3765 ret = PTR_ERR(handle);
3766 if (inode->i_nlink)
3767 ext4_orphan_del(NULL, inode);
3768
3769 goto out;
3770 }
3771 if (inode->i_nlink)
3772 ext4_orphan_del(handle, inode);
3773 if (ret > 0) {
3774 loff_t end = offset + ret;
3775 if (end > inode->i_size) {
3776 ei->i_disksize = end;
3777 i_size_write(inode, end);
3778 /*
3779 * We're going to return a positive `ret'
3780 * here due to non-zero-length I/O, so there's
3781 * no way of reporting error returns from
3782 * ext4_mark_inode_dirty() to userspace. So
3783 * ignore it.
3784 */
3785 ext4_mark_inode_dirty(handle, inode);
3786 }
3787 }
3788 err = ext4_journal_stop(handle);
3789 if (ret == 0)
3790 ret = err;
3791 }
3792out:
3793 return ret;
3794}
3795
Linus Torvalds0e01df12016-05-24 12:55:26 -07003796static ssize_t ext4_direct_IO_read(struct kiocb *iocb, struct iov_iter *iter)
Jan Kara914f82a2016-05-13 00:44:16 -04003797{
Jan Kara16c54682016-09-30 01:03:17 -04003798 struct address_space *mapping = iocb->ki_filp->f_mapping;
3799 struct inode *inode = mapping->host;
Jan Kara0bd2d5e2016-11-20 18:53:30 -05003800 size_t count = iov_iter_count(iter);
Jan Kara914f82a2016-05-13 00:44:16 -04003801 ssize_t ret;
3802
Jan Kara16c54682016-09-30 01:03:17 -04003803 /*
3804 * Shared inode_lock is enough for us - it protects against concurrent
3805 * writes & truncates and since we take care of writing back page cache,
3806 * we are protected against page writeback as well.
3807 */
3808 inode_lock_shared(inode);
Jan Kara0bd2d5e2016-11-20 18:53:30 -05003809 ret = filemap_write_and_wait_range(mapping, iocb->ki_pos,
Eric Biggerse5465792017-05-24 18:05:29 -04003810 iocb->ki_pos + count - 1);
Jan Kara0bd2d5e2016-11-20 18:53:30 -05003811 if (ret)
3812 goto out_unlock;
3813 ret = __blockdev_direct_IO(iocb, inode, inode->i_sb->s_bdev,
3814 iter, ext4_dio_get_block, NULL, NULL, 0);
Jan Kara16c54682016-09-30 01:03:17 -04003815out_unlock:
3816 inode_unlock_shared(inode);
Theodore Ts'o69c499d2012-11-29 21:13:48 -05003817 return ret;
Mingming Cao4c0425f2009-09-28 15:48:41 -04003818}
3819
Christoph Hellwigc8b8e322016-04-07 08:51:58 -07003820static ssize_t ext4_direct_IO(struct kiocb *iocb, struct iov_iter *iter)
Mingming Cao4c0425f2009-09-28 15:48:41 -04003821{
3822 struct file *file = iocb->ki_filp;
3823 struct inode *inode = file->f_mapping->host;
Al Viroa6cbcd42014-03-04 22:38:00 -05003824 size_t count = iov_iter_count(iter);
Christoph Hellwigc8b8e322016-04-07 08:51:58 -07003825 loff_t offset = iocb->ki_pos;
Jiaying Zhang0562e0b2011-03-21 21:38:05 -04003826 ssize_t ret;
Mingming Cao4c0425f2009-09-28 15:48:41 -04003827
Michael Halcrow2058f832015-04-12 00:55:10 -04003828#ifdef CONFIG_EXT4_FS_ENCRYPTION
3829 if (ext4_encrypted_inode(inode) && S_ISREG(inode->i_mode))
3830 return 0;
3831#endif
3832
Theodore Ts'o84ebd792011-08-31 11:56:51 -04003833 /*
3834 * If we are doing data journalling we don't support O_DIRECT
3835 */
3836 if (ext4_should_journal_data(inode))
3837 return 0;
3838
Tao Ma46c7f252012-12-10 14:04:52 -05003839 /* Let buffer I/O handle the inline data case. */
3840 if (ext4_has_inline_data(inode))
3841 return 0;
3842
Jan Kara0bd2d5e2016-11-20 18:53:30 -05003843 /* DAX uses iomap path now */
3844 if (WARN_ON_ONCE(IS_DAX(inode)))
3845 return 0;
3846
Omar Sandoval6f673762015-03-16 04:33:52 -07003847 trace_ext4_direct_IO_enter(inode, offset, count, iov_iter_rw(iter));
Jan Kara914f82a2016-05-13 00:44:16 -04003848 if (iov_iter_rw(iter) == READ)
Linus Torvalds0e01df12016-05-24 12:55:26 -07003849 ret = ext4_direct_IO_read(iocb, iter);
Jiaying Zhang0562e0b2011-03-21 21:38:05 -04003850 else
Linus Torvalds0e01df12016-05-24 12:55:26 -07003851 ret = ext4_direct_IO_write(iocb, iter);
Omar Sandoval6f673762015-03-16 04:33:52 -07003852 trace_ext4_direct_IO_exit(inode, offset, count, iov_iter_rw(iter), ret);
Jiaying Zhang0562e0b2011-03-21 21:38:05 -04003853 return ret;
Mingming Cao4c0425f2009-09-28 15:48:41 -04003854}
3855
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003856/*
Mingming Cao617ba132006-10-11 01:20:53 -07003857 * Pages can be marked dirty completely asynchronously from ext4's journalling
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003858 * activity. By filemap_sync_pte(), try_to_unmap_one(), etc. We cannot do
3859 * much here because ->set_page_dirty is called under VFS locks. The page is
3860 * not necessarily locked.
3861 *
3862 * We cannot just dirty the page and leave attached buffers clean, because the
3863 * buffers' dirty state is "definitive". We cannot just set the buffers dirty
3864 * or jbddirty because all the journalling code will explode.
3865 *
3866 * So what we do is to mark the page "pending dirty" and next time writepage
3867 * is called, propagate that into the buffers appropriately.
3868 */
Mingming Cao617ba132006-10-11 01:20:53 -07003869static int ext4_journalled_set_page_dirty(struct page *page)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003870{
3871 SetPageChecked(page);
3872 return __set_page_dirty_nobuffers(page);
3873}
3874
Jan Kara6dcc6932016-12-01 11:46:40 -05003875static int ext4_set_page_dirty(struct page *page)
3876{
3877 WARN_ON_ONCE(!PageLocked(page) && !PageDirty(page));
3878 WARN_ON_ONCE(!page_has_buffers(page));
3879 return __set_page_dirty_buffers(page);
3880}
3881
Theodore Ts'o74d553a2013-04-03 12:39:17 -04003882static const struct address_space_operations ext4_aops = {
Hisashi Hifumi8ab22b92008-07-28 15:46:36 -07003883 .readpage = ext4_readpage,
3884 .readpages = ext4_readpages,
Aneesh Kumar K.V43ce1d22009-06-14 17:58:45 -04003885 .writepage = ext4_writepage,
Theodore Ts'o20970ba2013-06-06 14:00:46 -04003886 .writepages = ext4_writepages,
Hisashi Hifumi8ab22b92008-07-28 15:46:36 -07003887 .write_begin = ext4_write_begin,
Theodore Ts'o74d553a2013-04-03 12:39:17 -04003888 .write_end = ext4_write_end,
Jan Kara6dcc6932016-12-01 11:46:40 -05003889 .set_page_dirty = ext4_set_page_dirty,
Hisashi Hifumi8ab22b92008-07-28 15:46:36 -07003890 .bmap = ext4_bmap,
3891 .invalidatepage = ext4_invalidatepage,
3892 .releasepage = ext4_releasepage,
3893 .direct_IO = ext4_direct_IO,
3894 .migratepage = buffer_migrate_page,
3895 .is_partially_uptodate = block_is_partially_uptodate,
Andi Kleenaa261f52009-09-16 11:50:16 +02003896 .error_remove_page = generic_error_remove_page,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003897};
3898
Mingming Cao617ba132006-10-11 01:20:53 -07003899static const struct address_space_operations ext4_journalled_aops = {
Hisashi Hifumi8ab22b92008-07-28 15:46:36 -07003900 .readpage = ext4_readpage,
3901 .readpages = ext4_readpages,
Aneesh Kumar K.V43ce1d22009-06-14 17:58:45 -04003902 .writepage = ext4_writepage,
Theodore Ts'o20970ba2013-06-06 14:00:46 -04003903 .writepages = ext4_writepages,
Hisashi Hifumi8ab22b92008-07-28 15:46:36 -07003904 .write_begin = ext4_write_begin,
3905 .write_end = ext4_journalled_write_end,
3906 .set_page_dirty = ext4_journalled_set_page_dirty,
3907 .bmap = ext4_bmap,
Jan Kara4520fb32012-12-25 13:28:54 -05003908 .invalidatepage = ext4_journalled_invalidatepage,
Hisashi Hifumi8ab22b92008-07-28 15:46:36 -07003909 .releasepage = ext4_releasepage,
Theodore Ts'o84ebd792011-08-31 11:56:51 -04003910 .direct_IO = ext4_direct_IO,
Hisashi Hifumi8ab22b92008-07-28 15:46:36 -07003911 .is_partially_uptodate = block_is_partially_uptodate,
Andi Kleenaa261f52009-09-16 11:50:16 +02003912 .error_remove_page = generic_error_remove_page,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003913};
3914
Alex Tomas64769242008-07-11 19:27:31 -04003915static const struct address_space_operations ext4_da_aops = {
Hisashi Hifumi8ab22b92008-07-28 15:46:36 -07003916 .readpage = ext4_readpage,
3917 .readpages = ext4_readpages,
Aneesh Kumar K.V43ce1d22009-06-14 17:58:45 -04003918 .writepage = ext4_writepage,
Theodore Ts'o20970ba2013-06-06 14:00:46 -04003919 .writepages = ext4_writepages,
Hisashi Hifumi8ab22b92008-07-28 15:46:36 -07003920 .write_begin = ext4_da_write_begin,
3921 .write_end = ext4_da_write_end,
Jan Kara6dcc6932016-12-01 11:46:40 -05003922 .set_page_dirty = ext4_set_page_dirty,
Hisashi Hifumi8ab22b92008-07-28 15:46:36 -07003923 .bmap = ext4_bmap,
3924 .invalidatepage = ext4_da_invalidatepage,
3925 .releasepage = ext4_releasepage,
3926 .direct_IO = ext4_direct_IO,
3927 .migratepage = buffer_migrate_page,
3928 .is_partially_uptodate = block_is_partially_uptodate,
Andi Kleenaa261f52009-09-16 11:50:16 +02003929 .error_remove_page = generic_error_remove_page,
Alex Tomas64769242008-07-11 19:27:31 -04003930};
3931
Mingming Cao617ba132006-10-11 01:20:53 -07003932void ext4_set_aops(struct inode *inode)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003933{
Lukas Czerner3d2b1582012-02-20 17:53:00 -05003934 switch (ext4_inode_journal_mode(inode)) {
3935 case EXT4_INODE_ORDERED_DATA_MODE:
Lukas Czerner3d2b1582012-02-20 17:53:00 -05003936 case EXT4_INODE_WRITEBACK_DATA_MODE:
Lukas Czerner3d2b1582012-02-20 17:53:00 -05003937 break;
3938 case EXT4_INODE_JOURNAL_DATA_MODE:
Mingming Cao617ba132006-10-11 01:20:53 -07003939 inode->i_mapping->a_ops = &ext4_journalled_aops;
Theodore Ts'o74d553a2013-04-03 12:39:17 -04003940 return;
Lukas Czerner3d2b1582012-02-20 17:53:00 -05003941 default:
3942 BUG();
3943 }
Theodore Ts'o74d553a2013-04-03 12:39:17 -04003944 if (test_opt(inode->i_sb, DELALLOC))
3945 inode->i_mapping->a_ops = &ext4_da_aops;
3946 else
3947 inode->i_mapping->a_ops = &ext4_aops;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003948}
3949
Ross Zwisler923ae0f2015-02-16 15:59:38 -08003950static int __ext4_block_zero_page_range(handle_t *handle,
Lukas Czernerd863dc32013-05-27 23:32:35 -04003951 struct address_space *mapping, loff_t from, loff_t length)
3952{
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03003953 ext4_fsblk_t index = from >> PAGE_SHIFT;
3954 unsigned offset = from & (PAGE_SIZE-1);
Ross Zwisler923ae0f2015-02-16 15:59:38 -08003955 unsigned blocksize, pos;
Lukas Czernerd863dc32013-05-27 23:32:35 -04003956 ext4_lblk_t iblock;
3957 struct inode *inode = mapping->host;
3958 struct buffer_head *bh;
3959 struct page *page;
3960 int err = 0;
3961
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03003962 page = find_or_create_page(mapping, from >> PAGE_SHIFT,
Michal Hockoc62d2552015-11-06 16:28:49 -08003963 mapping_gfp_constraint(mapping, ~__GFP_FS));
Lukas Czernerd863dc32013-05-27 23:32:35 -04003964 if (!page)
3965 return -ENOMEM;
3966
3967 blocksize = inode->i_sb->s_blocksize;
Lukas Czernerd863dc32013-05-27 23:32:35 -04003968
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03003969 iblock = index << (PAGE_SHIFT - inode->i_sb->s_blocksize_bits);
Lukas Czernerd863dc32013-05-27 23:32:35 -04003970
3971 if (!page_has_buffers(page))
3972 create_empty_buffers(page, blocksize, 0);
3973
3974 /* Find the buffer that contains "offset" */
3975 bh = page_buffers(page);
3976 pos = blocksize;
3977 while (offset >= pos) {
3978 bh = bh->b_this_page;
3979 iblock++;
3980 pos += blocksize;
3981 }
Lukas Czernerd863dc32013-05-27 23:32:35 -04003982 if (buffer_freed(bh)) {
3983 BUFFER_TRACE(bh, "freed: skip");
3984 goto unlock;
3985 }
Lukas Czernerd863dc32013-05-27 23:32:35 -04003986 if (!buffer_mapped(bh)) {
3987 BUFFER_TRACE(bh, "unmapped");
3988 ext4_get_block(inode, iblock, bh, 0);
3989 /* unmapped? It's a hole - nothing to do */
3990 if (!buffer_mapped(bh)) {
3991 BUFFER_TRACE(bh, "still unmapped");
3992 goto unlock;
3993 }
3994 }
3995
3996 /* Ok, it's mapped. Make sure it's up-to-date */
3997 if (PageUptodate(page))
3998 set_buffer_uptodate(bh);
3999
4000 if (!buffer_uptodate(bh)) {
4001 err = -EIO;
Mike Christiedfec8a12016-06-05 14:31:44 -05004002 ll_rw_block(REQ_OP_READ, 0, 1, &bh);
Lukas Czernerd863dc32013-05-27 23:32:35 -04004003 wait_on_buffer(bh);
4004 /* Uhhuh. Read error. Complain and punt. */
4005 if (!buffer_uptodate(bh))
4006 goto unlock;
Michael Halcrowc9c74292015-04-12 00:56:10 -04004007 if (S_ISREG(inode->i_mode) &&
4008 ext4_encrypted_inode(inode)) {
4009 /* We expect the key to be set. */
Jaegeuk Kima7550b32016-07-10 14:01:03 -04004010 BUG_ON(!fscrypt_has_encryption_key(inode));
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03004011 BUG_ON(blocksize != PAGE_SIZE);
David Gstirb50f7b22016-11-13 22:20:45 +01004012 WARN_ON_ONCE(fscrypt_decrypt_page(page->mapping->host,
David Gstir9c4bb8a2016-11-13 22:20:48 +01004013 page, PAGE_SIZE, 0, page->index));
Michael Halcrowc9c74292015-04-12 00:56:10 -04004014 }
Lukas Czernerd863dc32013-05-27 23:32:35 -04004015 }
Lukas Czernerd863dc32013-05-27 23:32:35 -04004016 if (ext4_should_journal_data(inode)) {
4017 BUFFER_TRACE(bh, "get write access");
4018 err = ext4_journal_get_write_access(handle, bh);
4019 if (err)
4020 goto unlock;
4021 }
Lukas Czernerd863dc32013-05-27 23:32:35 -04004022 zero_user(page, offset, length);
Lukas Czernerd863dc32013-05-27 23:32:35 -04004023 BUFFER_TRACE(bh, "zeroed end of block");
4024
Lukas Czernerd863dc32013-05-27 23:32:35 -04004025 if (ext4_should_journal_data(inode)) {
4026 err = ext4_handle_dirty_metadata(handle, inode, bh);
Lukas Czerner0713ed02013-05-27 23:32:35 -04004027 } else {
jon ernst353eefd2013-07-01 08:12:39 -04004028 err = 0;
Lukas Czernerd863dc32013-05-27 23:32:35 -04004029 mark_buffer_dirty(bh);
Jan Kara3957ef52016-04-24 00:56:05 -04004030 if (ext4_should_order_data(inode))
Jan Karaee0876b2016-04-24 00:56:08 -04004031 err = ext4_jbd2_inode_add_write(handle, inode);
Lukas Czerner0713ed02013-05-27 23:32:35 -04004032 }
Lukas Czernerd863dc32013-05-27 23:32:35 -04004033
4034unlock:
4035 unlock_page(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03004036 put_page(page);
Lukas Czernerd863dc32013-05-27 23:32:35 -04004037 return err;
4038}
4039
Matthew Wilcox94350ab2014-03-24 15:09:16 -04004040/*
Ross Zwisler923ae0f2015-02-16 15:59:38 -08004041 * ext4_block_zero_page_range() zeros out a mapping of length 'length'
4042 * starting from file offset 'from'. The range to be zero'd must
4043 * be contained with in one block. If the specified range exceeds
4044 * the end of the block it will be shortened to end of the block
4045 * that cooresponds to 'from'
4046 */
4047static int ext4_block_zero_page_range(handle_t *handle,
4048 struct address_space *mapping, loff_t from, loff_t length)
4049{
4050 struct inode *inode = mapping->host;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03004051 unsigned offset = from & (PAGE_SIZE-1);
Ross Zwisler923ae0f2015-02-16 15:59:38 -08004052 unsigned blocksize = inode->i_sb->s_blocksize;
4053 unsigned max = blocksize - (offset & (blocksize - 1));
4054
4055 /*
4056 * correct length if it does not fall between
4057 * 'from' and the end of the block
4058 */
4059 if (length > max || length < 0)
4060 length = max;
4061
Jan Kara47e69352016-11-20 18:08:05 -05004062 if (IS_DAX(inode)) {
4063 return iomap_zero_range(inode, from, length, NULL,
4064 &ext4_iomap_ops);
4065 }
Ross Zwisler923ae0f2015-02-16 15:59:38 -08004066 return __ext4_block_zero_page_range(handle, mapping, from, length);
4067}
4068
4069/*
Matthew Wilcox94350ab2014-03-24 15:09:16 -04004070 * ext4_block_truncate_page() zeroes out a mapping from file offset `from'
4071 * up to the end of the block which corresponds to `from'.
4072 * This required during truncate. We need to physically zero the tail end
4073 * of that block so it doesn't yield old data if the file is later grown.
4074 */
Stephen Hemmingerc1978552014-05-12 10:50:23 -04004075static int ext4_block_truncate_page(handle_t *handle,
Matthew Wilcox94350ab2014-03-24 15:09:16 -04004076 struct address_space *mapping, loff_t from)
4077{
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03004078 unsigned offset = from & (PAGE_SIZE-1);
Matthew Wilcox94350ab2014-03-24 15:09:16 -04004079 unsigned length;
4080 unsigned blocksize;
4081 struct inode *inode = mapping->host;
4082
Theodore Ts'o0d068632017-02-14 11:31:15 -05004083 /* If we are processing an encrypted inode during orphan list handling */
4084 if (ext4_encrypted_inode(inode) && !fscrypt_has_encryption_key(inode))
4085 return 0;
4086
Matthew Wilcox94350ab2014-03-24 15:09:16 -04004087 blocksize = inode->i_sb->s_blocksize;
4088 length = blocksize - (offset & (blocksize - 1));
4089
4090 return ext4_block_zero_page_range(handle, mapping, from, length);
4091}
4092
Lukas Czernera87dd182013-05-27 23:32:35 -04004093int ext4_zero_partial_blocks(handle_t *handle, struct inode *inode,
4094 loff_t lstart, loff_t length)
4095{
4096 struct super_block *sb = inode->i_sb;
4097 struct address_space *mapping = inode->i_mapping;
Lukas Czernere1be3a92013-07-01 08:12:39 -04004098 unsigned partial_start, partial_end;
Lukas Czernera87dd182013-05-27 23:32:35 -04004099 ext4_fsblk_t start, end;
4100 loff_t byte_end = (lstart + length - 1);
4101 int err = 0;
4102
Lukas Czernere1be3a92013-07-01 08:12:39 -04004103 partial_start = lstart & (sb->s_blocksize - 1);
4104 partial_end = byte_end & (sb->s_blocksize - 1);
4105
Lukas Czernera87dd182013-05-27 23:32:35 -04004106 start = lstart >> sb->s_blocksize_bits;
4107 end = byte_end >> sb->s_blocksize_bits;
4108
4109 /* Handle partial zero within the single block */
Lukas Czernere1be3a92013-07-01 08:12:39 -04004110 if (start == end &&
4111 (partial_start || (partial_end != sb->s_blocksize - 1))) {
Lukas Czernera87dd182013-05-27 23:32:35 -04004112 err = ext4_block_zero_page_range(handle, mapping,
4113 lstart, length);
4114 return err;
4115 }
4116 /* Handle partial zero out on the start of the range */
Lukas Czernere1be3a92013-07-01 08:12:39 -04004117 if (partial_start) {
Lukas Czernera87dd182013-05-27 23:32:35 -04004118 err = ext4_block_zero_page_range(handle, mapping,
4119 lstart, sb->s_blocksize);
4120 if (err)
4121 return err;
4122 }
4123 /* Handle partial zero out on the end of the range */
Lukas Czernere1be3a92013-07-01 08:12:39 -04004124 if (partial_end != sb->s_blocksize - 1)
Lukas Czernera87dd182013-05-27 23:32:35 -04004125 err = ext4_block_zero_page_range(handle, mapping,
Lukas Czernere1be3a92013-07-01 08:12:39 -04004126 byte_end - partial_end,
4127 partial_end + 1);
Lukas Czernera87dd182013-05-27 23:32:35 -04004128 return err;
4129}
4130
Duane Griffin91ef4ca2008-07-11 19:27:31 -04004131int ext4_can_truncate(struct inode *inode)
4132{
Duane Griffin91ef4ca2008-07-11 19:27:31 -04004133 if (S_ISREG(inode->i_mode))
4134 return 1;
4135 if (S_ISDIR(inode->i_mode))
4136 return 1;
4137 if (S_ISLNK(inode->i_mode))
4138 return !ext4_inode_is_fast_symlink(inode);
4139 return 0;
4140}
4141
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004142/*
Jan Kara01127842015-12-07 14:34:49 -05004143 * We have to make sure i_disksize gets properly updated before we truncate
4144 * page cache due to hole punching or zero range. Otherwise i_disksize update
4145 * can get lost as it may have been postponed to submission of writeback but
4146 * that will never happen after we truncate page cache.
4147 */
4148int ext4_update_disksize_before_punch(struct inode *inode, loff_t offset,
4149 loff_t len)
4150{
4151 handle_t *handle;
4152 loff_t size = i_size_read(inode);
4153
Al Viro59551022016-01-22 15:40:57 -05004154 WARN_ON(!inode_is_locked(inode));
Jan Kara01127842015-12-07 14:34:49 -05004155 if (offset > size || offset + len < size)
4156 return 0;
4157
4158 if (EXT4_I(inode)->i_disksize >= size)
4159 return 0;
4160
4161 handle = ext4_journal_start(inode, EXT4_HT_MISC, 1);
4162 if (IS_ERR(handle))
4163 return PTR_ERR(handle);
4164 ext4_update_i_disksize(inode, size);
4165 ext4_mark_inode_dirty(handle, inode);
4166 ext4_journal_stop(handle);
4167
4168 return 0;
4169}
4170
4171/*
Ross Zwislercca32b72016-09-22 11:49:38 -04004172 * ext4_punch_hole: punches a hole in a file by releasing the blocks
Allison Hendersona4bb6b62011-05-25 07:41:50 -04004173 * associated with the given offset and length
4174 *
4175 * @inode: File inode
4176 * @offset: The offset where the hole will begin
4177 * @len: The length of the hole
4178 *
Anatol Pomozov4907cb72012-09-01 10:31:09 -07004179 * Returns: 0 on success or negative on failure
Allison Hendersona4bb6b62011-05-25 07:41:50 -04004180 */
4181
Ashish Sangwanaeb28172013-07-01 08:12:38 -04004182int ext4_punch_hole(struct inode *inode, loff_t offset, loff_t length)
Allison Hendersona4bb6b62011-05-25 07:41:50 -04004183{
Theodore Ts'o26a4c0c2013-04-03 12:45:17 -04004184 struct super_block *sb = inode->i_sb;
4185 ext4_lblk_t first_block, stop_block;
4186 struct address_space *mapping = inode->i_mapping;
Lukas Czernera87dd182013-05-27 23:32:35 -04004187 loff_t first_block_offset, last_block_offset;
Theodore Ts'o26a4c0c2013-04-03 12:45:17 -04004188 handle_t *handle;
4189 unsigned int credits;
4190 int ret = 0;
4191
Allison Hendersona4bb6b62011-05-25 07:41:50 -04004192 if (!S_ISREG(inode->i_mode))
Allison Henderson73355192012-03-21 22:23:31 -04004193 return -EOPNOTSUPP;
Allison Hendersona4bb6b62011-05-25 07:41:50 -04004194
Lukas Czernerb8a86842014-03-18 18:05:35 -04004195 trace_ext4_punch_hole(inode, offset, length, 0);
Zheng Liuaaddea82013-01-16 20:21:26 -05004196
Theodore Ts'o26a4c0c2013-04-03 12:45:17 -04004197 /*
4198 * Write out all dirty pages to avoid race conditions
4199 * Then release them.
4200 */
Ross Zwislercca32b72016-09-22 11:49:38 -04004201 if (mapping_tagged(mapping, PAGECACHE_TAG_DIRTY)) {
Theodore Ts'o26a4c0c2013-04-03 12:45:17 -04004202 ret = filemap_write_and_wait_range(mapping, offset,
4203 offset + length - 1);
4204 if (ret)
4205 return ret;
4206 }
4207
Al Viro59551022016-01-22 15:40:57 -05004208 inode_lock(inode);
Lukas Czerner9ef06ce2014-04-12 09:47:00 -04004209
Theodore Ts'o26a4c0c2013-04-03 12:45:17 -04004210 /* No need to punch hole beyond i_size */
4211 if (offset >= inode->i_size)
4212 goto out_mutex;
4213
4214 /*
4215 * If the hole extends beyond i_size, set the hole
4216 * to end after the page that contains i_size
4217 */
4218 if (offset + length > inode->i_size) {
4219 length = inode->i_size +
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03004220 PAGE_SIZE - (inode->i_size & (PAGE_SIZE - 1)) -
Theodore Ts'o26a4c0c2013-04-03 12:45:17 -04004221 offset;
4222 }
4223
Jan Karaa3612932013-08-16 21:19:41 -04004224 if (offset & (sb->s_blocksize - 1) ||
4225 (offset + length) & (sb->s_blocksize - 1)) {
4226 /*
4227 * Attach jinode to inode for jbd2 if we do any zeroing of
4228 * partial block
4229 */
4230 ret = ext4_inode_attach_jinode(inode);
4231 if (ret < 0)
4232 goto out_mutex;
4233
4234 }
4235
Jan Karaea3d7202015-12-07 14:28:03 -05004236 /* Wait all existing dio workers, newcomers will block on i_mutex */
4237 ext4_inode_block_unlocked_dio(inode);
4238 inode_dio_wait(inode);
4239
4240 /*
4241 * Prevent page faults from reinstantiating pages we have released from
4242 * page cache.
4243 */
4244 down_write(&EXT4_I(inode)->i_mmap_sem);
Lukas Czernera87dd182013-05-27 23:32:35 -04004245 first_block_offset = round_up(offset, sb->s_blocksize);
4246 last_block_offset = round_down((offset + length), sb->s_blocksize) - 1;
Theodore Ts'o26a4c0c2013-04-03 12:45:17 -04004247
Lukas Czernera87dd182013-05-27 23:32:35 -04004248 /* Now release the pages and zero block aligned part of pages*/
Jan Kara01127842015-12-07 14:34:49 -05004249 if (last_block_offset > first_block_offset) {
4250 ret = ext4_update_disksize_before_punch(inode, offset, length);
4251 if (ret)
4252 goto out_dio;
Lukas Czernera87dd182013-05-27 23:32:35 -04004253 truncate_pagecache_range(inode, first_block_offset,
4254 last_block_offset);
Jan Kara01127842015-12-07 14:34:49 -05004255 }
Theodore Ts'o26a4c0c2013-04-03 12:45:17 -04004256
4257 if (ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS))
4258 credits = ext4_writepage_trans_blocks(inode);
4259 else
4260 credits = ext4_blocks_for_truncate(inode);
4261 handle = ext4_journal_start(inode, EXT4_HT_TRUNCATE, credits);
4262 if (IS_ERR(handle)) {
4263 ret = PTR_ERR(handle);
4264 ext4_std_error(sb, ret);
4265 goto out_dio;
4266 }
4267
Lukas Czernera87dd182013-05-27 23:32:35 -04004268 ret = ext4_zero_partial_blocks(handle, inode, offset,
4269 length);
4270 if (ret)
4271 goto out_stop;
Theodore Ts'o26a4c0c2013-04-03 12:45:17 -04004272
4273 first_block = (offset + sb->s_blocksize - 1) >>
4274 EXT4_BLOCK_SIZE_BITS(sb);
4275 stop_block = (offset + length) >> EXT4_BLOCK_SIZE_BITS(sb);
4276
4277 /* If there are no blocks to remove, return now */
4278 if (first_block >= stop_block)
4279 goto out_stop;
4280
4281 down_write(&EXT4_I(inode)->i_data_sem);
4282 ext4_discard_preallocations(inode);
4283
4284 ret = ext4_es_remove_extent(inode, first_block,
4285 stop_block - first_block);
4286 if (ret) {
4287 up_write(&EXT4_I(inode)->i_data_sem);
4288 goto out_stop;
4289 }
4290
4291 if (ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS))
4292 ret = ext4_ext_remove_space(inode, first_block,
4293 stop_block - 1);
4294 else
Lukas Czerner4f579ae2014-07-15 06:03:38 -04004295 ret = ext4_ind_remove_space(handle, inode, first_block,
Theodore Ts'o26a4c0c2013-04-03 12:45:17 -04004296 stop_block);
4297
Theodore Ts'o819c4922013-04-03 12:47:17 -04004298 up_write(&EXT4_I(inode)->i_data_sem);
Theodore Ts'o26a4c0c2013-04-03 12:45:17 -04004299 if (IS_SYNC(inode))
4300 ext4_handle_sync(handle);
Maxim Patlasove251f9b2014-02-20 16:58:05 -05004301
Deepa Dinamanieeca7ea2016-11-14 21:40:10 -05004302 inode->i_mtime = inode->i_ctime = current_time(inode);
Theodore Ts'o26a4c0c2013-04-03 12:45:17 -04004303 ext4_mark_inode_dirty(handle, inode);
Jan Kara67a7d5f2017-05-29 13:24:55 -04004304 if (ret >= 0)
4305 ext4_update_inode_fsync_trans(handle, inode, 1);
Theodore Ts'o26a4c0c2013-04-03 12:45:17 -04004306out_stop:
4307 ext4_journal_stop(handle);
4308out_dio:
Jan Karaea3d7202015-12-07 14:28:03 -05004309 up_write(&EXT4_I(inode)->i_mmap_sem);
Theodore Ts'o26a4c0c2013-04-03 12:45:17 -04004310 ext4_inode_resume_unlocked_dio(inode);
4311out_mutex:
Al Viro59551022016-01-22 15:40:57 -05004312 inode_unlock(inode);
Theodore Ts'o26a4c0c2013-04-03 12:45:17 -04004313 return ret;
Allison Hendersona4bb6b62011-05-25 07:41:50 -04004314}
4315
Jan Karaa3612932013-08-16 21:19:41 -04004316int ext4_inode_attach_jinode(struct inode *inode)
4317{
4318 struct ext4_inode_info *ei = EXT4_I(inode);
4319 struct jbd2_inode *jinode;
4320
4321 if (ei->jinode || !EXT4_SB(inode->i_sb)->s_journal)
4322 return 0;
4323
4324 jinode = jbd2_alloc_inode(GFP_KERNEL);
4325 spin_lock(&inode->i_lock);
4326 if (!ei->jinode) {
4327 if (!jinode) {
4328 spin_unlock(&inode->i_lock);
4329 return -ENOMEM;
4330 }
4331 ei->jinode = jinode;
4332 jbd2_journal_init_jbd_inode(ei->jinode, inode);
4333 jinode = NULL;
4334 }
4335 spin_unlock(&inode->i_lock);
4336 if (unlikely(jinode != NULL))
4337 jbd2_free_inode(jinode);
4338 return 0;
4339}
4340
Allison Hendersona4bb6b62011-05-25 07:41:50 -04004341/*
Mingming Cao617ba132006-10-11 01:20:53 -07004342 * ext4_truncate()
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004343 *
Mingming Cao617ba132006-10-11 01:20:53 -07004344 * We block out ext4_get_block() block instantiations across the entire
4345 * transaction, and VFS/VM ensures that ext4_truncate() cannot run
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004346 * simultaneously on behalf of the same inode.
4347 *
Justin P. Mattock42b2aa82011-11-28 20:31:00 -08004348 * As we work through the truncate and commit bits of it to the journal there
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004349 * is one core, guiding principle: the file's tree must always be consistent on
4350 * disk. We must be able to restart the truncate after a crash.
4351 *
4352 * The file's tree may be transiently inconsistent in memory (although it
4353 * probably isn't), but whenever we close off and commit a journal transaction,
4354 * the contents of (the filesystem + the journal) must be consistent and
4355 * restartable. It's pretty simple, really: bottom up, right to left (although
4356 * left-to-right works OK too).
4357 *
4358 * Note that at recovery time, journal replay occurs *before* the restart of
4359 * truncate against the orphan inode list.
4360 *
4361 * The committed inode has the new, desired i_size (which is the same as
Mingming Cao617ba132006-10-11 01:20:53 -07004362 * i_disksize in this case). After a crash, ext4_orphan_cleanup() will see
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004363 * that this inode's truncate did not complete and it will again call
Mingming Cao617ba132006-10-11 01:20:53 -07004364 * ext4_truncate() to have another go. So there will be instantiated blocks
4365 * to the right of the truncation point in a crashed ext4 filesystem. But
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004366 * that's fine - as long as they are linked from the inode, the post-crash
Mingming Cao617ba132006-10-11 01:20:53 -07004367 * ext4_truncate() run will find them and release them.
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004368 */
Theodore Ts'o2c98eb52016-11-13 22:02:26 -05004369int ext4_truncate(struct inode *inode)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004370{
Theodore Ts'o819c4922013-04-03 12:47:17 -04004371 struct ext4_inode_info *ei = EXT4_I(inode);
4372 unsigned int credits;
Theodore Ts'o2c98eb52016-11-13 22:02:26 -05004373 int err = 0;
Theodore Ts'o819c4922013-04-03 12:47:17 -04004374 handle_t *handle;
4375 struct address_space *mapping = inode->i_mapping;
Theodore Ts'o819c4922013-04-03 12:47:17 -04004376
Theodore Ts'o19b5ef62013-04-03 21:58:52 -04004377 /*
4378 * There is a possibility that we're either freeing the inode
Matthew Wilcoxe04027e2014-03-24 15:15:07 -04004379 * or it's a completely new inode. In those cases we might not
Theodore Ts'o19b5ef62013-04-03 21:58:52 -04004380 * have i_mutex locked because it's not necessary.
4381 */
4382 if (!(inode->i_state & (I_NEW|I_FREEING)))
Al Viro59551022016-01-22 15:40:57 -05004383 WARN_ON(!inode_is_locked(inode));
Jiaying Zhang0562e0b2011-03-21 21:38:05 -04004384 trace_ext4_truncate_enter(inode);
4385
Duane Griffin91ef4ca2008-07-11 19:27:31 -04004386 if (!ext4_can_truncate(inode))
Theodore Ts'o2c98eb52016-11-13 22:02:26 -05004387 return 0;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004388
Dmitry Monakhov12e9b892010-05-16 22:00:00 -04004389 ext4_clear_inode_flag(inode, EXT4_INODE_EOFBLOCKS);
Jiaying Zhangc8d46e42010-02-24 09:52:53 -05004390
Theodore Ts'o5534fb52009-09-17 09:34:16 -04004391 if (inode->i_size == 0 && !test_opt(inode->i_sb, NO_AUTO_DA_ALLOC))
Theodore Ts'o19f5fb72010-01-24 14:34:07 -05004392 ext4_set_inode_state(inode, EXT4_STATE_DA_ALLOC_CLOSE);
Theodore Ts'o7d8f9f72009-02-24 08:21:14 -05004393
Tao Maaef1c852012-12-10 14:06:02 -05004394 if (ext4_has_inline_data(inode)) {
4395 int has_inline = 1;
4396
Theodore Ts'o01daf942017-01-22 19:35:49 -05004397 err = ext4_inline_data_truncate(inode, &has_inline);
4398 if (err)
4399 return err;
Tao Maaef1c852012-12-10 14:06:02 -05004400 if (has_inline)
Theodore Ts'o2c98eb52016-11-13 22:02:26 -05004401 return 0;
Tao Maaef1c852012-12-10 14:06:02 -05004402 }
4403
Jan Karaa3612932013-08-16 21:19:41 -04004404 /* If we zero-out tail of the page, we have to create jinode for jbd2 */
4405 if (inode->i_size & (inode->i_sb->s_blocksize - 1)) {
4406 if (ext4_inode_attach_jinode(inode) < 0)
Theodore Ts'o2c98eb52016-11-13 22:02:26 -05004407 return 0;
Jan Karaa3612932013-08-16 21:19:41 -04004408 }
4409
Amir Goldsteinff9893d2011-06-27 16:36:31 -04004410 if (ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS))
Theodore Ts'o819c4922013-04-03 12:47:17 -04004411 credits = ext4_writepage_trans_blocks(inode);
Amir Goldsteinff9893d2011-06-27 16:36:31 -04004412 else
Theodore Ts'o819c4922013-04-03 12:47:17 -04004413 credits = ext4_blocks_for_truncate(inode);
4414
4415 handle = ext4_journal_start(inode, EXT4_HT_TRUNCATE, credits);
Theodore Ts'o2c98eb52016-11-13 22:02:26 -05004416 if (IS_ERR(handle))
4417 return PTR_ERR(handle);
Theodore Ts'o819c4922013-04-03 12:47:17 -04004418
Lukas Czernereb3544c2013-05-27 23:32:35 -04004419 if (inode->i_size & (inode->i_sb->s_blocksize - 1))
4420 ext4_block_truncate_page(handle, mapping, inode->i_size);
Theodore Ts'o819c4922013-04-03 12:47:17 -04004421
4422 /*
4423 * We add the inode to the orphan list, so that if this
4424 * truncate spans multiple transactions, and we crash, we will
4425 * resume the truncate when the filesystem recovers. It also
4426 * marks the inode dirty, to catch the new size.
4427 *
4428 * Implication: the file must always be in a sane, consistent
4429 * truncatable state while each transaction commits.
4430 */
Theodore Ts'o2c98eb52016-11-13 22:02:26 -05004431 err = ext4_orphan_add(handle, inode);
4432 if (err)
Theodore Ts'o819c4922013-04-03 12:47:17 -04004433 goto out_stop;
4434
4435 down_write(&EXT4_I(inode)->i_data_sem);
4436
4437 ext4_discard_preallocations(inode);
4438
4439 if (ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS))
Theodore Ts'od0abb362016-11-13 22:02:28 -05004440 err = ext4_ext_truncate(handle, inode);
Theodore Ts'o819c4922013-04-03 12:47:17 -04004441 else
4442 ext4_ind_truncate(handle, inode);
4443
4444 up_write(&ei->i_data_sem);
Theodore Ts'od0abb362016-11-13 22:02:28 -05004445 if (err)
4446 goto out_stop;
Theodore Ts'o819c4922013-04-03 12:47:17 -04004447
4448 if (IS_SYNC(inode))
4449 ext4_handle_sync(handle);
4450
4451out_stop:
4452 /*
4453 * If this was a simple ftruncate() and the file will remain alive,
4454 * then we need to clear up the orphan record which we created above.
4455 * However, if this was a real unlink then we were called by
Wang Shilong58d86a52014-11-25 16:17:29 -05004456 * ext4_evict_inode(), and we allow that function to clean up the
Theodore Ts'o819c4922013-04-03 12:47:17 -04004457 * orphan info for us.
4458 */
4459 if (inode->i_nlink)
4460 ext4_orphan_del(handle, inode);
4461
Deepa Dinamanieeca7ea2016-11-14 21:40:10 -05004462 inode->i_mtime = inode->i_ctime = current_time(inode);
Theodore Ts'o819c4922013-04-03 12:47:17 -04004463 ext4_mark_inode_dirty(handle, inode);
4464 ext4_journal_stop(handle);
Alex Tomasa86c6182006-10-11 01:21:03 -07004465
Jiaying Zhang0562e0b2011-03-21 21:38:05 -04004466 trace_ext4_truncate_exit(inode);
Theodore Ts'o2c98eb52016-11-13 22:02:26 -05004467 return err;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004468}
4469
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004470/*
Mingming Cao617ba132006-10-11 01:20:53 -07004471 * ext4_get_inode_loc returns with an extra refcount against the inode's
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004472 * underlying buffer_head on success. If 'in_mem' is true, we have all
4473 * data in memory that is needed to recreate the on-disk version of this
4474 * inode.
4475 */
Mingming Cao617ba132006-10-11 01:20:53 -07004476static int __ext4_get_inode_loc(struct inode *inode,
4477 struct ext4_iloc *iloc, int in_mem)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004478{
Theodore Ts'o240799c2008-10-09 23:53:47 -04004479 struct ext4_group_desc *gdp;
4480 struct buffer_head *bh;
4481 struct super_block *sb = inode->i_sb;
4482 ext4_fsblk_t block;
4483 int inodes_per_block, inode_offset;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004484
Aneesh Kumar K.V3a06d772008-11-22 15:04:59 -05004485 iloc->bh = NULL;
Theodore Ts'o240799c2008-10-09 23:53:47 -04004486 if (!ext4_valid_inum(sb, inode->i_ino))
Darrick J. Wong6a797d22015-10-17 16:16:04 -04004487 return -EFSCORRUPTED;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004488
Theodore Ts'o240799c2008-10-09 23:53:47 -04004489 iloc->block_group = (inode->i_ino - 1) / EXT4_INODES_PER_GROUP(sb);
4490 gdp = ext4_get_group_desc(sb, iloc->block_group, NULL);
4491 if (!gdp)
4492 return -EIO;
4493
4494 /*
4495 * Figure out the offset within the block group inode table
4496 */
Tao Ma00d09882011-05-09 10:26:41 -04004497 inodes_per_block = EXT4_SB(sb)->s_inodes_per_block;
Theodore Ts'o240799c2008-10-09 23:53:47 -04004498 inode_offset = ((inode->i_ino - 1) %
4499 EXT4_INODES_PER_GROUP(sb));
4500 block = ext4_inode_table(sb, gdp) + (inode_offset / inodes_per_block);
4501 iloc->offset = (inode_offset % inodes_per_block) * EXT4_INODE_SIZE(sb);
4502
4503 bh = sb_getblk(sb, block);
Wang Shilongaebf0242013-01-12 16:28:47 -05004504 if (unlikely(!bh))
Theodore Ts'o860d21e2013-01-12 16:19:36 -05004505 return -ENOMEM;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004506 if (!buffer_uptodate(bh)) {
4507 lock_buffer(bh);
Hidehiro Kawai9c83a922008-07-26 16:39:26 -04004508
4509 /*
4510 * If the buffer has the write error flag, we have failed
4511 * to write out another inode in the same block. In this
4512 * case, we don't have to read the block because we may
4513 * read the old inode data successfully.
4514 */
4515 if (buffer_write_io_error(bh) && !buffer_uptodate(bh))
4516 set_buffer_uptodate(bh);
4517
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004518 if (buffer_uptodate(bh)) {
4519 /* someone brought it uptodate while we waited */
4520 unlock_buffer(bh);
4521 goto has_buffer;
4522 }
4523
4524 /*
4525 * If we have all information of the inode in memory and this
4526 * is the only valid inode in the block, we need not read the
4527 * block.
4528 */
4529 if (in_mem) {
4530 struct buffer_head *bitmap_bh;
Theodore Ts'o240799c2008-10-09 23:53:47 -04004531 int i, start;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004532
Theodore Ts'o240799c2008-10-09 23:53:47 -04004533 start = inode_offset & ~(inodes_per_block - 1);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004534
4535 /* Is the inode bitmap in cache? */
Theodore Ts'o240799c2008-10-09 23:53:47 -04004536 bitmap_bh = sb_getblk(sb, ext4_inode_bitmap(sb, gdp));
Wang Shilongaebf0242013-01-12 16:28:47 -05004537 if (unlikely(!bitmap_bh))
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004538 goto make_io;
4539
4540 /*
4541 * If the inode bitmap isn't in cache then the
4542 * optimisation may end up performing two reads instead
4543 * of one, so skip it.
4544 */
4545 if (!buffer_uptodate(bitmap_bh)) {
4546 brelse(bitmap_bh);
4547 goto make_io;
4548 }
Theodore Ts'o240799c2008-10-09 23:53:47 -04004549 for (i = start; i < start + inodes_per_block; i++) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004550 if (i == inode_offset)
4551 continue;
Mingming Cao617ba132006-10-11 01:20:53 -07004552 if (ext4_test_bit(i, bitmap_bh->b_data))
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004553 break;
4554 }
4555 brelse(bitmap_bh);
Theodore Ts'o240799c2008-10-09 23:53:47 -04004556 if (i == start + inodes_per_block) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004557 /* all other inodes are free, so skip I/O */
4558 memset(bh->b_data, 0, bh->b_size);
4559 set_buffer_uptodate(bh);
4560 unlock_buffer(bh);
4561 goto has_buffer;
4562 }
4563 }
4564
4565make_io:
4566 /*
Theodore Ts'o240799c2008-10-09 23:53:47 -04004567 * If we need to do any I/O, try to pre-readahead extra
4568 * blocks from the inode table.
4569 */
4570 if (EXT4_SB(sb)->s_inode_readahead_blks) {
4571 ext4_fsblk_t b, end, table;
4572 unsigned num;
Theodore Ts'o0d606e22013-04-23 08:59:35 -04004573 __u32 ra_blks = EXT4_SB(sb)->s_inode_readahead_blks;
Theodore Ts'o240799c2008-10-09 23:53:47 -04004574
4575 table = ext4_inode_table(sb, gdp);
Theodore Ts'ob713a5e2009-03-31 09:11:14 -04004576 /* s_inode_readahead_blks is always a power of 2 */
Theodore Ts'o0d606e22013-04-23 08:59:35 -04004577 b = block & ~((ext4_fsblk_t) ra_blks - 1);
Theodore Ts'o240799c2008-10-09 23:53:47 -04004578 if (table > b)
4579 b = table;
Theodore Ts'o0d606e22013-04-23 08:59:35 -04004580 end = b + ra_blks;
Theodore Ts'o240799c2008-10-09 23:53:47 -04004581 num = EXT4_INODES_PER_GROUP(sb);
Darrick J. Wongfeb0ab32012-04-29 18:45:10 -04004582 if (ext4_has_group_desc_csum(sb))
Aneesh Kumar K.V560671a2009-01-05 22:20:24 -05004583 num -= ext4_itable_unused_count(sb, gdp);
Theodore Ts'o240799c2008-10-09 23:53:47 -04004584 table += num / inodes_per_block;
4585 if (end > table)
4586 end = table;
4587 while (b <= end)
4588 sb_breadahead(sb, b++);
4589 }
4590
4591 /*
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004592 * There are other valid inodes in the buffer, this inode
4593 * has in-inode xattrs, or we don't have this inode in memory.
4594 * Read the block from disk.
4595 */
Jiaying Zhang0562e0b2011-03-21 21:38:05 -04004596 trace_ext4_load_inode(inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004597 get_bh(bh);
4598 bh->b_end_io = end_buffer_read_sync;
Mike Christie2a222ca2016-06-05 14:31:43 -05004599 submit_bh(REQ_OP_READ, REQ_META | REQ_PRIO, bh);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004600 wait_on_buffer(bh);
4601 if (!buffer_uptodate(bh)) {
Theodore Ts'oc398eda2010-07-27 11:56:40 -04004602 EXT4_ERROR_INODE_BLOCK(inode, block,
4603 "unable to read itable block");
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004604 brelse(bh);
4605 return -EIO;
4606 }
4607 }
4608has_buffer:
4609 iloc->bh = bh;
4610 return 0;
4611}
4612
Mingming Cao617ba132006-10-11 01:20:53 -07004613int ext4_get_inode_loc(struct inode *inode, struct ext4_iloc *iloc)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004614{
4615 /* We have all inode data except xattrs in memory here. */
Mingming Cao617ba132006-10-11 01:20:53 -07004616 return __ext4_get_inode_loc(inode, iloc,
Theodore Ts'o19f5fb72010-01-24 14:34:07 -05004617 !ext4_test_inode_state(inode, EXT4_STATE_XATTR));
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004618}
4619
Ross Zwisler66425862017-10-12 12:00:59 -04004620static bool ext4_should_use_dax(struct inode *inode)
4621{
4622 if (!test_opt(inode->i_sb, DAX))
4623 return false;
4624 if (!S_ISREG(inode->i_mode))
4625 return false;
4626 if (ext4_should_journal_data(inode))
4627 return false;
4628 if (ext4_has_inline_data(inode))
4629 return false;
4630 if (ext4_encrypted_inode(inode))
4631 return false;
4632 return true;
4633}
4634
Mingming Cao617ba132006-10-11 01:20:53 -07004635void ext4_set_inode_flags(struct inode *inode)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004636{
Mingming Cao617ba132006-10-11 01:20:53 -07004637 unsigned int flags = EXT4_I(inode)->i_flags;
Theodore Ts'o00a1a052014-03-30 10:20:01 -04004638 unsigned int new_fl = 0;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004639
Mingming Cao617ba132006-10-11 01:20:53 -07004640 if (flags & EXT4_SYNC_FL)
Theodore Ts'o00a1a052014-03-30 10:20:01 -04004641 new_fl |= S_SYNC;
Mingming Cao617ba132006-10-11 01:20:53 -07004642 if (flags & EXT4_APPEND_FL)
Theodore Ts'o00a1a052014-03-30 10:20:01 -04004643 new_fl |= S_APPEND;
Mingming Cao617ba132006-10-11 01:20:53 -07004644 if (flags & EXT4_IMMUTABLE_FL)
Theodore Ts'o00a1a052014-03-30 10:20:01 -04004645 new_fl |= S_IMMUTABLE;
Mingming Cao617ba132006-10-11 01:20:53 -07004646 if (flags & EXT4_NOATIME_FL)
Theodore Ts'o00a1a052014-03-30 10:20:01 -04004647 new_fl |= S_NOATIME;
Mingming Cao617ba132006-10-11 01:20:53 -07004648 if (flags & EXT4_DIRSYNC_FL)
Theodore Ts'o00a1a052014-03-30 10:20:01 -04004649 new_fl |= S_DIRSYNC;
Ross Zwisler66425862017-10-12 12:00:59 -04004650 if (ext4_should_use_dax(inode))
Ross Zwisler923ae0f2015-02-16 15:59:38 -08004651 new_fl |= S_DAX;
Eric Biggers2ee6a572017-10-09 12:15:35 -07004652 if (flags & EXT4_ENCRYPT_FL)
4653 new_fl |= S_ENCRYPTED;
Theodore Ts'o5f16f322014-03-24 14:43:12 -04004654 inode_set_flags(inode, new_fl,
Eric Biggers2ee6a572017-10-09 12:15:35 -07004655 S_SYNC|S_APPEND|S_IMMUTABLE|S_NOATIME|S_DIRSYNC|S_DAX|
4656 S_ENCRYPTED);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004657}
4658
Aneesh Kumar K.V0fc1b452008-01-28 23:58:26 -05004659static blkcnt_t ext4_inode_blocks(struct ext4_inode *raw_inode,
Theodore Ts'ode9a55b2009-06-14 17:45:34 -04004660 struct ext4_inode_info *ei)
Aneesh Kumar K.V0fc1b452008-01-28 23:58:26 -05004661{
4662 blkcnt_t i_blocks ;
Aneesh Kumar K.V8180a562008-01-28 23:58:27 -05004663 struct inode *inode = &(ei->vfs_inode);
4664 struct super_block *sb = inode->i_sb;
Aneesh Kumar K.V0fc1b452008-01-28 23:58:26 -05004665
Darrick J. Wonge2b911c2015-10-17 16:18:43 -04004666 if (ext4_has_feature_huge_file(sb)) {
Aneesh Kumar K.V0fc1b452008-01-28 23:58:26 -05004667 /* we are using combined 48 bit field */
4668 i_blocks = ((u64)le16_to_cpu(raw_inode->i_blocks_high)) << 32 |
4669 le32_to_cpu(raw_inode->i_blocks_lo);
Theodore Ts'o07a03822010-06-14 09:54:48 -04004670 if (ext4_test_inode_flag(inode, EXT4_INODE_HUGE_FILE)) {
Aneesh Kumar K.V8180a562008-01-28 23:58:27 -05004671 /* i_blocks represent file system block size */
4672 return i_blocks << (inode->i_blkbits - 9);
4673 } else {
4674 return i_blocks;
4675 }
Aneesh Kumar K.V0fc1b452008-01-28 23:58:26 -05004676 } else {
4677 return le32_to_cpu(raw_inode->i_blocks_lo);
4678 }
4679}
Jan Karaff9ddf72007-07-18 09:24:20 -04004680
Tao Ma152a7b02012-12-02 11:13:24 -05004681static inline void ext4_iget_extra_inode(struct inode *inode,
4682 struct ext4_inode *raw_inode,
4683 struct ext4_inode_info *ei)
4684{
4685 __le32 *magic = (void *)raw_inode +
4686 EXT4_GOOD_OLD_INODE_SIZE + ei->i_extra_isize;
Eric Biggers290ab232016-12-01 14:51:58 -05004687 if (EXT4_GOOD_OLD_INODE_SIZE + ei->i_extra_isize + sizeof(__le32) <=
4688 EXT4_INODE_SIZE(inode->i_sb) &&
4689 *magic == cpu_to_le32(EXT4_XATTR_MAGIC)) {
Tao Ma152a7b02012-12-02 11:13:24 -05004690 ext4_set_inode_state(inode, EXT4_STATE_XATTR);
Tao Ma67cf5b02012-12-10 14:04:46 -05004691 ext4_find_inline_data_nolock(inode);
Tao Maf19d5872012-12-10 14:05:51 -05004692 } else
4693 EXT4_I(inode)->i_inline_off = 0;
Tao Ma152a7b02012-12-02 11:13:24 -05004694}
4695
Li Xi040cb372016-01-08 16:01:21 -05004696int ext4_get_projid(struct inode *inode, kprojid_t *projid)
4697{
Kaho Ng0b7b7772016-09-05 23:11:58 -04004698 if (!ext4_has_feature_project(inode->i_sb))
Li Xi040cb372016-01-08 16:01:21 -05004699 return -EOPNOTSUPP;
4700 *projid = EXT4_I(inode)->i_projid;
4701 return 0;
4702}
4703
David Howells1d1fe1e2008-02-07 00:15:37 -08004704struct inode *ext4_iget(struct super_block *sb, unsigned long ino)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004705{
Mingming Cao617ba132006-10-11 01:20:53 -07004706 struct ext4_iloc iloc;
4707 struct ext4_inode *raw_inode;
David Howells1d1fe1e2008-02-07 00:15:37 -08004708 struct ext4_inode_info *ei;
David Howells1d1fe1e2008-02-07 00:15:37 -08004709 struct inode *inode;
Jan Karab436b9b2009-12-08 23:51:10 -05004710 journal_t *journal = EXT4_SB(sb)->s_journal;
David Howells1d1fe1e2008-02-07 00:15:37 -08004711 long ret;
Darrick J. Wong7e6e1ef2016-12-10 09:55:01 -05004712 loff_t size;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004713 int block;
Eric W. Biederman08cefc72012-02-07 15:41:49 -08004714 uid_t i_uid;
4715 gid_t i_gid;
Li Xi040cb372016-01-08 16:01:21 -05004716 projid_t i_projid;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004717
David Howells1d1fe1e2008-02-07 00:15:37 -08004718 inode = iget_locked(sb, ino);
4719 if (!inode)
4720 return ERR_PTR(-ENOMEM);
4721 if (!(inode->i_state & I_NEW))
4722 return inode;
4723
4724 ei = EXT4_I(inode);
Peter Huewe7dc57612011-02-21 21:01:42 -05004725 iloc.bh = NULL;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004726
David Howells1d1fe1e2008-02-07 00:15:37 -08004727 ret = __ext4_get_inode_loc(inode, &iloc, 0);
4728 if (ret < 0)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004729 goto bad_inode;
Mingming Cao617ba132006-10-11 01:20:53 -07004730 raw_inode = ext4_raw_inode(&iloc);
Darrick J. Wong814525f2012-04-29 18:31:10 -04004731
4732 if (EXT4_INODE_SIZE(inode->i_sb) > EXT4_GOOD_OLD_INODE_SIZE) {
4733 ei->i_extra_isize = le16_to_cpu(raw_inode->i_extra_isize);
4734 if (EXT4_GOOD_OLD_INODE_SIZE + ei->i_extra_isize >
Eric Biggers2dc8d9e2016-12-01 14:43:33 -05004735 EXT4_INODE_SIZE(inode->i_sb) ||
4736 (ei->i_extra_isize & 3)) {
4737 EXT4_ERROR_INODE(inode,
4738 "bad extra_isize %u (inode size %u)",
4739 ei->i_extra_isize,
4740 EXT4_INODE_SIZE(inode->i_sb));
Darrick J. Wong6a797d22015-10-17 16:16:04 -04004741 ret = -EFSCORRUPTED;
Darrick J. Wong814525f2012-04-29 18:31:10 -04004742 goto bad_inode;
4743 }
4744 } else
4745 ei->i_extra_isize = 0;
4746
4747 /* Precompute checksum seed for inode metadata */
Dmitry Monakhov9aa5d32b2014-10-13 03:36:16 -04004748 if (ext4_has_metadata_csum(sb)) {
Darrick J. Wong814525f2012-04-29 18:31:10 -04004749 struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb);
4750 __u32 csum;
4751 __le32 inum = cpu_to_le32(inode->i_ino);
4752 __le32 gen = raw_inode->i_generation;
4753 csum = ext4_chksum(sbi, sbi->s_csum_seed, (__u8 *)&inum,
4754 sizeof(inum));
4755 ei->i_csum_seed = ext4_chksum(sbi, csum, (__u8 *)&gen,
4756 sizeof(gen));
4757 }
4758
4759 if (!ext4_inode_csum_verify(inode, raw_inode, ei)) {
4760 EXT4_ERROR_INODE(inode, "checksum invalid");
Darrick J. Wong6a797d22015-10-17 16:16:04 -04004761 ret = -EFSBADCRC;
Darrick J. Wong814525f2012-04-29 18:31:10 -04004762 goto bad_inode;
4763 }
4764
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004765 inode->i_mode = le16_to_cpu(raw_inode->i_mode);
Eric W. Biederman08cefc72012-02-07 15:41:49 -08004766 i_uid = (uid_t)le16_to_cpu(raw_inode->i_uid_low);
4767 i_gid = (gid_t)le16_to_cpu(raw_inode->i_gid_low);
Kaho Ng0b7b7772016-09-05 23:11:58 -04004768 if (ext4_has_feature_project(sb) &&
Li Xi040cb372016-01-08 16:01:21 -05004769 EXT4_INODE_SIZE(sb) > EXT4_GOOD_OLD_INODE_SIZE &&
4770 EXT4_FITS_IN_INODE(raw_inode, ei, i_projid))
4771 i_projid = (projid_t)le32_to_cpu(raw_inode->i_projid);
4772 else
4773 i_projid = EXT4_DEF_PROJID;
4774
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04004775 if (!(test_opt(inode->i_sb, NO_UID32))) {
Eric W. Biederman08cefc72012-02-07 15:41:49 -08004776 i_uid |= le16_to_cpu(raw_inode->i_uid_high) << 16;
4777 i_gid |= le16_to_cpu(raw_inode->i_gid_high) << 16;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004778 }
Eric W. Biederman08cefc72012-02-07 15:41:49 -08004779 i_uid_write(inode, i_uid);
4780 i_gid_write(inode, i_gid);
Li Xi040cb372016-01-08 16:01:21 -05004781 ei->i_projid = make_kprojid(&init_user_ns, i_projid);
Miklos Szeredibfe86842011-10-28 14:13:29 +02004782 set_nlink(inode, le16_to_cpu(raw_inode->i_links_count));
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004783
Theodore Ts'o353eb832011-01-10 12:18:25 -05004784 ext4_clear_state_flags(ei); /* Only relevant on 32-bit archs */
Tao Ma67cf5b02012-12-10 14:04:46 -05004785 ei->i_inline_off = 0;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004786 ei->i_dir_start_lookup = 0;
4787 ei->i_dtime = le32_to_cpu(raw_inode->i_dtime);
4788 /* We now have enough fields to check if the inode was active or not.
4789 * This is needed because nfsd might try to access dead inodes
4790 * the test is that same one that e2fsck uses
4791 * NeilBrown 1999oct15
4792 */
4793 if (inode->i_nlink == 0) {
Dr. Tilmann Bubeck393d1d12013-04-08 12:54:05 -04004794 if ((inode->i_mode == 0 ||
4795 !(EXT4_SB(inode->i_sb)->s_mount_state & EXT4_ORPHAN_FS)) &&
4796 ino != EXT4_BOOT_LOADER_INO) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004797 /* this inode is deleted */
David Howells1d1fe1e2008-02-07 00:15:37 -08004798 ret = -ESTALE;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004799 goto bad_inode;
4800 }
4801 /* The only unlinked inodes we let through here have
4802 * valid i_mode and are being read by the orphan
4803 * recovery code: that's fine, we're about to complete
Dr. Tilmann Bubeck393d1d12013-04-08 12:54:05 -04004804 * the process of deleting those.
4805 * OR it is the EXT4_BOOT_LOADER_INO which is
4806 * not initialized on a new filesystem. */
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004807 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004808 ei->i_flags = le32_to_cpu(raw_inode->i_flags);
Aneesh Kumar K.V0fc1b452008-01-28 23:58:26 -05004809 inode->i_blocks = ext4_inode_blocks(raw_inode, ei);
Aneesh Kumar K.V7973c0c2008-01-28 23:58:27 -05004810 ei->i_file_acl = le32_to_cpu(raw_inode->i_file_acl_lo);
Darrick J. Wonge2b911c2015-10-17 16:18:43 -04004811 if (ext4_has_feature_64bit(sb))
Badari Pulavartya1ddeb72006-10-11 01:21:09 -07004812 ei->i_file_acl |=
4813 ((__u64)le16_to_cpu(raw_inode->i_file_acl_high)) << 32;
Artem Blagodarenkoe08ac992017-06-21 21:09:57 -04004814 inode->i_size = ext4_isize(sb, raw_inode);
Darrick J. Wong7e6e1ef2016-12-10 09:55:01 -05004815 if ((size = i_size_read(inode)) < 0) {
4816 EXT4_ERROR_INODE(inode, "bad i_size value: %lld", size);
4817 ret = -EFSCORRUPTED;
4818 goto bad_inode;
4819 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004820 ei->i_disksize = inode->i_size;
Dmitry Monakhova9e7f442009-12-14 15:21:14 +03004821#ifdef CONFIG_QUOTA
4822 ei->i_reserved_quota = 0;
4823#endif
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004824 inode->i_generation = le32_to_cpu(raw_inode->i_generation);
4825 ei->i_block_group = iloc.block_group;
Theodore Ts'oa4912122009-03-12 12:18:34 -04004826 ei->i_last_alloc_group = ~0;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004827 /*
4828 * NOTE! The in-memory inode i_data array is in little-endian order
4829 * even on big-endian machines: we do NOT byteswap the block numbers!
4830 */
Mingming Cao617ba132006-10-11 01:20:53 -07004831 for (block = 0; block < EXT4_N_BLOCKS; block++)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004832 ei->i_data[block] = raw_inode->i_block[block];
4833 INIT_LIST_HEAD(&ei->i_orphan);
4834
Jan Karab436b9b2009-12-08 23:51:10 -05004835 /*
4836 * Set transaction id's of transactions that have to be committed
4837 * to finish f[data]sync. We set them to currently running transaction
4838 * as we cannot be sure that the inode or some of its metadata isn't
4839 * part of the transaction - the inode could have been reclaimed and
4840 * now it is reread from disk.
4841 */
4842 if (journal) {
4843 transaction_t *transaction;
4844 tid_t tid;
4845
Theodore Ts'oa931da62010-08-03 21:35:12 -04004846 read_lock(&journal->j_state_lock);
Jan Karab436b9b2009-12-08 23:51:10 -05004847 if (journal->j_running_transaction)
4848 transaction = journal->j_running_transaction;
4849 else
4850 transaction = journal->j_committing_transaction;
4851 if (transaction)
4852 tid = transaction->t_tid;
4853 else
4854 tid = journal->j_commit_sequence;
Theodore Ts'oa931da62010-08-03 21:35:12 -04004855 read_unlock(&journal->j_state_lock);
Jan Karab436b9b2009-12-08 23:51:10 -05004856 ei->i_sync_tid = tid;
4857 ei->i_datasync_tid = tid;
4858 }
4859
Eric Sandeen0040d982008-02-05 22:36:43 -05004860 if (EXT4_INODE_SIZE(inode->i_sb) > EXT4_GOOD_OLD_INODE_SIZE) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004861 if (ei->i_extra_isize == 0) {
4862 /* The extra space is currently unused. Use it. */
Eric Biggers2dc8d9e2016-12-01 14:43:33 -05004863 BUILD_BUG_ON(sizeof(struct ext4_inode) & 3);
Mingming Cao617ba132006-10-11 01:20:53 -07004864 ei->i_extra_isize = sizeof(struct ext4_inode) -
4865 EXT4_GOOD_OLD_INODE_SIZE;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004866 } else {
Tao Ma152a7b02012-12-02 11:13:24 -05004867 ext4_iget_extra_inode(inode, raw_inode, ei);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004868 }
Darrick J. Wong814525f2012-04-29 18:31:10 -04004869 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004870
Kalpak Shahef7f3832007-07-18 09:15:20 -04004871 EXT4_INODE_GET_XTIME(i_ctime, inode, raw_inode);
4872 EXT4_INODE_GET_XTIME(i_mtime, inode, raw_inode);
4873 EXT4_INODE_GET_XTIME(i_atime, inode, raw_inode);
4874 EXT4_EINODE_GET_XTIME(i_crtime, ei, raw_inode);
4875
Theodore Ts'oed3654e2014-03-24 14:09:06 -04004876 if (likely(!test_opt2(inode->i_sb, HURD_COMPAT))) {
Jeff Laytonee73f9a2018-01-09 08:21:39 -05004877 u64 ivers = le32_to_cpu(raw_inode->i_disk_version);
4878
Theodore Ts'oc4f65702014-03-20 00:32:57 -04004879 if (EXT4_INODE_SIZE(inode->i_sb) > EXT4_GOOD_OLD_INODE_SIZE) {
4880 if (EXT4_FITS_IN_INODE(raw_inode, ei, i_version_hi))
Jeff Laytonee73f9a2018-01-09 08:21:39 -05004881 ivers |=
Theodore Ts'oc4f65702014-03-20 00:32:57 -04004882 (__u64)(le32_to_cpu(raw_inode->i_version_hi)) << 32;
4883 }
Jeff Laytonee73f9a2018-01-09 08:21:39 -05004884 inode_set_iversion_queried(inode, ivers);
Jean Noel Cordenner25ec56b2008-01-28 23:58:27 -05004885 }
4886
Theodore Ts'oc4b5a612009-04-24 18:45:35 -04004887 ret = 0;
Theodore Ts'o485c26e2009-04-24 13:43:20 -04004888 if (ei->i_file_acl &&
Theodore Ts'o10329882009-11-15 15:29:56 -05004889 !ext4_data_block_valid(EXT4_SB(sb), ei->i_file_acl, 1)) {
Theodore Ts'o24676da2010-05-16 21:00:00 -04004890 EXT4_ERROR_INODE(inode, "bad extended attribute block %llu",
4891 ei->i_file_acl);
Darrick J. Wong6a797d22015-10-17 16:16:04 -04004892 ret = -EFSCORRUPTED;
Theodore Ts'o485c26e2009-04-24 13:43:20 -04004893 goto bad_inode;
Tao Maf19d5872012-12-10 14:05:51 -05004894 } else if (!ext4_has_inline_data(inode)) {
4895 if (ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS)) {
4896 if ((S_ISREG(inode->i_mode) || S_ISDIR(inode->i_mode) ||
4897 (S_ISLNK(inode->i_mode) &&
4898 !ext4_inode_is_fast_symlink(inode))))
4899 /* Validate extent which is part of inode */
4900 ret = ext4_ext_check_inode(inode);
4901 } else if (S_ISREG(inode->i_mode) || S_ISDIR(inode->i_mode) ||
4902 (S_ISLNK(inode->i_mode) &&
4903 !ext4_inode_is_fast_symlink(inode))) {
4904 /* Validate block references which are part of inode */
4905 ret = ext4_ind_check_inode(inode);
4906 }
Thiemo Nagelfe2c8192009-03-31 08:36:10 -04004907 }
Theodore Ts'o567f3e92009-11-14 08:19:05 -05004908 if (ret)
Theodore Ts'ode9a55b2009-06-14 17:45:34 -04004909 goto bad_inode;
Aneesh Kumar K.V7a262f72009-03-27 16:39:58 -04004910
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004911 if (S_ISREG(inode->i_mode)) {
Mingming Cao617ba132006-10-11 01:20:53 -07004912 inode->i_op = &ext4_file_inode_operations;
Boaz Harroshbe64f882015-04-15 16:15:17 -07004913 inode->i_fop = &ext4_file_operations;
Mingming Cao617ba132006-10-11 01:20:53 -07004914 ext4_set_aops(inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004915 } else if (S_ISDIR(inode->i_mode)) {
Mingming Cao617ba132006-10-11 01:20:53 -07004916 inode->i_op = &ext4_dir_inode_operations;
4917 inode->i_fop = &ext4_dir_operations;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004918 } else if (S_ISLNK(inode->i_mode)) {
Al Viroa7a67e82015-04-27 17:51:30 -04004919 if (ext4_encrypted_inode(inode)) {
4920 inode->i_op = &ext4_encrypted_symlink_inode_operations;
4921 ext4_set_aops(inode);
4922 } else if (ext4_inode_is_fast_symlink(inode)) {
Al Viro75e75662015-05-02 10:13:58 -04004923 inode->i_link = (char *)ei->i_data;
Mingming Cao617ba132006-10-11 01:20:53 -07004924 inode->i_op = &ext4_fast_symlink_inode_operations;
Duane Griffine83c1392008-12-19 20:47:15 +00004925 nd_terminate_link(ei->i_data, inode->i_size,
4926 sizeof(ei->i_data) - 1);
4927 } else {
Mingming Cao617ba132006-10-11 01:20:53 -07004928 inode->i_op = &ext4_symlink_inode_operations;
4929 ext4_set_aops(inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004930 }
Al Viro21fc61c2015-11-17 01:07:57 -05004931 inode_nohighmem(inode);
Theodore Ts'o563bdd62009-03-26 00:06:19 -04004932 } else if (S_ISCHR(inode->i_mode) || S_ISBLK(inode->i_mode) ||
4933 S_ISFIFO(inode->i_mode) || S_ISSOCK(inode->i_mode)) {
Mingming Cao617ba132006-10-11 01:20:53 -07004934 inode->i_op = &ext4_special_inode_operations;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004935 if (raw_inode->i_block[0])
4936 init_special_inode(inode, inode->i_mode,
4937 old_decode_dev(le32_to_cpu(raw_inode->i_block[0])));
4938 else
4939 init_special_inode(inode, inode->i_mode,
4940 new_decode_dev(le32_to_cpu(raw_inode->i_block[1])));
Dr. Tilmann Bubeck393d1d12013-04-08 12:54:05 -04004941 } else if (ino == EXT4_BOOT_LOADER_INO) {
4942 make_bad_inode(inode);
Theodore Ts'o563bdd62009-03-26 00:06:19 -04004943 } else {
Darrick J. Wong6a797d22015-10-17 16:16:04 -04004944 ret = -EFSCORRUPTED;
Theodore Ts'o24676da2010-05-16 21:00:00 -04004945 EXT4_ERROR_INODE(inode, "bogus i_mode (%o)", inode->i_mode);
Theodore Ts'o563bdd62009-03-26 00:06:19 -04004946 goto bad_inode;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004947 }
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04004948 brelse(iloc.bh);
Mingming Cao617ba132006-10-11 01:20:53 -07004949 ext4_set_inode_flags(inode);
Tahsin Erdogandec214d2017-06-22 11:44:55 -04004950
David Howells1d1fe1e2008-02-07 00:15:37 -08004951 unlock_new_inode(inode);
4952 return inode;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004953
4954bad_inode:
Theodore Ts'o567f3e92009-11-14 08:19:05 -05004955 brelse(iloc.bh);
David Howells1d1fe1e2008-02-07 00:15:37 -08004956 iget_failed(inode);
4957 return ERR_PTR(ret);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004958}
4959
Theodore Ts'of4bb2982014-10-05 22:56:00 -04004960struct inode *ext4_iget_normal(struct super_block *sb, unsigned long ino)
4961{
4962 if (ino < EXT4_FIRST_INO(sb) && ino != EXT4_ROOT_INO)
Darrick J. Wong6a797d22015-10-17 16:16:04 -04004963 return ERR_PTR(-EFSCORRUPTED);
Theodore Ts'of4bb2982014-10-05 22:56:00 -04004964 return ext4_iget(sb, ino);
4965}
4966
Aneesh Kumar K.V0fc1b452008-01-28 23:58:26 -05004967static int ext4_inode_blocks_set(handle_t *handle,
4968 struct ext4_inode *raw_inode,
4969 struct ext4_inode_info *ei)
4970{
4971 struct inode *inode = &(ei->vfs_inode);
4972 u64 i_blocks = inode->i_blocks;
4973 struct super_block *sb = inode->i_sb;
Aneesh Kumar K.V0fc1b452008-01-28 23:58:26 -05004974
4975 if (i_blocks <= ~0U) {
4976 /*
Anatol Pomozov4907cb72012-09-01 10:31:09 -07004977 * i_blocks can be represented in a 32 bit variable
Aneesh Kumar K.V0fc1b452008-01-28 23:58:26 -05004978 * as multiple of 512 bytes
4979 */
Aneesh Kumar K.V8180a562008-01-28 23:58:27 -05004980 raw_inode->i_blocks_lo = cpu_to_le32(i_blocks);
Aneesh Kumar K.V0fc1b452008-01-28 23:58:26 -05004981 raw_inode->i_blocks_high = 0;
Dmitry Monakhov84a8dce2010-06-05 11:51:27 -04004982 ext4_clear_inode_flag(inode, EXT4_INODE_HUGE_FILE);
Theodore Ts'of287a1a2008-10-16 22:50:48 -04004983 return 0;
4984 }
Darrick J. Wonge2b911c2015-10-17 16:18:43 -04004985 if (!ext4_has_feature_huge_file(sb))
Theodore Ts'of287a1a2008-10-16 22:50:48 -04004986 return -EFBIG;
4987
4988 if (i_blocks <= 0xffffffffffffULL) {
Aneesh Kumar K.V0fc1b452008-01-28 23:58:26 -05004989 /*
4990 * i_blocks can be represented in a 48 bit variable
4991 * as multiple of 512 bytes
4992 */
Aneesh Kumar K.V8180a562008-01-28 23:58:27 -05004993 raw_inode->i_blocks_lo = cpu_to_le32(i_blocks);
Aneesh Kumar K.V0fc1b452008-01-28 23:58:26 -05004994 raw_inode->i_blocks_high = cpu_to_le16(i_blocks >> 32);
Dmitry Monakhov84a8dce2010-06-05 11:51:27 -04004995 ext4_clear_inode_flag(inode, EXT4_INODE_HUGE_FILE);
Aneesh Kumar K.V0fc1b452008-01-28 23:58:26 -05004996 } else {
Dmitry Monakhov84a8dce2010-06-05 11:51:27 -04004997 ext4_set_inode_flag(inode, EXT4_INODE_HUGE_FILE);
Aneesh Kumar K.V8180a562008-01-28 23:58:27 -05004998 /* i_block is stored in file system block size */
4999 i_blocks = i_blocks >> (inode->i_blkbits - 9);
5000 raw_inode->i_blocks_lo = cpu_to_le32(i_blocks);
5001 raw_inode->i_blocks_high = cpu_to_le16(i_blocks >> 32);
Aneesh Kumar K.V0fc1b452008-01-28 23:58:26 -05005002 }
Theodore Ts'of287a1a2008-10-16 22:50:48 -04005003 return 0;
Aneesh Kumar K.V0fc1b452008-01-28 23:58:26 -05005004}
5005
Theodore Ts'oa26f4992015-02-02 00:37:02 -05005006struct other_inode {
5007 unsigned long orig_ino;
5008 struct ext4_inode *raw_inode;
5009};
5010
5011static int other_inode_match(struct inode * inode, unsigned long ino,
5012 void *data)
5013{
5014 struct other_inode *oi = (struct other_inode *) data;
5015
5016 if ((inode->i_ino != ino) ||
5017 (inode->i_state & (I_FREEING | I_WILL_FREE | I_NEW |
5018 I_DIRTY_SYNC | I_DIRTY_DATASYNC)) ||
5019 ((inode->i_state & I_DIRTY_TIME) == 0))
5020 return 0;
5021 spin_lock(&inode->i_lock);
5022 if (((inode->i_state & (I_FREEING | I_WILL_FREE | I_NEW |
5023 I_DIRTY_SYNC | I_DIRTY_DATASYNC)) == 0) &&
5024 (inode->i_state & I_DIRTY_TIME)) {
5025 struct ext4_inode_info *ei = EXT4_I(inode);
5026
5027 inode->i_state &= ~(I_DIRTY_TIME | I_DIRTY_TIME_EXPIRED);
5028 spin_unlock(&inode->i_lock);
5029
5030 spin_lock(&ei->i_raw_lock);
5031 EXT4_INODE_SET_XTIME(i_ctime, inode, oi->raw_inode);
5032 EXT4_INODE_SET_XTIME(i_mtime, inode, oi->raw_inode);
5033 EXT4_INODE_SET_XTIME(i_atime, inode, oi->raw_inode);
5034 ext4_inode_csum_set(inode, oi->raw_inode, ei);
5035 spin_unlock(&ei->i_raw_lock);
5036 trace_ext4_other_inode_update_time(inode, oi->orig_ino);
5037 return -1;
5038 }
5039 spin_unlock(&inode->i_lock);
5040 return -1;
5041}
5042
5043/*
5044 * Opportunistically update the other time fields for other inodes in
5045 * the same inode table block.
5046 */
5047static void ext4_update_other_inodes_time(struct super_block *sb,
5048 unsigned long orig_ino, char *buf)
5049{
5050 struct other_inode oi;
5051 unsigned long ino;
5052 int i, inodes_per_block = EXT4_SB(sb)->s_inodes_per_block;
5053 int inode_size = EXT4_INODE_SIZE(sb);
5054
5055 oi.orig_ino = orig_ino;
Theodore Ts'o0f0ff9a2015-07-01 23:37:46 -04005056 /*
5057 * Calculate the first inode in the inode table block. Inode
5058 * numbers are one-based. That is, the first inode in a block
5059 * (assuming 4k blocks and 256 byte inodes) is (n*16 + 1).
5060 */
5061 ino = ((orig_ino - 1) & ~(inodes_per_block - 1)) + 1;
Theodore Ts'oa26f4992015-02-02 00:37:02 -05005062 for (i = 0; i < inodes_per_block; i++, ino++, buf += inode_size) {
5063 if (ino == orig_ino)
5064 continue;
5065 oi.raw_inode = (struct ext4_inode *) buf;
5066 (void) find_inode_nowait(sb, ino, other_inode_match, &oi);
5067 }
5068}
5069
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005070/*
5071 * Post the struct inode info into an on-disk inode location in the
5072 * buffer-cache. This gobbles the caller's reference to the
5073 * buffer_head in the inode location struct.
5074 *
5075 * The caller must have write access to iloc->bh.
5076 */
Mingming Cao617ba132006-10-11 01:20:53 -07005077static int ext4_do_update_inode(handle_t *handle,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005078 struct inode *inode,
Frank Mayhar830156c2009-09-29 10:07:47 -04005079 struct ext4_iloc *iloc)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005080{
Mingming Cao617ba132006-10-11 01:20:53 -07005081 struct ext4_inode *raw_inode = ext4_raw_inode(iloc);
5082 struct ext4_inode_info *ei = EXT4_I(inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005083 struct buffer_head *bh = iloc->bh;
Theodore Ts'o202ee5d2014-04-21 14:37:55 -04005084 struct super_block *sb = inode->i_sb;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005085 int err = 0, rc, block;
Theodore Ts'o202ee5d2014-04-21 14:37:55 -04005086 int need_datasync = 0, set_large_file = 0;
Eric W. Biederman08cefc72012-02-07 15:41:49 -08005087 uid_t i_uid;
5088 gid_t i_gid;
Li Xi040cb372016-01-08 16:01:21 -05005089 projid_t i_projid;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005090
Theodore Ts'o202ee5d2014-04-21 14:37:55 -04005091 spin_lock(&ei->i_raw_lock);
5092
5093 /* For fields not tracked in the in-memory inode,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005094 * initialise them to zero for new inodes. */
Theodore Ts'o19f5fb72010-01-24 14:34:07 -05005095 if (ext4_test_inode_state(inode, EXT4_STATE_NEW))
Mingming Cao617ba132006-10-11 01:20:53 -07005096 memset(raw_inode, 0, EXT4_SB(inode->i_sb)->s_inode_size);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005097
5098 raw_inode->i_mode = cpu_to_le16(inode->i_mode);
Eric W. Biederman08cefc72012-02-07 15:41:49 -08005099 i_uid = i_uid_read(inode);
5100 i_gid = i_gid_read(inode);
Li Xi040cb372016-01-08 16:01:21 -05005101 i_projid = from_kprojid(&init_user_ns, ei->i_projid);
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04005102 if (!(test_opt(inode->i_sb, NO_UID32))) {
Eric W. Biederman08cefc72012-02-07 15:41:49 -08005103 raw_inode->i_uid_low = cpu_to_le16(low_16_bits(i_uid));
5104 raw_inode->i_gid_low = cpu_to_le16(low_16_bits(i_gid));
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005105/*
5106 * Fix up interoperability with old kernels. Otherwise, old inodes get
5107 * re-used with the upper 16 bits of the uid/gid intact
5108 */
Daeho Jeong93e3b4e2016-09-05 22:56:10 -04005109 if (ei->i_dtime && list_empty(&ei->i_orphan)) {
5110 raw_inode->i_uid_high = 0;
5111 raw_inode->i_gid_high = 0;
5112 } else {
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005113 raw_inode->i_uid_high =
Eric W. Biederman08cefc72012-02-07 15:41:49 -08005114 cpu_to_le16(high_16_bits(i_uid));
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005115 raw_inode->i_gid_high =
Eric W. Biederman08cefc72012-02-07 15:41:49 -08005116 cpu_to_le16(high_16_bits(i_gid));
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005117 }
5118 } else {
Eric W. Biederman08cefc72012-02-07 15:41:49 -08005119 raw_inode->i_uid_low = cpu_to_le16(fs_high2lowuid(i_uid));
5120 raw_inode->i_gid_low = cpu_to_le16(fs_high2lowgid(i_gid));
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005121 raw_inode->i_uid_high = 0;
5122 raw_inode->i_gid_high = 0;
5123 }
5124 raw_inode->i_links_count = cpu_to_le16(inode->i_nlink);
Kalpak Shahef7f3832007-07-18 09:15:20 -04005125
5126 EXT4_INODE_SET_XTIME(i_ctime, inode, raw_inode);
5127 EXT4_INODE_SET_XTIME(i_mtime, inode, raw_inode);
5128 EXT4_INODE_SET_XTIME(i_atime, inode, raw_inode);
5129 EXT4_EINODE_SET_XTIME(i_crtime, ei, raw_inode);
5130
Li Xibce92d52014-10-01 22:11:06 -04005131 err = ext4_inode_blocks_set(handle, raw_inode, ei);
5132 if (err) {
Theodore Ts'o202ee5d2014-04-21 14:37:55 -04005133 spin_unlock(&ei->i_raw_lock);
Aneesh Kumar K.V0fc1b452008-01-28 23:58:26 -05005134 goto out_brelse;
Theodore Ts'o202ee5d2014-04-21 14:37:55 -04005135 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005136 raw_inode->i_dtime = cpu_to_le32(ei->i_dtime);
Theodore Ts'o353eb832011-01-10 12:18:25 -05005137 raw_inode->i_flags = cpu_to_le32(ei->i_flags & 0xFFFFFFFF);
Theodore Ts'oed3654e2014-03-24 14:09:06 -04005138 if (likely(!test_opt2(inode->i_sb, HURD_COMPAT)))
Badari Pulavartya1ddeb72006-10-11 01:21:09 -07005139 raw_inode->i_file_acl_high =
5140 cpu_to_le16(ei->i_file_acl >> 32);
Aneesh Kumar K.V7973c0c2008-01-28 23:58:27 -05005141 raw_inode->i_file_acl_lo = cpu_to_le32(ei->i_file_acl);
Artem Blagodarenkoe08ac992017-06-21 21:09:57 -04005142 if (ei->i_disksize != ext4_isize(inode->i_sb, raw_inode)) {
Jan Karab71fc072012-09-26 21:52:20 -04005143 ext4_isize_set(raw_inode, ei->i_disksize);
5144 need_datasync = 1;
5145 }
Aneesh Kumar K.Va48380f2008-01-28 23:58:27 -05005146 if (ei->i_disksize > 0x7fffffffULL) {
Darrick J. Wonge2b911c2015-10-17 16:18:43 -04005147 if (!ext4_has_feature_large_file(sb) ||
Aneesh Kumar K.Va48380f2008-01-28 23:58:27 -05005148 EXT4_SB(sb)->s_es->s_rev_level ==
Theodore Ts'o202ee5d2014-04-21 14:37:55 -04005149 cpu_to_le32(EXT4_GOOD_OLD_REV))
5150 set_large_file = 1;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005151 }
5152 raw_inode->i_generation = cpu_to_le32(inode->i_generation);
5153 if (S_ISCHR(inode->i_mode) || S_ISBLK(inode->i_mode)) {
5154 if (old_valid_dev(inode->i_rdev)) {
5155 raw_inode->i_block[0] =
5156 cpu_to_le32(old_encode_dev(inode->i_rdev));
5157 raw_inode->i_block[1] = 0;
5158 } else {
5159 raw_inode->i_block[0] = 0;
5160 raw_inode->i_block[1] =
5161 cpu_to_le32(new_encode_dev(inode->i_rdev));
5162 raw_inode->i_block[2] = 0;
5163 }
Tao Maf19d5872012-12-10 14:05:51 -05005164 } else if (!ext4_has_inline_data(inode)) {
Theodore Ts'ode9a55b2009-06-14 17:45:34 -04005165 for (block = 0; block < EXT4_N_BLOCKS; block++)
5166 raw_inode->i_block[block] = ei->i_data[block];
Tao Maf19d5872012-12-10 14:05:51 -05005167 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005168
Theodore Ts'oed3654e2014-03-24 14:09:06 -04005169 if (likely(!test_opt2(inode->i_sb, HURD_COMPAT))) {
Jeff Laytonee73f9a2018-01-09 08:21:39 -05005170 u64 ivers = inode_peek_iversion(inode);
5171
5172 raw_inode->i_disk_version = cpu_to_le32(ivers);
Theodore Ts'oc4f65702014-03-20 00:32:57 -04005173 if (ei->i_extra_isize) {
5174 if (EXT4_FITS_IN_INODE(raw_inode, ei, i_version_hi))
5175 raw_inode->i_version_hi =
Jeff Laytonee73f9a2018-01-09 08:21:39 -05005176 cpu_to_le32(ivers >> 32);
Theodore Ts'oc4f65702014-03-20 00:32:57 -04005177 raw_inode->i_extra_isize =
5178 cpu_to_le16(ei->i_extra_isize);
5179 }
Jean Noel Cordenner25ec56b2008-01-28 23:58:27 -05005180 }
Li Xi040cb372016-01-08 16:01:21 -05005181
Kaho Ng0b7b7772016-09-05 23:11:58 -04005182 BUG_ON(!ext4_has_feature_project(inode->i_sb) &&
Li Xi040cb372016-01-08 16:01:21 -05005183 i_projid != EXT4_DEF_PROJID);
5184
5185 if (EXT4_INODE_SIZE(inode->i_sb) > EXT4_GOOD_OLD_INODE_SIZE &&
5186 EXT4_FITS_IN_INODE(raw_inode, ei, i_projid))
5187 raw_inode->i_projid = cpu_to_le32(i_projid);
5188
Darrick J. Wong814525f2012-04-29 18:31:10 -04005189 ext4_inode_csum_set(inode, raw_inode, ei);
Theodore Ts'o202ee5d2014-04-21 14:37:55 -04005190 spin_unlock(&ei->i_raw_lock);
Linus Torvalds1751e8a2017-11-27 13:05:09 -08005191 if (inode->i_sb->s_flags & SB_LAZYTIME)
Theodore Ts'oa26f4992015-02-02 00:37:02 -05005192 ext4_update_other_inodes_time(inode->i_sb, inode->i_ino,
5193 bh->b_data);
Theodore Ts'o202ee5d2014-04-21 14:37:55 -04005194
Frank Mayhar830156c2009-09-29 10:07:47 -04005195 BUFFER_TRACE(bh, "call ext4_handle_dirty_metadata");
Curt Wohlgemuth73b50c12010-02-16 15:06:29 -05005196 rc = ext4_handle_dirty_metadata(handle, NULL, bh);
Frank Mayhar830156c2009-09-29 10:07:47 -04005197 if (!err)
5198 err = rc;
Theodore Ts'o19f5fb72010-01-24 14:34:07 -05005199 ext4_clear_inode_state(inode, EXT4_STATE_NEW);
Theodore Ts'o202ee5d2014-04-21 14:37:55 -04005200 if (set_large_file) {
liang xie5d601252014-05-12 22:06:43 -04005201 BUFFER_TRACE(EXT4_SB(sb)->s_sbh, "get write access");
Theodore Ts'o202ee5d2014-04-21 14:37:55 -04005202 err = ext4_journal_get_write_access(handle, EXT4_SB(sb)->s_sbh);
5203 if (err)
5204 goto out_brelse;
5205 ext4_update_dynamic_rev(sb);
Darrick J. Wonge2b911c2015-10-17 16:18:43 -04005206 ext4_set_feature_large_file(sb);
Theodore Ts'o202ee5d2014-04-21 14:37:55 -04005207 ext4_handle_sync(handle);
5208 err = ext4_handle_dirty_super(handle, sb);
5209 }
Jan Karab71fc072012-09-26 21:52:20 -04005210 ext4_update_inode_fsync_trans(handle, inode, need_datasync);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005211out_brelse:
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04005212 brelse(bh);
Mingming Cao617ba132006-10-11 01:20:53 -07005213 ext4_std_error(inode->i_sb, err);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005214 return err;
5215}
5216
5217/*
Mingming Cao617ba132006-10-11 01:20:53 -07005218 * ext4_write_inode()
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005219 *
5220 * We are called from a few places:
5221 *
Theodore Ts'o87f7e412014-04-08 11:38:28 -04005222 * - Within generic_file_aio_write() -> generic_write_sync() for O_SYNC files.
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005223 * Here, there will be no transaction running. We wait for any running
Anatol Pomozov4907cb72012-09-01 10:31:09 -07005224 * transaction to commit.
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005225 *
Theodore Ts'o87f7e412014-04-08 11:38:28 -04005226 * - Within flush work (sys_sync(), kupdate and such).
5227 * We wait on commit, if told to.
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005228 *
Theodore Ts'o87f7e412014-04-08 11:38:28 -04005229 * - Within iput_final() -> write_inode_now()
5230 * We wait on commit, if told to.
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005231 *
5232 * In all cases it is actually safe for us to return without doing anything,
5233 * because the inode has been copied into a raw inode buffer in
Theodore Ts'o87f7e412014-04-08 11:38:28 -04005234 * ext4_mark_inode_dirty(). This is a correctness thing for WB_SYNC_ALL
5235 * writeback.
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005236 *
5237 * Note that we are absolutely dependent upon all inode dirtiers doing the
5238 * right thing: they *must* call mark_inode_dirty() after dirtying info in
5239 * which we are interested.
5240 *
5241 * It would be a bug for them to not do this. The code:
5242 *
5243 * mark_inode_dirty(inode)
5244 * stuff();
5245 * inode->i_size = expr;
5246 *
Theodore Ts'o87f7e412014-04-08 11:38:28 -04005247 * is in error because write_inode() could occur while `stuff()' is running,
5248 * and the new i_size will be lost. Plus the inode will no longer be on the
5249 * superblock's dirty inode list.
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005250 */
Christoph Hellwiga9185b42010-03-05 09:21:37 +01005251int ext4_write_inode(struct inode *inode, struct writeback_control *wbc)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005252{
Frank Mayhar91ac6f42009-09-09 22:33:47 -04005253 int err;
5254
Theodore Ts'o87f7e412014-04-08 11:38:28 -04005255 if (WARN_ON_ONCE(current->flags & PF_MEMALLOC))
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005256 return 0;
5257
Frank Mayhar91ac6f42009-09-09 22:33:47 -04005258 if (EXT4_SB(inode->i_sb)->s_journal) {
5259 if (ext4_journal_current_handle()) {
5260 jbd_debug(1, "called recursively, non-PF_MEMALLOC!\n");
5261 dump_stack();
5262 return -EIO;
5263 }
5264
Jan Kara10542c22014-03-04 10:50:50 -05005265 /*
5266 * No need to force transaction in WB_SYNC_NONE mode. Also
5267 * ext4_sync_fs() will force the commit after everything is
5268 * written.
5269 */
5270 if (wbc->sync_mode != WB_SYNC_ALL || wbc->for_sync)
Frank Mayhar91ac6f42009-09-09 22:33:47 -04005271 return 0;
5272
5273 err = ext4_force_commit(inode->i_sb);
5274 } else {
5275 struct ext4_iloc iloc;
5276
Curt Wohlgemuth8b472d72010-04-03 16:45:06 -04005277 err = __ext4_get_inode_loc(inode, &iloc, 0);
Frank Mayhar91ac6f42009-09-09 22:33:47 -04005278 if (err)
5279 return err;
Jan Kara10542c22014-03-04 10:50:50 -05005280 /*
5281 * sync(2) will flush the whole buffer cache. No need to do
5282 * it here separately for each inode.
5283 */
5284 if (wbc->sync_mode == WB_SYNC_ALL && !wbc->for_sync)
Frank Mayhar830156c2009-09-29 10:07:47 -04005285 sync_dirty_buffer(iloc.bh);
5286 if (buffer_req(iloc.bh) && !buffer_uptodate(iloc.bh)) {
Theodore Ts'oc398eda2010-07-27 11:56:40 -04005287 EXT4_ERROR_INODE_BLOCK(inode, iloc.bh->b_blocknr,
5288 "IO error syncing inode");
Frank Mayhar830156c2009-09-29 10:07:47 -04005289 err = -EIO;
5290 }
Curt Wohlgemuthfd2dd9f2010-04-03 17:44:16 -04005291 brelse(iloc.bh);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005292 }
Frank Mayhar91ac6f42009-09-09 22:33:47 -04005293 return err;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005294}
5295
5296/*
Jan Kara53e87262012-12-25 13:29:52 -05005297 * In data=journal mode ext4_journalled_invalidatepage() may fail to invalidate
5298 * buffers that are attached to a page stradding i_size and are undergoing
5299 * commit. In that case we have to wait for commit to finish and try again.
5300 */
5301static void ext4_wait_for_tail_page_commit(struct inode *inode)
5302{
5303 struct page *page;
5304 unsigned offset;
5305 journal_t *journal = EXT4_SB(inode->i_sb)->s_journal;
5306 tid_t commit_tid = 0;
5307 int ret;
5308
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005309 offset = inode->i_size & (PAGE_SIZE - 1);
Jan Kara53e87262012-12-25 13:29:52 -05005310 /*
5311 * All buffers in the last page remain valid? Then there's nothing to
Kirill A. Shutemovea1754a2016-04-01 15:29:48 +03005312 * do. We do the check mainly to optimize the common PAGE_SIZE ==
Jan Kara53e87262012-12-25 13:29:52 -05005313 * blocksize case
5314 */
Fabian Frederick93407472017-02-27 14:28:32 -08005315 if (offset > PAGE_SIZE - i_blocksize(inode))
Jan Kara53e87262012-12-25 13:29:52 -05005316 return;
5317 while (1) {
5318 page = find_lock_page(inode->i_mapping,
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005319 inode->i_size >> PAGE_SHIFT);
Jan Kara53e87262012-12-25 13:29:52 -05005320 if (!page)
5321 return;
Lukas Czernerca99fdd2013-05-21 23:25:01 -04005322 ret = __ext4_journalled_invalidatepage(page, offset,
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005323 PAGE_SIZE - offset);
Jan Kara53e87262012-12-25 13:29:52 -05005324 unlock_page(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005325 put_page(page);
Jan Kara53e87262012-12-25 13:29:52 -05005326 if (ret != -EBUSY)
5327 return;
5328 commit_tid = 0;
5329 read_lock(&journal->j_state_lock);
5330 if (journal->j_committing_transaction)
5331 commit_tid = journal->j_committing_transaction->t_tid;
5332 read_unlock(&journal->j_state_lock);
5333 if (commit_tid)
5334 jbd2_log_wait_commit(journal, commit_tid);
5335 }
5336}
5337
5338/*
Mingming Cao617ba132006-10-11 01:20:53 -07005339 * ext4_setattr()
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005340 *
5341 * Called from notify_change.
5342 *
5343 * We want to trap VFS attempts to truncate the file as soon as
5344 * possible. In particular, we want to make sure that when the VFS
5345 * shrinks i_size, we put the inode on the orphan list and modify
5346 * i_disksize immediately, so that during the subsequent flushing of
5347 * dirty pages and freeing of disk blocks, we can guarantee that any
5348 * commit will leave the blocks being flushed in an unused state on
5349 * disk. (On recovery, the inode will get truncated and the blocks will
5350 * be freed, so we have a strong guarantee that no future commit will
5351 * leave these blocks visible to the user.)
5352 *
Jan Kara678aaf42008-07-11 19:27:31 -04005353 * Another thing we have to assure is that if we are in ordered mode
5354 * and inode is still attached to the committing transaction, we must
5355 * we start writeout of all the dirty pages which are being truncated.
5356 * This way we are sure that all the data written in the previous
5357 * transaction are already on disk (truncate waits for pages under
5358 * writeback).
5359 *
5360 * Called with inode->i_mutex down.
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005361 */
Mingming Cao617ba132006-10-11 01:20:53 -07005362int ext4_setattr(struct dentry *dentry, struct iattr *attr)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005363{
David Howells2b0143b2015-03-17 22:25:59 +00005364 struct inode *inode = d_inode(dentry);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005365 int error, rc = 0;
Dmitry Monakhov3d287de2010-10-27 22:08:46 -04005366 int orphan = 0;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005367 const unsigned int ia_valid = attr->ia_valid;
5368
Theodore Ts'o0db1ff22017-02-05 01:28:48 -05005369 if (unlikely(ext4_forced_shutdown(EXT4_SB(inode->i_sb))))
5370 return -EIO;
5371
Jan Kara31051c82016-05-26 16:55:18 +02005372 error = setattr_prepare(dentry, attr);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005373 if (error)
5374 return error;
5375
Eric Biggers3ce2b8d2017-10-18 20:21:58 -04005376 error = fscrypt_prepare_setattr(dentry, attr);
5377 if (error)
5378 return error;
5379
Jan Karaa7cdade2015-06-29 16:22:54 +02005380 if (is_quota_modification(inode, attr)) {
5381 error = dquot_initialize(inode);
5382 if (error)
5383 return error;
5384 }
Eric W. Biederman08cefc72012-02-07 15:41:49 -08005385 if ((ia_valid & ATTR_UID && !uid_eq(attr->ia_uid, inode->i_uid)) ||
5386 (ia_valid & ATTR_GID && !gid_eq(attr->ia_gid, inode->i_gid))) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005387 handle_t *handle;
5388
5389 /* (user+group)*(old+new) structure, inode write (sb,
5390 * inode block, ? - but truncate inode update has it) */
Theodore Ts'o9924a922013-02-08 21:59:22 -05005391 handle = ext4_journal_start(inode, EXT4_HT_QUOTA,
5392 (EXT4_MAXQUOTAS_INIT_BLOCKS(inode->i_sb) +
5393 EXT4_MAXQUOTAS_DEL_BLOCKS(inode->i_sb)) + 3);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005394 if (IS_ERR(handle)) {
5395 error = PTR_ERR(handle);
5396 goto err_out;
5397 }
Tahsin Erdogan7a9ca532017-06-22 11:46:48 -04005398
5399 /* dquot_transfer() calls back ext4_get_inode_usage() which
5400 * counts xattr inode references.
5401 */
5402 down_read(&EXT4_I(inode)->xattr_sem);
Christoph Hellwigb43fa822010-03-03 09:05:03 -05005403 error = dquot_transfer(inode, attr);
Tahsin Erdogan7a9ca532017-06-22 11:46:48 -04005404 up_read(&EXT4_I(inode)->xattr_sem);
5405
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005406 if (error) {
Mingming Cao617ba132006-10-11 01:20:53 -07005407 ext4_journal_stop(handle);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005408 return error;
5409 }
5410 /* Update corresponding info in inode so that everything is in
5411 * one transaction */
5412 if (attr->ia_valid & ATTR_UID)
5413 inode->i_uid = attr->ia_uid;
5414 if (attr->ia_valid & ATTR_GID)
5415 inode->i_gid = attr->ia_gid;
Mingming Cao617ba132006-10-11 01:20:53 -07005416 error = ext4_mark_inode_dirty(handle, inode);
5417 ext4_journal_stop(handle);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005418 }
5419
Josef Bacik3da40c72015-06-22 00:31:26 -04005420 if (attr->ia_valid & ATTR_SIZE) {
Jan Kara52083862013-08-17 10:07:17 -04005421 handle_t *handle;
Josef Bacik3da40c72015-06-22 00:31:26 -04005422 loff_t oldsize = inode->i_size;
5423 int shrink = (attr->ia_size <= inode->i_size);
Christoph Hellwig562c72a2011-06-24 14:29:45 -04005424
Dmitry Monakhov12e9b892010-05-16 22:00:00 -04005425 if (!(ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS))) {
Eric Sandeene2b46572008-01-28 23:58:27 -05005426 struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb);
5427
Theodore Ts'o0c095c72010-07-27 11:56:06 -04005428 if (attr->ia_size > sbi->s_bitmap_maxbytes)
5429 return -EFBIG;
Eric Sandeene2b46572008-01-28 23:58:27 -05005430 }
Josef Bacik3da40c72015-06-22 00:31:26 -04005431 if (!S_ISREG(inode->i_mode))
5432 return -EINVAL;
Christoph Hellwigdff6efc2013-11-19 07:17:07 -08005433
5434 if (IS_I_VERSION(inode) && attr->ia_size != inode->i_size)
5435 inode_inc_iversion(inode);
5436
Josef Bacik3da40c72015-06-22 00:31:26 -04005437 if (ext4_should_order_data(inode) &&
Jan Kara52083862013-08-17 10:07:17 -04005438 (attr->ia_size < inode->i_size)) {
Josef Bacik3da40c72015-06-22 00:31:26 -04005439 error = ext4_begin_ordered_truncate(inode,
Jan Kara678aaf42008-07-11 19:27:31 -04005440 attr->ia_size);
Josef Bacik3da40c72015-06-22 00:31:26 -04005441 if (error)
5442 goto err_out;
5443 }
5444 if (attr->ia_size != inode->i_size) {
Jan Kara52083862013-08-17 10:07:17 -04005445 handle = ext4_journal_start(inode, EXT4_HT_INODE, 3);
5446 if (IS_ERR(handle)) {
5447 error = PTR_ERR(handle);
5448 goto err_out;
5449 }
Josef Bacik3da40c72015-06-22 00:31:26 -04005450 if (ext4_handle_valid(handle) && shrink) {
Jan Kara52083862013-08-17 10:07:17 -04005451 error = ext4_orphan_add(handle, inode);
5452 orphan = 1;
5453 }
Eryu Guan911af572015-07-28 15:08:41 -04005454 /*
5455 * Update c/mtime on truncate up, ext4_truncate() will
5456 * update c/mtime in shrink case below
5457 */
5458 if (!shrink) {
Deepa Dinamanieeca7ea2016-11-14 21:40:10 -05005459 inode->i_mtime = current_time(inode);
Eryu Guan911af572015-07-28 15:08:41 -04005460 inode->i_ctime = inode->i_mtime;
5461 }
Jan Kara90e775b2013-08-17 10:09:31 -04005462 down_write(&EXT4_I(inode)->i_data_sem);
Jan Kara52083862013-08-17 10:07:17 -04005463 EXT4_I(inode)->i_disksize = attr->ia_size;
5464 rc = ext4_mark_inode_dirty(handle, inode);
5465 if (!error)
5466 error = rc;
Jan Kara90e775b2013-08-17 10:09:31 -04005467 /*
5468 * We have to update i_size under i_data_sem together
5469 * with i_disksize to avoid races with writeback code
5470 * running ext4_wb_update_i_disksize().
5471 */
5472 if (!error)
5473 i_size_write(inode, attr->ia_size);
5474 up_write(&EXT4_I(inode)->i_data_sem);
Jan Kara52083862013-08-17 10:07:17 -04005475 ext4_journal_stop(handle);
5476 if (error) {
Josef Bacik3da40c72015-06-22 00:31:26 -04005477 if (orphan)
5478 ext4_orphan_del(NULL, inode);
Jan Kara678aaf42008-07-11 19:27:31 -04005479 goto err_out;
5480 }
Jan Karad6320cb2014-10-01 21:49:46 -04005481 }
Josef Bacik3da40c72015-06-22 00:31:26 -04005482 if (!shrink)
5483 pagecache_isize_extended(inode, oldsize, inode->i_size);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005484
Jan Kara52083862013-08-17 10:07:17 -04005485 /*
5486 * Blocks are going to be removed from the inode. Wait
5487 * for dio in flight. Temporarily disable
5488 * dioread_nolock to prevent livelock.
5489 */
5490 if (orphan) {
5491 if (!ext4_should_journal_data(inode)) {
5492 ext4_inode_block_unlocked_dio(inode);
5493 inode_dio_wait(inode);
5494 ext4_inode_resume_unlocked_dio(inode);
5495 } else
5496 ext4_wait_for_tail_page_commit(inode);
Dmitry Monakhov1c9114f2012-09-29 00:55:23 -04005497 }
Jan Karaea3d7202015-12-07 14:28:03 -05005498 down_write(&EXT4_I(inode)->i_mmap_sem);
Jan Kara52083862013-08-17 10:07:17 -04005499 /*
5500 * Truncate pagecache after we've waited for commit
5501 * in data=journal mode to make pages freeable.
5502 */
Ross Zwisler923ae0f2015-02-16 15:59:38 -08005503 truncate_pagecache(inode, inode->i_size);
Theodore Ts'o2c98eb52016-11-13 22:02:26 -05005504 if (shrink) {
5505 rc = ext4_truncate(inode);
5506 if (rc)
5507 error = rc;
5508 }
Jan Karaea3d7202015-12-07 14:28:03 -05005509 up_write(&EXT4_I(inode)->i_mmap_sem);
Theodore Ts'o072bd7e2011-05-23 15:13:02 -04005510 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005511
Theodore Ts'o2c98eb52016-11-13 22:02:26 -05005512 if (!error) {
Christoph Hellwig10257742010-06-04 11:30:02 +02005513 setattr_copy(inode, attr);
5514 mark_inode_dirty(inode);
5515 }
5516
5517 /*
5518 * If the call to ext4_truncate failed to get a transaction handle at
5519 * all, we need to clean up the in-core orphan list manually.
5520 */
Dmitry Monakhov3d287de2010-10-27 22:08:46 -04005521 if (orphan && inode->i_nlink)
Mingming Cao617ba132006-10-11 01:20:53 -07005522 ext4_orphan_del(NULL, inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005523
Theodore Ts'o2c98eb52016-11-13 22:02:26 -05005524 if (!error && (ia_valid & ATTR_MODE))
Christoph Hellwig64e178a2013-12-20 05:16:44 -08005525 rc = posix_acl_chmod(inode, inode->i_mode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005526
5527err_out:
Mingming Cao617ba132006-10-11 01:20:53 -07005528 ext4_std_error(inode->i_sb, error);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005529 if (!error)
5530 error = rc;
5531 return error;
5532}
5533
David Howellsa528d352017-01-31 16:46:22 +00005534int ext4_getattr(const struct path *path, struct kstat *stat,
5535 u32 request_mask, unsigned int query_flags)
Mingming Cao3e3398a2008-07-11 19:27:31 -04005536{
David Howells99652ea2017-03-31 18:31:56 +01005537 struct inode *inode = d_inode(path->dentry);
5538 struct ext4_inode *raw_inode;
5539 struct ext4_inode_info *ei = EXT4_I(inode);
5540 unsigned int flags;
Mingming Cao3e3398a2008-07-11 19:27:31 -04005541
David Howells99652ea2017-03-31 18:31:56 +01005542 if (EXT4_FITS_IN_INODE(raw_inode, ei, i_crtime)) {
5543 stat->result_mask |= STATX_BTIME;
5544 stat->btime.tv_sec = ei->i_crtime.tv_sec;
5545 stat->btime.tv_nsec = ei->i_crtime.tv_nsec;
5546 }
5547
5548 flags = ei->i_flags & EXT4_FL_USER_VISIBLE;
5549 if (flags & EXT4_APPEND_FL)
5550 stat->attributes |= STATX_ATTR_APPEND;
5551 if (flags & EXT4_COMPR_FL)
5552 stat->attributes |= STATX_ATTR_COMPRESSED;
5553 if (flags & EXT4_ENCRYPT_FL)
5554 stat->attributes |= STATX_ATTR_ENCRYPTED;
5555 if (flags & EXT4_IMMUTABLE_FL)
5556 stat->attributes |= STATX_ATTR_IMMUTABLE;
5557 if (flags & EXT4_NODUMP_FL)
5558 stat->attributes |= STATX_ATTR_NODUMP;
5559
David Howells3209f682017-03-31 18:32:17 +01005560 stat->attributes_mask |= (STATX_ATTR_APPEND |
5561 STATX_ATTR_COMPRESSED |
5562 STATX_ATTR_ENCRYPTED |
5563 STATX_ATTR_IMMUTABLE |
5564 STATX_ATTR_NODUMP);
5565
Mingming Cao3e3398a2008-07-11 19:27:31 -04005566 generic_fillattr(inode, stat);
David Howells99652ea2017-03-31 18:31:56 +01005567 return 0;
5568}
5569
5570int ext4_file_getattr(const struct path *path, struct kstat *stat,
5571 u32 request_mask, unsigned int query_flags)
5572{
5573 struct inode *inode = d_inode(path->dentry);
5574 u64 delalloc_blocks;
5575
5576 ext4_getattr(path, stat, request_mask, query_flags);
Mingming Cao3e3398a2008-07-11 19:27:31 -04005577
5578 /*
Andreas Dilger9206c562013-11-11 22:38:12 -05005579 * If there is inline data in the inode, the inode will normally not
5580 * have data blocks allocated (it may have an external xattr block).
5581 * Report at least one sector for such files, so tools like tar, rsync,
Theodore Ts'od67d64f2017-03-25 17:33:31 -04005582 * others don't incorrectly think the file is completely sparse.
Andreas Dilger9206c562013-11-11 22:38:12 -05005583 */
5584 if (unlikely(ext4_has_inline_data(inode)))
5585 stat->blocks += (stat->size + 511) >> 9;
5586
5587 /*
Mingming Cao3e3398a2008-07-11 19:27:31 -04005588 * We can't update i_blocks if the block allocation is delayed
5589 * otherwise in the case of system crash before the real block
5590 * allocation is done, we will have i_blocks inconsistent with
5591 * on-disk file blocks.
5592 * We always keep i_blocks updated together with real
5593 * allocation. But to not confuse with user, stat
5594 * will return the blocks that include the delayed allocation
5595 * blocks for this file.
5596 */
Tao Ma96607552012-05-31 22:54:16 -04005597 delalloc_blocks = EXT4_C2B(EXT4_SB(inode->i_sb),
Andreas Dilger9206c562013-11-11 22:38:12 -05005598 EXT4_I(inode)->i_reserved_data_blocks);
5599 stat->blocks += delalloc_blocks << (inode->i_sb->s_blocksize_bits - 9);
Mingming Cao3e3398a2008-07-11 19:27:31 -04005600 return 0;
5601}
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005602
Jan Karafffb2732013-06-04 13:01:11 -04005603static int ext4_index_trans_blocks(struct inode *inode, int lblocks,
5604 int pextents)
Mingming Caoa02908f2008-08-19 22:16:07 -04005605{
Dmitry Monakhov12e9b892010-05-16 22:00:00 -04005606 if (!(ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS)))
Jan Karafffb2732013-06-04 13:01:11 -04005607 return ext4_ind_trans_blocks(inode, lblocks);
5608 return ext4_ext_index_trans_blocks(inode, pextents);
Mingming Caoa02908f2008-08-19 22:16:07 -04005609}
Theodore Ts'oac51d832008-11-06 16:49:36 -05005610
Mingming Caoa02908f2008-08-19 22:16:07 -04005611/*
5612 * Account for index blocks, block groups bitmaps and block group
5613 * descriptor blocks if modify datablocks and index blocks
5614 * worse case, the indexs blocks spread over different block groups
5615 *
5616 * If datablocks are discontiguous, they are possible to spread over
Anatol Pomozov4907cb72012-09-01 10:31:09 -07005617 * different block groups too. If they are contiguous, with flexbg,
Mingming Caoa02908f2008-08-19 22:16:07 -04005618 * they could still across block group boundary.
5619 *
5620 * Also account for superblock, inode, quota and xattr blocks
5621 */
Tahsin Erdogandec214d2017-06-22 11:44:55 -04005622static int ext4_meta_trans_blocks(struct inode *inode, int lblocks,
Jan Karafffb2732013-06-04 13:01:11 -04005623 int pextents)
Mingming Caoa02908f2008-08-19 22:16:07 -04005624{
Theodore Ts'o8df96752009-05-01 08:50:38 -04005625 ext4_group_t groups, ngroups = ext4_get_groups_count(inode->i_sb);
5626 int gdpblocks;
Mingming Caoa02908f2008-08-19 22:16:07 -04005627 int idxblocks;
5628 int ret = 0;
5629
5630 /*
Jan Karafffb2732013-06-04 13:01:11 -04005631 * How many index blocks need to touch to map @lblocks logical blocks
5632 * to @pextents physical extents?
Mingming Caoa02908f2008-08-19 22:16:07 -04005633 */
Jan Karafffb2732013-06-04 13:01:11 -04005634 idxblocks = ext4_index_trans_blocks(inode, lblocks, pextents);
Mingming Caoa02908f2008-08-19 22:16:07 -04005635
5636 ret = idxblocks;
5637
5638 /*
5639 * Now let's see how many group bitmaps and group descriptors need
5640 * to account
5641 */
Jan Karafffb2732013-06-04 13:01:11 -04005642 groups = idxblocks + pextents;
Mingming Caoa02908f2008-08-19 22:16:07 -04005643 gdpblocks = groups;
Theodore Ts'o8df96752009-05-01 08:50:38 -04005644 if (groups > ngroups)
5645 groups = ngroups;
Mingming Caoa02908f2008-08-19 22:16:07 -04005646 if (groups > EXT4_SB(inode->i_sb)->s_gdb_count)
5647 gdpblocks = EXT4_SB(inode->i_sb)->s_gdb_count;
5648
5649 /* bitmaps and block group descriptor blocks */
5650 ret += groups + gdpblocks;
5651
5652 /* Blocks for super block, inode, quota and xattr blocks */
5653 ret += EXT4_META_TRANS_BLOCKS(inode->i_sb);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005654
5655 return ret;
5656}
5657
5658/*
Lucas De Marchi25985ed2011-03-30 22:57:33 -03005659 * Calculate the total number of credits to reserve to fit
Mingming Caof3bd1f32008-08-19 22:16:03 -04005660 * the modification of a single pages into a single transaction,
5661 * which may include multiple chunks of block allocations.
Mingming Caoa02908f2008-08-19 22:16:07 -04005662 *
Mingming Cao525f4ed2008-08-19 22:15:58 -04005663 * This could be called via ext4_write_begin()
Mingming Caoa02908f2008-08-19 22:16:07 -04005664 *
Mingming Cao525f4ed2008-08-19 22:15:58 -04005665 * We need to consider the worse case, when
Mingming Caoa02908f2008-08-19 22:16:07 -04005666 * one new block per extent.
Mingming Caoa02908f2008-08-19 22:16:07 -04005667 */
5668int ext4_writepage_trans_blocks(struct inode *inode)
5669{
5670 int bpp = ext4_journal_blocks_per_page(inode);
5671 int ret;
5672
Jan Karafffb2732013-06-04 13:01:11 -04005673 ret = ext4_meta_trans_blocks(inode, bpp, bpp);
Mingming Caoa02908f2008-08-19 22:16:07 -04005674
5675 /* Account for data blocks for journalled mode */
5676 if (ext4_should_journal_data(inode))
5677 ret += bpp;
5678 return ret;
5679}
Mingming Caof3bd1f32008-08-19 22:16:03 -04005680
5681/*
5682 * Calculate the journal credits for a chunk of data modification.
5683 *
5684 * This is called from DIO, fallocate or whoever calling
Eric Sandeen79e83032010-07-27 11:56:07 -04005685 * ext4_map_blocks() to map/allocate a chunk of contiguous disk blocks.
Mingming Caof3bd1f32008-08-19 22:16:03 -04005686 *
5687 * journal buffers for data blocks are not included here, as DIO
5688 * and fallocate do no need to journal data buffers.
5689 */
5690int ext4_chunk_trans_blocks(struct inode *inode, int nrblocks)
5691{
5692 return ext4_meta_trans_blocks(inode, nrblocks, 1);
5693}
5694
Mingming Caoa02908f2008-08-19 22:16:07 -04005695/*
Mingming Cao617ba132006-10-11 01:20:53 -07005696 * The caller must have previously called ext4_reserve_inode_write().
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005697 * Give this, we know that the caller already has write access to iloc->bh.
5698 */
Mingming Cao617ba132006-10-11 01:20:53 -07005699int ext4_mark_iloc_dirty(handle_t *handle,
Theodore Ts'ode9a55b2009-06-14 17:45:34 -04005700 struct inode *inode, struct ext4_iloc *iloc)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005701{
5702 int err = 0;
5703
Theodore Ts'o0db1ff22017-02-05 01:28:48 -05005704 if (unlikely(ext4_forced_shutdown(EXT4_SB(inode->i_sb))))
5705 return -EIO;
5706
Theodore Ts'oc64db502012-03-02 12:23:11 -05005707 if (IS_I_VERSION(inode))
Jean Noel Cordenner25ec56b2008-01-28 23:58:27 -05005708 inode_inc_iversion(inode);
5709
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005710 /* the do_update_inode consumes one bh->b_count */
5711 get_bh(iloc->bh);
5712
Mingming Caodab291a2006-10-11 01:21:01 -07005713 /* ext4_do_update_inode() does jbd2_journal_dirty_metadata */
Frank Mayhar830156c2009-09-29 10:07:47 -04005714 err = ext4_do_update_inode(handle, inode, iloc);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005715 put_bh(iloc->bh);
5716 return err;
5717}
5718
5719/*
5720 * On success, We end up with an outstanding reference count against
5721 * iloc->bh. This _must_ be cleaned up later.
5722 */
5723
5724int
Mingming Cao617ba132006-10-11 01:20:53 -07005725ext4_reserve_inode_write(handle_t *handle, struct inode *inode,
5726 struct ext4_iloc *iloc)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005727{
Frank Mayhar03901312009-01-07 00:06:22 -05005728 int err;
5729
Theodore Ts'o0db1ff22017-02-05 01:28:48 -05005730 if (unlikely(ext4_forced_shutdown(EXT4_SB(inode->i_sb))))
5731 return -EIO;
5732
Frank Mayhar03901312009-01-07 00:06:22 -05005733 err = ext4_get_inode_loc(inode, iloc);
5734 if (!err) {
5735 BUFFER_TRACE(iloc->bh, "get_write_access");
5736 err = ext4_journal_get_write_access(handle, iloc->bh);
5737 if (err) {
5738 brelse(iloc->bh);
5739 iloc->bh = NULL;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005740 }
5741 }
Mingming Cao617ba132006-10-11 01:20:53 -07005742 ext4_std_error(inode->i_sb, err);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005743 return err;
5744}
5745
Miao Xiec03b45b2017-08-06 01:00:49 -04005746static int __ext4_expand_extra_isize(struct inode *inode,
5747 unsigned int new_extra_isize,
5748 struct ext4_iloc *iloc,
5749 handle_t *handle, int *no_expand)
5750{
5751 struct ext4_inode *raw_inode;
5752 struct ext4_xattr_ibody_header *header;
5753 int error;
5754
5755 raw_inode = ext4_raw_inode(iloc);
5756
5757 header = IHDR(inode, raw_inode);
5758
5759 /* No extended attributes present */
5760 if (!ext4_test_inode_state(inode, EXT4_STATE_XATTR) ||
5761 header->h_magic != cpu_to_le32(EXT4_XATTR_MAGIC)) {
5762 memset((void *)raw_inode + EXT4_GOOD_OLD_INODE_SIZE +
5763 EXT4_I(inode)->i_extra_isize, 0,
5764 new_extra_isize - EXT4_I(inode)->i_extra_isize);
5765 EXT4_I(inode)->i_extra_isize = new_extra_isize;
5766 return 0;
5767 }
5768
5769 /* try to expand with EAs present */
5770 error = ext4_expand_extra_isize_ea(inode, new_extra_isize,
5771 raw_inode, handle);
5772 if (error) {
5773 /*
5774 * Inode size expansion failed; don't try again
5775 */
5776 *no_expand = 1;
5777 }
5778
5779 return error;
5780}
5781
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005782/*
Kalpak Shah6dd4ee72007-07-18 09:19:57 -04005783 * Expand an inode by new_extra_isize bytes.
5784 * Returns 0 on success or negative error number on failure.
5785 */
Miao Xiecf0a5e82017-08-06 00:40:01 -04005786static int ext4_try_to_expand_extra_isize(struct inode *inode,
5787 unsigned int new_extra_isize,
5788 struct ext4_iloc iloc,
5789 handle_t *handle)
Kalpak Shah6dd4ee72007-07-18 09:19:57 -04005790{
Miao Xie3b10fdc2017-08-06 00:27:38 -04005791 int no_expand;
5792 int error;
Kalpak Shah6dd4ee72007-07-18 09:19:57 -04005793
Miao Xiecf0a5e82017-08-06 00:40:01 -04005794 if (ext4_test_inode_state(inode, EXT4_STATE_NO_EXPAND))
5795 return -EOVERFLOW;
5796
5797 /*
5798 * In nojournal mode, we can immediately attempt to expand
5799 * the inode. When journaled, we first need to obtain extra
5800 * buffer credits since we may write into the EA block
5801 * with this same handle. If journal_extend fails, then it will
5802 * only result in a minor loss of functionality for that inode.
5803 * If this is felt to be critical, then e2fsck should be run to
5804 * force a large enough s_min_extra_isize.
5805 */
5806 if (ext4_handle_valid(handle) &&
5807 jbd2_journal_extend(handle,
5808 EXT4_DATA_TRANS_BLOCKS(inode->i_sb)) != 0)
5809 return -ENOSPC;
Kalpak Shah6dd4ee72007-07-18 09:19:57 -04005810
Miao Xie3b10fdc2017-08-06 00:27:38 -04005811 if (ext4_write_trylock_xattr(inode, &no_expand) == 0)
Miao Xiecf0a5e82017-08-06 00:40:01 -04005812 return -EBUSY;
Miao Xie3b10fdc2017-08-06 00:27:38 -04005813
Miao Xiec03b45b2017-08-06 01:00:49 -04005814 error = __ext4_expand_extra_isize(inode, new_extra_isize, &iloc,
5815 handle, &no_expand);
Miao Xie3b10fdc2017-08-06 00:27:38 -04005816 ext4_write_unlock_xattr(inode, &no_expand);
Miao Xiecf0a5e82017-08-06 00:40:01 -04005817
Miao Xie3b10fdc2017-08-06 00:27:38 -04005818 return error;
Kalpak Shah6dd4ee72007-07-18 09:19:57 -04005819}
5820
Miao Xiec03b45b2017-08-06 01:00:49 -04005821int ext4_expand_extra_isize(struct inode *inode,
5822 unsigned int new_extra_isize,
5823 struct ext4_iloc *iloc)
5824{
5825 handle_t *handle;
5826 int no_expand;
5827 int error, rc;
5828
5829 if (ext4_test_inode_state(inode, EXT4_STATE_NO_EXPAND)) {
5830 brelse(iloc->bh);
5831 return -EOVERFLOW;
5832 }
5833
5834 handle = ext4_journal_start(inode, EXT4_HT_INODE,
5835 EXT4_DATA_TRANS_BLOCKS(inode->i_sb));
5836 if (IS_ERR(handle)) {
5837 error = PTR_ERR(handle);
5838 brelse(iloc->bh);
5839 return error;
5840 }
5841
5842 ext4_write_lock_xattr(inode, &no_expand);
5843
5844 BUFFER_TRACE(iloc.bh, "get_write_access");
5845 error = ext4_journal_get_write_access(handle, iloc->bh);
5846 if (error) {
5847 brelse(iloc->bh);
5848 goto out_stop;
5849 }
5850
5851 error = __ext4_expand_extra_isize(inode, new_extra_isize, iloc,
5852 handle, &no_expand);
5853
5854 rc = ext4_mark_iloc_dirty(handle, inode, iloc);
5855 if (!error)
5856 error = rc;
5857
5858 ext4_write_unlock_xattr(inode, &no_expand);
5859out_stop:
5860 ext4_journal_stop(handle);
5861 return error;
5862}
5863
Kalpak Shah6dd4ee72007-07-18 09:19:57 -04005864/*
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005865 * What we do here is to mark the in-core inode as clean with respect to inode
5866 * dirtiness (it may still be data-dirty).
5867 * This means that the in-core inode may be reaped by prune_icache
5868 * without having to perform any I/O. This is a very good thing,
5869 * because *any* task may call prune_icache - even ones which
5870 * have a transaction open against a different journal.
5871 *
5872 * Is this cheating? Not really. Sure, we haven't written the
5873 * inode out, but prune_icache isn't a user-visible syncing function.
5874 * Whenever the user wants stuff synced (sys_sync, sys_msync, sys_fsync)
5875 * we start and wait on commits.
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005876 */
Mingming Cao617ba132006-10-11 01:20:53 -07005877int ext4_mark_inode_dirty(handle_t *handle, struct inode *inode)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005878{
Mingming Cao617ba132006-10-11 01:20:53 -07005879 struct ext4_iloc iloc;
Kalpak Shah6dd4ee72007-07-18 09:19:57 -04005880 struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb);
Miao Xiecf0a5e82017-08-06 00:40:01 -04005881 int err;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005882
5883 might_sleep();
Theodore Ts'o7ff9c072010-11-08 13:51:33 -05005884 trace_ext4_mark_inode_dirty(inode, _RET_IP_);
Mingming Cao617ba132006-10-11 01:20:53 -07005885 err = ext4_reserve_inode_write(handle, inode, &iloc);
Eryu Guan5e1021f2016-03-12 21:40:32 -05005886 if (err)
5887 return err;
Miao Xiecf0a5e82017-08-06 00:40:01 -04005888
5889 if (EXT4_I(inode)->i_extra_isize < sbi->s_want_extra_isize)
5890 ext4_try_to_expand_extra_isize(inode, sbi->s_want_extra_isize,
5891 iloc, handle);
5892
Eryu Guan5e1021f2016-03-12 21:40:32 -05005893 return ext4_mark_iloc_dirty(handle, inode, &iloc);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005894}
5895
5896/*
Mingming Cao617ba132006-10-11 01:20:53 -07005897 * ext4_dirty_inode() is called from __mark_inode_dirty()
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005898 *
5899 * We're really interested in the case where a file is being extended.
5900 * i_size has been changed by generic_commit_write() and we thus need
5901 * to include the updated inode in the current transaction.
5902 *
Christoph Hellwig5dd40562010-03-03 09:05:00 -05005903 * Also, dquot_alloc_block() will always dirty the inode when blocks
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005904 * are allocated to the file.
5905 *
5906 * If the inode is marked synchronous, we don't honour that here - doing
5907 * so would cause a commit on atime updates, which we don't bother doing.
5908 * We handle synchronous inodes at the highest possible level.
Theodore Ts'o0ae45f62015-02-02 00:37:00 -05005909 *
5910 * If only the I_DIRTY_TIME flag is set, we can skip everything. If
5911 * I_DIRTY_TIME and I_DIRTY_SYNC is set, the only inode fields we need
5912 * to copy into the on-disk inode structure are the timestamp files.
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005913 */
Christoph Hellwigaa385722011-05-27 06:53:02 -04005914void ext4_dirty_inode(struct inode *inode, int flags)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005915{
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005916 handle_t *handle;
5917
Theodore Ts'o0ae45f62015-02-02 00:37:00 -05005918 if (flags == I_DIRTY_TIME)
5919 return;
Theodore Ts'o9924a922013-02-08 21:59:22 -05005920 handle = ext4_journal_start(inode, EXT4_HT_INODE, 2);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005921 if (IS_ERR(handle))
5922 goto out;
Curt Wohlgemuthf3dc2722009-09-29 16:06:01 -04005923
Curt Wohlgemuthf3dc2722009-09-29 16:06:01 -04005924 ext4_mark_inode_dirty(handle, inode);
5925
Mingming Cao617ba132006-10-11 01:20:53 -07005926 ext4_journal_stop(handle);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005927out:
5928 return;
5929}
5930
5931#if 0
5932/*
5933 * Bind an inode's backing buffer_head into this transaction, to prevent
5934 * it from being flushed to disk early. Unlike
Mingming Cao617ba132006-10-11 01:20:53 -07005935 * ext4_reserve_inode_write, this leaves behind no bh reference and
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005936 * returns no iloc structure, so the caller needs to repeat the iloc
5937 * lookup to mark the inode dirty later.
5938 */
Mingming Cao617ba132006-10-11 01:20:53 -07005939static int ext4_pin_inode(handle_t *handle, struct inode *inode)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005940{
Mingming Cao617ba132006-10-11 01:20:53 -07005941 struct ext4_iloc iloc;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005942
5943 int err = 0;
5944 if (handle) {
Mingming Cao617ba132006-10-11 01:20:53 -07005945 err = ext4_get_inode_loc(inode, &iloc);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005946 if (!err) {
5947 BUFFER_TRACE(iloc.bh, "get_write_access");
Mingming Caodab291a2006-10-11 01:21:01 -07005948 err = jbd2_journal_get_write_access(handle, iloc.bh);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005949 if (!err)
Frank Mayhar03901312009-01-07 00:06:22 -05005950 err = ext4_handle_dirty_metadata(handle,
Curt Wohlgemuth73b50c12010-02-16 15:06:29 -05005951 NULL,
Frank Mayhar03901312009-01-07 00:06:22 -05005952 iloc.bh);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005953 brelse(iloc.bh);
5954 }
5955 }
Mingming Cao617ba132006-10-11 01:20:53 -07005956 ext4_std_error(inode->i_sb, err);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005957 return err;
5958}
5959#endif
5960
Mingming Cao617ba132006-10-11 01:20:53 -07005961int ext4_change_inode_journal_flag(struct inode *inode, int val)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005962{
5963 journal_t *journal;
5964 handle_t *handle;
5965 int err;
Daeho Jeongc8585c62016-04-25 23:22:35 -04005966 struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005967
5968 /*
5969 * We have to be very careful here: changing a data block's
5970 * journaling status dynamically is dangerous. If we write a
5971 * data block to the journal, change the status and then delete
5972 * that block, we risk forgetting to revoke the old log record
5973 * from the journal and so a subsequent replay can corrupt data.
5974 * So, first we make sure that the journal is empty and that
5975 * nobody is changing anything.
5976 */
5977
Mingming Cao617ba132006-10-11 01:20:53 -07005978 journal = EXT4_JOURNAL(inode);
Frank Mayhar03901312009-01-07 00:06:22 -05005979 if (!journal)
5980 return 0;
Dave Hansend6995942007-07-18 08:33:51 -04005981 if (is_journal_aborted(journal))
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005982 return -EROFS;
5983
Dmitry Monakhov17335dc2012-09-29 00:41:21 -04005984 /* Wait for all existing dio workers */
5985 ext4_inode_block_unlocked_dio(inode);
5986 inode_dio_wait(inode);
5987
Daeho Jeong4c546592016-04-25 23:21:00 -04005988 /*
5989 * Before flushing the journal and switching inode's aops, we have
5990 * to flush all dirty data the inode has. There can be outstanding
5991 * delayed allocations, there can be unwritten extents created by
5992 * fallocate or buffered writes in dioread_nolock mode covered by
5993 * dirty data which can be converted only after flushing the dirty
5994 * data (and journalled aops don't know how to handle these cases).
5995 */
5996 if (val) {
5997 down_write(&EXT4_I(inode)->i_mmap_sem);
5998 err = filemap_write_and_wait(inode->i_mapping);
5999 if (err < 0) {
6000 up_write(&EXT4_I(inode)->i_mmap_sem);
6001 ext4_inode_resume_unlocked_dio(inode);
6002 return err;
6003 }
6004 }
6005
Daeho Jeongc8585c62016-04-25 23:22:35 -04006006 percpu_down_write(&sbi->s_journal_flag_rwsem);
Mingming Caodab291a2006-10-11 01:21:01 -07006007 jbd2_journal_lock_updates(journal);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07006008
6009 /*
6010 * OK, there are no updates running now, and all cached data is
6011 * synced to disk. We are now in a completely consistent state
6012 * which doesn't have anything in the journal, and we know that
6013 * no filesystem updates are running, so it is safe to modify
6014 * the inode's in-core data-journaling state flag now.
6015 */
6016
6017 if (val)
Dmitry Monakhov12e9b892010-05-16 22:00:00 -04006018 ext4_set_inode_flag(inode, EXT4_INODE_JOURNAL_DATA);
Yongqiang Yang5872dda2011-12-28 13:55:51 -05006019 else {
Jan Kara4f879ca2014-10-30 10:53:17 -04006020 err = jbd2_journal_flush(journal);
6021 if (err < 0) {
6022 jbd2_journal_unlock_updates(journal);
Daeho Jeongc8585c62016-04-25 23:22:35 -04006023 percpu_up_write(&sbi->s_journal_flag_rwsem);
Jan Kara4f879ca2014-10-30 10:53:17 -04006024 ext4_inode_resume_unlocked_dio(inode);
6025 return err;
6026 }
Dmitry Monakhov12e9b892010-05-16 22:00:00 -04006027 ext4_clear_inode_flag(inode, EXT4_INODE_JOURNAL_DATA);
Yongqiang Yang5872dda2011-12-28 13:55:51 -05006028 }
Mingming Cao617ba132006-10-11 01:20:53 -07006029 ext4_set_aops(inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07006030
Mingming Caodab291a2006-10-11 01:21:01 -07006031 jbd2_journal_unlock_updates(journal);
Daeho Jeongc8585c62016-04-25 23:22:35 -04006032 percpu_up_write(&sbi->s_journal_flag_rwsem);
6033
Daeho Jeong4c546592016-04-25 23:21:00 -04006034 if (val)
6035 up_write(&EXT4_I(inode)->i_mmap_sem);
Dmitry Monakhov17335dc2012-09-29 00:41:21 -04006036 ext4_inode_resume_unlocked_dio(inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07006037
6038 /* Finally we can mark the inode as dirty. */
6039
Theodore Ts'o9924a922013-02-08 21:59:22 -05006040 handle = ext4_journal_start(inode, EXT4_HT_INODE, 1);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07006041 if (IS_ERR(handle))
6042 return PTR_ERR(handle);
6043
Mingming Cao617ba132006-10-11 01:20:53 -07006044 err = ext4_mark_inode_dirty(handle, inode);
Frank Mayhar03901312009-01-07 00:06:22 -05006045 ext4_handle_sync(handle);
Mingming Cao617ba132006-10-11 01:20:53 -07006046 ext4_journal_stop(handle);
6047 ext4_std_error(inode->i_sb, err);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07006048
6049 return err;
6050}
Aneesh Kumar K.V2e9ee852008-07-11 19:27:31 -04006051
6052static int ext4_bh_unmapped(handle_t *handle, struct buffer_head *bh)
6053{
6054 return !buffer_mapped(bh);
6055}
6056
Dave Jiang11bac802017-02-24 14:56:41 -08006057int ext4_page_mkwrite(struct vm_fault *vmf)
Aneesh Kumar K.V2e9ee852008-07-11 19:27:31 -04006058{
Dave Jiang11bac802017-02-24 14:56:41 -08006059 struct vm_area_struct *vma = vmf->vma;
Nick Pigginc2ec1752009-03-31 15:23:21 -07006060 struct page *page = vmf->page;
Aneesh Kumar K.V2e9ee852008-07-11 19:27:31 -04006061 loff_t size;
6062 unsigned long len;
Jan Kara9ea7df52011-06-24 14:29:41 -04006063 int ret;
Aneesh Kumar K.V2e9ee852008-07-11 19:27:31 -04006064 struct file *file = vma->vm_file;
Al Viro496ad9a2013-01-23 17:07:38 -05006065 struct inode *inode = file_inode(file);
Aneesh Kumar K.V2e9ee852008-07-11 19:27:31 -04006066 struct address_space *mapping = inode->i_mapping;
Jan Kara9ea7df52011-06-24 14:29:41 -04006067 handle_t *handle;
6068 get_block_t *get_block;
6069 int retries = 0;
Aneesh Kumar K.V2e9ee852008-07-11 19:27:31 -04006070
Jan Kara8e8ad8a2012-06-12 16:20:38 +02006071 sb_start_pagefault(inode->i_sb);
Theodore Ts'o041bbb6d2012-09-30 23:04:56 -04006072 file_update_time(vma->vm_file);
Jan Karaea3d7202015-12-07 14:28:03 -05006073
6074 down_read(&EXT4_I(inode)->i_mmap_sem);
Eric Biggers7b4cc972017-04-30 00:10:50 -04006075
6076 ret = ext4_convert_inline_data(inode);
6077 if (ret)
6078 goto out_ret;
6079
Jan Kara9ea7df52011-06-24 14:29:41 -04006080 /* Delalloc case is easy... */
6081 if (test_opt(inode->i_sb, DELALLOC) &&
6082 !ext4_should_journal_data(inode) &&
6083 !ext4_nonda_switch(inode->i_sb)) {
6084 do {
Ross Zwisler5c500022015-10-13 16:51:02 -06006085 ret = block_page_mkwrite(vma, vmf,
Jan Kara9ea7df52011-06-24 14:29:41 -04006086 ext4_da_get_block_prep);
6087 } while (ret == -ENOSPC &&
6088 ext4_should_retry_alloc(inode->i_sb, &retries));
6089 goto out_ret;
Aneesh Kumar K.V2e9ee852008-07-11 19:27:31 -04006090 }
Darrick J. Wong0e499892011-05-18 13:55:20 -04006091
6092 lock_page(page);
Jan Kara9ea7df52011-06-24 14:29:41 -04006093 size = i_size_read(inode);
6094 /* Page got truncated from under us? */
6095 if (page->mapping != mapping || page_offset(page) > size) {
6096 unlock_page(page);
6097 ret = VM_FAULT_NOPAGE;
6098 goto out;
Darrick J. Wong0e499892011-05-18 13:55:20 -04006099 }
Aneesh Kumar K.V2e9ee852008-07-11 19:27:31 -04006100
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03006101 if (page->index == size >> PAGE_SHIFT)
6102 len = size & ~PAGE_MASK;
Aneesh Kumar K.V2e9ee852008-07-11 19:27:31 -04006103 else
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03006104 len = PAGE_SIZE;
Aneesh Kumar K.Va827eaf2009-09-09 22:36:03 -04006105 /*
Jan Kara9ea7df52011-06-24 14:29:41 -04006106 * Return if we have all the buffers mapped. This avoids the need to do
6107 * journal_start/journal_stop which can block and take a long time
Aneesh Kumar K.Va827eaf2009-09-09 22:36:03 -04006108 */
Aneesh Kumar K.V2e9ee852008-07-11 19:27:31 -04006109 if (page_has_buffers(page)) {
Tao Maf19d5872012-12-10 14:05:51 -05006110 if (!ext4_walk_page_buffers(NULL, page_buffers(page),
6111 0, len, NULL,
6112 ext4_bh_unmapped)) {
Jan Kara9ea7df52011-06-24 14:29:41 -04006113 /* Wait so that we don't change page under IO */
Darrick J. Wong1d1d1a72013-02-21 16:42:51 -08006114 wait_for_stable_page(page);
Jan Kara9ea7df52011-06-24 14:29:41 -04006115 ret = VM_FAULT_LOCKED;
6116 goto out;
Aneesh Kumar K.Va827eaf2009-09-09 22:36:03 -04006117 }
Aneesh Kumar K.V2e9ee852008-07-11 19:27:31 -04006118 }
Aneesh Kumar K.Va827eaf2009-09-09 22:36:03 -04006119 unlock_page(page);
Jan Kara9ea7df52011-06-24 14:29:41 -04006120 /* OK, we need to fill the hole... */
6121 if (ext4_should_dioread_nolock(inode))
Jan Kara705965b2016-03-08 23:08:10 -05006122 get_block = ext4_get_block_unwritten;
Jan Kara9ea7df52011-06-24 14:29:41 -04006123 else
6124 get_block = ext4_get_block;
6125retry_alloc:
Theodore Ts'o9924a922013-02-08 21:59:22 -05006126 handle = ext4_journal_start(inode, EXT4_HT_WRITE_PAGE,
6127 ext4_writepage_trans_blocks(inode));
Jan Kara9ea7df52011-06-24 14:29:41 -04006128 if (IS_ERR(handle)) {
Nick Pigginc2ec1752009-03-31 15:23:21 -07006129 ret = VM_FAULT_SIGBUS;
Jan Kara9ea7df52011-06-24 14:29:41 -04006130 goto out;
6131 }
Ross Zwisler5c500022015-10-13 16:51:02 -06006132 ret = block_page_mkwrite(vma, vmf, get_block);
Jan Kara9ea7df52011-06-24 14:29:41 -04006133 if (!ret && ext4_should_journal_data(inode)) {
Tao Maf19d5872012-12-10 14:05:51 -05006134 if (ext4_walk_page_buffers(handle, page_buffers(page), 0,
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03006135 PAGE_SIZE, NULL, do_journal_get_write_access)) {
Jan Kara9ea7df52011-06-24 14:29:41 -04006136 unlock_page(page);
6137 ret = VM_FAULT_SIGBUS;
Yongqiang Yangfcbb5512011-10-26 05:00:19 -04006138 ext4_journal_stop(handle);
Jan Kara9ea7df52011-06-24 14:29:41 -04006139 goto out;
6140 }
6141 ext4_set_inode_state(inode, EXT4_STATE_JDATA);
6142 }
6143 ext4_journal_stop(handle);
6144 if (ret == -ENOSPC && ext4_should_retry_alloc(inode->i_sb, &retries))
6145 goto retry_alloc;
6146out_ret:
6147 ret = block_page_mkwrite_return(ret);
6148out:
Jan Karaea3d7202015-12-07 14:28:03 -05006149 up_read(&EXT4_I(inode)->i_mmap_sem);
Jan Kara8e8ad8a2012-06-12 16:20:38 +02006150 sb_end_pagefault(inode->i_sb);
Aneesh Kumar K.V2e9ee852008-07-11 19:27:31 -04006151 return ret;
6152}
Jan Karaea3d7202015-12-07 14:28:03 -05006153
Dave Jiang11bac802017-02-24 14:56:41 -08006154int ext4_filemap_fault(struct vm_fault *vmf)
Jan Karaea3d7202015-12-07 14:28:03 -05006155{
Dave Jiang11bac802017-02-24 14:56:41 -08006156 struct inode *inode = file_inode(vmf->vma->vm_file);
Jan Karaea3d7202015-12-07 14:28:03 -05006157 int err;
6158
6159 down_read(&EXT4_I(inode)->i_mmap_sem);
Dave Jiang11bac802017-02-24 14:56:41 -08006160 err = filemap_fault(vmf);
Jan Karaea3d7202015-12-07 14:28:03 -05006161 up_read(&EXT4_I(inode)->i_mmap_sem);
6162
6163 return err;
6164}