blob: ae93f0bb948599ebf112fcf2c3538ba835f8ca94 [file] [log] [blame]
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001/*
Mingming Cao617ba132006-10-11 01:20:53 -07002 * linux/fs/ext4/inode.c
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003 *
4 * Copyright (C) 1992, 1993, 1994, 1995
5 * Remy Card (card@masi.ibp.fr)
6 * Laboratoire MASI - Institut Blaise Pascal
7 * Universite Pierre et Marie Curie (Paris VI)
8 *
9 * from
10 *
11 * linux/fs/minix/inode.c
12 *
13 * Copyright (C) 1991, 1992 Linus Torvalds
14 *
Dave Kleikampac27a0e2006-10-11 01:20:50 -070015 * 64-bit file support on 64-bit platforms by Jakub Jelinek
16 * (jj@sunsite.ms.mff.cuni.cz)
17 *
Mingming Cao617ba132006-10-11 01:20:53 -070018 * Assorted race fixes, rewrite of ext4_get_block() by Al Viro, 2000
Dave Kleikampac27a0e2006-10-11 01:20:50 -070019 */
20
Dave Kleikampac27a0e2006-10-11 01:20:50 -070021#include <linux/fs.h>
22#include <linux/time.h>
Dave Kleikampac27a0e2006-10-11 01:20:50 -070023#include <linux/highuid.h>
24#include <linux/pagemap.h>
25#include <linux/quotaops.h>
26#include <linux/string.h>
27#include <linux/buffer_head.h>
28#include <linux/writeback.h>
Alex Tomas64769242008-07-11 19:27:31 -040029#include <linux/pagevec.h>
Dave Kleikampac27a0e2006-10-11 01:20:50 -070030#include <linux/mpage.h>
Duane Griffine83c1392008-12-19 20:47:15 +000031#include <linux/namei.h>
Dave Kleikampac27a0e2006-10-11 01:20:50 -070032#include <linux/uio.h>
33#include <linux/bio.h>
Mingming Cao4c0425f2009-09-28 15:48:41 -040034#include <linux/workqueue.h>
Jiaying Zhang744692d2010-03-04 16:14:02 -050035#include <linux/kernel.h>
Andrew Morton6db26ff2011-01-12 16:59:13 -080036#include <linux/printk.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090037#include <linux/slab.h>
Theodore Ts'o00a1a052014-03-30 10:20:01 -040038#include <linux/bitops.h>
Theodore Ts'o9bffad12009-06-17 11:48:11 -040039
Christoph Hellwig3dcf5452008-04-29 18:13:32 -040040#include "ext4_jbd2.h"
Dave Kleikampac27a0e2006-10-11 01:20:50 -070041#include "xattr.h"
42#include "acl.h"
Theodore Ts'o9f125d62011-06-27 19:16:04 -040043#include "truncate.h"
Dave Kleikampac27a0e2006-10-11 01:20:50 -070044
Theodore Ts'o9bffad12009-06-17 11:48:11 -040045#include <trace/events/ext4.h>
46
Aneesh Kumar K.Va1d6cc52008-08-19 21:55:02 -040047#define MPAGE_DA_EXTENT_TAIL 0x01
48
Darrick J. Wong814525f2012-04-29 18:31:10 -040049static __u32 ext4_inode_csum(struct inode *inode, struct ext4_inode *raw,
50 struct ext4_inode_info *ei)
51{
52 struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb);
53 __u16 csum_lo;
54 __u16 csum_hi = 0;
55 __u32 csum;
56
Dmitry Monakhov171a7f22013-04-09 23:56:48 -040057 csum_lo = le16_to_cpu(raw->i_checksum_lo);
Darrick J. Wong814525f2012-04-29 18:31:10 -040058 raw->i_checksum_lo = 0;
59 if (EXT4_INODE_SIZE(inode->i_sb) > EXT4_GOOD_OLD_INODE_SIZE &&
60 EXT4_FITS_IN_INODE(raw, ei, i_checksum_hi)) {
Dmitry Monakhov171a7f22013-04-09 23:56:48 -040061 csum_hi = le16_to_cpu(raw->i_checksum_hi);
Darrick J. Wong814525f2012-04-29 18:31:10 -040062 raw->i_checksum_hi = 0;
63 }
64
65 csum = ext4_chksum(sbi, ei->i_csum_seed, (__u8 *)raw,
66 EXT4_INODE_SIZE(inode->i_sb));
67
Dmitry Monakhov171a7f22013-04-09 23:56:48 -040068 raw->i_checksum_lo = cpu_to_le16(csum_lo);
Darrick J. Wong814525f2012-04-29 18:31:10 -040069 if (EXT4_INODE_SIZE(inode->i_sb) > EXT4_GOOD_OLD_INODE_SIZE &&
70 EXT4_FITS_IN_INODE(raw, ei, i_checksum_hi))
Dmitry Monakhov171a7f22013-04-09 23:56:48 -040071 raw->i_checksum_hi = cpu_to_le16(csum_hi);
Darrick J. Wong814525f2012-04-29 18:31:10 -040072
73 return csum;
74}
75
76static int ext4_inode_csum_verify(struct inode *inode, struct ext4_inode *raw,
77 struct ext4_inode_info *ei)
78{
79 __u32 provided, calculated;
80
81 if (EXT4_SB(inode->i_sb)->s_es->s_creator_os !=
82 cpu_to_le32(EXT4_OS_LINUX) ||
Dmitry Monakhov9aa5d322014-10-13 03:36:16 -040083 !ext4_has_metadata_csum(inode->i_sb))
Darrick J. Wong814525f2012-04-29 18:31:10 -040084 return 1;
85
86 provided = le16_to_cpu(raw->i_checksum_lo);
87 calculated = ext4_inode_csum(inode, raw, ei);
88 if (EXT4_INODE_SIZE(inode->i_sb) > EXT4_GOOD_OLD_INODE_SIZE &&
89 EXT4_FITS_IN_INODE(raw, ei, i_checksum_hi))
90 provided |= ((__u32)le16_to_cpu(raw->i_checksum_hi)) << 16;
91 else
92 calculated &= 0xFFFF;
93
94 return provided == calculated;
95}
96
97static void ext4_inode_csum_set(struct inode *inode, struct ext4_inode *raw,
98 struct ext4_inode_info *ei)
99{
100 __u32 csum;
101
102 if (EXT4_SB(inode->i_sb)->s_es->s_creator_os !=
103 cpu_to_le32(EXT4_OS_LINUX) ||
Dmitry Monakhov9aa5d322014-10-13 03:36:16 -0400104 !ext4_has_metadata_csum(inode->i_sb))
Darrick J. Wong814525f2012-04-29 18:31:10 -0400105 return;
106
107 csum = ext4_inode_csum(inode, raw, ei);
108 raw->i_checksum_lo = cpu_to_le16(csum & 0xFFFF);
109 if (EXT4_INODE_SIZE(inode->i_sb) > EXT4_GOOD_OLD_INODE_SIZE &&
110 EXT4_FITS_IN_INODE(raw, ei, i_checksum_hi))
111 raw->i_checksum_hi = cpu_to_le16(csum >> 16);
112}
113
Jan Kara678aaf42008-07-11 19:27:31 -0400114static inline int ext4_begin_ordered_truncate(struct inode *inode,
115 loff_t new_size)
116{
Theodore Ts'o7ff9c072010-11-08 13:51:33 -0500117 trace_ext4_begin_ordered_truncate(inode, new_size);
Theodore Ts'o8aefcd52011-01-10 12:29:43 -0500118 /*
119 * If jinode is zero, then we never opened the file for
120 * writing, so there's no need to call
121 * jbd2_journal_begin_ordered_truncate() since there's no
122 * outstanding writes we need to flush.
123 */
124 if (!EXT4_I(inode)->jinode)
125 return 0;
126 return jbd2_journal_begin_ordered_truncate(EXT4_JOURNAL(inode),
127 EXT4_I(inode)->jinode,
128 new_size);
Jan Kara678aaf42008-07-11 19:27:31 -0400129}
130
Lukas Czernerd47992f2013-05-21 23:17:23 -0400131static void ext4_invalidatepage(struct page *page, unsigned int offset,
132 unsigned int length);
Theodore Ts'ocb20d512010-10-27 21:30:09 -0400133static int __ext4_journalled_writepage(struct page *page, unsigned int len);
134static int ext4_bh_delay_or_unwritten(handle_t *handle, struct buffer_head *bh);
Jan Karafffb2732013-06-04 13:01:11 -0400135static int ext4_meta_trans_blocks(struct inode *inode, int lblocks,
136 int pextents);
Alex Tomas64769242008-07-11 19:27:31 -0400137
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700138/*
139 * Test whether an inode is a fast symlink.
140 */
Theodore Ts'of348c252015-04-16 01:55:00 -0400141int ext4_inode_is_fast_symlink(struct inode *inode)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700142{
Yongqiang Yang65eddb52014-01-06 14:06:18 -0500143 int ea_blocks = EXT4_I(inode)->i_file_acl ?
144 EXT4_CLUSTER_SIZE(inode->i_sb) >> 9 : 0;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700145
Zheng Liubd9db172014-06-02 10:48:22 -0400146 if (ext4_has_inline_data(inode))
147 return 0;
148
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700149 return (S_ISLNK(inode->i_mode) && inode->i_blocks - ea_blocks == 0);
150}
151
152/*
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700153 * Restart the transaction associated with *handle. This does a commit,
154 * so before we call here everything must be consistently dirtied against
155 * this transaction.
156 */
Aneesh Kumar K.Vfa5d1112009-11-02 18:50:49 -0500157int ext4_truncate_restart_trans(handle_t *handle, struct inode *inode,
Jan Kara487caee2009-08-17 22:17:20 -0400158 int nblocks)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700159{
Jan Kara487caee2009-08-17 22:17:20 -0400160 int ret;
161
162 /*
Theodore Ts'oe35fd662010-05-16 19:00:00 -0400163 * Drop i_data_sem to avoid deadlock with ext4_map_blocks. At this
Jan Kara487caee2009-08-17 22:17:20 -0400164 * moment, get_block can be called only for blocks inside i_size since
165 * page cache has been already dropped and writes are blocked by
166 * i_mutex. So we can safely drop the i_data_sem here.
167 */
Frank Mayhar03901312009-01-07 00:06:22 -0500168 BUG_ON(EXT4_JOURNAL(inode) == NULL);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700169 jbd_debug(2, "restarting handle %p\n", handle);
Jan Kara487caee2009-08-17 22:17:20 -0400170 up_write(&EXT4_I(inode)->i_data_sem);
Amir Goldstein8e8eaab2011-02-27 23:32:12 -0500171 ret = ext4_journal_restart(handle, nblocks);
Jan Kara487caee2009-08-17 22:17:20 -0400172 down_write(&EXT4_I(inode)->i_data_sem);
Aneesh Kumar K.Vfa5d1112009-11-02 18:50:49 -0500173 ext4_discard_preallocations(inode);
Jan Kara487caee2009-08-17 22:17:20 -0400174
175 return ret;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700176}
177
178/*
179 * Called at the last iput() if i_nlink is zero.
180 */
Al Viro0930fcc2010-06-07 13:16:22 -0400181void ext4_evict_inode(struct inode *inode)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700182{
183 handle_t *handle;
Theodore Ts'obc965ab2008-08-02 21:10:38 -0400184 int err;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700185
Theodore Ts'o7ff9c072010-11-08 13:51:33 -0500186 trace_ext4_evict_inode(inode);
Jiaying Zhang2581fdc2011-08-13 12:17:13 -0400187
Al Viro0930fcc2010-06-07 13:16:22 -0400188 if (inode->i_nlink) {
Jan Kara2d859db2011-07-26 09:07:11 -0400189 /*
190 * When journalling data dirty buffers are tracked only in the
191 * journal. So although mm thinks everything is clean and
192 * ready for reaping the inode might still have some pages to
193 * write in the running transaction or waiting to be
194 * checkpointed. Thus calling jbd2_journal_invalidatepage()
195 * (via truncate_inode_pages()) to discard these buffers can
196 * cause data loss. Also even if we did not discard these
197 * buffers, we would have no way to find them after the inode
198 * is reaped and thus user could see stale data if he tries to
199 * read them before the transaction is checkpointed. So be
200 * careful and force everything to disk here... We use
201 * ei->i_datasync_tid to store the newest transaction
202 * containing inode's data.
203 *
204 * Note that directories do not have this problem because they
205 * don't use page cache.
206 */
207 if (ext4_should_journal_data(inode) &&
Theodore Ts'o2b405bf2013-03-20 09:42:11 -0400208 (S_ISLNK(inode->i_mode) || S_ISREG(inode->i_mode)) &&
209 inode->i_ino != EXT4_JOURNAL_INO) {
Jan Kara2d859db2011-07-26 09:07:11 -0400210 journal_t *journal = EXT4_SB(inode->i_sb)->s_journal;
211 tid_t commit_tid = EXT4_I(inode)->i_datasync_tid;
212
Theodore Ts'od76a3a772013-04-03 22:02:52 -0400213 jbd2_complete_transaction(journal, commit_tid);
Jan Kara2d859db2011-07-26 09:07:11 -0400214 filemap_write_and_wait(&inode->i_data);
215 }
Johannes Weiner91b0abe2014-04-03 14:47:49 -0700216 truncate_inode_pages_final(&inode->i_data);
Jan Kara5dc23bd2013-06-04 14:46:12 -0400217
218 WARN_ON(atomic_read(&EXT4_I(inode)->i_ioend_count));
Al Viro0930fcc2010-06-07 13:16:22 -0400219 goto no_delete;
220 }
221
Theodore Ts'oe2bfb082014-10-05 22:47:07 -0400222 if (is_bad_inode(inode))
223 goto no_delete;
224 dquot_initialize(inode);
Christoph Hellwig907f4552010-03-03 09:05:06 -0500225
Jan Kara678aaf42008-07-11 19:27:31 -0400226 if (ext4_should_order_data(inode))
227 ext4_begin_ordered_truncate(inode, 0);
Johannes Weiner91b0abe2014-04-03 14:47:49 -0700228 truncate_inode_pages_final(&inode->i_data);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700229
Jan Kara5dc23bd2013-06-04 14:46:12 -0400230 WARN_ON(atomic_read(&EXT4_I(inode)->i_ioend_count));
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700231
Jan Kara8e8ad8a2012-06-12 16:20:38 +0200232 /*
233 * Protect us against freezing - iput() caller didn't have to have any
234 * protection against it
235 */
236 sb_start_intwrite(inode->i_sb);
Theodore Ts'o9924a922013-02-08 21:59:22 -0500237 handle = ext4_journal_start(inode, EXT4_HT_TRUNCATE,
238 ext4_blocks_for_truncate(inode)+3);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700239 if (IS_ERR(handle)) {
Theodore Ts'obc965ab2008-08-02 21:10:38 -0400240 ext4_std_error(inode->i_sb, PTR_ERR(handle));
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700241 /*
242 * If we're going to skip the normal cleanup, we still need to
243 * make sure that the in-core orphan linked list is properly
244 * cleaned up.
245 */
Mingming Cao617ba132006-10-11 01:20:53 -0700246 ext4_orphan_del(NULL, inode);
Jan Kara8e8ad8a2012-06-12 16:20:38 +0200247 sb_end_intwrite(inode->i_sb);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700248 goto no_delete;
249 }
250
251 if (IS_SYNC(inode))
Frank Mayhar03901312009-01-07 00:06:22 -0500252 ext4_handle_sync(handle);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700253 inode->i_size = 0;
Theodore Ts'obc965ab2008-08-02 21:10:38 -0400254 err = ext4_mark_inode_dirty(handle, inode);
255 if (err) {
Eric Sandeen12062dd2010-02-15 14:19:27 -0500256 ext4_warning(inode->i_sb,
Theodore Ts'obc965ab2008-08-02 21:10:38 -0400257 "couldn't mark inode dirty (err %d)", err);
258 goto stop_handle;
259 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700260 if (inode->i_blocks)
Mingming Cao617ba132006-10-11 01:20:53 -0700261 ext4_truncate(inode);
Theodore Ts'obc965ab2008-08-02 21:10:38 -0400262
263 /*
264 * ext4_ext_truncate() doesn't reserve any slop when it
265 * restarts journal transactions; therefore there may not be
266 * enough credits left in the handle to remove the inode from
267 * the orphan list and set the dtime field.
268 */
Frank Mayhar03901312009-01-07 00:06:22 -0500269 if (!ext4_handle_has_enough_credits(handle, 3)) {
Theodore Ts'obc965ab2008-08-02 21:10:38 -0400270 err = ext4_journal_extend(handle, 3);
271 if (err > 0)
272 err = ext4_journal_restart(handle, 3);
273 if (err != 0) {
Eric Sandeen12062dd2010-02-15 14:19:27 -0500274 ext4_warning(inode->i_sb,
Theodore Ts'obc965ab2008-08-02 21:10:38 -0400275 "couldn't extend journal (err %d)", err);
276 stop_handle:
277 ext4_journal_stop(handle);
Theodore Ts'o45388212010-07-29 15:06:10 -0400278 ext4_orphan_del(NULL, inode);
Jan Kara8e8ad8a2012-06-12 16:20:38 +0200279 sb_end_intwrite(inode->i_sb);
Theodore Ts'obc965ab2008-08-02 21:10:38 -0400280 goto no_delete;
281 }
282 }
283
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700284 /*
Mingming Cao617ba132006-10-11 01:20:53 -0700285 * Kill off the orphan record which ext4_truncate created.
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700286 * AKPM: I think this can be inside the above `if'.
Mingming Cao617ba132006-10-11 01:20:53 -0700287 * Note that ext4_orphan_del() has to be able to cope with the
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700288 * deletion of a non-existent orphan - this is because we don't
Mingming Cao617ba132006-10-11 01:20:53 -0700289 * know if ext4_truncate() actually created an orphan record.
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700290 * (Well, we could do this if we need to, but heck - it works)
291 */
Mingming Cao617ba132006-10-11 01:20:53 -0700292 ext4_orphan_del(handle, inode);
293 EXT4_I(inode)->i_dtime = get_seconds();
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700294
295 /*
296 * One subtle ordering requirement: if anything has gone wrong
297 * (transaction abort, IO errors, whatever), then we can still
298 * do these next steps (the fs will already have been marked as
299 * having errors), but we can't free the inode if the mark_dirty
300 * fails.
301 */
Mingming Cao617ba132006-10-11 01:20:53 -0700302 if (ext4_mark_inode_dirty(handle, inode))
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700303 /* If that failed, just do the required in-core inode clear. */
Al Viro0930fcc2010-06-07 13:16:22 -0400304 ext4_clear_inode(inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700305 else
Mingming Cao617ba132006-10-11 01:20:53 -0700306 ext4_free_inode(handle, inode);
307 ext4_journal_stop(handle);
Jan Kara8e8ad8a2012-06-12 16:20:38 +0200308 sb_end_intwrite(inode->i_sb);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700309 return;
310no_delete:
Al Viro0930fcc2010-06-07 13:16:22 -0400311 ext4_clear_inode(inode); /* We must guarantee clearing of inode... */
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700312}
313
Dmitry Monakhova9e7f442009-12-14 15:21:14 +0300314#ifdef CONFIG_QUOTA
315qsize_t *ext4_get_reserved_space(struct inode *inode)
Mingming Cao60e58e02009-01-22 18:13:05 +0100316{
Dmitry Monakhova9e7f442009-12-14 15:21:14 +0300317 return &EXT4_I(inode)->i_reserved_quota;
Mingming Cao60e58e02009-01-22 18:13:05 +0100318}
Dmitry Monakhova9e7f442009-12-14 15:21:14 +0300319#endif
Theodore Ts'o9d0be502010-01-01 02:41:30 -0500320
Aneesh Kumar K.V12219ae2008-07-17 16:12:08 -0400321/*
Theodore Ts'o0637c6f2009-12-30 14:20:45 -0500322 * Called with i_data_sem down, which is important since we can call
323 * ext4_discard_preallocations() from here.
324 */
Aneesh Kumar K.V5f634d02010-01-25 04:00:31 -0500325void ext4_da_update_reserve_space(struct inode *inode,
326 int used, int quota_claim)
Aneesh Kumar K.V12219ae2008-07-17 16:12:08 -0400327{
328 struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb);
Theodore Ts'o0637c6f2009-12-30 14:20:45 -0500329 struct ext4_inode_info *ei = EXT4_I(inode);
Aneesh Kumar K.V12219ae2008-07-17 16:12:08 -0400330
Theodore Ts'o0637c6f2009-12-30 14:20:45 -0500331 spin_lock(&ei->i_block_reservation_lock);
Aditya Kalid8990242011-09-09 19:18:51 -0400332 trace_ext4_da_update_reserve_space(inode, used, quota_claim);
Theodore Ts'o0637c6f2009-12-30 14:20:45 -0500333 if (unlikely(used > ei->i_reserved_data_blocks)) {
Theodore Ts'o8de5c322013-02-14 15:11:41 -0500334 ext4_warning(inode->i_sb, "%s: ino %lu, used %d "
Theodore Ts'o1084f252012-03-19 23:13:43 -0400335 "with only %d reserved data blocks",
Theodore Ts'o0637c6f2009-12-30 14:20:45 -0500336 __func__, inode->i_ino, used,
337 ei->i_reserved_data_blocks);
338 WARN_ON(1);
339 used = ei->i_reserved_data_blocks;
Aneesh Kumar K.V6bc6e632008-10-10 09:39:00 -0400340 }
Aneesh Kumar K.V12219ae2008-07-17 16:12:08 -0400341
Theodore Ts'o0637c6f2009-12-30 14:20:45 -0500342 /* Update per-inode reservations */
343 ei->i_reserved_data_blocks -= used;
Theodore Ts'o71d4f7d2014-07-15 06:02:38 -0400344 percpu_counter_sub(&sbi->s_dirtyclusters_counter, used);
Theodore Ts'o0637c6f2009-12-30 14:20:45 -0500345
Aneesh Kumar K.V12219ae2008-07-17 16:12:08 -0400346 spin_unlock(&EXT4_I(inode)->i_block_reservation_lock);
Mingming Cao60e58e02009-01-22 18:13:05 +0100347
Eric Sandeen72b8ab92010-05-16 11:00:00 -0400348 /* Update quota subsystem for data blocks */
349 if (quota_claim)
Aditya Kali7b415bf2011-09-09 19:04:51 -0400350 dquot_claim_block(inode, EXT4_C2B(sbi, used));
Eric Sandeen72b8ab92010-05-16 11:00:00 -0400351 else {
Aneesh Kumar K.V5f634d02010-01-25 04:00:31 -0500352 /*
353 * We did fallocate with an offset that is already delayed
354 * allocated. So on delayed allocated writeback we should
Eric Sandeen72b8ab92010-05-16 11:00:00 -0400355 * not re-claim the quota for fallocated blocks.
Aneesh Kumar K.V5f634d02010-01-25 04:00:31 -0500356 */
Aditya Kali7b415bf2011-09-09 19:04:51 -0400357 dquot_release_reservation_block(inode, EXT4_C2B(sbi, used));
Aneesh Kumar K.V5f634d02010-01-25 04:00:31 -0500358 }
Aneesh Kumar K.Vd6014302009-03-27 22:36:43 -0400359
360 /*
361 * If we have done all the pending block allocations and if
362 * there aren't any writers on the inode, we can discard the
363 * inode's preallocations.
364 */
Theodore Ts'o0637c6f2009-12-30 14:20:45 -0500365 if ((ei->i_reserved_data_blocks == 0) &&
366 (atomic_read(&inode->i_writecount) == 0))
Aneesh Kumar K.Vd6014302009-03-27 22:36:43 -0400367 ext4_discard_preallocations(inode);
Aneesh Kumar K.V12219ae2008-07-17 16:12:08 -0400368}
369
Theodore Ts'oe29136f2010-06-29 12:54:28 -0400370static int __check_block_validity(struct inode *inode, const char *func,
Theodore Ts'oc398eda2010-07-27 11:56:40 -0400371 unsigned int line,
372 struct ext4_map_blocks *map)
Theodore Ts'o6fd058f2009-05-17 15:38:01 -0400373{
Theodore Ts'o24676da2010-05-16 21:00:00 -0400374 if (!ext4_data_block_valid(EXT4_SB(inode->i_sb), map->m_pblk,
375 map->m_len)) {
Theodore Ts'oc398eda2010-07-27 11:56:40 -0400376 ext4_error_inode(inode, func, line, map->m_pblk,
377 "lblock %lu mapped to illegal pblock "
378 "(length %d)", (unsigned long) map->m_lblk,
379 map->m_len);
Theodore Ts'o6fd058f2009-05-17 15:38:01 -0400380 return -EIO;
381 }
382 return 0;
383}
384
Theodore Ts'oe29136f2010-06-29 12:54:28 -0400385#define check_block_validity(inode, map) \
Theodore Ts'oc398eda2010-07-27 11:56:40 -0400386 __check_block_validity((inode), __func__, __LINE__, (map))
Theodore Ts'oe29136f2010-06-29 12:54:28 -0400387
Dmitry Monakhov921f2662013-03-10 21:01:03 -0400388#ifdef ES_AGGRESSIVE_TEST
389static void ext4_map_blocks_es_recheck(handle_t *handle,
390 struct inode *inode,
391 struct ext4_map_blocks *es_map,
392 struct ext4_map_blocks *map,
393 int flags)
394{
395 int retval;
396
397 map->m_flags = 0;
398 /*
399 * There is a race window that the result is not the same.
400 * e.g. xfstests #223 when dioread_nolock enables. The reason
401 * is that we lookup a block mapping in extent status tree with
402 * out taking i_data_sem. So at the time the unwritten extent
403 * could be converted.
404 */
405 if (!(flags & EXT4_GET_BLOCKS_NO_LOCK))
Lukas Czernerc8b459f2014-05-12 12:55:07 -0400406 down_read(&EXT4_I(inode)->i_data_sem);
Dmitry Monakhov921f2662013-03-10 21:01:03 -0400407 if (ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS)) {
408 retval = ext4_ext_map_blocks(handle, inode, map, flags &
409 EXT4_GET_BLOCKS_KEEP_SIZE);
410 } else {
411 retval = ext4_ind_map_blocks(handle, inode, map, flags &
412 EXT4_GET_BLOCKS_KEEP_SIZE);
413 }
414 if (!(flags & EXT4_GET_BLOCKS_NO_LOCK))
415 up_read((&EXT4_I(inode)->i_data_sem));
Dmitry Monakhov921f2662013-03-10 21:01:03 -0400416
417 /*
418 * We don't check m_len because extent will be collpased in status
419 * tree. So the m_len might not equal.
420 */
421 if (es_map->m_lblk != map->m_lblk ||
422 es_map->m_flags != map->m_flags ||
423 es_map->m_pblk != map->m_pblk) {
Theodore Ts'obdafe422013-07-13 00:40:31 -0400424 printk("ES cache assertion failed for inode: %lu "
Dmitry Monakhov921f2662013-03-10 21:01:03 -0400425 "es_cached ex [%d/%d/%llu/%x] != "
426 "found ex [%d/%d/%llu/%x] retval %d flags %x\n",
427 inode->i_ino, es_map->m_lblk, es_map->m_len,
428 es_map->m_pblk, es_map->m_flags, map->m_lblk,
429 map->m_len, map->m_pblk, map->m_flags,
430 retval, flags);
431 }
432}
433#endif /* ES_AGGRESSIVE_TEST */
434
Theodore Ts'o55138e02009-09-29 13:31:31 -0400435/*
Theodore Ts'oe35fd662010-05-16 19:00:00 -0400436 * The ext4_map_blocks() function tries to look up the requested blocks,
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -0400437 * and returns if the blocks are already mapped.
Mingming Caof5ab0d12008-02-25 15:29:55 -0500438 *
Mingming Caof5ab0d12008-02-25 15:29:55 -0500439 * Otherwise it takes the write lock of the i_data_sem and allocate blocks
440 * and store the allocated blocks in the result buffer head and mark it
441 * mapped.
442 *
Theodore Ts'oe35fd662010-05-16 19:00:00 -0400443 * If file type is extents based, it will call ext4_ext_map_blocks(),
444 * Otherwise, call with ext4_ind_map_blocks() to handle indirect mapping
Mingming Caof5ab0d12008-02-25 15:29:55 -0500445 * based files
446 *
Lukas Czerner556615d2014-04-20 23:45:47 -0400447 * On success, it returns the number of blocks being mapped or allocated.
448 * if create==0 and the blocks are pre-allocated and unwritten block,
Mingming Caof5ab0d12008-02-25 15:29:55 -0500449 * the result buffer head is unmapped. If the create ==1, it will make sure
450 * the buffer head is mapped.
451 *
452 * It returns 0 if plain look up failed (blocks have not been allocated), in
Tao Madf3ab172011-10-08 15:53:49 -0400453 * that case, buffer head is unmapped
Mingming Caof5ab0d12008-02-25 15:29:55 -0500454 *
455 * It returns the error in case of allocation failure.
456 */
Theodore Ts'oe35fd662010-05-16 19:00:00 -0400457int ext4_map_blocks(handle_t *handle, struct inode *inode,
458 struct ext4_map_blocks *map, int flags)
Aneesh Kumar K.V0e855ac2008-01-28 23:58:26 -0500459{
Zheng Liud100eef2013-02-18 00:29:59 -0500460 struct extent_status es;
Aneesh Kumar K.V0e855ac2008-01-28 23:58:26 -0500461 int retval;
Lukas Czernerb8a86842014-03-18 18:05:35 -0400462 int ret = 0;
Dmitry Monakhov921f2662013-03-10 21:01:03 -0400463#ifdef ES_AGGRESSIVE_TEST
464 struct ext4_map_blocks orig_map;
465
466 memcpy(&orig_map, map, sizeof(*map));
467#endif
Mingming Caof5ab0d12008-02-25 15:29:55 -0500468
Theodore Ts'oe35fd662010-05-16 19:00:00 -0400469 map->m_flags = 0;
470 ext_debug("ext4_map_blocks(): inode %lu, flag %d, max_blocks %u,"
471 "logical block %lu\n", inode->i_ino, flags, map->m_len,
472 (unsigned long) map->m_lblk);
Zheng Liud100eef2013-02-18 00:29:59 -0500473
Theodore Ts'oe861b5e2014-02-20 12:54:05 -0500474 /*
475 * ext4_map_blocks returns an int, and m_len is an unsigned int
476 */
477 if (unlikely(map->m_len > INT_MAX))
478 map->m_len = INT_MAX;
479
Kazuya Mio4adb6ab2014-04-07 10:53:28 -0400480 /* We can handle the block number less than EXT_MAX_BLOCKS */
481 if (unlikely(map->m_lblk >= EXT_MAX_BLOCKS))
482 return -EIO;
483
Zheng Liud100eef2013-02-18 00:29:59 -0500484 /* Lookup extent status tree firstly */
485 if (ext4_es_lookup_extent(inode, map->m_lblk, &es)) {
486 if (ext4_es_is_written(&es) || ext4_es_is_unwritten(&es)) {
487 map->m_pblk = ext4_es_pblock(&es) +
488 map->m_lblk - es.es_lblk;
489 map->m_flags |= ext4_es_is_written(&es) ?
490 EXT4_MAP_MAPPED : EXT4_MAP_UNWRITTEN;
491 retval = es.es_len - (map->m_lblk - es.es_lblk);
492 if (retval > map->m_len)
493 retval = map->m_len;
494 map->m_len = retval;
495 } else if (ext4_es_is_delayed(&es) || ext4_es_is_hole(&es)) {
496 retval = 0;
497 } else {
498 BUG_ON(1);
499 }
Dmitry Monakhov921f2662013-03-10 21:01:03 -0400500#ifdef ES_AGGRESSIVE_TEST
501 ext4_map_blocks_es_recheck(handle, inode, map,
502 &orig_map, flags);
503#endif
Zheng Liud100eef2013-02-18 00:29:59 -0500504 goto found;
505 }
506
Aneesh Kumar K.V4df3d262008-01-28 23:58:29 -0500507 /*
Theodore Ts'ob920c752009-05-14 00:54:29 -0400508 * Try to see if we can get the block without requesting a new
509 * file system block.
Aneesh Kumar K.V4df3d262008-01-28 23:58:29 -0500510 */
Zheng Liu729f52c2012-07-09 16:29:29 -0400511 if (!(flags & EXT4_GET_BLOCKS_NO_LOCK))
Lukas Czernerc8b459f2014-05-12 12:55:07 -0400512 down_read(&EXT4_I(inode)->i_data_sem);
Dmitry Monakhov12e9b892010-05-16 22:00:00 -0400513 if (ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS)) {
Dmitry Monakhova4e5d882011-10-25 08:15:12 -0400514 retval = ext4_ext_map_blocks(handle, inode, map, flags &
515 EXT4_GET_BLOCKS_KEEP_SIZE);
Aneesh Kumar K.V0e855ac2008-01-28 23:58:26 -0500516 } else {
Dmitry Monakhova4e5d882011-10-25 08:15:12 -0400517 retval = ext4_ind_map_blocks(handle, inode, map, flags &
518 EXT4_GET_BLOCKS_KEEP_SIZE);
Aneesh Kumar K.V0e855ac2008-01-28 23:58:26 -0500519 }
Zheng Liuf7fec032013-02-18 00:28:47 -0500520 if (retval > 0) {
Theodore Ts'o3be78c72013-08-16 21:22:41 -0400521 unsigned int status;
Zheng Liuf7fec032013-02-18 00:28:47 -0500522
Zheng Liu44fb851d2013-07-29 12:51:42 -0400523 if (unlikely(retval != map->m_len)) {
524 ext4_warning(inode->i_sb,
525 "ES len assertion failed for inode "
526 "%lu: retval %d != map->m_len %d",
527 inode->i_ino, retval, map->m_len);
528 WARN_ON(1);
Dmitry Monakhov921f2662013-03-10 21:01:03 -0400529 }
Dmitry Monakhov921f2662013-03-10 21:01:03 -0400530
Zheng Liuf7fec032013-02-18 00:28:47 -0500531 status = map->m_flags & EXT4_MAP_UNWRITTEN ?
532 EXTENT_STATUS_UNWRITTEN : EXTENT_STATUS_WRITTEN;
533 if (!(flags & EXT4_GET_BLOCKS_DELALLOC_RESERVE) &&
Lukas Czernerd2dc3172015-05-02 21:36:55 -0400534 !(status & EXTENT_STATUS_WRITTEN) &&
Zheng Liuf7fec032013-02-18 00:28:47 -0500535 ext4_find_delalloc_range(inode, map->m_lblk,
536 map->m_lblk + map->m_len - 1))
537 status |= EXTENT_STATUS_DELAYED;
538 ret = ext4_es_insert_extent(inode, map->m_lblk,
539 map->m_len, map->m_pblk, status);
540 if (ret < 0)
541 retval = ret;
542 }
Zheng Liu729f52c2012-07-09 16:29:29 -0400543 if (!(flags & EXT4_GET_BLOCKS_NO_LOCK))
544 up_read((&EXT4_I(inode)->i_data_sem));
Mingming Caof5ab0d12008-02-25 15:29:55 -0500545
Zheng Liud100eef2013-02-18 00:29:59 -0500546found:
Theodore Ts'oe35fd662010-05-16 19:00:00 -0400547 if (retval > 0 && map->m_flags & EXT4_MAP_MAPPED) {
Lukas Czernerb8a86842014-03-18 18:05:35 -0400548 ret = check_block_validity(inode, map);
Theodore Ts'o6fd058f2009-05-17 15:38:01 -0400549 if (ret != 0)
550 return ret;
551 }
552
Mingming Caof5ab0d12008-02-25 15:29:55 -0500553 /* If it is only a block(s) look up */
Theodore Ts'oc2177052009-05-14 00:58:52 -0400554 if ((flags & EXT4_GET_BLOCKS_CREATE) == 0)
Aneesh Kumar K.V4df3d262008-01-28 23:58:29 -0500555 return retval;
556
557 /*
Mingming Caof5ab0d12008-02-25 15:29:55 -0500558 * Returns if the blocks have already allocated
559 *
560 * Note that if blocks have been preallocated
Tao Madf3ab172011-10-08 15:53:49 -0400561 * ext4_ext_get_block() returns the create = 0
Mingming Caof5ab0d12008-02-25 15:29:55 -0500562 * with buffer head unmapped.
563 */
Theodore Ts'oe35fd662010-05-16 19:00:00 -0400564 if (retval > 0 && map->m_flags & EXT4_MAP_MAPPED)
Lukas Czernerb8a86842014-03-18 18:05:35 -0400565 /*
566 * If we need to convert extent to unwritten
567 * we continue and do the actual work in
568 * ext4_ext_map_blocks()
569 */
570 if (!(flags & EXT4_GET_BLOCKS_CONVERT_UNWRITTEN))
571 return retval;
Mingming Caof5ab0d12008-02-25 15:29:55 -0500572
573 /*
Zheng Liua25a4e12013-02-18 00:28:04 -0500574 * Here we clear m_flags because after allocating an new extent,
575 * it will be set again.
Aneesh Kumar K.V2a8964d2009-05-14 17:05:39 -0400576 */
Zheng Liua25a4e12013-02-18 00:28:04 -0500577 map->m_flags &= ~EXT4_MAP_FLAGS;
Aneesh Kumar K.V2a8964d2009-05-14 17:05:39 -0400578
579 /*
Lukas Czerner556615d2014-04-20 23:45:47 -0400580 * New blocks allocate and/or writing to unwritten extent
Mingming Caof5ab0d12008-02-25 15:29:55 -0500581 * will possibly result in updating i_data, so we take
Seunghun Leed91bd2c2014-09-01 22:15:30 -0400582 * the write lock of i_data_sem, and call get_block()
Mingming Caof5ab0d12008-02-25 15:29:55 -0500583 * with create == 1 flag.
Aneesh Kumar K.V4df3d262008-01-28 23:58:29 -0500584 */
Lukas Czernerc8b459f2014-05-12 12:55:07 -0400585 down_write(&EXT4_I(inode)->i_data_sem);
Mingming Caod2a17632008-07-14 17:52:37 -0400586
587 /*
Aneesh Kumar K.V4df3d262008-01-28 23:58:29 -0500588 * We need to check for EXT4 here because migrate
589 * could have changed the inode type in between
590 */
Dmitry Monakhov12e9b892010-05-16 22:00:00 -0400591 if (ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS)) {
Theodore Ts'oe35fd662010-05-16 19:00:00 -0400592 retval = ext4_ext_map_blocks(handle, inode, map, flags);
Aneesh Kumar K.V0e855ac2008-01-28 23:58:26 -0500593 } else {
Theodore Ts'oe35fd662010-05-16 19:00:00 -0400594 retval = ext4_ind_map_blocks(handle, inode, map, flags);
Aneesh Kumar K.V267e4db2008-04-29 08:11:12 -0400595
Theodore Ts'oe35fd662010-05-16 19:00:00 -0400596 if (retval > 0 && map->m_flags & EXT4_MAP_NEW) {
Aneesh Kumar K.V267e4db2008-04-29 08:11:12 -0400597 /*
598 * We allocated new blocks which will result in
599 * i_data's format changing. Force the migrate
600 * to fail by clearing migrate flags
601 */
Theodore Ts'o19f5fb72010-01-24 14:34:07 -0500602 ext4_clear_inode_state(inode, EXT4_STATE_EXT_MIGRATE);
Aneesh Kumar K.V267e4db2008-04-29 08:11:12 -0400603 }
Mingming Caod2a17632008-07-14 17:52:37 -0400604
Aneesh Kumar K.V5f634d02010-01-25 04:00:31 -0500605 /*
606 * Update reserved blocks/metadata blocks after successful
607 * block allocation which had been deferred till now. We don't
608 * support fallocate for non extent files. So we can update
609 * reserve space here.
610 */
611 if ((retval > 0) &&
Aneesh Kumar K.V1296cc82010-01-15 01:27:59 -0500612 (flags & EXT4_GET_BLOCKS_DELALLOC_RESERVE))
Aneesh Kumar K.V5f634d02010-01-25 04:00:31 -0500613 ext4_da_update_reserve_space(inode, retval, 1);
614 }
Theodore Ts'o2ac3b6e2009-05-14 13:57:08 -0400615
Zheng Liuf7fec032013-02-18 00:28:47 -0500616 if (retval > 0) {
Theodore Ts'o3be78c72013-08-16 21:22:41 -0400617 unsigned int status;
Zheng Liuf7fec032013-02-18 00:28:47 -0500618
Zheng Liu44fb851d2013-07-29 12:51:42 -0400619 if (unlikely(retval != map->m_len)) {
620 ext4_warning(inode->i_sb,
621 "ES len assertion failed for inode "
622 "%lu: retval %d != map->m_len %d",
623 inode->i_ino, retval, map->m_len);
624 WARN_ON(1);
Dmitry Monakhov921f2662013-03-10 21:01:03 -0400625 }
Dmitry Monakhov921f2662013-03-10 21:01:03 -0400626
Zheng Liuadb23552013-03-10 21:13:05 -0400627 /*
628 * If the extent has been zeroed out, we don't need to update
629 * extent status tree.
630 */
631 if ((flags & EXT4_GET_BLOCKS_PRE_IO) &&
632 ext4_es_lookup_extent(inode, map->m_lblk, &es)) {
633 if (ext4_es_is_written(&es))
634 goto has_zeroout;
635 }
Zheng Liuf7fec032013-02-18 00:28:47 -0500636 status = map->m_flags & EXT4_MAP_UNWRITTEN ?
637 EXTENT_STATUS_UNWRITTEN : EXTENT_STATUS_WRITTEN;
638 if (!(flags & EXT4_GET_BLOCKS_DELALLOC_RESERVE) &&
Lukas Czernerd2dc3172015-05-02 21:36:55 -0400639 !(status & EXTENT_STATUS_WRITTEN) &&
Zheng Liuf7fec032013-02-18 00:28:47 -0500640 ext4_find_delalloc_range(inode, map->m_lblk,
641 map->m_lblk + map->m_len - 1))
642 status |= EXTENT_STATUS_DELAYED;
643 ret = ext4_es_insert_extent(inode, map->m_lblk, map->m_len,
644 map->m_pblk, status);
645 if (ret < 0)
646 retval = ret;
Aditya Kali5356f262011-09-09 19:20:51 -0400647 }
648
Zheng Liuadb23552013-03-10 21:13:05 -0400649has_zeroout:
Aneesh Kumar K.V4df3d262008-01-28 23:58:29 -0500650 up_write((&EXT4_I(inode)->i_data_sem));
Theodore Ts'oe35fd662010-05-16 19:00:00 -0400651 if (retval > 0 && map->m_flags & EXT4_MAP_MAPPED) {
Lukas Czernerb8a86842014-03-18 18:05:35 -0400652 ret = check_block_validity(inode, map);
Theodore Ts'o6fd058f2009-05-17 15:38:01 -0400653 if (ret != 0)
654 return ret;
655 }
Aneesh Kumar K.V0e855ac2008-01-28 23:58:26 -0500656 return retval;
657}
658
Ross Zwisler923ae0f2015-02-16 15:59:38 -0800659static void ext4_end_io_unwritten(struct buffer_head *bh, int uptodate)
660{
661 struct inode *inode = bh->b_assoc_map->host;
662 /* XXX: breaks on 32-bit > 16GB. Is that even supported? */
663 loff_t offset = (loff_t)(uintptr_t)bh->b_private << inode->i_blkbits;
664 int err;
665 if (!uptodate)
666 return;
667 WARN_ON(!buffer_unwritten(bh));
668 err = ext4_convert_unwritten_extents(NULL, inode, offset, bh->b_size);
669}
670
Mingming Caof3bd1f32008-08-19 22:16:03 -0400671/* Maximum number of blocks we map for direct IO at once. */
672#define DIO_MAX_BLOCKS 4096
673
Theodore Ts'o2ed88682010-05-16 20:00:00 -0400674static int _ext4_get_block(struct inode *inode, sector_t iblock,
675 struct buffer_head *bh, int flags)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700676{
Dmitriy Monakhov3e4fdaf2007-02-10 01:46:35 -0800677 handle_t *handle = ext4_journal_current_handle();
Theodore Ts'o2ed88682010-05-16 20:00:00 -0400678 struct ext4_map_blocks map;
Jan Kara7fb54092008-02-10 01:08:38 -0500679 int ret = 0, started = 0;
Mingming Caof3bd1f32008-08-19 22:16:03 -0400680 int dio_credits;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700681
Tao Ma46c7f252012-12-10 14:04:52 -0500682 if (ext4_has_inline_data(inode))
683 return -ERANGE;
684
Theodore Ts'o2ed88682010-05-16 20:00:00 -0400685 map.m_lblk = iblock;
686 map.m_len = bh->b_size >> inode->i_blkbits;
687
Anatol Pomozov8b0f1652012-11-08 15:07:16 -0500688 if (flags && !(flags & EXT4_GET_BLOCKS_NO_LOCK) && !handle) {
Jan Kara7fb54092008-02-10 01:08:38 -0500689 /* Direct IO write... */
Theodore Ts'o2ed88682010-05-16 20:00:00 -0400690 if (map.m_len > DIO_MAX_BLOCKS)
691 map.m_len = DIO_MAX_BLOCKS;
692 dio_credits = ext4_chunk_trans_blocks(inode, map.m_len);
Theodore Ts'o9924a922013-02-08 21:59:22 -0500693 handle = ext4_journal_start(inode, EXT4_HT_MAP_BLOCKS,
694 dio_credits);
Jan Kara7fb54092008-02-10 01:08:38 -0500695 if (IS_ERR(handle)) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700696 ret = PTR_ERR(handle);
Theodore Ts'o2ed88682010-05-16 20:00:00 -0400697 return ret;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700698 }
Jan Kara7fb54092008-02-10 01:08:38 -0500699 started = 1;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700700 }
701
Theodore Ts'o2ed88682010-05-16 20:00:00 -0400702 ret = ext4_map_blocks(handle, inode, &map, flags);
Jan Kara7fb54092008-02-10 01:08:38 -0500703 if (ret > 0) {
Christoph Hellwig7b7a8662013-09-04 15:04:39 +0200704 ext4_io_end_t *io_end = ext4_inode_aio(inode);
705
Theodore Ts'o2ed88682010-05-16 20:00:00 -0400706 map_bh(bh, inode->i_sb, map.m_pblk);
707 bh->b_state = (bh->b_state & ~EXT4_MAP_FLAGS) | map.m_flags;
Ross Zwisler923ae0f2015-02-16 15:59:38 -0800708 if (IS_DAX(inode) && buffer_unwritten(bh) && !io_end) {
709 bh->b_assoc_map = inode->i_mapping;
710 bh->b_private = (void *)(unsigned long)iblock;
711 bh->b_end_io = ext4_end_io_unwritten;
712 }
Christoph Hellwig7b7a8662013-09-04 15:04:39 +0200713 if (io_end && io_end->flag & EXT4_IO_END_UNWRITTEN)
714 set_buffer_defer_completion(bh);
Theodore Ts'o2ed88682010-05-16 20:00:00 -0400715 bh->b_size = inode->i_sb->s_blocksize * map.m_len;
Jan Kara7fb54092008-02-10 01:08:38 -0500716 ret = 0;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700717 }
Jan Kara7fb54092008-02-10 01:08:38 -0500718 if (started)
719 ext4_journal_stop(handle);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700720 return ret;
721}
722
Theodore Ts'o2ed88682010-05-16 20:00:00 -0400723int ext4_get_block(struct inode *inode, sector_t iblock,
724 struct buffer_head *bh, int create)
725{
726 return _ext4_get_block(inode, iblock, bh,
727 create ? EXT4_GET_BLOCKS_CREATE : 0);
728}
729
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700730/*
731 * `handle' can be NULL if create is zero
732 */
Mingming Cao617ba132006-10-11 01:20:53 -0700733struct buffer_head *ext4_getblk(handle_t *handle, struct inode *inode,
Theodore Ts'oc5e298a2015-06-21 01:25:29 -0400734 ext4_lblk_t block, int map_flags)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700735{
Theodore Ts'o2ed88682010-05-16 20:00:00 -0400736 struct ext4_map_blocks map;
737 struct buffer_head *bh;
Theodore Ts'oc5e298a2015-06-21 01:25:29 -0400738 int create = map_flags & EXT4_GET_BLOCKS_CREATE;
Theodore Ts'o10560082014-08-29 20:51:32 -0400739 int err;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700740
741 J_ASSERT(handle != NULL || create == 0);
742
Theodore Ts'o2ed88682010-05-16 20:00:00 -0400743 map.m_lblk = block;
744 map.m_len = 1;
Theodore Ts'oc5e298a2015-06-21 01:25:29 -0400745 err = ext4_map_blocks(handle, inode, &map, map_flags);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700746
Theodore Ts'o10560082014-08-29 20:51:32 -0400747 if (err == 0)
748 return create ? ERR_PTR(-ENOSPC) : NULL;
Theodore Ts'o2ed88682010-05-16 20:00:00 -0400749 if (err < 0)
Theodore Ts'o10560082014-08-29 20:51:32 -0400750 return ERR_PTR(err);
Theodore Ts'o2ed88682010-05-16 20:00:00 -0400751
752 bh = sb_getblk(inode->i_sb, map.m_pblk);
Theodore Ts'o10560082014-08-29 20:51:32 -0400753 if (unlikely(!bh))
754 return ERR_PTR(-ENOMEM);
Theodore Ts'o2ed88682010-05-16 20:00:00 -0400755 if (map.m_flags & EXT4_MAP_NEW) {
756 J_ASSERT(create != 0);
757 J_ASSERT(handle != NULL);
758
759 /*
760 * Now that we do not always journal data, we should
761 * keep in mind whether this should always journal the
762 * new buffer as metadata. For now, regular file
763 * writes use ext4_get_block instead, so it's not a
764 * problem.
765 */
766 lock_buffer(bh);
767 BUFFER_TRACE(bh, "call get_create_access");
Theodore Ts'o10560082014-08-29 20:51:32 -0400768 err = ext4_journal_get_create_access(handle, bh);
769 if (unlikely(err)) {
770 unlock_buffer(bh);
771 goto errout;
772 }
773 if (!buffer_uptodate(bh)) {
Theodore Ts'o2ed88682010-05-16 20:00:00 -0400774 memset(bh->b_data, 0, inode->i_sb->s_blocksize);
775 set_buffer_uptodate(bh);
776 }
777 unlock_buffer(bh);
778 BUFFER_TRACE(bh, "call ext4_handle_dirty_metadata");
779 err = ext4_handle_dirty_metadata(handle, inode, bh);
Theodore Ts'o10560082014-08-29 20:51:32 -0400780 if (unlikely(err))
781 goto errout;
782 } else
Theodore Ts'o2ed88682010-05-16 20:00:00 -0400783 BUFFER_TRACE(bh, "not a new buffer");
Theodore Ts'o2ed88682010-05-16 20:00:00 -0400784 return bh;
Theodore Ts'o10560082014-08-29 20:51:32 -0400785errout:
786 brelse(bh);
787 return ERR_PTR(err);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700788}
789
Mingming Cao617ba132006-10-11 01:20:53 -0700790struct buffer_head *ext4_bread(handle_t *handle, struct inode *inode,
Theodore Ts'oc5e298a2015-06-21 01:25:29 -0400791 ext4_lblk_t block, int map_flags)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700792{
Theodore Ts'oaf5bc922008-09-08 22:25:24 -0400793 struct buffer_head *bh;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700794
Theodore Ts'oc5e298a2015-06-21 01:25:29 -0400795 bh = ext4_getblk(handle, inode, block, map_flags);
Theodore Ts'o1c215022014-08-29 20:52:15 -0400796 if (IS_ERR(bh))
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700797 return bh;
Theodore Ts'o1c215022014-08-29 20:52:15 -0400798 if (!bh || buffer_uptodate(bh))
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700799 return bh;
Christoph Hellwig65299a32011-08-23 14:50:29 +0200800 ll_rw_block(READ | REQ_META | REQ_PRIO, 1, &bh);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700801 wait_on_buffer(bh);
802 if (buffer_uptodate(bh))
803 return bh;
804 put_bh(bh);
Theodore Ts'o1c215022014-08-29 20:52:15 -0400805 return ERR_PTR(-EIO);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700806}
807
Tao Maf19d5872012-12-10 14:05:51 -0500808int ext4_walk_page_buffers(handle_t *handle,
809 struct buffer_head *head,
810 unsigned from,
811 unsigned to,
812 int *partial,
813 int (*fn)(handle_t *handle,
814 struct buffer_head *bh))
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700815{
816 struct buffer_head *bh;
817 unsigned block_start, block_end;
818 unsigned blocksize = head->b_size;
819 int err, ret = 0;
820 struct buffer_head *next;
821
Theodore Ts'oaf5bc922008-09-08 22:25:24 -0400822 for (bh = head, block_start = 0;
823 ret == 0 && (bh != head || !block_start);
Theodore Ts'ode9a55b2009-06-14 17:45:34 -0400824 block_start = block_end, bh = next) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700825 next = bh->b_this_page;
826 block_end = block_start + blocksize;
827 if (block_end <= from || block_start >= to) {
828 if (partial && !buffer_uptodate(bh))
829 *partial = 1;
830 continue;
831 }
832 err = (*fn)(handle, bh);
833 if (!ret)
834 ret = err;
835 }
836 return ret;
837}
838
839/*
840 * To preserve ordering, it is essential that the hole instantiation and
841 * the data write be encapsulated in a single transaction. We cannot
Mingming Cao617ba132006-10-11 01:20:53 -0700842 * close off a transaction and start a new one between the ext4_get_block()
Mingming Caodab291a2006-10-11 01:21:01 -0700843 * and the commit_write(). So doing the jbd2_journal_start at the start of
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700844 * prepare_write() is the right place.
845 *
Jan Kara36ade452013-01-28 09:30:52 -0500846 * Also, this function can nest inside ext4_writepage(). In that case, we
847 * *know* that ext4_writepage() has generated enough buffer credits to do the
848 * whole page. So we won't block on the journal in that case, which is good,
849 * because the caller may be PF_MEMALLOC.
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700850 *
Mingming Cao617ba132006-10-11 01:20:53 -0700851 * By accident, ext4 can be reentered when a transaction is open via
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700852 * quota file writes. If we were to commit the transaction while thus
853 * reentered, there can be a deadlock - we would be holding a quota
854 * lock, and the commit would never complete if another thread had a
855 * transaction open and was blocking on the quota lock - a ranking
856 * violation.
857 *
Mingming Caodab291a2006-10-11 01:21:01 -0700858 * So what we do is to rely on the fact that jbd2_journal_stop/journal_start
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700859 * will _not_ run commit under these circumstances because handle->h_ref
860 * is elevated. We'll still have enough credits for the tiny quotafile
861 * write.
862 */
Tao Maf19d5872012-12-10 14:05:51 -0500863int do_journal_get_write_access(handle_t *handle,
864 struct buffer_head *bh)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700865{
Jan Kara56d35a42010-08-05 14:41:42 -0400866 int dirty = buffer_dirty(bh);
867 int ret;
868
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700869 if (!buffer_mapped(bh) || buffer_freed(bh))
870 return 0;
Jan Kara56d35a42010-08-05 14:41:42 -0400871 /*
Christoph Hellwigebdec242010-10-06 10:47:23 +0200872 * __block_write_begin() could have dirtied some buffers. Clean
Jan Kara56d35a42010-08-05 14:41:42 -0400873 * the dirty bit as jbd2_journal_get_write_access() could complain
874 * otherwise about fs integrity issues. Setting of the dirty bit
Christoph Hellwigebdec242010-10-06 10:47:23 +0200875 * by __block_write_begin() isn't a real problem here as we clear
Jan Kara56d35a42010-08-05 14:41:42 -0400876 * the bit before releasing a page lock and thus writeback cannot
877 * ever write the buffer.
878 */
879 if (dirty)
880 clear_buffer_dirty(bh);
liang xie5d601252014-05-12 22:06:43 -0400881 BUFFER_TRACE(bh, "get write access");
Jan Kara56d35a42010-08-05 14:41:42 -0400882 ret = ext4_journal_get_write_access(handle, bh);
883 if (!ret && dirty)
884 ret = ext4_handle_dirty_metadata(handle, NULL, bh);
885 return ret;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700886}
887
Anatol Pomozov8b0f1652012-11-08 15:07:16 -0500888static int ext4_get_block_write_nolock(struct inode *inode, sector_t iblock,
889 struct buffer_head *bh_result, int create);
Michael Halcrow2058f832015-04-12 00:55:10 -0400890
891#ifdef CONFIG_EXT4_FS_ENCRYPTION
892static int ext4_block_write_begin(struct page *page, loff_t pos, unsigned len,
893 get_block_t *get_block)
894{
895 unsigned from = pos & (PAGE_CACHE_SIZE - 1);
896 unsigned to = from + len;
897 struct inode *inode = page->mapping->host;
898 unsigned block_start, block_end;
899 sector_t block;
900 int err = 0;
901 unsigned blocksize = inode->i_sb->s_blocksize;
902 unsigned bbits;
903 struct buffer_head *bh, *head, *wait[2], **wait_bh = wait;
904 bool decrypt = false;
905
906 BUG_ON(!PageLocked(page));
907 BUG_ON(from > PAGE_CACHE_SIZE);
908 BUG_ON(to > PAGE_CACHE_SIZE);
909 BUG_ON(from > to);
910
911 if (!page_has_buffers(page))
912 create_empty_buffers(page, blocksize, 0);
913 head = page_buffers(page);
914 bbits = ilog2(blocksize);
915 block = (sector_t)page->index << (PAGE_CACHE_SHIFT - bbits);
916
917 for (bh = head, block_start = 0; bh != head || !block_start;
918 block++, block_start = block_end, bh = bh->b_this_page) {
919 block_end = block_start + blocksize;
920 if (block_end <= from || block_start >= to) {
921 if (PageUptodate(page)) {
922 if (!buffer_uptodate(bh))
923 set_buffer_uptodate(bh);
924 }
925 continue;
926 }
927 if (buffer_new(bh))
928 clear_buffer_new(bh);
929 if (!buffer_mapped(bh)) {
930 WARN_ON(bh->b_size != blocksize);
931 err = get_block(inode, block, bh, 1);
932 if (err)
933 break;
934 if (buffer_new(bh)) {
935 unmap_underlying_metadata(bh->b_bdev,
936 bh->b_blocknr);
937 if (PageUptodate(page)) {
938 clear_buffer_new(bh);
939 set_buffer_uptodate(bh);
940 mark_buffer_dirty(bh);
941 continue;
942 }
943 if (block_end > to || block_start < from)
944 zero_user_segments(page, to, block_end,
945 block_start, from);
946 continue;
947 }
948 }
949 if (PageUptodate(page)) {
950 if (!buffer_uptodate(bh))
951 set_buffer_uptodate(bh);
952 continue;
953 }
954 if (!buffer_uptodate(bh) && !buffer_delay(bh) &&
955 !buffer_unwritten(bh) &&
956 (block_start < from || block_end > to)) {
957 ll_rw_block(READ, 1, &bh);
958 *wait_bh++ = bh;
959 decrypt = ext4_encrypted_inode(inode) &&
960 S_ISREG(inode->i_mode);
961 }
962 }
963 /*
964 * If we issued read requests, let them complete.
965 */
966 while (wait_bh > wait) {
967 wait_on_buffer(*--wait_bh);
968 if (!buffer_uptodate(*wait_bh))
969 err = -EIO;
970 }
971 if (unlikely(err))
972 page_zero_new_buffers(page, from, to);
973 else if (decrypt)
974 err = ext4_decrypt_one(inode, page);
975 return err;
976}
977#endif
978
Nick Pigginbfc1af62007-10-16 01:25:05 -0700979static int ext4_write_begin(struct file *file, struct address_space *mapping,
Theodore Ts'ode9a55b2009-06-14 17:45:34 -0400980 loff_t pos, unsigned len, unsigned flags,
981 struct page **pagep, void **fsdata)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700982{
Theodore Ts'oaf5bc922008-09-08 22:25:24 -0400983 struct inode *inode = mapping->host;
Aneesh Kumar K.V1938a152009-06-05 01:00:26 -0400984 int ret, needed_blocks;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700985 handle_t *handle;
986 int retries = 0;
Theodore Ts'oaf5bc922008-09-08 22:25:24 -0400987 struct page *page;
Theodore Ts'ode9a55b2009-06-14 17:45:34 -0400988 pgoff_t index;
Theodore Ts'oaf5bc922008-09-08 22:25:24 -0400989 unsigned from, to;
Nick Pigginbfc1af62007-10-16 01:25:05 -0700990
Theodore Ts'o9bffad12009-06-17 11:48:11 -0400991 trace_ext4_write_begin(inode, pos, len, flags);
Aneesh Kumar K.V1938a152009-06-05 01:00:26 -0400992 /*
993 * Reserve one block more for addition to orphan list in case
994 * we allocate blocks but write fails for some reason
995 */
996 needed_blocks = ext4_writepage_trans_blocks(inode) + 1;
Theodore Ts'ode9a55b2009-06-14 17:45:34 -0400997 index = pos >> PAGE_CACHE_SHIFT;
Theodore Ts'oaf5bc922008-09-08 22:25:24 -0400998 from = pos & (PAGE_CACHE_SIZE - 1);
999 to = from + len;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001000
Tao Maf19d5872012-12-10 14:05:51 -05001001 if (ext4_test_inode_state(inode, EXT4_STATE_MAY_INLINE_DATA)) {
1002 ret = ext4_try_to_write_inline_data(mapping, inode, pos, len,
1003 flags, pagep);
1004 if (ret < 0)
Theodore Ts'o47564bf2013-02-09 09:24:14 -05001005 return ret;
1006 if (ret == 1)
1007 return 0;
Tao Maf19d5872012-12-10 14:05:51 -05001008 }
1009
Theodore Ts'o47564bf2013-02-09 09:24:14 -05001010 /*
1011 * grab_cache_page_write_begin() can take a long time if the
1012 * system is thrashing due to memory pressure, or if the page
1013 * is being written back. So grab it first before we start
1014 * the transaction handle. This also allows us to allocate
1015 * the page (if needed) without using GFP_NOFS.
1016 */
1017retry_grab:
Nick Piggin54566b22009-01-04 12:00:53 -08001018 page = grab_cache_page_write_begin(mapping, index, flags);
Theodore Ts'o47564bf2013-02-09 09:24:14 -05001019 if (!page)
1020 return -ENOMEM;
1021 unlock_page(page);
1022
1023retry_journal:
Theodore Ts'o9924a922013-02-08 21:59:22 -05001024 handle = ext4_journal_start(inode, EXT4_HT_WRITE_PAGE, needed_blocks);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001025 if (IS_ERR(handle)) {
Theodore Ts'o47564bf2013-02-09 09:24:14 -05001026 page_cache_release(page);
1027 return PTR_ERR(handle);
Jan Karacf108bc2008-07-11 19:27:31 -04001028 }
Tao Maf19d5872012-12-10 14:05:51 -05001029
Theodore Ts'o47564bf2013-02-09 09:24:14 -05001030 lock_page(page);
1031 if (page->mapping != mapping) {
1032 /* The page got truncated from under us */
1033 unlock_page(page);
1034 page_cache_release(page);
Jan Karacf108bc2008-07-11 19:27:31 -04001035 ext4_journal_stop(handle);
Theodore Ts'o47564bf2013-02-09 09:24:14 -05001036 goto retry_grab;
Jan Karacf108bc2008-07-11 19:27:31 -04001037 }
Dmitry Monakhov7afe5aa2013-08-28 14:30:47 -04001038 /* In case writeback began while the page was unlocked */
1039 wait_for_stable_page(page);
Jan Karacf108bc2008-07-11 19:27:31 -04001040
Michael Halcrow2058f832015-04-12 00:55:10 -04001041#ifdef CONFIG_EXT4_FS_ENCRYPTION
1042 if (ext4_should_dioread_nolock(inode))
1043 ret = ext4_block_write_begin(page, pos, len,
1044 ext4_get_block_write);
1045 else
1046 ret = ext4_block_write_begin(page, pos, len,
1047 ext4_get_block);
1048#else
Jiaying Zhang744692d2010-03-04 16:14:02 -05001049 if (ext4_should_dioread_nolock(inode))
Christoph Hellwig6e1db882010-06-04 11:29:57 +02001050 ret = __block_write_begin(page, pos, len, ext4_get_block_write);
Jiaying Zhang744692d2010-03-04 16:14:02 -05001051 else
Christoph Hellwig6e1db882010-06-04 11:29:57 +02001052 ret = __block_write_begin(page, pos, len, ext4_get_block);
Michael Halcrow2058f832015-04-12 00:55:10 -04001053#endif
Nick Pigginbfc1af62007-10-16 01:25:05 -07001054 if (!ret && ext4_should_journal_data(inode)) {
Tao Maf19d5872012-12-10 14:05:51 -05001055 ret = ext4_walk_page_buffers(handle, page_buffers(page),
1056 from, to, NULL,
1057 do_journal_get_write_access);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001058 }
Nick Pigginbfc1af62007-10-16 01:25:05 -07001059
1060 if (ret) {
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04001061 unlock_page(page);
Aneesh Kumar K.Vae4d5372008-09-13 13:10:25 -04001062 /*
Christoph Hellwig6e1db882010-06-04 11:29:57 +02001063 * __block_write_begin may have instantiated a few blocks
Aneesh Kumar K.Vae4d5372008-09-13 13:10:25 -04001064 * outside i_size. Trim these off again. Don't need
1065 * i_size_read because we hold i_mutex.
Aneesh Kumar K.V1938a152009-06-05 01:00:26 -04001066 *
1067 * Add inode to orphan list in case we crash before
1068 * truncate finishes
Aneesh Kumar K.Vae4d5372008-09-13 13:10:25 -04001069 */
Jan Karaffacfa72009-07-13 16:22:22 -04001070 if (pos + len > inode->i_size && ext4_can_truncate(inode))
Aneesh Kumar K.V1938a152009-06-05 01:00:26 -04001071 ext4_orphan_add(handle, inode);
1072
1073 ext4_journal_stop(handle);
1074 if (pos + len > inode->i_size) {
Jan Karab9a42072009-12-08 21:24:33 -05001075 ext4_truncate_failed_write(inode);
Theodore Ts'ode9a55b2009-06-14 17:45:34 -04001076 /*
Jan Karaffacfa72009-07-13 16:22:22 -04001077 * If truncate failed early the inode might
Aneesh Kumar K.V1938a152009-06-05 01:00:26 -04001078 * still be on the orphan list; we need to
1079 * make sure the inode is removed from the
1080 * orphan list in that case.
1081 */
1082 if (inode->i_nlink)
1083 ext4_orphan_del(NULL, inode);
1084 }
Nick Pigginbfc1af62007-10-16 01:25:05 -07001085
Theodore Ts'o47564bf2013-02-09 09:24:14 -05001086 if (ret == -ENOSPC &&
1087 ext4_should_retry_alloc(inode->i_sb, &retries))
1088 goto retry_journal;
1089 page_cache_release(page);
1090 return ret;
1091 }
1092 *pagep = page;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001093 return ret;
1094}
1095
Nick Pigginbfc1af62007-10-16 01:25:05 -07001096/* For write_end() in data=journal mode */
1097static int write_end_fn(handle_t *handle, struct buffer_head *bh)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001098{
Theodore Ts'o13fca322013-04-21 16:45:54 -04001099 int ret;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001100 if (!buffer_mapped(bh) || buffer_freed(bh))
1101 return 0;
1102 set_buffer_uptodate(bh);
Theodore Ts'o13fca322013-04-21 16:45:54 -04001103 ret = ext4_handle_dirty_metadata(handle, NULL, bh);
1104 clear_buffer_meta(bh);
1105 clear_buffer_prio(bh);
1106 return ret;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001107}
1108
Zheng Liueed43332013-04-03 12:41:17 -04001109/*
1110 * We need to pick up the new inode size which generic_commit_write gave us
1111 * `file' can be NULL - eg, when called from page_symlink().
1112 *
1113 * ext4 never places buffers on inode->i_mapping->private_list. metadata
1114 * buffers are managed internally.
1115 */
1116static int ext4_write_end(struct file *file,
1117 struct address_space *mapping,
1118 loff_t pos, unsigned len, unsigned copied,
1119 struct page *page, void *fsdata)
Aneesh Kumar K.Vf8514082009-06-05 00:56:49 -04001120{
Aneesh Kumar K.Vf8514082009-06-05 00:56:49 -04001121 handle_t *handle = ext4_journal_current_handle();
Zheng Liueed43332013-04-03 12:41:17 -04001122 struct inode *inode = mapping->host;
Xiaoguang Wang05726392015-02-12 23:00:17 -05001123 loff_t old_size = inode->i_size;
Zheng Liueed43332013-04-03 12:41:17 -04001124 int ret = 0, ret2;
1125 int i_size_changed = 0;
1126
1127 trace_ext4_write_end(inode, pos, len, copied);
1128 if (ext4_test_inode_state(inode, EXT4_STATE_ORDERED_MODE)) {
1129 ret = ext4_jbd2_file_inode(handle, inode);
1130 if (ret) {
1131 unlock_page(page);
1132 page_cache_release(page);
1133 goto errout;
1134 }
1135 }
Aneesh Kumar K.Vf8514082009-06-05 00:56:49 -04001136
Theodore Ts'o42c832d2013-07-01 08:12:39 -04001137 if (ext4_has_inline_data(inode)) {
1138 ret = ext4_write_inline_data_end(inode, pos, len,
1139 copied, page);
1140 if (ret < 0)
1141 goto errout;
1142 copied = ret;
1143 } else
Tao Maf19d5872012-12-10 14:05:51 -05001144 copied = block_write_end(file, mapping, pos,
1145 len, copied, page, fsdata);
Aneesh Kumar K.Vf8514082009-06-05 00:56:49 -04001146 /*
Dmitry Monakhov4631dbf2014-08-23 17:48:28 -04001147 * it's important to update i_size while still holding page lock:
Aneesh Kumar K.Vf8514082009-06-05 00:56:49 -04001148 * page writeout could otherwise come in and zero beyond i_size.
1149 */
Dmitry Monakhov4631dbf2014-08-23 17:48:28 -04001150 i_size_changed = ext4_update_inode_size(inode, pos + copied);
Aneesh Kumar K.Vf8514082009-06-05 00:56:49 -04001151 unlock_page(page);
1152 page_cache_release(page);
1153
Xiaoguang Wang05726392015-02-12 23:00:17 -05001154 if (old_size < pos)
1155 pagecache_isize_extended(inode, old_size, pos);
Aneesh Kumar K.Vf8514082009-06-05 00:56:49 -04001156 /*
1157 * Don't mark the inode dirty under page lock. First, it unnecessarily
1158 * makes the holding time of page lock longer. Second, it forces lock
1159 * ordering of page lock and transaction start for journaling
1160 * filesystems.
1161 */
1162 if (i_size_changed)
1163 ext4_mark_inode_dirty(handle, inode);
1164
Jan Karaffacfa72009-07-13 16:22:22 -04001165 if (pos + len > inode->i_size && ext4_can_truncate(inode))
Aneesh Kumar K.Vf8514082009-06-05 00:56:49 -04001166 /* if we have allocated more blocks and copied
1167 * less. We will have blocks allocated outside
1168 * inode->i_size. So truncate them
1169 */
1170 ext4_orphan_add(handle, inode);
Theodore Ts'o74d553a2013-04-03 12:39:17 -04001171errout:
Mingming Cao617ba132006-10-11 01:20:53 -07001172 ret2 = ext4_journal_stop(handle);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001173 if (!ret)
1174 ret = ret2;
Nick Pigginbfc1af62007-10-16 01:25:05 -07001175
Aneesh Kumar K.Vf8514082009-06-05 00:56:49 -04001176 if (pos + len > inode->i_size) {
Jan Karab9a42072009-12-08 21:24:33 -05001177 ext4_truncate_failed_write(inode);
Theodore Ts'ode9a55b2009-06-14 17:45:34 -04001178 /*
Jan Karaffacfa72009-07-13 16:22:22 -04001179 * If truncate failed early the inode might still be
Aneesh Kumar K.Vf8514082009-06-05 00:56:49 -04001180 * on the orphan list; we need to make sure the inode
1181 * is removed from the orphan list in that case.
1182 */
1183 if (inode->i_nlink)
1184 ext4_orphan_del(NULL, inode);
1185 }
1186
Nick Pigginbfc1af62007-10-16 01:25:05 -07001187 return ret ? ret : copied;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001188}
1189
Nick Pigginbfc1af62007-10-16 01:25:05 -07001190static int ext4_journalled_write_end(struct file *file,
Theodore Ts'ode9a55b2009-06-14 17:45:34 -04001191 struct address_space *mapping,
1192 loff_t pos, unsigned len, unsigned copied,
1193 struct page *page, void *fsdata)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001194{
Mingming Cao617ba132006-10-11 01:20:53 -07001195 handle_t *handle = ext4_journal_current_handle();
Nick Pigginbfc1af62007-10-16 01:25:05 -07001196 struct inode *inode = mapping->host;
Xiaoguang Wang05726392015-02-12 23:00:17 -05001197 loff_t old_size = inode->i_size;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001198 int ret = 0, ret2;
1199 int partial = 0;
Nick Pigginbfc1af62007-10-16 01:25:05 -07001200 unsigned from, to;
Dmitry Monakhov4631dbf2014-08-23 17:48:28 -04001201 int size_changed = 0;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001202
Theodore Ts'o9bffad12009-06-17 11:48:11 -04001203 trace_ext4_journalled_write_end(inode, pos, len, copied);
Nick Pigginbfc1af62007-10-16 01:25:05 -07001204 from = pos & (PAGE_CACHE_SIZE - 1);
1205 to = from + len;
1206
Curt Wohlgemuth441c8502011-08-13 11:25:18 -04001207 BUG_ON(!ext4_handle_valid(handle));
1208
Tao Ma3fdcfb62012-12-10 14:05:57 -05001209 if (ext4_has_inline_data(inode))
1210 copied = ext4_write_inline_data_end(inode, pos, len,
1211 copied, page);
1212 else {
1213 if (copied < len) {
1214 if (!PageUptodate(page))
1215 copied = 0;
1216 page_zero_new_buffers(page, from+copied, to);
1217 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001218
Tao Ma3fdcfb62012-12-10 14:05:57 -05001219 ret = ext4_walk_page_buffers(handle, page_buffers(page), from,
1220 to, &partial, write_end_fn);
1221 if (!partial)
1222 SetPageUptodate(page);
1223 }
Dmitry Monakhov4631dbf2014-08-23 17:48:28 -04001224 size_changed = ext4_update_inode_size(inode, pos + copied);
Theodore Ts'o19f5fb72010-01-24 14:34:07 -05001225 ext4_set_inode_state(inode, EXT4_STATE_JDATA);
Jan Kara2d859db2011-07-26 09:07:11 -04001226 EXT4_I(inode)->i_datasync_tid = handle->h_transaction->t_tid;
Dmitry Monakhov4631dbf2014-08-23 17:48:28 -04001227 unlock_page(page);
1228 page_cache_release(page);
1229
Xiaoguang Wang05726392015-02-12 23:00:17 -05001230 if (old_size < pos)
1231 pagecache_isize_extended(inode, old_size, pos);
1232
Dmitry Monakhov4631dbf2014-08-23 17:48:28 -04001233 if (size_changed) {
Mingming Cao617ba132006-10-11 01:20:53 -07001234 ret2 = ext4_mark_inode_dirty(handle, inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001235 if (!ret)
1236 ret = ret2;
1237 }
Nick Pigginbfc1af62007-10-16 01:25:05 -07001238
Jan Karaffacfa72009-07-13 16:22:22 -04001239 if (pos + len > inode->i_size && ext4_can_truncate(inode))
Aneesh Kumar K.Vf8514082009-06-05 00:56:49 -04001240 /* if we have allocated more blocks and copied
1241 * less. We will have blocks allocated outside
1242 * inode->i_size. So truncate them
1243 */
1244 ext4_orphan_add(handle, inode);
1245
Mingming Cao617ba132006-10-11 01:20:53 -07001246 ret2 = ext4_journal_stop(handle);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001247 if (!ret)
1248 ret = ret2;
Aneesh Kumar K.Vf8514082009-06-05 00:56:49 -04001249 if (pos + len > inode->i_size) {
Jan Karab9a42072009-12-08 21:24:33 -05001250 ext4_truncate_failed_write(inode);
Theodore Ts'ode9a55b2009-06-14 17:45:34 -04001251 /*
Jan Karaffacfa72009-07-13 16:22:22 -04001252 * If truncate failed early the inode might still be
Aneesh Kumar K.Vf8514082009-06-05 00:56:49 -04001253 * on the orphan list; we need to make sure the inode
1254 * is removed from the orphan list in that case.
1255 */
1256 if (inode->i_nlink)
1257 ext4_orphan_del(NULL, inode);
1258 }
Nick Pigginbfc1af62007-10-16 01:25:05 -07001259
1260 return ret ? ret : copied;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001261}
Mingming Caod2a17632008-07-14 17:52:37 -04001262
Theodore Ts'o9d0be502010-01-01 02:41:30 -05001263/*
Eric Whitneyc27e43a2015-06-21 21:37:05 -04001264 * Reserve space for a single cluster
Theodore Ts'o9d0be502010-01-01 02:41:30 -05001265 */
Eric Whitneyc27e43a2015-06-21 21:37:05 -04001266static int ext4_da_reserve_space(struct inode *inode)
Mingming Caod2a17632008-07-14 17:52:37 -04001267{
Mingming Cao60e58e02009-01-22 18:13:05 +01001268 struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb);
Theodore Ts'o0637c6f2009-12-30 14:20:45 -05001269 struct ext4_inode_info *ei = EXT4_I(inode);
Christoph Hellwig5dd40562010-03-03 09:05:00 -05001270 int ret;
Mingming Caod2a17632008-07-14 17:52:37 -04001271
Mingming Cao60e58e02009-01-22 18:13:05 +01001272 /*
Eric Sandeen72b8ab92010-05-16 11:00:00 -04001273 * We will charge metadata quota at writeout time; this saves
1274 * us from metadata over-estimation, though we may go over by
1275 * a small amount in the end. Here we just reserve for data.
Mingming Cao60e58e02009-01-22 18:13:05 +01001276 */
Aditya Kali7b415bf2011-09-09 19:04:51 -04001277 ret = dquot_reserve_block(inode, EXT4_C2B(sbi, 1));
Christoph Hellwig5dd40562010-03-03 09:05:00 -05001278 if (ret)
1279 return ret;
Theodore Ts'o03179fe2012-07-23 00:00:20 -04001280
Theodore Ts'o03179fe2012-07-23 00:00:20 -04001281 spin_lock(&ei->i_block_reservation_lock);
Theodore Ts'o71d4f7d2014-07-15 06:02:38 -04001282 if (ext4_claim_free_clusters(sbi, 1, 0)) {
Theodore Ts'o03179fe2012-07-23 00:00:20 -04001283 spin_unlock(&ei->i_block_reservation_lock);
Theodore Ts'o03179fe2012-07-23 00:00:20 -04001284 dquot_release_reservation_block(inode, EXT4_C2B(sbi, 1));
Mingming Caod2a17632008-07-14 17:52:37 -04001285 return -ENOSPC;
1286 }
Theodore Ts'o9d0be502010-01-01 02:41:30 -05001287 ei->i_reserved_data_blocks++;
Eric Whitneyc27e43a2015-06-21 21:37:05 -04001288 trace_ext4_da_reserve_space(inode);
Theodore Ts'o0637c6f2009-12-30 14:20:45 -05001289 spin_unlock(&ei->i_block_reservation_lock);
Dmitry Monakhov39bc6802009-12-10 16:36:27 +00001290
Mingming Caod2a17632008-07-14 17:52:37 -04001291 return 0; /* success */
1292}
1293
Aneesh Kumar K.V12219ae2008-07-17 16:12:08 -04001294static void ext4_da_release_space(struct inode *inode, int to_free)
Mingming Caod2a17632008-07-14 17:52:37 -04001295{
1296 struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb);
Theodore Ts'o0637c6f2009-12-30 14:20:45 -05001297 struct ext4_inode_info *ei = EXT4_I(inode);
Mingming Caod2a17632008-07-14 17:52:37 -04001298
Mingming Caocd213222008-08-19 22:16:59 -04001299 if (!to_free)
1300 return; /* Nothing to release, exit */
1301
Mingming Caod2a17632008-07-14 17:52:37 -04001302 spin_lock(&EXT4_I(inode)->i_block_reservation_lock);
Mingming Caocd213222008-08-19 22:16:59 -04001303
Li Zefan5a58ec82010-05-17 02:00:00 -04001304 trace_ext4_da_release_space(inode, to_free);
Theodore Ts'o0637c6f2009-12-30 14:20:45 -05001305 if (unlikely(to_free > ei->i_reserved_data_blocks)) {
Mingming Caocd213222008-08-19 22:16:59 -04001306 /*
Theodore Ts'o0637c6f2009-12-30 14:20:45 -05001307 * if there aren't enough reserved blocks, then the
1308 * counter is messed up somewhere. Since this
1309 * function is called from invalidate page, it's
1310 * harmless to return without any action.
Mingming Caocd213222008-08-19 22:16:59 -04001311 */
Theodore Ts'o8de5c322013-02-14 15:11:41 -05001312 ext4_warning(inode->i_sb, "ext4_da_release_space: "
Theodore Ts'o0637c6f2009-12-30 14:20:45 -05001313 "ino %lu, to_free %d with only %d reserved "
Theodore Ts'o1084f252012-03-19 23:13:43 -04001314 "data blocks", inode->i_ino, to_free,
Theodore Ts'o0637c6f2009-12-30 14:20:45 -05001315 ei->i_reserved_data_blocks);
1316 WARN_ON(1);
1317 to_free = ei->i_reserved_data_blocks;
1318 }
1319 ei->i_reserved_data_blocks -= to_free;
1320
Eric Sandeen72b8ab92010-05-16 11:00:00 -04001321 /* update fs dirty data blocks counter */
Theodore Ts'o57042652011-09-09 18:56:51 -04001322 percpu_counter_sub(&sbi->s_dirtyclusters_counter, to_free);
Mingming Caod2a17632008-07-14 17:52:37 -04001323
Mingming Caod2a17632008-07-14 17:52:37 -04001324 spin_unlock(&EXT4_I(inode)->i_block_reservation_lock);
Mingming Cao60e58e02009-01-22 18:13:05 +01001325
Aditya Kali7b415bf2011-09-09 19:04:51 -04001326 dquot_release_reservation_block(inode, EXT4_C2B(sbi, to_free));
Mingming Caod2a17632008-07-14 17:52:37 -04001327}
1328
1329static void ext4_da_page_release_reservation(struct page *page,
Lukas Czernerca99fdd2013-05-21 23:25:01 -04001330 unsigned int offset,
1331 unsigned int length)
Mingming Caod2a17632008-07-14 17:52:37 -04001332{
1333 int to_release = 0;
1334 struct buffer_head *head, *bh;
1335 unsigned int curr_off = 0;
Aditya Kali7b415bf2011-09-09 19:04:51 -04001336 struct inode *inode = page->mapping->host;
1337 struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb);
Lukas Czernerca99fdd2013-05-21 23:25:01 -04001338 unsigned int stop = offset + length;
Aditya Kali7b415bf2011-09-09 19:04:51 -04001339 int num_clusters;
Zheng Liu51865fd2012-11-08 21:57:32 -05001340 ext4_fsblk_t lblk;
Mingming Caod2a17632008-07-14 17:52:37 -04001341
Lukas Czernerca99fdd2013-05-21 23:25:01 -04001342 BUG_ON(stop > PAGE_CACHE_SIZE || stop < length);
1343
Mingming Caod2a17632008-07-14 17:52:37 -04001344 head = page_buffers(page);
1345 bh = head;
1346 do {
1347 unsigned int next_off = curr_off + bh->b_size;
1348
Lukas Czernerca99fdd2013-05-21 23:25:01 -04001349 if (next_off > stop)
1350 break;
1351
Mingming Caod2a17632008-07-14 17:52:37 -04001352 if ((offset <= curr_off) && (buffer_delay(bh))) {
1353 to_release++;
1354 clear_buffer_delay(bh);
1355 }
1356 curr_off = next_off;
1357 } while ((bh = bh->b_this_page) != head);
Aditya Kali7b415bf2011-09-09 19:04:51 -04001358
Zheng Liu51865fd2012-11-08 21:57:32 -05001359 if (to_release) {
1360 lblk = page->index << (PAGE_CACHE_SHIFT - inode->i_blkbits);
1361 ext4_es_remove_extent(inode, lblk, to_release);
1362 }
1363
Aditya Kali7b415bf2011-09-09 19:04:51 -04001364 /* If we have released all the blocks belonging to a cluster, then we
1365 * need to release the reserved space for that cluster. */
1366 num_clusters = EXT4_NUM_B2C(sbi, to_release);
1367 while (num_clusters > 0) {
Aditya Kali7b415bf2011-09-09 19:04:51 -04001368 lblk = (page->index << (PAGE_CACHE_SHIFT - inode->i_blkbits)) +
1369 ((num_clusters - 1) << sbi->s_cluster_bits);
1370 if (sbi->s_cluster_ratio == 1 ||
Zheng Liu7d1b1fb2012-11-08 21:57:35 -05001371 !ext4_find_delalloc_cluster(inode, lblk))
Aditya Kali7b415bf2011-09-09 19:04:51 -04001372 ext4_da_release_space(inode, 1);
1373
1374 num_clusters--;
1375 }
Mingming Caod2a17632008-07-14 17:52:37 -04001376}
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001377
1378/*
Alex Tomas64769242008-07-11 19:27:31 -04001379 * Delayed allocation stuff
1380 */
1381
Jan Kara4e7ea812013-06-04 13:17:40 -04001382struct mpage_da_data {
1383 struct inode *inode;
1384 struct writeback_control *wbc;
Jan Kara6b523df2013-06-04 13:21:11 -04001385
Jan Kara4e7ea812013-06-04 13:17:40 -04001386 pgoff_t first_page; /* The first page to write */
1387 pgoff_t next_page; /* Current page to examine */
1388 pgoff_t last_page; /* Last page to examine */
Aneesh Kumar K.V791b7f02009-01-05 21:50:43 -05001389 /*
Jan Kara4e7ea812013-06-04 13:17:40 -04001390 * Extent to map - this can be after first_page because that can be
1391 * fully mapped. We somewhat abuse m_flags to store whether the extent
1392 * is delalloc or unwritten.
Aneesh Kumar K.V791b7f02009-01-05 21:50:43 -05001393 */
Jan Kara4e7ea812013-06-04 13:17:40 -04001394 struct ext4_map_blocks map;
1395 struct ext4_io_submit io_submit; /* IO submission data */
1396};
Alex Tomas64769242008-07-11 19:27:31 -04001397
Jan Kara4e7ea812013-06-04 13:17:40 -04001398static void mpage_release_unused_pages(struct mpage_da_data *mpd,
1399 bool invalidate)
Aneesh Kumar K.Vc4a0c462008-08-19 21:08:18 -04001400{
1401 int nr_pages, i;
1402 pgoff_t index, end;
1403 struct pagevec pvec;
1404 struct inode *inode = mpd->inode;
1405 struct address_space *mapping = inode->i_mapping;
Jan Kara4e7ea812013-06-04 13:17:40 -04001406
1407 /* This is necessary when next_page == 0. */
1408 if (mpd->first_page >= mpd->next_page)
1409 return;
Aneesh Kumar K.Vc4a0c462008-08-19 21:08:18 -04001410
Curt Wohlgemuthc7f59382011-02-26 12:27:52 -05001411 index = mpd->first_page;
1412 end = mpd->next_page - 1;
Jan Kara4e7ea812013-06-04 13:17:40 -04001413 if (invalidate) {
1414 ext4_lblk_t start, last;
1415 start = index << (PAGE_CACHE_SHIFT - inode->i_blkbits);
1416 last = end << (PAGE_CACHE_SHIFT - inode->i_blkbits);
1417 ext4_es_remove_extent(inode, start, last - start + 1);
1418 }
Zheng Liu51865fd2012-11-08 21:57:32 -05001419
Eric Sandeen66bea922012-11-14 22:22:05 -05001420 pagevec_init(&pvec, 0);
Aneesh Kumar K.Vc4a0c462008-08-19 21:08:18 -04001421 while (index <= end) {
1422 nr_pages = pagevec_lookup(&pvec, mapping, index, PAGEVEC_SIZE);
1423 if (nr_pages == 0)
1424 break;
1425 for (i = 0; i < nr_pages; i++) {
1426 struct page *page = pvec.pages[i];
Jan Kara9b1d09982010-03-03 16:19:32 -05001427 if (page->index > end)
Aneesh Kumar K.Vc4a0c462008-08-19 21:08:18 -04001428 break;
Aneesh Kumar K.Vc4a0c462008-08-19 21:08:18 -04001429 BUG_ON(!PageLocked(page));
1430 BUG_ON(PageWriteback(page));
Jan Kara4e7ea812013-06-04 13:17:40 -04001431 if (invalidate) {
1432 block_invalidatepage(page, 0, PAGE_CACHE_SIZE);
1433 ClearPageUptodate(page);
1434 }
Aneesh Kumar K.Vc4a0c462008-08-19 21:08:18 -04001435 unlock_page(page);
1436 }
Jan Kara9b1d09982010-03-03 16:19:32 -05001437 index = pvec.pages[nr_pages - 1]->index + 1;
1438 pagevec_release(&pvec);
Aneesh Kumar K.Vc4a0c462008-08-19 21:08:18 -04001439 }
Aneesh Kumar K.Vc4a0c462008-08-19 21:08:18 -04001440}
1441
Aneesh Kumar K.Vdf222912008-09-08 23:05:34 -04001442static void ext4_print_free_blocks(struct inode *inode)
1443{
1444 struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb);
Theodore Ts'o92b97812012-03-19 23:41:49 -04001445 struct super_block *sb = inode->i_sb;
Lukas Czernerf78ee70d2013-04-03 23:33:30 -04001446 struct ext4_inode_info *ei = EXT4_I(inode);
Theodore Ts'o92b97812012-03-19 23:41:49 -04001447
1448 ext4_msg(sb, KERN_CRIT, "Total free blocks count %lld",
Theodore Ts'o5dee5432011-09-09 19:10:51 -04001449 EXT4_C2B(EXT4_SB(inode->i_sb),
Lukas Czernerf78ee70d2013-04-03 23:33:30 -04001450 ext4_count_free_clusters(sb)));
Theodore Ts'o92b97812012-03-19 23:41:49 -04001451 ext4_msg(sb, KERN_CRIT, "Free/Dirty block details");
1452 ext4_msg(sb, KERN_CRIT, "free_blocks=%lld",
Lukas Czernerf78ee70d2013-04-03 23:33:30 -04001453 (long long) EXT4_C2B(EXT4_SB(sb),
Theodore Ts'o57042652011-09-09 18:56:51 -04001454 percpu_counter_sum(&sbi->s_freeclusters_counter)));
Theodore Ts'o92b97812012-03-19 23:41:49 -04001455 ext4_msg(sb, KERN_CRIT, "dirty_blocks=%lld",
Lukas Czernerf78ee70d2013-04-03 23:33:30 -04001456 (long long) EXT4_C2B(EXT4_SB(sb),
Aditya Kali7b415bf2011-09-09 19:04:51 -04001457 percpu_counter_sum(&sbi->s_dirtyclusters_counter)));
Theodore Ts'o92b97812012-03-19 23:41:49 -04001458 ext4_msg(sb, KERN_CRIT, "Block reservation details");
1459 ext4_msg(sb, KERN_CRIT, "i_reserved_data_blocks=%u",
Lukas Czernerf78ee70d2013-04-03 23:33:30 -04001460 ei->i_reserved_data_blocks);
Aneesh Kumar K.Vdf222912008-09-08 23:05:34 -04001461 return;
1462}
1463
Aneesh Kumar K.Vc364b222009-06-14 17:57:10 -04001464static int ext4_bh_delay_or_unwritten(handle_t *handle, struct buffer_head *bh)
Aneesh Kumar K.V29fa89d2009-05-12 16:30:27 -04001465{
Aneesh Kumar K.Vc364b222009-06-14 17:57:10 -04001466 return (buffer_delay(bh) || buffer_unwritten(bh)) && buffer_dirty(bh);
Aneesh Kumar K.V29fa89d2009-05-12 16:30:27 -04001467}
1468
Alex Tomas64769242008-07-11 19:27:31 -04001469/*
Aditya Kali5356f262011-09-09 19:20:51 -04001470 * This function is grabs code from the very beginning of
1471 * ext4_map_blocks, but assumes that the caller is from delayed write
1472 * time. This function looks up the requested blocks and sets the
1473 * buffer delay bit under the protection of i_data_sem.
1474 */
1475static int ext4_da_map_blocks(struct inode *inode, sector_t iblock,
1476 struct ext4_map_blocks *map,
1477 struct buffer_head *bh)
1478{
Zheng Liud100eef2013-02-18 00:29:59 -05001479 struct extent_status es;
Aditya Kali5356f262011-09-09 19:20:51 -04001480 int retval;
1481 sector_t invalid_block = ~((sector_t) 0xffff);
Dmitry Monakhov921f2662013-03-10 21:01:03 -04001482#ifdef ES_AGGRESSIVE_TEST
1483 struct ext4_map_blocks orig_map;
1484
1485 memcpy(&orig_map, map, sizeof(*map));
1486#endif
Aditya Kali5356f262011-09-09 19:20:51 -04001487
1488 if (invalid_block < ext4_blocks_count(EXT4_SB(inode->i_sb)->s_es))
1489 invalid_block = ~0;
1490
1491 map->m_flags = 0;
1492 ext_debug("ext4_da_map_blocks(): inode %lu, max_blocks %u,"
1493 "logical block %lu\n", inode->i_ino, map->m_len,
1494 (unsigned long) map->m_lblk);
Zheng Liud100eef2013-02-18 00:29:59 -05001495
1496 /* Lookup extent status tree firstly */
1497 if (ext4_es_lookup_extent(inode, iblock, &es)) {
Zheng Liud100eef2013-02-18 00:29:59 -05001498 if (ext4_es_is_hole(&es)) {
1499 retval = 0;
Lukas Czernerc8b459f2014-05-12 12:55:07 -04001500 down_read(&EXT4_I(inode)->i_data_sem);
Zheng Liud100eef2013-02-18 00:29:59 -05001501 goto add_delayed;
1502 }
1503
1504 /*
1505 * Delayed extent could be allocated by fallocate.
1506 * So we need to check it.
1507 */
1508 if (ext4_es_is_delayed(&es) && !ext4_es_is_unwritten(&es)) {
1509 map_bh(bh, inode->i_sb, invalid_block);
1510 set_buffer_new(bh);
1511 set_buffer_delay(bh);
1512 return 0;
1513 }
1514
1515 map->m_pblk = ext4_es_pblock(&es) + iblock - es.es_lblk;
1516 retval = es.es_len - (iblock - es.es_lblk);
1517 if (retval > map->m_len)
1518 retval = map->m_len;
1519 map->m_len = retval;
1520 if (ext4_es_is_written(&es))
1521 map->m_flags |= EXT4_MAP_MAPPED;
1522 else if (ext4_es_is_unwritten(&es))
1523 map->m_flags |= EXT4_MAP_UNWRITTEN;
1524 else
1525 BUG_ON(1);
1526
Dmitry Monakhov921f2662013-03-10 21:01:03 -04001527#ifdef ES_AGGRESSIVE_TEST
1528 ext4_map_blocks_es_recheck(NULL, inode, map, &orig_map, 0);
1529#endif
Zheng Liud100eef2013-02-18 00:29:59 -05001530 return retval;
1531 }
1532
Aditya Kali5356f262011-09-09 19:20:51 -04001533 /*
1534 * Try to see if we can get the block without requesting a new
1535 * file system block.
1536 */
Lukas Czernerc8b459f2014-05-12 12:55:07 -04001537 down_read(&EXT4_I(inode)->i_data_sem);
Jan Karacbd75842014-11-25 11:41:49 -05001538 if (ext4_has_inline_data(inode))
Tao Ma9c3569b2012-12-10 14:05:57 -05001539 retval = 0;
Jan Karacbd75842014-11-25 11:41:49 -05001540 else if (ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS))
Zheng Liu2f8e0a72014-11-25 11:44:37 -05001541 retval = ext4_ext_map_blocks(NULL, inode, map, 0);
Aditya Kali5356f262011-09-09 19:20:51 -04001542 else
Zheng Liu2f8e0a72014-11-25 11:44:37 -05001543 retval = ext4_ind_map_blocks(NULL, inode, map, 0);
Aditya Kali5356f262011-09-09 19:20:51 -04001544
Zheng Liud100eef2013-02-18 00:29:59 -05001545add_delayed:
Aditya Kali5356f262011-09-09 19:20:51 -04001546 if (retval == 0) {
Zheng Liuf7fec032013-02-18 00:28:47 -05001547 int ret;
Aditya Kali5356f262011-09-09 19:20:51 -04001548 /*
1549 * XXX: __block_prepare_write() unmaps passed block,
1550 * is it OK?
1551 */
Lukas Czerner386ad672013-03-10 22:50:00 -04001552 /*
1553 * If the block was allocated from previously allocated cluster,
1554 * then we don't need to reserve it again. However we still need
1555 * to reserve metadata for every block we're going to write.
1556 */
Eric Whitneyc27e43a2015-06-21 21:37:05 -04001557 if (EXT4_SB(inode->i_sb)->s_cluster_ratio == 1 ||
Jan Karacbd75842014-11-25 11:41:49 -05001558 !ext4_find_delalloc_cluster(inode, map->m_lblk)) {
Eric Whitneyc27e43a2015-06-21 21:37:05 -04001559 ret = ext4_da_reserve_space(inode);
Zheng Liuf7fec032013-02-18 00:28:47 -05001560 if (ret) {
Aditya Kali5356f262011-09-09 19:20:51 -04001561 /* not enough space to reserve */
Zheng Liuf7fec032013-02-18 00:28:47 -05001562 retval = ret;
Aditya Kali5356f262011-09-09 19:20:51 -04001563 goto out_unlock;
Zheng Liuf7fec032013-02-18 00:28:47 -05001564 }
Aditya Kali5356f262011-09-09 19:20:51 -04001565 }
1566
Zheng Liuf7fec032013-02-18 00:28:47 -05001567 ret = ext4_es_insert_extent(inode, map->m_lblk, map->m_len,
1568 ~0, EXTENT_STATUS_DELAYED);
1569 if (ret) {
1570 retval = ret;
Zheng Liu51865fd2012-11-08 21:57:32 -05001571 goto out_unlock;
Zheng Liuf7fec032013-02-18 00:28:47 -05001572 }
Zheng Liu51865fd2012-11-08 21:57:32 -05001573
Aditya Kali5356f262011-09-09 19:20:51 -04001574 map_bh(bh, inode->i_sb, invalid_block);
1575 set_buffer_new(bh);
1576 set_buffer_delay(bh);
Zheng Liuf7fec032013-02-18 00:28:47 -05001577 } else if (retval > 0) {
1578 int ret;
Theodore Ts'o3be78c72013-08-16 21:22:41 -04001579 unsigned int status;
Zheng Liuf7fec032013-02-18 00:28:47 -05001580
Zheng Liu44fb851d2013-07-29 12:51:42 -04001581 if (unlikely(retval != map->m_len)) {
1582 ext4_warning(inode->i_sb,
1583 "ES len assertion failed for inode "
1584 "%lu: retval %d != map->m_len %d",
1585 inode->i_ino, retval, map->m_len);
1586 WARN_ON(1);
Dmitry Monakhov921f2662013-03-10 21:01:03 -04001587 }
Dmitry Monakhov921f2662013-03-10 21:01:03 -04001588
Zheng Liuf7fec032013-02-18 00:28:47 -05001589 status = map->m_flags & EXT4_MAP_UNWRITTEN ?
1590 EXTENT_STATUS_UNWRITTEN : EXTENT_STATUS_WRITTEN;
1591 ret = ext4_es_insert_extent(inode, map->m_lblk, map->m_len,
1592 map->m_pblk, status);
1593 if (ret != 0)
1594 retval = ret;
Aditya Kali5356f262011-09-09 19:20:51 -04001595 }
1596
1597out_unlock:
1598 up_read((&EXT4_I(inode)->i_data_sem));
1599
1600 return retval;
1601}
1602
1603/*
Seunghun Leed91bd2c2014-09-01 22:15:30 -04001604 * This is a special get_block_t callback which is used by
Theodore Ts'ob920c752009-05-14 00:54:29 -04001605 * ext4_da_write_begin(). It will either return mapped block or
1606 * reserve space for a single block.
Aneesh Kumar K.V29fa89d2009-05-12 16:30:27 -04001607 *
1608 * For delayed buffer_head we have BH_Mapped, BH_New, BH_Delay set.
1609 * We also have b_blocknr = -1 and b_bdev initialized properly
1610 *
1611 * For unwritten buffer_head we have BH_Mapped, BH_New, BH_Unwritten set.
1612 * We also have b_blocknr = physicalblock mapping unwritten extent and b_bdev
1613 * initialized properly.
Alex Tomas64769242008-07-11 19:27:31 -04001614 */
Tao Ma9c3569b2012-12-10 14:05:57 -05001615int ext4_da_get_block_prep(struct inode *inode, sector_t iblock,
1616 struct buffer_head *bh, int create)
Alex Tomas64769242008-07-11 19:27:31 -04001617{
Theodore Ts'o2ed88682010-05-16 20:00:00 -04001618 struct ext4_map_blocks map;
Alex Tomas64769242008-07-11 19:27:31 -04001619 int ret = 0;
1620
1621 BUG_ON(create == 0);
Theodore Ts'o2ed88682010-05-16 20:00:00 -04001622 BUG_ON(bh->b_size != inode->i_sb->s_blocksize);
1623
1624 map.m_lblk = iblock;
1625 map.m_len = 1;
Alex Tomas64769242008-07-11 19:27:31 -04001626
1627 /*
1628 * first, we need to know whether the block is allocated already
1629 * preallocated blocks are unmapped but should treated
1630 * the same as allocated blocks.
1631 */
Aditya Kali5356f262011-09-09 19:20:51 -04001632 ret = ext4_da_map_blocks(inode, iblock, &map, bh);
1633 if (ret <= 0)
Theodore Ts'o2ed88682010-05-16 20:00:00 -04001634 return ret;
Alex Tomas64769242008-07-11 19:27:31 -04001635
Theodore Ts'o2ed88682010-05-16 20:00:00 -04001636 map_bh(bh, inode->i_sb, map.m_pblk);
1637 bh->b_state = (bh->b_state & ~EXT4_MAP_FLAGS) | map.m_flags;
1638
1639 if (buffer_unwritten(bh)) {
1640 /* A delayed write to unwritten bh should be marked
1641 * new and mapped. Mapped ensures that we don't do
1642 * get_block multiple times when we write to the same
1643 * offset and new ensures that we do proper zero out
1644 * for partial write.
1645 */
1646 set_buffer_new(bh);
Theodore Ts'oc8205632011-04-10 22:30:07 -04001647 set_buffer_mapped(bh);
Theodore Ts'o2ed88682010-05-16 20:00:00 -04001648 }
1649 return 0;
Alex Tomas64769242008-07-11 19:27:31 -04001650}
Mingming Cao61628a32008-07-11 19:27:31 -04001651
Aneesh Kumar K.V62e086b2009-06-14 17:59:34 -04001652static int bget_one(handle_t *handle, struct buffer_head *bh)
1653{
1654 get_bh(bh);
1655 return 0;
1656}
1657
1658static int bput_one(handle_t *handle, struct buffer_head *bh)
1659{
1660 put_bh(bh);
1661 return 0;
1662}
1663
1664static int __ext4_journalled_writepage(struct page *page,
Aneesh Kumar K.V62e086b2009-06-14 17:59:34 -04001665 unsigned int len)
1666{
1667 struct address_space *mapping = page->mapping;
1668 struct inode *inode = mapping->host;
Tao Ma3fdcfb62012-12-10 14:05:57 -05001669 struct buffer_head *page_bufs = NULL;
Aneesh Kumar K.V62e086b2009-06-14 17:59:34 -04001670 handle_t *handle = NULL;
Tao Ma3fdcfb62012-12-10 14:05:57 -05001671 int ret = 0, err = 0;
1672 int inline_data = ext4_has_inline_data(inode);
1673 struct buffer_head *inode_bh = NULL;
Aneesh Kumar K.V62e086b2009-06-14 17:59:34 -04001674
Theodore Ts'ocb20d512010-10-27 21:30:09 -04001675 ClearPageChecked(page);
Tao Ma3fdcfb62012-12-10 14:05:57 -05001676
1677 if (inline_data) {
1678 BUG_ON(page->index != 0);
1679 BUG_ON(len > ext4_get_max_inline_size(inode));
1680 inode_bh = ext4_journalled_write_inline_data(inode, len, page);
1681 if (inode_bh == NULL)
1682 goto out;
1683 } else {
1684 page_bufs = page_buffers(page);
1685 if (!page_bufs) {
1686 BUG();
1687 goto out;
1688 }
1689 ext4_walk_page_buffers(handle, page_bufs, 0, len,
1690 NULL, bget_one);
1691 }
Theodore Ts'obdf96832015-06-12 23:45:33 -04001692 /*
1693 * We need to release the page lock before we start the
1694 * journal, so grab a reference so the page won't disappear
1695 * out from under us.
1696 */
1697 get_page(page);
Aneesh Kumar K.V62e086b2009-06-14 17:59:34 -04001698 unlock_page(page);
1699
Theodore Ts'o9924a922013-02-08 21:59:22 -05001700 handle = ext4_journal_start(inode, EXT4_HT_WRITE_PAGE,
1701 ext4_writepage_trans_blocks(inode));
Aneesh Kumar K.V62e086b2009-06-14 17:59:34 -04001702 if (IS_ERR(handle)) {
1703 ret = PTR_ERR(handle);
Theodore Ts'obdf96832015-06-12 23:45:33 -04001704 put_page(page);
1705 goto out_no_pagelock;
1706 }
1707 BUG_ON(!ext4_handle_valid(handle));
1708
1709 lock_page(page);
1710 put_page(page);
1711 if (page->mapping != mapping) {
1712 /* The page got truncated from under us */
1713 ext4_journal_stop(handle);
1714 ret = 0;
Aneesh Kumar K.V62e086b2009-06-14 17:59:34 -04001715 goto out;
1716 }
1717
Tao Ma3fdcfb62012-12-10 14:05:57 -05001718 if (inline_data) {
liang xie5d601252014-05-12 22:06:43 -04001719 BUFFER_TRACE(inode_bh, "get write access");
Tao Ma3fdcfb62012-12-10 14:05:57 -05001720 ret = ext4_journal_get_write_access(handle, inode_bh);
Aneesh Kumar K.V62e086b2009-06-14 17:59:34 -04001721
Tao Ma3fdcfb62012-12-10 14:05:57 -05001722 err = ext4_handle_dirty_metadata(handle, inode, inode_bh);
1723
1724 } else {
1725 ret = ext4_walk_page_buffers(handle, page_bufs, 0, len, NULL,
1726 do_journal_get_write_access);
1727
1728 err = ext4_walk_page_buffers(handle, page_bufs, 0, len, NULL,
1729 write_end_fn);
1730 }
Aneesh Kumar K.V62e086b2009-06-14 17:59:34 -04001731 if (ret == 0)
1732 ret = err;
Jan Kara2d859db2011-07-26 09:07:11 -04001733 EXT4_I(inode)->i_datasync_tid = handle->h_transaction->t_tid;
Aneesh Kumar K.V62e086b2009-06-14 17:59:34 -04001734 err = ext4_journal_stop(handle);
1735 if (!ret)
1736 ret = err;
1737
Tao Ma3fdcfb62012-12-10 14:05:57 -05001738 if (!ext4_has_inline_data(inode))
Theodore Ts'o8c9367f2014-01-07 13:08:03 -05001739 ext4_walk_page_buffers(NULL, page_bufs, 0, len,
Tao Ma3fdcfb62012-12-10 14:05:57 -05001740 NULL, bput_one);
Theodore Ts'o19f5fb72010-01-24 14:34:07 -05001741 ext4_set_inode_state(inode, EXT4_STATE_JDATA);
Aneesh Kumar K.V62e086b2009-06-14 17:59:34 -04001742out:
Theodore Ts'obdf96832015-06-12 23:45:33 -04001743 unlock_page(page);
1744out_no_pagelock:
Tao Ma3fdcfb62012-12-10 14:05:57 -05001745 brelse(inode_bh);
Aneesh Kumar K.V62e086b2009-06-14 17:59:34 -04001746 return ret;
1747}
1748
Mingming Cao61628a32008-07-11 19:27:31 -04001749/*
Aneesh Kumar K.V43ce1d22009-06-14 17:58:45 -04001750 * Note that we don't need to start a transaction unless we're journaling data
1751 * because we should have holes filled from ext4_page_mkwrite(). We even don't
1752 * need to file the inode to the transaction's list in ordered mode because if
1753 * we are writing back data added by write(), the inode is already there and if
Lucas De Marchi25985ed2011-03-30 22:57:33 -03001754 * we are writing back data modified via mmap(), no one guarantees in which
Aneesh Kumar K.V43ce1d22009-06-14 17:58:45 -04001755 * transaction the data will hit the disk. In case we are journaling data, we
1756 * cannot start transaction directly because transaction start ranks above page
1757 * lock so we have to do some magic.
1758 *
Theodore Ts'ob920c752009-05-14 00:54:29 -04001759 * This function can get called via...
Theodore Ts'o20970ba2013-06-06 14:00:46 -04001760 * - ext4_writepages after taking page lock (have journal handle)
Theodore Ts'ob920c752009-05-14 00:54:29 -04001761 * - journal_submit_inode_data_buffers (no journal handle)
Artem Bityutskiyf6463b02012-07-25 18:12:04 +03001762 * - shrink_page_list via the kswapd/direct reclaim (no journal handle)
Theodore Ts'ob920c752009-05-14 00:54:29 -04001763 * - grab_page_cache when doing write_begin (have journal handle)
Aneesh Kumar K.V43ce1d22009-06-14 17:58:45 -04001764 *
1765 * We don't do any block allocation in this function. If we have page with
1766 * multiple blocks we need to write those buffer_heads that are mapped. This
1767 * is important for mmaped based write. So if we do with blocksize 1K
1768 * truncate(f, 1024);
1769 * a = mmap(f, 0, 4096);
1770 * a[0] = 'a';
1771 * truncate(f, 4096);
1772 * we have in the page first buffer_head mapped via page_mkwrite call back
Paul Bolle90802ed2011-12-05 13:00:34 +01001773 * but other buffer_heads would be unmapped but dirty (dirty done via the
Aneesh Kumar K.V43ce1d22009-06-14 17:58:45 -04001774 * do_wp_page). So writepage should write the first block. If we modify
1775 * the mmap area beyond 1024 we will again get a page_fault and the
1776 * page_mkwrite callback will do the block allocation and mark the
1777 * buffer_heads mapped.
1778 *
1779 * We redirty the page if we have any buffer_heads that is either delay or
1780 * unwritten in the page.
1781 *
1782 * We can get recursively called as show below.
1783 *
1784 * ext4_writepage() -> kmalloc() -> __alloc_pages() -> page_launder() ->
1785 * ext4_writepage()
1786 *
1787 * But since we don't do any block allocation we should not deadlock.
1788 * Page also have the dirty flag cleared so we don't get recurive page_lock.
Mingming Cao61628a32008-07-11 19:27:31 -04001789 */
Aneesh Kumar K.V43ce1d22009-06-14 17:58:45 -04001790static int ext4_writepage(struct page *page,
Aneesh Kumar K.V62e086b2009-06-14 17:59:34 -04001791 struct writeback_control *wbc)
Alex Tomas64769242008-07-11 19:27:31 -04001792{
Jan Karaf8bec372013-01-28 12:55:08 -05001793 int ret = 0;
Mingming Cao61628a32008-07-11 19:27:31 -04001794 loff_t size;
Theodore Ts'o498e5f22008-11-05 00:14:04 -05001795 unsigned int len;
Jiaying Zhang744692d2010-03-04 16:14:02 -05001796 struct buffer_head *page_bufs = NULL;
Mingming Cao61628a32008-07-11 19:27:31 -04001797 struct inode *inode = page->mapping->host;
Jan Kara36ade452013-01-28 09:30:52 -05001798 struct ext4_io_submit io_submit;
Namjae Jeon1c8349a2014-05-12 08:12:25 -04001799 bool keep_towrite = false;
Alex Tomas64769242008-07-11 19:27:31 -04001800
Lukas Czernera9c667f2011-06-06 09:51:52 -04001801 trace_ext4_writepage(page);
Aneesh Kumar K.Vf0e6c982008-07-11 19:27:31 -04001802 size = i_size_read(inode);
1803 if (page->index == size >> PAGE_CACHE_SHIFT)
1804 len = size & ~PAGE_CACHE_MASK;
1805 else
1806 len = PAGE_CACHE_SIZE;
Alex Tomas64769242008-07-11 19:27:31 -04001807
Theodore Ts'oa42afc52010-10-27 21:30:09 -04001808 page_bufs = page_buffers(page);
Aneesh Kumar K.Vc364b222009-06-14 17:57:10 -04001809 /*
Jan Karafe386132013-01-28 21:06:42 -05001810 * We cannot do block allocation or other extent handling in this
1811 * function. If there are buffers needing that, we have to redirty
1812 * the page. But we may reach here when we do a journal commit via
1813 * journal_submit_inode_data_buffers() and in that case we must write
1814 * allocated buffers to achieve data=ordered mode guarantees.
Aneesh Kumar K.Vcd1aac32008-07-11 19:27:31 -04001815 */
Tao Maf19d5872012-12-10 14:05:51 -05001816 if (ext4_walk_page_buffers(NULL, page_bufs, 0, len, NULL,
1817 ext4_bh_delay_or_unwritten)) {
Jan Karaf8bec372013-01-28 12:55:08 -05001818 redirty_page_for_writepage(wbc, page);
Jan Karafe386132013-01-28 21:06:42 -05001819 if (current->flags & PF_MEMALLOC) {
1820 /*
1821 * For memory cleaning there's no point in writing only
1822 * some buffers. So just bail out. Warn if we came here
1823 * from direct reclaim.
1824 */
1825 WARN_ON_ONCE((current->flags & (PF_MEMALLOC|PF_KSWAPD))
1826 == PF_MEMALLOC);
Aneesh Kumar K.Vf0e6c982008-07-11 19:27:31 -04001827 unlock_page(page);
1828 return 0;
1829 }
Namjae Jeon1c8349a2014-05-12 08:12:25 -04001830 keep_towrite = true;
Theodore Ts'oa42afc52010-10-27 21:30:09 -04001831 }
Alex Tomas64769242008-07-11 19:27:31 -04001832
Theodore Ts'ocb20d512010-10-27 21:30:09 -04001833 if (PageChecked(page) && ext4_should_journal_data(inode))
Aneesh Kumar K.V43ce1d22009-06-14 17:58:45 -04001834 /*
1835 * It's mmapped pagecache. Add buffers and journal it. There
1836 * doesn't seem much point in redirtying the page here.
1837 */
Wu Fengguang3f0ca302009-11-24 11:15:44 -05001838 return __ext4_journalled_writepage(page, len);
Aneesh Kumar K.V43ce1d22009-06-14 17:58:45 -04001839
Jan Kara97a851e2013-06-04 11:58:58 -04001840 ext4_io_submit_init(&io_submit, wbc);
1841 io_submit.io_end = ext4_init_io_end(inode, GFP_NOFS);
1842 if (!io_submit.io_end) {
1843 redirty_page_for_writepage(wbc, page);
1844 unlock_page(page);
1845 return -ENOMEM;
1846 }
Namjae Jeon1c8349a2014-05-12 08:12:25 -04001847 ret = ext4_bio_write_page(&io_submit, page, len, wbc, keep_towrite);
Jan Kara36ade452013-01-28 09:30:52 -05001848 ext4_io_submit(&io_submit);
Jan Kara97a851e2013-06-04 11:58:58 -04001849 /* Drop io_end reference we got from init */
1850 ext4_put_io_end_defer(io_submit.io_end);
Alex Tomas64769242008-07-11 19:27:31 -04001851 return ret;
1852}
1853
Jan Kara5f1132b2013-08-17 10:02:33 -04001854static int mpage_submit_page(struct mpage_da_data *mpd, struct page *page)
1855{
1856 int len;
1857 loff_t size = i_size_read(mpd->inode);
1858 int err;
1859
1860 BUG_ON(page->index != mpd->first_page);
1861 if (page->index == size >> PAGE_CACHE_SHIFT)
1862 len = size & ~PAGE_CACHE_MASK;
1863 else
1864 len = PAGE_CACHE_SIZE;
1865 clear_page_dirty_for_io(page);
Namjae Jeon1c8349a2014-05-12 08:12:25 -04001866 err = ext4_bio_write_page(&mpd->io_submit, page, len, mpd->wbc, false);
Jan Kara5f1132b2013-08-17 10:02:33 -04001867 if (!err)
1868 mpd->wbc->nr_to_write--;
1869 mpd->first_page++;
1870
1871 return err;
1872}
1873
Jan Kara4e7ea812013-06-04 13:17:40 -04001874#define BH_FLAGS ((1 << BH_Unwritten) | (1 << BH_Delay))
1875
Mingming Cao61628a32008-07-11 19:27:31 -04001876/*
Jan Karafffb2732013-06-04 13:01:11 -04001877 * mballoc gives us at most this number of blocks...
1878 * XXX: That seems to be only a limitation of ext4_mb_normalize_request().
Anatol Pomozov70261f52013-08-28 14:40:12 -04001879 * The rest of mballoc seems to handle chunks up to full group size.
Mingming Cao61628a32008-07-11 19:27:31 -04001880 */
Jan Karafffb2732013-06-04 13:01:11 -04001881#define MAX_WRITEPAGES_EXTENT_LEN 2048
Mingming Cao525f4ed2008-08-19 22:15:58 -04001882
Jan Karafffb2732013-06-04 13:01:11 -04001883/*
Jan Kara4e7ea812013-06-04 13:17:40 -04001884 * mpage_add_bh_to_extent - try to add bh to extent of blocks to map
1885 *
1886 * @mpd - extent of blocks
1887 * @lblk - logical number of the block in the file
Jan Kara09930042013-08-17 09:57:56 -04001888 * @bh - buffer head we want to add to the extent
Jan Kara4e7ea812013-06-04 13:17:40 -04001889 *
Jan Kara09930042013-08-17 09:57:56 -04001890 * The function is used to collect contig. blocks in the same state. If the
1891 * buffer doesn't require mapping for writeback and we haven't started the
1892 * extent of buffers to map yet, the function returns 'true' immediately - the
1893 * caller can write the buffer right away. Otherwise the function returns true
1894 * if the block has been added to the extent, false if the block couldn't be
1895 * added.
Jan Kara4e7ea812013-06-04 13:17:40 -04001896 */
Jan Kara09930042013-08-17 09:57:56 -04001897static bool mpage_add_bh_to_extent(struct mpage_da_data *mpd, ext4_lblk_t lblk,
1898 struct buffer_head *bh)
Jan Kara4e7ea812013-06-04 13:17:40 -04001899{
1900 struct ext4_map_blocks *map = &mpd->map;
1901
Jan Kara09930042013-08-17 09:57:56 -04001902 /* Buffer that doesn't need mapping for writeback? */
1903 if (!buffer_dirty(bh) || !buffer_mapped(bh) ||
1904 (!buffer_delay(bh) && !buffer_unwritten(bh))) {
1905 /* So far no extent to map => we write the buffer right away */
1906 if (map->m_len == 0)
1907 return true;
1908 return false;
1909 }
Jan Kara4e7ea812013-06-04 13:17:40 -04001910
1911 /* First block in the extent? */
1912 if (map->m_len == 0) {
1913 map->m_lblk = lblk;
1914 map->m_len = 1;
Jan Kara09930042013-08-17 09:57:56 -04001915 map->m_flags = bh->b_state & BH_FLAGS;
1916 return true;
Jan Kara4e7ea812013-06-04 13:17:40 -04001917 }
1918
Jan Kara09930042013-08-17 09:57:56 -04001919 /* Don't go larger than mballoc is willing to allocate */
1920 if (map->m_len >= MAX_WRITEPAGES_EXTENT_LEN)
1921 return false;
1922
Jan Kara4e7ea812013-06-04 13:17:40 -04001923 /* Can we merge the block to our big extent? */
1924 if (lblk == map->m_lblk + map->m_len &&
Jan Kara09930042013-08-17 09:57:56 -04001925 (bh->b_state & BH_FLAGS) == map->m_flags) {
Jan Kara4e7ea812013-06-04 13:17:40 -04001926 map->m_len++;
Jan Kara09930042013-08-17 09:57:56 -04001927 return true;
Jan Kara4e7ea812013-06-04 13:17:40 -04001928 }
Jan Kara09930042013-08-17 09:57:56 -04001929 return false;
Jan Kara4e7ea812013-06-04 13:17:40 -04001930}
1931
Jan Kara5f1132b2013-08-17 10:02:33 -04001932/*
1933 * mpage_process_page_bufs - submit page buffers for IO or add them to extent
1934 *
1935 * @mpd - extent of blocks for mapping
1936 * @head - the first buffer in the page
1937 * @bh - buffer we should start processing from
1938 * @lblk - logical number of the block in the file corresponding to @bh
1939 *
1940 * Walk through page buffers from @bh upto @head (exclusive) and either submit
1941 * the page for IO if all buffers in this page were mapped and there's no
1942 * accumulated extent of buffers to map or add buffers in the page to the
1943 * extent of buffers to map. The function returns 1 if the caller can continue
1944 * by processing the next page, 0 if it should stop adding buffers to the
1945 * extent to map because we cannot extend it anymore. It can also return value
1946 * < 0 in case of error during IO submission.
1947 */
1948static int mpage_process_page_bufs(struct mpage_da_data *mpd,
1949 struct buffer_head *head,
1950 struct buffer_head *bh,
1951 ext4_lblk_t lblk)
Jan Kara4e7ea812013-06-04 13:17:40 -04001952{
1953 struct inode *inode = mpd->inode;
Jan Kara5f1132b2013-08-17 10:02:33 -04001954 int err;
Jan Kara4e7ea812013-06-04 13:17:40 -04001955 ext4_lblk_t blocks = (i_size_read(inode) + (1 << inode->i_blkbits) - 1)
1956 >> inode->i_blkbits;
1957
1958 do {
1959 BUG_ON(buffer_locked(bh));
1960
Jan Kara09930042013-08-17 09:57:56 -04001961 if (lblk >= blocks || !mpage_add_bh_to_extent(mpd, lblk, bh)) {
Jan Kara4e7ea812013-06-04 13:17:40 -04001962 /* Found extent to map? */
1963 if (mpd->map.m_len)
Jan Kara5f1132b2013-08-17 10:02:33 -04001964 return 0;
Jan Kara09930042013-08-17 09:57:56 -04001965 /* Everything mapped so far and we hit EOF */
Jan Kara5f1132b2013-08-17 10:02:33 -04001966 break;
Jan Kara4e7ea812013-06-04 13:17:40 -04001967 }
Jan Kara4e7ea812013-06-04 13:17:40 -04001968 } while (lblk++, (bh = bh->b_this_page) != head);
Jan Kara5f1132b2013-08-17 10:02:33 -04001969 /* So far everything mapped? Submit the page for IO. */
1970 if (mpd->map.m_len == 0) {
1971 err = mpage_submit_page(mpd, head->b_page);
1972 if (err < 0)
1973 return err;
1974 }
1975 return lblk < blocks;
Jan Kara4e7ea812013-06-04 13:17:40 -04001976}
1977
1978/*
1979 * mpage_map_buffers - update buffers corresponding to changed extent and
1980 * submit fully mapped pages for IO
1981 *
1982 * @mpd - description of extent to map, on return next extent to map
1983 *
1984 * Scan buffers corresponding to changed extent (we expect corresponding pages
1985 * to be already locked) and update buffer state according to new extent state.
1986 * We map delalloc buffers to their physical location, clear unwritten bits,
Lukas Czerner556615d2014-04-20 23:45:47 -04001987 * and mark buffers as uninit when we perform writes to unwritten extents
Jan Kara4e7ea812013-06-04 13:17:40 -04001988 * and do extent conversion after IO is finished. If the last page is not fully
1989 * mapped, we update @map to the next extent in the last page that needs
1990 * mapping. Otherwise we submit the page for IO.
1991 */
1992static int mpage_map_and_submit_buffers(struct mpage_da_data *mpd)
1993{
1994 struct pagevec pvec;
1995 int nr_pages, i;
1996 struct inode *inode = mpd->inode;
1997 struct buffer_head *head, *bh;
1998 int bpp_bits = PAGE_CACHE_SHIFT - inode->i_blkbits;
Jan Kara4e7ea812013-06-04 13:17:40 -04001999 pgoff_t start, end;
2000 ext4_lblk_t lblk;
2001 sector_t pblock;
2002 int err;
2003
2004 start = mpd->map.m_lblk >> bpp_bits;
2005 end = (mpd->map.m_lblk + mpd->map.m_len - 1) >> bpp_bits;
2006 lblk = start << bpp_bits;
2007 pblock = mpd->map.m_pblk;
2008
2009 pagevec_init(&pvec, 0);
2010 while (start <= end) {
2011 nr_pages = pagevec_lookup(&pvec, inode->i_mapping, start,
2012 PAGEVEC_SIZE);
2013 if (nr_pages == 0)
2014 break;
2015 for (i = 0; i < nr_pages; i++) {
2016 struct page *page = pvec.pages[i];
2017
2018 if (page->index > end)
2019 break;
Anatol Pomozov70261f52013-08-28 14:40:12 -04002020 /* Up to 'end' pages must be contiguous */
Jan Kara4e7ea812013-06-04 13:17:40 -04002021 BUG_ON(page->index != start);
2022 bh = head = page_buffers(page);
2023 do {
2024 if (lblk < mpd->map.m_lblk)
2025 continue;
2026 if (lblk >= mpd->map.m_lblk + mpd->map.m_len) {
2027 /*
2028 * Buffer after end of mapped extent.
2029 * Find next buffer in the page to map.
2030 */
2031 mpd->map.m_len = 0;
2032 mpd->map.m_flags = 0;
Jan Kara5f1132b2013-08-17 10:02:33 -04002033 /*
2034 * FIXME: If dioread_nolock supports
2035 * blocksize < pagesize, we need to make
2036 * sure we add size mapped so far to
2037 * io_end->size as the following call
2038 * can submit the page for IO.
2039 */
2040 err = mpage_process_page_bufs(mpd, head,
2041 bh, lblk);
Jan Kara4e7ea812013-06-04 13:17:40 -04002042 pagevec_release(&pvec);
Jan Kara5f1132b2013-08-17 10:02:33 -04002043 if (err > 0)
2044 err = 0;
2045 return err;
Jan Kara4e7ea812013-06-04 13:17:40 -04002046 }
2047 if (buffer_delay(bh)) {
2048 clear_buffer_delay(bh);
2049 bh->b_blocknr = pblock++;
2050 }
Jan Kara4e7ea812013-06-04 13:17:40 -04002051 clear_buffer_unwritten(bh);
Jan Kara5f1132b2013-08-17 10:02:33 -04002052 } while (lblk++, (bh = bh->b_this_page) != head);
Jan Kara4e7ea812013-06-04 13:17:40 -04002053
2054 /*
2055 * FIXME: This is going to break if dioread_nolock
2056 * supports blocksize < pagesize as we will try to
2057 * convert potentially unmapped parts of inode.
2058 */
2059 mpd->io_submit.io_end->size += PAGE_CACHE_SIZE;
2060 /* Page fully mapped - let IO run! */
2061 err = mpage_submit_page(mpd, page);
2062 if (err < 0) {
2063 pagevec_release(&pvec);
2064 return err;
2065 }
2066 start++;
2067 }
2068 pagevec_release(&pvec);
2069 }
2070 /* Extent fully mapped and matches with page boundary. We are done. */
2071 mpd->map.m_len = 0;
2072 mpd->map.m_flags = 0;
2073 return 0;
2074}
2075
2076static int mpage_map_one_extent(handle_t *handle, struct mpage_da_data *mpd)
2077{
2078 struct inode *inode = mpd->inode;
2079 struct ext4_map_blocks *map = &mpd->map;
2080 int get_blocks_flags;
Lukas Czerner090f32e2014-04-20 23:44:47 -04002081 int err, dioread_nolock;
Jan Kara4e7ea812013-06-04 13:17:40 -04002082
2083 trace_ext4_da_write_pages_extent(inode, map);
2084 /*
2085 * Call ext4_map_blocks() to allocate any delayed allocation blocks, or
Lukas Czerner556615d2014-04-20 23:45:47 -04002086 * to convert an unwritten extent to be initialized (in the case
Jan Kara4e7ea812013-06-04 13:17:40 -04002087 * where we have written into one or more preallocated blocks). It is
2088 * possible that we're going to need more metadata blocks than
2089 * previously reserved. However we must not fail because we're in
2090 * writeback and there is nothing we can do about it so it might result
2091 * in data loss. So use reserved blocks to allocate metadata if
2092 * possible.
2093 *
Theodore Ts'o754cfed2014-09-04 18:08:22 -04002094 * We pass in the magic EXT4_GET_BLOCKS_DELALLOC_RESERVE if
2095 * the blocks in question are delalloc blocks. This indicates
2096 * that the blocks and quotas has already been checked when
2097 * the data was copied into the page cache.
Jan Kara4e7ea812013-06-04 13:17:40 -04002098 */
2099 get_blocks_flags = EXT4_GET_BLOCKS_CREATE |
2100 EXT4_GET_BLOCKS_METADATA_NOFAIL;
Lukas Czerner090f32e2014-04-20 23:44:47 -04002101 dioread_nolock = ext4_should_dioread_nolock(inode);
2102 if (dioread_nolock)
Jan Kara4e7ea812013-06-04 13:17:40 -04002103 get_blocks_flags |= EXT4_GET_BLOCKS_IO_CREATE_EXT;
2104 if (map->m_flags & (1 << BH_Delay))
2105 get_blocks_flags |= EXT4_GET_BLOCKS_DELALLOC_RESERVE;
2106
2107 err = ext4_map_blocks(handle, inode, map, get_blocks_flags);
2108 if (err < 0)
2109 return err;
Lukas Czerner090f32e2014-04-20 23:44:47 -04002110 if (dioread_nolock && (map->m_flags & EXT4_MAP_UNWRITTEN)) {
Jan Kara6b523df2013-06-04 13:21:11 -04002111 if (!mpd->io_submit.io_end->handle &&
2112 ext4_handle_valid(handle)) {
2113 mpd->io_submit.io_end->handle = handle->h_rsv_handle;
2114 handle->h_rsv_handle = NULL;
2115 }
Jan Kara3613d222013-06-04 13:19:34 -04002116 ext4_set_io_unwritten_flag(inode, mpd->io_submit.io_end);
Jan Kara6b523df2013-06-04 13:21:11 -04002117 }
Jan Kara4e7ea812013-06-04 13:17:40 -04002118
2119 BUG_ON(map->m_len == 0);
2120 if (map->m_flags & EXT4_MAP_NEW) {
2121 struct block_device *bdev = inode->i_sb->s_bdev;
2122 int i;
2123
2124 for (i = 0; i < map->m_len; i++)
2125 unmap_underlying_metadata(bdev, map->m_pblk + i);
2126 }
2127 return 0;
2128}
2129
2130/*
2131 * mpage_map_and_submit_extent - map extent starting at mpd->lblk of length
2132 * mpd->len and submit pages underlying it for IO
2133 *
2134 * @handle - handle for journal operations
2135 * @mpd - extent to map
Jan Kara7534e852013-10-16 08:26:08 -04002136 * @give_up_on_write - we set this to true iff there is a fatal error and there
2137 * is no hope of writing the data. The caller should discard
2138 * dirty pages to avoid infinite loops.
Jan Kara4e7ea812013-06-04 13:17:40 -04002139 *
2140 * The function maps extent starting at mpd->lblk of length mpd->len. If it is
2141 * delayed, blocks are allocated, if it is unwritten, we may need to convert
2142 * them to initialized or split the described range from larger unwritten
2143 * extent. Note that we need not map all the described range since allocation
2144 * can return less blocks or the range is covered by more unwritten extents. We
2145 * cannot map more because we are limited by reserved transaction credits. On
2146 * the other hand we always make sure that the last touched page is fully
2147 * mapped so that it can be written out (and thus forward progress is
2148 * guaranteed). After mapping we submit all mapped pages for IO.
2149 */
2150static int mpage_map_and_submit_extent(handle_t *handle,
Theodore Ts'ocb530542013-07-01 08:12:40 -04002151 struct mpage_da_data *mpd,
2152 bool *give_up_on_write)
Jan Kara4e7ea812013-06-04 13:17:40 -04002153{
2154 struct inode *inode = mpd->inode;
2155 struct ext4_map_blocks *map = &mpd->map;
2156 int err;
2157 loff_t disksize;
Dmitry Monakhov66031202014-08-27 18:40:03 -04002158 int progress = 0;
Jan Kara4e7ea812013-06-04 13:17:40 -04002159
2160 mpd->io_submit.io_end->offset =
2161 ((loff_t)map->m_lblk) << inode->i_blkbits;
Jan Kara27d7c4e2013-07-05 21:57:22 -04002162 do {
Jan Kara4e7ea812013-06-04 13:17:40 -04002163 err = mpage_map_one_extent(handle, mpd);
2164 if (err < 0) {
2165 struct super_block *sb = inode->i_sb;
2166
Theodore Ts'ocb530542013-07-01 08:12:40 -04002167 if (EXT4_SB(sb)->s_mount_flags & EXT4_MF_FS_ABORTED)
2168 goto invalidate_dirty_pages;
Jan Kara4e7ea812013-06-04 13:17:40 -04002169 /*
Theodore Ts'ocb530542013-07-01 08:12:40 -04002170 * Let the uper layers retry transient errors.
2171 * In the case of ENOSPC, if ext4_count_free_blocks()
2172 * is non-zero, a commit should free up blocks.
Jan Kara4e7ea812013-06-04 13:17:40 -04002173 */
Theodore Ts'ocb530542013-07-01 08:12:40 -04002174 if ((err == -ENOMEM) ||
Dmitry Monakhov66031202014-08-27 18:40:03 -04002175 (err == -ENOSPC && ext4_count_free_clusters(sb))) {
2176 if (progress)
2177 goto update_disksize;
Theodore Ts'ocb530542013-07-01 08:12:40 -04002178 return err;
Dmitry Monakhov66031202014-08-27 18:40:03 -04002179 }
Theodore Ts'ocb530542013-07-01 08:12:40 -04002180 ext4_msg(sb, KERN_CRIT,
2181 "Delayed block allocation failed for "
2182 "inode %lu at logical offset %llu with"
2183 " max blocks %u with error %d",
2184 inode->i_ino,
2185 (unsigned long long)map->m_lblk,
2186 (unsigned)map->m_len, -err);
2187 ext4_msg(sb, KERN_CRIT,
2188 "This should not happen!! Data will "
2189 "be lost\n");
2190 if (err == -ENOSPC)
2191 ext4_print_free_blocks(inode);
2192 invalidate_dirty_pages:
2193 *give_up_on_write = true;
Jan Kara4e7ea812013-06-04 13:17:40 -04002194 return err;
2195 }
Dmitry Monakhov66031202014-08-27 18:40:03 -04002196 progress = 1;
Jan Kara4e7ea812013-06-04 13:17:40 -04002197 /*
2198 * Update buffer state, submit mapped pages, and get us new
2199 * extent to map
2200 */
2201 err = mpage_map_and_submit_buffers(mpd);
2202 if (err < 0)
Dmitry Monakhov66031202014-08-27 18:40:03 -04002203 goto update_disksize;
Jan Kara27d7c4e2013-07-05 21:57:22 -04002204 } while (map->m_len);
Jan Kara4e7ea812013-06-04 13:17:40 -04002205
Dmitry Monakhov66031202014-08-27 18:40:03 -04002206update_disksize:
Theodore Ts'o622cad12014-04-11 10:35:17 -04002207 /*
2208 * Update on-disk size after IO is submitted. Races with
2209 * truncate are avoided by checking i_size under i_data_sem.
2210 */
Jan Kara4e7ea812013-06-04 13:17:40 -04002211 disksize = ((loff_t)mpd->first_page) << PAGE_CACHE_SHIFT;
Jan Kara4e7ea812013-06-04 13:17:40 -04002212 if (disksize > EXT4_I(inode)->i_disksize) {
2213 int err2;
Theodore Ts'o622cad12014-04-11 10:35:17 -04002214 loff_t i_size;
Jan Kara4e7ea812013-06-04 13:17:40 -04002215
Theodore Ts'o622cad12014-04-11 10:35:17 -04002216 down_write(&EXT4_I(inode)->i_data_sem);
2217 i_size = i_size_read(inode);
2218 if (disksize > i_size)
2219 disksize = i_size;
2220 if (disksize > EXT4_I(inode)->i_disksize)
2221 EXT4_I(inode)->i_disksize = disksize;
Jan Kara4e7ea812013-06-04 13:17:40 -04002222 err2 = ext4_mark_inode_dirty(handle, inode);
Theodore Ts'o622cad12014-04-11 10:35:17 -04002223 up_write(&EXT4_I(inode)->i_data_sem);
Jan Kara4e7ea812013-06-04 13:17:40 -04002224 if (err2)
2225 ext4_error(inode->i_sb,
2226 "Failed to mark inode %lu dirty",
2227 inode->i_ino);
2228 if (!err)
2229 err = err2;
2230 }
2231 return err;
2232}
2233
2234/*
Jan Karafffb2732013-06-04 13:01:11 -04002235 * Calculate the total number of credits to reserve for one writepages
Theodore Ts'o20970ba2013-06-06 14:00:46 -04002236 * iteration. This is called from ext4_writepages(). We map an extent of
Anatol Pomozov70261f52013-08-28 14:40:12 -04002237 * up to MAX_WRITEPAGES_EXTENT_LEN blocks and then we go on and finish mapping
Jan Karafffb2732013-06-04 13:01:11 -04002238 * the last partial page. So in total we can map MAX_WRITEPAGES_EXTENT_LEN +
2239 * bpp - 1 blocks in bpp different extents.
2240 */
Mingming Cao525f4ed2008-08-19 22:15:58 -04002241static int ext4_da_writepages_trans_blocks(struct inode *inode)
2242{
Jan Karafffb2732013-06-04 13:01:11 -04002243 int bpp = ext4_journal_blocks_per_page(inode);
Mingming Cao525f4ed2008-08-19 22:15:58 -04002244
Jan Karafffb2732013-06-04 13:01:11 -04002245 return ext4_meta_trans_blocks(inode,
2246 MAX_WRITEPAGES_EXTENT_LEN + bpp - 1, bpp);
Mingming Cao525f4ed2008-08-19 22:15:58 -04002247}
Mingming Cao61628a32008-07-11 19:27:31 -04002248
Theodore Ts'o8e48dcf2010-05-16 18:00:00 -04002249/*
Jan Kara4e7ea812013-06-04 13:17:40 -04002250 * mpage_prepare_extent_to_map - find & lock contiguous range of dirty pages
2251 * and underlying extent to map
2252 *
2253 * @mpd - where to look for pages
2254 *
2255 * Walk dirty pages in the mapping. If they are fully mapped, submit them for
2256 * IO immediately. When we find a page which isn't mapped we start accumulating
2257 * extent of buffers underlying these pages that needs mapping (formed by
2258 * either delayed or unwritten buffers). We also lock the pages containing
2259 * these buffers. The extent found is returned in @mpd structure (starting at
2260 * mpd->lblk with length mpd->len blocks).
2261 *
2262 * Note that this function can attach bios to one io_end structure which are
2263 * neither logically nor physically contiguous. Although it may seem as an
2264 * unnecessary complication, it is actually inevitable in blocksize < pagesize
2265 * 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 -04002266 */
Jan Kara4e7ea812013-06-04 13:17:40 -04002267static int mpage_prepare_extent_to_map(struct mpage_da_data *mpd)
Theodore Ts'o8e48dcf2010-05-16 18:00:00 -04002268{
Jan Kara4e7ea812013-06-04 13:17:40 -04002269 struct address_space *mapping = mpd->inode->i_mapping;
2270 struct pagevec pvec;
2271 unsigned int nr_pages;
Ming Leiaeac5892013-10-17 18:56:16 -04002272 long left = mpd->wbc->nr_to_write;
Jan Kara4e7ea812013-06-04 13:17:40 -04002273 pgoff_t index = mpd->first_page;
2274 pgoff_t end = mpd->last_page;
2275 int tag;
2276 int i, err = 0;
2277 int blkbits = mpd->inode->i_blkbits;
2278 ext4_lblk_t lblk;
2279 struct buffer_head *head;
Theodore Ts'o8e48dcf2010-05-16 18:00:00 -04002280
Jan Kara4e7ea812013-06-04 13:17:40 -04002281 if (mpd->wbc->sync_mode == WB_SYNC_ALL || mpd->wbc->tagged_writepages)
Eric Sandeen5b41d922010-10-27 21:30:13 -04002282 tag = PAGECACHE_TAG_TOWRITE;
2283 else
2284 tag = PAGECACHE_TAG_DIRTY;
2285
Jan Kara4e7ea812013-06-04 13:17:40 -04002286 pagevec_init(&pvec, 0);
2287 mpd->map.m_len = 0;
2288 mpd->next_page = index;
Theodore Ts'o4f01b022011-02-26 14:07:37 -05002289 while (index <= end) {
Eric Sandeen5b41d922010-10-27 21:30:13 -04002290 nr_pages = pagevec_lookup_tag(&pvec, mapping, &index, tag,
Theodore Ts'o8e48dcf2010-05-16 18:00:00 -04002291 min(end - index, (pgoff_t)PAGEVEC_SIZE-1) + 1);
2292 if (nr_pages == 0)
Jan Kara4e7ea812013-06-04 13:17:40 -04002293 goto out;
Theodore Ts'o8e48dcf2010-05-16 18:00:00 -04002294
2295 for (i = 0; i < nr_pages; i++) {
2296 struct page *page = pvec.pages[i];
2297
2298 /*
2299 * At this point, the page may be truncated or
2300 * invalidated (changing page->mapping to NULL), or
2301 * even swizzled back from swapper_space to tmpfs file
2302 * mapping. However, page->index will not change
2303 * because we have a reference on the page.
2304 */
Theodore Ts'o4f01b022011-02-26 14:07:37 -05002305 if (page->index > end)
2306 goto out;
Theodore Ts'o8e48dcf2010-05-16 18:00:00 -04002307
Ming Leiaeac5892013-10-17 18:56:16 -04002308 /*
2309 * Accumulated enough dirty pages? This doesn't apply
2310 * to WB_SYNC_ALL mode. For integrity sync we have to
2311 * keep going because someone may be concurrently
2312 * dirtying pages, and we might have synced a lot of
2313 * newly appeared dirty pages, but have not synced all
2314 * of the old dirty pages.
2315 */
2316 if (mpd->wbc->sync_mode == WB_SYNC_NONE && left <= 0)
2317 goto out;
2318
Jan Kara4e7ea812013-06-04 13:17:40 -04002319 /* If we can't merge this page, we are done. */
2320 if (mpd->map.m_len > 0 && mpd->next_page != page->index)
2321 goto out;
Theodore Ts'o78aaced2011-02-26 14:09:14 -05002322
Theodore Ts'o8e48dcf2010-05-16 18:00:00 -04002323 lock_page(page);
Theodore Ts'o8e48dcf2010-05-16 18:00:00 -04002324 /*
Jan Kara4e7ea812013-06-04 13:17:40 -04002325 * If the page is no longer dirty, or its mapping no
2326 * longer corresponds to inode we are writing (which
2327 * means it has been truncated or invalidated), or the
2328 * page is already under writeback and we are not doing
2329 * a data integrity writeback, skip the page
Theodore Ts'o8e48dcf2010-05-16 18:00:00 -04002330 */
Theodore Ts'o4f01b022011-02-26 14:07:37 -05002331 if (!PageDirty(page) ||
2332 (PageWriteback(page) &&
Jan Kara4e7ea812013-06-04 13:17:40 -04002333 (mpd->wbc->sync_mode == WB_SYNC_NONE)) ||
Theodore Ts'o4f01b022011-02-26 14:07:37 -05002334 unlikely(page->mapping != mapping)) {
Theodore Ts'o8e48dcf2010-05-16 18:00:00 -04002335 unlock_page(page);
2336 continue;
2337 }
2338
Darrick J. Wong7cb1a532011-05-18 13:53:20 -04002339 wait_on_page_writeback(page);
Theodore Ts'o8e48dcf2010-05-16 18:00:00 -04002340 BUG_ON(PageWriteback(page));
Theodore Ts'o8e48dcf2010-05-16 18:00:00 -04002341
Jan Kara4e7ea812013-06-04 13:17:40 -04002342 if (mpd->map.m_len == 0)
Theodore Ts'o8eb9e5c2011-02-26 14:07:31 -05002343 mpd->first_page = page->index;
Theodore Ts'o8eb9e5c2011-02-26 14:07:31 -05002344 mpd->next_page = page->index + 1;
Jan Karaf8bec372013-01-28 12:55:08 -05002345 /* Add all dirty buffers to mpd */
Jan Kara4e7ea812013-06-04 13:17:40 -04002346 lblk = ((ext4_lblk_t)page->index) <<
2347 (PAGE_CACHE_SHIFT - blkbits);
Jan Karaf8bec372013-01-28 12:55:08 -05002348 head = page_buffers(page);
Jan Kara5f1132b2013-08-17 10:02:33 -04002349 err = mpage_process_page_bufs(mpd, head, head, lblk);
2350 if (err <= 0)
Jan Kara4e7ea812013-06-04 13:17:40 -04002351 goto out;
Jan Kara5f1132b2013-08-17 10:02:33 -04002352 err = 0;
Ming Leiaeac5892013-10-17 18:56:16 -04002353 left--;
Theodore Ts'o8e48dcf2010-05-16 18:00:00 -04002354 }
2355 pagevec_release(&pvec);
2356 cond_resched();
2357 }
Theodore Ts'o4f01b022011-02-26 14:07:37 -05002358 return 0;
Theodore Ts'o8eb9e5c2011-02-26 14:07:31 -05002359out:
2360 pagevec_release(&pvec);
Jan Kara4e7ea812013-06-04 13:17:40 -04002361 return err;
Theodore Ts'o8e48dcf2010-05-16 18:00:00 -04002362}
2363
Theodore Ts'o20970ba2013-06-06 14:00:46 -04002364static int __writepage(struct page *page, struct writeback_control *wbc,
2365 void *data)
2366{
2367 struct address_space *mapping = data;
2368 int ret = ext4_writepage(page, wbc);
2369 mapping_set_error(mapping, ret);
2370 return ret;
2371}
2372
2373static int ext4_writepages(struct address_space *mapping,
2374 struct writeback_control *wbc)
Alex Tomas64769242008-07-11 19:27:31 -04002375{
Jan Kara4e7ea812013-06-04 13:17:40 -04002376 pgoff_t writeback_index = 0;
2377 long nr_to_write = wbc->nr_to_write;
Aneesh Kumar K.V22208de2008-10-16 10:10:36 -04002378 int range_whole = 0;
Jan Kara4e7ea812013-06-04 13:17:40 -04002379 int cycled = 1;
Mingming Cao61628a32008-07-11 19:27:31 -04002380 handle_t *handle = NULL;
Aneesh Kumar K.Vdf222912008-09-08 23:05:34 -04002381 struct mpage_da_data mpd;
Aneesh Kumar K.V5e745b02008-08-18 18:00:57 -04002382 struct inode *inode = mapping->host;
Jan Kara6b523df2013-06-04 13:21:11 -04002383 int needed_blocks, rsv_blocks = 0, ret = 0;
Aneesh Kumar K.V5e745b02008-08-18 18:00:57 -04002384 struct ext4_sb_info *sbi = EXT4_SB(mapping->host->i_sb);
Jan Kara4e7ea812013-06-04 13:17:40 -04002385 bool done;
Shaohua Li1bce63d2011-10-18 10:55:51 -04002386 struct blk_plug plug;
Theodore Ts'ocb530542013-07-01 08:12:40 -04002387 bool give_up_on_write = false;
Mingming Cao61628a32008-07-11 19:27:31 -04002388
Theodore Ts'o20970ba2013-06-06 14:00:46 -04002389 trace_ext4_writepages(inode, wbc);
Theodore Ts'oba80b102009-01-03 20:03:21 -05002390
Mingming Cao61628a32008-07-11 19:27:31 -04002391 /*
2392 * No pages to write? This is mainly a kludge to avoid starting
2393 * a transaction for special inodes like journal inode on last iput()
2394 * because that could violate lock ordering on umount
2395 */
Aneesh Kumar K.Va1d6cc52008-08-19 21:55:02 -04002396 if (!mapping->nrpages || !mapping_tagged(mapping, PAGECACHE_TAG_DIRTY))
Ming Leibbf023c2013-10-30 07:27:16 -04002397 goto out_writepages;
Theodore Ts'o2a21e372008-11-05 09:22:24 -05002398
Theodore Ts'o20970ba2013-06-06 14:00:46 -04002399 if (ext4_should_journal_data(inode)) {
2400 struct blk_plug plug;
Theodore Ts'o20970ba2013-06-06 14:00:46 -04002401
2402 blk_start_plug(&plug);
2403 ret = write_cache_pages(mapping, wbc, __writepage, mapping);
2404 blk_finish_plug(&plug);
Ming Leibbf023c2013-10-30 07:27:16 -04002405 goto out_writepages;
Theodore Ts'o20970ba2013-06-06 14:00:46 -04002406 }
2407
Theodore Ts'o2a21e372008-11-05 09:22:24 -05002408 /*
2409 * If the filesystem has aborted, it is read-only, so return
2410 * right away instead of dumping stack traces later on that
2411 * will obscure the real source of the problem. We test
Theodore Ts'o4ab2f152009-06-13 10:09:36 -04002412 * EXT4_MF_FS_ABORTED instead of sb->s_flag's MS_RDONLY because
Theodore Ts'o2a21e372008-11-05 09:22:24 -05002413 * the latter could be true if the filesystem is mounted
Theodore Ts'o20970ba2013-06-06 14:00:46 -04002414 * read-only, and in that case, ext4_writepages should
Theodore Ts'o2a21e372008-11-05 09:22:24 -05002415 * *never* be called, so if that ever happens, we would want
2416 * the stack trace.
2417 */
Ming Leibbf023c2013-10-30 07:27:16 -04002418 if (unlikely(sbi->s_mount_flags & EXT4_MF_FS_ABORTED)) {
2419 ret = -EROFS;
2420 goto out_writepages;
2421 }
Theodore Ts'o2a21e372008-11-05 09:22:24 -05002422
Jan Kara6b523df2013-06-04 13:21:11 -04002423 if (ext4_should_dioread_nolock(inode)) {
2424 /*
Anatol Pomozov70261f52013-08-28 14:40:12 -04002425 * We may need to convert up to one extent per block in
Jan Kara6b523df2013-06-04 13:21:11 -04002426 * the page and we may dirty the inode.
2427 */
2428 rsv_blocks = 1 + (PAGE_CACHE_SIZE >> inode->i_blkbits);
2429 }
2430
Jan Kara4e7ea812013-06-04 13:17:40 -04002431 /*
2432 * If we have inline data and arrive here, it means that
2433 * we will soon create the block for the 1st page, so
2434 * we'd better clear the inline data here.
2435 */
2436 if (ext4_has_inline_data(inode)) {
2437 /* Just inode will be modified... */
2438 handle = ext4_journal_start(inode, EXT4_HT_INODE, 1);
2439 if (IS_ERR(handle)) {
2440 ret = PTR_ERR(handle);
2441 goto out_writepages;
2442 }
2443 BUG_ON(ext4_test_inode_state(inode,
2444 EXT4_STATE_MAY_INLINE_DATA));
2445 ext4_destroy_inline_data(handle, inode);
2446 ext4_journal_stop(handle);
2447 }
2448
Aneesh Kumar K.V22208de2008-10-16 10:10:36 -04002449 if (wbc->range_start == 0 && wbc->range_end == LLONG_MAX)
2450 range_whole = 1;
Mingming Cao61628a32008-07-11 19:27:31 -04002451
Aneesh Kumar K.V2acf2c22009-02-14 10:42:58 -05002452 if (wbc->range_cyclic) {
Jan Kara4e7ea812013-06-04 13:17:40 -04002453 writeback_index = mapping->writeback_index;
2454 if (writeback_index)
Aneesh Kumar K.V2acf2c22009-02-14 10:42:58 -05002455 cycled = 0;
Jan Kara4e7ea812013-06-04 13:17:40 -04002456 mpd.first_page = writeback_index;
2457 mpd.last_page = -1;
Eric Sandeen5b41d922010-10-27 21:30:13 -04002458 } else {
Jan Kara4e7ea812013-06-04 13:17:40 -04002459 mpd.first_page = wbc->range_start >> PAGE_CACHE_SHIFT;
2460 mpd.last_page = wbc->range_end >> PAGE_CACHE_SHIFT;
Eric Sandeen5b41d922010-10-27 21:30:13 -04002461 }
Aneesh Kumar K.Va1d6cc52008-08-19 21:55:02 -04002462
Jan Kara4e7ea812013-06-04 13:17:40 -04002463 mpd.inode = inode;
2464 mpd.wbc = wbc;
2465 ext4_io_submit_init(&mpd.io_submit, wbc);
Aneesh Kumar K.V2acf2c22009-02-14 10:42:58 -05002466retry:
Wu Fengguang6e6938b2010-06-06 10:38:15 -06002467 if (wbc->sync_mode == WB_SYNC_ALL || wbc->tagged_writepages)
Jan Kara4e7ea812013-06-04 13:17:40 -04002468 tag_pages_for_writeback(mapping, mpd.first_page, mpd.last_page);
2469 done = false;
Shaohua Li1bce63d2011-10-18 10:55:51 -04002470 blk_start_plug(&plug);
Jan Kara4e7ea812013-06-04 13:17:40 -04002471 while (!done && mpd.first_page <= mpd.last_page) {
2472 /* For each extent of pages we use new io_end */
2473 mpd.io_submit.io_end = ext4_init_io_end(inode, GFP_KERNEL);
2474 if (!mpd.io_submit.io_end) {
2475 ret = -ENOMEM;
2476 break;
2477 }
Aneesh Kumar K.Va1d6cc52008-08-19 21:55:02 -04002478
2479 /*
Jan Kara4e7ea812013-06-04 13:17:40 -04002480 * We have two constraints: We find one extent to map and we
2481 * must always write out whole page (makes a difference when
2482 * blocksize < pagesize) so that we don't block on IO when we
2483 * try to write out the rest of the page. Journalled mode is
2484 * not supported by delalloc.
Aneesh Kumar K.Va1d6cc52008-08-19 21:55:02 -04002485 */
2486 BUG_ON(ext4_should_journal_data(inode));
Mingming Cao525f4ed2008-08-19 22:15:58 -04002487 needed_blocks = ext4_da_writepages_trans_blocks(inode);
Aneesh Kumar K.Va1d6cc52008-08-19 21:55:02 -04002488
Jan Kara4e7ea812013-06-04 13:17:40 -04002489 /* start a new transaction */
Jan Kara6b523df2013-06-04 13:21:11 -04002490 handle = ext4_journal_start_with_reserve(inode,
2491 EXT4_HT_WRITE_PAGE, needed_blocks, rsv_blocks);
Mingming Cao61628a32008-07-11 19:27:31 -04002492 if (IS_ERR(handle)) {
2493 ret = PTR_ERR(handle);
Theodore Ts'o16939182009-09-26 17:43:59 -04002494 ext4_msg(inode->i_sb, KERN_CRIT, "%s: jbd2_start: "
Curt Wohlgemuthfbe845d2010-05-16 13:00:00 -04002495 "%ld pages, ino %lu; err %d", __func__,
Aneesh Kumar K.Va1d6cc52008-08-19 21:55:02 -04002496 wbc->nr_to_write, inode->i_ino, ret);
Jan Kara4e7ea812013-06-04 13:17:40 -04002497 /* Release allocated io_end */
2498 ext4_put_io_end(mpd.io_submit.io_end);
2499 break;
Mingming Cao61628a32008-07-11 19:27:31 -04002500 }
Theodore Ts'of63e6002009-02-23 16:42:39 -05002501
Jan Kara4e7ea812013-06-04 13:17:40 -04002502 trace_ext4_da_write_pages(inode, mpd.first_page, mpd.wbc);
2503 ret = mpage_prepare_extent_to_map(&mpd);
2504 if (!ret) {
2505 if (mpd.map.m_len)
Theodore Ts'ocb530542013-07-01 08:12:40 -04002506 ret = mpage_map_and_submit_extent(handle, &mpd,
2507 &give_up_on_write);
Jan Kara4e7ea812013-06-04 13:17:40 -04002508 else {
2509 /*
2510 * We scanned the whole range (or exhausted
2511 * nr_to_write), submitted what was mapped and
2512 * didn't find anything needing mapping. We are
2513 * done.
2514 */
2515 done = true;
2516 }
Theodore Ts'of63e6002009-02-23 16:42:39 -05002517 }
Mingming Cao61628a32008-07-11 19:27:31 -04002518 ext4_journal_stop(handle);
Jan Kara4e7ea812013-06-04 13:17:40 -04002519 /* Submit prepared bio */
2520 ext4_io_submit(&mpd.io_submit);
2521 /* Unlock pages we didn't use */
Theodore Ts'ocb530542013-07-01 08:12:40 -04002522 mpage_release_unused_pages(&mpd, give_up_on_write);
Jan Kara4e7ea812013-06-04 13:17:40 -04002523 /* Drop our io_end reference we got from init */
2524 ext4_put_io_end(mpd.io_submit.io_end);
Aneesh Kumar K.Vdf222912008-09-08 23:05:34 -04002525
Jan Kara4e7ea812013-06-04 13:17:40 -04002526 if (ret == -ENOSPC && sbi->s_journal) {
2527 /*
2528 * Commit the transaction which would
Aneesh Kumar K.V22208de2008-10-16 10:10:36 -04002529 * free blocks released in the transaction
2530 * and try again
2531 */
Aneesh Kumar K.Vdf222912008-09-08 23:05:34 -04002532 jbd2_journal_force_commit_nested(sbi->s_journal);
Aneesh Kumar K.V22208de2008-10-16 10:10:36 -04002533 ret = 0;
Jan Kara4e7ea812013-06-04 13:17:40 -04002534 continue;
2535 }
2536 /* Fatal error - ENOMEM, EIO... */
2537 if (ret)
Mingming Cao61628a32008-07-11 19:27:31 -04002538 break;
Mingming Cao61628a32008-07-11 19:27:31 -04002539 }
Shaohua Li1bce63d2011-10-18 10:55:51 -04002540 blk_finish_plug(&plug);
Jan Kara9c12a832013-09-16 08:24:26 -04002541 if (!ret && !cycled && wbc->nr_to_write > 0) {
Aneesh Kumar K.V2acf2c22009-02-14 10:42:58 -05002542 cycled = 1;
Jan Kara4e7ea812013-06-04 13:17:40 -04002543 mpd.last_page = writeback_index - 1;
2544 mpd.first_page = 0;
Aneesh Kumar K.V2acf2c22009-02-14 10:42:58 -05002545 goto retry;
2546 }
Mingming Cao61628a32008-07-11 19:27:31 -04002547
Aneesh Kumar K.V22208de2008-10-16 10:10:36 -04002548 /* Update index */
Aneesh Kumar K.V22208de2008-10-16 10:10:36 -04002549 if (wbc->range_cyclic || (range_whole && wbc->nr_to_write > 0))
2550 /*
Jan Kara4e7ea812013-06-04 13:17:40 -04002551 * Set the writeback_index so that range_cyclic
Aneesh Kumar K.V22208de2008-10-16 10:10:36 -04002552 * mode will write it back later
2553 */
Jan Kara4e7ea812013-06-04 13:17:40 -04002554 mapping->writeback_index = mpd.first_page;
Aneesh Kumar K.Va1d6cc52008-08-19 21:55:02 -04002555
Mingming Cao61628a32008-07-11 19:27:31 -04002556out_writepages:
Theodore Ts'o20970ba2013-06-06 14:00:46 -04002557 trace_ext4_writepages_result(inode, wbc, ret,
2558 nr_to_write - wbc->nr_to_write);
Mingming Cao61628a32008-07-11 19:27:31 -04002559 return ret;
Alex Tomas64769242008-07-11 19:27:31 -04002560}
2561
Aneesh Kumar K.V79f0be82008-10-08 23:13:30 -04002562static int ext4_nonda_switch(struct super_block *sb)
2563{
Eric Whitney5c1ff332013-04-09 09:27:31 -04002564 s64 free_clusters, dirty_clusters;
Aneesh Kumar K.V79f0be82008-10-08 23:13:30 -04002565 struct ext4_sb_info *sbi = EXT4_SB(sb);
2566
2567 /*
2568 * switch to non delalloc mode if we are running low
2569 * on free block. The free block accounting via percpu
Eric Dumazet179f7eb2009-01-06 14:41:04 -08002570 * counters can get slightly wrong with percpu_counter_batch getting
Aneesh Kumar K.V79f0be82008-10-08 23:13:30 -04002571 * accumulated on each CPU without updating global counters
2572 * Delalloc need an accurate free block accounting. So switch
2573 * to non delalloc when we are near to error range.
2574 */
Eric Whitney5c1ff332013-04-09 09:27:31 -04002575 free_clusters =
2576 percpu_counter_read_positive(&sbi->s_freeclusters_counter);
2577 dirty_clusters =
2578 percpu_counter_read_positive(&sbi->s_dirtyclusters_counter);
Theodore Ts'o00d4e732012-09-19 22:42:36 -04002579 /*
2580 * Start pushing delalloc when 1/2 of free blocks are dirty.
2581 */
Eric Whitney5c1ff332013-04-09 09:27:31 -04002582 if (dirty_clusters && (free_clusters < 2 * dirty_clusters))
Miao Xie10ee27a2013-01-10 13:47:57 +08002583 try_to_writeback_inodes_sb(sb, WB_REASON_FS_FREE_SPACE);
Theodore Ts'o00d4e732012-09-19 22:42:36 -04002584
Eric Whitney5c1ff332013-04-09 09:27:31 -04002585 if (2 * free_clusters < 3 * dirty_clusters ||
2586 free_clusters < (dirty_clusters + EXT4_FREECLUSTERS_WATERMARK)) {
Aneesh Kumar K.V79f0be82008-10-08 23:13:30 -04002587 /*
Eric Sandeenc8afb442009-12-23 07:58:12 -05002588 * free block count is less than 150% of dirty blocks
2589 * or free blocks is less than watermark
Aneesh Kumar K.V79f0be82008-10-08 23:13:30 -04002590 */
2591 return 1;
2592 }
2593 return 0;
2594}
2595
Eric Sandeen0ff89472014-10-11 19:51:17 -04002596/* We always reserve for an inode update; the superblock could be there too */
2597static int ext4_da_write_credits(struct inode *inode, loff_t pos, unsigned len)
2598{
2599 if (likely(EXT4_HAS_RO_COMPAT_FEATURE(inode->i_sb,
2600 EXT4_FEATURE_RO_COMPAT_LARGE_FILE)))
2601 return 1;
2602
2603 if (pos + len <= 0x7fffffffULL)
2604 return 1;
2605
2606 /* We might need to update the superblock to set LARGE_FILE */
2607 return 2;
2608}
2609
Alex Tomas64769242008-07-11 19:27:31 -04002610static int ext4_da_write_begin(struct file *file, struct address_space *mapping,
Theodore Ts'ode9a55b2009-06-14 17:45:34 -04002611 loff_t pos, unsigned len, unsigned flags,
2612 struct page **pagep, void **fsdata)
Alex Tomas64769242008-07-11 19:27:31 -04002613{
Eric Sandeen72b8ab92010-05-16 11:00:00 -04002614 int ret, retries = 0;
Alex Tomas64769242008-07-11 19:27:31 -04002615 struct page *page;
2616 pgoff_t index;
Alex Tomas64769242008-07-11 19:27:31 -04002617 struct inode *inode = mapping->host;
2618 handle_t *handle;
2619
2620 index = pos >> PAGE_CACHE_SHIFT;
Aneesh Kumar K.V79f0be82008-10-08 23:13:30 -04002621
2622 if (ext4_nonda_switch(inode->i_sb)) {
2623 *fsdata = (void *)FALL_BACK_TO_NONDELALLOC;
2624 return ext4_write_begin(file, mapping, pos,
2625 len, flags, pagep, fsdata);
2626 }
2627 *fsdata = (void *)0;
Theodore Ts'o9bffad12009-06-17 11:48:11 -04002628 trace_ext4_da_write_begin(inode, pos, len, flags);
Tao Ma9c3569b2012-12-10 14:05:57 -05002629
2630 if (ext4_test_inode_state(inode, EXT4_STATE_MAY_INLINE_DATA)) {
2631 ret = ext4_da_write_inline_data_begin(mapping, inode,
2632 pos, len, flags,
2633 pagep, fsdata);
2634 if (ret < 0)
Theodore Ts'o47564bf2013-02-09 09:24:14 -05002635 return ret;
2636 if (ret == 1)
2637 return 0;
Tao Ma9c3569b2012-12-10 14:05:57 -05002638 }
2639
Theodore Ts'o47564bf2013-02-09 09:24:14 -05002640 /*
2641 * grab_cache_page_write_begin() can take a long time if the
2642 * system is thrashing due to memory pressure, or if the page
2643 * is being written back. So grab it first before we start
2644 * the transaction handle. This also allows us to allocate
2645 * the page (if needed) without using GFP_NOFS.
2646 */
2647retry_grab:
2648 page = grab_cache_page_write_begin(mapping, index, flags);
2649 if (!page)
2650 return -ENOMEM;
2651 unlock_page(page);
2652
Alex Tomas64769242008-07-11 19:27:31 -04002653 /*
2654 * With delayed allocation, we don't log the i_disksize update
2655 * if there is delayed block allocation. But we still need
2656 * to journalling the i_disksize update if writes to the end
2657 * of file which has an already mapped buffer.
2658 */
Theodore Ts'o47564bf2013-02-09 09:24:14 -05002659retry_journal:
Eric Sandeen0ff89472014-10-11 19:51:17 -04002660 handle = ext4_journal_start(inode, EXT4_HT_WRITE_PAGE,
2661 ext4_da_write_credits(inode, pos, len));
Alex Tomas64769242008-07-11 19:27:31 -04002662 if (IS_ERR(handle)) {
Theodore Ts'o47564bf2013-02-09 09:24:14 -05002663 page_cache_release(page);
2664 return PTR_ERR(handle);
Alex Tomas64769242008-07-11 19:27:31 -04002665 }
2666
Theodore Ts'o47564bf2013-02-09 09:24:14 -05002667 lock_page(page);
2668 if (page->mapping != mapping) {
2669 /* The page got truncated from under us */
2670 unlock_page(page);
2671 page_cache_release(page);
Eric Sandeend5a0d4f2008-08-02 18:51:06 -04002672 ext4_journal_stop(handle);
Theodore Ts'o47564bf2013-02-09 09:24:14 -05002673 goto retry_grab;
Eric Sandeend5a0d4f2008-08-02 18:51:06 -04002674 }
Theodore Ts'o47564bf2013-02-09 09:24:14 -05002675 /* In case writeback began while the page was unlocked */
Dmitry Monakhov7afe5aa2013-08-28 14:30:47 -04002676 wait_for_stable_page(page);
Alex Tomas64769242008-07-11 19:27:31 -04002677
Michael Halcrow2058f832015-04-12 00:55:10 -04002678#ifdef CONFIG_EXT4_FS_ENCRYPTION
2679 ret = ext4_block_write_begin(page, pos, len,
2680 ext4_da_get_block_prep);
2681#else
Christoph Hellwig6e1db882010-06-04 11:29:57 +02002682 ret = __block_write_begin(page, pos, len, ext4_da_get_block_prep);
Michael Halcrow2058f832015-04-12 00:55:10 -04002683#endif
Alex Tomas64769242008-07-11 19:27:31 -04002684 if (ret < 0) {
2685 unlock_page(page);
2686 ext4_journal_stop(handle);
Aneesh Kumar K.Vae4d5372008-09-13 13:10:25 -04002687 /*
2688 * block_write_begin may have instantiated a few blocks
2689 * outside i_size. Trim these off again. Don't need
2690 * i_size_read because we hold i_mutex.
2691 */
2692 if (pos + len > inode->i_size)
Jan Karab9a42072009-12-08 21:24:33 -05002693 ext4_truncate_failed_write(inode);
Theodore Ts'o47564bf2013-02-09 09:24:14 -05002694
2695 if (ret == -ENOSPC &&
2696 ext4_should_retry_alloc(inode->i_sb, &retries))
2697 goto retry_journal;
2698
2699 page_cache_release(page);
2700 return ret;
Alex Tomas64769242008-07-11 19:27:31 -04002701 }
2702
Theodore Ts'o47564bf2013-02-09 09:24:14 -05002703 *pagep = page;
Alex Tomas64769242008-07-11 19:27:31 -04002704 return ret;
2705}
2706
Mingming Cao632eaea2008-07-11 19:27:31 -04002707/*
2708 * Check if we should update i_disksize
2709 * when write to the end of file but not require block allocation
2710 */
2711static int ext4_da_should_update_i_disksize(struct page *page,
Theodore Ts'ode9a55b2009-06-14 17:45:34 -04002712 unsigned long offset)
Mingming Cao632eaea2008-07-11 19:27:31 -04002713{
2714 struct buffer_head *bh;
2715 struct inode *inode = page->mapping->host;
2716 unsigned int idx;
2717 int i;
2718
2719 bh = page_buffers(page);
2720 idx = offset >> inode->i_blkbits;
2721
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04002722 for (i = 0; i < idx; i++)
Mingming Cao632eaea2008-07-11 19:27:31 -04002723 bh = bh->b_this_page;
2724
Aneesh Kumar K.V29fa89d2009-05-12 16:30:27 -04002725 if (!buffer_mapped(bh) || (buffer_delay(bh)) || buffer_unwritten(bh))
Mingming Cao632eaea2008-07-11 19:27:31 -04002726 return 0;
2727 return 1;
2728}
2729
Alex Tomas64769242008-07-11 19:27:31 -04002730static int ext4_da_write_end(struct file *file,
Theodore Ts'ode9a55b2009-06-14 17:45:34 -04002731 struct address_space *mapping,
2732 loff_t pos, unsigned len, unsigned copied,
2733 struct page *page, void *fsdata)
Alex Tomas64769242008-07-11 19:27:31 -04002734{
2735 struct inode *inode = mapping->host;
2736 int ret = 0, ret2;
2737 handle_t *handle = ext4_journal_current_handle();
2738 loff_t new_i_size;
Mingming Cao632eaea2008-07-11 19:27:31 -04002739 unsigned long start, end;
Aneesh Kumar K.V79f0be82008-10-08 23:13:30 -04002740 int write_mode = (int)(unsigned long)fsdata;
2741
Theodore Ts'o74d553a2013-04-03 12:39:17 -04002742 if (write_mode == FALL_BACK_TO_NONDELALLOC)
2743 return ext4_write_end(file, mapping, pos,
2744 len, copied, page, fsdata);
Mingming Cao632eaea2008-07-11 19:27:31 -04002745
Theodore Ts'o9bffad12009-06-17 11:48:11 -04002746 trace_ext4_da_write_end(inode, pos, len, copied);
Mingming Cao632eaea2008-07-11 19:27:31 -04002747 start = pos & (PAGE_CACHE_SIZE - 1);
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04002748 end = start + copied - 1;
Alex Tomas64769242008-07-11 19:27:31 -04002749
2750 /*
2751 * generic_write_end() will run mark_inode_dirty() if i_size
2752 * changes. So let's piggyback the i_disksize mark_inode_dirty
2753 * into that.
2754 */
Alex Tomas64769242008-07-11 19:27:31 -04002755 new_i_size = pos + copied;
Andrea Arcangeliea51d132011-12-13 21:41:15 -05002756 if (copied && new_i_size > EXT4_I(inode)->i_disksize) {
Tao Ma9c3569b2012-12-10 14:05:57 -05002757 if (ext4_has_inline_data(inode) ||
2758 ext4_da_should_update_i_disksize(page, end)) {
Dmitry Monakhovee124d22014-08-30 23:34:06 -04002759 ext4_update_i_disksize(inode, new_i_size);
Aneesh Kumar K.Vcf17fea2008-09-13 13:06:18 -04002760 /* We need to mark inode dirty even if
2761 * new_i_size is less that inode->i_size
2762 * bu greater than i_disksize.(hint delalloc)
2763 */
2764 ext4_mark_inode_dirty(handle, inode);
Alex Tomas64769242008-07-11 19:27:31 -04002765 }
Mingming Cao632eaea2008-07-11 19:27:31 -04002766 }
Tao Ma9c3569b2012-12-10 14:05:57 -05002767
2768 if (write_mode != CONVERT_INLINE_DATA &&
2769 ext4_test_inode_state(inode, EXT4_STATE_MAY_INLINE_DATA) &&
2770 ext4_has_inline_data(inode))
2771 ret2 = ext4_da_write_inline_data_end(inode, pos, len, copied,
2772 page);
2773 else
2774 ret2 = generic_write_end(file, mapping, pos, len, copied,
Alex Tomas64769242008-07-11 19:27:31 -04002775 page, fsdata);
Tao Ma9c3569b2012-12-10 14:05:57 -05002776
Alex Tomas64769242008-07-11 19:27:31 -04002777 copied = ret2;
2778 if (ret2 < 0)
2779 ret = ret2;
2780 ret2 = ext4_journal_stop(handle);
2781 if (!ret)
2782 ret = ret2;
2783
2784 return ret ? ret : copied;
2785}
2786
Lukas Czernerd47992f2013-05-21 23:17:23 -04002787static void ext4_da_invalidatepage(struct page *page, unsigned int offset,
2788 unsigned int length)
Alex Tomas64769242008-07-11 19:27:31 -04002789{
Alex Tomas64769242008-07-11 19:27:31 -04002790 /*
2791 * Drop reserved blocks
2792 */
2793 BUG_ON(!PageLocked(page));
2794 if (!page_has_buffers(page))
2795 goto out;
2796
Lukas Czernerca99fdd2013-05-21 23:25:01 -04002797 ext4_da_page_release_reservation(page, offset, length);
Alex Tomas64769242008-07-11 19:27:31 -04002798
2799out:
Lukas Czernerd47992f2013-05-21 23:17:23 -04002800 ext4_invalidatepage(page, offset, length);
Alex Tomas64769242008-07-11 19:27:31 -04002801
2802 return;
2803}
2804
Theodore Ts'occd25062009-02-26 01:04:07 -05002805/*
2806 * Force all delayed allocation blocks to be allocated for a given inode.
2807 */
2808int ext4_alloc_da_blocks(struct inode *inode)
2809{
Theodore Ts'ofb40ba02009-09-16 19:30:40 -04002810 trace_ext4_alloc_da_blocks(inode);
2811
Theodore Ts'o71d4f7d2014-07-15 06:02:38 -04002812 if (!EXT4_I(inode)->i_reserved_data_blocks)
Theodore Ts'occd25062009-02-26 01:04:07 -05002813 return 0;
2814
2815 /*
2816 * We do something simple for now. The filemap_flush() will
2817 * also start triggering a write of the data blocks, which is
2818 * not strictly speaking necessary (and for users of
2819 * laptop_mode, not even desirable). However, to do otherwise
2820 * would require replicating code paths in:
Theodore Ts'ode9a55b2009-06-14 17:45:34 -04002821 *
Theodore Ts'o20970ba2013-06-06 14:00:46 -04002822 * ext4_writepages() ->
Theodore Ts'occd25062009-02-26 01:04:07 -05002823 * write_cache_pages() ---> (via passed in callback function)
2824 * __mpage_da_writepage() -->
2825 * mpage_add_bh_to_extent()
2826 * mpage_da_map_blocks()
2827 *
2828 * The problem is that write_cache_pages(), located in
2829 * mm/page-writeback.c, marks pages clean in preparation for
2830 * doing I/O, which is not desirable if we're not planning on
2831 * doing I/O at all.
2832 *
2833 * We could call write_cache_pages(), and then redirty all of
Wu Fengguang380cf092010-11-11 19:23:29 +08002834 * the pages by calling redirty_page_for_writepage() but that
Theodore Ts'occd25062009-02-26 01:04:07 -05002835 * would be ugly in the extreme. So instead we would need to
2836 * replicate parts of the code in the above functions,
Lucas De Marchi25985ed2011-03-30 22:57:33 -03002837 * simplifying them because we wouldn't actually intend to
Theodore Ts'occd25062009-02-26 01:04:07 -05002838 * write out the pages, but rather only collect contiguous
2839 * logical block extents, call the multi-block allocator, and
2840 * then update the buffer heads with the block allocations.
Theodore Ts'ode9a55b2009-06-14 17:45:34 -04002841 *
Theodore Ts'occd25062009-02-26 01:04:07 -05002842 * For now, though, we'll cheat by calling filemap_flush(),
2843 * which will map the blocks, and start the I/O, but not
2844 * actually wait for the I/O to complete.
2845 */
2846 return filemap_flush(inode->i_mapping);
2847}
Alex Tomas64769242008-07-11 19:27:31 -04002848
2849/*
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002850 * bmap() is special. It gets used by applications such as lilo and by
2851 * the swapper to find the on-disk block of a specific piece of data.
2852 *
2853 * Naturally, this is dangerous if the block concerned is still in the
Mingming Cao617ba132006-10-11 01:20:53 -07002854 * journal. If somebody makes a swapfile on an ext4 data-journaling
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002855 * filesystem and enables swap, then they may get a nasty shock when the
2856 * data getting swapped to that swapfile suddenly gets overwritten by
2857 * the original zero's written out previously to the journal and
2858 * awaiting writeback in the kernel's buffer cache.
2859 *
2860 * So, if we see any bmap calls here on a modified, data-journaled file,
2861 * take extra steps to flush any blocks which might be in the cache.
2862 */
Mingming Cao617ba132006-10-11 01:20:53 -07002863static sector_t ext4_bmap(struct address_space *mapping, sector_t block)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002864{
2865 struct inode *inode = mapping->host;
2866 journal_t *journal;
2867 int err;
2868
Tao Ma46c7f252012-12-10 14:04:52 -05002869 /*
2870 * We can get here for an inline file via the FIBMAP ioctl
2871 */
2872 if (ext4_has_inline_data(inode))
2873 return 0;
2874
Alex Tomas64769242008-07-11 19:27:31 -04002875 if (mapping_tagged(mapping, PAGECACHE_TAG_DIRTY) &&
2876 test_opt(inode->i_sb, DELALLOC)) {
2877 /*
2878 * With delalloc we want to sync the file
2879 * so that we can make sure we allocate
2880 * blocks for file
2881 */
2882 filemap_write_and_wait(mapping);
2883 }
2884
Theodore Ts'o19f5fb72010-01-24 14:34:07 -05002885 if (EXT4_JOURNAL(inode) &&
2886 ext4_test_inode_state(inode, EXT4_STATE_JDATA)) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002887 /*
2888 * This is a REALLY heavyweight approach, but the use of
2889 * bmap on dirty files is expected to be extremely rare:
2890 * only if we run lilo or swapon on a freshly made file
2891 * do we expect this to happen.
2892 *
2893 * (bmap requires CAP_SYS_RAWIO so this does not
2894 * represent an unprivileged user DOS attack --- we'd be
2895 * in trouble if mortal users could trigger this path at
2896 * will.)
2897 *
Mingming Cao617ba132006-10-11 01:20:53 -07002898 * NB. EXT4_STATE_JDATA is not set on files other than
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002899 * regular files. If somebody wants to bmap a directory
2900 * or symlink and gets confused because the buffer
2901 * hasn't yet been flushed to disk, they deserve
2902 * everything they get.
2903 */
2904
Theodore Ts'o19f5fb72010-01-24 14:34:07 -05002905 ext4_clear_inode_state(inode, EXT4_STATE_JDATA);
Mingming Cao617ba132006-10-11 01:20:53 -07002906 journal = EXT4_JOURNAL(inode);
Mingming Caodab291a2006-10-11 01:21:01 -07002907 jbd2_journal_lock_updates(journal);
2908 err = jbd2_journal_flush(journal);
2909 jbd2_journal_unlock_updates(journal);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002910
2911 if (err)
2912 return 0;
2913 }
2914
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04002915 return generic_block_bmap(mapping, block, ext4_get_block);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002916}
2917
Mingming Cao617ba132006-10-11 01:20:53 -07002918static int ext4_readpage(struct file *file, struct page *page)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002919{
Tao Ma46c7f252012-12-10 14:04:52 -05002920 int ret = -EAGAIN;
2921 struct inode *inode = page->mapping->host;
2922
Jiaying Zhang0562e0b2011-03-21 21:38:05 -04002923 trace_ext4_readpage(page);
Tao Ma46c7f252012-12-10 14:04:52 -05002924
2925 if (ext4_has_inline_data(inode))
2926 ret = ext4_readpage_inline(inode, page);
2927
2928 if (ret == -EAGAIN)
Theodore Ts'of64e02f2015-04-08 00:00:32 -04002929 return ext4_mpage_readpages(page->mapping, NULL, page, 1);
Tao Ma46c7f252012-12-10 14:04:52 -05002930
2931 return ret;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002932}
2933
2934static int
Mingming Cao617ba132006-10-11 01:20:53 -07002935ext4_readpages(struct file *file, struct address_space *mapping,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002936 struct list_head *pages, unsigned nr_pages)
2937{
Tao Ma46c7f252012-12-10 14:04:52 -05002938 struct inode *inode = mapping->host;
2939
2940 /* If the file has inline data, no need to do readpages. */
2941 if (ext4_has_inline_data(inode))
2942 return 0;
2943
Theodore Ts'of64e02f2015-04-08 00:00:32 -04002944 return ext4_mpage_readpages(mapping, pages, NULL, nr_pages);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002945}
2946
Lukas Czernerd47992f2013-05-21 23:17:23 -04002947static void ext4_invalidatepage(struct page *page, unsigned int offset,
2948 unsigned int length)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002949{
Lukas Czernerca99fdd2013-05-21 23:25:01 -04002950 trace_ext4_invalidatepage(page, offset, length);
Jiaying Zhang0562e0b2011-03-21 21:38:05 -04002951
Jan Kara4520fb32012-12-25 13:28:54 -05002952 /* No journalling happens on data buffers when this function is used */
2953 WARN_ON(page_has_buffers(page) && buffer_jbd(page_buffers(page)));
2954
Lukas Czernerca99fdd2013-05-21 23:25:01 -04002955 block_invalidatepage(page, offset, length);
Jan Kara4520fb32012-12-25 13:28:54 -05002956}
2957
Jan Kara53e87262012-12-25 13:29:52 -05002958static int __ext4_journalled_invalidatepage(struct page *page,
Lukas Czernerca99fdd2013-05-21 23:25:01 -04002959 unsigned int offset,
2960 unsigned int length)
Jan Kara4520fb32012-12-25 13:28:54 -05002961{
2962 journal_t *journal = EXT4_JOURNAL(page->mapping->host);
2963
Lukas Czernerca99fdd2013-05-21 23:25:01 -04002964 trace_ext4_journalled_invalidatepage(page, offset, length);
Jan Kara4520fb32012-12-25 13:28:54 -05002965
Jiaying Zhang744692d2010-03-04 16:14:02 -05002966 /*
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002967 * If it's a full truncate we just forget about the pending dirtying
2968 */
Lukas Czernerca99fdd2013-05-21 23:25:01 -04002969 if (offset == 0 && length == PAGE_CACHE_SIZE)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002970 ClearPageChecked(page);
2971
Lukas Czernerca99fdd2013-05-21 23:25:01 -04002972 return jbd2_journal_invalidatepage(journal, page, offset, length);
Jan Kara53e87262012-12-25 13:29:52 -05002973}
2974
2975/* Wrapper for aops... */
2976static void ext4_journalled_invalidatepage(struct page *page,
Lukas Czernerd47992f2013-05-21 23:17:23 -04002977 unsigned int offset,
2978 unsigned int length)
Jan Kara53e87262012-12-25 13:29:52 -05002979{
Lukas Czernerca99fdd2013-05-21 23:25:01 -04002980 WARN_ON(__ext4_journalled_invalidatepage(page, offset, length) < 0);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002981}
2982
Mingming Cao617ba132006-10-11 01:20:53 -07002983static int ext4_releasepage(struct page *page, gfp_t wait)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002984{
Mingming Cao617ba132006-10-11 01:20:53 -07002985 journal_t *journal = EXT4_JOURNAL(page->mapping->host);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002986
Jiaying Zhang0562e0b2011-03-21 21:38:05 -04002987 trace_ext4_releasepage(page);
2988
Jan Karae1c36592013-03-10 22:19:00 -04002989 /* Page has dirty journalled data -> cannot release */
2990 if (PageChecked(page))
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002991 return 0;
Frank Mayhar03901312009-01-07 00:06:22 -05002992 if (journal)
2993 return jbd2_journal_try_to_free_buffers(journal, page, wait);
2994 else
2995 return try_to_free_buffers(page);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002996}
2997
2998/*
Theodore Ts'o2ed88682010-05-16 20:00:00 -04002999 * ext4_get_block used when preparing for a DIO write or buffer write.
3000 * We allocate an uinitialized extent if blocks haven't been allocated.
3001 * The extent will be converted to initialized after the IO is complete.
3002 */
Tao Maf19d5872012-12-10 14:05:51 -05003003int ext4_get_block_write(struct inode *inode, sector_t iblock,
Mingming Cao4c0425f2009-09-28 15:48:41 -04003004 struct buffer_head *bh_result, int create)
3005{
Jiaying Zhangc7064ef2010-03-02 13:28:44 -05003006 ext4_debug("ext4_get_block_write: inode %lu, create flag %d\n",
Mingming Cao8d5d02e2009-09-28 15:48:29 -04003007 inode->i_ino, create);
Theodore Ts'o2ed88682010-05-16 20:00:00 -04003008 return _ext4_get_block(inode, iblock, bh_result,
3009 EXT4_GET_BLOCKS_IO_CREATE_EXT);
Mingming Cao4c0425f2009-09-28 15:48:41 -04003010}
3011
Zheng Liu729f52c2012-07-09 16:29:29 -04003012static int ext4_get_block_write_nolock(struct inode *inode, sector_t iblock,
Anatol Pomozov8b0f1652012-11-08 15:07:16 -05003013 struct buffer_head *bh_result, int create)
Zheng Liu729f52c2012-07-09 16:29:29 -04003014{
Anatol Pomozov8b0f1652012-11-08 15:07:16 -05003015 ext4_debug("ext4_get_block_write_nolock: inode %lu, create flag %d\n",
3016 inode->i_ino, create);
3017 return _ext4_get_block(inode, iblock, bh_result,
3018 EXT4_GET_BLOCKS_NO_LOCK);
Zheng Liu729f52c2012-07-09 16:29:29 -04003019}
3020
Mingming Cao4c0425f2009-09-28 15:48:41 -04003021static void ext4_end_io_dio(struct kiocb *iocb, loff_t offset,
Christoph Hellwig7b7a8662013-09-04 15:04:39 +02003022 ssize_t size, void *private)
Mingming Cao4c0425f2009-09-28 15:48:41 -04003023{
3024 ext4_io_end_t *io_end = iocb->private;
Mingming Cao4c0425f2009-09-28 15:48:41 -04003025
Jan Kara97a851e2013-06-04 11:58:58 -04003026 /* if not async direct IO just return */
Christoph Hellwig7b7a8662013-09-04 15:04:39 +02003027 if (!io_end)
Jan Kara97a851e2013-06-04 11:58:58 -04003028 return;
Mingming4b70df12009-11-03 14:44:54 -05003029
Zheng Liu88635ca2011-12-28 19:00:25 -05003030 ext_debug("ext4_end_io_dio(): io_end 0x%p "
Joe Perchesace36ad2012-03-19 23:11:43 -04003031 "for inode %lu, iocb 0x%p, offset %llu, size %zd\n",
Mingming Cao8d5d02e2009-09-28 15:48:29 -04003032 iocb->private, io_end->inode->i_ino, iocb, offset,
3033 size);
Mingming Cao8d5d02e2009-09-28 15:48:29 -04003034
Theodore Ts'ob5a7e972011-12-12 10:53:02 -05003035 iocb->private = NULL;
Mingming Cao4c0425f2009-09-28 15:48:41 -04003036 io_end->offset = offset;
3037 io_end->size = size;
Christoph Hellwig7b7a8662013-09-04 15:04:39 +02003038 ext4_put_io_end(io_end);
Mingming Cao4c0425f2009-09-28 15:48:41 -04003039}
Jiaying Zhangc7064ef2010-03-02 13:28:44 -05003040
Mingming Cao4c0425f2009-09-28 15:48:41 -04003041/*
3042 * For ext4 extent files, ext4 will do direct-io write to holes,
3043 * preallocated extents, and those write extend the file, no need to
3044 * fall back to buffered IO.
3045 *
Lukas Czerner556615d2014-04-20 23:45:47 -04003046 * For holes, we fallocate those blocks, mark them as unwritten
Theodore Ts'o69c499d2012-11-29 21:13:48 -05003047 * If those blocks were preallocated, we mark sure they are split, but
Lukas Czerner556615d2014-04-20 23:45:47 -04003048 * still keep the range to write as unwritten.
Mingming Cao4c0425f2009-09-28 15:48:41 -04003049 *
Theodore Ts'o69c499d2012-11-29 21:13:48 -05003050 * The unwritten extents will be converted to written when DIO is completed.
Mingming Cao8d5d02e2009-09-28 15:48:29 -04003051 * For async direct IO, since the IO may still pending when return, we
Lucas De Marchi25985ed2011-03-30 22:57:33 -03003052 * set up an end_io call back function, which will do the conversion
Mingming Cao8d5d02e2009-09-28 15:48:29 -04003053 * when async direct IO completed.
Mingming Cao4c0425f2009-09-28 15:48:41 -04003054 *
3055 * If the O_DIRECT write will extend the file then add this inode to the
3056 * orphan list. So recovery will truncate it back to the original size
3057 * if the machine crashes during the write.
3058 *
3059 */
Omar Sandoval6f673762015-03-16 04:33:52 -07003060static ssize_t ext4_ext_direct_IO(struct kiocb *iocb, struct iov_iter *iter,
3061 loff_t offset)
Mingming Cao4c0425f2009-09-28 15:48:41 -04003062{
3063 struct file *file = iocb->ki_filp;
3064 struct inode *inode = file->f_mapping->host;
3065 ssize_t ret;
Al Viroa6cbcd42014-03-04 22:38:00 -05003066 size_t count = iov_iter_count(iter);
Theodore Ts'o69c499d2012-11-29 21:13:48 -05003067 int overwrite = 0;
3068 get_block_t *get_block_func = NULL;
3069 int dio_flags = 0;
Mingming Cao4c0425f2009-09-28 15:48:41 -04003070 loff_t final_size = offset + count;
Jan Kara97a851e2013-06-04 11:58:58 -04003071 ext4_io_end_t *io_end = NULL;
Zheng Liu729f52c2012-07-09 16:29:29 -04003072
Theodore Ts'o69c499d2012-11-29 21:13:48 -05003073 /* Use the old path for reads and writes beyond i_size. */
Omar Sandoval6f673762015-03-16 04:33:52 -07003074 if (iov_iter_rw(iter) != WRITE || final_size > inode->i_size)
3075 return ext4_ind_direct_IO(iocb, iter, offset);
Zheng Liu4bd809d2012-07-22 20:19:31 -04003076
Theodore Ts'o69c499d2012-11-29 21:13:48 -05003077 BUG_ON(iocb->private == NULL);
Zheng Liu4bd809d2012-07-22 20:19:31 -04003078
Jan Karae8340392013-06-04 14:27:38 -04003079 /*
3080 * Make all waiters for direct IO properly wait also for extent
3081 * conversion. This also disallows race between truncate() and
3082 * overwrite DIO as i_dio_count needs to be incremented under i_mutex.
3083 */
Omar Sandoval6f673762015-03-16 04:33:52 -07003084 if (iov_iter_rw(iter) == WRITE)
Jens Axboefe0f07d2015-04-15 17:05:48 -06003085 inode_dio_begin(inode);
Jan Karae8340392013-06-04 14:27:38 -04003086
Theodore Ts'o69c499d2012-11-29 21:13:48 -05003087 /* If we do a overwrite dio, i_mutex locking can be released */
3088 overwrite = *((int *)iocb->private);
Zheng Liu4bd809d2012-07-22 20:19:31 -04003089
Theodore Ts'o69c499d2012-11-29 21:13:48 -05003090 if (overwrite) {
Theodore Ts'o69c499d2012-11-29 21:13:48 -05003091 down_read(&EXT4_I(inode)->i_data_sem);
3092 mutex_unlock(&inode->i_mutex);
Mingming Cao4c0425f2009-09-28 15:48:41 -04003093 }
Mingming Cao8d5d02e2009-09-28 15:48:29 -04003094
Theodore Ts'o69c499d2012-11-29 21:13:48 -05003095 /*
3096 * We could direct write to holes and fallocate.
3097 *
3098 * Allocated blocks to fill the hole are marked as
Lukas Czerner556615d2014-04-20 23:45:47 -04003099 * unwritten to prevent parallel buffered read to expose
Theodore Ts'o69c499d2012-11-29 21:13:48 -05003100 * the stale data before DIO complete the data IO.
3101 *
3102 * As to previously fallocated extents, ext4 get_block will
3103 * just simply mark the buffer mapped but still keep the
Lukas Czerner556615d2014-04-20 23:45:47 -04003104 * extents unwritten.
Theodore Ts'o69c499d2012-11-29 21:13:48 -05003105 *
3106 * For non AIO case, we will convert those unwritten extents
3107 * to written after return back from blockdev_direct_IO.
3108 *
3109 * For async DIO, the conversion needs to be deferred when the
3110 * IO is completed. The ext4 end_io callback function will be
3111 * called to take care of the conversion work. Here for async
3112 * case, we allocate an io_end structure to hook to the iocb.
3113 */
3114 iocb->private = NULL;
3115 ext4_inode_aio_set(inode, NULL);
3116 if (!is_sync_kiocb(iocb)) {
Jan Kara97a851e2013-06-04 11:58:58 -04003117 io_end = ext4_init_io_end(inode, GFP_NOFS);
Theodore Ts'o69c499d2012-11-29 21:13:48 -05003118 if (!io_end) {
3119 ret = -ENOMEM;
3120 goto retake_lock;
3121 }
Jan Kara97a851e2013-06-04 11:58:58 -04003122 /*
3123 * Grab reference for DIO. Will be dropped in ext4_end_io_dio()
3124 */
3125 iocb->private = ext4_get_io_end(io_end);
Theodore Ts'o69c499d2012-11-29 21:13:48 -05003126 /*
3127 * we save the io structure for current async direct
3128 * IO, so that later ext4_map_blocks() could flag the
3129 * io structure whether there is a unwritten extents
3130 * needs to be converted when IO is completed.
3131 */
3132 ext4_inode_aio_set(inode, io_end);
3133 }
3134
3135 if (overwrite) {
3136 get_block_func = ext4_get_block_write_nolock;
3137 } else {
3138 get_block_func = ext4_get_block_write;
3139 dio_flags = DIO_LOCKING;
3140 }
Michael Halcrow2058f832015-04-12 00:55:10 -04003141#ifdef CONFIG_EXT4_FS_ENCRYPTION
3142 BUG_ON(ext4_encrypted_inode(inode) && S_ISREG(inode->i_mode));
3143#endif
Ross Zwisler923ae0f2015-02-16 15:59:38 -08003144 if (IS_DAX(inode))
Omar Sandovala95cd632015-03-16 04:33:51 -07003145 ret = dax_do_io(iocb, inode, iter, offset, get_block_func,
Ross Zwisler923ae0f2015-02-16 15:59:38 -08003146 ext4_end_io_dio, dio_flags);
3147 else
Omar Sandoval17f8c842015-03-16 04:33:50 -07003148 ret = __blockdev_direct_IO(iocb, inode,
Ross Zwisler923ae0f2015-02-16 15:59:38 -08003149 inode->i_sb->s_bdev, iter, offset,
3150 get_block_func,
3151 ext4_end_io_dio, NULL, dio_flags);
Theodore Ts'o69c499d2012-11-29 21:13:48 -05003152
Theodore Ts'oa5499842013-05-11 19:07:42 -04003153 /*
Jan Kara97a851e2013-06-04 11:58:58 -04003154 * Put our reference to io_end. This can free the io_end structure e.g.
3155 * in sync IO case or in case of error. It can even perform extent
3156 * conversion if all bios we submitted finished before we got here.
3157 * Note that in that case iocb->private can be already set to NULL
3158 * here.
Theodore Ts'oa5499842013-05-11 19:07:42 -04003159 */
Jan Kara97a851e2013-06-04 11:58:58 -04003160 if (io_end) {
3161 ext4_inode_aio_set(inode, NULL);
3162 ext4_put_io_end(io_end);
3163 /*
3164 * When no IO was submitted ext4_end_io_dio() was not
3165 * called so we have to put iocb's reference.
3166 */
3167 if (ret <= 0 && ret != -EIOCBQUEUED && iocb->private) {
3168 WARN_ON(iocb->private != io_end);
3169 WARN_ON(io_end->flag & EXT4_IO_END_UNWRITTEN);
Jan Kara97a851e2013-06-04 11:58:58 -04003170 ext4_put_io_end(io_end);
3171 iocb->private = NULL;
3172 }
3173 }
3174 if (ret > 0 && !overwrite && ext4_test_inode_state(inode,
Theodore Ts'o69c499d2012-11-29 21:13:48 -05003175 EXT4_STATE_DIO_UNWRITTEN)) {
3176 int err;
3177 /*
3178 * for non AIO case, since the IO is already
3179 * completed, we could do the conversion right here
3180 */
Jan Kara6b523df2013-06-04 13:21:11 -04003181 err = ext4_convert_unwritten_extents(NULL, inode,
Theodore Ts'o69c499d2012-11-29 21:13:48 -05003182 offset, ret);
3183 if (err < 0)
3184 ret = err;
3185 ext4_clear_inode_state(inode, EXT4_STATE_DIO_UNWRITTEN);
3186 }
3187
3188retake_lock:
Omar Sandoval6f673762015-03-16 04:33:52 -07003189 if (iov_iter_rw(iter) == WRITE)
Jens Axboefe0f07d2015-04-15 17:05:48 -06003190 inode_dio_end(inode);
Theodore Ts'o69c499d2012-11-29 21:13:48 -05003191 /* take i_mutex locking again if we do a ovewrite dio */
3192 if (overwrite) {
Theodore Ts'o69c499d2012-11-29 21:13:48 -05003193 up_read(&EXT4_I(inode)->i_data_sem);
3194 mutex_lock(&inode->i_mutex);
3195 }
3196
3197 return ret;
Mingming Cao4c0425f2009-09-28 15:48:41 -04003198}
3199
Omar Sandoval22c61862015-03-16 04:33:53 -07003200static ssize_t ext4_direct_IO(struct kiocb *iocb, struct iov_iter *iter,
3201 loff_t offset)
Mingming Cao4c0425f2009-09-28 15:48:41 -04003202{
3203 struct file *file = iocb->ki_filp;
3204 struct inode *inode = file->f_mapping->host;
Al Viroa6cbcd42014-03-04 22:38:00 -05003205 size_t count = iov_iter_count(iter);
Jiaying Zhang0562e0b2011-03-21 21:38:05 -04003206 ssize_t ret;
Mingming Cao4c0425f2009-09-28 15:48:41 -04003207
Michael Halcrow2058f832015-04-12 00:55:10 -04003208#ifdef CONFIG_EXT4_FS_ENCRYPTION
3209 if (ext4_encrypted_inode(inode) && S_ISREG(inode->i_mode))
3210 return 0;
3211#endif
3212
Theodore Ts'o84ebd792011-08-31 11:56:51 -04003213 /*
3214 * If we are doing data journalling we don't support O_DIRECT
3215 */
3216 if (ext4_should_journal_data(inode))
3217 return 0;
3218
Tao Ma46c7f252012-12-10 14:04:52 -05003219 /* Let buffer I/O handle the inline data case. */
3220 if (ext4_has_inline_data(inode))
3221 return 0;
3222
Omar Sandoval6f673762015-03-16 04:33:52 -07003223 trace_ext4_direct_IO_enter(inode, offset, count, iov_iter_rw(iter));
Dmitry Monakhov12e9b892010-05-16 22:00:00 -04003224 if (ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS))
Omar Sandoval6f673762015-03-16 04:33:52 -07003225 ret = ext4_ext_direct_IO(iocb, iter, offset);
Jiaying Zhang0562e0b2011-03-21 21:38:05 -04003226 else
Omar Sandoval6f673762015-03-16 04:33:52 -07003227 ret = ext4_ind_direct_IO(iocb, iter, offset);
3228 trace_ext4_direct_IO_exit(inode, offset, count, iov_iter_rw(iter), ret);
Jiaying Zhang0562e0b2011-03-21 21:38:05 -04003229 return ret;
Mingming Cao4c0425f2009-09-28 15:48:41 -04003230}
3231
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003232/*
Mingming Cao617ba132006-10-11 01:20:53 -07003233 * Pages can be marked dirty completely asynchronously from ext4's journalling
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003234 * activity. By filemap_sync_pte(), try_to_unmap_one(), etc. We cannot do
3235 * much here because ->set_page_dirty is called under VFS locks. The page is
3236 * not necessarily locked.
3237 *
3238 * We cannot just dirty the page and leave attached buffers clean, because the
3239 * buffers' dirty state is "definitive". We cannot just set the buffers dirty
3240 * or jbddirty because all the journalling code will explode.
3241 *
3242 * So what we do is to mark the page "pending dirty" and next time writepage
3243 * is called, propagate that into the buffers appropriately.
3244 */
Mingming Cao617ba132006-10-11 01:20:53 -07003245static int ext4_journalled_set_page_dirty(struct page *page)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003246{
3247 SetPageChecked(page);
3248 return __set_page_dirty_nobuffers(page);
3249}
3250
Theodore Ts'o74d553a2013-04-03 12:39:17 -04003251static const struct address_space_operations ext4_aops = {
Hisashi Hifumi8ab22b92008-07-28 15:46:36 -07003252 .readpage = ext4_readpage,
3253 .readpages = ext4_readpages,
Aneesh Kumar K.V43ce1d22009-06-14 17:58:45 -04003254 .writepage = ext4_writepage,
Theodore Ts'o20970ba2013-06-06 14:00:46 -04003255 .writepages = ext4_writepages,
Hisashi Hifumi8ab22b92008-07-28 15:46:36 -07003256 .write_begin = ext4_write_begin,
Theodore Ts'o74d553a2013-04-03 12:39:17 -04003257 .write_end = ext4_write_end,
Hisashi Hifumi8ab22b92008-07-28 15:46:36 -07003258 .bmap = ext4_bmap,
3259 .invalidatepage = ext4_invalidatepage,
3260 .releasepage = ext4_releasepage,
3261 .direct_IO = ext4_direct_IO,
3262 .migratepage = buffer_migrate_page,
3263 .is_partially_uptodate = block_is_partially_uptodate,
Andi Kleenaa261f52009-09-16 11:50:16 +02003264 .error_remove_page = generic_error_remove_page,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003265};
3266
Mingming Cao617ba132006-10-11 01:20:53 -07003267static const struct address_space_operations ext4_journalled_aops = {
Hisashi Hifumi8ab22b92008-07-28 15:46:36 -07003268 .readpage = ext4_readpage,
3269 .readpages = ext4_readpages,
Aneesh Kumar K.V43ce1d22009-06-14 17:58:45 -04003270 .writepage = ext4_writepage,
Theodore Ts'o20970ba2013-06-06 14:00:46 -04003271 .writepages = ext4_writepages,
Hisashi Hifumi8ab22b92008-07-28 15:46:36 -07003272 .write_begin = ext4_write_begin,
3273 .write_end = ext4_journalled_write_end,
3274 .set_page_dirty = ext4_journalled_set_page_dirty,
3275 .bmap = ext4_bmap,
Jan Kara4520fb32012-12-25 13:28:54 -05003276 .invalidatepage = ext4_journalled_invalidatepage,
Hisashi Hifumi8ab22b92008-07-28 15:46:36 -07003277 .releasepage = ext4_releasepage,
Theodore Ts'o84ebd792011-08-31 11:56:51 -04003278 .direct_IO = ext4_direct_IO,
Hisashi Hifumi8ab22b92008-07-28 15:46:36 -07003279 .is_partially_uptodate = block_is_partially_uptodate,
Andi Kleenaa261f52009-09-16 11:50:16 +02003280 .error_remove_page = generic_error_remove_page,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003281};
3282
Alex Tomas64769242008-07-11 19:27:31 -04003283static const struct address_space_operations ext4_da_aops = {
Hisashi Hifumi8ab22b92008-07-28 15:46:36 -07003284 .readpage = ext4_readpage,
3285 .readpages = ext4_readpages,
Aneesh Kumar K.V43ce1d22009-06-14 17:58:45 -04003286 .writepage = ext4_writepage,
Theodore Ts'o20970ba2013-06-06 14:00:46 -04003287 .writepages = ext4_writepages,
Hisashi Hifumi8ab22b92008-07-28 15:46:36 -07003288 .write_begin = ext4_da_write_begin,
3289 .write_end = ext4_da_write_end,
3290 .bmap = ext4_bmap,
3291 .invalidatepage = ext4_da_invalidatepage,
3292 .releasepage = ext4_releasepage,
3293 .direct_IO = ext4_direct_IO,
3294 .migratepage = buffer_migrate_page,
3295 .is_partially_uptodate = block_is_partially_uptodate,
Andi Kleenaa261f52009-09-16 11:50:16 +02003296 .error_remove_page = generic_error_remove_page,
Alex Tomas64769242008-07-11 19:27:31 -04003297};
3298
Mingming Cao617ba132006-10-11 01:20:53 -07003299void ext4_set_aops(struct inode *inode)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003300{
Lukas Czerner3d2b1582012-02-20 17:53:00 -05003301 switch (ext4_inode_journal_mode(inode)) {
3302 case EXT4_INODE_ORDERED_DATA_MODE:
Theodore Ts'o74d553a2013-04-03 12:39:17 -04003303 ext4_set_inode_state(inode, EXT4_STATE_ORDERED_MODE);
Lukas Czerner3d2b1582012-02-20 17:53:00 -05003304 break;
3305 case EXT4_INODE_WRITEBACK_DATA_MODE:
Theodore Ts'o74d553a2013-04-03 12:39:17 -04003306 ext4_clear_inode_state(inode, EXT4_STATE_ORDERED_MODE);
Lukas Czerner3d2b1582012-02-20 17:53:00 -05003307 break;
3308 case EXT4_INODE_JOURNAL_DATA_MODE:
Mingming Cao617ba132006-10-11 01:20:53 -07003309 inode->i_mapping->a_ops = &ext4_journalled_aops;
Theodore Ts'o74d553a2013-04-03 12:39:17 -04003310 return;
Lukas Czerner3d2b1582012-02-20 17:53:00 -05003311 default:
3312 BUG();
3313 }
Theodore Ts'o74d553a2013-04-03 12:39:17 -04003314 if (test_opt(inode->i_sb, DELALLOC))
3315 inode->i_mapping->a_ops = &ext4_da_aops;
3316 else
3317 inode->i_mapping->a_ops = &ext4_aops;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003318}
3319
Ross Zwisler923ae0f2015-02-16 15:59:38 -08003320static int __ext4_block_zero_page_range(handle_t *handle,
Lukas Czernerd863dc32013-05-27 23:32:35 -04003321 struct address_space *mapping, loff_t from, loff_t length)
3322{
3323 ext4_fsblk_t index = from >> PAGE_CACHE_SHIFT;
3324 unsigned offset = from & (PAGE_CACHE_SIZE-1);
Ross Zwisler923ae0f2015-02-16 15:59:38 -08003325 unsigned blocksize, pos;
Lukas Czernerd863dc32013-05-27 23:32:35 -04003326 ext4_lblk_t iblock;
3327 struct inode *inode = mapping->host;
3328 struct buffer_head *bh;
3329 struct page *page;
3330 int err = 0;
3331
3332 page = find_or_create_page(mapping, from >> PAGE_CACHE_SHIFT,
3333 mapping_gfp_mask(mapping) & ~__GFP_FS);
3334 if (!page)
3335 return -ENOMEM;
3336
3337 blocksize = inode->i_sb->s_blocksize;
Lukas Czernerd863dc32013-05-27 23:32:35 -04003338
3339 iblock = index << (PAGE_CACHE_SHIFT - inode->i_sb->s_blocksize_bits);
3340
3341 if (!page_has_buffers(page))
3342 create_empty_buffers(page, blocksize, 0);
3343
3344 /* Find the buffer that contains "offset" */
3345 bh = page_buffers(page);
3346 pos = blocksize;
3347 while (offset >= pos) {
3348 bh = bh->b_this_page;
3349 iblock++;
3350 pos += blocksize;
3351 }
Lukas Czernerd863dc32013-05-27 23:32:35 -04003352 if (buffer_freed(bh)) {
3353 BUFFER_TRACE(bh, "freed: skip");
3354 goto unlock;
3355 }
Lukas Czernerd863dc32013-05-27 23:32:35 -04003356 if (!buffer_mapped(bh)) {
3357 BUFFER_TRACE(bh, "unmapped");
3358 ext4_get_block(inode, iblock, bh, 0);
3359 /* unmapped? It's a hole - nothing to do */
3360 if (!buffer_mapped(bh)) {
3361 BUFFER_TRACE(bh, "still unmapped");
3362 goto unlock;
3363 }
3364 }
3365
3366 /* Ok, it's mapped. Make sure it's up-to-date */
3367 if (PageUptodate(page))
3368 set_buffer_uptodate(bh);
3369
3370 if (!buffer_uptodate(bh)) {
3371 err = -EIO;
3372 ll_rw_block(READ, 1, &bh);
3373 wait_on_buffer(bh);
3374 /* Uhhuh. Read error. Complain and punt. */
3375 if (!buffer_uptodate(bh))
3376 goto unlock;
Michael Halcrowc9c74292015-04-12 00:56:10 -04003377 if (S_ISREG(inode->i_mode) &&
3378 ext4_encrypted_inode(inode)) {
3379 /* We expect the key to be set. */
3380 BUG_ON(!ext4_has_encryption_key(inode));
3381 BUG_ON(blocksize != PAGE_CACHE_SIZE);
3382 WARN_ON_ONCE(ext4_decrypt_one(inode, page));
3383 }
Lukas Czernerd863dc32013-05-27 23:32:35 -04003384 }
Lukas Czernerd863dc32013-05-27 23:32:35 -04003385 if (ext4_should_journal_data(inode)) {
3386 BUFFER_TRACE(bh, "get write access");
3387 err = ext4_journal_get_write_access(handle, bh);
3388 if (err)
3389 goto unlock;
3390 }
Lukas Czernerd863dc32013-05-27 23:32:35 -04003391 zero_user(page, offset, length);
Lukas Czernerd863dc32013-05-27 23:32:35 -04003392 BUFFER_TRACE(bh, "zeroed end of block");
3393
Lukas Czernerd863dc32013-05-27 23:32:35 -04003394 if (ext4_should_journal_data(inode)) {
3395 err = ext4_handle_dirty_metadata(handle, inode, bh);
Lukas Czerner0713ed02013-05-27 23:32:35 -04003396 } else {
jon ernst353eefd2013-07-01 08:12:39 -04003397 err = 0;
Lukas Czernerd863dc32013-05-27 23:32:35 -04003398 mark_buffer_dirty(bh);
Lukas Czerner0713ed02013-05-27 23:32:35 -04003399 if (ext4_test_inode_state(inode, EXT4_STATE_ORDERED_MODE))
3400 err = ext4_jbd2_file_inode(handle, inode);
3401 }
Lukas Czernerd863dc32013-05-27 23:32:35 -04003402
3403unlock:
3404 unlock_page(page);
3405 page_cache_release(page);
3406 return err;
3407}
3408
Matthew Wilcox94350ab2014-03-24 15:09:16 -04003409/*
Ross Zwisler923ae0f2015-02-16 15:59:38 -08003410 * ext4_block_zero_page_range() zeros out a mapping of length 'length'
3411 * starting from file offset 'from'. The range to be zero'd must
3412 * be contained with in one block. If the specified range exceeds
3413 * the end of the block it will be shortened to end of the block
3414 * that cooresponds to 'from'
3415 */
3416static int ext4_block_zero_page_range(handle_t *handle,
3417 struct address_space *mapping, loff_t from, loff_t length)
3418{
3419 struct inode *inode = mapping->host;
3420 unsigned offset = from & (PAGE_CACHE_SIZE-1);
3421 unsigned blocksize = inode->i_sb->s_blocksize;
3422 unsigned max = blocksize - (offset & (blocksize - 1));
3423
3424 /*
3425 * correct length if it does not fall between
3426 * 'from' and the end of the block
3427 */
3428 if (length > max || length < 0)
3429 length = max;
3430
3431 if (IS_DAX(inode))
3432 return dax_zero_page_range(inode, from, length, ext4_get_block);
3433 return __ext4_block_zero_page_range(handle, mapping, from, length);
3434}
3435
3436/*
Matthew Wilcox94350ab2014-03-24 15:09:16 -04003437 * ext4_block_truncate_page() zeroes out a mapping from file offset `from'
3438 * up to the end of the block which corresponds to `from'.
3439 * This required during truncate. We need to physically zero the tail end
3440 * of that block so it doesn't yield old data if the file is later grown.
3441 */
Stephen Hemmingerc1978552014-05-12 10:50:23 -04003442static int ext4_block_truncate_page(handle_t *handle,
Matthew Wilcox94350ab2014-03-24 15:09:16 -04003443 struct address_space *mapping, loff_t from)
3444{
3445 unsigned offset = from & (PAGE_CACHE_SIZE-1);
3446 unsigned length;
3447 unsigned blocksize;
3448 struct inode *inode = mapping->host;
3449
3450 blocksize = inode->i_sb->s_blocksize;
3451 length = blocksize - (offset & (blocksize - 1));
3452
3453 return ext4_block_zero_page_range(handle, mapping, from, length);
3454}
3455
Lukas Czernera87dd182013-05-27 23:32:35 -04003456int ext4_zero_partial_blocks(handle_t *handle, struct inode *inode,
3457 loff_t lstart, loff_t length)
3458{
3459 struct super_block *sb = inode->i_sb;
3460 struct address_space *mapping = inode->i_mapping;
Lukas Czernere1be3a92013-07-01 08:12:39 -04003461 unsigned partial_start, partial_end;
Lukas Czernera87dd182013-05-27 23:32:35 -04003462 ext4_fsblk_t start, end;
3463 loff_t byte_end = (lstart + length - 1);
3464 int err = 0;
3465
Lukas Czernere1be3a92013-07-01 08:12:39 -04003466 partial_start = lstart & (sb->s_blocksize - 1);
3467 partial_end = byte_end & (sb->s_blocksize - 1);
3468
Lukas Czernera87dd182013-05-27 23:32:35 -04003469 start = lstart >> sb->s_blocksize_bits;
3470 end = byte_end >> sb->s_blocksize_bits;
3471
3472 /* Handle partial zero within the single block */
Lukas Czernere1be3a92013-07-01 08:12:39 -04003473 if (start == end &&
3474 (partial_start || (partial_end != sb->s_blocksize - 1))) {
Lukas Czernera87dd182013-05-27 23:32:35 -04003475 err = ext4_block_zero_page_range(handle, mapping,
3476 lstart, length);
3477 return err;
3478 }
3479 /* Handle partial zero out on the start of the range */
Lukas Czernere1be3a92013-07-01 08:12:39 -04003480 if (partial_start) {
Lukas Czernera87dd182013-05-27 23:32:35 -04003481 err = ext4_block_zero_page_range(handle, mapping,
3482 lstart, sb->s_blocksize);
3483 if (err)
3484 return err;
3485 }
3486 /* Handle partial zero out on the end of the range */
Lukas Czernere1be3a92013-07-01 08:12:39 -04003487 if (partial_end != sb->s_blocksize - 1)
Lukas Czernera87dd182013-05-27 23:32:35 -04003488 err = ext4_block_zero_page_range(handle, mapping,
Lukas Czernere1be3a92013-07-01 08:12:39 -04003489 byte_end - partial_end,
3490 partial_end + 1);
Lukas Czernera87dd182013-05-27 23:32:35 -04003491 return err;
3492}
3493
Duane Griffin91ef4ca2008-07-11 19:27:31 -04003494int ext4_can_truncate(struct inode *inode)
3495{
Duane Griffin91ef4ca2008-07-11 19:27:31 -04003496 if (S_ISREG(inode->i_mode))
3497 return 1;
3498 if (S_ISDIR(inode->i_mode))
3499 return 1;
3500 if (S_ISLNK(inode->i_mode))
3501 return !ext4_inode_is_fast_symlink(inode);
3502 return 0;
3503}
3504
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003505/*
Allison Hendersona4bb6b62011-05-25 07:41:50 -04003506 * ext4_punch_hole: punches a hole in a file by releaseing the blocks
3507 * associated with the given offset and length
3508 *
3509 * @inode: File inode
3510 * @offset: The offset where the hole will begin
3511 * @len: The length of the hole
3512 *
Anatol Pomozov4907cb72012-09-01 10:31:09 -07003513 * Returns: 0 on success or negative on failure
Allison Hendersona4bb6b62011-05-25 07:41:50 -04003514 */
3515
Ashish Sangwanaeb28172013-07-01 08:12:38 -04003516int ext4_punch_hole(struct inode *inode, loff_t offset, loff_t length)
Allison Hendersona4bb6b62011-05-25 07:41:50 -04003517{
Theodore Ts'o26a4c0c2013-04-03 12:45:17 -04003518 struct super_block *sb = inode->i_sb;
3519 ext4_lblk_t first_block, stop_block;
3520 struct address_space *mapping = inode->i_mapping;
Lukas Czernera87dd182013-05-27 23:32:35 -04003521 loff_t first_block_offset, last_block_offset;
Theodore Ts'o26a4c0c2013-04-03 12:45:17 -04003522 handle_t *handle;
3523 unsigned int credits;
3524 int ret = 0;
3525
Allison Hendersona4bb6b62011-05-25 07:41:50 -04003526 if (!S_ISREG(inode->i_mode))
Allison Henderson73355192012-03-21 22:23:31 -04003527 return -EOPNOTSUPP;
Allison Hendersona4bb6b62011-05-25 07:41:50 -04003528
Lukas Czernerb8a86842014-03-18 18:05:35 -04003529 trace_ext4_punch_hole(inode, offset, length, 0);
Zheng Liuaaddea82013-01-16 20:21:26 -05003530
Theodore Ts'o26a4c0c2013-04-03 12:45:17 -04003531 /*
3532 * Write out all dirty pages to avoid race conditions
3533 * Then release them.
3534 */
3535 if (mapping->nrpages && mapping_tagged(mapping, PAGECACHE_TAG_DIRTY)) {
3536 ret = filemap_write_and_wait_range(mapping, offset,
3537 offset + length - 1);
3538 if (ret)
3539 return ret;
3540 }
3541
3542 mutex_lock(&inode->i_mutex);
Lukas Czerner9ef06ce2014-04-12 09:47:00 -04003543
Theodore Ts'o26a4c0c2013-04-03 12:45:17 -04003544 /* No need to punch hole beyond i_size */
3545 if (offset >= inode->i_size)
3546 goto out_mutex;
3547
3548 /*
3549 * If the hole extends beyond i_size, set the hole
3550 * to end after the page that contains i_size
3551 */
3552 if (offset + length > inode->i_size) {
3553 length = inode->i_size +
3554 PAGE_CACHE_SIZE - (inode->i_size & (PAGE_CACHE_SIZE - 1)) -
3555 offset;
3556 }
3557
Jan Karaa3612932013-08-16 21:19:41 -04003558 if (offset & (sb->s_blocksize - 1) ||
3559 (offset + length) & (sb->s_blocksize - 1)) {
3560 /*
3561 * Attach jinode to inode for jbd2 if we do any zeroing of
3562 * partial block
3563 */
3564 ret = ext4_inode_attach_jinode(inode);
3565 if (ret < 0)
3566 goto out_mutex;
3567
3568 }
3569
Lukas Czernera87dd182013-05-27 23:32:35 -04003570 first_block_offset = round_up(offset, sb->s_blocksize);
3571 last_block_offset = round_down((offset + length), sb->s_blocksize) - 1;
Theodore Ts'o26a4c0c2013-04-03 12:45:17 -04003572
Lukas Czernera87dd182013-05-27 23:32:35 -04003573 /* Now release the pages and zero block aligned part of pages*/
3574 if (last_block_offset > first_block_offset)
3575 truncate_pagecache_range(inode, first_block_offset,
3576 last_block_offset);
Theodore Ts'o26a4c0c2013-04-03 12:45:17 -04003577
3578 /* Wait all existing dio workers, newcomers will block on i_mutex */
3579 ext4_inode_block_unlocked_dio(inode);
Theodore Ts'o26a4c0c2013-04-03 12:45:17 -04003580 inode_dio_wait(inode);
3581
3582 if (ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS))
3583 credits = ext4_writepage_trans_blocks(inode);
3584 else
3585 credits = ext4_blocks_for_truncate(inode);
3586 handle = ext4_journal_start(inode, EXT4_HT_TRUNCATE, credits);
3587 if (IS_ERR(handle)) {
3588 ret = PTR_ERR(handle);
3589 ext4_std_error(sb, ret);
3590 goto out_dio;
3591 }
3592
Lukas Czernera87dd182013-05-27 23:32:35 -04003593 ret = ext4_zero_partial_blocks(handle, inode, offset,
3594 length);
3595 if (ret)
3596 goto out_stop;
Theodore Ts'o26a4c0c2013-04-03 12:45:17 -04003597
3598 first_block = (offset + sb->s_blocksize - 1) >>
3599 EXT4_BLOCK_SIZE_BITS(sb);
3600 stop_block = (offset + length) >> EXT4_BLOCK_SIZE_BITS(sb);
3601
3602 /* If there are no blocks to remove, return now */
3603 if (first_block >= stop_block)
3604 goto out_stop;
3605
3606 down_write(&EXT4_I(inode)->i_data_sem);
3607 ext4_discard_preallocations(inode);
3608
3609 ret = ext4_es_remove_extent(inode, first_block,
3610 stop_block - first_block);
3611 if (ret) {
3612 up_write(&EXT4_I(inode)->i_data_sem);
3613 goto out_stop;
3614 }
3615
3616 if (ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS))
3617 ret = ext4_ext_remove_space(inode, first_block,
3618 stop_block - 1);
3619 else
Lukas Czerner4f579ae2014-07-15 06:03:38 -04003620 ret = ext4_ind_remove_space(handle, inode, first_block,
Theodore Ts'o26a4c0c2013-04-03 12:45:17 -04003621 stop_block);
3622
Theodore Ts'o819c4922013-04-03 12:47:17 -04003623 up_write(&EXT4_I(inode)->i_data_sem);
Theodore Ts'o26a4c0c2013-04-03 12:45:17 -04003624 if (IS_SYNC(inode))
3625 ext4_handle_sync(handle);
Maxim Patlasove251f9b2014-02-20 16:58:05 -05003626
3627 /* Now release the pages again to reduce race window */
3628 if (last_block_offset > first_block_offset)
3629 truncate_pagecache_range(inode, first_block_offset,
3630 last_block_offset);
3631
Theodore Ts'o26a4c0c2013-04-03 12:45:17 -04003632 inode->i_mtime = inode->i_ctime = ext4_current_time(inode);
3633 ext4_mark_inode_dirty(handle, inode);
3634out_stop:
3635 ext4_journal_stop(handle);
3636out_dio:
3637 ext4_inode_resume_unlocked_dio(inode);
3638out_mutex:
3639 mutex_unlock(&inode->i_mutex);
3640 return ret;
Allison Hendersona4bb6b62011-05-25 07:41:50 -04003641}
3642
Jan Karaa3612932013-08-16 21:19:41 -04003643int ext4_inode_attach_jinode(struct inode *inode)
3644{
3645 struct ext4_inode_info *ei = EXT4_I(inode);
3646 struct jbd2_inode *jinode;
3647
3648 if (ei->jinode || !EXT4_SB(inode->i_sb)->s_journal)
3649 return 0;
3650
3651 jinode = jbd2_alloc_inode(GFP_KERNEL);
3652 spin_lock(&inode->i_lock);
3653 if (!ei->jinode) {
3654 if (!jinode) {
3655 spin_unlock(&inode->i_lock);
3656 return -ENOMEM;
3657 }
3658 ei->jinode = jinode;
3659 jbd2_journal_init_jbd_inode(ei->jinode, inode);
3660 jinode = NULL;
3661 }
3662 spin_unlock(&inode->i_lock);
3663 if (unlikely(jinode != NULL))
3664 jbd2_free_inode(jinode);
3665 return 0;
3666}
3667
Allison Hendersona4bb6b62011-05-25 07:41:50 -04003668/*
Mingming Cao617ba132006-10-11 01:20:53 -07003669 * ext4_truncate()
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003670 *
Mingming Cao617ba132006-10-11 01:20:53 -07003671 * We block out ext4_get_block() block instantiations across the entire
3672 * transaction, and VFS/VM ensures that ext4_truncate() cannot run
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003673 * simultaneously on behalf of the same inode.
3674 *
Justin P. Mattock42b2aa82011-11-28 20:31:00 -08003675 * As we work through the truncate and commit bits of it to the journal there
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003676 * is one core, guiding principle: the file's tree must always be consistent on
3677 * disk. We must be able to restart the truncate after a crash.
3678 *
3679 * The file's tree may be transiently inconsistent in memory (although it
3680 * probably isn't), but whenever we close off and commit a journal transaction,
3681 * the contents of (the filesystem + the journal) must be consistent and
3682 * restartable. It's pretty simple, really: bottom up, right to left (although
3683 * left-to-right works OK too).
3684 *
3685 * Note that at recovery time, journal replay occurs *before* the restart of
3686 * truncate against the orphan inode list.
3687 *
3688 * The committed inode has the new, desired i_size (which is the same as
Mingming Cao617ba132006-10-11 01:20:53 -07003689 * i_disksize in this case). After a crash, ext4_orphan_cleanup() will see
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003690 * that this inode's truncate did not complete and it will again call
Mingming Cao617ba132006-10-11 01:20:53 -07003691 * ext4_truncate() to have another go. So there will be instantiated blocks
3692 * to the right of the truncation point in a crashed ext4 filesystem. But
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003693 * that's fine - as long as they are linked from the inode, the post-crash
Mingming Cao617ba132006-10-11 01:20:53 -07003694 * ext4_truncate() run will find them and release them.
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003695 */
Mingming Cao617ba132006-10-11 01:20:53 -07003696void ext4_truncate(struct inode *inode)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003697{
Theodore Ts'o819c4922013-04-03 12:47:17 -04003698 struct ext4_inode_info *ei = EXT4_I(inode);
3699 unsigned int credits;
3700 handle_t *handle;
3701 struct address_space *mapping = inode->i_mapping;
Theodore Ts'o819c4922013-04-03 12:47:17 -04003702
Theodore Ts'o19b5ef62013-04-03 21:58:52 -04003703 /*
3704 * There is a possibility that we're either freeing the inode
Matthew Wilcoxe04027e2014-03-24 15:15:07 -04003705 * or it's a completely new inode. In those cases we might not
Theodore Ts'o19b5ef62013-04-03 21:58:52 -04003706 * have i_mutex locked because it's not necessary.
3707 */
3708 if (!(inode->i_state & (I_NEW|I_FREEING)))
3709 WARN_ON(!mutex_is_locked(&inode->i_mutex));
Jiaying Zhang0562e0b2011-03-21 21:38:05 -04003710 trace_ext4_truncate_enter(inode);
3711
Duane Griffin91ef4ca2008-07-11 19:27:31 -04003712 if (!ext4_can_truncate(inode))
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003713 return;
3714
Dmitry Monakhov12e9b892010-05-16 22:00:00 -04003715 ext4_clear_inode_flag(inode, EXT4_INODE_EOFBLOCKS);
Jiaying Zhangc8d46e42010-02-24 09:52:53 -05003716
Theodore Ts'o5534fb52009-09-17 09:34:16 -04003717 if (inode->i_size == 0 && !test_opt(inode->i_sb, NO_AUTO_DA_ALLOC))
Theodore Ts'o19f5fb72010-01-24 14:34:07 -05003718 ext4_set_inode_state(inode, EXT4_STATE_DA_ALLOC_CLOSE);
Theodore Ts'o7d8f9f72009-02-24 08:21:14 -05003719
Tao Maaef1c852012-12-10 14:06:02 -05003720 if (ext4_has_inline_data(inode)) {
3721 int has_inline = 1;
3722
3723 ext4_inline_data_truncate(inode, &has_inline);
3724 if (has_inline)
3725 return;
3726 }
3727
Jan Karaa3612932013-08-16 21:19:41 -04003728 /* If we zero-out tail of the page, we have to create jinode for jbd2 */
3729 if (inode->i_size & (inode->i_sb->s_blocksize - 1)) {
3730 if (ext4_inode_attach_jinode(inode) < 0)
3731 return;
3732 }
3733
Amir Goldsteinff9893d2011-06-27 16:36:31 -04003734 if (ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS))
Theodore Ts'o819c4922013-04-03 12:47:17 -04003735 credits = ext4_writepage_trans_blocks(inode);
Amir Goldsteinff9893d2011-06-27 16:36:31 -04003736 else
Theodore Ts'o819c4922013-04-03 12:47:17 -04003737 credits = ext4_blocks_for_truncate(inode);
3738
3739 handle = ext4_journal_start(inode, EXT4_HT_TRUNCATE, credits);
3740 if (IS_ERR(handle)) {
3741 ext4_std_error(inode->i_sb, PTR_ERR(handle));
3742 return;
3743 }
3744
Lukas Czernereb3544c2013-05-27 23:32:35 -04003745 if (inode->i_size & (inode->i_sb->s_blocksize - 1))
3746 ext4_block_truncate_page(handle, mapping, inode->i_size);
Theodore Ts'o819c4922013-04-03 12:47:17 -04003747
3748 /*
3749 * We add the inode to the orphan list, so that if this
3750 * truncate spans multiple transactions, and we crash, we will
3751 * resume the truncate when the filesystem recovers. It also
3752 * marks the inode dirty, to catch the new size.
3753 *
3754 * Implication: the file must always be in a sane, consistent
3755 * truncatable state while each transaction commits.
3756 */
3757 if (ext4_orphan_add(handle, inode))
3758 goto out_stop;
3759
3760 down_write(&EXT4_I(inode)->i_data_sem);
3761
3762 ext4_discard_preallocations(inode);
3763
3764 if (ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS))
3765 ext4_ext_truncate(handle, inode);
3766 else
3767 ext4_ind_truncate(handle, inode);
3768
3769 up_write(&ei->i_data_sem);
3770
3771 if (IS_SYNC(inode))
3772 ext4_handle_sync(handle);
3773
3774out_stop:
3775 /*
3776 * If this was a simple ftruncate() and the file will remain alive,
3777 * then we need to clear up the orphan record which we created above.
3778 * However, if this was a real unlink then we were called by
Wang Shilong58d86a52014-11-25 16:17:29 -05003779 * ext4_evict_inode(), and we allow that function to clean up the
Theodore Ts'o819c4922013-04-03 12:47:17 -04003780 * orphan info for us.
3781 */
3782 if (inode->i_nlink)
3783 ext4_orphan_del(handle, inode);
3784
3785 inode->i_mtime = inode->i_ctime = ext4_current_time(inode);
3786 ext4_mark_inode_dirty(handle, inode);
3787 ext4_journal_stop(handle);
Alex Tomasa86c6182006-10-11 01:21:03 -07003788
Jiaying Zhang0562e0b2011-03-21 21:38:05 -04003789 trace_ext4_truncate_exit(inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003790}
3791
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003792/*
Mingming Cao617ba132006-10-11 01:20:53 -07003793 * ext4_get_inode_loc returns with an extra refcount against the inode's
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003794 * underlying buffer_head on success. If 'in_mem' is true, we have all
3795 * data in memory that is needed to recreate the on-disk version of this
3796 * inode.
3797 */
Mingming Cao617ba132006-10-11 01:20:53 -07003798static int __ext4_get_inode_loc(struct inode *inode,
3799 struct ext4_iloc *iloc, int in_mem)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003800{
Theodore Ts'o240799c2008-10-09 23:53:47 -04003801 struct ext4_group_desc *gdp;
3802 struct buffer_head *bh;
3803 struct super_block *sb = inode->i_sb;
3804 ext4_fsblk_t block;
3805 int inodes_per_block, inode_offset;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003806
Aneesh Kumar K.V3a06d772008-11-22 15:04:59 -05003807 iloc->bh = NULL;
Theodore Ts'o240799c2008-10-09 23:53:47 -04003808 if (!ext4_valid_inum(sb, inode->i_ino))
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003809 return -EIO;
3810
Theodore Ts'o240799c2008-10-09 23:53:47 -04003811 iloc->block_group = (inode->i_ino - 1) / EXT4_INODES_PER_GROUP(sb);
3812 gdp = ext4_get_group_desc(sb, iloc->block_group, NULL);
3813 if (!gdp)
3814 return -EIO;
3815
3816 /*
3817 * Figure out the offset within the block group inode table
3818 */
Tao Ma00d09882011-05-09 10:26:41 -04003819 inodes_per_block = EXT4_SB(sb)->s_inodes_per_block;
Theodore Ts'o240799c2008-10-09 23:53:47 -04003820 inode_offset = ((inode->i_ino - 1) %
3821 EXT4_INODES_PER_GROUP(sb));
3822 block = ext4_inode_table(sb, gdp) + (inode_offset / inodes_per_block);
3823 iloc->offset = (inode_offset % inodes_per_block) * EXT4_INODE_SIZE(sb);
3824
3825 bh = sb_getblk(sb, block);
Wang Shilongaebf0242013-01-12 16:28:47 -05003826 if (unlikely(!bh))
Theodore Ts'o860d21e2013-01-12 16:19:36 -05003827 return -ENOMEM;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003828 if (!buffer_uptodate(bh)) {
3829 lock_buffer(bh);
Hidehiro Kawai9c83a922008-07-26 16:39:26 -04003830
3831 /*
3832 * If the buffer has the write error flag, we have failed
3833 * to write out another inode in the same block. In this
3834 * case, we don't have to read the block because we may
3835 * read the old inode data successfully.
3836 */
3837 if (buffer_write_io_error(bh) && !buffer_uptodate(bh))
3838 set_buffer_uptodate(bh);
3839
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003840 if (buffer_uptodate(bh)) {
3841 /* someone brought it uptodate while we waited */
3842 unlock_buffer(bh);
3843 goto has_buffer;
3844 }
3845
3846 /*
3847 * If we have all information of the inode in memory and this
3848 * is the only valid inode in the block, we need not read the
3849 * block.
3850 */
3851 if (in_mem) {
3852 struct buffer_head *bitmap_bh;
Theodore Ts'o240799c2008-10-09 23:53:47 -04003853 int i, start;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003854
Theodore Ts'o240799c2008-10-09 23:53:47 -04003855 start = inode_offset & ~(inodes_per_block - 1);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003856
3857 /* Is the inode bitmap in cache? */
Theodore Ts'o240799c2008-10-09 23:53:47 -04003858 bitmap_bh = sb_getblk(sb, ext4_inode_bitmap(sb, gdp));
Wang Shilongaebf0242013-01-12 16:28:47 -05003859 if (unlikely(!bitmap_bh))
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003860 goto make_io;
3861
3862 /*
3863 * If the inode bitmap isn't in cache then the
3864 * optimisation may end up performing two reads instead
3865 * of one, so skip it.
3866 */
3867 if (!buffer_uptodate(bitmap_bh)) {
3868 brelse(bitmap_bh);
3869 goto make_io;
3870 }
Theodore Ts'o240799c2008-10-09 23:53:47 -04003871 for (i = start; i < start + inodes_per_block; i++) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003872 if (i == inode_offset)
3873 continue;
Mingming Cao617ba132006-10-11 01:20:53 -07003874 if (ext4_test_bit(i, bitmap_bh->b_data))
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003875 break;
3876 }
3877 brelse(bitmap_bh);
Theodore Ts'o240799c2008-10-09 23:53:47 -04003878 if (i == start + inodes_per_block) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003879 /* all other inodes are free, so skip I/O */
3880 memset(bh->b_data, 0, bh->b_size);
3881 set_buffer_uptodate(bh);
3882 unlock_buffer(bh);
3883 goto has_buffer;
3884 }
3885 }
3886
3887make_io:
3888 /*
Theodore Ts'o240799c2008-10-09 23:53:47 -04003889 * If we need to do any I/O, try to pre-readahead extra
3890 * blocks from the inode table.
3891 */
3892 if (EXT4_SB(sb)->s_inode_readahead_blks) {
3893 ext4_fsblk_t b, end, table;
3894 unsigned num;
Theodore Ts'o0d606e22013-04-23 08:59:35 -04003895 __u32 ra_blks = EXT4_SB(sb)->s_inode_readahead_blks;
Theodore Ts'o240799c2008-10-09 23:53:47 -04003896
3897 table = ext4_inode_table(sb, gdp);
Theodore Ts'ob713a5e2009-03-31 09:11:14 -04003898 /* s_inode_readahead_blks is always a power of 2 */
Theodore Ts'o0d606e22013-04-23 08:59:35 -04003899 b = block & ~((ext4_fsblk_t) ra_blks - 1);
Theodore Ts'o240799c2008-10-09 23:53:47 -04003900 if (table > b)
3901 b = table;
Theodore Ts'o0d606e22013-04-23 08:59:35 -04003902 end = b + ra_blks;
Theodore Ts'o240799c2008-10-09 23:53:47 -04003903 num = EXT4_INODES_PER_GROUP(sb);
Darrick J. Wongfeb0ab32012-04-29 18:45:10 -04003904 if (ext4_has_group_desc_csum(sb))
Aneesh Kumar K.V560671a2009-01-05 22:20:24 -05003905 num -= ext4_itable_unused_count(sb, gdp);
Theodore Ts'o240799c2008-10-09 23:53:47 -04003906 table += num / inodes_per_block;
3907 if (end > table)
3908 end = table;
3909 while (b <= end)
3910 sb_breadahead(sb, b++);
3911 }
3912
3913 /*
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003914 * There are other valid inodes in the buffer, this inode
3915 * has in-inode xattrs, or we don't have this inode in memory.
3916 * Read the block from disk.
3917 */
Jiaying Zhang0562e0b2011-03-21 21:38:05 -04003918 trace_ext4_load_inode(inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003919 get_bh(bh);
3920 bh->b_end_io = end_buffer_read_sync;
Christoph Hellwig65299a32011-08-23 14:50:29 +02003921 submit_bh(READ | REQ_META | REQ_PRIO, bh);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003922 wait_on_buffer(bh);
3923 if (!buffer_uptodate(bh)) {
Theodore Ts'oc398eda2010-07-27 11:56:40 -04003924 EXT4_ERROR_INODE_BLOCK(inode, block,
3925 "unable to read itable block");
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003926 brelse(bh);
3927 return -EIO;
3928 }
3929 }
3930has_buffer:
3931 iloc->bh = bh;
3932 return 0;
3933}
3934
Mingming Cao617ba132006-10-11 01:20:53 -07003935int ext4_get_inode_loc(struct inode *inode, struct ext4_iloc *iloc)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003936{
3937 /* We have all inode data except xattrs in memory here. */
Mingming Cao617ba132006-10-11 01:20:53 -07003938 return __ext4_get_inode_loc(inode, iloc,
Theodore Ts'o19f5fb72010-01-24 14:34:07 -05003939 !ext4_test_inode_state(inode, EXT4_STATE_XATTR));
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003940}
3941
Mingming Cao617ba132006-10-11 01:20:53 -07003942void ext4_set_inode_flags(struct inode *inode)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003943{
Mingming Cao617ba132006-10-11 01:20:53 -07003944 unsigned int flags = EXT4_I(inode)->i_flags;
Theodore Ts'o00a1a052014-03-30 10:20:01 -04003945 unsigned int new_fl = 0;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003946
Mingming Cao617ba132006-10-11 01:20:53 -07003947 if (flags & EXT4_SYNC_FL)
Theodore Ts'o00a1a052014-03-30 10:20:01 -04003948 new_fl |= S_SYNC;
Mingming Cao617ba132006-10-11 01:20:53 -07003949 if (flags & EXT4_APPEND_FL)
Theodore Ts'o00a1a052014-03-30 10:20:01 -04003950 new_fl |= S_APPEND;
Mingming Cao617ba132006-10-11 01:20:53 -07003951 if (flags & EXT4_IMMUTABLE_FL)
Theodore Ts'o00a1a052014-03-30 10:20:01 -04003952 new_fl |= S_IMMUTABLE;
Mingming Cao617ba132006-10-11 01:20:53 -07003953 if (flags & EXT4_NOATIME_FL)
Theodore Ts'o00a1a052014-03-30 10:20:01 -04003954 new_fl |= S_NOATIME;
Mingming Cao617ba132006-10-11 01:20:53 -07003955 if (flags & EXT4_DIRSYNC_FL)
Theodore Ts'o00a1a052014-03-30 10:20:01 -04003956 new_fl |= S_DIRSYNC;
Ross Zwisler923ae0f2015-02-16 15:59:38 -08003957 if (test_opt(inode->i_sb, DAX))
3958 new_fl |= S_DAX;
Theodore Ts'o5f16f322014-03-24 14:43:12 -04003959 inode_set_flags(inode, new_fl,
Ross Zwisler923ae0f2015-02-16 15:59:38 -08003960 S_SYNC|S_APPEND|S_IMMUTABLE|S_NOATIME|S_DIRSYNC|S_DAX);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003961}
3962
Jan Karaff9ddf72007-07-18 09:24:20 -04003963/* Propagate flags from i_flags to EXT4_I(inode)->i_flags */
3964void ext4_get_inode_flags(struct ext4_inode_info *ei)
3965{
Dmitry Monakhov84a8dce2010-06-05 11:51:27 -04003966 unsigned int vfs_fl;
3967 unsigned long old_fl, new_fl;
Jan Karaff9ddf72007-07-18 09:24:20 -04003968
Dmitry Monakhov84a8dce2010-06-05 11:51:27 -04003969 do {
3970 vfs_fl = ei->vfs_inode.i_flags;
3971 old_fl = ei->i_flags;
3972 new_fl = old_fl & ~(EXT4_SYNC_FL|EXT4_APPEND_FL|
3973 EXT4_IMMUTABLE_FL|EXT4_NOATIME_FL|
3974 EXT4_DIRSYNC_FL);
3975 if (vfs_fl & S_SYNC)
3976 new_fl |= EXT4_SYNC_FL;
3977 if (vfs_fl & S_APPEND)
3978 new_fl |= EXT4_APPEND_FL;
3979 if (vfs_fl & S_IMMUTABLE)
3980 new_fl |= EXT4_IMMUTABLE_FL;
3981 if (vfs_fl & S_NOATIME)
3982 new_fl |= EXT4_NOATIME_FL;
3983 if (vfs_fl & S_DIRSYNC)
3984 new_fl |= EXT4_DIRSYNC_FL;
3985 } while (cmpxchg(&ei->i_flags, old_fl, new_fl) != old_fl);
Jan Karaff9ddf72007-07-18 09:24:20 -04003986}
Theodore Ts'ode9a55b2009-06-14 17:45:34 -04003987
Aneesh Kumar K.V0fc1b452008-01-28 23:58:26 -05003988static blkcnt_t ext4_inode_blocks(struct ext4_inode *raw_inode,
Theodore Ts'ode9a55b2009-06-14 17:45:34 -04003989 struct ext4_inode_info *ei)
Aneesh Kumar K.V0fc1b452008-01-28 23:58:26 -05003990{
3991 blkcnt_t i_blocks ;
Aneesh Kumar K.V8180a562008-01-28 23:58:27 -05003992 struct inode *inode = &(ei->vfs_inode);
3993 struct super_block *sb = inode->i_sb;
Aneesh Kumar K.V0fc1b452008-01-28 23:58:26 -05003994
3995 if (EXT4_HAS_RO_COMPAT_FEATURE(sb,
3996 EXT4_FEATURE_RO_COMPAT_HUGE_FILE)) {
3997 /* we are using combined 48 bit field */
3998 i_blocks = ((u64)le16_to_cpu(raw_inode->i_blocks_high)) << 32 |
3999 le32_to_cpu(raw_inode->i_blocks_lo);
Theodore Ts'o07a03822010-06-14 09:54:48 -04004000 if (ext4_test_inode_flag(inode, EXT4_INODE_HUGE_FILE)) {
Aneesh Kumar K.V8180a562008-01-28 23:58:27 -05004001 /* i_blocks represent file system block size */
4002 return i_blocks << (inode->i_blkbits - 9);
4003 } else {
4004 return i_blocks;
4005 }
Aneesh Kumar K.V0fc1b452008-01-28 23:58:26 -05004006 } else {
4007 return le32_to_cpu(raw_inode->i_blocks_lo);
4008 }
4009}
Jan Karaff9ddf72007-07-18 09:24:20 -04004010
Tao Ma152a7b02012-12-02 11:13:24 -05004011static inline void ext4_iget_extra_inode(struct inode *inode,
4012 struct ext4_inode *raw_inode,
4013 struct ext4_inode_info *ei)
4014{
4015 __le32 *magic = (void *)raw_inode +
4016 EXT4_GOOD_OLD_INODE_SIZE + ei->i_extra_isize;
Tao Ma67cf5b02012-12-10 14:04:46 -05004017 if (*magic == cpu_to_le32(EXT4_XATTR_MAGIC)) {
Tao Ma152a7b02012-12-02 11:13:24 -05004018 ext4_set_inode_state(inode, EXT4_STATE_XATTR);
Tao Ma67cf5b02012-12-10 14:04:46 -05004019 ext4_find_inline_data_nolock(inode);
Tao Maf19d5872012-12-10 14:05:51 -05004020 } else
4021 EXT4_I(inode)->i_inline_off = 0;
Tao Ma152a7b02012-12-02 11:13:24 -05004022}
4023
David Howells1d1fe1e2008-02-07 00:15:37 -08004024struct inode *ext4_iget(struct super_block *sb, unsigned long ino)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004025{
Mingming Cao617ba132006-10-11 01:20:53 -07004026 struct ext4_iloc iloc;
4027 struct ext4_inode *raw_inode;
David Howells1d1fe1e2008-02-07 00:15:37 -08004028 struct ext4_inode_info *ei;
David Howells1d1fe1e2008-02-07 00:15:37 -08004029 struct inode *inode;
Jan Karab436b9b2009-12-08 23:51:10 -05004030 journal_t *journal = EXT4_SB(sb)->s_journal;
David Howells1d1fe1e2008-02-07 00:15:37 -08004031 long ret;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004032 int block;
Eric W. Biederman08cefc72012-02-07 15:41:49 -08004033 uid_t i_uid;
4034 gid_t i_gid;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004035
David Howells1d1fe1e2008-02-07 00:15:37 -08004036 inode = iget_locked(sb, ino);
4037 if (!inode)
4038 return ERR_PTR(-ENOMEM);
4039 if (!(inode->i_state & I_NEW))
4040 return inode;
4041
4042 ei = EXT4_I(inode);
Peter Huewe7dc57612011-02-21 21:01:42 -05004043 iloc.bh = NULL;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004044
David Howells1d1fe1e2008-02-07 00:15:37 -08004045 ret = __ext4_get_inode_loc(inode, &iloc, 0);
4046 if (ret < 0)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004047 goto bad_inode;
Mingming Cao617ba132006-10-11 01:20:53 -07004048 raw_inode = ext4_raw_inode(&iloc);
Darrick J. Wong814525f2012-04-29 18:31:10 -04004049
4050 if (EXT4_INODE_SIZE(inode->i_sb) > EXT4_GOOD_OLD_INODE_SIZE) {
4051 ei->i_extra_isize = le16_to_cpu(raw_inode->i_extra_isize);
4052 if (EXT4_GOOD_OLD_INODE_SIZE + ei->i_extra_isize >
4053 EXT4_INODE_SIZE(inode->i_sb)) {
4054 EXT4_ERROR_INODE(inode, "bad extra_isize (%u != %u)",
4055 EXT4_GOOD_OLD_INODE_SIZE + ei->i_extra_isize,
4056 EXT4_INODE_SIZE(inode->i_sb));
4057 ret = -EIO;
4058 goto bad_inode;
4059 }
4060 } else
4061 ei->i_extra_isize = 0;
4062
4063 /* Precompute checksum seed for inode metadata */
Dmitry Monakhov9aa5d322014-10-13 03:36:16 -04004064 if (ext4_has_metadata_csum(sb)) {
Darrick J. Wong814525f2012-04-29 18:31:10 -04004065 struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb);
4066 __u32 csum;
4067 __le32 inum = cpu_to_le32(inode->i_ino);
4068 __le32 gen = raw_inode->i_generation;
4069 csum = ext4_chksum(sbi, sbi->s_csum_seed, (__u8 *)&inum,
4070 sizeof(inum));
4071 ei->i_csum_seed = ext4_chksum(sbi, csum, (__u8 *)&gen,
4072 sizeof(gen));
4073 }
4074
4075 if (!ext4_inode_csum_verify(inode, raw_inode, ei)) {
4076 EXT4_ERROR_INODE(inode, "checksum invalid");
4077 ret = -EIO;
4078 goto bad_inode;
4079 }
4080
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004081 inode->i_mode = le16_to_cpu(raw_inode->i_mode);
Eric W. Biederman08cefc72012-02-07 15:41:49 -08004082 i_uid = (uid_t)le16_to_cpu(raw_inode->i_uid_low);
4083 i_gid = (gid_t)le16_to_cpu(raw_inode->i_gid_low);
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04004084 if (!(test_opt(inode->i_sb, NO_UID32))) {
Eric W. Biederman08cefc72012-02-07 15:41:49 -08004085 i_uid |= le16_to_cpu(raw_inode->i_uid_high) << 16;
4086 i_gid |= le16_to_cpu(raw_inode->i_gid_high) << 16;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004087 }
Eric W. Biederman08cefc72012-02-07 15:41:49 -08004088 i_uid_write(inode, i_uid);
4089 i_gid_write(inode, i_gid);
Miklos Szeredibfe86842011-10-28 14:13:29 +02004090 set_nlink(inode, le16_to_cpu(raw_inode->i_links_count));
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004091
Theodore Ts'o353eb832011-01-10 12:18:25 -05004092 ext4_clear_state_flags(ei); /* Only relevant on 32-bit archs */
Tao Ma67cf5b02012-12-10 14:04:46 -05004093 ei->i_inline_off = 0;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004094 ei->i_dir_start_lookup = 0;
4095 ei->i_dtime = le32_to_cpu(raw_inode->i_dtime);
4096 /* We now have enough fields to check if the inode was active or not.
4097 * This is needed because nfsd might try to access dead inodes
4098 * the test is that same one that e2fsck uses
4099 * NeilBrown 1999oct15
4100 */
4101 if (inode->i_nlink == 0) {
Dr. Tilmann Bubeck393d1d12013-04-08 12:54:05 -04004102 if ((inode->i_mode == 0 ||
4103 !(EXT4_SB(inode->i_sb)->s_mount_state & EXT4_ORPHAN_FS)) &&
4104 ino != EXT4_BOOT_LOADER_INO) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004105 /* this inode is deleted */
David Howells1d1fe1e2008-02-07 00:15:37 -08004106 ret = -ESTALE;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004107 goto bad_inode;
4108 }
4109 /* The only unlinked inodes we let through here have
4110 * valid i_mode and are being read by the orphan
4111 * recovery code: that's fine, we're about to complete
Dr. Tilmann Bubeck393d1d12013-04-08 12:54:05 -04004112 * the process of deleting those.
4113 * OR it is the EXT4_BOOT_LOADER_INO which is
4114 * not initialized on a new filesystem. */
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004115 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004116 ei->i_flags = le32_to_cpu(raw_inode->i_flags);
Aneesh Kumar K.V0fc1b452008-01-28 23:58:26 -05004117 inode->i_blocks = ext4_inode_blocks(raw_inode, ei);
Aneesh Kumar K.V7973c0c2008-01-28 23:58:27 -05004118 ei->i_file_acl = le32_to_cpu(raw_inode->i_file_acl_lo);
Theodore Ts'oa9e81742009-04-24 16:11:18 -04004119 if (EXT4_HAS_INCOMPAT_FEATURE(sb, EXT4_FEATURE_INCOMPAT_64BIT))
Badari Pulavartya1ddeb72006-10-11 01:21:09 -07004120 ei->i_file_acl |=
4121 ((__u64)le16_to_cpu(raw_inode->i_file_acl_high)) << 32;
Aneesh Kumar K.Va48380f2008-01-28 23:58:27 -05004122 inode->i_size = ext4_isize(raw_inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004123 ei->i_disksize = inode->i_size;
Dmitry Monakhova9e7f442009-12-14 15:21:14 +03004124#ifdef CONFIG_QUOTA
4125 ei->i_reserved_quota = 0;
4126#endif
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004127 inode->i_generation = le32_to_cpu(raw_inode->i_generation);
4128 ei->i_block_group = iloc.block_group;
Theodore Ts'oa4912122009-03-12 12:18:34 -04004129 ei->i_last_alloc_group = ~0;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004130 /*
4131 * NOTE! The in-memory inode i_data array is in little-endian order
4132 * even on big-endian machines: we do NOT byteswap the block numbers!
4133 */
Mingming Cao617ba132006-10-11 01:20:53 -07004134 for (block = 0; block < EXT4_N_BLOCKS; block++)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004135 ei->i_data[block] = raw_inode->i_block[block];
4136 INIT_LIST_HEAD(&ei->i_orphan);
4137
Jan Karab436b9b2009-12-08 23:51:10 -05004138 /*
4139 * Set transaction id's of transactions that have to be committed
4140 * to finish f[data]sync. We set them to currently running transaction
4141 * as we cannot be sure that the inode or some of its metadata isn't
4142 * part of the transaction - the inode could have been reclaimed and
4143 * now it is reread from disk.
4144 */
4145 if (journal) {
4146 transaction_t *transaction;
4147 tid_t tid;
4148
Theodore Ts'oa931da62010-08-03 21:35:12 -04004149 read_lock(&journal->j_state_lock);
Jan Karab436b9b2009-12-08 23:51:10 -05004150 if (journal->j_running_transaction)
4151 transaction = journal->j_running_transaction;
4152 else
4153 transaction = journal->j_committing_transaction;
4154 if (transaction)
4155 tid = transaction->t_tid;
4156 else
4157 tid = journal->j_commit_sequence;
Theodore Ts'oa931da62010-08-03 21:35:12 -04004158 read_unlock(&journal->j_state_lock);
Jan Karab436b9b2009-12-08 23:51:10 -05004159 ei->i_sync_tid = tid;
4160 ei->i_datasync_tid = tid;
4161 }
4162
Eric Sandeen0040d982008-02-05 22:36:43 -05004163 if (EXT4_INODE_SIZE(inode->i_sb) > EXT4_GOOD_OLD_INODE_SIZE) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004164 if (ei->i_extra_isize == 0) {
4165 /* The extra space is currently unused. Use it. */
Mingming Cao617ba132006-10-11 01:20:53 -07004166 ei->i_extra_isize = sizeof(struct ext4_inode) -
4167 EXT4_GOOD_OLD_INODE_SIZE;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004168 } else {
Tao Ma152a7b02012-12-02 11:13:24 -05004169 ext4_iget_extra_inode(inode, raw_inode, ei);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004170 }
Darrick J. Wong814525f2012-04-29 18:31:10 -04004171 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004172
Kalpak Shahef7f3832007-07-18 09:15:20 -04004173 EXT4_INODE_GET_XTIME(i_ctime, inode, raw_inode);
4174 EXT4_INODE_GET_XTIME(i_mtime, inode, raw_inode);
4175 EXT4_INODE_GET_XTIME(i_atime, inode, raw_inode);
4176 EXT4_EINODE_GET_XTIME(i_crtime, ei, raw_inode);
4177
Theodore Ts'oed3654e2014-03-24 14:09:06 -04004178 if (likely(!test_opt2(inode->i_sb, HURD_COMPAT))) {
Theodore Ts'oc4f65702014-03-20 00:32:57 -04004179 inode->i_version = le32_to_cpu(raw_inode->i_disk_version);
4180 if (EXT4_INODE_SIZE(inode->i_sb) > EXT4_GOOD_OLD_INODE_SIZE) {
4181 if (EXT4_FITS_IN_INODE(raw_inode, ei, i_version_hi))
4182 inode->i_version |=
4183 (__u64)(le32_to_cpu(raw_inode->i_version_hi)) << 32;
4184 }
Jean Noel Cordenner25ec56b2008-01-28 23:58:27 -05004185 }
4186
Theodore Ts'oc4b5a612009-04-24 18:45:35 -04004187 ret = 0;
Theodore Ts'o485c26e2009-04-24 13:43:20 -04004188 if (ei->i_file_acl &&
Theodore Ts'o10329882009-11-15 15:29:56 -05004189 !ext4_data_block_valid(EXT4_SB(sb), ei->i_file_acl, 1)) {
Theodore Ts'o24676da2010-05-16 21:00:00 -04004190 EXT4_ERROR_INODE(inode, "bad extended attribute block %llu",
4191 ei->i_file_acl);
Theodore Ts'o485c26e2009-04-24 13:43:20 -04004192 ret = -EIO;
4193 goto bad_inode;
Tao Maf19d5872012-12-10 14:05:51 -05004194 } else if (!ext4_has_inline_data(inode)) {
4195 if (ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS)) {
4196 if ((S_ISREG(inode->i_mode) || S_ISDIR(inode->i_mode) ||
4197 (S_ISLNK(inode->i_mode) &&
4198 !ext4_inode_is_fast_symlink(inode))))
4199 /* Validate extent which is part of inode */
4200 ret = ext4_ext_check_inode(inode);
4201 } else if (S_ISREG(inode->i_mode) || S_ISDIR(inode->i_mode) ||
4202 (S_ISLNK(inode->i_mode) &&
4203 !ext4_inode_is_fast_symlink(inode))) {
4204 /* Validate block references which are part of inode */
4205 ret = ext4_ind_check_inode(inode);
4206 }
Thiemo Nagelfe2c8192009-03-31 08:36:10 -04004207 }
Theodore Ts'o567f3e92009-11-14 08:19:05 -05004208 if (ret)
Theodore Ts'ode9a55b2009-06-14 17:45:34 -04004209 goto bad_inode;
Aneesh Kumar K.V7a262f72009-03-27 16:39:58 -04004210
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004211 if (S_ISREG(inode->i_mode)) {
Mingming Cao617ba132006-10-11 01:20:53 -07004212 inode->i_op = &ext4_file_inode_operations;
Boaz Harroshbe64f882015-04-15 16:15:17 -07004213 inode->i_fop = &ext4_file_operations;
Mingming Cao617ba132006-10-11 01:20:53 -07004214 ext4_set_aops(inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004215 } else if (S_ISDIR(inode->i_mode)) {
Mingming Cao617ba132006-10-11 01:20:53 -07004216 inode->i_op = &ext4_dir_inode_operations;
4217 inode->i_fop = &ext4_dir_operations;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004218 } else if (S_ISLNK(inode->i_mode)) {
Theodore Ts'of348c252015-04-16 01:55:00 -04004219 if (ext4_inode_is_fast_symlink(inode) &&
4220 !ext4_encrypted_inode(inode)) {
Mingming Cao617ba132006-10-11 01:20:53 -07004221 inode->i_op = &ext4_fast_symlink_inode_operations;
Duane Griffine83c1392008-12-19 20:47:15 +00004222 nd_terminate_link(ei->i_data, inode->i_size,
4223 sizeof(ei->i_data) - 1);
4224 } else {
Mingming Cao617ba132006-10-11 01:20:53 -07004225 inode->i_op = &ext4_symlink_inode_operations;
4226 ext4_set_aops(inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004227 }
Theodore Ts'o563bdd62009-03-26 00:06:19 -04004228 } else if (S_ISCHR(inode->i_mode) || S_ISBLK(inode->i_mode) ||
4229 S_ISFIFO(inode->i_mode) || S_ISSOCK(inode->i_mode)) {
Mingming Cao617ba132006-10-11 01:20:53 -07004230 inode->i_op = &ext4_special_inode_operations;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004231 if (raw_inode->i_block[0])
4232 init_special_inode(inode, inode->i_mode,
4233 old_decode_dev(le32_to_cpu(raw_inode->i_block[0])));
4234 else
4235 init_special_inode(inode, inode->i_mode,
4236 new_decode_dev(le32_to_cpu(raw_inode->i_block[1])));
Dr. Tilmann Bubeck393d1d12013-04-08 12:54:05 -04004237 } else if (ino == EXT4_BOOT_LOADER_INO) {
4238 make_bad_inode(inode);
Theodore Ts'o563bdd62009-03-26 00:06:19 -04004239 } else {
Theodore Ts'o563bdd62009-03-26 00:06:19 -04004240 ret = -EIO;
Theodore Ts'o24676da2010-05-16 21:00:00 -04004241 EXT4_ERROR_INODE(inode, "bogus i_mode (%o)", inode->i_mode);
Theodore Ts'o563bdd62009-03-26 00:06:19 -04004242 goto bad_inode;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004243 }
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04004244 brelse(iloc.bh);
Mingming Cao617ba132006-10-11 01:20:53 -07004245 ext4_set_inode_flags(inode);
David Howells1d1fe1e2008-02-07 00:15:37 -08004246 unlock_new_inode(inode);
4247 return inode;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004248
4249bad_inode:
Theodore Ts'o567f3e92009-11-14 08:19:05 -05004250 brelse(iloc.bh);
David Howells1d1fe1e2008-02-07 00:15:37 -08004251 iget_failed(inode);
4252 return ERR_PTR(ret);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004253}
4254
Theodore Ts'of4bb2982014-10-05 22:56:00 -04004255struct inode *ext4_iget_normal(struct super_block *sb, unsigned long ino)
4256{
4257 if (ino < EXT4_FIRST_INO(sb) && ino != EXT4_ROOT_INO)
4258 return ERR_PTR(-EIO);
4259 return ext4_iget(sb, ino);
4260}
4261
Aneesh Kumar K.V0fc1b452008-01-28 23:58:26 -05004262static int ext4_inode_blocks_set(handle_t *handle,
4263 struct ext4_inode *raw_inode,
4264 struct ext4_inode_info *ei)
4265{
4266 struct inode *inode = &(ei->vfs_inode);
4267 u64 i_blocks = inode->i_blocks;
4268 struct super_block *sb = inode->i_sb;
Aneesh Kumar K.V0fc1b452008-01-28 23:58:26 -05004269
4270 if (i_blocks <= ~0U) {
4271 /*
Anatol Pomozov4907cb72012-09-01 10:31:09 -07004272 * i_blocks can be represented in a 32 bit variable
Aneesh Kumar K.V0fc1b452008-01-28 23:58:26 -05004273 * as multiple of 512 bytes
4274 */
Aneesh Kumar K.V8180a562008-01-28 23:58:27 -05004275 raw_inode->i_blocks_lo = cpu_to_le32(i_blocks);
Aneesh Kumar K.V0fc1b452008-01-28 23:58:26 -05004276 raw_inode->i_blocks_high = 0;
Dmitry Monakhov84a8dce2010-06-05 11:51:27 -04004277 ext4_clear_inode_flag(inode, EXT4_INODE_HUGE_FILE);
Theodore Ts'of287a1a2008-10-16 22:50:48 -04004278 return 0;
4279 }
4280 if (!EXT4_HAS_RO_COMPAT_FEATURE(sb, EXT4_FEATURE_RO_COMPAT_HUGE_FILE))
4281 return -EFBIG;
4282
4283 if (i_blocks <= 0xffffffffffffULL) {
Aneesh Kumar K.V0fc1b452008-01-28 23:58:26 -05004284 /*
4285 * i_blocks can be represented in a 48 bit variable
4286 * as multiple of 512 bytes
4287 */
Aneesh Kumar K.V8180a562008-01-28 23:58:27 -05004288 raw_inode->i_blocks_lo = cpu_to_le32(i_blocks);
Aneesh Kumar K.V0fc1b452008-01-28 23:58:26 -05004289 raw_inode->i_blocks_high = cpu_to_le16(i_blocks >> 32);
Dmitry Monakhov84a8dce2010-06-05 11:51:27 -04004290 ext4_clear_inode_flag(inode, EXT4_INODE_HUGE_FILE);
Aneesh Kumar K.V0fc1b452008-01-28 23:58:26 -05004291 } else {
Dmitry Monakhov84a8dce2010-06-05 11:51:27 -04004292 ext4_set_inode_flag(inode, EXT4_INODE_HUGE_FILE);
Aneesh Kumar K.V8180a562008-01-28 23:58:27 -05004293 /* i_block is stored in file system block size */
4294 i_blocks = i_blocks >> (inode->i_blkbits - 9);
4295 raw_inode->i_blocks_lo = cpu_to_le32(i_blocks);
4296 raw_inode->i_blocks_high = cpu_to_le16(i_blocks >> 32);
Aneesh Kumar K.V0fc1b452008-01-28 23:58:26 -05004297 }
Theodore Ts'of287a1a2008-10-16 22:50:48 -04004298 return 0;
Aneesh Kumar K.V0fc1b452008-01-28 23:58:26 -05004299}
4300
Theodore Ts'oa26f4992015-02-02 00:37:02 -05004301struct other_inode {
4302 unsigned long orig_ino;
4303 struct ext4_inode *raw_inode;
4304};
4305
4306static int other_inode_match(struct inode * inode, unsigned long ino,
4307 void *data)
4308{
4309 struct other_inode *oi = (struct other_inode *) data;
4310
4311 if ((inode->i_ino != ino) ||
4312 (inode->i_state & (I_FREEING | I_WILL_FREE | I_NEW |
4313 I_DIRTY_SYNC | I_DIRTY_DATASYNC)) ||
4314 ((inode->i_state & I_DIRTY_TIME) == 0))
4315 return 0;
4316 spin_lock(&inode->i_lock);
4317 if (((inode->i_state & (I_FREEING | I_WILL_FREE | I_NEW |
4318 I_DIRTY_SYNC | I_DIRTY_DATASYNC)) == 0) &&
4319 (inode->i_state & I_DIRTY_TIME)) {
4320 struct ext4_inode_info *ei = EXT4_I(inode);
4321
4322 inode->i_state &= ~(I_DIRTY_TIME | I_DIRTY_TIME_EXPIRED);
4323 spin_unlock(&inode->i_lock);
4324
4325 spin_lock(&ei->i_raw_lock);
4326 EXT4_INODE_SET_XTIME(i_ctime, inode, oi->raw_inode);
4327 EXT4_INODE_SET_XTIME(i_mtime, inode, oi->raw_inode);
4328 EXT4_INODE_SET_XTIME(i_atime, inode, oi->raw_inode);
4329 ext4_inode_csum_set(inode, oi->raw_inode, ei);
4330 spin_unlock(&ei->i_raw_lock);
4331 trace_ext4_other_inode_update_time(inode, oi->orig_ino);
4332 return -1;
4333 }
4334 spin_unlock(&inode->i_lock);
4335 return -1;
4336}
4337
4338/*
4339 * Opportunistically update the other time fields for other inodes in
4340 * the same inode table block.
4341 */
4342static void ext4_update_other_inodes_time(struct super_block *sb,
4343 unsigned long orig_ino, char *buf)
4344{
4345 struct other_inode oi;
4346 unsigned long ino;
4347 int i, inodes_per_block = EXT4_SB(sb)->s_inodes_per_block;
4348 int inode_size = EXT4_INODE_SIZE(sb);
4349
4350 oi.orig_ino = orig_ino;
Theodore Ts'o8f4d8552015-05-14 18:19:01 -04004351 ino = (orig_ino & ~(inodes_per_block - 1)) + 1;
Theodore Ts'oa26f4992015-02-02 00:37:02 -05004352 for (i = 0; i < inodes_per_block; i++, ino++, buf += inode_size) {
4353 if (ino == orig_ino)
4354 continue;
4355 oi.raw_inode = (struct ext4_inode *) buf;
4356 (void) find_inode_nowait(sb, ino, other_inode_match, &oi);
4357 }
4358}
4359
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004360/*
4361 * Post the struct inode info into an on-disk inode location in the
4362 * buffer-cache. This gobbles the caller's reference to the
4363 * buffer_head in the inode location struct.
4364 *
4365 * The caller must have write access to iloc->bh.
4366 */
Mingming Cao617ba132006-10-11 01:20:53 -07004367static int ext4_do_update_inode(handle_t *handle,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004368 struct inode *inode,
Frank Mayhar830156c2009-09-29 10:07:47 -04004369 struct ext4_iloc *iloc)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004370{
Mingming Cao617ba132006-10-11 01:20:53 -07004371 struct ext4_inode *raw_inode = ext4_raw_inode(iloc);
4372 struct ext4_inode_info *ei = EXT4_I(inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004373 struct buffer_head *bh = iloc->bh;
Theodore Ts'o202ee5d2014-04-21 14:37:55 -04004374 struct super_block *sb = inode->i_sb;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004375 int err = 0, rc, block;
Theodore Ts'o202ee5d2014-04-21 14:37:55 -04004376 int need_datasync = 0, set_large_file = 0;
Eric W. Biederman08cefc72012-02-07 15:41:49 -08004377 uid_t i_uid;
4378 gid_t i_gid;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004379
Theodore Ts'o202ee5d2014-04-21 14:37:55 -04004380 spin_lock(&ei->i_raw_lock);
4381
4382 /* For fields not tracked in the in-memory inode,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004383 * initialise them to zero for new inodes. */
Theodore Ts'o19f5fb72010-01-24 14:34:07 -05004384 if (ext4_test_inode_state(inode, EXT4_STATE_NEW))
Mingming Cao617ba132006-10-11 01:20:53 -07004385 memset(raw_inode, 0, EXT4_SB(inode->i_sb)->s_inode_size);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004386
Jan Karaff9ddf72007-07-18 09:24:20 -04004387 ext4_get_inode_flags(ei);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004388 raw_inode->i_mode = cpu_to_le16(inode->i_mode);
Eric W. Biederman08cefc72012-02-07 15:41:49 -08004389 i_uid = i_uid_read(inode);
4390 i_gid = i_gid_read(inode);
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04004391 if (!(test_opt(inode->i_sb, NO_UID32))) {
Eric W. Biederman08cefc72012-02-07 15:41:49 -08004392 raw_inode->i_uid_low = cpu_to_le16(low_16_bits(i_uid));
4393 raw_inode->i_gid_low = cpu_to_le16(low_16_bits(i_gid));
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004394/*
4395 * Fix up interoperability with old kernels. Otherwise, old inodes get
4396 * re-used with the upper 16 bits of the uid/gid intact
4397 */
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04004398 if (!ei->i_dtime) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004399 raw_inode->i_uid_high =
Eric W. Biederman08cefc72012-02-07 15:41:49 -08004400 cpu_to_le16(high_16_bits(i_uid));
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004401 raw_inode->i_gid_high =
Eric W. Biederman08cefc72012-02-07 15:41:49 -08004402 cpu_to_le16(high_16_bits(i_gid));
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004403 } else {
4404 raw_inode->i_uid_high = 0;
4405 raw_inode->i_gid_high = 0;
4406 }
4407 } else {
Eric W. Biederman08cefc72012-02-07 15:41:49 -08004408 raw_inode->i_uid_low = cpu_to_le16(fs_high2lowuid(i_uid));
4409 raw_inode->i_gid_low = cpu_to_le16(fs_high2lowgid(i_gid));
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004410 raw_inode->i_uid_high = 0;
4411 raw_inode->i_gid_high = 0;
4412 }
4413 raw_inode->i_links_count = cpu_to_le16(inode->i_nlink);
Kalpak Shahef7f3832007-07-18 09:15:20 -04004414
4415 EXT4_INODE_SET_XTIME(i_ctime, inode, raw_inode);
4416 EXT4_INODE_SET_XTIME(i_mtime, inode, raw_inode);
4417 EXT4_INODE_SET_XTIME(i_atime, inode, raw_inode);
4418 EXT4_EINODE_SET_XTIME(i_crtime, ei, raw_inode);
4419
Li Xibce92d52014-10-01 22:11:06 -04004420 err = ext4_inode_blocks_set(handle, raw_inode, ei);
4421 if (err) {
Theodore Ts'o202ee5d2014-04-21 14:37:55 -04004422 spin_unlock(&ei->i_raw_lock);
Aneesh Kumar K.V0fc1b452008-01-28 23:58:26 -05004423 goto out_brelse;
Theodore Ts'o202ee5d2014-04-21 14:37:55 -04004424 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004425 raw_inode->i_dtime = cpu_to_le32(ei->i_dtime);
Theodore Ts'o353eb832011-01-10 12:18:25 -05004426 raw_inode->i_flags = cpu_to_le32(ei->i_flags & 0xFFFFFFFF);
Theodore Ts'oed3654e2014-03-24 14:09:06 -04004427 if (likely(!test_opt2(inode->i_sb, HURD_COMPAT)))
Badari Pulavartya1ddeb72006-10-11 01:21:09 -07004428 raw_inode->i_file_acl_high =
4429 cpu_to_le16(ei->i_file_acl >> 32);
Aneesh Kumar K.V7973c0c2008-01-28 23:58:27 -05004430 raw_inode->i_file_acl_lo = cpu_to_le32(ei->i_file_acl);
Jan Karab71fc072012-09-26 21:52:20 -04004431 if (ei->i_disksize != ext4_isize(raw_inode)) {
4432 ext4_isize_set(raw_inode, ei->i_disksize);
4433 need_datasync = 1;
4434 }
Aneesh Kumar K.Va48380f2008-01-28 23:58:27 -05004435 if (ei->i_disksize > 0x7fffffffULL) {
Aneesh Kumar K.Va48380f2008-01-28 23:58:27 -05004436 if (!EXT4_HAS_RO_COMPAT_FEATURE(sb,
4437 EXT4_FEATURE_RO_COMPAT_LARGE_FILE) ||
4438 EXT4_SB(sb)->s_es->s_rev_level ==
Theodore Ts'o202ee5d2014-04-21 14:37:55 -04004439 cpu_to_le32(EXT4_GOOD_OLD_REV))
4440 set_large_file = 1;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004441 }
4442 raw_inode->i_generation = cpu_to_le32(inode->i_generation);
4443 if (S_ISCHR(inode->i_mode) || S_ISBLK(inode->i_mode)) {
4444 if (old_valid_dev(inode->i_rdev)) {
4445 raw_inode->i_block[0] =
4446 cpu_to_le32(old_encode_dev(inode->i_rdev));
4447 raw_inode->i_block[1] = 0;
4448 } else {
4449 raw_inode->i_block[0] = 0;
4450 raw_inode->i_block[1] =
4451 cpu_to_le32(new_encode_dev(inode->i_rdev));
4452 raw_inode->i_block[2] = 0;
4453 }
Tao Maf19d5872012-12-10 14:05:51 -05004454 } else if (!ext4_has_inline_data(inode)) {
Theodore Ts'ode9a55b2009-06-14 17:45:34 -04004455 for (block = 0; block < EXT4_N_BLOCKS; block++)
4456 raw_inode->i_block[block] = ei->i_data[block];
Tao Maf19d5872012-12-10 14:05:51 -05004457 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004458
Theodore Ts'oed3654e2014-03-24 14:09:06 -04004459 if (likely(!test_opt2(inode->i_sb, HURD_COMPAT))) {
Theodore Ts'oc4f65702014-03-20 00:32:57 -04004460 raw_inode->i_disk_version = cpu_to_le32(inode->i_version);
4461 if (ei->i_extra_isize) {
4462 if (EXT4_FITS_IN_INODE(raw_inode, ei, i_version_hi))
4463 raw_inode->i_version_hi =
4464 cpu_to_le32(inode->i_version >> 32);
4465 raw_inode->i_extra_isize =
4466 cpu_to_le16(ei->i_extra_isize);
4467 }
Jean Noel Cordenner25ec56b2008-01-28 23:58:27 -05004468 }
Darrick J. Wong814525f2012-04-29 18:31:10 -04004469 ext4_inode_csum_set(inode, raw_inode, ei);
Theodore Ts'o202ee5d2014-04-21 14:37:55 -04004470 spin_unlock(&ei->i_raw_lock);
Theodore Ts'oa26f4992015-02-02 00:37:02 -05004471 if (inode->i_sb->s_flags & MS_LAZYTIME)
4472 ext4_update_other_inodes_time(inode->i_sb, inode->i_ino,
4473 bh->b_data);
Theodore Ts'o202ee5d2014-04-21 14:37:55 -04004474
Frank Mayhar830156c2009-09-29 10:07:47 -04004475 BUFFER_TRACE(bh, "call ext4_handle_dirty_metadata");
Curt Wohlgemuth73b50c12010-02-16 15:06:29 -05004476 rc = ext4_handle_dirty_metadata(handle, NULL, bh);
Frank Mayhar830156c2009-09-29 10:07:47 -04004477 if (!err)
4478 err = rc;
Theodore Ts'o19f5fb72010-01-24 14:34:07 -05004479 ext4_clear_inode_state(inode, EXT4_STATE_NEW);
Theodore Ts'o202ee5d2014-04-21 14:37:55 -04004480 if (set_large_file) {
liang xie5d601252014-05-12 22:06:43 -04004481 BUFFER_TRACE(EXT4_SB(sb)->s_sbh, "get write access");
Theodore Ts'o202ee5d2014-04-21 14:37:55 -04004482 err = ext4_journal_get_write_access(handle, EXT4_SB(sb)->s_sbh);
4483 if (err)
4484 goto out_brelse;
4485 ext4_update_dynamic_rev(sb);
4486 EXT4_SET_RO_COMPAT_FEATURE(sb,
4487 EXT4_FEATURE_RO_COMPAT_LARGE_FILE);
4488 ext4_handle_sync(handle);
4489 err = ext4_handle_dirty_super(handle, sb);
4490 }
Jan Karab71fc072012-09-26 21:52:20 -04004491 ext4_update_inode_fsync_trans(handle, inode, need_datasync);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004492out_brelse:
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04004493 brelse(bh);
Mingming Cao617ba132006-10-11 01:20:53 -07004494 ext4_std_error(inode->i_sb, err);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004495 return err;
4496}
4497
4498/*
Mingming Cao617ba132006-10-11 01:20:53 -07004499 * ext4_write_inode()
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004500 *
4501 * We are called from a few places:
4502 *
Theodore Ts'o87f7e412014-04-08 11:38:28 -04004503 * - Within generic_file_aio_write() -> generic_write_sync() for O_SYNC files.
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004504 * Here, there will be no transaction running. We wait for any running
Anatol Pomozov4907cb72012-09-01 10:31:09 -07004505 * transaction to commit.
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004506 *
Theodore Ts'o87f7e412014-04-08 11:38:28 -04004507 * - Within flush work (sys_sync(), kupdate and such).
4508 * We wait on commit, if told to.
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004509 *
Theodore Ts'o87f7e412014-04-08 11:38:28 -04004510 * - Within iput_final() -> write_inode_now()
4511 * We wait on commit, if told to.
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004512 *
4513 * In all cases it is actually safe for us to return without doing anything,
4514 * because the inode has been copied into a raw inode buffer in
Theodore Ts'o87f7e412014-04-08 11:38:28 -04004515 * ext4_mark_inode_dirty(). This is a correctness thing for WB_SYNC_ALL
4516 * writeback.
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004517 *
4518 * Note that we are absolutely dependent upon all inode dirtiers doing the
4519 * right thing: they *must* call mark_inode_dirty() after dirtying info in
4520 * which we are interested.
4521 *
4522 * It would be a bug for them to not do this. The code:
4523 *
4524 * mark_inode_dirty(inode)
4525 * stuff();
4526 * inode->i_size = expr;
4527 *
Theodore Ts'o87f7e412014-04-08 11:38:28 -04004528 * is in error because write_inode() could occur while `stuff()' is running,
4529 * and the new i_size will be lost. Plus the inode will no longer be on the
4530 * superblock's dirty inode list.
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004531 */
Christoph Hellwiga9185b42010-03-05 09:21:37 +01004532int ext4_write_inode(struct inode *inode, struct writeback_control *wbc)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004533{
Frank Mayhar91ac6f42009-09-09 22:33:47 -04004534 int err;
4535
Theodore Ts'o87f7e412014-04-08 11:38:28 -04004536 if (WARN_ON_ONCE(current->flags & PF_MEMALLOC))
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004537 return 0;
4538
Frank Mayhar91ac6f42009-09-09 22:33:47 -04004539 if (EXT4_SB(inode->i_sb)->s_journal) {
4540 if (ext4_journal_current_handle()) {
4541 jbd_debug(1, "called recursively, non-PF_MEMALLOC!\n");
4542 dump_stack();
4543 return -EIO;
4544 }
4545
Jan Kara10542c22014-03-04 10:50:50 -05004546 /*
4547 * No need to force transaction in WB_SYNC_NONE mode. Also
4548 * ext4_sync_fs() will force the commit after everything is
4549 * written.
4550 */
4551 if (wbc->sync_mode != WB_SYNC_ALL || wbc->for_sync)
Frank Mayhar91ac6f42009-09-09 22:33:47 -04004552 return 0;
4553
4554 err = ext4_force_commit(inode->i_sb);
4555 } else {
4556 struct ext4_iloc iloc;
4557
Curt Wohlgemuth8b472d72010-04-03 16:45:06 -04004558 err = __ext4_get_inode_loc(inode, &iloc, 0);
Frank Mayhar91ac6f42009-09-09 22:33:47 -04004559 if (err)
4560 return err;
Jan Kara10542c22014-03-04 10:50:50 -05004561 /*
4562 * sync(2) will flush the whole buffer cache. No need to do
4563 * it here separately for each inode.
4564 */
4565 if (wbc->sync_mode == WB_SYNC_ALL && !wbc->for_sync)
Frank Mayhar830156c2009-09-29 10:07:47 -04004566 sync_dirty_buffer(iloc.bh);
4567 if (buffer_req(iloc.bh) && !buffer_uptodate(iloc.bh)) {
Theodore Ts'oc398eda2010-07-27 11:56:40 -04004568 EXT4_ERROR_INODE_BLOCK(inode, iloc.bh->b_blocknr,
4569 "IO error syncing inode");
Frank Mayhar830156c2009-09-29 10:07:47 -04004570 err = -EIO;
4571 }
Curt Wohlgemuthfd2dd9f2010-04-03 17:44:16 -04004572 brelse(iloc.bh);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004573 }
Frank Mayhar91ac6f42009-09-09 22:33:47 -04004574 return err;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004575}
4576
4577/*
Jan Kara53e87262012-12-25 13:29:52 -05004578 * In data=journal mode ext4_journalled_invalidatepage() may fail to invalidate
4579 * buffers that are attached to a page stradding i_size and are undergoing
4580 * commit. In that case we have to wait for commit to finish and try again.
4581 */
4582static void ext4_wait_for_tail_page_commit(struct inode *inode)
4583{
4584 struct page *page;
4585 unsigned offset;
4586 journal_t *journal = EXT4_SB(inode->i_sb)->s_journal;
4587 tid_t commit_tid = 0;
4588 int ret;
4589
4590 offset = inode->i_size & (PAGE_CACHE_SIZE - 1);
4591 /*
4592 * All buffers in the last page remain valid? Then there's nothing to
4593 * do. We do the check mainly to optimize the common PAGE_CACHE_SIZE ==
4594 * blocksize case
4595 */
4596 if (offset > PAGE_CACHE_SIZE - (1 << inode->i_blkbits))
4597 return;
4598 while (1) {
4599 page = find_lock_page(inode->i_mapping,
4600 inode->i_size >> PAGE_CACHE_SHIFT);
4601 if (!page)
4602 return;
Lukas Czernerca99fdd2013-05-21 23:25:01 -04004603 ret = __ext4_journalled_invalidatepage(page, offset,
4604 PAGE_CACHE_SIZE - offset);
Jan Kara53e87262012-12-25 13:29:52 -05004605 unlock_page(page);
4606 page_cache_release(page);
4607 if (ret != -EBUSY)
4608 return;
4609 commit_tid = 0;
4610 read_lock(&journal->j_state_lock);
4611 if (journal->j_committing_transaction)
4612 commit_tid = journal->j_committing_transaction->t_tid;
4613 read_unlock(&journal->j_state_lock);
4614 if (commit_tid)
4615 jbd2_log_wait_commit(journal, commit_tid);
4616 }
4617}
4618
4619/*
Mingming Cao617ba132006-10-11 01:20:53 -07004620 * ext4_setattr()
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004621 *
4622 * Called from notify_change.
4623 *
4624 * We want to trap VFS attempts to truncate the file as soon as
4625 * possible. In particular, we want to make sure that when the VFS
4626 * shrinks i_size, we put the inode on the orphan list and modify
4627 * i_disksize immediately, so that during the subsequent flushing of
4628 * dirty pages and freeing of disk blocks, we can guarantee that any
4629 * commit will leave the blocks being flushed in an unused state on
4630 * disk. (On recovery, the inode will get truncated and the blocks will
4631 * be freed, so we have a strong guarantee that no future commit will
4632 * leave these blocks visible to the user.)
4633 *
Jan Kara678aaf42008-07-11 19:27:31 -04004634 * Another thing we have to assure is that if we are in ordered mode
4635 * and inode is still attached to the committing transaction, we must
4636 * we start writeout of all the dirty pages which are being truncated.
4637 * This way we are sure that all the data written in the previous
4638 * transaction are already on disk (truncate waits for pages under
4639 * writeback).
4640 *
4641 * Called with inode->i_mutex down.
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004642 */
Mingming Cao617ba132006-10-11 01:20:53 -07004643int ext4_setattr(struct dentry *dentry, struct iattr *attr)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004644{
David Howells2b0143b2015-03-17 22:25:59 +00004645 struct inode *inode = d_inode(dentry);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004646 int error, rc = 0;
Dmitry Monakhov3d287de2010-10-27 22:08:46 -04004647 int orphan = 0;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004648 const unsigned int ia_valid = attr->ia_valid;
4649
4650 error = inode_change_ok(inode, attr);
4651 if (error)
4652 return error;
4653
Dmitry Monakhov12755622010-04-08 22:04:20 +04004654 if (is_quota_modification(inode, attr))
Christoph Hellwig871a2932010-03-03 09:05:07 -05004655 dquot_initialize(inode);
Eric W. Biederman08cefc72012-02-07 15:41:49 -08004656 if ((ia_valid & ATTR_UID && !uid_eq(attr->ia_uid, inode->i_uid)) ||
4657 (ia_valid & ATTR_GID && !gid_eq(attr->ia_gid, inode->i_gid))) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004658 handle_t *handle;
4659
4660 /* (user+group)*(old+new) structure, inode write (sb,
4661 * inode block, ? - but truncate inode update has it) */
Theodore Ts'o9924a922013-02-08 21:59:22 -05004662 handle = ext4_journal_start(inode, EXT4_HT_QUOTA,
4663 (EXT4_MAXQUOTAS_INIT_BLOCKS(inode->i_sb) +
4664 EXT4_MAXQUOTAS_DEL_BLOCKS(inode->i_sb)) + 3);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004665 if (IS_ERR(handle)) {
4666 error = PTR_ERR(handle);
4667 goto err_out;
4668 }
Christoph Hellwigb43fa822010-03-03 09:05:03 -05004669 error = dquot_transfer(inode, attr);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004670 if (error) {
Mingming Cao617ba132006-10-11 01:20:53 -07004671 ext4_journal_stop(handle);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004672 return error;
4673 }
4674 /* Update corresponding info in inode so that everything is in
4675 * one transaction */
4676 if (attr->ia_valid & ATTR_UID)
4677 inode->i_uid = attr->ia_uid;
4678 if (attr->ia_valid & ATTR_GID)
4679 inode->i_gid = attr->ia_gid;
Mingming Cao617ba132006-10-11 01:20:53 -07004680 error = ext4_mark_inode_dirty(handle, inode);
4681 ext4_journal_stop(handle);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004682 }
4683
Jan Kara52083862013-08-17 10:07:17 -04004684 if (attr->ia_valid & ATTR_SIZE && attr->ia_size != inode->i_size) {
4685 handle_t *handle;
Christoph Hellwig562c72a2011-06-24 14:29:45 -04004686
Dmitry Monakhov12e9b892010-05-16 22:00:00 -04004687 if (!(ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS))) {
Eric Sandeene2b46572008-01-28 23:58:27 -05004688 struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb);
4689
Theodore Ts'o0c095c72010-07-27 11:56:06 -04004690 if (attr->ia_size > sbi->s_bitmap_maxbytes)
4691 return -EFBIG;
Eric Sandeene2b46572008-01-28 23:58:27 -05004692 }
Christoph Hellwigdff6efc2013-11-19 07:17:07 -08004693
4694 if (IS_I_VERSION(inode) && attr->ia_size != inode->i_size)
4695 inode_inc_iversion(inode);
4696
Jan Kara52083862013-08-17 10:07:17 -04004697 if (S_ISREG(inode->i_mode) &&
4698 (attr->ia_size < inode->i_size)) {
4699 if (ext4_should_order_data(inode)) {
4700 error = ext4_begin_ordered_truncate(inode,
Jan Kara678aaf42008-07-11 19:27:31 -04004701 attr->ia_size);
Jan Kara52083862013-08-17 10:07:17 -04004702 if (error)
Jan Kara678aaf42008-07-11 19:27:31 -04004703 goto err_out;
Jan Kara52083862013-08-17 10:07:17 -04004704 }
4705 handle = ext4_journal_start(inode, EXT4_HT_INODE, 3);
4706 if (IS_ERR(handle)) {
4707 error = PTR_ERR(handle);
4708 goto err_out;
4709 }
4710 if (ext4_handle_valid(handle)) {
4711 error = ext4_orphan_add(handle, inode);
4712 orphan = 1;
4713 }
Jan Kara90e775b2013-08-17 10:09:31 -04004714 down_write(&EXT4_I(inode)->i_data_sem);
Jan Kara52083862013-08-17 10:07:17 -04004715 EXT4_I(inode)->i_disksize = attr->ia_size;
4716 rc = ext4_mark_inode_dirty(handle, inode);
4717 if (!error)
4718 error = rc;
Jan Kara90e775b2013-08-17 10:09:31 -04004719 /*
4720 * We have to update i_size under i_data_sem together
4721 * with i_disksize to avoid races with writeback code
4722 * running ext4_wb_update_i_disksize().
4723 */
4724 if (!error)
4725 i_size_write(inode, attr->ia_size);
4726 up_write(&EXT4_I(inode)->i_data_sem);
Jan Kara52083862013-08-17 10:07:17 -04004727 ext4_journal_stop(handle);
4728 if (error) {
4729 ext4_orphan_del(NULL, inode);
Jan Kara678aaf42008-07-11 19:27:31 -04004730 goto err_out;
4731 }
Jan Karad6320cb2014-10-01 21:49:46 -04004732 } else {
4733 loff_t oldsize = inode->i_size;
4734
Jan Kara90e775b2013-08-17 10:09:31 -04004735 i_size_write(inode, attr->ia_size);
Jan Karad6320cb2014-10-01 21:49:46 -04004736 pagecache_isize_extended(inode, oldsize, inode->i_size);
4737 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004738
Jan Kara52083862013-08-17 10:07:17 -04004739 /*
4740 * Blocks are going to be removed from the inode. Wait
4741 * for dio in flight. Temporarily disable
4742 * dioread_nolock to prevent livelock.
4743 */
4744 if (orphan) {
4745 if (!ext4_should_journal_data(inode)) {
4746 ext4_inode_block_unlocked_dio(inode);
4747 inode_dio_wait(inode);
4748 ext4_inode_resume_unlocked_dio(inode);
4749 } else
4750 ext4_wait_for_tail_page_commit(inode);
Dmitry Monakhov1c9114f2012-09-29 00:55:23 -04004751 }
Jan Kara52083862013-08-17 10:07:17 -04004752 /*
4753 * Truncate pagecache after we've waited for commit
4754 * in data=journal mode to make pages freeable.
4755 */
Ross Zwisler923ae0f2015-02-16 15:59:38 -08004756 truncate_pagecache(inode, inode->i_size);
Theodore Ts'o072bd7e2011-05-23 15:13:02 -04004757 }
Jan Kara52083862013-08-17 10:07:17 -04004758 /*
4759 * We want to call ext4_truncate() even if attr->ia_size ==
4760 * inode->i_size for cases like truncation of fallocated space
4761 */
4762 if (attr->ia_valid & ATTR_SIZE)
4763 ext4_truncate(inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004764
Christoph Hellwig10257742010-06-04 11:30:02 +02004765 if (!rc) {
4766 setattr_copy(inode, attr);
4767 mark_inode_dirty(inode);
4768 }
4769
4770 /*
4771 * If the call to ext4_truncate failed to get a transaction handle at
4772 * all, we need to clean up the in-core orphan list manually.
4773 */
Dmitry Monakhov3d287de2010-10-27 22:08:46 -04004774 if (orphan && inode->i_nlink)
Mingming Cao617ba132006-10-11 01:20:53 -07004775 ext4_orphan_del(NULL, inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004776
4777 if (!rc && (ia_valid & ATTR_MODE))
Christoph Hellwig64e178a2013-12-20 05:16:44 -08004778 rc = posix_acl_chmod(inode, inode->i_mode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004779
4780err_out:
Mingming Cao617ba132006-10-11 01:20:53 -07004781 ext4_std_error(inode->i_sb, error);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004782 if (!error)
4783 error = rc;
4784 return error;
4785}
4786
Mingming Cao3e3398a2008-07-11 19:27:31 -04004787int ext4_getattr(struct vfsmount *mnt, struct dentry *dentry,
4788 struct kstat *stat)
4789{
4790 struct inode *inode;
Jan Kara8af8eec2013-05-31 19:39:56 -04004791 unsigned long long delalloc_blocks;
Mingming Cao3e3398a2008-07-11 19:27:31 -04004792
David Howells2b0143b2015-03-17 22:25:59 +00004793 inode = d_inode(dentry);
Mingming Cao3e3398a2008-07-11 19:27:31 -04004794 generic_fillattr(inode, stat);
4795
4796 /*
Andreas Dilger9206c562013-11-11 22:38:12 -05004797 * If there is inline data in the inode, the inode will normally not
4798 * have data blocks allocated (it may have an external xattr block).
4799 * Report at least one sector for such files, so tools like tar, rsync,
4800 * others doen't incorrectly think the file is completely sparse.
4801 */
4802 if (unlikely(ext4_has_inline_data(inode)))
4803 stat->blocks += (stat->size + 511) >> 9;
4804
4805 /*
Mingming Cao3e3398a2008-07-11 19:27:31 -04004806 * We can't update i_blocks if the block allocation is delayed
4807 * otherwise in the case of system crash before the real block
4808 * allocation is done, we will have i_blocks inconsistent with
4809 * on-disk file blocks.
4810 * We always keep i_blocks updated together with real
4811 * allocation. But to not confuse with user, stat
4812 * will return the blocks that include the delayed allocation
4813 * blocks for this file.
4814 */
Tao Ma96607552012-05-31 22:54:16 -04004815 delalloc_blocks = EXT4_C2B(EXT4_SB(inode->i_sb),
Andreas Dilger9206c562013-11-11 22:38:12 -05004816 EXT4_I(inode)->i_reserved_data_blocks);
4817 stat->blocks += delalloc_blocks << (inode->i_sb->s_blocksize_bits - 9);
Mingming Cao3e3398a2008-07-11 19:27:31 -04004818 return 0;
4819}
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004820
Jan Karafffb2732013-06-04 13:01:11 -04004821static int ext4_index_trans_blocks(struct inode *inode, int lblocks,
4822 int pextents)
Mingming Caoa02908f2008-08-19 22:16:07 -04004823{
Dmitry Monakhov12e9b892010-05-16 22:00:00 -04004824 if (!(ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS)))
Jan Karafffb2732013-06-04 13:01:11 -04004825 return ext4_ind_trans_blocks(inode, lblocks);
4826 return ext4_ext_index_trans_blocks(inode, pextents);
Mingming Caoa02908f2008-08-19 22:16:07 -04004827}
Theodore Ts'oac51d832008-11-06 16:49:36 -05004828
Mingming Caoa02908f2008-08-19 22:16:07 -04004829/*
4830 * Account for index blocks, block groups bitmaps and block group
4831 * descriptor blocks if modify datablocks and index blocks
4832 * worse case, the indexs blocks spread over different block groups
4833 *
4834 * If datablocks are discontiguous, they are possible to spread over
Anatol Pomozov4907cb72012-09-01 10:31:09 -07004835 * different block groups too. If they are contiguous, with flexbg,
Mingming Caoa02908f2008-08-19 22:16:07 -04004836 * they could still across block group boundary.
4837 *
4838 * Also account for superblock, inode, quota and xattr blocks
4839 */
Jan Karafffb2732013-06-04 13:01:11 -04004840static int ext4_meta_trans_blocks(struct inode *inode, int lblocks,
4841 int pextents)
Mingming Caoa02908f2008-08-19 22:16:07 -04004842{
Theodore Ts'o8df96752009-05-01 08:50:38 -04004843 ext4_group_t groups, ngroups = ext4_get_groups_count(inode->i_sb);
4844 int gdpblocks;
Mingming Caoa02908f2008-08-19 22:16:07 -04004845 int idxblocks;
4846 int ret = 0;
4847
4848 /*
Jan Karafffb2732013-06-04 13:01:11 -04004849 * How many index blocks need to touch to map @lblocks logical blocks
4850 * to @pextents physical extents?
Mingming Caoa02908f2008-08-19 22:16:07 -04004851 */
Jan Karafffb2732013-06-04 13:01:11 -04004852 idxblocks = ext4_index_trans_blocks(inode, lblocks, pextents);
Mingming Caoa02908f2008-08-19 22:16:07 -04004853
4854 ret = idxblocks;
4855
4856 /*
4857 * Now let's see how many group bitmaps and group descriptors need
4858 * to account
4859 */
Jan Karafffb2732013-06-04 13:01:11 -04004860 groups = idxblocks + pextents;
Mingming Caoa02908f2008-08-19 22:16:07 -04004861 gdpblocks = groups;
Theodore Ts'o8df96752009-05-01 08:50:38 -04004862 if (groups > ngroups)
4863 groups = ngroups;
Mingming Caoa02908f2008-08-19 22:16:07 -04004864 if (groups > EXT4_SB(inode->i_sb)->s_gdb_count)
4865 gdpblocks = EXT4_SB(inode->i_sb)->s_gdb_count;
4866
4867 /* bitmaps and block group descriptor blocks */
4868 ret += groups + gdpblocks;
4869
4870 /* Blocks for super block, inode, quota and xattr blocks */
4871 ret += EXT4_META_TRANS_BLOCKS(inode->i_sb);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004872
4873 return ret;
4874}
4875
4876/*
Lucas De Marchi25985ed2011-03-30 22:57:33 -03004877 * Calculate the total number of credits to reserve to fit
Mingming Caof3bd1f32008-08-19 22:16:03 -04004878 * the modification of a single pages into a single transaction,
4879 * which may include multiple chunks of block allocations.
Mingming Caoa02908f2008-08-19 22:16:07 -04004880 *
Mingming Cao525f4ed2008-08-19 22:15:58 -04004881 * This could be called via ext4_write_begin()
Mingming Caoa02908f2008-08-19 22:16:07 -04004882 *
Mingming Cao525f4ed2008-08-19 22:15:58 -04004883 * We need to consider the worse case, when
Mingming Caoa02908f2008-08-19 22:16:07 -04004884 * one new block per extent.
Mingming Caoa02908f2008-08-19 22:16:07 -04004885 */
4886int ext4_writepage_trans_blocks(struct inode *inode)
4887{
4888 int bpp = ext4_journal_blocks_per_page(inode);
4889 int ret;
4890
Jan Karafffb2732013-06-04 13:01:11 -04004891 ret = ext4_meta_trans_blocks(inode, bpp, bpp);
Mingming Caoa02908f2008-08-19 22:16:07 -04004892
4893 /* Account for data blocks for journalled mode */
4894 if (ext4_should_journal_data(inode))
4895 ret += bpp;
4896 return ret;
4897}
Mingming Caof3bd1f32008-08-19 22:16:03 -04004898
4899/*
4900 * Calculate the journal credits for a chunk of data modification.
4901 *
4902 * This is called from DIO, fallocate or whoever calling
Eric Sandeen79e83032010-07-27 11:56:07 -04004903 * ext4_map_blocks() to map/allocate a chunk of contiguous disk blocks.
Mingming Caof3bd1f32008-08-19 22:16:03 -04004904 *
4905 * journal buffers for data blocks are not included here, as DIO
4906 * and fallocate do no need to journal data buffers.
4907 */
4908int ext4_chunk_trans_blocks(struct inode *inode, int nrblocks)
4909{
4910 return ext4_meta_trans_blocks(inode, nrblocks, 1);
4911}
4912
Mingming Caoa02908f2008-08-19 22:16:07 -04004913/*
Mingming Cao617ba132006-10-11 01:20:53 -07004914 * The caller must have previously called ext4_reserve_inode_write().
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004915 * Give this, we know that the caller already has write access to iloc->bh.
4916 */
Mingming Cao617ba132006-10-11 01:20:53 -07004917int ext4_mark_iloc_dirty(handle_t *handle,
Theodore Ts'ode9a55b2009-06-14 17:45:34 -04004918 struct inode *inode, struct ext4_iloc *iloc)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004919{
4920 int err = 0;
4921
Theodore Ts'oc64db502012-03-02 12:23:11 -05004922 if (IS_I_VERSION(inode))
Jean Noel Cordenner25ec56b2008-01-28 23:58:27 -05004923 inode_inc_iversion(inode);
4924
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004925 /* the do_update_inode consumes one bh->b_count */
4926 get_bh(iloc->bh);
4927
Mingming Caodab291a2006-10-11 01:21:01 -07004928 /* ext4_do_update_inode() does jbd2_journal_dirty_metadata */
Frank Mayhar830156c2009-09-29 10:07:47 -04004929 err = ext4_do_update_inode(handle, inode, iloc);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004930 put_bh(iloc->bh);
4931 return err;
4932}
4933
4934/*
4935 * On success, We end up with an outstanding reference count against
4936 * iloc->bh. This _must_ be cleaned up later.
4937 */
4938
4939int
Mingming Cao617ba132006-10-11 01:20:53 -07004940ext4_reserve_inode_write(handle_t *handle, struct inode *inode,
4941 struct ext4_iloc *iloc)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004942{
Frank Mayhar03901312009-01-07 00:06:22 -05004943 int err;
4944
4945 err = ext4_get_inode_loc(inode, iloc);
4946 if (!err) {
4947 BUFFER_TRACE(iloc->bh, "get_write_access");
4948 err = ext4_journal_get_write_access(handle, iloc->bh);
4949 if (err) {
4950 brelse(iloc->bh);
4951 iloc->bh = NULL;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004952 }
4953 }
Mingming Cao617ba132006-10-11 01:20:53 -07004954 ext4_std_error(inode->i_sb, err);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004955 return err;
4956}
4957
4958/*
Kalpak Shah6dd4ee72007-07-18 09:19:57 -04004959 * Expand an inode by new_extra_isize bytes.
4960 * Returns 0 on success or negative error number on failure.
4961 */
Aneesh Kumar K.V1d03ec92008-01-28 23:58:27 -05004962static int ext4_expand_extra_isize(struct inode *inode,
4963 unsigned int new_extra_isize,
4964 struct ext4_iloc iloc,
4965 handle_t *handle)
Kalpak Shah6dd4ee72007-07-18 09:19:57 -04004966{
4967 struct ext4_inode *raw_inode;
4968 struct ext4_xattr_ibody_header *header;
Kalpak Shah6dd4ee72007-07-18 09:19:57 -04004969
4970 if (EXT4_I(inode)->i_extra_isize >= new_extra_isize)
4971 return 0;
4972
4973 raw_inode = ext4_raw_inode(&iloc);
4974
4975 header = IHDR(inode, raw_inode);
Kalpak Shah6dd4ee72007-07-18 09:19:57 -04004976
4977 /* No extended attributes present */
Theodore Ts'o19f5fb72010-01-24 14:34:07 -05004978 if (!ext4_test_inode_state(inode, EXT4_STATE_XATTR) ||
4979 header->h_magic != cpu_to_le32(EXT4_XATTR_MAGIC)) {
Kalpak Shah6dd4ee72007-07-18 09:19:57 -04004980 memset((void *)raw_inode + EXT4_GOOD_OLD_INODE_SIZE, 0,
4981 new_extra_isize);
4982 EXT4_I(inode)->i_extra_isize = new_extra_isize;
4983 return 0;
4984 }
4985
4986 /* try to expand with EAs present */
4987 return ext4_expand_extra_isize_ea(inode, new_extra_isize,
4988 raw_inode, handle);
4989}
4990
4991/*
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004992 * What we do here is to mark the in-core inode as clean with respect to inode
4993 * dirtiness (it may still be data-dirty).
4994 * This means that the in-core inode may be reaped by prune_icache
4995 * without having to perform any I/O. This is a very good thing,
4996 * because *any* task may call prune_icache - even ones which
4997 * have a transaction open against a different journal.
4998 *
4999 * Is this cheating? Not really. Sure, we haven't written the
5000 * inode out, but prune_icache isn't a user-visible syncing function.
5001 * Whenever the user wants stuff synced (sys_sync, sys_msync, sys_fsync)
5002 * we start and wait on commits.
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005003 */
Mingming Cao617ba132006-10-11 01:20:53 -07005004int ext4_mark_inode_dirty(handle_t *handle, struct inode *inode)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005005{
Mingming Cao617ba132006-10-11 01:20:53 -07005006 struct ext4_iloc iloc;
Kalpak Shah6dd4ee72007-07-18 09:19:57 -04005007 struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb);
5008 static unsigned int mnt_count;
5009 int err, ret;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005010
5011 might_sleep();
Theodore Ts'o7ff9c072010-11-08 13:51:33 -05005012 trace_ext4_mark_inode_dirty(inode, _RET_IP_);
Mingming Cao617ba132006-10-11 01:20:53 -07005013 err = ext4_reserve_inode_write(handle, inode, &iloc);
Frank Mayhar03901312009-01-07 00:06:22 -05005014 if (ext4_handle_valid(handle) &&
5015 EXT4_I(inode)->i_extra_isize < sbi->s_want_extra_isize &&
Theodore Ts'o19f5fb72010-01-24 14:34:07 -05005016 !ext4_test_inode_state(inode, EXT4_STATE_NO_EXPAND)) {
Kalpak Shah6dd4ee72007-07-18 09:19:57 -04005017 /*
5018 * We need extra buffer credits since we may write into EA block
5019 * with this same handle. If journal_extend fails, then it will
5020 * only result in a minor loss of functionality for that inode.
5021 * If this is felt to be critical, then e2fsck should be run to
5022 * force a large enough s_min_extra_isize.
5023 */
5024 if ((jbd2_journal_extend(handle,
5025 EXT4_DATA_TRANS_BLOCKS(inode->i_sb))) == 0) {
5026 ret = ext4_expand_extra_isize(inode,
5027 sbi->s_want_extra_isize,
5028 iloc, handle);
5029 if (ret) {
Theodore Ts'o19f5fb72010-01-24 14:34:07 -05005030 ext4_set_inode_state(inode,
5031 EXT4_STATE_NO_EXPAND);
Aneesh Kumar K.Vc1bddad2007-10-16 18:38:25 -04005032 if (mnt_count !=
5033 le16_to_cpu(sbi->s_es->s_mnt_count)) {
Eric Sandeen12062dd2010-02-15 14:19:27 -05005034 ext4_warning(inode->i_sb,
Kalpak Shah6dd4ee72007-07-18 09:19:57 -04005035 "Unable to expand inode %lu. Delete"
5036 " some EAs or run e2fsck.",
5037 inode->i_ino);
Aneesh Kumar K.Vc1bddad2007-10-16 18:38:25 -04005038 mnt_count =
5039 le16_to_cpu(sbi->s_es->s_mnt_count);
Kalpak Shah6dd4ee72007-07-18 09:19:57 -04005040 }
5041 }
5042 }
5043 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005044 if (!err)
Mingming Cao617ba132006-10-11 01:20:53 -07005045 err = ext4_mark_iloc_dirty(handle, inode, &iloc);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005046 return err;
5047}
5048
5049/*
Mingming Cao617ba132006-10-11 01:20:53 -07005050 * ext4_dirty_inode() is called from __mark_inode_dirty()
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005051 *
5052 * We're really interested in the case where a file is being extended.
5053 * i_size has been changed by generic_commit_write() and we thus need
5054 * to include the updated inode in the current transaction.
5055 *
Christoph Hellwig5dd40562010-03-03 09:05:00 -05005056 * Also, dquot_alloc_block() will always dirty the inode when blocks
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005057 * are allocated to the file.
5058 *
5059 * If the inode is marked synchronous, we don't honour that here - doing
5060 * so would cause a commit on atime updates, which we don't bother doing.
5061 * We handle synchronous inodes at the highest possible level.
Theodore Ts'o0ae45f62015-02-02 00:37:00 -05005062 *
5063 * If only the I_DIRTY_TIME flag is set, we can skip everything. If
5064 * I_DIRTY_TIME and I_DIRTY_SYNC is set, the only inode fields we need
5065 * to copy into the on-disk inode structure are the timestamp files.
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005066 */
Christoph Hellwigaa385722011-05-27 06:53:02 -04005067void ext4_dirty_inode(struct inode *inode, int flags)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005068{
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005069 handle_t *handle;
5070
Theodore Ts'o0ae45f62015-02-02 00:37:00 -05005071 if (flags == I_DIRTY_TIME)
5072 return;
Theodore Ts'o9924a922013-02-08 21:59:22 -05005073 handle = ext4_journal_start(inode, EXT4_HT_INODE, 2);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005074 if (IS_ERR(handle))
5075 goto out;
Curt Wohlgemuthf3dc2722009-09-29 16:06:01 -04005076
Curt Wohlgemuthf3dc2722009-09-29 16:06:01 -04005077 ext4_mark_inode_dirty(handle, inode);
5078
Mingming Cao617ba132006-10-11 01:20:53 -07005079 ext4_journal_stop(handle);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005080out:
5081 return;
5082}
5083
5084#if 0
5085/*
5086 * Bind an inode's backing buffer_head into this transaction, to prevent
5087 * it from being flushed to disk early. Unlike
Mingming Cao617ba132006-10-11 01:20:53 -07005088 * ext4_reserve_inode_write, this leaves behind no bh reference and
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005089 * returns no iloc structure, so the caller needs to repeat the iloc
5090 * lookup to mark the inode dirty later.
5091 */
Mingming Cao617ba132006-10-11 01:20:53 -07005092static int ext4_pin_inode(handle_t *handle, struct inode *inode)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005093{
Mingming Cao617ba132006-10-11 01:20:53 -07005094 struct ext4_iloc iloc;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005095
5096 int err = 0;
5097 if (handle) {
Mingming Cao617ba132006-10-11 01:20:53 -07005098 err = ext4_get_inode_loc(inode, &iloc);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005099 if (!err) {
5100 BUFFER_TRACE(iloc.bh, "get_write_access");
Mingming Caodab291a2006-10-11 01:21:01 -07005101 err = jbd2_journal_get_write_access(handle, iloc.bh);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005102 if (!err)
Frank Mayhar03901312009-01-07 00:06:22 -05005103 err = ext4_handle_dirty_metadata(handle,
Curt Wohlgemuth73b50c12010-02-16 15:06:29 -05005104 NULL,
Frank Mayhar03901312009-01-07 00:06:22 -05005105 iloc.bh);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005106 brelse(iloc.bh);
5107 }
5108 }
Mingming Cao617ba132006-10-11 01:20:53 -07005109 ext4_std_error(inode->i_sb, err);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005110 return err;
5111}
5112#endif
5113
Mingming Cao617ba132006-10-11 01:20:53 -07005114int ext4_change_inode_journal_flag(struct inode *inode, int val)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005115{
5116 journal_t *journal;
5117 handle_t *handle;
5118 int err;
5119
5120 /*
5121 * We have to be very careful here: changing a data block's
5122 * journaling status dynamically is dangerous. If we write a
5123 * data block to the journal, change the status and then delete
5124 * that block, we risk forgetting to revoke the old log record
5125 * from the journal and so a subsequent replay can corrupt data.
5126 * So, first we make sure that the journal is empty and that
5127 * nobody is changing anything.
5128 */
5129
Mingming Cao617ba132006-10-11 01:20:53 -07005130 journal = EXT4_JOURNAL(inode);
Frank Mayhar03901312009-01-07 00:06:22 -05005131 if (!journal)
5132 return 0;
Dave Hansend6995942007-07-18 08:33:51 -04005133 if (is_journal_aborted(journal))
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005134 return -EROFS;
Yongqiang Yang2aff57b2011-12-28 12:02:13 -05005135 /* We have to allocate physical blocks for delalloc blocks
5136 * before flushing journal. otherwise delalloc blocks can not
5137 * be allocated any more. even more truncate on delalloc blocks
5138 * could trigger BUG by flushing delalloc blocks in journal.
5139 * There is no delalloc block in non-journal data mode.
5140 */
5141 if (val && test_opt(inode->i_sb, DELALLOC)) {
5142 err = ext4_alloc_da_blocks(inode);
5143 if (err < 0)
5144 return err;
5145 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005146
Dmitry Monakhov17335dc2012-09-29 00:41:21 -04005147 /* Wait for all existing dio workers */
5148 ext4_inode_block_unlocked_dio(inode);
5149 inode_dio_wait(inode);
5150
Mingming Caodab291a2006-10-11 01:21:01 -07005151 jbd2_journal_lock_updates(journal);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005152
5153 /*
5154 * OK, there are no updates running now, and all cached data is
5155 * synced to disk. We are now in a completely consistent state
5156 * which doesn't have anything in the journal, and we know that
5157 * no filesystem updates are running, so it is safe to modify
5158 * the inode's in-core data-journaling state flag now.
5159 */
5160
5161 if (val)
Dmitry Monakhov12e9b892010-05-16 22:00:00 -04005162 ext4_set_inode_flag(inode, EXT4_INODE_JOURNAL_DATA);
Yongqiang Yang5872dda2011-12-28 13:55:51 -05005163 else {
Jan Kara4f879ca2014-10-30 10:53:17 -04005164 err = jbd2_journal_flush(journal);
5165 if (err < 0) {
5166 jbd2_journal_unlock_updates(journal);
5167 ext4_inode_resume_unlocked_dio(inode);
5168 return err;
5169 }
Dmitry Monakhov12e9b892010-05-16 22:00:00 -04005170 ext4_clear_inode_flag(inode, EXT4_INODE_JOURNAL_DATA);
Yongqiang Yang5872dda2011-12-28 13:55:51 -05005171 }
Mingming Cao617ba132006-10-11 01:20:53 -07005172 ext4_set_aops(inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005173
Mingming Caodab291a2006-10-11 01:21:01 -07005174 jbd2_journal_unlock_updates(journal);
Dmitry Monakhov17335dc2012-09-29 00:41:21 -04005175 ext4_inode_resume_unlocked_dio(inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005176
5177 /* Finally we can mark the inode as dirty. */
5178
Theodore Ts'o9924a922013-02-08 21:59:22 -05005179 handle = ext4_journal_start(inode, EXT4_HT_INODE, 1);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005180 if (IS_ERR(handle))
5181 return PTR_ERR(handle);
5182
Mingming Cao617ba132006-10-11 01:20:53 -07005183 err = ext4_mark_inode_dirty(handle, inode);
Frank Mayhar03901312009-01-07 00:06:22 -05005184 ext4_handle_sync(handle);
Mingming Cao617ba132006-10-11 01:20:53 -07005185 ext4_journal_stop(handle);
5186 ext4_std_error(inode->i_sb, err);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07005187
5188 return err;
5189}
Aneesh Kumar K.V2e9ee852008-07-11 19:27:31 -04005190
5191static int ext4_bh_unmapped(handle_t *handle, struct buffer_head *bh)
5192{
5193 return !buffer_mapped(bh);
5194}
5195
Nick Pigginc2ec1752009-03-31 15:23:21 -07005196int ext4_page_mkwrite(struct vm_area_struct *vma, struct vm_fault *vmf)
Aneesh Kumar K.V2e9ee852008-07-11 19:27:31 -04005197{
Nick Pigginc2ec1752009-03-31 15:23:21 -07005198 struct page *page = vmf->page;
Aneesh Kumar K.V2e9ee852008-07-11 19:27:31 -04005199 loff_t size;
5200 unsigned long len;
Jan Kara9ea7df52011-06-24 14:29:41 -04005201 int ret;
Aneesh Kumar K.V2e9ee852008-07-11 19:27:31 -04005202 struct file *file = vma->vm_file;
Al Viro496ad9a2013-01-23 17:07:38 -05005203 struct inode *inode = file_inode(file);
Aneesh Kumar K.V2e9ee852008-07-11 19:27:31 -04005204 struct address_space *mapping = inode->i_mapping;
Jan Kara9ea7df52011-06-24 14:29:41 -04005205 handle_t *handle;
5206 get_block_t *get_block;
5207 int retries = 0;
Aneesh Kumar K.V2e9ee852008-07-11 19:27:31 -04005208
Jan Kara8e8ad8a2012-06-12 16:20:38 +02005209 sb_start_pagefault(inode->i_sb);
Theodore Ts'o041bbb6d2012-09-30 23:04:56 -04005210 file_update_time(vma->vm_file);
Jan Kara9ea7df52011-06-24 14:29:41 -04005211 /* Delalloc case is easy... */
5212 if (test_opt(inode->i_sb, DELALLOC) &&
5213 !ext4_should_journal_data(inode) &&
5214 !ext4_nonda_switch(inode->i_sb)) {
5215 do {
5216 ret = __block_page_mkwrite(vma, vmf,
5217 ext4_da_get_block_prep);
5218 } while (ret == -ENOSPC &&
5219 ext4_should_retry_alloc(inode->i_sb, &retries));
5220 goto out_ret;
Aneesh Kumar K.V2e9ee852008-07-11 19:27:31 -04005221 }
Darrick J. Wong0e499892011-05-18 13:55:20 -04005222
5223 lock_page(page);
Jan Kara9ea7df52011-06-24 14:29:41 -04005224 size = i_size_read(inode);
5225 /* Page got truncated from under us? */
5226 if (page->mapping != mapping || page_offset(page) > size) {
5227 unlock_page(page);
5228 ret = VM_FAULT_NOPAGE;
5229 goto out;
Darrick J. Wong0e499892011-05-18 13:55:20 -04005230 }
Aneesh Kumar K.V2e9ee852008-07-11 19:27:31 -04005231
5232 if (page->index == size >> PAGE_CACHE_SHIFT)
5233 len = size & ~PAGE_CACHE_MASK;
5234 else
5235 len = PAGE_CACHE_SIZE;
Aneesh Kumar K.Va827eaf2009-09-09 22:36:03 -04005236 /*
Jan Kara9ea7df52011-06-24 14:29:41 -04005237 * Return if we have all the buffers mapped. This avoids the need to do
5238 * journal_start/journal_stop which can block and take a long time
Aneesh Kumar K.Va827eaf2009-09-09 22:36:03 -04005239 */
Aneesh Kumar K.V2e9ee852008-07-11 19:27:31 -04005240 if (page_has_buffers(page)) {
Tao Maf19d5872012-12-10 14:05:51 -05005241 if (!ext4_walk_page_buffers(NULL, page_buffers(page),
5242 0, len, NULL,
5243 ext4_bh_unmapped)) {
Jan Kara9ea7df52011-06-24 14:29:41 -04005244 /* Wait so that we don't change page under IO */
Darrick J. Wong1d1d1a72013-02-21 16:42:51 -08005245 wait_for_stable_page(page);
Jan Kara9ea7df52011-06-24 14:29:41 -04005246 ret = VM_FAULT_LOCKED;
5247 goto out;
Aneesh Kumar K.Va827eaf2009-09-09 22:36:03 -04005248 }
Aneesh Kumar K.V2e9ee852008-07-11 19:27:31 -04005249 }
Aneesh Kumar K.Va827eaf2009-09-09 22:36:03 -04005250 unlock_page(page);
Jan Kara9ea7df52011-06-24 14:29:41 -04005251 /* OK, we need to fill the hole... */
5252 if (ext4_should_dioread_nolock(inode))
5253 get_block = ext4_get_block_write;
5254 else
5255 get_block = ext4_get_block;
5256retry_alloc:
Theodore Ts'o9924a922013-02-08 21:59:22 -05005257 handle = ext4_journal_start(inode, EXT4_HT_WRITE_PAGE,
5258 ext4_writepage_trans_blocks(inode));
Jan Kara9ea7df52011-06-24 14:29:41 -04005259 if (IS_ERR(handle)) {
Nick Pigginc2ec1752009-03-31 15:23:21 -07005260 ret = VM_FAULT_SIGBUS;
Jan Kara9ea7df52011-06-24 14:29:41 -04005261 goto out;
5262 }
5263 ret = __block_page_mkwrite(vma, vmf, get_block);
5264 if (!ret && ext4_should_journal_data(inode)) {
Tao Maf19d5872012-12-10 14:05:51 -05005265 if (ext4_walk_page_buffers(handle, page_buffers(page), 0,
Jan Kara9ea7df52011-06-24 14:29:41 -04005266 PAGE_CACHE_SIZE, NULL, do_journal_get_write_access)) {
5267 unlock_page(page);
5268 ret = VM_FAULT_SIGBUS;
Yongqiang Yangfcbb5512011-10-26 05:00:19 -04005269 ext4_journal_stop(handle);
Jan Kara9ea7df52011-06-24 14:29:41 -04005270 goto out;
5271 }
5272 ext4_set_inode_state(inode, EXT4_STATE_JDATA);
5273 }
5274 ext4_journal_stop(handle);
5275 if (ret == -ENOSPC && ext4_should_retry_alloc(inode->i_sb, &retries))
5276 goto retry_alloc;
5277out_ret:
5278 ret = block_page_mkwrite_return(ret);
5279out:
Jan Kara8e8ad8a2012-06-12 16:20:38 +02005280 sb_end_pagefault(inode->i_sb);
Aneesh Kumar K.V2e9ee852008-07-11 19:27:31 -04005281 return ret;
5282}