blob: 2315e45161eef12d499b9aec7b889ff6c1cfb66c [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>
Mingming Caodab291a2006-10-11 01:21:01 -070023#include <linux/jbd2.h>
Dave Kleikampac27a0e2006-10-11 01:20:50 -070024#include <linux/highuid.h>
25#include <linux/pagemap.h>
26#include <linux/quotaops.h>
27#include <linux/string.h>
28#include <linux/buffer_head.h>
29#include <linux/writeback.h>
Alex Tomas64769242008-07-11 19:27:31 -040030#include <linux/pagevec.h>
Dave Kleikampac27a0e2006-10-11 01:20:50 -070031#include <linux/mpage.h>
Duane Griffine83c1392008-12-19 20:47:15 +000032#include <linux/namei.h>
Dave Kleikampac27a0e2006-10-11 01:20:50 -070033#include <linux/uio.h>
34#include <linux/bio.h>
Mingming Cao4c0425f2009-09-28 15:48:41 -040035#include <linux/workqueue.h>
Jiaying Zhang744692d2010-03-04 16:14:02 -050036#include <linux/kernel.h>
Andrew Morton6db26ff2011-01-12 16:59:13 -080037#include <linux/printk.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090038#include <linux/slab.h>
Theodore Ts'oa8901d32010-12-17 10:40:47 -050039#include <linux/ratelimit.h>
Kent Overstreeta27bb332013-05-07 16:19:08 -070040#include <linux/aio.h>
Theodore Ts'o00a1a052014-03-30 10:20:01 -040041#include <linux/bitops.h>
Theodore Ts'o9bffad12009-06-17 11:48:11 -040042
Christoph Hellwig3dcf5452008-04-29 18:13:32 -040043#include "ext4_jbd2.h"
Dave Kleikampac27a0e2006-10-11 01:20:50 -070044#include "xattr.h"
45#include "acl.h"
Theodore Ts'o9f125d62011-06-27 19:16:04 -040046#include "truncate.h"
Dave Kleikampac27a0e2006-10-11 01:20:50 -070047
Theodore Ts'o9bffad12009-06-17 11:48:11 -040048#include <trace/events/ext4.h>
49
Aneesh Kumar K.Va1d6cc52008-08-19 21:55:02 -040050#define MPAGE_DA_EXTENT_TAIL 0x01
51
Darrick J. Wong814525f2012-04-29 18:31:10 -040052static __u32 ext4_inode_csum(struct inode *inode, struct ext4_inode *raw,
53 struct ext4_inode_info *ei)
54{
55 struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb);
56 __u16 csum_lo;
57 __u16 csum_hi = 0;
58 __u32 csum;
59
Dmitry Monakhov171a7f22013-04-09 23:56:48 -040060 csum_lo = le16_to_cpu(raw->i_checksum_lo);
Darrick J. Wong814525f2012-04-29 18:31:10 -040061 raw->i_checksum_lo = 0;
62 if (EXT4_INODE_SIZE(inode->i_sb) > EXT4_GOOD_OLD_INODE_SIZE &&
63 EXT4_FITS_IN_INODE(raw, ei, i_checksum_hi)) {
Dmitry Monakhov171a7f22013-04-09 23:56:48 -040064 csum_hi = le16_to_cpu(raw->i_checksum_hi);
Darrick J. Wong814525f2012-04-29 18:31:10 -040065 raw->i_checksum_hi = 0;
66 }
67
68 csum = ext4_chksum(sbi, ei->i_csum_seed, (__u8 *)raw,
69 EXT4_INODE_SIZE(inode->i_sb));
70
Dmitry Monakhov171a7f22013-04-09 23:56:48 -040071 raw->i_checksum_lo = cpu_to_le16(csum_lo);
Darrick J. Wong814525f2012-04-29 18:31:10 -040072 if (EXT4_INODE_SIZE(inode->i_sb) > EXT4_GOOD_OLD_INODE_SIZE &&
73 EXT4_FITS_IN_INODE(raw, ei, i_checksum_hi))
Dmitry Monakhov171a7f22013-04-09 23:56:48 -040074 raw->i_checksum_hi = cpu_to_le16(csum_hi);
Darrick J. Wong814525f2012-04-29 18:31:10 -040075
76 return csum;
77}
78
79static int ext4_inode_csum_verify(struct inode *inode, struct ext4_inode *raw,
80 struct ext4_inode_info *ei)
81{
82 __u32 provided, calculated;
83
84 if (EXT4_SB(inode->i_sb)->s_es->s_creator_os !=
85 cpu_to_le32(EXT4_OS_LINUX) ||
Dmitry Monakhov9aa5d322014-10-13 03:36:16 -040086 !ext4_has_metadata_csum(inode->i_sb))
Darrick J. Wong814525f2012-04-29 18:31:10 -040087 return 1;
88
89 provided = le16_to_cpu(raw->i_checksum_lo);
90 calculated = ext4_inode_csum(inode, raw, ei);
91 if (EXT4_INODE_SIZE(inode->i_sb) > EXT4_GOOD_OLD_INODE_SIZE &&
92 EXT4_FITS_IN_INODE(raw, ei, i_checksum_hi))
93 provided |= ((__u32)le16_to_cpu(raw->i_checksum_hi)) << 16;
94 else
95 calculated &= 0xFFFF;
96
97 return provided == calculated;
98}
99
100static void ext4_inode_csum_set(struct inode *inode, struct ext4_inode *raw,
101 struct ext4_inode_info *ei)
102{
103 __u32 csum;
104
105 if (EXT4_SB(inode->i_sb)->s_es->s_creator_os !=
106 cpu_to_le32(EXT4_OS_LINUX) ||
Dmitry Monakhov9aa5d322014-10-13 03:36:16 -0400107 !ext4_has_metadata_csum(inode->i_sb))
Darrick J. Wong814525f2012-04-29 18:31:10 -0400108 return;
109
110 csum = ext4_inode_csum(inode, raw, ei);
111 raw->i_checksum_lo = cpu_to_le16(csum & 0xFFFF);
112 if (EXT4_INODE_SIZE(inode->i_sb) > EXT4_GOOD_OLD_INODE_SIZE &&
113 EXT4_FITS_IN_INODE(raw, ei, i_checksum_hi))
114 raw->i_checksum_hi = cpu_to_le16(csum >> 16);
115}
116
Jan Kara678aaf42008-07-11 19:27:31 -0400117static inline int ext4_begin_ordered_truncate(struct inode *inode,
118 loff_t new_size)
119{
Theodore Ts'o7ff9c072010-11-08 13:51:33 -0500120 trace_ext4_begin_ordered_truncate(inode, new_size);
Theodore Ts'o8aefcd52011-01-10 12:29:43 -0500121 /*
122 * If jinode is zero, then we never opened the file for
123 * writing, so there's no need to call
124 * jbd2_journal_begin_ordered_truncate() since there's no
125 * outstanding writes we need to flush.
126 */
127 if (!EXT4_I(inode)->jinode)
128 return 0;
129 return jbd2_journal_begin_ordered_truncate(EXT4_JOURNAL(inode),
130 EXT4_I(inode)->jinode,
131 new_size);
Jan Kara678aaf42008-07-11 19:27:31 -0400132}
133
Lukas Czernerd47992f2013-05-21 23:17:23 -0400134static void ext4_invalidatepage(struct page *page, unsigned int offset,
135 unsigned int length);
Theodore Ts'ocb20d512010-10-27 21:30:09 -0400136static int __ext4_journalled_writepage(struct page *page, unsigned int len);
137static int ext4_bh_delay_or_unwritten(handle_t *handle, struct buffer_head *bh);
Jan Karafffb2732013-06-04 13:01:11 -0400138static int ext4_meta_trans_blocks(struct inode *inode, int lblocks,
139 int pextents);
Alex Tomas64769242008-07-11 19:27:31 -0400140
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700141/*
142 * Test whether an inode is a fast symlink.
143 */
Mingming Cao617ba132006-10-11 01:20:53 -0700144static int ext4_inode_is_fast_symlink(struct inode *inode)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700145{
Yongqiang Yang65eddb52014-01-06 14:06:18 -0500146 int ea_blocks = EXT4_I(inode)->i_file_acl ?
147 EXT4_CLUSTER_SIZE(inode->i_sb) >> 9 : 0;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700148
Zheng Liubd9db172014-06-02 10:48:22 -0400149 if (ext4_has_inline_data(inode))
150 return 0;
151
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700152 return (S_ISLNK(inode->i_mode) && inode->i_blocks - ea_blocks == 0);
153}
154
155/*
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700156 * Restart the transaction associated with *handle. This does a commit,
157 * so before we call here everything must be consistently dirtied against
158 * this transaction.
159 */
Aneesh Kumar K.Vfa5d1112009-11-02 18:50:49 -0500160int ext4_truncate_restart_trans(handle_t *handle, struct inode *inode,
Jan Kara487caee2009-08-17 22:17:20 -0400161 int nblocks)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700162{
Jan Kara487caee2009-08-17 22:17:20 -0400163 int ret;
164
165 /*
Theodore Ts'oe35fd662010-05-16 19:00:00 -0400166 * Drop i_data_sem to avoid deadlock with ext4_map_blocks. At this
Jan Kara487caee2009-08-17 22:17:20 -0400167 * moment, get_block can be called only for blocks inside i_size since
168 * page cache has been already dropped and writes are blocked by
169 * i_mutex. So we can safely drop the i_data_sem here.
170 */
Frank Mayhar03901312009-01-07 00:06:22 -0500171 BUG_ON(EXT4_JOURNAL(inode) == NULL);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700172 jbd_debug(2, "restarting handle %p\n", handle);
Jan Kara487caee2009-08-17 22:17:20 -0400173 up_write(&EXT4_I(inode)->i_data_sem);
Amir Goldstein8e8eaab2011-02-27 23:32:12 -0500174 ret = ext4_journal_restart(handle, nblocks);
Jan Kara487caee2009-08-17 22:17:20 -0400175 down_write(&EXT4_I(inode)->i_data_sem);
Aneesh Kumar K.Vfa5d1112009-11-02 18:50:49 -0500176 ext4_discard_preallocations(inode);
Jan Kara487caee2009-08-17 22:17:20 -0400177
178 return ret;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700179}
180
181/*
182 * Called at the last iput() if i_nlink is zero.
183 */
Al Viro0930fcc2010-06-07 13:16:22 -0400184void ext4_evict_inode(struct inode *inode)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700185{
186 handle_t *handle;
Theodore Ts'obc965ab2008-08-02 21:10:38 -0400187 int err;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700188
Theodore Ts'o7ff9c072010-11-08 13:51:33 -0500189 trace_ext4_evict_inode(inode);
Jiaying Zhang2581fdc2011-08-13 12:17:13 -0400190
Al Viro0930fcc2010-06-07 13:16:22 -0400191 if (inode->i_nlink) {
Jan Kara2d859db2011-07-26 09:07:11 -0400192 /*
193 * When journalling data dirty buffers are tracked only in the
194 * journal. So although mm thinks everything is clean and
195 * ready for reaping the inode might still have some pages to
196 * write in the running transaction or waiting to be
197 * checkpointed. Thus calling jbd2_journal_invalidatepage()
198 * (via truncate_inode_pages()) to discard these buffers can
199 * cause data loss. Also even if we did not discard these
200 * buffers, we would have no way to find them after the inode
201 * is reaped and thus user could see stale data if he tries to
202 * read them before the transaction is checkpointed. So be
203 * careful and force everything to disk here... We use
204 * ei->i_datasync_tid to store the newest transaction
205 * containing inode's data.
206 *
207 * Note that directories do not have this problem because they
208 * don't use page cache.
209 */
210 if (ext4_should_journal_data(inode) &&
Theodore Ts'o2b405bf2013-03-20 09:42:11 -0400211 (S_ISLNK(inode->i_mode) || S_ISREG(inode->i_mode)) &&
212 inode->i_ino != EXT4_JOURNAL_INO) {
Jan Kara2d859db2011-07-26 09:07:11 -0400213 journal_t *journal = EXT4_SB(inode->i_sb)->s_journal;
214 tid_t commit_tid = EXT4_I(inode)->i_datasync_tid;
215
Theodore Ts'od76a3a772013-04-03 22:02:52 -0400216 jbd2_complete_transaction(journal, commit_tid);
Jan Kara2d859db2011-07-26 09:07:11 -0400217 filemap_write_and_wait(&inode->i_data);
218 }
Johannes Weiner91b0abe2014-04-03 14:47:49 -0700219 truncate_inode_pages_final(&inode->i_data);
Jan Kara5dc23bd2013-06-04 14:46:12 -0400220
221 WARN_ON(atomic_read(&EXT4_I(inode)->i_ioend_count));
Al Viro0930fcc2010-06-07 13:16:22 -0400222 goto no_delete;
223 }
224
Theodore Ts'oe2bfb082014-10-05 22:47:07 -0400225 if (is_bad_inode(inode))
226 goto no_delete;
227 dquot_initialize(inode);
Christoph Hellwig907f4552010-03-03 09:05:06 -0500228
Jan Kara678aaf42008-07-11 19:27:31 -0400229 if (ext4_should_order_data(inode))
230 ext4_begin_ordered_truncate(inode, 0);
Johannes Weiner91b0abe2014-04-03 14:47:49 -0700231 truncate_inode_pages_final(&inode->i_data);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700232
Jan Kara5dc23bd2013-06-04 14:46:12 -0400233 WARN_ON(atomic_read(&EXT4_I(inode)->i_ioend_count));
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700234
Jan Kara8e8ad8a2012-06-12 16:20:38 +0200235 /*
236 * Protect us against freezing - iput() caller didn't have to have any
237 * protection against it
238 */
239 sb_start_intwrite(inode->i_sb);
Theodore Ts'o9924a922013-02-08 21:59:22 -0500240 handle = ext4_journal_start(inode, EXT4_HT_TRUNCATE,
241 ext4_blocks_for_truncate(inode)+3);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700242 if (IS_ERR(handle)) {
Theodore Ts'obc965ab2008-08-02 21:10:38 -0400243 ext4_std_error(inode->i_sb, PTR_ERR(handle));
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700244 /*
245 * If we're going to skip the normal cleanup, we still need to
246 * make sure that the in-core orphan linked list is properly
247 * cleaned up.
248 */
Mingming Cao617ba132006-10-11 01:20:53 -0700249 ext4_orphan_del(NULL, inode);
Jan Kara8e8ad8a2012-06-12 16:20:38 +0200250 sb_end_intwrite(inode->i_sb);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700251 goto no_delete;
252 }
253
254 if (IS_SYNC(inode))
Frank Mayhar03901312009-01-07 00:06:22 -0500255 ext4_handle_sync(handle);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700256 inode->i_size = 0;
Theodore Ts'obc965ab2008-08-02 21:10:38 -0400257 err = ext4_mark_inode_dirty(handle, inode);
258 if (err) {
Eric Sandeen12062dd2010-02-15 14:19:27 -0500259 ext4_warning(inode->i_sb,
Theodore Ts'obc965ab2008-08-02 21:10:38 -0400260 "couldn't mark inode dirty (err %d)", err);
261 goto stop_handle;
262 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700263 if (inode->i_blocks)
Mingming Cao617ba132006-10-11 01:20:53 -0700264 ext4_truncate(inode);
Theodore Ts'obc965ab2008-08-02 21:10:38 -0400265
266 /*
267 * ext4_ext_truncate() doesn't reserve any slop when it
268 * restarts journal transactions; therefore there may not be
269 * enough credits left in the handle to remove the inode from
270 * the orphan list and set the dtime field.
271 */
Frank Mayhar03901312009-01-07 00:06:22 -0500272 if (!ext4_handle_has_enough_credits(handle, 3)) {
Theodore Ts'obc965ab2008-08-02 21:10:38 -0400273 err = ext4_journal_extend(handle, 3);
274 if (err > 0)
275 err = ext4_journal_restart(handle, 3);
276 if (err != 0) {
Eric Sandeen12062dd2010-02-15 14:19:27 -0500277 ext4_warning(inode->i_sb,
Theodore Ts'obc965ab2008-08-02 21:10:38 -0400278 "couldn't extend journal (err %d)", err);
279 stop_handle:
280 ext4_journal_stop(handle);
Theodore Ts'o45388212010-07-29 15:06:10 -0400281 ext4_orphan_del(NULL, inode);
Jan Kara8e8ad8a2012-06-12 16:20:38 +0200282 sb_end_intwrite(inode->i_sb);
Theodore Ts'obc965ab2008-08-02 21:10:38 -0400283 goto no_delete;
284 }
285 }
286
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700287 /*
Mingming Cao617ba132006-10-11 01:20:53 -0700288 * Kill off the orphan record which ext4_truncate created.
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700289 * AKPM: I think this can be inside the above `if'.
Mingming Cao617ba132006-10-11 01:20:53 -0700290 * Note that ext4_orphan_del() has to be able to cope with the
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700291 * deletion of a non-existent orphan - this is because we don't
Mingming Cao617ba132006-10-11 01:20:53 -0700292 * know if ext4_truncate() actually created an orphan record.
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700293 * (Well, we could do this if we need to, but heck - it works)
294 */
Mingming Cao617ba132006-10-11 01:20:53 -0700295 ext4_orphan_del(handle, inode);
296 EXT4_I(inode)->i_dtime = get_seconds();
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700297
298 /*
299 * One subtle ordering requirement: if anything has gone wrong
300 * (transaction abort, IO errors, whatever), then we can still
301 * do these next steps (the fs will already have been marked as
302 * having errors), but we can't free the inode if the mark_dirty
303 * fails.
304 */
Mingming Cao617ba132006-10-11 01:20:53 -0700305 if (ext4_mark_inode_dirty(handle, inode))
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700306 /* If that failed, just do the required in-core inode clear. */
Al Viro0930fcc2010-06-07 13:16:22 -0400307 ext4_clear_inode(inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700308 else
Mingming Cao617ba132006-10-11 01:20:53 -0700309 ext4_free_inode(handle, inode);
310 ext4_journal_stop(handle);
Jan Kara8e8ad8a2012-06-12 16:20:38 +0200311 sb_end_intwrite(inode->i_sb);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700312 return;
313no_delete:
Al Viro0930fcc2010-06-07 13:16:22 -0400314 ext4_clear_inode(inode); /* We must guarantee clearing of inode... */
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700315}
316
Dmitry Monakhova9e7f442009-12-14 15:21:14 +0300317#ifdef CONFIG_QUOTA
318qsize_t *ext4_get_reserved_space(struct inode *inode)
Mingming Cao60e58e02009-01-22 18:13:05 +0100319{
Dmitry Monakhova9e7f442009-12-14 15:21:14 +0300320 return &EXT4_I(inode)->i_reserved_quota;
Mingming Cao60e58e02009-01-22 18:13:05 +0100321}
Dmitry Monakhova9e7f442009-12-14 15:21:14 +0300322#endif
Theodore Ts'o9d0be502010-01-01 02:41:30 -0500323
Aneesh Kumar K.V12219ae2008-07-17 16:12:08 -0400324/*
Theodore Ts'o0637c6f2009-12-30 14:20:45 -0500325 * Called with i_data_sem down, which is important since we can call
326 * ext4_discard_preallocations() from here.
327 */
Aneesh Kumar K.V5f634d02010-01-25 04:00:31 -0500328void ext4_da_update_reserve_space(struct inode *inode,
329 int used, int quota_claim)
Aneesh Kumar K.V12219ae2008-07-17 16:12:08 -0400330{
331 struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb);
Theodore Ts'o0637c6f2009-12-30 14:20:45 -0500332 struct ext4_inode_info *ei = EXT4_I(inode);
Aneesh Kumar K.V12219ae2008-07-17 16:12:08 -0400333
Theodore Ts'o0637c6f2009-12-30 14:20:45 -0500334 spin_lock(&ei->i_block_reservation_lock);
Aditya Kalid8990242011-09-09 19:18:51 -0400335 trace_ext4_da_update_reserve_space(inode, used, quota_claim);
Theodore Ts'o0637c6f2009-12-30 14:20:45 -0500336 if (unlikely(used > ei->i_reserved_data_blocks)) {
Theodore Ts'o8de5c322013-02-14 15:11:41 -0500337 ext4_warning(inode->i_sb, "%s: ino %lu, used %d "
Theodore Ts'o1084f252012-03-19 23:13:43 -0400338 "with only %d reserved data blocks",
Theodore Ts'o0637c6f2009-12-30 14:20:45 -0500339 __func__, inode->i_ino, used,
340 ei->i_reserved_data_blocks);
341 WARN_ON(1);
342 used = ei->i_reserved_data_blocks;
Aneesh Kumar K.V6bc6e632008-10-10 09:39:00 -0400343 }
Aneesh Kumar K.V12219ae2008-07-17 16:12:08 -0400344
Theodore Ts'o0637c6f2009-12-30 14:20:45 -0500345 /* Update per-inode reservations */
346 ei->i_reserved_data_blocks -= used;
Theodore Ts'o71d4f7d2014-07-15 06:02:38 -0400347 percpu_counter_sub(&sbi->s_dirtyclusters_counter, used);
Theodore Ts'o0637c6f2009-12-30 14:20:45 -0500348
Aneesh Kumar K.V12219ae2008-07-17 16:12:08 -0400349 spin_unlock(&EXT4_I(inode)->i_block_reservation_lock);
Mingming Cao60e58e02009-01-22 18:13:05 +0100350
Eric Sandeen72b8ab92010-05-16 11:00:00 -0400351 /* Update quota subsystem for data blocks */
352 if (quota_claim)
Aditya Kali7b415bf2011-09-09 19:04:51 -0400353 dquot_claim_block(inode, EXT4_C2B(sbi, used));
Eric Sandeen72b8ab92010-05-16 11:00:00 -0400354 else {
Aneesh Kumar K.V5f634d02010-01-25 04:00:31 -0500355 /*
356 * We did fallocate with an offset that is already delayed
357 * allocated. So on delayed allocated writeback we should
Eric Sandeen72b8ab92010-05-16 11:00:00 -0400358 * not re-claim the quota for fallocated blocks.
Aneesh Kumar K.V5f634d02010-01-25 04:00:31 -0500359 */
Aditya Kali7b415bf2011-09-09 19:04:51 -0400360 dquot_release_reservation_block(inode, EXT4_C2B(sbi, used));
Aneesh Kumar K.V5f634d02010-01-25 04:00:31 -0500361 }
Aneesh Kumar K.Vd6014302009-03-27 22:36:43 -0400362
363 /*
364 * If we have done all the pending block allocations and if
365 * there aren't any writers on the inode, we can discard the
366 * inode's preallocations.
367 */
Theodore Ts'o0637c6f2009-12-30 14:20:45 -0500368 if ((ei->i_reserved_data_blocks == 0) &&
369 (atomic_read(&inode->i_writecount) == 0))
Aneesh Kumar K.Vd6014302009-03-27 22:36:43 -0400370 ext4_discard_preallocations(inode);
Aneesh Kumar K.V12219ae2008-07-17 16:12:08 -0400371}
372
Theodore Ts'oe29136f2010-06-29 12:54:28 -0400373static int __check_block_validity(struct inode *inode, const char *func,
Theodore Ts'oc398eda2010-07-27 11:56:40 -0400374 unsigned int line,
375 struct ext4_map_blocks *map)
Theodore Ts'o6fd058f2009-05-17 15:38:01 -0400376{
Theodore Ts'o24676da2010-05-16 21:00:00 -0400377 if (!ext4_data_block_valid(EXT4_SB(inode->i_sb), map->m_pblk,
378 map->m_len)) {
Theodore Ts'oc398eda2010-07-27 11:56:40 -0400379 ext4_error_inode(inode, func, line, map->m_pblk,
380 "lblock %lu mapped to illegal pblock "
381 "(length %d)", (unsigned long) map->m_lblk,
382 map->m_len);
Theodore Ts'o6fd058f2009-05-17 15:38:01 -0400383 return -EIO;
384 }
385 return 0;
386}
387
Theodore Ts'oe29136f2010-06-29 12:54:28 -0400388#define check_block_validity(inode, map) \
Theodore Ts'oc398eda2010-07-27 11:56:40 -0400389 __check_block_validity((inode), __func__, __LINE__, (map))
Theodore Ts'oe29136f2010-06-29 12:54:28 -0400390
Dmitry Monakhov921f2662013-03-10 21:01:03 -0400391#ifdef ES_AGGRESSIVE_TEST
392static void ext4_map_blocks_es_recheck(handle_t *handle,
393 struct inode *inode,
394 struct ext4_map_blocks *es_map,
395 struct ext4_map_blocks *map,
396 int flags)
397{
398 int retval;
399
400 map->m_flags = 0;
401 /*
402 * There is a race window that the result is not the same.
403 * e.g. xfstests #223 when dioread_nolock enables. The reason
404 * is that we lookup a block mapping in extent status tree with
405 * out taking i_data_sem. So at the time the unwritten extent
406 * could be converted.
407 */
408 if (!(flags & EXT4_GET_BLOCKS_NO_LOCK))
Lukas Czernerc8b459f2014-05-12 12:55:07 -0400409 down_read(&EXT4_I(inode)->i_data_sem);
Dmitry Monakhov921f2662013-03-10 21:01:03 -0400410 if (ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS)) {
411 retval = ext4_ext_map_blocks(handle, inode, map, flags &
412 EXT4_GET_BLOCKS_KEEP_SIZE);
413 } else {
414 retval = ext4_ind_map_blocks(handle, inode, map, flags &
415 EXT4_GET_BLOCKS_KEEP_SIZE);
416 }
417 if (!(flags & EXT4_GET_BLOCKS_NO_LOCK))
418 up_read((&EXT4_I(inode)->i_data_sem));
Dmitry Monakhov921f2662013-03-10 21:01:03 -0400419
420 /*
421 * We don't check m_len because extent will be collpased in status
422 * tree. So the m_len might not equal.
423 */
424 if (es_map->m_lblk != map->m_lblk ||
425 es_map->m_flags != map->m_flags ||
426 es_map->m_pblk != map->m_pblk) {
Theodore Ts'obdafe422013-07-13 00:40:31 -0400427 printk("ES cache assertion failed for inode: %lu "
Dmitry Monakhov921f2662013-03-10 21:01:03 -0400428 "es_cached ex [%d/%d/%llu/%x] != "
429 "found ex [%d/%d/%llu/%x] retval %d flags %x\n",
430 inode->i_ino, es_map->m_lblk, es_map->m_len,
431 es_map->m_pblk, es_map->m_flags, map->m_lblk,
432 map->m_len, map->m_pblk, map->m_flags,
433 retval, flags);
434 }
435}
436#endif /* ES_AGGRESSIVE_TEST */
437
Theodore Ts'o55138e02009-09-29 13:31:31 -0400438/*
Theodore Ts'oe35fd662010-05-16 19:00:00 -0400439 * The ext4_map_blocks() function tries to look up the requested blocks,
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -0400440 * and returns if the blocks are already mapped.
Mingming Caof5ab0d12008-02-25 15:29:55 -0500441 *
Mingming Caof5ab0d12008-02-25 15:29:55 -0500442 * Otherwise it takes the write lock of the i_data_sem and allocate blocks
443 * and store the allocated blocks in the result buffer head and mark it
444 * mapped.
445 *
Theodore Ts'oe35fd662010-05-16 19:00:00 -0400446 * If file type is extents based, it will call ext4_ext_map_blocks(),
447 * Otherwise, call with ext4_ind_map_blocks() to handle indirect mapping
Mingming Caof5ab0d12008-02-25 15:29:55 -0500448 * based files
449 *
Lukas Czerner556615d2014-04-20 23:45:47 -0400450 * On success, it returns the number of blocks being mapped or allocated.
451 * if create==0 and the blocks are pre-allocated and unwritten block,
Mingming Caof5ab0d12008-02-25 15:29:55 -0500452 * the result buffer head is unmapped. If the create ==1, it will make sure
453 * the buffer head is mapped.
454 *
455 * It returns 0 if plain look up failed (blocks have not been allocated), in
Tao Madf3ab172011-10-08 15:53:49 -0400456 * that case, buffer head is unmapped
Mingming Caof5ab0d12008-02-25 15:29:55 -0500457 *
458 * It returns the error in case of allocation failure.
459 */
Theodore Ts'oe35fd662010-05-16 19:00:00 -0400460int ext4_map_blocks(handle_t *handle, struct inode *inode,
461 struct ext4_map_blocks *map, int flags)
Aneesh Kumar K.V0e855ac2008-01-28 23:58:26 -0500462{
Zheng Liud100eef2013-02-18 00:29:59 -0500463 struct extent_status es;
Aneesh Kumar K.V0e855ac2008-01-28 23:58:26 -0500464 int retval;
Lukas Czernerb8a86842014-03-18 18:05:35 -0400465 int ret = 0;
Dmitry Monakhov921f2662013-03-10 21:01:03 -0400466#ifdef ES_AGGRESSIVE_TEST
467 struct ext4_map_blocks orig_map;
468
469 memcpy(&orig_map, map, sizeof(*map));
470#endif
Mingming Caof5ab0d12008-02-25 15:29:55 -0500471
Theodore Ts'oe35fd662010-05-16 19:00:00 -0400472 map->m_flags = 0;
473 ext_debug("ext4_map_blocks(): inode %lu, flag %d, max_blocks %u,"
474 "logical block %lu\n", inode->i_ino, flags, map->m_len,
475 (unsigned long) map->m_lblk);
Zheng Liud100eef2013-02-18 00:29:59 -0500476
Theodore Ts'oe861b5e2014-02-20 12:54:05 -0500477 /*
478 * ext4_map_blocks returns an int, and m_len is an unsigned int
479 */
480 if (unlikely(map->m_len > INT_MAX))
481 map->m_len = INT_MAX;
482
Kazuya Mio4adb6ab2014-04-07 10:53:28 -0400483 /* We can handle the block number less than EXT_MAX_BLOCKS */
484 if (unlikely(map->m_lblk >= EXT_MAX_BLOCKS))
485 return -EIO;
486
Zheng Liud100eef2013-02-18 00:29:59 -0500487 /* Lookup extent status tree firstly */
488 if (ext4_es_lookup_extent(inode, map->m_lblk, &es)) {
Theodore Ts'o63b99962013-07-16 10:28:47 -0400489 ext4_es_lru_add(inode);
Zheng Liud100eef2013-02-18 00:29:59 -0500490 if (ext4_es_is_written(&es) || ext4_es_is_unwritten(&es)) {
491 map->m_pblk = ext4_es_pblock(&es) +
492 map->m_lblk - es.es_lblk;
493 map->m_flags |= ext4_es_is_written(&es) ?
494 EXT4_MAP_MAPPED : EXT4_MAP_UNWRITTEN;
495 retval = es.es_len - (map->m_lblk - es.es_lblk);
496 if (retval > map->m_len)
497 retval = map->m_len;
498 map->m_len = retval;
499 } else if (ext4_es_is_delayed(&es) || ext4_es_is_hole(&es)) {
500 retval = 0;
501 } else {
502 BUG_ON(1);
503 }
Dmitry Monakhov921f2662013-03-10 21:01:03 -0400504#ifdef ES_AGGRESSIVE_TEST
505 ext4_map_blocks_es_recheck(handle, inode, map,
506 &orig_map, flags);
507#endif
Zheng Liud100eef2013-02-18 00:29:59 -0500508 goto found;
509 }
510
Aneesh Kumar K.V4df3d262008-01-28 23:58:29 -0500511 /*
Theodore Ts'ob920c752009-05-14 00:54:29 -0400512 * Try to see if we can get the block without requesting a new
513 * file system block.
Aneesh Kumar K.V4df3d262008-01-28 23:58:29 -0500514 */
Zheng Liu729f52c2012-07-09 16:29:29 -0400515 if (!(flags & EXT4_GET_BLOCKS_NO_LOCK))
Lukas Czernerc8b459f2014-05-12 12:55:07 -0400516 down_read(&EXT4_I(inode)->i_data_sem);
Dmitry Monakhov12e9b892010-05-16 22:00:00 -0400517 if (ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS)) {
Dmitry Monakhova4e5d882011-10-25 08:15:12 -0400518 retval = ext4_ext_map_blocks(handle, inode, map, flags &
519 EXT4_GET_BLOCKS_KEEP_SIZE);
Aneesh Kumar K.V0e855ac2008-01-28 23:58:26 -0500520 } else {
Dmitry Monakhova4e5d882011-10-25 08:15:12 -0400521 retval = ext4_ind_map_blocks(handle, inode, map, flags &
522 EXT4_GET_BLOCKS_KEEP_SIZE);
Aneesh Kumar K.V0e855ac2008-01-28 23:58:26 -0500523 }
Zheng Liuf7fec032013-02-18 00:28:47 -0500524 if (retval > 0) {
Theodore Ts'o3be78c72013-08-16 21:22:41 -0400525 unsigned int status;
Zheng Liuf7fec032013-02-18 00:28:47 -0500526
Zheng Liu44fb851d2013-07-29 12:51:42 -0400527 if (unlikely(retval != map->m_len)) {
528 ext4_warning(inode->i_sb,
529 "ES len assertion failed for inode "
530 "%lu: retval %d != map->m_len %d",
531 inode->i_ino, retval, map->m_len);
532 WARN_ON(1);
Dmitry Monakhov921f2662013-03-10 21:01:03 -0400533 }
Dmitry Monakhov921f2662013-03-10 21:01:03 -0400534
Zheng Liuf7fec032013-02-18 00:28:47 -0500535 status = map->m_flags & EXT4_MAP_UNWRITTEN ?
536 EXTENT_STATUS_UNWRITTEN : EXTENT_STATUS_WRITTEN;
537 if (!(flags & EXT4_GET_BLOCKS_DELALLOC_RESERVE) &&
538 ext4_find_delalloc_range(inode, map->m_lblk,
539 map->m_lblk + map->m_len - 1))
540 status |= EXTENT_STATUS_DELAYED;
541 ret = ext4_es_insert_extent(inode, map->m_lblk,
542 map->m_len, map->m_pblk, status);
543 if (ret < 0)
544 retval = ret;
545 }
Zheng Liu729f52c2012-07-09 16:29:29 -0400546 if (!(flags & EXT4_GET_BLOCKS_NO_LOCK))
547 up_read((&EXT4_I(inode)->i_data_sem));
Mingming Caof5ab0d12008-02-25 15:29:55 -0500548
Zheng Liud100eef2013-02-18 00:29:59 -0500549found:
Theodore Ts'oe35fd662010-05-16 19:00:00 -0400550 if (retval > 0 && map->m_flags & EXT4_MAP_MAPPED) {
Lukas Czernerb8a86842014-03-18 18:05:35 -0400551 ret = check_block_validity(inode, map);
Theodore Ts'o6fd058f2009-05-17 15:38:01 -0400552 if (ret != 0)
553 return ret;
554 }
555
Mingming Caof5ab0d12008-02-25 15:29:55 -0500556 /* If it is only a block(s) look up */
Theodore Ts'oc2177052009-05-14 00:58:52 -0400557 if ((flags & EXT4_GET_BLOCKS_CREATE) == 0)
Aneesh Kumar K.V4df3d262008-01-28 23:58:29 -0500558 return retval;
559
560 /*
Mingming Caof5ab0d12008-02-25 15:29:55 -0500561 * Returns if the blocks have already allocated
562 *
563 * Note that if blocks have been preallocated
Tao Madf3ab172011-10-08 15:53:49 -0400564 * ext4_ext_get_block() returns the create = 0
Mingming Caof5ab0d12008-02-25 15:29:55 -0500565 * with buffer head unmapped.
566 */
Theodore Ts'oe35fd662010-05-16 19:00:00 -0400567 if (retval > 0 && map->m_flags & EXT4_MAP_MAPPED)
Lukas Czernerb8a86842014-03-18 18:05:35 -0400568 /*
569 * If we need to convert extent to unwritten
570 * we continue and do the actual work in
571 * ext4_ext_map_blocks()
572 */
573 if (!(flags & EXT4_GET_BLOCKS_CONVERT_UNWRITTEN))
574 return retval;
Mingming Caof5ab0d12008-02-25 15:29:55 -0500575
576 /*
Zheng Liua25a4e12013-02-18 00:28:04 -0500577 * Here we clear m_flags because after allocating an new extent,
578 * it will be set again.
Aneesh Kumar K.V2a8964d2009-05-14 17:05:39 -0400579 */
Zheng Liua25a4e12013-02-18 00:28:04 -0500580 map->m_flags &= ~EXT4_MAP_FLAGS;
Aneesh Kumar K.V2a8964d2009-05-14 17:05:39 -0400581
582 /*
Lukas Czerner556615d2014-04-20 23:45:47 -0400583 * New blocks allocate and/or writing to unwritten extent
Mingming Caof5ab0d12008-02-25 15:29:55 -0500584 * will possibly result in updating i_data, so we take
Seunghun Leed91bd2c2014-09-01 22:15:30 -0400585 * the write lock of i_data_sem, and call get_block()
Mingming Caof5ab0d12008-02-25 15:29:55 -0500586 * with create == 1 flag.
Aneesh Kumar K.V4df3d262008-01-28 23:58:29 -0500587 */
Lukas Czernerc8b459f2014-05-12 12:55:07 -0400588 down_write(&EXT4_I(inode)->i_data_sem);
Mingming Caod2a17632008-07-14 17:52:37 -0400589
590 /*
Aneesh Kumar K.V4df3d262008-01-28 23:58:29 -0500591 * We need to check for EXT4 here because migrate
592 * could have changed the inode type in between
593 */
Dmitry Monakhov12e9b892010-05-16 22:00:00 -0400594 if (ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS)) {
Theodore Ts'oe35fd662010-05-16 19:00:00 -0400595 retval = ext4_ext_map_blocks(handle, inode, map, flags);
Aneesh Kumar K.V0e855ac2008-01-28 23:58:26 -0500596 } else {
Theodore Ts'oe35fd662010-05-16 19:00:00 -0400597 retval = ext4_ind_map_blocks(handle, inode, map, flags);
Aneesh Kumar K.V267e4db2008-04-29 08:11:12 -0400598
Theodore Ts'oe35fd662010-05-16 19:00:00 -0400599 if (retval > 0 && map->m_flags & EXT4_MAP_NEW) {
Aneesh Kumar K.V267e4db2008-04-29 08:11:12 -0400600 /*
601 * We allocated new blocks which will result in
602 * i_data's format changing. Force the migrate
603 * to fail by clearing migrate flags
604 */
Theodore Ts'o19f5fb72010-01-24 14:34:07 -0500605 ext4_clear_inode_state(inode, EXT4_STATE_EXT_MIGRATE);
Aneesh Kumar K.V267e4db2008-04-29 08:11:12 -0400606 }
Mingming Caod2a17632008-07-14 17:52:37 -0400607
Aneesh Kumar K.V5f634d02010-01-25 04:00:31 -0500608 /*
609 * Update reserved blocks/metadata blocks after successful
610 * block allocation which had been deferred till now. We don't
611 * support fallocate for non extent files. So we can update
612 * reserve space here.
613 */
614 if ((retval > 0) &&
Aneesh Kumar K.V1296cc82010-01-15 01:27:59 -0500615 (flags & EXT4_GET_BLOCKS_DELALLOC_RESERVE))
Aneesh Kumar K.V5f634d02010-01-25 04:00:31 -0500616 ext4_da_update_reserve_space(inode, retval, 1);
617 }
Theodore Ts'o2ac3b6e2009-05-14 13:57:08 -0400618
Zheng Liuf7fec032013-02-18 00:28:47 -0500619 if (retval > 0) {
Theodore Ts'o3be78c72013-08-16 21:22:41 -0400620 unsigned int status;
Zheng Liuf7fec032013-02-18 00:28:47 -0500621
Zheng Liu44fb851d2013-07-29 12:51:42 -0400622 if (unlikely(retval != map->m_len)) {
623 ext4_warning(inode->i_sb,
624 "ES len assertion failed for inode "
625 "%lu: retval %d != map->m_len %d",
626 inode->i_ino, retval, map->m_len);
627 WARN_ON(1);
Dmitry Monakhov921f2662013-03-10 21:01:03 -0400628 }
Dmitry Monakhov921f2662013-03-10 21:01:03 -0400629
Zheng Liuadb23552013-03-10 21:13:05 -0400630 /*
631 * If the extent has been zeroed out, we don't need to update
632 * extent status tree.
633 */
634 if ((flags & EXT4_GET_BLOCKS_PRE_IO) &&
635 ext4_es_lookup_extent(inode, map->m_lblk, &es)) {
636 if (ext4_es_is_written(&es))
637 goto has_zeroout;
638 }
Zheng Liuf7fec032013-02-18 00:28:47 -0500639 status = map->m_flags & EXT4_MAP_UNWRITTEN ?
640 EXTENT_STATUS_UNWRITTEN : EXTENT_STATUS_WRITTEN;
641 if (!(flags & EXT4_GET_BLOCKS_DELALLOC_RESERVE) &&
642 ext4_find_delalloc_range(inode, map->m_lblk,
643 map->m_lblk + map->m_len - 1))
644 status |= EXTENT_STATUS_DELAYED;
645 ret = ext4_es_insert_extent(inode, map->m_lblk, map->m_len,
646 map->m_pblk, status);
647 if (ret < 0)
648 retval = ret;
Aditya Kali5356f262011-09-09 19:20:51 -0400649 }
650
Zheng Liuadb23552013-03-10 21:13:05 -0400651has_zeroout:
Aneesh Kumar K.V4df3d262008-01-28 23:58:29 -0500652 up_write((&EXT4_I(inode)->i_data_sem));
Theodore Ts'oe35fd662010-05-16 19:00:00 -0400653 if (retval > 0 && map->m_flags & EXT4_MAP_MAPPED) {
Lukas Czernerb8a86842014-03-18 18:05:35 -0400654 ret = check_block_validity(inode, map);
Theodore Ts'o6fd058f2009-05-17 15:38:01 -0400655 if (ret != 0)
656 return ret;
657 }
Aneesh Kumar K.V0e855ac2008-01-28 23:58:26 -0500658 return retval;
659}
660
Mingming Caof3bd1f32008-08-19 22:16:03 -0400661/* Maximum number of blocks we map for direct IO at once. */
662#define DIO_MAX_BLOCKS 4096
663
Theodore Ts'o2ed88682010-05-16 20:00:00 -0400664static int _ext4_get_block(struct inode *inode, sector_t iblock,
665 struct buffer_head *bh, int flags)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700666{
Dmitriy Monakhov3e4fdaf2007-02-10 01:46:35 -0800667 handle_t *handle = ext4_journal_current_handle();
Theodore Ts'o2ed88682010-05-16 20:00:00 -0400668 struct ext4_map_blocks map;
Jan Kara7fb54092008-02-10 01:08:38 -0500669 int ret = 0, started = 0;
Mingming Caof3bd1f32008-08-19 22:16:03 -0400670 int dio_credits;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700671
Tao Ma46c7f252012-12-10 14:04:52 -0500672 if (ext4_has_inline_data(inode))
673 return -ERANGE;
674
Theodore Ts'o2ed88682010-05-16 20:00:00 -0400675 map.m_lblk = iblock;
676 map.m_len = bh->b_size >> inode->i_blkbits;
677
Anatol Pomozov8b0f1652012-11-08 15:07:16 -0500678 if (flags && !(flags & EXT4_GET_BLOCKS_NO_LOCK) && !handle) {
Jan Kara7fb54092008-02-10 01:08:38 -0500679 /* Direct IO write... */
Theodore Ts'o2ed88682010-05-16 20:00:00 -0400680 if (map.m_len > DIO_MAX_BLOCKS)
681 map.m_len = DIO_MAX_BLOCKS;
682 dio_credits = ext4_chunk_trans_blocks(inode, map.m_len);
Theodore Ts'o9924a922013-02-08 21:59:22 -0500683 handle = ext4_journal_start(inode, EXT4_HT_MAP_BLOCKS,
684 dio_credits);
Jan Kara7fb54092008-02-10 01:08:38 -0500685 if (IS_ERR(handle)) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700686 ret = PTR_ERR(handle);
Theodore Ts'o2ed88682010-05-16 20:00:00 -0400687 return ret;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700688 }
Jan Kara7fb54092008-02-10 01:08:38 -0500689 started = 1;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700690 }
691
Theodore Ts'o2ed88682010-05-16 20:00:00 -0400692 ret = ext4_map_blocks(handle, inode, &map, flags);
Jan Kara7fb54092008-02-10 01:08:38 -0500693 if (ret > 0) {
Christoph Hellwig7b7a8662013-09-04 15:04:39 +0200694 ext4_io_end_t *io_end = ext4_inode_aio(inode);
695
Theodore Ts'o2ed88682010-05-16 20:00:00 -0400696 map_bh(bh, inode->i_sb, map.m_pblk);
697 bh->b_state = (bh->b_state & ~EXT4_MAP_FLAGS) | map.m_flags;
Christoph Hellwig7b7a8662013-09-04 15:04:39 +0200698 if (io_end && io_end->flag & EXT4_IO_END_UNWRITTEN)
699 set_buffer_defer_completion(bh);
Theodore Ts'o2ed88682010-05-16 20:00:00 -0400700 bh->b_size = inode->i_sb->s_blocksize * map.m_len;
Jan Kara7fb54092008-02-10 01:08:38 -0500701 ret = 0;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700702 }
Jan Kara7fb54092008-02-10 01:08:38 -0500703 if (started)
704 ext4_journal_stop(handle);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700705 return ret;
706}
707
Theodore Ts'o2ed88682010-05-16 20:00:00 -0400708int ext4_get_block(struct inode *inode, sector_t iblock,
709 struct buffer_head *bh, int create)
710{
711 return _ext4_get_block(inode, iblock, bh,
712 create ? EXT4_GET_BLOCKS_CREATE : 0);
713}
714
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700715/*
716 * `handle' can be NULL if create is zero
717 */
Mingming Cao617ba132006-10-11 01:20:53 -0700718struct buffer_head *ext4_getblk(handle_t *handle, struct inode *inode,
Theodore Ts'o10560082014-08-29 20:51:32 -0400719 ext4_lblk_t block, int create)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700720{
Theodore Ts'o2ed88682010-05-16 20:00:00 -0400721 struct ext4_map_blocks map;
722 struct buffer_head *bh;
Theodore Ts'o10560082014-08-29 20:51:32 -0400723 int err;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700724
725 J_ASSERT(handle != NULL || create == 0);
726
Theodore Ts'o2ed88682010-05-16 20:00:00 -0400727 map.m_lblk = block;
728 map.m_len = 1;
729 err = ext4_map_blocks(handle, inode, &map,
730 create ? EXT4_GET_BLOCKS_CREATE : 0);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700731
Theodore Ts'o10560082014-08-29 20:51:32 -0400732 if (err == 0)
733 return create ? ERR_PTR(-ENOSPC) : NULL;
Theodore Ts'o2ed88682010-05-16 20:00:00 -0400734 if (err < 0)
Theodore Ts'o10560082014-08-29 20:51:32 -0400735 return ERR_PTR(err);
Theodore Ts'o2ed88682010-05-16 20:00:00 -0400736
737 bh = sb_getblk(inode->i_sb, map.m_pblk);
Theodore Ts'o10560082014-08-29 20:51:32 -0400738 if (unlikely(!bh))
739 return ERR_PTR(-ENOMEM);
Theodore Ts'o2ed88682010-05-16 20:00:00 -0400740 if (map.m_flags & EXT4_MAP_NEW) {
741 J_ASSERT(create != 0);
742 J_ASSERT(handle != NULL);
743
744 /*
745 * Now that we do not always journal data, we should
746 * keep in mind whether this should always journal the
747 * new buffer as metadata. For now, regular file
748 * writes use ext4_get_block instead, so it's not a
749 * problem.
750 */
751 lock_buffer(bh);
752 BUFFER_TRACE(bh, "call get_create_access");
Theodore Ts'o10560082014-08-29 20:51:32 -0400753 err = ext4_journal_get_create_access(handle, bh);
754 if (unlikely(err)) {
755 unlock_buffer(bh);
756 goto errout;
757 }
758 if (!buffer_uptodate(bh)) {
Theodore Ts'o2ed88682010-05-16 20:00:00 -0400759 memset(bh->b_data, 0, inode->i_sb->s_blocksize);
760 set_buffer_uptodate(bh);
761 }
762 unlock_buffer(bh);
763 BUFFER_TRACE(bh, "call ext4_handle_dirty_metadata");
764 err = ext4_handle_dirty_metadata(handle, inode, bh);
Theodore Ts'o10560082014-08-29 20:51:32 -0400765 if (unlikely(err))
766 goto errout;
767 } else
Theodore Ts'o2ed88682010-05-16 20:00:00 -0400768 BUFFER_TRACE(bh, "not a new buffer");
Theodore Ts'o2ed88682010-05-16 20:00:00 -0400769 return bh;
Theodore Ts'o10560082014-08-29 20:51:32 -0400770errout:
771 brelse(bh);
772 return ERR_PTR(err);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700773}
774
Mingming Cao617ba132006-10-11 01:20:53 -0700775struct buffer_head *ext4_bread(handle_t *handle, struct inode *inode,
Theodore Ts'o1c215022014-08-29 20:52:15 -0400776 ext4_lblk_t block, int create)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700777{
Theodore Ts'oaf5bc922008-09-08 22:25:24 -0400778 struct buffer_head *bh;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700779
Theodore Ts'o10560082014-08-29 20:51:32 -0400780 bh = ext4_getblk(handle, inode, block, create);
Theodore Ts'o1c215022014-08-29 20:52:15 -0400781 if (IS_ERR(bh))
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700782 return bh;
Theodore Ts'o1c215022014-08-29 20:52:15 -0400783 if (!bh || buffer_uptodate(bh))
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700784 return bh;
Christoph Hellwig65299a32011-08-23 14:50:29 +0200785 ll_rw_block(READ | REQ_META | REQ_PRIO, 1, &bh);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700786 wait_on_buffer(bh);
787 if (buffer_uptodate(bh))
788 return bh;
789 put_bh(bh);
Theodore Ts'o1c215022014-08-29 20:52:15 -0400790 return ERR_PTR(-EIO);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700791}
792
Tao Maf19d5872012-12-10 14:05:51 -0500793int ext4_walk_page_buffers(handle_t *handle,
794 struct buffer_head *head,
795 unsigned from,
796 unsigned to,
797 int *partial,
798 int (*fn)(handle_t *handle,
799 struct buffer_head *bh))
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700800{
801 struct buffer_head *bh;
802 unsigned block_start, block_end;
803 unsigned blocksize = head->b_size;
804 int err, ret = 0;
805 struct buffer_head *next;
806
Theodore Ts'oaf5bc922008-09-08 22:25:24 -0400807 for (bh = head, block_start = 0;
808 ret == 0 && (bh != head || !block_start);
Theodore Ts'ode9a55b2009-06-14 17:45:34 -0400809 block_start = block_end, bh = next) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700810 next = bh->b_this_page;
811 block_end = block_start + blocksize;
812 if (block_end <= from || block_start >= to) {
813 if (partial && !buffer_uptodate(bh))
814 *partial = 1;
815 continue;
816 }
817 err = (*fn)(handle, bh);
818 if (!ret)
819 ret = err;
820 }
821 return ret;
822}
823
824/*
825 * To preserve ordering, it is essential that the hole instantiation and
826 * the data write be encapsulated in a single transaction. We cannot
Mingming Cao617ba132006-10-11 01:20:53 -0700827 * close off a transaction and start a new one between the ext4_get_block()
Mingming Caodab291a2006-10-11 01:21:01 -0700828 * and the commit_write(). So doing the jbd2_journal_start at the start of
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700829 * prepare_write() is the right place.
830 *
Jan Kara36ade452013-01-28 09:30:52 -0500831 * Also, this function can nest inside ext4_writepage(). In that case, we
832 * *know* that ext4_writepage() has generated enough buffer credits to do the
833 * whole page. So we won't block on the journal in that case, which is good,
834 * because the caller may be PF_MEMALLOC.
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700835 *
Mingming Cao617ba132006-10-11 01:20:53 -0700836 * By accident, ext4 can be reentered when a transaction is open via
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700837 * quota file writes. If we were to commit the transaction while thus
838 * reentered, there can be a deadlock - we would be holding a quota
839 * lock, and the commit would never complete if another thread had a
840 * transaction open and was blocking on the quota lock - a ranking
841 * violation.
842 *
Mingming Caodab291a2006-10-11 01:21:01 -0700843 * So what we do is to rely on the fact that jbd2_journal_stop/journal_start
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700844 * will _not_ run commit under these circumstances because handle->h_ref
845 * is elevated. We'll still have enough credits for the tiny quotafile
846 * write.
847 */
Tao Maf19d5872012-12-10 14:05:51 -0500848int do_journal_get_write_access(handle_t *handle,
849 struct buffer_head *bh)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700850{
Jan Kara56d35a42010-08-05 14:41:42 -0400851 int dirty = buffer_dirty(bh);
852 int ret;
853
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700854 if (!buffer_mapped(bh) || buffer_freed(bh))
855 return 0;
Jan Kara56d35a42010-08-05 14:41:42 -0400856 /*
Christoph Hellwigebdec242010-10-06 10:47:23 +0200857 * __block_write_begin() could have dirtied some buffers. Clean
Jan Kara56d35a42010-08-05 14:41:42 -0400858 * the dirty bit as jbd2_journal_get_write_access() could complain
859 * otherwise about fs integrity issues. Setting of the dirty bit
Christoph Hellwigebdec242010-10-06 10:47:23 +0200860 * by __block_write_begin() isn't a real problem here as we clear
Jan Kara56d35a42010-08-05 14:41:42 -0400861 * the bit before releasing a page lock and thus writeback cannot
862 * ever write the buffer.
863 */
864 if (dirty)
865 clear_buffer_dirty(bh);
liang xie5d601252014-05-12 22:06:43 -0400866 BUFFER_TRACE(bh, "get write access");
Jan Kara56d35a42010-08-05 14:41:42 -0400867 ret = ext4_journal_get_write_access(handle, bh);
868 if (!ret && dirty)
869 ret = ext4_handle_dirty_metadata(handle, NULL, bh);
870 return ret;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700871}
872
Anatol Pomozov8b0f1652012-11-08 15:07:16 -0500873static int ext4_get_block_write_nolock(struct inode *inode, sector_t iblock,
874 struct buffer_head *bh_result, int create);
Nick Pigginbfc1af62007-10-16 01:25:05 -0700875static int ext4_write_begin(struct file *file, struct address_space *mapping,
Theodore Ts'ode9a55b2009-06-14 17:45:34 -0400876 loff_t pos, unsigned len, unsigned flags,
877 struct page **pagep, void **fsdata)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700878{
Theodore Ts'oaf5bc922008-09-08 22:25:24 -0400879 struct inode *inode = mapping->host;
Aneesh Kumar K.V1938a152009-06-05 01:00:26 -0400880 int ret, needed_blocks;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700881 handle_t *handle;
882 int retries = 0;
Theodore Ts'oaf5bc922008-09-08 22:25:24 -0400883 struct page *page;
Theodore Ts'ode9a55b2009-06-14 17:45:34 -0400884 pgoff_t index;
Theodore Ts'oaf5bc922008-09-08 22:25:24 -0400885 unsigned from, to;
Nick Pigginbfc1af62007-10-16 01:25:05 -0700886
Theodore Ts'o9bffad12009-06-17 11:48:11 -0400887 trace_ext4_write_begin(inode, pos, len, flags);
Aneesh Kumar K.V1938a152009-06-05 01:00:26 -0400888 /*
889 * Reserve one block more for addition to orphan list in case
890 * we allocate blocks but write fails for some reason
891 */
892 needed_blocks = ext4_writepage_trans_blocks(inode) + 1;
Theodore Ts'ode9a55b2009-06-14 17:45:34 -0400893 index = pos >> PAGE_CACHE_SHIFT;
Theodore Ts'oaf5bc922008-09-08 22:25:24 -0400894 from = pos & (PAGE_CACHE_SIZE - 1);
895 to = from + len;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700896
Tao Maf19d5872012-12-10 14:05:51 -0500897 if (ext4_test_inode_state(inode, EXT4_STATE_MAY_INLINE_DATA)) {
898 ret = ext4_try_to_write_inline_data(mapping, inode, pos, len,
899 flags, pagep);
900 if (ret < 0)
Theodore Ts'o47564bf2013-02-09 09:24:14 -0500901 return ret;
902 if (ret == 1)
903 return 0;
Tao Maf19d5872012-12-10 14:05:51 -0500904 }
905
Theodore Ts'o47564bf2013-02-09 09:24:14 -0500906 /*
907 * grab_cache_page_write_begin() can take a long time if the
908 * system is thrashing due to memory pressure, or if the page
909 * is being written back. So grab it first before we start
910 * the transaction handle. This also allows us to allocate
911 * the page (if needed) without using GFP_NOFS.
912 */
913retry_grab:
Nick Piggin54566b22009-01-04 12:00:53 -0800914 page = grab_cache_page_write_begin(mapping, index, flags);
Theodore Ts'o47564bf2013-02-09 09:24:14 -0500915 if (!page)
916 return -ENOMEM;
917 unlock_page(page);
918
919retry_journal:
Theodore Ts'o9924a922013-02-08 21:59:22 -0500920 handle = ext4_journal_start(inode, EXT4_HT_WRITE_PAGE, needed_blocks);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700921 if (IS_ERR(handle)) {
Theodore Ts'o47564bf2013-02-09 09:24:14 -0500922 page_cache_release(page);
923 return PTR_ERR(handle);
Jan Karacf108bc2008-07-11 19:27:31 -0400924 }
Tao Maf19d5872012-12-10 14:05:51 -0500925
Theodore Ts'o47564bf2013-02-09 09:24:14 -0500926 lock_page(page);
927 if (page->mapping != mapping) {
928 /* The page got truncated from under us */
929 unlock_page(page);
930 page_cache_release(page);
Jan Karacf108bc2008-07-11 19:27:31 -0400931 ext4_journal_stop(handle);
Theodore Ts'o47564bf2013-02-09 09:24:14 -0500932 goto retry_grab;
Jan Karacf108bc2008-07-11 19:27:31 -0400933 }
Dmitry Monakhov7afe5aa2013-08-28 14:30:47 -0400934 /* In case writeback began while the page was unlocked */
935 wait_for_stable_page(page);
Jan Karacf108bc2008-07-11 19:27:31 -0400936
Jiaying Zhang744692d2010-03-04 16:14:02 -0500937 if (ext4_should_dioread_nolock(inode))
Christoph Hellwig6e1db882010-06-04 11:29:57 +0200938 ret = __block_write_begin(page, pos, len, ext4_get_block_write);
Jiaying Zhang744692d2010-03-04 16:14:02 -0500939 else
Christoph Hellwig6e1db882010-06-04 11:29:57 +0200940 ret = __block_write_begin(page, pos, len, ext4_get_block);
Nick Pigginbfc1af62007-10-16 01:25:05 -0700941
942 if (!ret && ext4_should_journal_data(inode)) {
Tao Maf19d5872012-12-10 14:05:51 -0500943 ret = ext4_walk_page_buffers(handle, page_buffers(page),
944 from, to, NULL,
945 do_journal_get_write_access);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700946 }
Nick Pigginbfc1af62007-10-16 01:25:05 -0700947
948 if (ret) {
Theodore Ts'oaf5bc922008-09-08 22:25:24 -0400949 unlock_page(page);
Aneesh Kumar K.Vae4d5372008-09-13 13:10:25 -0400950 /*
Christoph Hellwig6e1db882010-06-04 11:29:57 +0200951 * __block_write_begin may have instantiated a few blocks
Aneesh Kumar K.Vae4d5372008-09-13 13:10:25 -0400952 * outside i_size. Trim these off again. Don't need
953 * i_size_read because we hold i_mutex.
Aneesh Kumar K.V1938a152009-06-05 01:00:26 -0400954 *
955 * Add inode to orphan list in case we crash before
956 * truncate finishes
Aneesh Kumar K.Vae4d5372008-09-13 13:10:25 -0400957 */
Jan Karaffacfa72009-07-13 16:22:22 -0400958 if (pos + len > inode->i_size && ext4_can_truncate(inode))
Aneesh Kumar K.V1938a152009-06-05 01:00:26 -0400959 ext4_orphan_add(handle, inode);
960
961 ext4_journal_stop(handle);
962 if (pos + len > inode->i_size) {
Jan Karab9a42072009-12-08 21:24:33 -0500963 ext4_truncate_failed_write(inode);
Theodore Ts'ode9a55b2009-06-14 17:45:34 -0400964 /*
Jan Karaffacfa72009-07-13 16:22:22 -0400965 * If truncate failed early the inode might
Aneesh Kumar K.V1938a152009-06-05 01:00:26 -0400966 * still be on the orphan list; we need to
967 * make sure the inode is removed from the
968 * orphan list in that case.
969 */
970 if (inode->i_nlink)
971 ext4_orphan_del(NULL, inode);
972 }
Nick Pigginbfc1af62007-10-16 01:25:05 -0700973
Theodore Ts'o47564bf2013-02-09 09:24:14 -0500974 if (ret == -ENOSPC &&
975 ext4_should_retry_alloc(inode->i_sb, &retries))
976 goto retry_journal;
977 page_cache_release(page);
978 return ret;
979 }
980 *pagep = page;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700981 return ret;
982}
983
Nick Pigginbfc1af62007-10-16 01:25:05 -0700984/* For write_end() in data=journal mode */
985static int write_end_fn(handle_t *handle, struct buffer_head *bh)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700986{
Theodore Ts'o13fca322013-04-21 16:45:54 -0400987 int ret;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700988 if (!buffer_mapped(bh) || buffer_freed(bh))
989 return 0;
990 set_buffer_uptodate(bh);
Theodore Ts'o13fca322013-04-21 16:45:54 -0400991 ret = ext4_handle_dirty_metadata(handle, NULL, bh);
992 clear_buffer_meta(bh);
993 clear_buffer_prio(bh);
994 return ret;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700995}
996
Zheng Liueed43332013-04-03 12:41:17 -0400997/*
998 * We need to pick up the new inode size which generic_commit_write gave us
999 * `file' can be NULL - eg, when called from page_symlink().
1000 *
1001 * ext4 never places buffers on inode->i_mapping->private_list. metadata
1002 * buffers are managed internally.
1003 */
1004static int ext4_write_end(struct file *file,
1005 struct address_space *mapping,
1006 loff_t pos, unsigned len, unsigned copied,
1007 struct page *page, void *fsdata)
Aneesh Kumar K.Vf8514082009-06-05 00:56:49 -04001008{
Aneesh Kumar K.Vf8514082009-06-05 00:56:49 -04001009 handle_t *handle = ext4_journal_current_handle();
Zheng Liueed43332013-04-03 12:41:17 -04001010 struct inode *inode = mapping->host;
1011 int ret = 0, ret2;
1012 int i_size_changed = 0;
1013
1014 trace_ext4_write_end(inode, pos, len, copied);
1015 if (ext4_test_inode_state(inode, EXT4_STATE_ORDERED_MODE)) {
1016 ret = ext4_jbd2_file_inode(handle, inode);
1017 if (ret) {
1018 unlock_page(page);
1019 page_cache_release(page);
1020 goto errout;
1021 }
1022 }
Aneesh Kumar K.Vf8514082009-06-05 00:56:49 -04001023
Theodore Ts'o42c832d2013-07-01 08:12:39 -04001024 if (ext4_has_inline_data(inode)) {
1025 ret = ext4_write_inline_data_end(inode, pos, len,
1026 copied, page);
1027 if (ret < 0)
1028 goto errout;
1029 copied = ret;
1030 } else
Tao Maf19d5872012-12-10 14:05:51 -05001031 copied = block_write_end(file, mapping, pos,
1032 len, copied, page, fsdata);
Aneesh Kumar K.Vf8514082009-06-05 00:56:49 -04001033 /*
Dmitry Monakhov4631dbf2014-08-23 17:48:28 -04001034 * it's important to update i_size while still holding page lock:
Aneesh Kumar K.Vf8514082009-06-05 00:56:49 -04001035 * page writeout could otherwise come in and zero beyond i_size.
1036 */
Dmitry Monakhov4631dbf2014-08-23 17:48:28 -04001037 i_size_changed = ext4_update_inode_size(inode, pos + copied);
Aneesh Kumar K.Vf8514082009-06-05 00:56:49 -04001038 unlock_page(page);
1039 page_cache_release(page);
1040
1041 /*
1042 * Don't mark the inode dirty under page lock. First, it unnecessarily
1043 * makes the holding time of page lock longer. Second, it forces lock
1044 * ordering of page lock and transaction start for journaling
1045 * filesystems.
1046 */
1047 if (i_size_changed)
1048 ext4_mark_inode_dirty(handle, inode);
1049
Jan Karaffacfa72009-07-13 16:22:22 -04001050 if (pos + len > inode->i_size && ext4_can_truncate(inode))
Aneesh Kumar K.Vf8514082009-06-05 00:56:49 -04001051 /* if we have allocated more blocks and copied
1052 * less. We will have blocks allocated outside
1053 * inode->i_size. So truncate them
1054 */
1055 ext4_orphan_add(handle, inode);
Theodore Ts'o74d553a2013-04-03 12:39:17 -04001056errout:
Mingming Cao617ba132006-10-11 01:20:53 -07001057 ret2 = ext4_journal_stop(handle);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001058 if (!ret)
1059 ret = ret2;
Nick Pigginbfc1af62007-10-16 01:25:05 -07001060
Aneesh Kumar K.Vf8514082009-06-05 00:56:49 -04001061 if (pos + len > inode->i_size) {
Jan Karab9a42072009-12-08 21:24:33 -05001062 ext4_truncate_failed_write(inode);
Theodore Ts'ode9a55b2009-06-14 17:45:34 -04001063 /*
Jan Karaffacfa72009-07-13 16:22:22 -04001064 * If truncate failed early the inode might still be
Aneesh Kumar K.Vf8514082009-06-05 00:56:49 -04001065 * on the orphan list; we need to make sure the inode
1066 * is removed from the orphan list in that case.
1067 */
1068 if (inode->i_nlink)
1069 ext4_orphan_del(NULL, inode);
1070 }
1071
Nick Pigginbfc1af62007-10-16 01:25:05 -07001072 return ret ? ret : copied;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001073}
1074
Nick Pigginbfc1af62007-10-16 01:25:05 -07001075static int ext4_journalled_write_end(struct file *file,
Theodore Ts'ode9a55b2009-06-14 17:45:34 -04001076 struct address_space *mapping,
1077 loff_t pos, unsigned len, unsigned copied,
1078 struct page *page, void *fsdata)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001079{
Mingming Cao617ba132006-10-11 01:20:53 -07001080 handle_t *handle = ext4_journal_current_handle();
Nick Pigginbfc1af62007-10-16 01:25:05 -07001081 struct inode *inode = mapping->host;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001082 int ret = 0, ret2;
1083 int partial = 0;
Nick Pigginbfc1af62007-10-16 01:25:05 -07001084 unsigned from, to;
Dmitry Monakhov4631dbf2014-08-23 17:48:28 -04001085 int size_changed = 0;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001086
Theodore Ts'o9bffad12009-06-17 11:48:11 -04001087 trace_ext4_journalled_write_end(inode, pos, len, copied);
Nick Pigginbfc1af62007-10-16 01:25:05 -07001088 from = pos & (PAGE_CACHE_SIZE - 1);
1089 to = from + len;
1090
Curt Wohlgemuth441c8502011-08-13 11:25:18 -04001091 BUG_ON(!ext4_handle_valid(handle));
1092
Tao Ma3fdcfb62012-12-10 14:05:57 -05001093 if (ext4_has_inline_data(inode))
1094 copied = ext4_write_inline_data_end(inode, pos, len,
1095 copied, page);
1096 else {
1097 if (copied < len) {
1098 if (!PageUptodate(page))
1099 copied = 0;
1100 page_zero_new_buffers(page, from+copied, to);
1101 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001102
Tao Ma3fdcfb62012-12-10 14:05:57 -05001103 ret = ext4_walk_page_buffers(handle, page_buffers(page), from,
1104 to, &partial, write_end_fn);
1105 if (!partial)
1106 SetPageUptodate(page);
1107 }
Dmitry Monakhov4631dbf2014-08-23 17:48:28 -04001108 size_changed = ext4_update_inode_size(inode, pos + copied);
Theodore Ts'o19f5fb72010-01-24 14:34:07 -05001109 ext4_set_inode_state(inode, EXT4_STATE_JDATA);
Jan Kara2d859db2011-07-26 09:07:11 -04001110 EXT4_I(inode)->i_datasync_tid = handle->h_transaction->t_tid;
Dmitry Monakhov4631dbf2014-08-23 17:48:28 -04001111 unlock_page(page);
1112 page_cache_release(page);
1113
1114 if (size_changed) {
Mingming Cao617ba132006-10-11 01:20:53 -07001115 ret2 = ext4_mark_inode_dirty(handle, inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001116 if (!ret)
1117 ret = ret2;
1118 }
Nick Pigginbfc1af62007-10-16 01:25:05 -07001119
Jan Karaffacfa72009-07-13 16:22:22 -04001120 if (pos + len > inode->i_size && ext4_can_truncate(inode))
Aneesh Kumar K.Vf8514082009-06-05 00:56:49 -04001121 /* if we have allocated more blocks and copied
1122 * less. We will have blocks allocated outside
1123 * inode->i_size. So truncate them
1124 */
1125 ext4_orphan_add(handle, inode);
1126
Mingming Cao617ba132006-10-11 01:20:53 -07001127 ret2 = ext4_journal_stop(handle);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001128 if (!ret)
1129 ret = ret2;
Aneesh Kumar K.Vf8514082009-06-05 00:56:49 -04001130 if (pos + len > inode->i_size) {
Jan Karab9a42072009-12-08 21:24:33 -05001131 ext4_truncate_failed_write(inode);
Theodore Ts'ode9a55b2009-06-14 17:45:34 -04001132 /*
Jan Karaffacfa72009-07-13 16:22:22 -04001133 * If truncate failed early the inode might still be
Aneesh Kumar K.Vf8514082009-06-05 00:56:49 -04001134 * on the orphan list; we need to make sure the inode
1135 * is removed from the orphan list in that case.
1136 */
1137 if (inode->i_nlink)
1138 ext4_orphan_del(NULL, inode);
1139 }
Nick Pigginbfc1af62007-10-16 01:25:05 -07001140
1141 return ret ? ret : copied;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001142}
Mingming Caod2a17632008-07-14 17:52:37 -04001143
Theodore Ts'o9d0be502010-01-01 02:41:30 -05001144/*
Aditya Kali7b415bf2011-09-09 19:04:51 -04001145 * Reserve a single cluster located at lblock
Theodore Ts'o9d0be502010-01-01 02:41:30 -05001146 */
Theodore Ts'o01f49d02011-01-10 12:13:03 -05001147static int ext4_da_reserve_space(struct inode *inode, ext4_lblk_t lblock)
Mingming Caod2a17632008-07-14 17:52:37 -04001148{
Mingming Cao60e58e02009-01-22 18:13:05 +01001149 struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb);
Theodore Ts'o0637c6f2009-12-30 14:20:45 -05001150 struct ext4_inode_info *ei = EXT4_I(inode);
Aditya Kali7b415bf2011-09-09 19:04:51 -04001151 unsigned int md_needed;
Christoph Hellwig5dd40562010-03-03 09:05:00 -05001152 int ret;
Mingming Caod2a17632008-07-14 17:52:37 -04001153
Mingming Cao60e58e02009-01-22 18:13:05 +01001154 /*
Eric Sandeen72b8ab92010-05-16 11:00:00 -04001155 * We will charge metadata quota at writeout time; this saves
1156 * us from metadata over-estimation, though we may go over by
1157 * a small amount in the end. Here we just reserve for data.
Mingming Cao60e58e02009-01-22 18:13:05 +01001158 */
Aditya Kali7b415bf2011-09-09 19:04:51 -04001159 ret = dquot_reserve_block(inode, EXT4_C2B(sbi, 1));
Christoph Hellwig5dd40562010-03-03 09:05:00 -05001160 if (ret)
1161 return ret;
Theodore Ts'o03179fe2012-07-23 00:00:20 -04001162
1163 /*
1164 * recalculate the amount of metadata blocks to reserve
1165 * in order to allocate nrblocks
1166 * worse case is one extent per block
1167 */
Theodore Ts'o03179fe2012-07-23 00:00:20 -04001168 spin_lock(&ei->i_block_reservation_lock);
1169 /*
1170 * ext4_calc_metadata_amount() has side effects, which we have
1171 * to be prepared undo if we fail to claim space.
1172 */
Theodore Ts'o71d4f7d2014-07-15 06:02:38 -04001173 md_needed = 0;
1174 trace_ext4_da_reserve_space(inode, 0);
Theodore Ts'o03179fe2012-07-23 00:00:20 -04001175
Theodore Ts'o71d4f7d2014-07-15 06:02:38 -04001176 if (ext4_claim_free_clusters(sbi, 1, 0)) {
Theodore Ts'o03179fe2012-07-23 00:00:20 -04001177 spin_unlock(&ei->i_block_reservation_lock);
Theodore Ts'o03179fe2012-07-23 00:00:20 -04001178 dquot_release_reservation_block(inode, EXT4_C2B(sbi, 1));
Mingming Caod2a17632008-07-14 17:52:37 -04001179 return -ENOSPC;
1180 }
Theodore Ts'o9d0be502010-01-01 02:41:30 -05001181 ei->i_reserved_data_blocks++;
Theodore Ts'o0637c6f2009-12-30 14:20:45 -05001182 spin_unlock(&ei->i_block_reservation_lock);
Dmitry Monakhov39bc6802009-12-10 16:36:27 +00001183
Mingming Caod2a17632008-07-14 17:52:37 -04001184 return 0; /* success */
1185}
1186
Aneesh Kumar K.V12219ae2008-07-17 16:12:08 -04001187static void ext4_da_release_space(struct inode *inode, int to_free)
Mingming Caod2a17632008-07-14 17:52:37 -04001188{
1189 struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb);
Theodore Ts'o0637c6f2009-12-30 14:20:45 -05001190 struct ext4_inode_info *ei = EXT4_I(inode);
Mingming Caod2a17632008-07-14 17:52:37 -04001191
Mingming Caocd213222008-08-19 22:16:59 -04001192 if (!to_free)
1193 return; /* Nothing to release, exit */
1194
Mingming Caod2a17632008-07-14 17:52:37 -04001195 spin_lock(&EXT4_I(inode)->i_block_reservation_lock);
Mingming Caocd213222008-08-19 22:16:59 -04001196
Li Zefan5a58ec82010-05-17 02:00:00 -04001197 trace_ext4_da_release_space(inode, to_free);
Theodore Ts'o0637c6f2009-12-30 14:20:45 -05001198 if (unlikely(to_free > ei->i_reserved_data_blocks)) {
Mingming Caocd213222008-08-19 22:16:59 -04001199 /*
Theodore Ts'o0637c6f2009-12-30 14:20:45 -05001200 * if there aren't enough reserved blocks, then the
1201 * counter is messed up somewhere. Since this
1202 * function is called from invalidate page, it's
1203 * harmless to return without any action.
Mingming Caocd213222008-08-19 22:16:59 -04001204 */
Theodore Ts'o8de5c322013-02-14 15:11:41 -05001205 ext4_warning(inode->i_sb, "ext4_da_release_space: "
Theodore Ts'o0637c6f2009-12-30 14:20:45 -05001206 "ino %lu, to_free %d with only %d reserved "
Theodore Ts'o1084f252012-03-19 23:13:43 -04001207 "data blocks", inode->i_ino, to_free,
Theodore Ts'o0637c6f2009-12-30 14:20:45 -05001208 ei->i_reserved_data_blocks);
1209 WARN_ON(1);
1210 to_free = ei->i_reserved_data_blocks;
1211 }
1212 ei->i_reserved_data_blocks -= to_free;
1213
Eric Sandeen72b8ab92010-05-16 11:00:00 -04001214 /* update fs dirty data blocks counter */
Theodore Ts'o57042652011-09-09 18:56:51 -04001215 percpu_counter_sub(&sbi->s_dirtyclusters_counter, to_free);
Mingming Caod2a17632008-07-14 17:52:37 -04001216
Mingming Caod2a17632008-07-14 17:52:37 -04001217 spin_unlock(&EXT4_I(inode)->i_block_reservation_lock);
Mingming Cao60e58e02009-01-22 18:13:05 +01001218
Aditya Kali7b415bf2011-09-09 19:04:51 -04001219 dquot_release_reservation_block(inode, EXT4_C2B(sbi, to_free));
Mingming Caod2a17632008-07-14 17:52:37 -04001220}
1221
1222static void ext4_da_page_release_reservation(struct page *page,
Lukas Czernerca99fdd2013-05-21 23:25:01 -04001223 unsigned int offset,
1224 unsigned int length)
Mingming Caod2a17632008-07-14 17:52:37 -04001225{
1226 int to_release = 0;
1227 struct buffer_head *head, *bh;
1228 unsigned int curr_off = 0;
Aditya Kali7b415bf2011-09-09 19:04:51 -04001229 struct inode *inode = page->mapping->host;
1230 struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb);
Lukas Czernerca99fdd2013-05-21 23:25:01 -04001231 unsigned int stop = offset + length;
Aditya Kali7b415bf2011-09-09 19:04:51 -04001232 int num_clusters;
Zheng Liu51865fd2012-11-08 21:57:32 -05001233 ext4_fsblk_t lblk;
Mingming Caod2a17632008-07-14 17:52:37 -04001234
Lukas Czernerca99fdd2013-05-21 23:25:01 -04001235 BUG_ON(stop > PAGE_CACHE_SIZE || stop < length);
1236
Mingming Caod2a17632008-07-14 17:52:37 -04001237 head = page_buffers(page);
1238 bh = head;
1239 do {
1240 unsigned int next_off = curr_off + bh->b_size;
1241
Lukas Czernerca99fdd2013-05-21 23:25:01 -04001242 if (next_off > stop)
1243 break;
1244
Mingming Caod2a17632008-07-14 17:52:37 -04001245 if ((offset <= curr_off) && (buffer_delay(bh))) {
1246 to_release++;
1247 clear_buffer_delay(bh);
1248 }
1249 curr_off = next_off;
1250 } while ((bh = bh->b_this_page) != head);
Aditya Kali7b415bf2011-09-09 19:04:51 -04001251
Zheng Liu51865fd2012-11-08 21:57:32 -05001252 if (to_release) {
1253 lblk = page->index << (PAGE_CACHE_SHIFT - inode->i_blkbits);
1254 ext4_es_remove_extent(inode, lblk, to_release);
1255 }
1256
Aditya Kali7b415bf2011-09-09 19:04:51 -04001257 /* If we have released all the blocks belonging to a cluster, then we
1258 * need to release the reserved space for that cluster. */
1259 num_clusters = EXT4_NUM_B2C(sbi, to_release);
1260 while (num_clusters > 0) {
Aditya Kali7b415bf2011-09-09 19:04:51 -04001261 lblk = (page->index << (PAGE_CACHE_SHIFT - inode->i_blkbits)) +
1262 ((num_clusters - 1) << sbi->s_cluster_bits);
1263 if (sbi->s_cluster_ratio == 1 ||
Zheng Liu7d1b1fb2012-11-08 21:57:35 -05001264 !ext4_find_delalloc_cluster(inode, lblk))
Aditya Kali7b415bf2011-09-09 19:04:51 -04001265 ext4_da_release_space(inode, 1);
1266
1267 num_clusters--;
1268 }
Mingming Caod2a17632008-07-14 17:52:37 -04001269}
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001270
1271/*
Alex Tomas64769242008-07-11 19:27:31 -04001272 * Delayed allocation stuff
1273 */
1274
Jan Kara4e7ea812013-06-04 13:17:40 -04001275struct mpage_da_data {
1276 struct inode *inode;
1277 struct writeback_control *wbc;
Jan Kara6b523df2013-06-04 13:21:11 -04001278
Jan Kara4e7ea812013-06-04 13:17:40 -04001279 pgoff_t first_page; /* The first page to write */
1280 pgoff_t next_page; /* Current page to examine */
1281 pgoff_t last_page; /* Last page to examine */
Aneesh Kumar K.V791b7f02009-01-05 21:50:43 -05001282 /*
Jan Kara4e7ea812013-06-04 13:17:40 -04001283 * Extent to map - this can be after first_page because that can be
1284 * fully mapped. We somewhat abuse m_flags to store whether the extent
1285 * is delalloc or unwritten.
Aneesh Kumar K.V791b7f02009-01-05 21:50:43 -05001286 */
Jan Kara4e7ea812013-06-04 13:17:40 -04001287 struct ext4_map_blocks map;
1288 struct ext4_io_submit io_submit; /* IO submission data */
1289};
Alex Tomas64769242008-07-11 19:27:31 -04001290
Jan Kara4e7ea812013-06-04 13:17:40 -04001291static void mpage_release_unused_pages(struct mpage_da_data *mpd,
1292 bool invalidate)
Aneesh Kumar K.Vc4a0c462008-08-19 21:08:18 -04001293{
1294 int nr_pages, i;
1295 pgoff_t index, end;
1296 struct pagevec pvec;
1297 struct inode *inode = mpd->inode;
1298 struct address_space *mapping = inode->i_mapping;
Jan Kara4e7ea812013-06-04 13:17:40 -04001299
1300 /* This is necessary when next_page == 0. */
1301 if (mpd->first_page >= mpd->next_page)
1302 return;
Aneesh Kumar K.Vc4a0c462008-08-19 21:08:18 -04001303
Curt Wohlgemuthc7f59382011-02-26 12:27:52 -05001304 index = mpd->first_page;
1305 end = mpd->next_page - 1;
Jan Kara4e7ea812013-06-04 13:17:40 -04001306 if (invalidate) {
1307 ext4_lblk_t start, last;
1308 start = index << (PAGE_CACHE_SHIFT - inode->i_blkbits);
1309 last = end << (PAGE_CACHE_SHIFT - inode->i_blkbits);
1310 ext4_es_remove_extent(inode, start, last - start + 1);
1311 }
Zheng Liu51865fd2012-11-08 21:57:32 -05001312
Eric Sandeen66bea922012-11-14 22:22:05 -05001313 pagevec_init(&pvec, 0);
Aneesh Kumar K.Vc4a0c462008-08-19 21:08:18 -04001314 while (index <= end) {
1315 nr_pages = pagevec_lookup(&pvec, mapping, index, PAGEVEC_SIZE);
1316 if (nr_pages == 0)
1317 break;
1318 for (i = 0; i < nr_pages; i++) {
1319 struct page *page = pvec.pages[i];
Jan Kara9b1d09982010-03-03 16:19:32 -05001320 if (page->index > end)
Aneesh Kumar K.Vc4a0c462008-08-19 21:08:18 -04001321 break;
Aneesh Kumar K.Vc4a0c462008-08-19 21:08:18 -04001322 BUG_ON(!PageLocked(page));
1323 BUG_ON(PageWriteback(page));
Jan Kara4e7ea812013-06-04 13:17:40 -04001324 if (invalidate) {
1325 block_invalidatepage(page, 0, PAGE_CACHE_SIZE);
1326 ClearPageUptodate(page);
1327 }
Aneesh Kumar K.Vc4a0c462008-08-19 21:08:18 -04001328 unlock_page(page);
1329 }
Jan Kara9b1d09982010-03-03 16:19:32 -05001330 index = pvec.pages[nr_pages - 1]->index + 1;
1331 pagevec_release(&pvec);
Aneesh Kumar K.Vc4a0c462008-08-19 21:08:18 -04001332 }
Aneesh Kumar K.Vc4a0c462008-08-19 21:08:18 -04001333}
1334
Aneesh Kumar K.Vdf222912008-09-08 23:05:34 -04001335static void ext4_print_free_blocks(struct inode *inode)
1336{
1337 struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb);
Theodore Ts'o92b97812012-03-19 23:41:49 -04001338 struct super_block *sb = inode->i_sb;
Lukas Czernerf78ee70d2013-04-03 23:33:30 -04001339 struct ext4_inode_info *ei = EXT4_I(inode);
Theodore Ts'o92b97812012-03-19 23:41:49 -04001340
1341 ext4_msg(sb, KERN_CRIT, "Total free blocks count %lld",
Theodore Ts'o5dee5432011-09-09 19:10:51 -04001342 EXT4_C2B(EXT4_SB(inode->i_sb),
Lukas Czernerf78ee70d2013-04-03 23:33:30 -04001343 ext4_count_free_clusters(sb)));
Theodore Ts'o92b97812012-03-19 23:41:49 -04001344 ext4_msg(sb, KERN_CRIT, "Free/Dirty block details");
1345 ext4_msg(sb, KERN_CRIT, "free_blocks=%lld",
Lukas Czernerf78ee70d2013-04-03 23:33:30 -04001346 (long long) EXT4_C2B(EXT4_SB(sb),
Theodore Ts'o57042652011-09-09 18:56:51 -04001347 percpu_counter_sum(&sbi->s_freeclusters_counter)));
Theodore Ts'o92b97812012-03-19 23:41:49 -04001348 ext4_msg(sb, KERN_CRIT, "dirty_blocks=%lld",
Lukas Czernerf78ee70d2013-04-03 23:33:30 -04001349 (long long) EXT4_C2B(EXT4_SB(sb),
Aditya Kali7b415bf2011-09-09 19:04:51 -04001350 percpu_counter_sum(&sbi->s_dirtyclusters_counter)));
Theodore Ts'o92b97812012-03-19 23:41:49 -04001351 ext4_msg(sb, KERN_CRIT, "Block reservation details");
1352 ext4_msg(sb, KERN_CRIT, "i_reserved_data_blocks=%u",
Lukas Czernerf78ee70d2013-04-03 23:33:30 -04001353 ei->i_reserved_data_blocks);
Aneesh Kumar K.Vdf222912008-09-08 23:05:34 -04001354 return;
1355}
1356
Aneesh Kumar K.Vc364b222009-06-14 17:57:10 -04001357static int ext4_bh_delay_or_unwritten(handle_t *handle, struct buffer_head *bh)
Aneesh Kumar K.V29fa89d2009-05-12 16:30:27 -04001358{
Aneesh Kumar K.Vc364b222009-06-14 17:57:10 -04001359 return (buffer_delay(bh) || buffer_unwritten(bh)) && buffer_dirty(bh);
Aneesh Kumar K.V29fa89d2009-05-12 16:30:27 -04001360}
1361
Alex Tomas64769242008-07-11 19:27:31 -04001362/*
Aditya Kali5356f262011-09-09 19:20:51 -04001363 * This function is grabs code from the very beginning of
1364 * ext4_map_blocks, but assumes that the caller is from delayed write
1365 * time. This function looks up the requested blocks and sets the
1366 * buffer delay bit under the protection of i_data_sem.
1367 */
1368static int ext4_da_map_blocks(struct inode *inode, sector_t iblock,
1369 struct ext4_map_blocks *map,
1370 struct buffer_head *bh)
1371{
Zheng Liud100eef2013-02-18 00:29:59 -05001372 struct extent_status es;
Aditya Kali5356f262011-09-09 19:20:51 -04001373 int retval;
1374 sector_t invalid_block = ~((sector_t) 0xffff);
Dmitry Monakhov921f2662013-03-10 21:01:03 -04001375#ifdef ES_AGGRESSIVE_TEST
1376 struct ext4_map_blocks orig_map;
1377
1378 memcpy(&orig_map, map, sizeof(*map));
1379#endif
Aditya Kali5356f262011-09-09 19:20:51 -04001380
1381 if (invalid_block < ext4_blocks_count(EXT4_SB(inode->i_sb)->s_es))
1382 invalid_block = ~0;
1383
1384 map->m_flags = 0;
1385 ext_debug("ext4_da_map_blocks(): inode %lu, max_blocks %u,"
1386 "logical block %lu\n", inode->i_ino, map->m_len,
1387 (unsigned long) map->m_lblk);
Zheng Liud100eef2013-02-18 00:29:59 -05001388
1389 /* Lookup extent status tree firstly */
1390 if (ext4_es_lookup_extent(inode, iblock, &es)) {
Theodore Ts'o63b99962013-07-16 10:28:47 -04001391 ext4_es_lru_add(inode);
Zheng Liud100eef2013-02-18 00:29:59 -05001392 if (ext4_es_is_hole(&es)) {
1393 retval = 0;
Lukas Czernerc8b459f2014-05-12 12:55:07 -04001394 down_read(&EXT4_I(inode)->i_data_sem);
Zheng Liud100eef2013-02-18 00:29:59 -05001395 goto add_delayed;
1396 }
1397
1398 /*
1399 * Delayed extent could be allocated by fallocate.
1400 * So we need to check it.
1401 */
1402 if (ext4_es_is_delayed(&es) && !ext4_es_is_unwritten(&es)) {
1403 map_bh(bh, inode->i_sb, invalid_block);
1404 set_buffer_new(bh);
1405 set_buffer_delay(bh);
1406 return 0;
1407 }
1408
1409 map->m_pblk = ext4_es_pblock(&es) + iblock - es.es_lblk;
1410 retval = es.es_len - (iblock - es.es_lblk);
1411 if (retval > map->m_len)
1412 retval = map->m_len;
1413 map->m_len = retval;
1414 if (ext4_es_is_written(&es))
1415 map->m_flags |= EXT4_MAP_MAPPED;
1416 else if (ext4_es_is_unwritten(&es))
1417 map->m_flags |= EXT4_MAP_UNWRITTEN;
1418 else
1419 BUG_ON(1);
1420
Dmitry Monakhov921f2662013-03-10 21:01:03 -04001421#ifdef ES_AGGRESSIVE_TEST
1422 ext4_map_blocks_es_recheck(NULL, inode, map, &orig_map, 0);
1423#endif
Zheng Liud100eef2013-02-18 00:29:59 -05001424 return retval;
1425 }
1426
Aditya Kali5356f262011-09-09 19:20:51 -04001427 /*
1428 * Try to see if we can get the block without requesting a new
1429 * file system block.
1430 */
Lukas Czernerc8b459f2014-05-12 12:55:07 -04001431 down_read(&EXT4_I(inode)->i_data_sem);
Jan Karacbd75842014-11-25 11:41:49 -05001432 if (ext4_has_inline_data(inode))
Tao Ma9c3569b2012-12-10 14:05:57 -05001433 retval = 0;
Jan Karacbd75842014-11-25 11:41:49 -05001434 else if (ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS))
Zheng Liud100eef2013-02-18 00:29:59 -05001435 retval = ext4_ext_map_blocks(NULL, inode, map,
1436 EXT4_GET_BLOCKS_NO_PUT_HOLE);
Aditya Kali5356f262011-09-09 19:20:51 -04001437 else
Zheng Liud100eef2013-02-18 00:29:59 -05001438 retval = ext4_ind_map_blocks(NULL, inode, map,
1439 EXT4_GET_BLOCKS_NO_PUT_HOLE);
Aditya Kali5356f262011-09-09 19:20:51 -04001440
Zheng Liud100eef2013-02-18 00:29:59 -05001441add_delayed:
Aditya Kali5356f262011-09-09 19:20:51 -04001442 if (retval == 0) {
Zheng Liuf7fec032013-02-18 00:28:47 -05001443 int ret;
Aditya Kali5356f262011-09-09 19:20:51 -04001444 /*
1445 * XXX: __block_prepare_write() unmaps passed block,
1446 * is it OK?
1447 */
Lukas Czerner386ad672013-03-10 22:50:00 -04001448 /*
1449 * If the block was allocated from previously allocated cluster,
1450 * then we don't need to reserve it again. However we still need
1451 * to reserve metadata for every block we're going to write.
1452 */
Jan Karacbd75842014-11-25 11:41:49 -05001453 if (EXT4_SB(inode->i_sb)->s_cluster_ratio <= 1 ||
1454 !ext4_find_delalloc_cluster(inode, map->m_lblk)) {
Zheng Liuf7fec032013-02-18 00:28:47 -05001455 ret = ext4_da_reserve_space(inode, iblock);
1456 if (ret) {
Aditya Kali5356f262011-09-09 19:20:51 -04001457 /* not enough space to reserve */
Zheng Liuf7fec032013-02-18 00:28:47 -05001458 retval = ret;
Aditya Kali5356f262011-09-09 19:20:51 -04001459 goto out_unlock;
Zheng Liuf7fec032013-02-18 00:28:47 -05001460 }
Aditya Kali5356f262011-09-09 19:20:51 -04001461 }
1462
Zheng Liuf7fec032013-02-18 00:28:47 -05001463 ret = ext4_es_insert_extent(inode, map->m_lblk, map->m_len,
1464 ~0, EXTENT_STATUS_DELAYED);
1465 if (ret) {
1466 retval = ret;
Zheng Liu51865fd2012-11-08 21:57:32 -05001467 goto out_unlock;
Zheng Liuf7fec032013-02-18 00:28:47 -05001468 }
Zheng Liu51865fd2012-11-08 21:57:32 -05001469
Aditya Kali5356f262011-09-09 19:20:51 -04001470 map_bh(bh, inode->i_sb, invalid_block);
1471 set_buffer_new(bh);
1472 set_buffer_delay(bh);
Zheng Liuf7fec032013-02-18 00:28:47 -05001473 } else if (retval > 0) {
1474 int ret;
Theodore Ts'o3be78c72013-08-16 21:22:41 -04001475 unsigned int status;
Zheng Liuf7fec032013-02-18 00:28:47 -05001476
Zheng Liu44fb851d2013-07-29 12:51:42 -04001477 if (unlikely(retval != map->m_len)) {
1478 ext4_warning(inode->i_sb,
1479 "ES len assertion failed for inode "
1480 "%lu: retval %d != map->m_len %d",
1481 inode->i_ino, retval, map->m_len);
1482 WARN_ON(1);
Dmitry Monakhov921f2662013-03-10 21:01:03 -04001483 }
Dmitry Monakhov921f2662013-03-10 21:01:03 -04001484
Zheng Liuf7fec032013-02-18 00:28:47 -05001485 status = map->m_flags & EXT4_MAP_UNWRITTEN ?
1486 EXTENT_STATUS_UNWRITTEN : EXTENT_STATUS_WRITTEN;
1487 ret = ext4_es_insert_extent(inode, map->m_lblk, map->m_len,
1488 map->m_pblk, status);
1489 if (ret != 0)
1490 retval = ret;
Aditya Kali5356f262011-09-09 19:20:51 -04001491 }
1492
1493out_unlock:
1494 up_read((&EXT4_I(inode)->i_data_sem));
1495
1496 return retval;
1497}
1498
1499/*
Seunghun Leed91bd2c2014-09-01 22:15:30 -04001500 * This is a special get_block_t callback which is used by
Theodore Ts'ob920c752009-05-14 00:54:29 -04001501 * ext4_da_write_begin(). It will either return mapped block or
1502 * reserve space for a single block.
Aneesh Kumar K.V29fa89d2009-05-12 16:30:27 -04001503 *
1504 * For delayed buffer_head we have BH_Mapped, BH_New, BH_Delay set.
1505 * We also have b_blocknr = -1 and b_bdev initialized properly
1506 *
1507 * For unwritten buffer_head we have BH_Mapped, BH_New, BH_Unwritten set.
1508 * We also have b_blocknr = physicalblock mapping unwritten extent and b_bdev
1509 * initialized properly.
Alex Tomas64769242008-07-11 19:27:31 -04001510 */
Tao Ma9c3569b2012-12-10 14:05:57 -05001511int ext4_da_get_block_prep(struct inode *inode, sector_t iblock,
1512 struct buffer_head *bh, int create)
Alex Tomas64769242008-07-11 19:27:31 -04001513{
Theodore Ts'o2ed88682010-05-16 20:00:00 -04001514 struct ext4_map_blocks map;
Alex Tomas64769242008-07-11 19:27:31 -04001515 int ret = 0;
1516
1517 BUG_ON(create == 0);
Theodore Ts'o2ed88682010-05-16 20:00:00 -04001518 BUG_ON(bh->b_size != inode->i_sb->s_blocksize);
1519
1520 map.m_lblk = iblock;
1521 map.m_len = 1;
Alex Tomas64769242008-07-11 19:27:31 -04001522
1523 /*
1524 * first, we need to know whether the block is allocated already
1525 * preallocated blocks are unmapped but should treated
1526 * the same as allocated blocks.
1527 */
Aditya Kali5356f262011-09-09 19:20:51 -04001528 ret = ext4_da_map_blocks(inode, iblock, &map, bh);
1529 if (ret <= 0)
Theodore Ts'o2ed88682010-05-16 20:00:00 -04001530 return ret;
Alex Tomas64769242008-07-11 19:27:31 -04001531
Theodore Ts'o2ed88682010-05-16 20:00:00 -04001532 map_bh(bh, inode->i_sb, map.m_pblk);
1533 bh->b_state = (bh->b_state & ~EXT4_MAP_FLAGS) | map.m_flags;
1534
1535 if (buffer_unwritten(bh)) {
1536 /* A delayed write to unwritten bh should be marked
1537 * new and mapped. Mapped ensures that we don't do
1538 * get_block multiple times when we write to the same
1539 * offset and new ensures that we do proper zero out
1540 * for partial write.
1541 */
1542 set_buffer_new(bh);
Theodore Ts'oc8205632011-04-10 22:30:07 -04001543 set_buffer_mapped(bh);
Theodore Ts'o2ed88682010-05-16 20:00:00 -04001544 }
1545 return 0;
Alex Tomas64769242008-07-11 19:27:31 -04001546}
Mingming Cao61628a32008-07-11 19:27:31 -04001547
Aneesh Kumar K.V62e086b2009-06-14 17:59:34 -04001548static int bget_one(handle_t *handle, struct buffer_head *bh)
1549{
1550 get_bh(bh);
1551 return 0;
1552}
1553
1554static int bput_one(handle_t *handle, struct buffer_head *bh)
1555{
1556 put_bh(bh);
1557 return 0;
1558}
1559
1560static int __ext4_journalled_writepage(struct page *page,
Aneesh Kumar K.V62e086b2009-06-14 17:59:34 -04001561 unsigned int len)
1562{
1563 struct address_space *mapping = page->mapping;
1564 struct inode *inode = mapping->host;
Tao Ma3fdcfb62012-12-10 14:05:57 -05001565 struct buffer_head *page_bufs = NULL;
Aneesh Kumar K.V62e086b2009-06-14 17:59:34 -04001566 handle_t *handle = NULL;
Tao Ma3fdcfb62012-12-10 14:05:57 -05001567 int ret = 0, err = 0;
1568 int inline_data = ext4_has_inline_data(inode);
1569 struct buffer_head *inode_bh = NULL;
Aneesh Kumar K.V62e086b2009-06-14 17:59:34 -04001570
Theodore Ts'ocb20d512010-10-27 21:30:09 -04001571 ClearPageChecked(page);
Tao Ma3fdcfb62012-12-10 14:05:57 -05001572
1573 if (inline_data) {
1574 BUG_ON(page->index != 0);
1575 BUG_ON(len > ext4_get_max_inline_size(inode));
1576 inode_bh = ext4_journalled_write_inline_data(inode, len, page);
1577 if (inode_bh == NULL)
1578 goto out;
1579 } else {
1580 page_bufs = page_buffers(page);
1581 if (!page_bufs) {
1582 BUG();
1583 goto out;
1584 }
1585 ext4_walk_page_buffers(handle, page_bufs, 0, len,
1586 NULL, bget_one);
1587 }
Aneesh Kumar K.V62e086b2009-06-14 17:59:34 -04001588 /* As soon as we unlock the page, it can go away, but we have
1589 * references to buffers so we are safe */
1590 unlock_page(page);
1591
Theodore Ts'o9924a922013-02-08 21:59:22 -05001592 handle = ext4_journal_start(inode, EXT4_HT_WRITE_PAGE,
1593 ext4_writepage_trans_blocks(inode));
Aneesh Kumar K.V62e086b2009-06-14 17:59:34 -04001594 if (IS_ERR(handle)) {
1595 ret = PTR_ERR(handle);
1596 goto out;
1597 }
1598
Curt Wohlgemuth441c8502011-08-13 11:25:18 -04001599 BUG_ON(!ext4_handle_valid(handle));
1600
Tao Ma3fdcfb62012-12-10 14:05:57 -05001601 if (inline_data) {
liang xie5d601252014-05-12 22:06:43 -04001602 BUFFER_TRACE(inode_bh, "get write access");
Tao Ma3fdcfb62012-12-10 14:05:57 -05001603 ret = ext4_journal_get_write_access(handle, inode_bh);
Aneesh Kumar K.V62e086b2009-06-14 17:59:34 -04001604
Tao Ma3fdcfb62012-12-10 14:05:57 -05001605 err = ext4_handle_dirty_metadata(handle, inode, inode_bh);
1606
1607 } else {
1608 ret = ext4_walk_page_buffers(handle, page_bufs, 0, len, NULL,
1609 do_journal_get_write_access);
1610
1611 err = ext4_walk_page_buffers(handle, page_bufs, 0, len, NULL,
1612 write_end_fn);
1613 }
Aneesh Kumar K.V62e086b2009-06-14 17:59:34 -04001614 if (ret == 0)
1615 ret = err;
Jan Kara2d859db2011-07-26 09:07:11 -04001616 EXT4_I(inode)->i_datasync_tid = handle->h_transaction->t_tid;
Aneesh Kumar K.V62e086b2009-06-14 17:59:34 -04001617 err = ext4_journal_stop(handle);
1618 if (!ret)
1619 ret = err;
1620
Tao Ma3fdcfb62012-12-10 14:05:57 -05001621 if (!ext4_has_inline_data(inode))
Theodore Ts'o8c9367f2014-01-07 13:08:03 -05001622 ext4_walk_page_buffers(NULL, page_bufs, 0, len,
Tao Ma3fdcfb62012-12-10 14:05:57 -05001623 NULL, bput_one);
Theodore Ts'o19f5fb72010-01-24 14:34:07 -05001624 ext4_set_inode_state(inode, EXT4_STATE_JDATA);
Aneesh Kumar K.V62e086b2009-06-14 17:59:34 -04001625out:
Tao Ma3fdcfb62012-12-10 14:05:57 -05001626 brelse(inode_bh);
Aneesh Kumar K.V62e086b2009-06-14 17:59:34 -04001627 return ret;
1628}
1629
Mingming Cao61628a32008-07-11 19:27:31 -04001630/*
Aneesh Kumar K.V43ce1d22009-06-14 17:58:45 -04001631 * Note that we don't need to start a transaction unless we're journaling data
1632 * because we should have holes filled from ext4_page_mkwrite(). We even don't
1633 * need to file the inode to the transaction's list in ordered mode because if
1634 * we are writing back data added by write(), the inode is already there and if
Lucas De Marchi25985ed2011-03-30 22:57:33 -03001635 * we are writing back data modified via mmap(), no one guarantees in which
Aneesh Kumar K.V43ce1d22009-06-14 17:58:45 -04001636 * transaction the data will hit the disk. In case we are journaling data, we
1637 * cannot start transaction directly because transaction start ranks above page
1638 * lock so we have to do some magic.
1639 *
Theodore Ts'ob920c752009-05-14 00:54:29 -04001640 * This function can get called via...
Theodore Ts'o20970ba2013-06-06 14:00:46 -04001641 * - ext4_writepages after taking page lock (have journal handle)
Theodore Ts'ob920c752009-05-14 00:54:29 -04001642 * - journal_submit_inode_data_buffers (no journal handle)
Artem Bityutskiyf6463b02012-07-25 18:12:04 +03001643 * - shrink_page_list via the kswapd/direct reclaim (no journal handle)
Theodore Ts'ob920c752009-05-14 00:54:29 -04001644 * - grab_page_cache when doing write_begin (have journal handle)
Aneesh Kumar K.V43ce1d22009-06-14 17:58:45 -04001645 *
1646 * We don't do any block allocation in this function. If we have page with
1647 * multiple blocks we need to write those buffer_heads that are mapped. This
1648 * is important for mmaped based write. So if we do with blocksize 1K
1649 * truncate(f, 1024);
1650 * a = mmap(f, 0, 4096);
1651 * a[0] = 'a';
1652 * truncate(f, 4096);
1653 * we have in the page first buffer_head mapped via page_mkwrite call back
Paul Bolle90802ed2011-12-05 13:00:34 +01001654 * but other buffer_heads would be unmapped but dirty (dirty done via the
Aneesh Kumar K.V43ce1d22009-06-14 17:58:45 -04001655 * do_wp_page). So writepage should write the first block. If we modify
1656 * the mmap area beyond 1024 we will again get a page_fault and the
1657 * page_mkwrite callback will do the block allocation and mark the
1658 * buffer_heads mapped.
1659 *
1660 * We redirty the page if we have any buffer_heads that is either delay or
1661 * unwritten in the page.
1662 *
1663 * We can get recursively called as show below.
1664 *
1665 * ext4_writepage() -> kmalloc() -> __alloc_pages() -> page_launder() ->
1666 * ext4_writepage()
1667 *
1668 * But since we don't do any block allocation we should not deadlock.
1669 * Page also have the dirty flag cleared so we don't get recurive page_lock.
Mingming Cao61628a32008-07-11 19:27:31 -04001670 */
Aneesh Kumar K.V43ce1d22009-06-14 17:58:45 -04001671static int ext4_writepage(struct page *page,
Aneesh Kumar K.V62e086b2009-06-14 17:59:34 -04001672 struct writeback_control *wbc)
Alex Tomas64769242008-07-11 19:27:31 -04001673{
Jan Karaf8bec372013-01-28 12:55:08 -05001674 int ret = 0;
Mingming Cao61628a32008-07-11 19:27:31 -04001675 loff_t size;
Theodore Ts'o498e5f22008-11-05 00:14:04 -05001676 unsigned int len;
Jiaying Zhang744692d2010-03-04 16:14:02 -05001677 struct buffer_head *page_bufs = NULL;
Mingming Cao61628a32008-07-11 19:27:31 -04001678 struct inode *inode = page->mapping->host;
Jan Kara36ade452013-01-28 09:30:52 -05001679 struct ext4_io_submit io_submit;
Namjae Jeon1c8349a2014-05-12 08:12:25 -04001680 bool keep_towrite = false;
Alex Tomas64769242008-07-11 19:27:31 -04001681
Lukas Czernera9c667f2011-06-06 09:51:52 -04001682 trace_ext4_writepage(page);
Aneesh Kumar K.Vf0e6c982008-07-11 19:27:31 -04001683 size = i_size_read(inode);
1684 if (page->index == size >> PAGE_CACHE_SHIFT)
1685 len = size & ~PAGE_CACHE_MASK;
1686 else
1687 len = PAGE_CACHE_SIZE;
Alex Tomas64769242008-07-11 19:27:31 -04001688
Theodore Ts'oa42afc52010-10-27 21:30:09 -04001689 page_bufs = page_buffers(page);
Aneesh Kumar K.Vc364b222009-06-14 17:57:10 -04001690 /*
Jan Karafe386132013-01-28 21:06:42 -05001691 * We cannot do block allocation or other extent handling in this
1692 * function. If there are buffers needing that, we have to redirty
1693 * the page. But we may reach here when we do a journal commit via
1694 * journal_submit_inode_data_buffers() and in that case we must write
1695 * allocated buffers to achieve data=ordered mode guarantees.
Aneesh Kumar K.Vcd1aac32008-07-11 19:27:31 -04001696 */
Tao Maf19d5872012-12-10 14:05:51 -05001697 if (ext4_walk_page_buffers(NULL, page_bufs, 0, len, NULL,
1698 ext4_bh_delay_or_unwritten)) {
Jan Karaf8bec372013-01-28 12:55:08 -05001699 redirty_page_for_writepage(wbc, page);
Jan Karafe386132013-01-28 21:06:42 -05001700 if (current->flags & PF_MEMALLOC) {
1701 /*
1702 * For memory cleaning there's no point in writing only
1703 * some buffers. So just bail out. Warn if we came here
1704 * from direct reclaim.
1705 */
1706 WARN_ON_ONCE((current->flags & (PF_MEMALLOC|PF_KSWAPD))
1707 == PF_MEMALLOC);
Aneesh Kumar K.Vf0e6c982008-07-11 19:27:31 -04001708 unlock_page(page);
1709 return 0;
1710 }
Namjae Jeon1c8349a2014-05-12 08:12:25 -04001711 keep_towrite = true;
Theodore Ts'oa42afc52010-10-27 21:30:09 -04001712 }
Alex Tomas64769242008-07-11 19:27:31 -04001713
Theodore Ts'ocb20d512010-10-27 21:30:09 -04001714 if (PageChecked(page) && ext4_should_journal_data(inode))
Aneesh Kumar K.V43ce1d22009-06-14 17:58:45 -04001715 /*
1716 * It's mmapped pagecache. Add buffers and journal it. There
1717 * doesn't seem much point in redirtying the page here.
1718 */
Wu Fengguang3f0ca302009-11-24 11:15:44 -05001719 return __ext4_journalled_writepage(page, len);
Aneesh Kumar K.V43ce1d22009-06-14 17:58:45 -04001720
Jan Kara97a851e2013-06-04 11:58:58 -04001721 ext4_io_submit_init(&io_submit, wbc);
1722 io_submit.io_end = ext4_init_io_end(inode, GFP_NOFS);
1723 if (!io_submit.io_end) {
1724 redirty_page_for_writepage(wbc, page);
1725 unlock_page(page);
1726 return -ENOMEM;
1727 }
Namjae Jeon1c8349a2014-05-12 08:12:25 -04001728 ret = ext4_bio_write_page(&io_submit, page, len, wbc, keep_towrite);
Jan Kara36ade452013-01-28 09:30:52 -05001729 ext4_io_submit(&io_submit);
Jan Kara97a851e2013-06-04 11:58:58 -04001730 /* Drop io_end reference we got from init */
1731 ext4_put_io_end_defer(io_submit.io_end);
Alex Tomas64769242008-07-11 19:27:31 -04001732 return ret;
1733}
1734
Jan Kara5f1132b2013-08-17 10:02:33 -04001735static int mpage_submit_page(struct mpage_da_data *mpd, struct page *page)
1736{
1737 int len;
1738 loff_t size = i_size_read(mpd->inode);
1739 int err;
1740
1741 BUG_ON(page->index != mpd->first_page);
1742 if (page->index == size >> PAGE_CACHE_SHIFT)
1743 len = size & ~PAGE_CACHE_MASK;
1744 else
1745 len = PAGE_CACHE_SIZE;
1746 clear_page_dirty_for_io(page);
Namjae Jeon1c8349a2014-05-12 08:12:25 -04001747 err = ext4_bio_write_page(&mpd->io_submit, page, len, mpd->wbc, false);
Jan Kara5f1132b2013-08-17 10:02:33 -04001748 if (!err)
1749 mpd->wbc->nr_to_write--;
1750 mpd->first_page++;
1751
1752 return err;
1753}
1754
Jan Kara4e7ea812013-06-04 13:17:40 -04001755#define BH_FLAGS ((1 << BH_Unwritten) | (1 << BH_Delay))
1756
Mingming Cao61628a32008-07-11 19:27:31 -04001757/*
Jan Karafffb2732013-06-04 13:01:11 -04001758 * mballoc gives us at most this number of blocks...
1759 * XXX: That seems to be only a limitation of ext4_mb_normalize_request().
Anatol Pomozov70261f52013-08-28 14:40:12 -04001760 * The rest of mballoc seems to handle chunks up to full group size.
Mingming Cao61628a32008-07-11 19:27:31 -04001761 */
Jan Karafffb2732013-06-04 13:01:11 -04001762#define MAX_WRITEPAGES_EXTENT_LEN 2048
Mingming Cao525f4ed2008-08-19 22:15:58 -04001763
Jan Karafffb2732013-06-04 13:01:11 -04001764/*
Jan Kara4e7ea812013-06-04 13:17:40 -04001765 * mpage_add_bh_to_extent - try to add bh to extent of blocks to map
1766 *
1767 * @mpd - extent of blocks
1768 * @lblk - logical number of the block in the file
Jan Kara09930042013-08-17 09:57:56 -04001769 * @bh - buffer head we want to add to the extent
Jan Kara4e7ea812013-06-04 13:17:40 -04001770 *
Jan Kara09930042013-08-17 09:57:56 -04001771 * The function is used to collect contig. blocks in the same state. If the
1772 * buffer doesn't require mapping for writeback and we haven't started the
1773 * extent of buffers to map yet, the function returns 'true' immediately - the
1774 * caller can write the buffer right away. Otherwise the function returns true
1775 * if the block has been added to the extent, false if the block couldn't be
1776 * added.
Jan Kara4e7ea812013-06-04 13:17:40 -04001777 */
Jan Kara09930042013-08-17 09:57:56 -04001778static bool mpage_add_bh_to_extent(struct mpage_da_data *mpd, ext4_lblk_t lblk,
1779 struct buffer_head *bh)
Jan Kara4e7ea812013-06-04 13:17:40 -04001780{
1781 struct ext4_map_blocks *map = &mpd->map;
1782
Jan Kara09930042013-08-17 09:57:56 -04001783 /* Buffer that doesn't need mapping for writeback? */
1784 if (!buffer_dirty(bh) || !buffer_mapped(bh) ||
1785 (!buffer_delay(bh) && !buffer_unwritten(bh))) {
1786 /* So far no extent to map => we write the buffer right away */
1787 if (map->m_len == 0)
1788 return true;
1789 return false;
1790 }
Jan Kara4e7ea812013-06-04 13:17:40 -04001791
1792 /* First block in the extent? */
1793 if (map->m_len == 0) {
1794 map->m_lblk = lblk;
1795 map->m_len = 1;
Jan Kara09930042013-08-17 09:57:56 -04001796 map->m_flags = bh->b_state & BH_FLAGS;
1797 return true;
Jan Kara4e7ea812013-06-04 13:17:40 -04001798 }
1799
Jan Kara09930042013-08-17 09:57:56 -04001800 /* Don't go larger than mballoc is willing to allocate */
1801 if (map->m_len >= MAX_WRITEPAGES_EXTENT_LEN)
1802 return false;
1803
Jan Kara4e7ea812013-06-04 13:17:40 -04001804 /* Can we merge the block to our big extent? */
1805 if (lblk == map->m_lblk + map->m_len &&
Jan Kara09930042013-08-17 09:57:56 -04001806 (bh->b_state & BH_FLAGS) == map->m_flags) {
Jan Kara4e7ea812013-06-04 13:17:40 -04001807 map->m_len++;
Jan Kara09930042013-08-17 09:57:56 -04001808 return true;
Jan Kara4e7ea812013-06-04 13:17:40 -04001809 }
Jan Kara09930042013-08-17 09:57:56 -04001810 return false;
Jan Kara4e7ea812013-06-04 13:17:40 -04001811}
1812
Jan Kara5f1132b2013-08-17 10:02:33 -04001813/*
1814 * mpage_process_page_bufs - submit page buffers for IO or add them to extent
1815 *
1816 * @mpd - extent of blocks for mapping
1817 * @head - the first buffer in the page
1818 * @bh - buffer we should start processing from
1819 * @lblk - logical number of the block in the file corresponding to @bh
1820 *
1821 * Walk through page buffers from @bh upto @head (exclusive) and either submit
1822 * the page for IO if all buffers in this page were mapped and there's no
1823 * accumulated extent of buffers to map or add buffers in the page to the
1824 * extent of buffers to map. The function returns 1 if the caller can continue
1825 * by processing the next page, 0 if it should stop adding buffers to the
1826 * extent to map because we cannot extend it anymore. It can also return value
1827 * < 0 in case of error during IO submission.
1828 */
1829static int mpage_process_page_bufs(struct mpage_da_data *mpd,
1830 struct buffer_head *head,
1831 struct buffer_head *bh,
1832 ext4_lblk_t lblk)
Jan Kara4e7ea812013-06-04 13:17:40 -04001833{
1834 struct inode *inode = mpd->inode;
Jan Kara5f1132b2013-08-17 10:02:33 -04001835 int err;
Jan Kara4e7ea812013-06-04 13:17:40 -04001836 ext4_lblk_t blocks = (i_size_read(inode) + (1 << inode->i_blkbits) - 1)
1837 >> inode->i_blkbits;
1838
1839 do {
1840 BUG_ON(buffer_locked(bh));
1841
Jan Kara09930042013-08-17 09:57:56 -04001842 if (lblk >= blocks || !mpage_add_bh_to_extent(mpd, lblk, bh)) {
Jan Kara4e7ea812013-06-04 13:17:40 -04001843 /* Found extent to map? */
1844 if (mpd->map.m_len)
Jan Kara5f1132b2013-08-17 10:02:33 -04001845 return 0;
Jan Kara09930042013-08-17 09:57:56 -04001846 /* Everything mapped so far and we hit EOF */
Jan Kara5f1132b2013-08-17 10:02:33 -04001847 break;
Jan Kara4e7ea812013-06-04 13:17:40 -04001848 }
Jan Kara4e7ea812013-06-04 13:17:40 -04001849 } while (lblk++, (bh = bh->b_this_page) != head);
Jan Kara5f1132b2013-08-17 10:02:33 -04001850 /* So far everything mapped? Submit the page for IO. */
1851 if (mpd->map.m_len == 0) {
1852 err = mpage_submit_page(mpd, head->b_page);
1853 if (err < 0)
1854 return err;
1855 }
1856 return lblk < blocks;
Jan Kara4e7ea812013-06-04 13:17:40 -04001857}
1858
1859/*
1860 * mpage_map_buffers - update buffers corresponding to changed extent and
1861 * submit fully mapped pages for IO
1862 *
1863 * @mpd - description of extent to map, on return next extent to map
1864 *
1865 * Scan buffers corresponding to changed extent (we expect corresponding pages
1866 * to be already locked) and update buffer state according to new extent state.
1867 * We map delalloc buffers to their physical location, clear unwritten bits,
Lukas Czerner556615d2014-04-20 23:45:47 -04001868 * and mark buffers as uninit when we perform writes to unwritten extents
Jan Kara4e7ea812013-06-04 13:17:40 -04001869 * and do extent conversion after IO is finished. If the last page is not fully
1870 * mapped, we update @map to the next extent in the last page that needs
1871 * mapping. Otherwise we submit the page for IO.
1872 */
1873static int mpage_map_and_submit_buffers(struct mpage_da_data *mpd)
1874{
1875 struct pagevec pvec;
1876 int nr_pages, i;
1877 struct inode *inode = mpd->inode;
1878 struct buffer_head *head, *bh;
1879 int bpp_bits = PAGE_CACHE_SHIFT - inode->i_blkbits;
Jan Kara4e7ea812013-06-04 13:17:40 -04001880 pgoff_t start, end;
1881 ext4_lblk_t lblk;
1882 sector_t pblock;
1883 int err;
1884
1885 start = mpd->map.m_lblk >> bpp_bits;
1886 end = (mpd->map.m_lblk + mpd->map.m_len - 1) >> bpp_bits;
1887 lblk = start << bpp_bits;
1888 pblock = mpd->map.m_pblk;
1889
1890 pagevec_init(&pvec, 0);
1891 while (start <= end) {
1892 nr_pages = pagevec_lookup(&pvec, inode->i_mapping, start,
1893 PAGEVEC_SIZE);
1894 if (nr_pages == 0)
1895 break;
1896 for (i = 0; i < nr_pages; i++) {
1897 struct page *page = pvec.pages[i];
1898
1899 if (page->index > end)
1900 break;
Anatol Pomozov70261f52013-08-28 14:40:12 -04001901 /* Up to 'end' pages must be contiguous */
Jan Kara4e7ea812013-06-04 13:17:40 -04001902 BUG_ON(page->index != start);
1903 bh = head = page_buffers(page);
1904 do {
1905 if (lblk < mpd->map.m_lblk)
1906 continue;
1907 if (lblk >= mpd->map.m_lblk + mpd->map.m_len) {
1908 /*
1909 * Buffer after end of mapped extent.
1910 * Find next buffer in the page to map.
1911 */
1912 mpd->map.m_len = 0;
1913 mpd->map.m_flags = 0;
Jan Kara5f1132b2013-08-17 10:02:33 -04001914 /*
1915 * FIXME: If dioread_nolock supports
1916 * blocksize < pagesize, we need to make
1917 * sure we add size mapped so far to
1918 * io_end->size as the following call
1919 * can submit the page for IO.
1920 */
1921 err = mpage_process_page_bufs(mpd, head,
1922 bh, lblk);
Jan Kara4e7ea812013-06-04 13:17:40 -04001923 pagevec_release(&pvec);
Jan Kara5f1132b2013-08-17 10:02:33 -04001924 if (err > 0)
1925 err = 0;
1926 return err;
Jan Kara4e7ea812013-06-04 13:17:40 -04001927 }
1928 if (buffer_delay(bh)) {
1929 clear_buffer_delay(bh);
1930 bh->b_blocknr = pblock++;
1931 }
Jan Kara4e7ea812013-06-04 13:17:40 -04001932 clear_buffer_unwritten(bh);
Jan Kara5f1132b2013-08-17 10:02:33 -04001933 } while (lblk++, (bh = bh->b_this_page) != head);
Jan Kara4e7ea812013-06-04 13:17:40 -04001934
1935 /*
1936 * FIXME: This is going to break if dioread_nolock
1937 * supports blocksize < pagesize as we will try to
1938 * convert potentially unmapped parts of inode.
1939 */
1940 mpd->io_submit.io_end->size += PAGE_CACHE_SIZE;
1941 /* Page fully mapped - let IO run! */
1942 err = mpage_submit_page(mpd, page);
1943 if (err < 0) {
1944 pagevec_release(&pvec);
1945 return err;
1946 }
1947 start++;
1948 }
1949 pagevec_release(&pvec);
1950 }
1951 /* Extent fully mapped and matches with page boundary. We are done. */
1952 mpd->map.m_len = 0;
1953 mpd->map.m_flags = 0;
1954 return 0;
1955}
1956
1957static int mpage_map_one_extent(handle_t *handle, struct mpage_da_data *mpd)
1958{
1959 struct inode *inode = mpd->inode;
1960 struct ext4_map_blocks *map = &mpd->map;
1961 int get_blocks_flags;
Lukas Czerner090f32e2014-04-20 23:44:47 -04001962 int err, dioread_nolock;
Jan Kara4e7ea812013-06-04 13:17:40 -04001963
1964 trace_ext4_da_write_pages_extent(inode, map);
1965 /*
1966 * Call ext4_map_blocks() to allocate any delayed allocation blocks, or
Lukas Czerner556615d2014-04-20 23:45:47 -04001967 * to convert an unwritten extent to be initialized (in the case
Jan Kara4e7ea812013-06-04 13:17:40 -04001968 * where we have written into one or more preallocated blocks). It is
1969 * possible that we're going to need more metadata blocks than
1970 * previously reserved. However we must not fail because we're in
1971 * writeback and there is nothing we can do about it so it might result
1972 * in data loss. So use reserved blocks to allocate metadata if
1973 * possible.
1974 *
Theodore Ts'o754cfed2014-09-04 18:08:22 -04001975 * We pass in the magic EXT4_GET_BLOCKS_DELALLOC_RESERVE if
1976 * the blocks in question are delalloc blocks. This indicates
1977 * that the blocks and quotas has already been checked when
1978 * the data was copied into the page cache.
Jan Kara4e7ea812013-06-04 13:17:40 -04001979 */
1980 get_blocks_flags = EXT4_GET_BLOCKS_CREATE |
1981 EXT4_GET_BLOCKS_METADATA_NOFAIL;
Lukas Czerner090f32e2014-04-20 23:44:47 -04001982 dioread_nolock = ext4_should_dioread_nolock(inode);
1983 if (dioread_nolock)
Jan Kara4e7ea812013-06-04 13:17:40 -04001984 get_blocks_flags |= EXT4_GET_BLOCKS_IO_CREATE_EXT;
1985 if (map->m_flags & (1 << BH_Delay))
1986 get_blocks_flags |= EXT4_GET_BLOCKS_DELALLOC_RESERVE;
1987
1988 err = ext4_map_blocks(handle, inode, map, get_blocks_flags);
1989 if (err < 0)
1990 return err;
Lukas Czerner090f32e2014-04-20 23:44:47 -04001991 if (dioread_nolock && (map->m_flags & EXT4_MAP_UNWRITTEN)) {
Jan Kara6b523df2013-06-04 13:21:11 -04001992 if (!mpd->io_submit.io_end->handle &&
1993 ext4_handle_valid(handle)) {
1994 mpd->io_submit.io_end->handle = handle->h_rsv_handle;
1995 handle->h_rsv_handle = NULL;
1996 }
Jan Kara3613d222013-06-04 13:19:34 -04001997 ext4_set_io_unwritten_flag(inode, mpd->io_submit.io_end);
Jan Kara6b523df2013-06-04 13:21:11 -04001998 }
Jan Kara4e7ea812013-06-04 13:17:40 -04001999
2000 BUG_ON(map->m_len == 0);
2001 if (map->m_flags & EXT4_MAP_NEW) {
2002 struct block_device *bdev = inode->i_sb->s_bdev;
2003 int i;
2004
2005 for (i = 0; i < map->m_len; i++)
2006 unmap_underlying_metadata(bdev, map->m_pblk + i);
2007 }
2008 return 0;
2009}
2010
2011/*
2012 * mpage_map_and_submit_extent - map extent starting at mpd->lblk of length
2013 * mpd->len and submit pages underlying it for IO
2014 *
2015 * @handle - handle for journal operations
2016 * @mpd - extent to map
Jan Kara7534e852013-10-16 08:26:08 -04002017 * @give_up_on_write - we set this to true iff there is a fatal error and there
2018 * is no hope of writing the data. The caller should discard
2019 * dirty pages to avoid infinite loops.
Jan Kara4e7ea812013-06-04 13:17:40 -04002020 *
2021 * The function maps extent starting at mpd->lblk of length mpd->len. If it is
2022 * delayed, blocks are allocated, if it is unwritten, we may need to convert
2023 * them to initialized or split the described range from larger unwritten
2024 * extent. Note that we need not map all the described range since allocation
2025 * can return less blocks or the range is covered by more unwritten extents. We
2026 * cannot map more because we are limited by reserved transaction credits. On
2027 * the other hand we always make sure that the last touched page is fully
2028 * mapped so that it can be written out (and thus forward progress is
2029 * guaranteed). After mapping we submit all mapped pages for IO.
2030 */
2031static int mpage_map_and_submit_extent(handle_t *handle,
Theodore Ts'ocb530542013-07-01 08:12:40 -04002032 struct mpage_da_data *mpd,
2033 bool *give_up_on_write)
Jan Kara4e7ea812013-06-04 13:17:40 -04002034{
2035 struct inode *inode = mpd->inode;
2036 struct ext4_map_blocks *map = &mpd->map;
2037 int err;
2038 loff_t disksize;
Dmitry Monakhov66031202014-08-27 18:40:03 -04002039 int progress = 0;
Jan Kara4e7ea812013-06-04 13:17:40 -04002040
2041 mpd->io_submit.io_end->offset =
2042 ((loff_t)map->m_lblk) << inode->i_blkbits;
Jan Kara27d7c4e2013-07-05 21:57:22 -04002043 do {
Jan Kara4e7ea812013-06-04 13:17:40 -04002044 err = mpage_map_one_extent(handle, mpd);
2045 if (err < 0) {
2046 struct super_block *sb = inode->i_sb;
2047
Theodore Ts'ocb530542013-07-01 08:12:40 -04002048 if (EXT4_SB(sb)->s_mount_flags & EXT4_MF_FS_ABORTED)
2049 goto invalidate_dirty_pages;
Jan Kara4e7ea812013-06-04 13:17:40 -04002050 /*
Theodore Ts'ocb530542013-07-01 08:12:40 -04002051 * Let the uper layers retry transient errors.
2052 * In the case of ENOSPC, if ext4_count_free_blocks()
2053 * is non-zero, a commit should free up blocks.
Jan Kara4e7ea812013-06-04 13:17:40 -04002054 */
Theodore Ts'ocb530542013-07-01 08:12:40 -04002055 if ((err == -ENOMEM) ||
Dmitry Monakhov66031202014-08-27 18:40:03 -04002056 (err == -ENOSPC && ext4_count_free_clusters(sb))) {
2057 if (progress)
2058 goto update_disksize;
Theodore Ts'ocb530542013-07-01 08:12:40 -04002059 return err;
Dmitry Monakhov66031202014-08-27 18:40:03 -04002060 }
Theodore Ts'ocb530542013-07-01 08:12:40 -04002061 ext4_msg(sb, KERN_CRIT,
2062 "Delayed block allocation failed for "
2063 "inode %lu at logical offset %llu with"
2064 " max blocks %u with error %d",
2065 inode->i_ino,
2066 (unsigned long long)map->m_lblk,
2067 (unsigned)map->m_len, -err);
2068 ext4_msg(sb, KERN_CRIT,
2069 "This should not happen!! Data will "
2070 "be lost\n");
2071 if (err == -ENOSPC)
2072 ext4_print_free_blocks(inode);
2073 invalidate_dirty_pages:
2074 *give_up_on_write = true;
Jan Kara4e7ea812013-06-04 13:17:40 -04002075 return err;
2076 }
Dmitry Monakhov66031202014-08-27 18:40:03 -04002077 progress = 1;
Jan Kara4e7ea812013-06-04 13:17:40 -04002078 /*
2079 * Update buffer state, submit mapped pages, and get us new
2080 * extent to map
2081 */
2082 err = mpage_map_and_submit_buffers(mpd);
2083 if (err < 0)
Dmitry Monakhov66031202014-08-27 18:40:03 -04002084 goto update_disksize;
Jan Kara27d7c4e2013-07-05 21:57:22 -04002085 } while (map->m_len);
Jan Kara4e7ea812013-06-04 13:17:40 -04002086
Dmitry Monakhov66031202014-08-27 18:40:03 -04002087update_disksize:
Theodore Ts'o622cad12014-04-11 10:35:17 -04002088 /*
2089 * Update on-disk size after IO is submitted. Races with
2090 * truncate are avoided by checking i_size under i_data_sem.
2091 */
Jan Kara4e7ea812013-06-04 13:17:40 -04002092 disksize = ((loff_t)mpd->first_page) << PAGE_CACHE_SHIFT;
Jan Kara4e7ea812013-06-04 13:17:40 -04002093 if (disksize > EXT4_I(inode)->i_disksize) {
2094 int err2;
Theodore Ts'o622cad12014-04-11 10:35:17 -04002095 loff_t i_size;
Jan Kara4e7ea812013-06-04 13:17:40 -04002096
Theodore Ts'o622cad12014-04-11 10:35:17 -04002097 down_write(&EXT4_I(inode)->i_data_sem);
2098 i_size = i_size_read(inode);
2099 if (disksize > i_size)
2100 disksize = i_size;
2101 if (disksize > EXT4_I(inode)->i_disksize)
2102 EXT4_I(inode)->i_disksize = disksize;
Jan Kara4e7ea812013-06-04 13:17:40 -04002103 err2 = ext4_mark_inode_dirty(handle, inode);
Theodore Ts'o622cad12014-04-11 10:35:17 -04002104 up_write(&EXT4_I(inode)->i_data_sem);
Jan Kara4e7ea812013-06-04 13:17:40 -04002105 if (err2)
2106 ext4_error(inode->i_sb,
2107 "Failed to mark inode %lu dirty",
2108 inode->i_ino);
2109 if (!err)
2110 err = err2;
2111 }
2112 return err;
2113}
2114
2115/*
Jan Karafffb2732013-06-04 13:01:11 -04002116 * Calculate the total number of credits to reserve for one writepages
Theodore Ts'o20970ba2013-06-06 14:00:46 -04002117 * iteration. This is called from ext4_writepages(). We map an extent of
Anatol Pomozov70261f52013-08-28 14:40:12 -04002118 * up to MAX_WRITEPAGES_EXTENT_LEN blocks and then we go on and finish mapping
Jan Karafffb2732013-06-04 13:01:11 -04002119 * the last partial page. So in total we can map MAX_WRITEPAGES_EXTENT_LEN +
2120 * bpp - 1 blocks in bpp different extents.
2121 */
Mingming Cao525f4ed2008-08-19 22:15:58 -04002122static int ext4_da_writepages_trans_blocks(struct inode *inode)
2123{
Jan Karafffb2732013-06-04 13:01:11 -04002124 int bpp = ext4_journal_blocks_per_page(inode);
Mingming Cao525f4ed2008-08-19 22:15:58 -04002125
Jan Karafffb2732013-06-04 13:01:11 -04002126 return ext4_meta_trans_blocks(inode,
2127 MAX_WRITEPAGES_EXTENT_LEN + bpp - 1, bpp);
Mingming Cao525f4ed2008-08-19 22:15:58 -04002128}
Mingming Cao61628a32008-07-11 19:27:31 -04002129
Theodore Ts'o8e48dcf2010-05-16 18:00:00 -04002130/*
Jan Kara4e7ea812013-06-04 13:17:40 -04002131 * mpage_prepare_extent_to_map - find & lock contiguous range of dirty pages
2132 * and underlying extent to map
2133 *
2134 * @mpd - where to look for pages
2135 *
2136 * Walk dirty pages in the mapping. If they are fully mapped, submit them for
2137 * IO immediately. When we find a page which isn't mapped we start accumulating
2138 * extent of buffers underlying these pages that needs mapping (formed by
2139 * either delayed or unwritten buffers). We also lock the pages containing
2140 * these buffers. The extent found is returned in @mpd structure (starting at
2141 * mpd->lblk with length mpd->len blocks).
2142 *
2143 * Note that this function can attach bios to one io_end structure which are
2144 * neither logically nor physically contiguous. Although it may seem as an
2145 * unnecessary complication, it is actually inevitable in blocksize < pagesize
2146 * 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 -04002147 */
Jan Kara4e7ea812013-06-04 13:17:40 -04002148static int mpage_prepare_extent_to_map(struct mpage_da_data *mpd)
Theodore Ts'o8e48dcf2010-05-16 18:00:00 -04002149{
Jan Kara4e7ea812013-06-04 13:17:40 -04002150 struct address_space *mapping = mpd->inode->i_mapping;
2151 struct pagevec pvec;
2152 unsigned int nr_pages;
Ming Leiaeac5892013-10-17 18:56:16 -04002153 long left = mpd->wbc->nr_to_write;
Jan Kara4e7ea812013-06-04 13:17:40 -04002154 pgoff_t index = mpd->first_page;
2155 pgoff_t end = mpd->last_page;
2156 int tag;
2157 int i, err = 0;
2158 int blkbits = mpd->inode->i_blkbits;
2159 ext4_lblk_t lblk;
2160 struct buffer_head *head;
Theodore Ts'o8e48dcf2010-05-16 18:00:00 -04002161
Jan Kara4e7ea812013-06-04 13:17:40 -04002162 if (mpd->wbc->sync_mode == WB_SYNC_ALL || mpd->wbc->tagged_writepages)
Eric Sandeen5b41d922010-10-27 21:30:13 -04002163 tag = PAGECACHE_TAG_TOWRITE;
2164 else
2165 tag = PAGECACHE_TAG_DIRTY;
2166
Jan Kara4e7ea812013-06-04 13:17:40 -04002167 pagevec_init(&pvec, 0);
2168 mpd->map.m_len = 0;
2169 mpd->next_page = index;
Theodore Ts'o4f01b022011-02-26 14:07:37 -05002170 while (index <= end) {
Eric Sandeen5b41d922010-10-27 21:30:13 -04002171 nr_pages = pagevec_lookup_tag(&pvec, mapping, &index, tag,
Theodore Ts'o8e48dcf2010-05-16 18:00:00 -04002172 min(end - index, (pgoff_t)PAGEVEC_SIZE-1) + 1);
2173 if (nr_pages == 0)
Jan Kara4e7ea812013-06-04 13:17:40 -04002174 goto out;
Theodore Ts'o8e48dcf2010-05-16 18:00:00 -04002175
2176 for (i = 0; i < nr_pages; i++) {
2177 struct page *page = pvec.pages[i];
2178
2179 /*
2180 * At this point, the page may be truncated or
2181 * invalidated (changing page->mapping to NULL), or
2182 * even swizzled back from swapper_space to tmpfs file
2183 * mapping. However, page->index will not change
2184 * because we have a reference on the page.
2185 */
Theodore Ts'o4f01b022011-02-26 14:07:37 -05002186 if (page->index > end)
2187 goto out;
Theodore Ts'o8e48dcf2010-05-16 18:00:00 -04002188
Ming Leiaeac5892013-10-17 18:56:16 -04002189 /*
2190 * Accumulated enough dirty pages? This doesn't apply
2191 * to WB_SYNC_ALL mode. For integrity sync we have to
2192 * keep going because someone may be concurrently
2193 * dirtying pages, and we might have synced a lot of
2194 * newly appeared dirty pages, but have not synced all
2195 * of the old dirty pages.
2196 */
2197 if (mpd->wbc->sync_mode == WB_SYNC_NONE && left <= 0)
2198 goto out;
2199
Jan Kara4e7ea812013-06-04 13:17:40 -04002200 /* If we can't merge this page, we are done. */
2201 if (mpd->map.m_len > 0 && mpd->next_page != page->index)
2202 goto out;
Theodore Ts'o78aaced2011-02-26 14:09:14 -05002203
Theodore Ts'o8e48dcf2010-05-16 18:00:00 -04002204 lock_page(page);
Theodore Ts'o8e48dcf2010-05-16 18:00:00 -04002205 /*
Jan Kara4e7ea812013-06-04 13:17:40 -04002206 * If the page is no longer dirty, or its mapping no
2207 * longer corresponds to inode we are writing (which
2208 * means it has been truncated or invalidated), or the
2209 * page is already under writeback and we are not doing
2210 * a data integrity writeback, skip the page
Theodore Ts'o8e48dcf2010-05-16 18:00:00 -04002211 */
Theodore Ts'o4f01b022011-02-26 14:07:37 -05002212 if (!PageDirty(page) ||
2213 (PageWriteback(page) &&
Jan Kara4e7ea812013-06-04 13:17:40 -04002214 (mpd->wbc->sync_mode == WB_SYNC_NONE)) ||
Theodore Ts'o4f01b022011-02-26 14:07:37 -05002215 unlikely(page->mapping != mapping)) {
Theodore Ts'o8e48dcf2010-05-16 18:00:00 -04002216 unlock_page(page);
2217 continue;
2218 }
2219
Darrick J. Wong7cb1a532011-05-18 13:53:20 -04002220 wait_on_page_writeback(page);
Theodore Ts'o8e48dcf2010-05-16 18:00:00 -04002221 BUG_ON(PageWriteback(page));
Theodore Ts'o8e48dcf2010-05-16 18:00:00 -04002222
Jan Kara4e7ea812013-06-04 13:17:40 -04002223 if (mpd->map.m_len == 0)
Theodore Ts'o8eb9e5c2011-02-26 14:07:31 -05002224 mpd->first_page = page->index;
Theodore Ts'o8eb9e5c2011-02-26 14:07:31 -05002225 mpd->next_page = page->index + 1;
Jan Karaf8bec372013-01-28 12:55:08 -05002226 /* Add all dirty buffers to mpd */
Jan Kara4e7ea812013-06-04 13:17:40 -04002227 lblk = ((ext4_lblk_t)page->index) <<
2228 (PAGE_CACHE_SHIFT - blkbits);
Jan Karaf8bec372013-01-28 12:55:08 -05002229 head = page_buffers(page);
Jan Kara5f1132b2013-08-17 10:02:33 -04002230 err = mpage_process_page_bufs(mpd, head, head, lblk);
2231 if (err <= 0)
Jan Kara4e7ea812013-06-04 13:17:40 -04002232 goto out;
Jan Kara5f1132b2013-08-17 10:02:33 -04002233 err = 0;
Ming Leiaeac5892013-10-17 18:56:16 -04002234 left--;
Theodore Ts'o8e48dcf2010-05-16 18:00:00 -04002235 }
2236 pagevec_release(&pvec);
2237 cond_resched();
2238 }
Theodore Ts'o4f01b022011-02-26 14:07:37 -05002239 return 0;
Theodore Ts'o8eb9e5c2011-02-26 14:07:31 -05002240out:
2241 pagevec_release(&pvec);
Jan Kara4e7ea812013-06-04 13:17:40 -04002242 return err;
Theodore Ts'o8e48dcf2010-05-16 18:00:00 -04002243}
2244
Theodore Ts'o20970ba2013-06-06 14:00:46 -04002245static int __writepage(struct page *page, struct writeback_control *wbc,
2246 void *data)
2247{
2248 struct address_space *mapping = data;
2249 int ret = ext4_writepage(page, wbc);
2250 mapping_set_error(mapping, ret);
2251 return ret;
2252}
2253
2254static int ext4_writepages(struct address_space *mapping,
2255 struct writeback_control *wbc)
Alex Tomas64769242008-07-11 19:27:31 -04002256{
Jan Kara4e7ea812013-06-04 13:17:40 -04002257 pgoff_t writeback_index = 0;
2258 long nr_to_write = wbc->nr_to_write;
Aneesh Kumar K.V22208de2008-10-16 10:10:36 -04002259 int range_whole = 0;
Jan Kara4e7ea812013-06-04 13:17:40 -04002260 int cycled = 1;
Mingming Cao61628a32008-07-11 19:27:31 -04002261 handle_t *handle = NULL;
Aneesh Kumar K.Vdf222912008-09-08 23:05:34 -04002262 struct mpage_da_data mpd;
Aneesh Kumar K.V5e745b02008-08-18 18:00:57 -04002263 struct inode *inode = mapping->host;
Jan Kara6b523df2013-06-04 13:21:11 -04002264 int needed_blocks, rsv_blocks = 0, ret = 0;
Aneesh Kumar K.V5e745b02008-08-18 18:00:57 -04002265 struct ext4_sb_info *sbi = EXT4_SB(mapping->host->i_sb);
Jan Kara4e7ea812013-06-04 13:17:40 -04002266 bool done;
Shaohua Li1bce63d2011-10-18 10:55:51 -04002267 struct blk_plug plug;
Theodore Ts'ocb530542013-07-01 08:12:40 -04002268 bool give_up_on_write = false;
Mingming Cao61628a32008-07-11 19:27:31 -04002269
Theodore Ts'o20970ba2013-06-06 14:00:46 -04002270 trace_ext4_writepages(inode, wbc);
Theodore Ts'oba80b102009-01-03 20:03:21 -05002271
Mingming Cao61628a32008-07-11 19:27:31 -04002272 /*
2273 * No pages to write? This is mainly a kludge to avoid starting
2274 * a transaction for special inodes like journal inode on last iput()
2275 * because that could violate lock ordering on umount
2276 */
Aneesh Kumar K.Va1d6cc52008-08-19 21:55:02 -04002277 if (!mapping->nrpages || !mapping_tagged(mapping, PAGECACHE_TAG_DIRTY))
Ming Leibbf023c2013-10-30 07:27:16 -04002278 goto out_writepages;
Theodore Ts'o2a21e372008-11-05 09:22:24 -05002279
Theodore Ts'o20970ba2013-06-06 14:00:46 -04002280 if (ext4_should_journal_data(inode)) {
2281 struct blk_plug plug;
Theodore Ts'o20970ba2013-06-06 14:00:46 -04002282
2283 blk_start_plug(&plug);
2284 ret = write_cache_pages(mapping, wbc, __writepage, mapping);
2285 blk_finish_plug(&plug);
Ming Leibbf023c2013-10-30 07:27:16 -04002286 goto out_writepages;
Theodore Ts'o20970ba2013-06-06 14:00:46 -04002287 }
2288
Theodore Ts'o2a21e372008-11-05 09:22:24 -05002289 /*
2290 * If the filesystem has aborted, it is read-only, so return
2291 * right away instead of dumping stack traces later on that
2292 * will obscure the real source of the problem. We test
Theodore Ts'o4ab2f152009-06-13 10:09:36 -04002293 * EXT4_MF_FS_ABORTED instead of sb->s_flag's MS_RDONLY because
Theodore Ts'o2a21e372008-11-05 09:22:24 -05002294 * the latter could be true if the filesystem is mounted
Theodore Ts'o20970ba2013-06-06 14:00:46 -04002295 * read-only, and in that case, ext4_writepages should
Theodore Ts'o2a21e372008-11-05 09:22:24 -05002296 * *never* be called, so if that ever happens, we would want
2297 * the stack trace.
2298 */
Ming Leibbf023c2013-10-30 07:27:16 -04002299 if (unlikely(sbi->s_mount_flags & EXT4_MF_FS_ABORTED)) {
2300 ret = -EROFS;
2301 goto out_writepages;
2302 }
Theodore Ts'o2a21e372008-11-05 09:22:24 -05002303
Jan Kara6b523df2013-06-04 13:21:11 -04002304 if (ext4_should_dioread_nolock(inode)) {
2305 /*
Anatol Pomozov70261f52013-08-28 14:40:12 -04002306 * We may need to convert up to one extent per block in
Jan Kara6b523df2013-06-04 13:21:11 -04002307 * the page and we may dirty the inode.
2308 */
2309 rsv_blocks = 1 + (PAGE_CACHE_SIZE >> inode->i_blkbits);
2310 }
2311
Jan Kara4e7ea812013-06-04 13:17:40 -04002312 /*
2313 * If we have inline data and arrive here, it means that
2314 * we will soon create the block for the 1st page, so
2315 * we'd better clear the inline data here.
2316 */
2317 if (ext4_has_inline_data(inode)) {
2318 /* Just inode will be modified... */
2319 handle = ext4_journal_start(inode, EXT4_HT_INODE, 1);
2320 if (IS_ERR(handle)) {
2321 ret = PTR_ERR(handle);
2322 goto out_writepages;
2323 }
2324 BUG_ON(ext4_test_inode_state(inode,
2325 EXT4_STATE_MAY_INLINE_DATA));
2326 ext4_destroy_inline_data(handle, inode);
2327 ext4_journal_stop(handle);
2328 }
2329
Aneesh Kumar K.V22208de2008-10-16 10:10:36 -04002330 if (wbc->range_start == 0 && wbc->range_end == LLONG_MAX)
2331 range_whole = 1;
Mingming Cao61628a32008-07-11 19:27:31 -04002332
Aneesh Kumar K.V2acf2c22009-02-14 10:42:58 -05002333 if (wbc->range_cyclic) {
Jan Kara4e7ea812013-06-04 13:17:40 -04002334 writeback_index = mapping->writeback_index;
2335 if (writeback_index)
Aneesh Kumar K.V2acf2c22009-02-14 10:42:58 -05002336 cycled = 0;
Jan Kara4e7ea812013-06-04 13:17:40 -04002337 mpd.first_page = writeback_index;
2338 mpd.last_page = -1;
Eric Sandeen5b41d922010-10-27 21:30:13 -04002339 } else {
Jan Kara4e7ea812013-06-04 13:17:40 -04002340 mpd.first_page = wbc->range_start >> PAGE_CACHE_SHIFT;
2341 mpd.last_page = wbc->range_end >> PAGE_CACHE_SHIFT;
Eric Sandeen5b41d922010-10-27 21:30:13 -04002342 }
Aneesh Kumar K.Va1d6cc52008-08-19 21:55:02 -04002343
Jan Kara4e7ea812013-06-04 13:17:40 -04002344 mpd.inode = inode;
2345 mpd.wbc = wbc;
2346 ext4_io_submit_init(&mpd.io_submit, wbc);
Aneesh Kumar K.V2acf2c22009-02-14 10:42:58 -05002347retry:
Wu Fengguang6e6938b2010-06-06 10:38:15 -06002348 if (wbc->sync_mode == WB_SYNC_ALL || wbc->tagged_writepages)
Jan Kara4e7ea812013-06-04 13:17:40 -04002349 tag_pages_for_writeback(mapping, mpd.first_page, mpd.last_page);
2350 done = false;
Shaohua Li1bce63d2011-10-18 10:55:51 -04002351 blk_start_plug(&plug);
Jan Kara4e7ea812013-06-04 13:17:40 -04002352 while (!done && mpd.first_page <= mpd.last_page) {
2353 /* For each extent of pages we use new io_end */
2354 mpd.io_submit.io_end = ext4_init_io_end(inode, GFP_KERNEL);
2355 if (!mpd.io_submit.io_end) {
2356 ret = -ENOMEM;
2357 break;
2358 }
Aneesh Kumar K.Va1d6cc52008-08-19 21:55:02 -04002359
2360 /*
Jan Kara4e7ea812013-06-04 13:17:40 -04002361 * We have two constraints: We find one extent to map and we
2362 * must always write out whole page (makes a difference when
2363 * blocksize < pagesize) so that we don't block on IO when we
2364 * try to write out the rest of the page. Journalled mode is
2365 * not supported by delalloc.
Aneesh Kumar K.Va1d6cc52008-08-19 21:55:02 -04002366 */
2367 BUG_ON(ext4_should_journal_data(inode));
Mingming Cao525f4ed2008-08-19 22:15:58 -04002368 needed_blocks = ext4_da_writepages_trans_blocks(inode);
Aneesh Kumar K.Va1d6cc52008-08-19 21:55:02 -04002369
Jan Kara4e7ea812013-06-04 13:17:40 -04002370 /* start a new transaction */
Jan Kara6b523df2013-06-04 13:21:11 -04002371 handle = ext4_journal_start_with_reserve(inode,
2372 EXT4_HT_WRITE_PAGE, needed_blocks, rsv_blocks);
Mingming Cao61628a32008-07-11 19:27:31 -04002373 if (IS_ERR(handle)) {
2374 ret = PTR_ERR(handle);
Theodore Ts'o16939182009-09-26 17:43:59 -04002375 ext4_msg(inode->i_sb, KERN_CRIT, "%s: jbd2_start: "
Curt Wohlgemuthfbe845d2010-05-16 13:00:00 -04002376 "%ld pages, ino %lu; err %d", __func__,
Aneesh Kumar K.Va1d6cc52008-08-19 21:55:02 -04002377 wbc->nr_to_write, inode->i_ino, ret);
Jan Kara4e7ea812013-06-04 13:17:40 -04002378 /* Release allocated io_end */
2379 ext4_put_io_end(mpd.io_submit.io_end);
2380 break;
Mingming Cao61628a32008-07-11 19:27:31 -04002381 }
Theodore Ts'of63e6002009-02-23 16:42:39 -05002382
Jan Kara4e7ea812013-06-04 13:17:40 -04002383 trace_ext4_da_write_pages(inode, mpd.first_page, mpd.wbc);
2384 ret = mpage_prepare_extent_to_map(&mpd);
2385 if (!ret) {
2386 if (mpd.map.m_len)
Theodore Ts'ocb530542013-07-01 08:12:40 -04002387 ret = mpage_map_and_submit_extent(handle, &mpd,
2388 &give_up_on_write);
Jan Kara4e7ea812013-06-04 13:17:40 -04002389 else {
2390 /*
2391 * We scanned the whole range (or exhausted
2392 * nr_to_write), submitted what was mapped and
2393 * didn't find anything needing mapping. We are
2394 * done.
2395 */
2396 done = true;
2397 }
Theodore Ts'of63e6002009-02-23 16:42:39 -05002398 }
Mingming Cao61628a32008-07-11 19:27:31 -04002399 ext4_journal_stop(handle);
Jan Kara4e7ea812013-06-04 13:17:40 -04002400 /* Submit prepared bio */
2401 ext4_io_submit(&mpd.io_submit);
2402 /* Unlock pages we didn't use */
Theodore Ts'ocb530542013-07-01 08:12:40 -04002403 mpage_release_unused_pages(&mpd, give_up_on_write);
Jan Kara4e7ea812013-06-04 13:17:40 -04002404 /* Drop our io_end reference we got from init */
2405 ext4_put_io_end(mpd.io_submit.io_end);
Aneesh Kumar K.Vdf222912008-09-08 23:05:34 -04002406
Jan Kara4e7ea812013-06-04 13:17:40 -04002407 if (ret == -ENOSPC && sbi->s_journal) {
2408 /*
2409 * Commit the transaction which would
Aneesh Kumar K.V22208de2008-10-16 10:10:36 -04002410 * free blocks released in the transaction
2411 * and try again
2412 */
Aneesh Kumar K.Vdf222912008-09-08 23:05:34 -04002413 jbd2_journal_force_commit_nested(sbi->s_journal);
Aneesh Kumar K.V22208de2008-10-16 10:10:36 -04002414 ret = 0;
Jan Kara4e7ea812013-06-04 13:17:40 -04002415 continue;
2416 }
2417 /* Fatal error - ENOMEM, EIO... */
2418 if (ret)
Mingming Cao61628a32008-07-11 19:27:31 -04002419 break;
Mingming Cao61628a32008-07-11 19:27:31 -04002420 }
Shaohua Li1bce63d2011-10-18 10:55:51 -04002421 blk_finish_plug(&plug);
Jan Kara9c12a832013-09-16 08:24:26 -04002422 if (!ret && !cycled && wbc->nr_to_write > 0) {
Aneesh Kumar K.V2acf2c22009-02-14 10:42:58 -05002423 cycled = 1;
Jan Kara4e7ea812013-06-04 13:17:40 -04002424 mpd.last_page = writeback_index - 1;
2425 mpd.first_page = 0;
Aneesh Kumar K.V2acf2c22009-02-14 10:42:58 -05002426 goto retry;
2427 }
Mingming Cao61628a32008-07-11 19:27:31 -04002428
Aneesh Kumar K.V22208de2008-10-16 10:10:36 -04002429 /* Update index */
Aneesh Kumar K.V22208de2008-10-16 10:10:36 -04002430 if (wbc->range_cyclic || (range_whole && wbc->nr_to_write > 0))
2431 /*
Jan Kara4e7ea812013-06-04 13:17:40 -04002432 * Set the writeback_index so that range_cyclic
Aneesh Kumar K.V22208de2008-10-16 10:10:36 -04002433 * mode will write it back later
2434 */
Jan Kara4e7ea812013-06-04 13:17:40 -04002435 mapping->writeback_index = mpd.first_page;
Aneesh Kumar K.Va1d6cc52008-08-19 21:55:02 -04002436
Mingming Cao61628a32008-07-11 19:27:31 -04002437out_writepages:
Theodore Ts'o20970ba2013-06-06 14:00:46 -04002438 trace_ext4_writepages_result(inode, wbc, ret,
2439 nr_to_write - wbc->nr_to_write);
Mingming Cao61628a32008-07-11 19:27:31 -04002440 return ret;
Alex Tomas64769242008-07-11 19:27:31 -04002441}
2442
Aneesh Kumar K.V79f0be82008-10-08 23:13:30 -04002443static int ext4_nonda_switch(struct super_block *sb)
2444{
Eric Whitney5c1ff332013-04-09 09:27:31 -04002445 s64 free_clusters, dirty_clusters;
Aneesh Kumar K.V79f0be82008-10-08 23:13:30 -04002446 struct ext4_sb_info *sbi = EXT4_SB(sb);
2447
2448 /*
2449 * switch to non delalloc mode if we are running low
2450 * on free block. The free block accounting via percpu
Eric Dumazet179f7eb2009-01-06 14:41:04 -08002451 * counters can get slightly wrong with percpu_counter_batch getting
Aneesh Kumar K.V79f0be82008-10-08 23:13:30 -04002452 * accumulated on each CPU without updating global counters
2453 * Delalloc need an accurate free block accounting. So switch
2454 * to non delalloc when we are near to error range.
2455 */
Eric Whitney5c1ff332013-04-09 09:27:31 -04002456 free_clusters =
2457 percpu_counter_read_positive(&sbi->s_freeclusters_counter);
2458 dirty_clusters =
2459 percpu_counter_read_positive(&sbi->s_dirtyclusters_counter);
Theodore Ts'o00d4e732012-09-19 22:42:36 -04002460 /*
2461 * Start pushing delalloc when 1/2 of free blocks are dirty.
2462 */
Eric Whitney5c1ff332013-04-09 09:27:31 -04002463 if (dirty_clusters && (free_clusters < 2 * dirty_clusters))
Miao Xie10ee27a2013-01-10 13:47:57 +08002464 try_to_writeback_inodes_sb(sb, WB_REASON_FS_FREE_SPACE);
Theodore Ts'o00d4e732012-09-19 22:42:36 -04002465
Eric Whitney5c1ff332013-04-09 09:27:31 -04002466 if (2 * free_clusters < 3 * dirty_clusters ||
2467 free_clusters < (dirty_clusters + EXT4_FREECLUSTERS_WATERMARK)) {
Aneesh Kumar K.V79f0be82008-10-08 23:13:30 -04002468 /*
Eric Sandeenc8afb442009-12-23 07:58:12 -05002469 * free block count is less than 150% of dirty blocks
2470 * or free blocks is less than watermark
Aneesh Kumar K.V79f0be82008-10-08 23:13:30 -04002471 */
2472 return 1;
2473 }
2474 return 0;
2475}
2476
Eric Sandeen0ff89472014-10-11 19:51:17 -04002477/* We always reserve for an inode update; the superblock could be there too */
2478static int ext4_da_write_credits(struct inode *inode, loff_t pos, unsigned len)
2479{
2480 if (likely(EXT4_HAS_RO_COMPAT_FEATURE(inode->i_sb,
2481 EXT4_FEATURE_RO_COMPAT_LARGE_FILE)))
2482 return 1;
2483
2484 if (pos + len <= 0x7fffffffULL)
2485 return 1;
2486
2487 /* We might need to update the superblock to set LARGE_FILE */
2488 return 2;
2489}
2490
Alex Tomas64769242008-07-11 19:27:31 -04002491static int ext4_da_write_begin(struct file *file, struct address_space *mapping,
Theodore Ts'ode9a55b2009-06-14 17:45:34 -04002492 loff_t pos, unsigned len, unsigned flags,
2493 struct page **pagep, void **fsdata)
Alex Tomas64769242008-07-11 19:27:31 -04002494{
Eric Sandeen72b8ab92010-05-16 11:00:00 -04002495 int ret, retries = 0;
Alex Tomas64769242008-07-11 19:27:31 -04002496 struct page *page;
2497 pgoff_t index;
Alex Tomas64769242008-07-11 19:27:31 -04002498 struct inode *inode = mapping->host;
2499 handle_t *handle;
2500
2501 index = pos >> PAGE_CACHE_SHIFT;
Aneesh Kumar K.V79f0be82008-10-08 23:13:30 -04002502
2503 if (ext4_nonda_switch(inode->i_sb)) {
2504 *fsdata = (void *)FALL_BACK_TO_NONDELALLOC;
2505 return ext4_write_begin(file, mapping, pos,
2506 len, flags, pagep, fsdata);
2507 }
2508 *fsdata = (void *)0;
Theodore Ts'o9bffad12009-06-17 11:48:11 -04002509 trace_ext4_da_write_begin(inode, pos, len, flags);
Tao Ma9c3569b2012-12-10 14:05:57 -05002510
2511 if (ext4_test_inode_state(inode, EXT4_STATE_MAY_INLINE_DATA)) {
2512 ret = ext4_da_write_inline_data_begin(mapping, inode,
2513 pos, len, flags,
2514 pagep, fsdata);
2515 if (ret < 0)
Theodore Ts'o47564bf2013-02-09 09:24:14 -05002516 return ret;
2517 if (ret == 1)
2518 return 0;
Tao Ma9c3569b2012-12-10 14:05:57 -05002519 }
2520
Theodore Ts'o47564bf2013-02-09 09:24:14 -05002521 /*
2522 * grab_cache_page_write_begin() can take a long time if the
2523 * system is thrashing due to memory pressure, or if the page
2524 * is being written back. So grab it first before we start
2525 * the transaction handle. This also allows us to allocate
2526 * the page (if needed) without using GFP_NOFS.
2527 */
2528retry_grab:
2529 page = grab_cache_page_write_begin(mapping, index, flags);
2530 if (!page)
2531 return -ENOMEM;
2532 unlock_page(page);
2533
Alex Tomas64769242008-07-11 19:27:31 -04002534 /*
2535 * With delayed allocation, we don't log the i_disksize update
2536 * if there is delayed block allocation. But we still need
2537 * to journalling the i_disksize update if writes to the end
2538 * of file which has an already mapped buffer.
2539 */
Theodore Ts'o47564bf2013-02-09 09:24:14 -05002540retry_journal:
Eric Sandeen0ff89472014-10-11 19:51:17 -04002541 handle = ext4_journal_start(inode, EXT4_HT_WRITE_PAGE,
2542 ext4_da_write_credits(inode, pos, len));
Alex Tomas64769242008-07-11 19:27:31 -04002543 if (IS_ERR(handle)) {
Theodore Ts'o47564bf2013-02-09 09:24:14 -05002544 page_cache_release(page);
2545 return PTR_ERR(handle);
Alex Tomas64769242008-07-11 19:27:31 -04002546 }
2547
Theodore Ts'o47564bf2013-02-09 09:24:14 -05002548 lock_page(page);
2549 if (page->mapping != mapping) {
2550 /* The page got truncated from under us */
2551 unlock_page(page);
2552 page_cache_release(page);
Eric Sandeend5a0d4f2008-08-02 18:51:06 -04002553 ext4_journal_stop(handle);
Theodore Ts'o47564bf2013-02-09 09:24:14 -05002554 goto retry_grab;
Eric Sandeend5a0d4f2008-08-02 18:51:06 -04002555 }
Theodore Ts'o47564bf2013-02-09 09:24:14 -05002556 /* In case writeback began while the page was unlocked */
Dmitry Monakhov7afe5aa2013-08-28 14:30:47 -04002557 wait_for_stable_page(page);
Alex Tomas64769242008-07-11 19:27:31 -04002558
Christoph Hellwig6e1db882010-06-04 11:29:57 +02002559 ret = __block_write_begin(page, pos, len, ext4_da_get_block_prep);
Alex Tomas64769242008-07-11 19:27:31 -04002560 if (ret < 0) {
2561 unlock_page(page);
2562 ext4_journal_stop(handle);
Aneesh Kumar K.Vae4d5372008-09-13 13:10:25 -04002563 /*
2564 * block_write_begin may have instantiated a few blocks
2565 * outside i_size. Trim these off again. Don't need
2566 * i_size_read because we hold i_mutex.
2567 */
2568 if (pos + len > inode->i_size)
Jan Karab9a42072009-12-08 21:24:33 -05002569 ext4_truncate_failed_write(inode);
Theodore Ts'o47564bf2013-02-09 09:24:14 -05002570
2571 if (ret == -ENOSPC &&
2572 ext4_should_retry_alloc(inode->i_sb, &retries))
2573 goto retry_journal;
2574
2575 page_cache_release(page);
2576 return ret;
Alex Tomas64769242008-07-11 19:27:31 -04002577 }
2578
Theodore Ts'o47564bf2013-02-09 09:24:14 -05002579 *pagep = page;
Alex Tomas64769242008-07-11 19:27:31 -04002580 return ret;
2581}
2582
Mingming Cao632eaea2008-07-11 19:27:31 -04002583/*
2584 * Check if we should update i_disksize
2585 * when write to the end of file but not require block allocation
2586 */
2587static int ext4_da_should_update_i_disksize(struct page *page,
Theodore Ts'ode9a55b2009-06-14 17:45:34 -04002588 unsigned long offset)
Mingming Cao632eaea2008-07-11 19:27:31 -04002589{
2590 struct buffer_head *bh;
2591 struct inode *inode = page->mapping->host;
2592 unsigned int idx;
2593 int i;
2594
2595 bh = page_buffers(page);
2596 idx = offset >> inode->i_blkbits;
2597
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04002598 for (i = 0; i < idx; i++)
Mingming Cao632eaea2008-07-11 19:27:31 -04002599 bh = bh->b_this_page;
2600
Aneesh Kumar K.V29fa89d2009-05-12 16:30:27 -04002601 if (!buffer_mapped(bh) || (buffer_delay(bh)) || buffer_unwritten(bh))
Mingming Cao632eaea2008-07-11 19:27:31 -04002602 return 0;
2603 return 1;
2604}
2605
Alex Tomas64769242008-07-11 19:27:31 -04002606static int ext4_da_write_end(struct file *file,
Theodore Ts'ode9a55b2009-06-14 17:45:34 -04002607 struct address_space *mapping,
2608 loff_t pos, unsigned len, unsigned copied,
2609 struct page *page, void *fsdata)
Alex Tomas64769242008-07-11 19:27:31 -04002610{
2611 struct inode *inode = mapping->host;
2612 int ret = 0, ret2;
2613 handle_t *handle = ext4_journal_current_handle();
2614 loff_t new_i_size;
Mingming Cao632eaea2008-07-11 19:27:31 -04002615 unsigned long start, end;
Aneesh Kumar K.V79f0be82008-10-08 23:13:30 -04002616 int write_mode = (int)(unsigned long)fsdata;
2617
Theodore Ts'o74d553a2013-04-03 12:39:17 -04002618 if (write_mode == FALL_BACK_TO_NONDELALLOC)
2619 return ext4_write_end(file, mapping, pos,
2620 len, copied, page, fsdata);
Mingming Cao632eaea2008-07-11 19:27:31 -04002621
Theodore Ts'o9bffad12009-06-17 11:48:11 -04002622 trace_ext4_da_write_end(inode, pos, len, copied);
Mingming Cao632eaea2008-07-11 19:27:31 -04002623 start = pos & (PAGE_CACHE_SIZE - 1);
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04002624 end = start + copied - 1;
Alex Tomas64769242008-07-11 19:27:31 -04002625
2626 /*
2627 * generic_write_end() will run mark_inode_dirty() if i_size
2628 * changes. So let's piggyback the i_disksize mark_inode_dirty
2629 * into that.
2630 */
Alex Tomas64769242008-07-11 19:27:31 -04002631 new_i_size = pos + copied;
Andrea Arcangeliea51d132011-12-13 21:41:15 -05002632 if (copied && new_i_size > EXT4_I(inode)->i_disksize) {
Tao Ma9c3569b2012-12-10 14:05:57 -05002633 if (ext4_has_inline_data(inode) ||
2634 ext4_da_should_update_i_disksize(page, end)) {
Dmitry Monakhovee124d22014-08-30 23:34:06 -04002635 ext4_update_i_disksize(inode, new_i_size);
Aneesh Kumar K.Vcf17fea2008-09-13 13:06:18 -04002636 /* We need to mark inode dirty even if
2637 * new_i_size is less that inode->i_size
2638 * bu greater than i_disksize.(hint delalloc)
2639 */
2640 ext4_mark_inode_dirty(handle, inode);
Alex Tomas64769242008-07-11 19:27:31 -04002641 }
Mingming Cao632eaea2008-07-11 19:27:31 -04002642 }
Tao Ma9c3569b2012-12-10 14:05:57 -05002643
2644 if (write_mode != CONVERT_INLINE_DATA &&
2645 ext4_test_inode_state(inode, EXT4_STATE_MAY_INLINE_DATA) &&
2646 ext4_has_inline_data(inode))
2647 ret2 = ext4_da_write_inline_data_end(inode, pos, len, copied,
2648 page);
2649 else
2650 ret2 = generic_write_end(file, mapping, pos, len, copied,
Alex Tomas64769242008-07-11 19:27:31 -04002651 page, fsdata);
Tao Ma9c3569b2012-12-10 14:05:57 -05002652
Alex Tomas64769242008-07-11 19:27:31 -04002653 copied = ret2;
2654 if (ret2 < 0)
2655 ret = ret2;
2656 ret2 = ext4_journal_stop(handle);
2657 if (!ret)
2658 ret = ret2;
2659
2660 return ret ? ret : copied;
2661}
2662
Lukas Czernerd47992f2013-05-21 23:17:23 -04002663static void ext4_da_invalidatepage(struct page *page, unsigned int offset,
2664 unsigned int length)
Alex Tomas64769242008-07-11 19:27:31 -04002665{
Alex Tomas64769242008-07-11 19:27:31 -04002666 /*
2667 * Drop reserved blocks
2668 */
2669 BUG_ON(!PageLocked(page));
2670 if (!page_has_buffers(page))
2671 goto out;
2672
Lukas Czernerca99fdd2013-05-21 23:25:01 -04002673 ext4_da_page_release_reservation(page, offset, length);
Alex Tomas64769242008-07-11 19:27:31 -04002674
2675out:
Lukas Czernerd47992f2013-05-21 23:17:23 -04002676 ext4_invalidatepage(page, offset, length);
Alex Tomas64769242008-07-11 19:27:31 -04002677
2678 return;
2679}
2680
Theodore Ts'occd25062009-02-26 01:04:07 -05002681/*
2682 * Force all delayed allocation blocks to be allocated for a given inode.
2683 */
2684int ext4_alloc_da_blocks(struct inode *inode)
2685{
Theodore Ts'ofb40ba02009-09-16 19:30:40 -04002686 trace_ext4_alloc_da_blocks(inode);
2687
Theodore Ts'o71d4f7d2014-07-15 06:02:38 -04002688 if (!EXT4_I(inode)->i_reserved_data_blocks)
Theodore Ts'occd25062009-02-26 01:04:07 -05002689 return 0;
2690
2691 /*
2692 * We do something simple for now. The filemap_flush() will
2693 * also start triggering a write of the data blocks, which is
2694 * not strictly speaking necessary (and for users of
2695 * laptop_mode, not even desirable). However, to do otherwise
2696 * would require replicating code paths in:
Theodore Ts'ode9a55b2009-06-14 17:45:34 -04002697 *
Theodore Ts'o20970ba2013-06-06 14:00:46 -04002698 * ext4_writepages() ->
Theodore Ts'occd25062009-02-26 01:04:07 -05002699 * write_cache_pages() ---> (via passed in callback function)
2700 * __mpage_da_writepage() -->
2701 * mpage_add_bh_to_extent()
2702 * mpage_da_map_blocks()
2703 *
2704 * The problem is that write_cache_pages(), located in
2705 * mm/page-writeback.c, marks pages clean in preparation for
2706 * doing I/O, which is not desirable if we're not planning on
2707 * doing I/O at all.
2708 *
2709 * We could call write_cache_pages(), and then redirty all of
Wu Fengguang380cf092010-11-11 19:23:29 +08002710 * the pages by calling redirty_page_for_writepage() but that
Theodore Ts'occd25062009-02-26 01:04:07 -05002711 * would be ugly in the extreme. So instead we would need to
2712 * replicate parts of the code in the above functions,
Lucas De Marchi25985ed2011-03-30 22:57:33 -03002713 * simplifying them because we wouldn't actually intend to
Theodore Ts'occd25062009-02-26 01:04:07 -05002714 * write out the pages, but rather only collect contiguous
2715 * logical block extents, call the multi-block allocator, and
2716 * then update the buffer heads with the block allocations.
Theodore Ts'ode9a55b2009-06-14 17:45:34 -04002717 *
Theodore Ts'occd25062009-02-26 01:04:07 -05002718 * For now, though, we'll cheat by calling filemap_flush(),
2719 * which will map the blocks, and start the I/O, but not
2720 * actually wait for the I/O to complete.
2721 */
2722 return filemap_flush(inode->i_mapping);
2723}
Alex Tomas64769242008-07-11 19:27:31 -04002724
2725/*
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002726 * bmap() is special. It gets used by applications such as lilo and by
2727 * the swapper to find the on-disk block of a specific piece of data.
2728 *
2729 * Naturally, this is dangerous if the block concerned is still in the
Mingming Cao617ba132006-10-11 01:20:53 -07002730 * journal. If somebody makes a swapfile on an ext4 data-journaling
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002731 * filesystem and enables swap, then they may get a nasty shock when the
2732 * data getting swapped to that swapfile suddenly gets overwritten by
2733 * the original zero's written out previously to the journal and
2734 * awaiting writeback in the kernel's buffer cache.
2735 *
2736 * So, if we see any bmap calls here on a modified, data-journaled file,
2737 * take extra steps to flush any blocks which might be in the cache.
2738 */
Mingming Cao617ba132006-10-11 01:20:53 -07002739static sector_t ext4_bmap(struct address_space *mapping, sector_t block)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002740{
2741 struct inode *inode = mapping->host;
2742 journal_t *journal;
2743 int err;
2744
Tao Ma46c7f252012-12-10 14:04:52 -05002745 /*
2746 * We can get here for an inline file via the FIBMAP ioctl
2747 */
2748 if (ext4_has_inline_data(inode))
2749 return 0;
2750
Alex Tomas64769242008-07-11 19:27:31 -04002751 if (mapping_tagged(mapping, PAGECACHE_TAG_DIRTY) &&
2752 test_opt(inode->i_sb, DELALLOC)) {
2753 /*
2754 * With delalloc we want to sync the file
2755 * so that we can make sure we allocate
2756 * blocks for file
2757 */
2758 filemap_write_and_wait(mapping);
2759 }
2760
Theodore Ts'o19f5fb72010-01-24 14:34:07 -05002761 if (EXT4_JOURNAL(inode) &&
2762 ext4_test_inode_state(inode, EXT4_STATE_JDATA)) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002763 /*
2764 * This is a REALLY heavyweight approach, but the use of
2765 * bmap on dirty files is expected to be extremely rare:
2766 * only if we run lilo or swapon on a freshly made file
2767 * do we expect this to happen.
2768 *
2769 * (bmap requires CAP_SYS_RAWIO so this does not
2770 * represent an unprivileged user DOS attack --- we'd be
2771 * in trouble if mortal users could trigger this path at
2772 * will.)
2773 *
Mingming Cao617ba132006-10-11 01:20:53 -07002774 * NB. EXT4_STATE_JDATA is not set on files other than
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002775 * regular files. If somebody wants to bmap a directory
2776 * or symlink and gets confused because the buffer
2777 * hasn't yet been flushed to disk, they deserve
2778 * everything they get.
2779 */
2780
Theodore Ts'o19f5fb72010-01-24 14:34:07 -05002781 ext4_clear_inode_state(inode, EXT4_STATE_JDATA);
Mingming Cao617ba132006-10-11 01:20:53 -07002782 journal = EXT4_JOURNAL(inode);
Mingming Caodab291a2006-10-11 01:21:01 -07002783 jbd2_journal_lock_updates(journal);
2784 err = jbd2_journal_flush(journal);
2785 jbd2_journal_unlock_updates(journal);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002786
2787 if (err)
2788 return 0;
2789 }
2790
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04002791 return generic_block_bmap(mapping, block, ext4_get_block);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002792}
2793
Mingming Cao617ba132006-10-11 01:20:53 -07002794static int ext4_readpage(struct file *file, struct page *page)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002795{
Tao Ma46c7f252012-12-10 14:04:52 -05002796 int ret = -EAGAIN;
2797 struct inode *inode = page->mapping->host;
2798
Jiaying Zhang0562e0b2011-03-21 21:38:05 -04002799 trace_ext4_readpage(page);
Tao Ma46c7f252012-12-10 14:04:52 -05002800
2801 if (ext4_has_inline_data(inode))
2802 ret = ext4_readpage_inline(inode, page);
2803
2804 if (ret == -EAGAIN)
2805 return mpage_readpage(page, ext4_get_block);
2806
2807 return ret;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002808}
2809
2810static int
Mingming Cao617ba132006-10-11 01:20:53 -07002811ext4_readpages(struct file *file, struct address_space *mapping,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002812 struct list_head *pages, unsigned nr_pages)
2813{
Tao Ma46c7f252012-12-10 14:04:52 -05002814 struct inode *inode = mapping->host;
2815
2816 /* If the file has inline data, no need to do readpages. */
2817 if (ext4_has_inline_data(inode))
2818 return 0;
2819
Mingming Cao617ba132006-10-11 01:20:53 -07002820 return mpage_readpages(mapping, pages, nr_pages, ext4_get_block);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002821}
2822
Lukas Czernerd47992f2013-05-21 23:17:23 -04002823static void ext4_invalidatepage(struct page *page, unsigned int offset,
2824 unsigned int length)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002825{
Lukas Czernerca99fdd2013-05-21 23:25:01 -04002826 trace_ext4_invalidatepage(page, offset, length);
Jiaying Zhang0562e0b2011-03-21 21:38:05 -04002827
Jan Kara4520fb32012-12-25 13:28:54 -05002828 /* No journalling happens on data buffers when this function is used */
2829 WARN_ON(page_has_buffers(page) && buffer_jbd(page_buffers(page)));
2830
Lukas Czernerca99fdd2013-05-21 23:25:01 -04002831 block_invalidatepage(page, offset, length);
Jan Kara4520fb32012-12-25 13:28:54 -05002832}
2833
Jan Kara53e87262012-12-25 13:29:52 -05002834static int __ext4_journalled_invalidatepage(struct page *page,
Lukas Czernerca99fdd2013-05-21 23:25:01 -04002835 unsigned int offset,
2836 unsigned int length)
Jan Kara4520fb32012-12-25 13:28:54 -05002837{
2838 journal_t *journal = EXT4_JOURNAL(page->mapping->host);
2839
Lukas Czernerca99fdd2013-05-21 23:25:01 -04002840 trace_ext4_journalled_invalidatepage(page, offset, length);
Jan Kara4520fb32012-12-25 13:28:54 -05002841
Jiaying Zhang744692d2010-03-04 16:14:02 -05002842 /*
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002843 * If it's a full truncate we just forget about the pending dirtying
2844 */
Lukas Czernerca99fdd2013-05-21 23:25:01 -04002845 if (offset == 0 && length == PAGE_CACHE_SIZE)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002846 ClearPageChecked(page);
2847
Lukas Czernerca99fdd2013-05-21 23:25:01 -04002848 return jbd2_journal_invalidatepage(journal, page, offset, length);
Jan Kara53e87262012-12-25 13:29:52 -05002849}
2850
2851/* Wrapper for aops... */
2852static void ext4_journalled_invalidatepage(struct page *page,
Lukas Czernerd47992f2013-05-21 23:17:23 -04002853 unsigned int offset,
2854 unsigned int length)
Jan Kara53e87262012-12-25 13:29:52 -05002855{
Lukas Czernerca99fdd2013-05-21 23:25:01 -04002856 WARN_ON(__ext4_journalled_invalidatepage(page, offset, length) < 0);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002857}
2858
Mingming Cao617ba132006-10-11 01:20:53 -07002859static int ext4_releasepage(struct page *page, gfp_t wait)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002860{
Mingming Cao617ba132006-10-11 01:20:53 -07002861 journal_t *journal = EXT4_JOURNAL(page->mapping->host);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002862
Jiaying Zhang0562e0b2011-03-21 21:38:05 -04002863 trace_ext4_releasepage(page);
2864
Jan Karae1c36592013-03-10 22:19:00 -04002865 /* Page has dirty journalled data -> cannot release */
2866 if (PageChecked(page))
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002867 return 0;
Frank Mayhar03901312009-01-07 00:06:22 -05002868 if (journal)
2869 return jbd2_journal_try_to_free_buffers(journal, page, wait);
2870 else
2871 return try_to_free_buffers(page);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002872}
2873
2874/*
Theodore Ts'o2ed88682010-05-16 20:00:00 -04002875 * ext4_get_block used when preparing for a DIO write or buffer write.
2876 * We allocate an uinitialized extent if blocks haven't been allocated.
2877 * The extent will be converted to initialized after the IO is complete.
2878 */
Tao Maf19d5872012-12-10 14:05:51 -05002879int ext4_get_block_write(struct inode *inode, sector_t iblock,
Mingming Cao4c0425f2009-09-28 15:48:41 -04002880 struct buffer_head *bh_result, int create)
2881{
Jiaying Zhangc7064ef2010-03-02 13:28:44 -05002882 ext4_debug("ext4_get_block_write: inode %lu, create flag %d\n",
Mingming Cao8d5d02e2009-09-28 15:48:29 -04002883 inode->i_ino, create);
Theodore Ts'o2ed88682010-05-16 20:00:00 -04002884 return _ext4_get_block(inode, iblock, bh_result,
2885 EXT4_GET_BLOCKS_IO_CREATE_EXT);
Mingming Cao4c0425f2009-09-28 15:48:41 -04002886}
2887
Zheng Liu729f52c2012-07-09 16:29:29 -04002888static int ext4_get_block_write_nolock(struct inode *inode, sector_t iblock,
Anatol Pomozov8b0f1652012-11-08 15:07:16 -05002889 struct buffer_head *bh_result, int create)
Zheng Liu729f52c2012-07-09 16:29:29 -04002890{
Anatol Pomozov8b0f1652012-11-08 15:07:16 -05002891 ext4_debug("ext4_get_block_write_nolock: inode %lu, create flag %d\n",
2892 inode->i_ino, create);
2893 return _ext4_get_block(inode, iblock, bh_result,
2894 EXT4_GET_BLOCKS_NO_LOCK);
Zheng Liu729f52c2012-07-09 16:29:29 -04002895}
2896
Mingming Cao4c0425f2009-09-28 15:48:41 -04002897static void ext4_end_io_dio(struct kiocb *iocb, loff_t offset,
Christoph Hellwig7b7a8662013-09-04 15:04:39 +02002898 ssize_t size, void *private)
Mingming Cao4c0425f2009-09-28 15:48:41 -04002899{
2900 ext4_io_end_t *io_end = iocb->private;
Mingming Cao4c0425f2009-09-28 15:48:41 -04002901
Jan Kara97a851e2013-06-04 11:58:58 -04002902 /* if not async direct IO just return */
Christoph Hellwig7b7a8662013-09-04 15:04:39 +02002903 if (!io_end)
Jan Kara97a851e2013-06-04 11:58:58 -04002904 return;
Mingming4b70df12009-11-03 14:44:54 -05002905
Zheng Liu88635ca2011-12-28 19:00:25 -05002906 ext_debug("ext4_end_io_dio(): io_end 0x%p "
Joe Perchesace36ad2012-03-19 23:11:43 -04002907 "for inode %lu, iocb 0x%p, offset %llu, size %zd\n",
Mingming Cao8d5d02e2009-09-28 15:48:29 -04002908 iocb->private, io_end->inode->i_ino, iocb, offset,
2909 size);
Mingming Cao8d5d02e2009-09-28 15:48:29 -04002910
Theodore Ts'ob5a7e972011-12-12 10:53:02 -05002911 iocb->private = NULL;
Mingming Cao4c0425f2009-09-28 15:48:41 -04002912 io_end->offset = offset;
2913 io_end->size = size;
Christoph Hellwig7b7a8662013-09-04 15:04:39 +02002914 ext4_put_io_end(io_end);
Mingming Cao4c0425f2009-09-28 15:48:41 -04002915}
Jiaying Zhangc7064ef2010-03-02 13:28:44 -05002916
Mingming Cao4c0425f2009-09-28 15:48:41 -04002917/*
2918 * For ext4 extent files, ext4 will do direct-io write to holes,
2919 * preallocated extents, and those write extend the file, no need to
2920 * fall back to buffered IO.
2921 *
Lukas Czerner556615d2014-04-20 23:45:47 -04002922 * For holes, we fallocate those blocks, mark them as unwritten
Theodore Ts'o69c499d2012-11-29 21:13:48 -05002923 * If those blocks were preallocated, we mark sure they are split, but
Lukas Czerner556615d2014-04-20 23:45:47 -04002924 * still keep the range to write as unwritten.
Mingming Cao4c0425f2009-09-28 15:48:41 -04002925 *
Theodore Ts'o69c499d2012-11-29 21:13:48 -05002926 * The unwritten extents will be converted to written when DIO is completed.
Mingming Cao8d5d02e2009-09-28 15:48:29 -04002927 * For async direct IO, since the IO may still pending when return, we
Lucas De Marchi25985ed2011-03-30 22:57:33 -03002928 * set up an end_io call back function, which will do the conversion
Mingming Cao8d5d02e2009-09-28 15:48:29 -04002929 * when async direct IO completed.
Mingming Cao4c0425f2009-09-28 15:48:41 -04002930 *
2931 * If the O_DIRECT write will extend the file then add this inode to the
2932 * orphan list. So recovery will truncate it back to the original size
2933 * if the machine crashes during the write.
2934 *
2935 */
2936static ssize_t ext4_ext_direct_IO(int rw, struct kiocb *iocb,
Al Viro16b1f052014-03-04 22:14:00 -05002937 struct iov_iter *iter, loff_t offset)
Mingming Cao4c0425f2009-09-28 15:48:41 -04002938{
2939 struct file *file = iocb->ki_filp;
2940 struct inode *inode = file->f_mapping->host;
2941 ssize_t ret;
Al Viroa6cbcd42014-03-04 22:38:00 -05002942 size_t count = iov_iter_count(iter);
Theodore Ts'o69c499d2012-11-29 21:13:48 -05002943 int overwrite = 0;
2944 get_block_t *get_block_func = NULL;
2945 int dio_flags = 0;
Mingming Cao4c0425f2009-09-28 15:48:41 -04002946 loff_t final_size = offset + count;
Jan Kara97a851e2013-06-04 11:58:58 -04002947 ext4_io_end_t *io_end = NULL;
Zheng Liu729f52c2012-07-09 16:29:29 -04002948
Theodore Ts'o69c499d2012-11-29 21:13:48 -05002949 /* Use the old path for reads and writes beyond i_size. */
2950 if (rw != WRITE || final_size > inode->i_size)
Al Viro16b1f052014-03-04 22:14:00 -05002951 return ext4_ind_direct_IO(rw, iocb, iter, offset);
Zheng Liu4bd809d2012-07-22 20:19:31 -04002952
Theodore Ts'o69c499d2012-11-29 21:13:48 -05002953 BUG_ON(iocb->private == NULL);
Zheng Liu4bd809d2012-07-22 20:19:31 -04002954
Jan Karae8340392013-06-04 14:27:38 -04002955 /*
2956 * Make all waiters for direct IO properly wait also for extent
2957 * conversion. This also disallows race between truncate() and
2958 * overwrite DIO as i_dio_count needs to be incremented under i_mutex.
2959 */
2960 if (rw == WRITE)
2961 atomic_inc(&inode->i_dio_count);
2962
Theodore Ts'o69c499d2012-11-29 21:13:48 -05002963 /* If we do a overwrite dio, i_mutex locking can be released */
2964 overwrite = *((int *)iocb->private);
Zheng Liu4bd809d2012-07-22 20:19:31 -04002965
Theodore Ts'o69c499d2012-11-29 21:13:48 -05002966 if (overwrite) {
Theodore Ts'o69c499d2012-11-29 21:13:48 -05002967 down_read(&EXT4_I(inode)->i_data_sem);
2968 mutex_unlock(&inode->i_mutex);
Mingming Cao4c0425f2009-09-28 15:48:41 -04002969 }
Mingming Cao8d5d02e2009-09-28 15:48:29 -04002970
Theodore Ts'o69c499d2012-11-29 21:13:48 -05002971 /*
2972 * We could direct write to holes and fallocate.
2973 *
2974 * Allocated blocks to fill the hole are marked as
Lukas Czerner556615d2014-04-20 23:45:47 -04002975 * unwritten to prevent parallel buffered read to expose
Theodore Ts'o69c499d2012-11-29 21:13:48 -05002976 * the stale data before DIO complete the data IO.
2977 *
2978 * As to previously fallocated extents, ext4 get_block will
2979 * just simply mark the buffer mapped but still keep the
Lukas Czerner556615d2014-04-20 23:45:47 -04002980 * extents unwritten.
Theodore Ts'o69c499d2012-11-29 21:13:48 -05002981 *
2982 * For non AIO case, we will convert those unwritten extents
2983 * to written after return back from blockdev_direct_IO.
2984 *
2985 * For async DIO, the conversion needs to be deferred when the
2986 * IO is completed. The ext4 end_io callback function will be
2987 * called to take care of the conversion work. Here for async
2988 * case, we allocate an io_end structure to hook to the iocb.
2989 */
2990 iocb->private = NULL;
2991 ext4_inode_aio_set(inode, NULL);
2992 if (!is_sync_kiocb(iocb)) {
Jan Kara97a851e2013-06-04 11:58:58 -04002993 io_end = ext4_init_io_end(inode, GFP_NOFS);
Theodore Ts'o69c499d2012-11-29 21:13:48 -05002994 if (!io_end) {
2995 ret = -ENOMEM;
2996 goto retake_lock;
2997 }
Jan Kara97a851e2013-06-04 11:58:58 -04002998 /*
2999 * Grab reference for DIO. Will be dropped in ext4_end_io_dio()
3000 */
3001 iocb->private = ext4_get_io_end(io_end);
Theodore Ts'o69c499d2012-11-29 21:13:48 -05003002 /*
3003 * we save the io structure for current async direct
3004 * IO, so that later ext4_map_blocks() could flag the
3005 * io structure whether there is a unwritten extents
3006 * needs to be converted when IO is completed.
3007 */
3008 ext4_inode_aio_set(inode, io_end);
3009 }
3010
3011 if (overwrite) {
3012 get_block_func = ext4_get_block_write_nolock;
3013 } else {
3014 get_block_func = ext4_get_block_write;
3015 dio_flags = DIO_LOCKING;
3016 }
3017 ret = __blockdev_direct_IO(rw, iocb, inode,
Al Viro31b14032014-03-05 01:33:16 -05003018 inode->i_sb->s_bdev, iter,
3019 offset,
Theodore Ts'o69c499d2012-11-29 21:13:48 -05003020 get_block_func,
3021 ext4_end_io_dio,
3022 NULL,
3023 dio_flags);
3024
Theodore Ts'oa5499842013-05-11 19:07:42 -04003025 /*
Jan Kara97a851e2013-06-04 11:58:58 -04003026 * Put our reference to io_end. This can free the io_end structure e.g.
3027 * in sync IO case or in case of error. It can even perform extent
3028 * conversion if all bios we submitted finished before we got here.
3029 * Note that in that case iocb->private can be already set to NULL
3030 * here.
Theodore Ts'oa5499842013-05-11 19:07:42 -04003031 */
Jan Kara97a851e2013-06-04 11:58:58 -04003032 if (io_end) {
3033 ext4_inode_aio_set(inode, NULL);
3034 ext4_put_io_end(io_end);
3035 /*
3036 * When no IO was submitted ext4_end_io_dio() was not
3037 * called so we have to put iocb's reference.
3038 */
3039 if (ret <= 0 && ret != -EIOCBQUEUED && iocb->private) {
3040 WARN_ON(iocb->private != io_end);
3041 WARN_ON(io_end->flag & EXT4_IO_END_UNWRITTEN);
Jan Kara97a851e2013-06-04 11:58:58 -04003042 ext4_put_io_end(io_end);
3043 iocb->private = NULL;
3044 }
3045 }
3046 if (ret > 0 && !overwrite && ext4_test_inode_state(inode,
Theodore Ts'o69c499d2012-11-29 21:13:48 -05003047 EXT4_STATE_DIO_UNWRITTEN)) {
3048 int err;
3049 /*
3050 * for non AIO case, since the IO is already
3051 * completed, we could do the conversion right here
3052 */
Jan Kara6b523df2013-06-04 13:21:11 -04003053 err = ext4_convert_unwritten_extents(NULL, inode,
Theodore Ts'o69c499d2012-11-29 21:13:48 -05003054 offset, ret);
3055 if (err < 0)
3056 ret = err;
3057 ext4_clear_inode_state(inode, EXT4_STATE_DIO_UNWRITTEN);
3058 }
3059
3060retake_lock:
Jan Karae8340392013-06-04 14:27:38 -04003061 if (rw == WRITE)
3062 inode_dio_done(inode);
Theodore Ts'o69c499d2012-11-29 21:13:48 -05003063 /* take i_mutex locking again if we do a ovewrite dio */
3064 if (overwrite) {
Theodore Ts'o69c499d2012-11-29 21:13:48 -05003065 up_read(&EXT4_I(inode)->i_data_sem);
3066 mutex_lock(&inode->i_mutex);
3067 }
3068
3069 return ret;
Mingming Cao4c0425f2009-09-28 15:48:41 -04003070}
3071
3072static ssize_t ext4_direct_IO(int rw, struct kiocb *iocb,
Al Virod8d3d942014-03-04 21:27:34 -05003073 struct iov_iter *iter, loff_t offset)
Mingming Cao4c0425f2009-09-28 15:48:41 -04003074{
3075 struct file *file = iocb->ki_filp;
3076 struct inode *inode = file->f_mapping->host;
Al Viroa6cbcd42014-03-04 22:38:00 -05003077 size_t count = iov_iter_count(iter);
Jiaying Zhang0562e0b2011-03-21 21:38:05 -04003078 ssize_t ret;
Mingming Cao4c0425f2009-09-28 15:48:41 -04003079
Theodore Ts'o84ebd792011-08-31 11:56:51 -04003080 /*
3081 * If we are doing data journalling we don't support O_DIRECT
3082 */
3083 if (ext4_should_journal_data(inode))
3084 return 0;
3085
Tao Ma46c7f252012-12-10 14:04:52 -05003086 /* Let buffer I/O handle the inline data case. */
3087 if (ext4_has_inline_data(inode))
3088 return 0;
3089
Al Viroa6cbcd42014-03-04 22:38:00 -05003090 trace_ext4_direct_IO_enter(inode, offset, count, rw);
Dmitry Monakhov12e9b892010-05-16 22:00:00 -04003091 if (ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS))
Al Viro16b1f052014-03-04 22:14:00 -05003092 ret = ext4_ext_direct_IO(rw, iocb, iter, offset);
Jiaying Zhang0562e0b2011-03-21 21:38:05 -04003093 else
Al Viro16b1f052014-03-04 22:14:00 -05003094 ret = ext4_ind_direct_IO(rw, iocb, iter, offset);
Al Viroa6cbcd42014-03-04 22:38:00 -05003095 trace_ext4_direct_IO_exit(inode, offset, count, rw, ret);
Jiaying Zhang0562e0b2011-03-21 21:38:05 -04003096 return ret;
Mingming Cao4c0425f2009-09-28 15:48:41 -04003097}
3098
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003099/*
Mingming Cao617ba132006-10-11 01:20:53 -07003100 * Pages can be marked dirty completely asynchronously from ext4's journalling
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003101 * activity. By filemap_sync_pte(), try_to_unmap_one(), etc. We cannot do
3102 * much here because ->set_page_dirty is called under VFS locks. The page is
3103 * not necessarily locked.
3104 *
3105 * We cannot just dirty the page and leave attached buffers clean, because the
3106 * buffers' dirty state is "definitive". We cannot just set the buffers dirty
3107 * or jbddirty because all the journalling code will explode.
3108 *
3109 * So what we do is to mark the page "pending dirty" and next time writepage
3110 * is called, propagate that into the buffers appropriately.
3111 */
Mingming Cao617ba132006-10-11 01:20:53 -07003112static int ext4_journalled_set_page_dirty(struct page *page)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003113{
3114 SetPageChecked(page);
3115 return __set_page_dirty_nobuffers(page);
3116}
3117
Theodore Ts'o74d553a2013-04-03 12:39:17 -04003118static const struct address_space_operations ext4_aops = {
Hisashi Hifumi8ab22b92008-07-28 15:46:36 -07003119 .readpage = ext4_readpage,
3120 .readpages = ext4_readpages,
Aneesh Kumar K.V43ce1d22009-06-14 17:58:45 -04003121 .writepage = ext4_writepage,
Theodore Ts'o20970ba2013-06-06 14:00:46 -04003122 .writepages = ext4_writepages,
Hisashi Hifumi8ab22b92008-07-28 15:46:36 -07003123 .write_begin = ext4_write_begin,
Theodore Ts'o74d553a2013-04-03 12:39:17 -04003124 .write_end = ext4_write_end,
Hisashi Hifumi8ab22b92008-07-28 15:46:36 -07003125 .bmap = ext4_bmap,
3126 .invalidatepage = ext4_invalidatepage,
3127 .releasepage = ext4_releasepage,
3128 .direct_IO = ext4_direct_IO,
3129 .migratepage = buffer_migrate_page,
3130 .is_partially_uptodate = block_is_partially_uptodate,
Andi Kleenaa261f52009-09-16 11:50:16 +02003131 .error_remove_page = generic_error_remove_page,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003132};
3133
Mingming Cao617ba132006-10-11 01:20:53 -07003134static const struct address_space_operations ext4_journalled_aops = {
Hisashi Hifumi8ab22b92008-07-28 15:46:36 -07003135 .readpage = ext4_readpage,
3136 .readpages = ext4_readpages,
Aneesh Kumar K.V43ce1d22009-06-14 17:58:45 -04003137 .writepage = ext4_writepage,
Theodore Ts'o20970ba2013-06-06 14:00:46 -04003138 .writepages = ext4_writepages,
Hisashi Hifumi8ab22b92008-07-28 15:46:36 -07003139 .write_begin = ext4_write_begin,
3140 .write_end = ext4_journalled_write_end,
3141 .set_page_dirty = ext4_journalled_set_page_dirty,
3142 .bmap = ext4_bmap,
Jan Kara4520fb32012-12-25 13:28:54 -05003143 .invalidatepage = ext4_journalled_invalidatepage,
Hisashi Hifumi8ab22b92008-07-28 15:46:36 -07003144 .releasepage = ext4_releasepage,
Theodore Ts'o84ebd792011-08-31 11:56:51 -04003145 .direct_IO = ext4_direct_IO,
Hisashi Hifumi8ab22b92008-07-28 15:46:36 -07003146 .is_partially_uptodate = block_is_partially_uptodate,
Andi Kleenaa261f52009-09-16 11:50:16 +02003147 .error_remove_page = generic_error_remove_page,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003148};
3149
Alex Tomas64769242008-07-11 19:27:31 -04003150static const struct address_space_operations ext4_da_aops = {
Hisashi Hifumi8ab22b92008-07-28 15:46:36 -07003151 .readpage = ext4_readpage,
3152 .readpages = ext4_readpages,
Aneesh Kumar K.V43ce1d22009-06-14 17:58:45 -04003153 .writepage = ext4_writepage,
Theodore Ts'o20970ba2013-06-06 14:00:46 -04003154 .writepages = ext4_writepages,
Hisashi Hifumi8ab22b92008-07-28 15:46:36 -07003155 .write_begin = ext4_da_write_begin,
3156 .write_end = ext4_da_write_end,
3157 .bmap = ext4_bmap,
3158 .invalidatepage = ext4_da_invalidatepage,
3159 .releasepage = ext4_releasepage,
3160 .direct_IO = ext4_direct_IO,
3161 .migratepage = buffer_migrate_page,
3162 .is_partially_uptodate = block_is_partially_uptodate,
Andi Kleenaa261f52009-09-16 11:50:16 +02003163 .error_remove_page = generic_error_remove_page,
Alex Tomas64769242008-07-11 19:27:31 -04003164};
3165
Mingming Cao617ba132006-10-11 01:20:53 -07003166void ext4_set_aops(struct inode *inode)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003167{
Lukas Czerner3d2b1582012-02-20 17:53:00 -05003168 switch (ext4_inode_journal_mode(inode)) {
3169 case EXT4_INODE_ORDERED_DATA_MODE:
Theodore Ts'o74d553a2013-04-03 12:39:17 -04003170 ext4_set_inode_state(inode, EXT4_STATE_ORDERED_MODE);
Lukas Czerner3d2b1582012-02-20 17:53:00 -05003171 break;
3172 case EXT4_INODE_WRITEBACK_DATA_MODE:
Theodore Ts'o74d553a2013-04-03 12:39:17 -04003173 ext4_clear_inode_state(inode, EXT4_STATE_ORDERED_MODE);
Lukas Czerner3d2b1582012-02-20 17:53:00 -05003174 break;
3175 case EXT4_INODE_JOURNAL_DATA_MODE:
Mingming Cao617ba132006-10-11 01:20:53 -07003176 inode->i_mapping->a_ops = &ext4_journalled_aops;
Theodore Ts'o74d553a2013-04-03 12:39:17 -04003177 return;
Lukas Czerner3d2b1582012-02-20 17:53:00 -05003178 default:
3179 BUG();
3180 }
Theodore Ts'o74d553a2013-04-03 12:39:17 -04003181 if (test_opt(inode->i_sb, DELALLOC))
3182 inode->i_mapping->a_ops = &ext4_da_aops;
3183 else
3184 inode->i_mapping->a_ops = &ext4_aops;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003185}
3186
Lukas Czernerd863dc32013-05-27 23:32:35 -04003187/*
Lukas Czernerd863dc32013-05-27 23:32:35 -04003188 * ext4_block_zero_page_range() zeros out a mapping of length 'length'
3189 * starting from file offset 'from'. The range to be zero'd must
3190 * be contained with in one block. If the specified range exceeds
3191 * the end of the block it will be shortened to end of the block
3192 * that cooresponds to 'from'
3193 */
Matthew Wilcox94350ab2014-03-24 15:09:16 -04003194static int ext4_block_zero_page_range(handle_t *handle,
Lukas Czernerd863dc32013-05-27 23:32:35 -04003195 struct address_space *mapping, loff_t from, loff_t length)
3196{
3197 ext4_fsblk_t index = from >> PAGE_CACHE_SHIFT;
3198 unsigned offset = from & (PAGE_CACHE_SIZE-1);
3199 unsigned blocksize, max, pos;
3200 ext4_lblk_t iblock;
3201 struct inode *inode = mapping->host;
3202 struct buffer_head *bh;
3203 struct page *page;
3204 int err = 0;
3205
3206 page = find_or_create_page(mapping, from >> PAGE_CACHE_SHIFT,
3207 mapping_gfp_mask(mapping) & ~__GFP_FS);
3208 if (!page)
3209 return -ENOMEM;
3210
3211 blocksize = inode->i_sb->s_blocksize;
3212 max = blocksize - (offset & (blocksize - 1));
3213
3214 /*
3215 * correct length if it does not fall between
3216 * 'from' and the end of the block
3217 */
3218 if (length > max || length < 0)
3219 length = max;
3220
3221 iblock = index << (PAGE_CACHE_SHIFT - inode->i_sb->s_blocksize_bits);
3222
3223 if (!page_has_buffers(page))
3224 create_empty_buffers(page, blocksize, 0);
3225
3226 /* Find the buffer that contains "offset" */
3227 bh = page_buffers(page);
3228 pos = blocksize;
3229 while (offset >= pos) {
3230 bh = bh->b_this_page;
3231 iblock++;
3232 pos += blocksize;
3233 }
Lukas Czernerd863dc32013-05-27 23:32:35 -04003234 if (buffer_freed(bh)) {
3235 BUFFER_TRACE(bh, "freed: skip");
3236 goto unlock;
3237 }
Lukas Czernerd863dc32013-05-27 23:32:35 -04003238 if (!buffer_mapped(bh)) {
3239 BUFFER_TRACE(bh, "unmapped");
3240 ext4_get_block(inode, iblock, bh, 0);
3241 /* unmapped? It's a hole - nothing to do */
3242 if (!buffer_mapped(bh)) {
3243 BUFFER_TRACE(bh, "still unmapped");
3244 goto unlock;
3245 }
3246 }
3247
3248 /* Ok, it's mapped. Make sure it's up-to-date */
3249 if (PageUptodate(page))
3250 set_buffer_uptodate(bh);
3251
3252 if (!buffer_uptodate(bh)) {
3253 err = -EIO;
3254 ll_rw_block(READ, 1, &bh);
3255 wait_on_buffer(bh);
3256 /* Uhhuh. Read error. Complain and punt. */
3257 if (!buffer_uptodate(bh))
3258 goto unlock;
3259 }
Lukas Czernerd863dc32013-05-27 23:32:35 -04003260 if (ext4_should_journal_data(inode)) {
3261 BUFFER_TRACE(bh, "get write access");
3262 err = ext4_journal_get_write_access(handle, bh);
3263 if (err)
3264 goto unlock;
3265 }
Lukas Czernerd863dc32013-05-27 23:32:35 -04003266 zero_user(page, offset, length);
Lukas Czernerd863dc32013-05-27 23:32:35 -04003267 BUFFER_TRACE(bh, "zeroed end of block");
3268
Lukas Czernerd863dc32013-05-27 23:32:35 -04003269 if (ext4_should_journal_data(inode)) {
3270 err = ext4_handle_dirty_metadata(handle, inode, bh);
Lukas Czerner0713ed02013-05-27 23:32:35 -04003271 } else {
jon ernst353eefd2013-07-01 08:12:39 -04003272 err = 0;
Lukas Czernerd863dc32013-05-27 23:32:35 -04003273 mark_buffer_dirty(bh);
Lukas Czerner0713ed02013-05-27 23:32:35 -04003274 if (ext4_test_inode_state(inode, EXT4_STATE_ORDERED_MODE))
3275 err = ext4_jbd2_file_inode(handle, inode);
3276 }
Lukas Czernerd863dc32013-05-27 23:32:35 -04003277
3278unlock:
3279 unlock_page(page);
3280 page_cache_release(page);
3281 return err;
3282}
3283
Matthew Wilcox94350ab2014-03-24 15:09:16 -04003284/*
3285 * ext4_block_truncate_page() zeroes out a mapping from file offset `from'
3286 * up to the end of the block which corresponds to `from'.
3287 * This required during truncate. We need to physically zero the tail end
3288 * of that block so it doesn't yield old data if the file is later grown.
3289 */
Stephen Hemmingerc1978552014-05-12 10:50:23 -04003290static int ext4_block_truncate_page(handle_t *handle,
Matthew Wilcox94350ab2014-03-24 15:09:16 -04003291 struct address_space *mapping, loff_t from)
3292{
3293 unsigned offset = from & (PAGE_CACHE_SIZE-1);
3294 unsigned length;
3295 unsigned blocksize;
3296 struct inode *inode = mapping->host;
3297
3298 blocksize = inode->i_sb->s_blocksize;
3299 length = blocksize - (offset & (blocksize - 1));
3300
3301 return ext4_block_zero_page_range(handle, mapping, from, length);
3302}
3303
Lukas Czernera87dd182013-05-27 23:32:35 -04003304int ext4_zero_partial_blocks(handle_t *handle, struct inode *inode,
3305 loff_t lstart, loff_t length)
3306{
3307 struct super_block *sb = inode->i_sb;
3308 struct address_space *mapping = inode->i_mapping;
Lukas Czernere1be3a92013-07-01 08:12:39 -04003309 unsigned partial_start, partial_end;
Lukas Czernera87dd182013-05-27 23:32:35 -04003310 ext4_fsblk_t start, end;
3311 loff_t byte_end = (lstart + length - 1);
3312 int err = 0;
3313
Lukas Czernere1be3a92013-07-01 08:12:39 -04003314 partial_start = lstart & (sb->s_blocksize - 1);
3315 partial_end = byte_end & (sb->s_blocksize - 1);
3316
Lukas Czernera87dd182013-05-27 23:32:35 -04003317 start = lstart >> sb->s_blocksize_bits;
3318 end = byte_end >> sb->s_blocksize_bits;
3319
3320 /* Handle partial zero within the single block */
Lukas Czernere1be3a92013-07-01 08:12:39 -04003321 if (start == end &&
3322 (partial_start || (partial_end != sb->s_blocksize - 1))) {
Lukas Czernera87dd182013-05-27 23:32:35 -04003323 err = ext4_block_zero_page_range(handle, mapping,
3324 lstart, length);
3325 return err;
3326 }
3327 /* Handle partial zero out on the start of the range */
Lukas Czernere1be3a92013-07-01 08:12:39 -04003328 if (partial_start) {
Lukas Czernera87dd182013-05-27 23:32:35 -04003329 err = ext4_block_zero_page_range(handle, mapping,
3330 lstart, sb->s_blocksize);
3331 if (err)
3332 return err;
3333 }
3334 /* Handle partial zero out on the end of the range */
Lukas Czernere1be3a92013-07-01 08:12:39 -04003335 if (partial_end != sb->s_blocksize - 1)
Lukas Czernera87dd182013-05-27 23:32:35 -04003336 err = ext4_block_zero_page_range(handle, mapping,
Lukas Czernere1be3a92013-07-01 08:12:39 -04003337 byte_end - partial_end,
3338 partial_end + 1);
Lukas Czernera87dd182013-05-27 23:32:35 -04003339 return err;
3340}
3341
Duane Griffin91ef4ca2008-07-11 19:27:31 -04003342int ext4_can_truncate(struct inode *inode)
3343{
Duane Griffin91ef4ca2008-07-11 19:27:31 -04003344 if (S_ISREG(inode->i_mode))
3345 return 1;
3346 if (S_ISDIR(inode->i_mode))
3347 return 1;
3348 if (S_ISLNK(inode->i_mode))
3349 return !ext4_inode_is_fast_symlink(inode);
3350 return 0;
3351}
3352
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003353/*
Allison Hendersona4bb6b62011-05-25 07:41:50 -04003354 * ext4_punch_hole: punches a hole in a file by releaseing the blocks
3355 * associated with the given offset and length
3356 *
3357 * @inode: File inode
3358 * @offset: The offset where the hole will begin
3359 * @len: The length of the hole
3360 *
Anatol Pomozov4907cb72012-09-01 10:31:09 -07003361 * Returns: 0 on success or negative on failure
Allison Hendersona4bb6b62011-05-25 07:41:50 -04003362 */
3363
Ashish Sangwanaeb28172013-07-01 08:12:38 -04003364int ext4_punch_hole(struct inode *inode, loff_t offset, loff_t length)
Allison Hendersona4bb6b62011-05-25 07:41:50 -04003365{
Theodore Ts'o26a4c0c2013-04-03 12:45:17 -04003366 struct super_block *sb = inode->i_sb;
3367 ext4_lblk_t first_block, stop_block;
3368 struct address_space *mapping = inode->i_mapping;
Lukas Czernera87dd182013-05-27 23:32:35 -04003369 loff_t first_block_offset, last_block_offset;
Theodore Ts'o26a4c0c2013-04-03 12:45:17 -04003370 handle_t *handle;
3371 unsigned int credits;
3372 int ret = 0;
3373
Allison Hendersona4bb6b62011-05-25 07:41:50 -04003374 if (!S_ISREG(inode->i_mode))
Allison Henderson73355192012-03-21 22:23:31 -04003375 return -EOPNOTSUPP;
Allison Hendersona4bb6b62011-05-25 07:41:50 -04003376
Lukas Czernerb8a86842014-03-18 18:05:35 -04003377 trace_ext4_punch_hole(inode, offset, length, 0);
Zheng Liuaaddea82013-01-16 20:21:26 -05003378
Theodore Ts'o26a4c0c2013-04-03 12:45:17 -04003379 /*
3380 * Write out all dirty pages to avoid race conditions
3381 * Then release them.
3382 */
3383 if (mapping->nrpages && mapping_tagged(mapping, PAGECACHE_TAG_DIRTY)) {
3384 ret = filemap_write_and_wait_range(mapping, offset,
3385 offset + length - 1);
3386 if (ret)
3387 return ret;
3388 }
3389
3390 mutex_lock(&inode->i_mutex);
Lukas Czerner9ef06ce2014-04-12 09:47:00 -04003391
Theodore Ts'o26a4c0c2013-04-03 12:45:17 -04003392 /* No need to punch hole beyond i_size */
3393 if (offset >= inode->i_size)
3394 goto out_mutex;
3395
3396 /*
3397 * If the hole extends beyond i_size, set the hole
3398 * to end after the page that contains i_size
3399 */
3400 if (offset + length > inode->i_size) {
3401 length = inode->i_size +
3402 PAGE_CACHE_SIZE - (inode->i_size & (PAGE_CACHE_SIZE - 1)) -
3403 offset;
3404 }
3405
Jan Karaa3612932013-08-16 21:19:41 -04003406 if (offset & (sb->s_blocksize - 1) ||
3407 (offset + length) & (sb->s_blocksize - 1)) {
3408 /*
3409 * Attach jinode to inode for jbd2 if we do any zeroing of
3410 * partial block
3411 */
3412 ret = ext4_inode_attach_jinode(inode);
3413 if (ret < 0)
3414 goto out_mutex;
3415
3416 }
3417
Lukas Czernera87dd182013-05-27 23:32:35 -04003418 first_block_offset = round_up(offset, sb->s_blocksize);
3419 last_block_offset = round_down((offset + length), sb->s_blocksize) - 1;
Theodore Ts'o26a4c0c2013-04-03 12:45:17 -04003420
Lukas Czernera87dd182013-05-27 23:32:35 -04003421 /* Now release the pages and zero block aligned part of pages*/
3422 if (last_block_offset > first_block_offset)
3423 truncate_pagecache_range(inode, first_block_offset,
3424 last_block_offset);
Theodore Ts'o26a4c0c2013-04-03 12:45:17 -04003425
3426 /* Wait all existing dio workers, newcomers will block on i_mutex */
3427 ext4_inode_block_unlocked_dio(inode);
Theodore Ts'o26a4c0c2013-04-03 12:45:17 -04003428 inode_dio_wait(inode);
3429
3430 if (ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS))
3431 credits = ext4_writepage_trans_blocks(inode);
3432 else
3433 credits = ext4_blocks_for_truncate(inode);
3434 handle = ext4_journal_start(inode, EXT4_HT_TRUNCATE, credits);
3435 if (IS_ERR(handle)) {
3436 ret = PTR_ERR(handle);
3437 ext4_std_error(sb, ret);
3438 goto out_dio;
3439 }
3440
Lukas Czernera87dd182013-05-27 23:32:35 -04003441 ret = ext4_zero_partial_blocks(handle, inode, offset,
3442 length);
3443 if (ret)
3444 goto out_stop;
Theodore Ts'o26a4c0c2013-04-03 12:45:17 -04003445
3446 first_block = (offset + sb->s_blocksize - 1) >>
3447 EXT4_BLOCK_SIZE_BITS(sb);
3448 stop_block = (offset + length) >> EXT4_BLOCK_SIZE_BITS(sb);
3449
3450 /* If there are no blocks to remove, return now */
3451 if (first_block >= stop_block)
3452 goto out_stop;
3453
3454 down_write(&EXT4_I(inode)->i_data_sem);
3455 ext4_discard_preallocations(inode);
3456
3457 ret = ext4_es_remove_extent(inode, first_block,
3458 stop_block - first_block);
3459 if (ret) {
3460 up_write(&EXT4_I(inode)->i_data_sem);
3461 goto out_stop;
3462 }
3463
3464 if (ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS))
3465 ret = ext4_ext_remove_space(inode, first_block,
3466 stop_block - 1);
3467 else
Lukas Czerner4f579ae2014-07-15 06:03:38 -04003468 ret = ext4_ind_remove_space(handle, inode, first_block,
Theodore Ts'o26a4c0c2013-04-03 12:45:17 -04003469 stop_block);
3470
Theodore Ts'o819c4922013-04-03 12:47:17 -04003471 up_write(&EXT4_I(inode)->i_data_sem);
Theodore Ts'o26a4c0c2013-04-03 12:45:17 -04003472 if (IS_SYNC(inode))
3473 ext4_handle_sync(handle);
Maxim Patlasove251f9b2014-02-20 16:58:05 -05003474
3475 /* Now release the pages again to reduce race window */
3476 if (last_block_offset > first_block_offset)
3477 truncate_pagecache_range(inode, first_block_offset,
3478 last_block_offset);
3479
Theodore Ts'o26a4c0c2013-04-03 12:45:17 -04003480 inode->i_mtime = inode->i_ctime = ext4_current_time(inode);
3481 ext4_mark_inode_dirty(handle, inode);
3482out_stop:
3483 ext4_journal_stop(handle);
3484out_dio:
3485 ext4_inode_resume_unlocked_dio(inode);
3486out_mutex:
3487 mutex_unlock(&inode->i_mutex);
3488 return ret;
Allison Hendersona4bb6b62011-05-25 07:41:50 -04003489}
3490
Jan Karaa3612932013-08-16 21:19:41 -04003491int ext4_inode_attach_jinode(struct inode *inode)
3492{
3493 struct ext4_inode_info *ei = EXT4_I(inode);
3494 struct jbd2_inode *jinode;
3495
3496 if (ei->jinode || !EXT4_SB(inode->i_sb)->s_journal)
3497 return 0;
3498
3499 jinode = jbd2_alloc_inode(GFP_KERNEL);
3500 spin_lock(&inode->i_lock);
3501 if (!ei->jinode) {
3502 if (!jinode) {
3503 spin_unlock(&inode->i_lock);
3504 return -ENOMEM;
3505 }
3506 ei->jinode = jinode;
3507 jbd2_journal_init_jbd_inode(ei->jinode, inode);
3508 jinode = NULL;
3509 }
3510 spin_unlock(&inode->i_lock);
3511 if (unlikely(jinode != NULL))
3512 jbd2_free_inode(jinode);
3513 return 0;
3514}
3515
Allison Hendersona4bb6b62011-05-25 07:41:50 -04003516/*
Mingming Cao617ba132006-10-11 01:20:53 -07003517 * ext4_truncate()
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003518 *
Mingming Cao617ba132006-10-11 01:20:53 -07003519 * We block out ext4_get_block() block instantiations across the entire
3520 * transaction, and VFS/VM ensures that ext4_truncate() cannot run
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003521 * simultaneously on behalf of the same inode.
3522 *
Justin P. Mattock42b2aa82011-11-28 20:31:00 -08003523 * As we work through the truncate and commit bits of it to the journal there
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003524 * is one core, guiding principle: the file's tree must always be consistent on
3525 * disk. We must be able to restart the truncate after a crash.
3526 *
3527 * The file's tree may be transiently inconsistent in memory (although it
3528 * probably isn't), but whenever we close off and commit a journal transaction,
3529 * the contents of (the filesystem + the journal) must be consistent and
3530 * restartable. It's pretty simple, really: bottom up, right to left (although
3531 * left-to-right works OK too).
3532 *
3533 * Note that at recovery time, journal replay occurs *before* the restart of
3534 * truncate against the orphan inode list.
3535 *
3536 * The committed inode has the new, desired i_size (which is the same as
Mingming Cao617ba132006-10-11 01:20:53 -07003537 * i_disksize in this case). After a crash, ext4_orphan_cleanup() will see
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003538 * that this inode's truncate did not complete and it will again call
Mingming Cao617ba132006-10-11 01:20:53 -07003539 * ext4_truncate() to have another go. So there will be instantiated blocks
3540 * to the right of the truncation point in a crashed ext4 filesystem. But
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003541 * that's fine - as long as they are linked from the inode, the post-crash
Mingming Cao617ba132006-10-11 01:20:53 -07003542 * ext4_truncate() run will find them and release them.
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003543 */
Mingming Cao617ba132006-10-11 01:20:53 -07003544void ext4_truncate(struct inode *inode)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003545{
Theodore Ts'o819c4922013-04-03 12:47:17 -04003546 struct ext4_inode_info *ei = EXT4_I(inode);
3547 unsigned int credits;
3548 handle_t *handle;
3549 struct address_space *mapping = inode->i_mapping;
Theodore Ts'o819c4922013-04-03 12:47:17 -04003550
Theodore Ts'o19b5ef62013-04-03 21:58:52 -04003551 /*
3552 * There is a possibility that we're either freeing the inode
Matthew Wilcoxe04027e2014-03-24 15:15:07 -04003553 * or it's a completely new inode. In those cases we might not
Theodore Ts'o19b5ef62013-04-03 21:58:52 -04003554 * have i_mutex locked because it's not necessary.
3555 */
3556 if (!(inode->i_state & (I_NEW|I_FREEING)))
3557 WARN_ON(!mutex_is_locked(&inode->i_mutex));
Jiaying Zhang0562e0b2011-03-21 21:38:05 -04003558 trace_ext4_truncate_enter(inode);
3559
Duane Griffin91ef4ca2008-07-11 19:27:31 -04003560 if (!ext4_can_truncate(inode))
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003561 return;
3562
Dmitry Monakhov12e9b892010-05-16 22:00:00 -04003563 ext4_clear_inode_flag(inode, EXT4_INODE_EOFBLOCKS);
Jiaying Zhangc8d46e42010-02-24 09:52:53 -05003564
Theodore Ts'o5534fb52009-09-17 09:34:16 -04003565 if (inode->i_size == 0 && !test_opt(inode->i_sb, NO_AUTO_DA_ALLOC))
Theodore Ts'o19f5fb72010-01-24 14:34:07 -05003566 ext4_set_inode_state(inode, EXT4_STATE_DA_ALLOC_CLOSE);
Theodore Ts'o7d8f9f72009-02-24 08:21:14 -05003567
Tao Maaef1c852012-12-10 14:06:02 -05003568 if (ext4_has_inline_data(inode)) {
3569 int has_inline = 1;
3570
3571 ext4_inline_data_truncate(inode, &has_inline);
3572 if (has_inline)
3573 return;
3574 }
3575
Jan Karaa3612932013-08-16 21:19:41 -04003576 /* If we zero-out tail of the page, we have to create jinode for jbd2 */
3577 if (inode->i_size & (inode->i_sb->s_blocksize - 1)) {
3578 if (ext4_inode_attach_jinode(inode) < 0)
3579 return;
3580 }
3581
Amir Goldsteinff9893dc2011-06-27 16:36:31 -04003582 if (ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS))
Theodore Ts'o819c4922013-04-03 12:47:17 -04003583 credits = ext4_writepage_trans_blocks(inode);
Amir Goldsteinff9893dc2011-06-27 16:36:31 -04003584 else
Theodore Ts'o819c4922013-04-03 12:47:17 -04003585 credits = ext4_blocks_for_truncate(inode);
3586
3587 handle = ext4_journal_start(inode, EXT4_HT_TRUNCATE, credits);
3588 if (IS_ERR(handle)) {
3589 ext4_std_error(inode->i_sb, PTR_ERR(handle));
3590 return;
3591 }
3592
Lukas Czernereb3544c2013-05-27 23:32:35 -04003593 if (inode->i_size & (inode->i_sb->s_blocksize - 1))
3594 ext4_block_truncate_page(handle, mapping, inode->i_size);
Theodore Ts'o819c4922013-04-03 12:47:17 -04003595
3596 /*
3597 * We add the inode to the orphan list, so that if this
3598 * truncate spans multiple transactions, and we crash, we will
3599 * resume the truncate when the filesystem recovers. It also
3600 * marks the inode dirty, to catch the new size.
3601 *
3602 * Implication: the file must always be in a sane, consistent
3603 * truncatable state while each transaction commits.
3604 */
3605 if (ext4_orphan_add(handle, inode))
3606 goto out_stop;
3607
3608 down_write(&EXT4_I(inode)->i_data_sem);
3609
3610 ext4_discard_preallocations(inode);
3611
3612 if (ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS))
3613 ext4_ext_truncate(handle, inode);
3614 else
3615 ext4_ind_truncate(handle, inode);
3616
3617 up_write(&ei->i_data_sem);
3618
3619 if (IS_SYNC(inode))
3620 ext4_handle_sync(handle);
3621
3622out_stop:
3623 /*
3624 * If this was a simple ftruncate() and the file will remain alive,
3625 * then we need to clear up the orphan record which we created above.
3626 * However, if this was a real unlink then we were called by
3627 * ext4_delete_inode(), and we allow that function to clean up the
3628 * orphan info for us.
3629 */
3630 if (inode->i_nlink)
3631 ext4_orphan_del(handle, inode);
3632
3633 inode->i_mtime = inode->i_ctime = ext4_current_time(inode);
3634 ext4_mark_inode_dirty(handle, inode);
3635 ext4_journal_stop(handle);
Alex Tomasa86c6182006-10-11 01:21:03 -07003636
Jiaying Zhang0562e0b2011-03-21 21:38:05 -04003637 trace_ext4_truncate_exit(inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003638}
3639
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003640/*
Mingming Cao617ba132006-10-11 01:20:53 -07003641 * ext4_get_inode_loc returns with an extra refcount against the inode's
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003642 * underlying buffer_head on success. If 'in_mem' is true, we have all
3643 * data in memory that is needed to recreate the on-disk version of this
3644 * inode.
3645 */
Mingming Cao617ba132006-10-11 01:20:53 -07003646static int __ext4_get_inode_loc(struct inode *inode,
3647 struct ext4_iloc *iloc, int in_mem)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003648{
Theodore Ts'o240799c2008-10-09 23:53:47 -04003649 struct ext4_group_desc *gdp;
3650 struct buffer_head *bh;
3651 struct super_block *sb = inode->i_sb;
3652 ext4_fsblk_t block;
3653 int inodes_per_block, inode_offset;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003654
Aneesh Kumar K.V3a06d772008-11-22 15:04:59 -05003655 iloc->bh = NULL;
Theodore Ts'o240799c2008-10-09 23:53:47 -04003656 if (!ext4_valid_inum(sb, inode->i_ino))
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003657 return -EIO;
3658
Theodore Ts'o240799c2008-10-09 23:53:47 -04003659 iloc->block_group = (inode->i_ino - 1) / EXT4_INODES_PER_GROUP(sb);
3660 gdp = ext4_get_group_desc(sb, iloc->block_group, NULL);
3661 if (!gdp)
3662 return -EIO;
3663
3664 /*
3665 * Figure out the offset within the block group inode table
3666 */
Tao Ma00d09882011-05-09 10:26:41 -04003667 inodes_per_block = EXT4_SB(sb)->s_inodes_per_block;
Theodore Ts'o240799c2008-10-09 23:53:47 -04003668 inode_offset = ((inode->i_ino - 1) %
3669 EXT4_INODES_PER_GROUP(sb));
3670 block = ext4_inode_table(sb, gdp) + (inode_offset / inodes_per_block);
3671 iloc->offset = (inode_offset % inodes_per_block) * EXT4_INODE_SIZE(sb);
3672
3673 bh = sb_getblk(sb, block);
Wang Shilongaebf0242013-01-12 16:28:47 -05003674 if (unlikely(!bh))
Theodore Ts'o860d21e2013-01-12 16:19:36 -05003675 return -ENOMEM;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003676 if (!buffer_uptodate(bh)) {
3677 lock_buffer(bh);
Hidehiro Kawai9c83a922008-07-26 16:39:26 -04003678
3679 /*
3680 * If the buffer has the write error flag, we have failed
3681 * to write out another inode in the same block. In this
3682 * case, we don't have to read the block because we may
3683 * read the old inode data successfully.
3684 */
3685 if (buffer_write_io_error(bh) && !buffer_uptodate(bh))
3686 set_buffer_uptodate(bh);
3687
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003688 if (buffer_uptodate(bh)) {
3689 /* someone brought it uptodate while we waited */
3690 unlock_buffer(bh);
3691 goto has_buffer;
3692 }
3693
3694 /*
3695 * If we have all information of the inode in memory and this
3696 * is the only valid inode in the block, we need not read the
3697 * block.
3698 */
3699 if (in_mem) {
3700 struct buffer_head *bitmap_bh;
Theodore Ts'o240799c2008-10-09 23:53:47 -04003701 int i, start;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003702
Theodore Ts'o240799c2008-10-09 23:53:47 -04003703 start = inode_offset & ~(inodes_per_block - 1);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003704
3705 /* Is the inode bitmap in cache? */
Theodore Ts'o240799c2008-10-09 23:53:47 -04003706 bitmap_bh = sb_getblk(sb, ext4_inode_bitmap(sb, gdp));
Wang Shilongaebf0242013-01-12 16:28:47 -05003707 if (unlikely(!bitmap_bh))
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003708 goto make_io;
3709
3710 /*
3711 * If the inode bitmap isn't in cache then the
3712 * optimisation may end up performing two reads instead
3713 * of one, so skip it.
3714 */
3715 if (!buffer_uptodate(bitmap_bh)) {
3716 brelse(bitmap_bh);
3717 goto make_io;
3718 }
Theodore Ts'o240799c2008-10-09 23:53:47 -04003719 for (i = start; i < start + inodes_per_block; i++) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003720 if (i == inode_offset)
3721 continue;
Mingming Cao617ba132006-10-11 01:20:53 -07003722 if (ext4_test_bit(i, bitmap_bh->b_data))
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003723 break;
3724 }
3725 brelse(bitmap_bh);
Theodore Ts'o240799c2008-10-09 23:53:47 -04003726 if (i == start + inodes_per_block) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003727 /* all other inodes are free, so skip I/O */
3728 memset(bh->b_data, 0, bh->b_size);
3729 set_buffer_uptodate(bh);
3730 unlock_buffer(bh);
3731 goto has_buffer;
3732 }
3733 }
3734
3735make_io:
3736 /*
Theodore Ts'o240799c2008-10-09 23:53:47 -04003737 * If we need to do any I/O, try to pre-readahead extra
3738 * blocks from the inode table.
3739 */
3740 if (EXT4_SB(sb)->s_inode_readahead_blks) {
3741 ext4_fsblk_t b, end, table;
3742 unsigned num;
Theodore Ts'o0d606e22013-04-23 08:59:35 -04003743 __u32 ra_blks = EXT4_SB(sb)->s_inode_readahead_blks;
Theodore Ts'o240799c2008-10-09 23:53:47 -04003744
3745 table = ext4_inode_table(sb, gdp);
Theodore Ts'ob713a5e2009-03-31 09:11:14 -04003746 /* s_inode_readahead_blks is always a power of 2 */
Theodore Ts'o0d606e22013-04-23 08:59:35 -04003747 b = block & ~((ext4_fsblk_t) ra_blks - 1);
Theodore Ts'o240799c2008-10-09 23:53:47 -04003748 if (table > b)
3749 b = table;
Theodore Ts'o0d606e22013-04-23 08:59:35 -04003750 end = b + ra_blks;
Theodore Ts'o240799c2008-10-09 23:53:47 -04003751 num = EXT4_INODES_PER_GROUP(sb);
Darrick J. Wongfeb0ab32012-04-29 18:45:10 -04003752 if (ext4_has_group_desc_csum(sb))
Aneesh Kumar K.V560671a2009-01-05 22:20:24 -05003753 num -= ext4_itable_unused_count(sb, gdp);
Theodore Ts'o240799c2008-10-09 23:53:47 -04003754 table += num / inodes_per_block;
3755 if (end > table)
3756 end = table;
3757 while (b <= end)
3758 sb_breadahead(sb, b++);
3759 }
3760
3761 /*
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003762 * There are other valid inodes in the buffer, this inode
3763 * has in-inode xattrs, or we don't have this inode in memory.
3764 * Read the block from disk.
3765 */
Jiaying Zhang0562e0b2011-03-21 21:38:05 -04003766 trace_ext4_load_inode(inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003767 get_bh(bh);
3768 bh->b_end_io = end_buffer_read_sync;
Christoph Hellwig65299a32011-08-23 14:50:29 +02003769 submit_bh(READ | REQ_META | REQ_PRIO, bh);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003770 wait_on_buffer(bh);
3771 if (!buffer_uptodate(bh)) {
Theodore Ts'oc398eda2010-07-27 11:56:40 -04003772 EXT4_ERROR_INODE_BLOCK(inode, block,
3773 "unable to read itable block");
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003774 brelse(bh);
3775 return -EIO;
3776 }
3777 }
3778has_buffer:
3779 iloc->bh = bh;
3780 return 0;
3781}
3782
Mingming Cao617ba132006-10-11 01:20:53 -07003783int ext4_get_inode_loc(struct inode *inode, struct ext4_iloc *iloc)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003784{
3785 /* We have all inode data except xattrs in memory here. */
Mingming Cao617ba132006-10-11 01:20:53 -07003786 return __ext4_get_inode_loc(inode, iloc,
Theodore Ts'o19f5fb72010-01-24 14:34:07 -05003787 !ext4_test_inode_state(inode, EXT4_STATE_XATTR));
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003788}
3789
Mingming Cao617ba132006-10-11 01:20:53 -07003790void ext4_set_inode_flags(struct inode *inode)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003791{
Mingming Cao617ba132006-10-11 01:20:53 -07003792 unsigned int flags = EXT4_I(inode)->i_flags;
Theodore Ts'o00a1a052014-03-30 10:20:01 -04003793 unsigned int new_fl = 0;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003794
Mingming Cao617ba132006-10-11 01:20:53 -07003795 if (flags & EXT4_SYNC_FL)
Theodore Ts'o00a1a052014-03-30 10:20:01 -04003796 new_fl |= S_SYNC;
Mingming Cao617ba132006-10-11 01:20:53 -07003797 if (flags & EXT4_APPEND_FL)
Theodore Ts'o00a1a052014-03-30 10:20:01 -04003798 new_fl |= S_APPEND;
Mingming Cao617ba132006-10-11 01:20:53 -07003799 if (flags & EXT4_IMMUTABLE_FL)
Theodore Ts'o00a1a052014-03-30 10:20:01 -04003800 new_fl |= S_IMMUTABLE;
Mingming Cao617ba132006-10-11 01:20:53 -07003801 if (flags & EXT4_NOATIME_FL)
Theodore Ts'o00a1a052014-03-30 10:20:01 -04003802 new_fl |= S_NOATIME;
Mingming Cao617ba132006-10-11 01:20:53 -07003803 if (flags & EXT4_DIRSYNC_FL)
Theodore Ts'o00a1a052014-03-30 10:20:01 -04003804 new_fl |= S_DIRSYNC;
Theodore Ts'o5f16f322014-03-24 14:43:12 -04003805 inode_set_flags(inode, new_fl,
3806 S_SYNC|S_APPEND|S_IMMUTABLE|S_NOATIME|S_DIRSYNC);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003807}
3808
Jan Karaff9ddf72007-07-18 09:24:20 -04003809/* Propagate flags from i_flags to EXT4_I(inode)->i_flags */
3810void ext4_get_inode_flags(struct ext4_inode_info *ei)
3811{
Dmitry Monakhov84a8dce2010-06-05 11:51:27 -04003812 unsigned int vfs_fl;
3813 unsigned long old_fl, new_fl;
Jan Karaff9ddf72007-07-18 09:24:20 -04003814
Dmitry Monakhov84a8dce2010-06-05 11:51:27 -04003815 do {
3816 vfs_fl = ei->vfs_inode.i_flags;
3817 old_fl = ei->i_flags;
3818 new_fl = old_fl & ~(EXT4_SYNC_FL|EXT4_APPEND_FL|
3819 EXT4_IMMUTABLE_FL|EXT4_NOATIME_FL|
3820 EXT4_DIRSYNC_FL);
3821 if (vfs_fl & S_SYNC)
3822 new_fl |= EXT4_SYNC_FL;
3823 if (vfs_fl & S_APPEND)
3824 new_fl |= EXT4_APPEND_FL;
3825 if (vfs_fl & S_IMMUTABLE)
3826 new_fl |= EXT4_IMMUTABLE_FL;
3827 if (vfs_fl & S_NOATIME)
3828 new_fl |= EXT4_NOATIME_FL;
3829 if (vfs_fl & S_DIRSYNC)
3830 new_fl |= EXT4_DIRSYNC_FL;
3831 } while (cmpxchg(&ei->i_flags, old_fl, new_fl) != old_fl);
Jan Karaff9ddf72007-07-18 09:24:20 -04003832}
Theodore Ts'ode9a55b2009-06-14 17:45:34 -04003833
Aneesh Kumar K.V0fc1b452008-01-28 23:58:26 -05003834static blkcnt_t ext4_inode_blocks(struct ext4_inode *raw_inode,
Theodore Ts'ode9a55b2009-06-14 17:45:34 -04003835 struct ext4_inode_info *ei)
Aneesh Kumar K.V0fc1b452008-01-28 23:58:26 -05003836{
3837 blkcnt_t i_blocks ;
Aneesh Kumar K.V8180a562008-01-28 23:58:27 -05003838 struct inode *inode = &(ei->vfs_inode);
3839 struct super_block *sb = inode->i_sb;
Aneesh Kumar K.V0fc1b452008-01-28 23:58:26 -05003840
3841 if (EXT4_HAS_RO_COMPAT_FEATURE(sb,
3842 EXT4_FEATURE_RO_COMPAT_HUGE_FILE)) {
3843 /* we are using combined 48 bit field */
3844 i_blocks = ((u64)le16_to_cpu(raw_inode->i_blocks_high)) << 32 |
3845 le32_to_cpu(raw_inode->i_blocks_lo);
Theodore Ts'o07a03822010-06-14 09:54:48 -04003846 if (ext4_test_inode_flag(inode, EXT4_INODE_HUGE_FILE)) {
Aneesh Kumar K.V8180a562008-01-28 23:58:27 -05003847 /* i_blocks represent file system block size */
3848 return i_blocks << (inode->i_blkbits - 9);
3849 } else {
3850 return i_blocks;
3851 }
Aneesh Kumar K.V0fc1b452008-01-28 23:58:26 -05003852 } else {
3853 return le32_to_cpu(raw_inode->i_blocks_lo);
3854 }
3855}
Jan Karaff9ddf72007-07-18 09:24:20 -04003856
Tao Ma152a7b02012-12-02 11:13:24 -05003857static inline void ext4_iget_extra_inode(struct inode *inode,
3858 struct ext4_inode *raw_inode,
3859 struct ext4_inode_info *ei)
3860{
3861 __le32 *magic = (void *)raw_inode +
3862 EXT4_GOOD_OLD_INODE_SIZE + ei->i_extra_isize;
Tao Ma67cf5b02012-12-10 14:04:46 -05003863 if (*magic == cpu_to_le32(EXT4_XATTR_MAGIC)) {
Tao Ma152a7b02012-12-02 11:13:24 -05003864 ext4_set_inode_state(inode, EXT4_STATE_XATTR);
Tao Ma67cf5b02012-12-10 14:04:46 -05003865 ext4_find_inline_data_nolock(inode);
Tao Maf19d5872012-12-10 14:05:51 -05003866 } else
3867 EXT4_I(inode)->i_inline_off = 0;
Tao Ma152a7b02012-12-02 11:13:24 -05003868}
3869
David Howells1d1fe1e2008-02-07 00:15:37 -08003870struct inode *ext4_iget(struct super_block *sb, unsigned long ino)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003871{
Mingming Cao617ba132006-10-11 01:20:53 -07003872 struct ext4_iloc iloc;
3873 struct ext4_inode *raw_inode;
David Howells1d1fe1e2008-02-07 00:15:37 -08003874 struct ext4_inode_info *ei;
David Howells1d1fe1e2008-02-07 00:15:37 -08003875 struct inode *inode;
Jan Karab436b9b2009-12-08 23:51:10 -05003876 journal_t *journal = EXT4_SB(sb)->s_journal;
David Howells1d1fe1e2008-02-07 00:15:37 -08003877 long ret;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003878 int block;
Eric W. Biederman08cefc72012-02-07 15:41:49 -08003879 uid_t i_uid;
3880 gid_t i_gid;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003881
David Howells1d1fe1e2008-02-07 00:15:37 -08003882 inode = iget_locked(sb, ino);
3883 if (!inode)
3884 return ERR_PTR(-ENOMEM);
3885 if (!(inode->i_state & I_NEW))
3886 return inode;
3887
3888 ei = EXT4_I(inode);
Peter Huewe7dc57612011-02-21 21:01:42 -05003889 iloc.bh = NULL;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003890
David Howells1d1fe1e2008-02-07 00:15:37 -08003891 ret = __ext4_get_inode_loc(inode, &iloc, 0);
3892 if (ret < 0)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003893 goto bad_inode;
Mingming Cao617ba132006-10-11 01:20:53 -07003894 raw_inode = ext4_raw_inode(&iloc);
Darrick J. Wong814525f2012-04-29 18:31:10 -04003895
3896 if (EXT4_INODE_SIZE(inode->i_sb) > EXT4_GOOD_OLD_INODE_SIZE) {
3897 ei->i_extra_isize = le16_to_cpu(raw_inode->i_extra_isize);
3898 if (EXT4_GOOD_OLD_INODE_SIZE + ei->i_extra_isize >
3899 EXT4_INODE_SIZE(inode->i_sb)) {
3900 EXT4_ERROR_INODE(inode, "bad extra_isize (%u != %u)",
3901 EXT4_GOOD_OLD_INODE_SIZE + ei->i_extra_isize,
3902 EXT4_INODE_SIZE(inode->i_sb));
3903 ret = -EIO;
3904 goto bad_inode;
3905 }
3906 } else
3907 ei->i_extra_isize = 0;
3908
3909 /* Precompute checksum seed for inode metadata */
Dmitry Monakhov9aa5d322014-10-13 03:36:16 -04003910 if (ext4_has_metadata_csum(sb)) {
Darrick J. Wong814525f2012-04-29 18:31:10 -04003911 struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb);
3912 __u32 csum;
3913 __le32 inum = cpu_to_le32(inode->i_ino);
3914 __le32 gen = raw_inode->i_generation;
3915 csum = ext4_chksum(sbi, sbi->s_csum_seed, (__u8 *)&inum,
3916 sizeof(inum));
3917 ei->i_csum_seed = ext4_chksum(sbi, csum, (__u8 *)&gen,
3918 sizeof(gen));
3919 }
3920
3921 if (!ext4_inode_csum_verify(inode, raw_inode, ei)) {
3922 EXT4_ERROR_INODE(inode, "checksum invalid");
3923 ret = -EIO;
3924 goto bad_inode;
3925 }
3926
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003927 inode->i_mode = le16_to_cpu(raw_inode->i_mode);
Eric W. Biederman08cefc72012-02-07 15:41:49 -08003928 i_uid = (uid_t)le16_to_cpu(raw_inode->i_uid_low);
3929 i_gid = (gid_t)le16_to_cpu(raw_inode->i_gid_low);
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04003930 if (!(test_opt(inode->i_sb, NO_UID32))) {
Eric W. Biederman08cefc72012-02-07 15:41:49 -08003931 i_uid |= le16_to_cpu(raw_inode->i_uid_high) << 16;
3932 i_gid |= le16_to_cpu(raw_inode->i_gid_high) << 16;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003933 }
Eric W. Biederman08cefc72012-02-07 15:41:49 -08003934 i_uid_write(inode, i_uid);
3935 i_gid_write(inode, i_gid);
Miklos Szeredibfe86842011-10-28 14:13:29 +02003936 set_nlink(inode, le16_to_cpu(raw_inode->i_links_count));
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003937
Theodore Ts'o353eb832011-01-10 12:18:25 -05003938 ext4_clear_state_flags(ei); /* Only relevant on 32-bit archs */
Tao Ma67cf5b02012-12-10 14:04:46 -05003939 ei->i_inline_off = 0;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003940 ei->i_dir_start_lookup = 0;
3941 ei->i_dtime = le32_to_cpu(raw_inode->i_dtime);
3942 /* We now have enough fields to check if the inode was active or not.
3943 * This is needed because nfsd might try to access dead inodes
3944 * the test is that same one that e2fsck uses
3945 * NeilBrown 1999oct15
3946 */
3947 if (inode->i_nlink == 0) {
Dr. Tilmann Bubeck393d1d12013-04-08 12:54:05 -04003948 if ((inode->i_mode == 0 ||
3949 !(EXT4_SB(inode->i_sb)->s_mount_state & EXT4_ORPHAN_FS)) &&
3950 ino != EXT4_BOOT_LOADER_INO) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003951 /* this inode is deleted */
David Howells1d1fe1e2008-02-07 00:15:37 -08003952 ret = -ESTALE;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003953 goto bad_inode;
3954 }
3955 /* The only unlinked inodes we let through here have
3956 * valid i_mode and are being read by the orphan
3957 * recovery code: that's fine, we're about to complete
Dr. Tilmann Bubeck393d1d12013-04-08 12:54:05 -04003958 * the process of deleting those.
3959 * OR it is the EXT4_BOOT_LOADER_INO which is
3960 * not initialized on a new filesystem. */
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003961 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003962 ei->i_flags = le32_to_cpu(raw_inode->i_flags);
Aneesh Kumar K.V0fc1b452008-01-28 23:58:26 -05003963 inode->i_blocks = ext4_inode_blocks(raw_inode, ei);
Aneesh Kumar K.V7973c0c2008-01-28 23:58:27 -05003964 ei->i_file_acl = le32_to_cpu(raw_inode->i_file_acl_lo);
Theodore Ts'oa9e81742009-04-24 16:11:18 -04003965 if (EXT4_HAS_INCOMPAT_FEATURE(sb, EXT4_FEATURE_INCOMPAT_64BIT))
Badari Pulavartya1ddeb72006-10-11 01:21:09 -07003966 ei->i_file_acl |=
3967 ((__u64)le16_to_cpu(raw_inode->i_file_acl_high)) << 32;
Aneesh Kumar K.Va48380f2008-01-28 23:58:27 -05003968 inode->i_size = ext4_isize(raw_inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003969 ei->i_disksize = inode->i_size;
Dmitry Monakhova9e7f442009-12-14 15:21:14 +03003970#ifdef CONFIG_QUOTA
3971 ei->i_reserved_quota = 0;
3972#endif
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003973 inode->i_generation = le32_to_cpu(raw_inode->i_generation);
3974 ei->i_block_group = iloc.block_group;
Theodore Ts'oa4912122009-03-12 12:18:34 -04003975 ei->i_last_alloc_group = ~0;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003976 /*
3977 * NOTE! The in-memory inode i_data array is in little-endian order
3978 * even on big-endian machines: we do NOT byteswap the block numbers!
3979 */
Mingming Cao617ba132006-10-11 01:20:53 -07003980 for (block = 0; block < EXT4_N_BLOCKS; block++)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003981 ei->i_data[block] = raw_inode->i_block[block];
3982 INIT_LIST_HEAD(&ei->i_orphan);
3983
Jan Karab436b9b2009-12-08 23:51:10 -05003984 /*
3985 * Set transaction id's of transactions that have to be committed
3986 * to finish f[data]sync. We set them to currently running transaction
3987 * as we cannot be sure that the inode or some of its metadata isn't
3988 * part of the transaction - the inode could have been reclaimed and
3989 * now it is reread from disk.
3990 */
3991 if (journal) {
3992 transaction_t *transaction;
3993 tid_t tid;
3994
Theodore Ts'oa931da62010-08-03 21:35:12 -04003995 read_lock(&journal->j_state_lock);
Jan Karab436b9b2009-12-08 23:51:10 -05003996 if (journal->j_running_transaction)
3997 transaction = journal->j_running_transaction;
3998 else
3999 transaction = journal->j_committing_transaction;
4000 if (transaction)
4001 tid = transaction->t_tid;
4002 else
4003 tid = journal->j_commit_sequence;
Theodore Ts'oa931da62010-08-03 21:35:12 -04004004 read_unlock(&journal->j_state_lock);
Jan Karab436b9b2009-12-08 23:51:10 -05004005 ei->i_sync_tid = tid;
4006 ei->i_datasync_tid = tid;
4007 }
4008
Eric Sandeen0040d982008-02-05 22:36:43 -05004009 if (EXT4_INODE_SIZE(inode->i_sb) > EXT4_GOOD_OLD_INODE_SIZE) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004010 if (ei->i_extra_isize == 0) {
4011 /* The extra space is currently unused. Use it. */
Mingming Cao617ba132006-10-11 01:20:53 -07004012 ei->i_extra_isize = sizeof(struct ext4_inode) -
4013 EXT4_GOOD_OLD_INODE_SIZE;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004014 } else {
Tao Ma152a7b02012-12-02 11:13:24 -05004015 ext4_iget_extra_inode(inode, raw_inode, ei);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004016 }
Darrick J. Wong814525f2012-04-29 18:31:10 -04004017 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004018
Kalpak Shahef7f3832007-07-18 09:15:20 -04004019 EXT4_INODE_GET_XTIME(i_ctime, inode, raw_inode);
4020 EXT4_INODE_GET_XTIME(i_mtime, inode, raw_inode);
4021 EXT4_INODE_GET_XTIME(i_atime, inode, raw_inode);
4022 EXT4_EINODE_GET_XTIME(i_crtime, ei, raw_inode);
4023
Theodore Ts'oed3654e2014-03-24 14:09:06 -04004024 if (likely(!test_opt2(inode->i_sb, HURD_COMPAT))) {
Theodore Ts'oc4f65702014-03-20 00:32:57 -04004025 inode->i_version = le32_to_cpu(raw_inode->i_disk_version);
4026 if (EXT4_INODE_SIZE(inode->i_sb) > EXT4_GOOD_OLD_INODE_SIZE) {
4027 if (EXT4_FITS_IN_INODE(raw_inode, ei, i_version_hi))
4028 inode->i_version |=
4029 (__u64)(le32_to_cpu(raw_inode->i_version_hi)) << 32;
4030 }
Jean Noel Cordenner25ec56b2008-01-28 23:58:27 -05004031 }
4032
Theodore Ts'oc4b5a612009-04-24 18:45:35 -04004033 ret = 0;
Theodore Ts'o485c26e2009-04-24 13:43:20 -04004034 if (ei->i_file_acl &&
Theodore Ts'o10329882009-11-15 15:29:56 -05004035 !ext4_data_block_valid(EXT4_SB(sb), ei->i_file_acl, 1)) {
Theodore Ts'o24676da2010-05-16 21:00:00 -04004036 EXT4_ERROR_INODE(inode, "bad extended attribute block %llu",
4037 ei->i_file_acl);
Theodore Ts'o485c26e2009-04-24 13:43:20 -04004038 ret = -EIO;
4039 goto bad_inode;
Tao Maf19d5872012-12-10 14:05:51 -05004040 } else if (!ext4_has_inline_data(inode)) {
4041 if (ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS)) {
4042 if ((S_ISREG(inode->i_mode) || S_ISDIR(inode->i_mode) ||
4043 (S_ISLNK(inode->i_mode) &&
4044 !ext4_inode_is_fast_symlink(inode))))
4045 /* Validate extent which is part of inode */
4046 ret = ext4_ext_check_inode(inode);
4047 } else if (S_ISREG(inode->i_mode) || S_ISDIR(inode->i_mode) ||
4048 (S_ISLNK(inode->i_mode) &&
4049 !ext4_inode_is_fast_symlink(inode))) {
4050 /* Validate block references which are part of inode */
4051 ret = ext4_ind_check_inode(inode);
4052 }
Thiemo Nagelfe2c8192009-03-31 08:36:10 -04004053 }
Theodore Ts'o567f3e92009-11-14 08:19:05 -05004054 if (ret)
Theodore Ts'ode9a55b2009-06-14 17:45:34 -04004055 goto bad_inode;
Aneesh Kumar K.V7a262f72009-03-27 16:39:58 -04004056
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004057 if (S_ISREG(inode->i_mode)) {
Mingming Cao617ba132006-10-11 01:20:53 -07004058 inode->i_op = &ext4_file_inode_operations;
4059 inode->i_fop = &ext4_file_operations;
4060 ext4_set_aops(inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004061 } else if (S_ISDIR(inode->i_mode)) {
Mingming Cao617ba132006-10-11 01:20:53 -07004062 inode->i_op = &ext4_dir_inode_operations;
4063 inode->i_fop = &ext4_dir_operations;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004064 } else if (S_ISLNK(inode->i_mode)) {
Duane Griffine83c1392008-12-19 20:47:15 +00004065 if (ext4_inode_is_fast_symlink(inode)) {
Mingming Cao617ba132006-10-11 01:20:53 -07004066 inode->i_op = &ext4_fast_symlink_inode_operations;
Duane Griffine83c1392008-12-19 20:47:15 +00004067 nd_terminate_link(ei->i_data, inode->i_size,
4068 sizeof(ei->i_data) - 1);
4069 } else {
Mingming Cao617ba132006-10-11 01:20:53 -07004070 inode->i_op = &ext4_symlink_inode_operations;
4071 ext4_set_aops(inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004072 }
Theodore Ts'o563bdd62009-03-26 00:06:19 -04004073 } else if (S_ISCHR(inode->i_mode) || S_ISBLK(inode->i_mode) ||
4074 S_ISFIFO(inode->i_mode) || S_ISSOCK(inode->i_mode)) {
Mingming Cao617ba132006-10-11 01:20:53 -07004075 inode->i_op = &ext4_special_inode_operations;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004076 if (raw_inode->i_block[0])
4077 init_special_inode(inode, inode->i_mode,
4078 old_decode_dev(le32_to_cpu(raw_inode->i_block[0])));
4079 else
4080 init_special_inode(inode, inode->i_mode,
4081 new_decode_dev(le32_to_cpu(raw_inode->i_block[1])));
Dr. Tilmann Bubeck393d1d12013-04-08 12:54:05 -04004082 } else if (ino == EXT4_BOOT_LOADER_INO) {
4083 make_bad_inode(inode);
Theodore Ts'o563bdd62009-03-26 00:06:19 -04004084 } else {
Theodore Ts'o563bdd62009-03-26 00:06:19 -04004085 ret = -EIO;
Theodore Ts'o24676da2010-05-16 21:00:00 -04004086 EXT4_ERROR_INODE(inode, "bogus i_mode (%o)", inode->i_mode);
Theodore Ts'o563bdd62009-03-26 00:06:19 -04004087 goto bad_inode;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004088 }
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04004089 brelse(iloc.bh);
Mingming Cao617ba132006-10-11 01:20:53 -07004090 ext4_set_inode_flags(inode);
David Howells1d1fe1e2008-02-07 00:15:37 -08004091 unlock_new_inode(inode);
4092 return inode;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004093
4094bad_inode:
Theodore Ts'o567f3e92009-11-14 08:19:05 -05004095 brelse(iloc.bh);
David Howells1d1fe1e2008-02-07 00:15:37 -08004096 iget_failed(inode);
4097 return ERR_PTR(ret);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004098}
4099
Theodore Ts'of4bb2982014-10-05 22:56:00 -04004100struct inode *ext4_iget_normal(struct super_block *sb, unsigned long ino)
4101{
4102 if (ino < EXT4_FIRST_INO(sb) && ino != EXT4_ROOT_INO)
4103 return ERR_PTR(-EIO);
4104 return ext4_iget(sb, ino);
4105}
4106
Aneesh Kumar K.V0fc1b452008-01-28 23:58:26 -05004107static int ext4_inode_blocks_set(handle_t *handle,
4108 struct ext4_inode *raw_inode,
4109 struct ext4_inode_info *ei)
4110{
4111 struct inode *inode = &(ei->vfs_inode);
4112 u64 i_blocks = inode->i_blocks;
4113 struct super_block *sb = inode->i_sb;
Aneesh Kumar K.V0fc1b452008-01-28 23:58:26 -05004114
4115 if (i_blocks <= ~0U) {
4116 /*
Anatol Pomozov4907cb72012-09-01 10:31:09 -07004117 * i_blocks can be represented in a 32 bit variable
Aneesh Kumar K.V0fc1b452008-01-28 23:58:26 -05004118 * as multiple of 512 bytes
4119 */
Aneesh Kumar K.V8180a562008-01-28 23:58:27 -05004120 raw_inode->i_blocks_lo = cpu_to_le32(i_blocks);
Aneesh Kumar K.V0fc1b452008-01-28 23:58:26 -05004121 raw_inode->i_blocks_high = 0;
Dmitry Monakhov84a8dce2010-06-05 11:51:27 -04004122 ext4_clear_inode_flag(inode, EXT4_INODE_HUGE_FILE);
Theodore Ts'of287a1a2008-10-16 22:50:48 -04004123 return 0;
4124 }
4125 if (!EXT4_HAS_RO_COMPAT_FEATURE(sb, EXT4_FEATURE_RO_COMPAT_HUGE_FILE))
4126 return -EFBIG;
4127
4128 if (i_blocks <= 0xffffffffffffULL) {
Aneesh Kumar K.V0fc1b452008-01-28 23:58:26 -05004129 /*
4130 * i_blocks can be represented in a 48 bit variable
4131 * as multiple of 512 bytes
4132 */
Aneesh Kumar K.V8180a562008-01-28 23:58:27 -05004133 raw_inode->i_blocks_lo = cpu_to_le32(i_blocks);
Aneesh Kumar K.V0fc1b452008-01-28 23:58:26 -05004134 raw_inode->i_blocks_high = cpu_to_le16(i_blocks >> 32);
Dmitry Monakhov84a8dce2010-06-05 11:51:27 -04004135 ext4_clear_inode_flag(inode, EXT4_INODE_HUGE_FILE);
Aneesh Kumar K.V0fc1b452008-01-28 23:58:26 -05004136 } else {
Dmitry Monakhov84a8dce2010-06-05 11:51:27 -04004137 ext4_set_inode_flag(inode, EXT4_INODE_HUGE_FILE);
Aneesh Kumar K.V8180a562008-01-28 23:58:27 -05004138 /* i_block is stored in file system block size */
4139 i_blocks = i_blocks >> (inode->i_blkbits - 9);
4140 raw_inode->i_blocks_lo = cpu_to_le32(i_blocks);
4141 raw_inode->i_blocks_high = cpu_to_le16(i_blocks >> 32);
Aneesh Kumar K.V0fc1b452008-01-28 23:58:26 -05004142 }
Theodore Ts'of287a1a2008-10-16 22:50:48 -04004143 return 0;
Aneesh Kumar K.V0fc1b452008-01-28 23:58:26 -05004144}
4145
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004146/*
4147 * Post the struct inode info into an on-disk inode location in the
4148 * buffer-cache. This gobbles the caller's reference to the
4149 * buffer_head in the inode location struct.
4150 *
4151 * The caller must have write access to iloc->bh.
4152 */
Mingming Cao617ba132006-10-11 01:20:53 -07004153static int ext4_do_update_inode(handle_t *handle,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004154 struct inode *inode,
Frank Mayhar830156c2009-09-29 10:07:47 -04004155 struct ext4_iloc *iloc)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004156{
Mingming Cao617ba132006-10-11 01:20:53 -07004157 struct ext4_inode *raw_inode = ext4_raw_inode(iloc);
4158 struct ext4_inode_info *ei = EXT4_I(inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004159 struct buffer_head *bh = iloc->bh;
Theodore Ts'o202ee5d2014-04-21 14:37:55 -04004160 struct super_block *sb = inode->i_sb;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004161 int err = 0, rc, block;
Theodore Ts'o202ee5d2014-04-21 14:37:55 -04004162 int need_datasync = 0, set_large_file = 0;
Eric W. Biederman08cefc72012-02-07 15:41:49 -08004163 uid_t i_uid;
4164 gid_t i_gid;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004165
Theodore Ts'o202ee5d2014-04-21 14:37:55 -04004166 spin_lock(&ei->i_raw_lock);
4167
4168 /* For fields not tracked in the in-memory inode,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004169 * initialise them to zero for new inodes. */
Theodore Ts'o19f5fb72010-01-24 14:34:07 -05004170 if (ext4_test_inode_state(inode, EXT4_STATE_NEW))
Mingming Cao617ba132006-10-11 01:20:53 -07004171 memset(raw_inode, 0, EXT4_SB(inode->i_sb)->s_inode_size);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004172
Jan Karaff9ddf72007-07-18 09:24:20 -04004173 ext4_get_inode_flags(ei);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004174 raw_inode->i_mode = cpu_to_le16(inode->i_mode);
Eric W. Biederman08cefc72012-02-07 15:41:49 -08004175 i_uid = i_uid_read(inode);
4176 i_gid = i_gid_read(inode);
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04004177 if (!(test_opt(inode->i_sb, NO_UID32))) {
Eric W. Biederman08cefc72012-02-07 15:41:49 -08004178 raw_inode->i_uid_low = cpu_to_le16(low_16_bits(i_uid));
4179 raw_inode->i_gid_low = cpu_to_le16(low_16_bits(i_gid));
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004180/*
4181 * Fix up interoperability with old kernels. Otherwise, old inodes get
4182 * re-used with the upper 16 bits of the uid/gid intact
4183 */
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04004184 if (!ei->i_dtime) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004185 raw_inode->i_uid_high =
Eric W. Biederman08cefc72012-02-07 15:41:49 -08004186 cpu_to_le16(high_16_bits(i_uid));
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004187 raw_inode->i_gid_high =
Eric W. Biederman08cefc72012-02-07 15:41:49 -08004188 cpu_to_le16(high_16_bits(i_gid));
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004189 } else {
4190 raw_inode->i_uid_high = 0;
4191 raw_inode->i_gid_high = 0;
4192 }
4193 } else {
Eric W. Biederman08cefc72012-02-07 15:41:49 -08004194 raw_inode->i_uid_low = cpu_to_le16(fs_high2lowuid(i_uid));
4195 raw_inode->i_gid_low = cpu_to_le16(fs_high2lowgid(i_gid));
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004196 raw_inode->i_uid_high = 0;
4197 raw_inode->i_gid_high = 0;
4198 }
4199 raw_inode->i_links_count = cpu_to_le16(inode->i_nlink);
Kalpak Shahef7f3832007-07-18 09:15:20 -04004200
4201 EXT4_INODE_SET_XTIME(i_ctime, inode, raw_inode);
4202 EXT4_INODE_SET_XTIME(i_mtime, inode, raw_inode);
4203 EXT4_INODE_SET_XTIME(i_atime, inode, raw_inode);
4204 EXT4_EINODE_SET_XTIME(i_crtime, ei, raw_inode);
4205
Li Xibce92d52014-10-01 22:11:06 -04004206 err = ext4_inode_blocks_set(handle, raw_inode, ei);
4207 if (err) {
Theodore Ts'o202ee5d2014-04-21 14:37:55 -04004208 spin_unlock(&ei->i_raw_lock);
Aneesh Kumar K.V0fc1b452008-01-28 23:58:26 -05004209 goto out_brelse;
Theodore Ts'o202ee5d2014-04-21 14:37:55 -04004210 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004211 raw_inode->i_dtime = cpu_to_le32(ei->i_dtime);
Theodore Ts'o353eb832011-01-10 12:18:25 -05004212 raw_inode->i_flags = cpu_to_le32(ei->i_flags & 0xFFFFFFFF);
Theodore Ts'oed3654e2014-03-24 14:09:06 -04004213 if (likely(!test_opt2(inode->i_sb, HURD_COMPAT)))
Badari Pulavartya1ddeb72006-10-11 01:21:09 -07004214 raw_inode->i_file_acl_high =
4215 cpu_to_le16(ei->i_file_acl >> 32);
Aneesh Kumar K.V7973c0c2008-01-28 23:58:27 -05004216 raw_inode->i_file_acl_lo = cpu_to_le32(ei->i_file_acl);
Jan Karab71fc072012-09-26 21:52:20 -04004217 if (ei->i_disksize != ext4_isize(raw_inode)) {
4218 ext4_isize_set(raw_inode, ei->i_disksize);
4219 need_datasync = 1;
4220 }
Aneesh Kumar K.Va48380f2008-01-28 23:58:27 -05004221 if (ei->i_disksize > 0x7fffffffULL) {
Aneesh Kumar K.Va48380f2008-01-28 23:58:27 -05004222 if (!EXT4_HAS_RO_COMPAT_FEATURE(sb,
4223 EXT4_FEATURE_RO_COMPAT_LARGE_FILE) ||
4224 EXT4_SB(sb)->s_es->s_rev_level ==
Theodore Ts'o202ee5d2014-04-21 14:37:55 -04004225 cpu_to_le32(EXT4_GOOD_OLD_REV))
4226 set_large_file = 1;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004227 }
4228 raw_inode->i_generation = cpu_to_le32(inode->i_generation);
4229 if (S_ISCHR(inode->i_mode) || S_ISBLK(inode->i_mode)) {
4230 if (old_valid_dev(inode->i_rdev)) {
4231 raw_inode->i_block[0] =
4232 cpu_to_le32(old_encode_dev(inode->i_rdev));
4233 raw_inode->i_block[1] = 0;
4234 } else {
4235 raw_inode->i_block[0] = 0;
4236 raw_inode->i_block[1] =
4237 cpu_to_le32(new_encode_dev(inode->i_rdev));
4238 raw_inode->i_block[2] = 0;
4239 }
Tao Maf19d5872012-12-10 14:05:51 -05004240 } else if (!ext4_has_inline_data(inode)) {
Theodore Ts'ode9a55b2009-06-14 17:45:34 -04004241 for (block = 0; block < EXT4_N_BLOCKS; block++)
4242 raw_inode->i_block[block] = ei->i_data[block];
Tao Maf19d5872012-12-10 14:05:51 -05004243 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004244
Theodore Ts'oed3654e2014-03-24 14:09:06 -04004245 if (likely(!test_opt2(inode->i_sb, HURD_COMPAT))) {
Theodore Ts'oc4f65702014-03-20 00:32:57 -04004246 raw_inode->i_disk_version = cpu_to_le32(inode->i_version);
4247 if (ei->i_extra_isize) {
4248 if (EXT4_FITS_IN_INODE(raw_inode, ei, i_version_hi))
4249 raw_inode->i_version_hi =
4250 cpu_to_le32(inode->i_version >> 32);
4251 raw_inode->i_extra_isize =
4252 cpu_to_le16(ei->i_extra_isize);
4253 }
Jean Noel Cordenner25ec56b2008-01-28 23:58:27 -05004254 }
4255
Darrick J. Wong814525f2012-04-29 18:31:10 -04004256 ext4_inode_csum_set(inode, raw_inode, ei);
4257
Theodore Ts'o202ee5d2014-04-21 14:37:55 -04004258 spin_unlock(&ei->i_raw_lock);
4259
Frank Mayhar830156c2009-09-29 10:07:47 -04004260 BUFFER_TRACE(bh, "call ext4_handle_dirty_metadata");
Curt Wohlgemuth73b50c12010-02-16 15:06:29 -05004261 rc = ext4_handle_dirty_metadata(handle, NULL, bh);
Frank Mayhar830156c2009-09-29 10:07:47 -04004262 if (!err)
4263 err = rc;
Theodore Ts'o19f5fb72010-01-24 14:34:07 -05004264 ext4_clear_inode_state(inode, EXT4_STATE_NEW);
Theodore Ts'o202ee5d2014-04-21 14:37:55 -04004265 if (set_large_file) {
liang xie5d601252014-05-12 22:06:43 -04004266 BUFFER_TRACE(EXT4_SB(sb)->s_sbh, "get write access");
Theodore Ts'o202ee5d2014-04-21 14:37:55 -04004267 err = ext4_journal_get_write_access(handle, EXT4_SB(sb)->s_sbh);
4268 if (err)
4269 goto out_brelse;
4270 ext4_update_dynamic_rev(sb);
4271 EXT4_SET_RO_COMPAT_FEATURE(sb,
4272 EXT4_FEATURE_RO_COMPAT_LARGE_FILE);
4273 ext4_handle_sync(handle);
4274 err = ext4_handle_dirty_super(handle, sb);
4275 }
Jan Karab71fc072012-09-26 21:52:20 -04004276 ext4_update_inode_fsync_trans(handle, inode, need_datasync);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004277out_brelse:
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04004278 brelse(bh);
Mingming Cao617ba132006-10-11 01:20:53 -07004279 ext4_std_error(inode->i_sb, err);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004280 return err;
4281}
4282
4283/*
Mingming Cao617ba132006-10-11 01:20:53 -07004284 * ext4_write_inode()
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004285 *
4286 * We are called from a few places:
4287 *
Theodore Ts'o87f7e412014-04-08 11:38:28 -04004288 * - Within generic_file_aio_write() -> generic_write_sync() for O_SYNC files.
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004289 * Here, there will be no transaction running. We wait for any running
Anatol Pomozov4907cb72012-09-01 10:31:09 -07004290 * transaction to commit.
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004291 *
Theodore Ts'o87f7e412014-04-08 11:38:28 -04004292 * - Within flush work (sys_sync(), kupdate and such).
4293 * We wait on commit, if told to.
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004294 *
Theodore Ts'o87f7e412014-04-08 11:38:28 -04004295 * - Within iput_final() -> write_inode_now()
4296 * We wait on commit, if told to.
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004297 *
4298 * In all cases it is actually safe for us to return without doing anything,
4299 * because the inode has been copied into a raw inode buffer in
Theodore Ts'o87f7e412014-04-08 11:38:28 -04004300 * ext4_mark_inode_dirty(). This is a correctness thing for WB_SYNC_ALL
4301 * writeback.
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004302 *
4303 * Note that we are absolutely dependent upon all inode dirtiers doing the
4304 * right thing: they *must* call mark_inode_dirty() after dirtying info in
4305 * which we are interested.
4306 *
4307 * It would be a bug for them to not do this. The code:
4308 *
4309 * mark_inode_dirty(inode)
4310 * stuff();
4311 * inode->i_size = expr;
4312 *
Theodore Ts'o87f7e412014-04-08 11:38:28 -04004313 * is in error because write_inode() could occur while `stuff()' is running,
4314 * and the new i_size will be lost. Plus the inode will no longer be on the
4315 * superblock's dirty inode list.
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004316 */
Christoph Hellwiga9185b42010-03-05 09:21:37 +01004317int ext4_write_inode(struct inode *inode, struct writeback_control *wbc)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004318{
Frank Mayhar91ac6f42009-09-09 22:33:47 -04004319 int err;
4320
Theodore Ts'o87f7e412014-04-08 11:38:28 -04004321 if (WARN_ON_ONCE(current->flags & PF_MEMALLOC))
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004322 return 0;
4323
Frank Mayhar91ac6f42009-09-09 22:33:47 -04004324 if (EXT4_SB(inode->i_sb)->s_journal) {
4325 if (ext4_journal_current_handle()) {
4326 jbd_debug(1, "called recursively, non-PF_MEMALLOC!\n");
4327 dump_stack();
4328 return -EIO;
4329 }
4330
Jan Kara10542c22014-03-04 10:50:50 -05004331 /*
4332 * No need to force transaction in WB_SYNC_NONE mode. Also
4333 * ext4_sync_fs() will force the commit after everything is
4334 * written.
4335 */
4336 if (wbc->sync_mode != WB_SYNC_ALL || wbc->for_sync)
Frank Mayhar91ac6f42009-09-09 22:33:47 -04004337 return 0;
4338
4339 err = ext4_force_commit(inode->i_sb);
4340 } else {
4341 struct ext4_iloc iloc;
4342
Curt Wohlgemuth8b472d72010-04-03 16:45:06 -04004343 err = __ext4_get_inode_loc(inode, &iloc, 0);
Frank Mayhar91ac6f42009-09-09 22:33:47 -04004344 if (err)
4345 return err;
Jan Kara10542c22014-03-04 10:50:50 -05004346 /*
4347 * sync(2) will flush the whole buffer cache. No need to do
4348 * it here separately for each inode.
4349 */
4350 if (wbc->sync_mode == WB_SYNC_ALL && !wbc->for_sync)
Frank Mayhar830156c2009-09-29 10:07:47 -04004351 sync_dirty_buffer(iloc.bh);
4352 if (buffer_req(iloc.bh) && !buffer_uptodate(iloc.bh)) {
Theodore Ts'oc398eda2010-07-27 11:56:40 -04004353 EXT4_ERROR_INODE_BLOCK(inode, iloc.bh->b_blocknr,
4354 "IO error syncing inode");
Frank Mayhar830156c2009-09-29 10:07:47 -04004355 err = -EIO;
4356 }
Curt Wohlgemuthfd2dd9f2010-04-03 17:44:16 -04004357 brelse(iloc.bh);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004358 }
Frank Mayhar91ac6f42009-09-09 22:33:47 -04004359 return err;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004360}
4361
4362/*
Jan Kara53e87262012-12-25 13:29:52 -05004363 * In data=journal mode ext4_journalled_invalidatepage() may fail to invalidate
4364 * buffers that are attached to a page stradding i_size and are undergoing
4365 * commit. In that case we have to wait for commit to finish and try again.
4366 */
4367static void ext4_wait_for_tail_page_commit(struct inode *inode)
4368{
4369 struct page *page;
4370 unsigned offset;
4371 journal_t *journal = EXT4_SB(inode->i_sb)->s_journal;
4372 tid_t commit_tid = 0;
4373 int ret;
4374
4375 offset = inode->i_size & (PAGE_CACHE_SIZE - 1);
4376 /*
4377 * All buffers in the last page remain valid? Then there's nothing to
4378 * do. We do the check mainly to optimize the common PAGE_CACHE_SIZE ==
4379 * blocksize case
4380 */
4381 if (offset > PAGE_CACHE_SIZE - (1 << inode->i_blkbits))
4382 return;
4383 while (1) {
4384 page = find_lock_page(inode->i_mapping,
4385 inode->i_size >> PAGE_CACHE_SHIFT);
4386 if (!page)
4387 return;
Lukas Czernerca99fdd2013-05-21 23:25:01 -04004388 ret = __ext4_journalled_invalidatepage(page, offset,
4389 PAGE_CACHE_SIZE - offset);
Jan Kara53e87262012-12-25 13:29:52 -05004390 unlock_page(page);
4391 page_cache_release(page);
4392 if (ret != -EBUSY)
4393 return;
4394 commit_tid = 0;
4395 read_lock(&journal->j_state_lock);
4396 if (journal->j_committing_transaction)
4397 commit_tid = journal->j_committing_transaction->t_tid;
4398 read_unlock(&journal->j_state_lock);
4399 if (commit_tid)
4400 jbd2_log_wait_commit(journal, commit_tid);
4401 }
4402}
4403
4404/*
Mingming Cao617ba132006-10-11 01:20:53 -07004405 * ext4_setattr()
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004406 *
4407 * Called from notify_change.
4408 *
4409 * We want to trap VFS attempts to truncate the file as soon as
4410 * possible. In particular, we want to make sure that when the VFS
4411 * shrinks i_size, we put the inode on the orphan list and modify
4412 * i_disksize immediately, so that during the subsequent flushing of
4413 * dirty pages and freeing of disk blocks, we can guarantee that any
4414 * commit will leave the blocks being flushed in an unused state on
4415 * disk. (On recovery, the inode will get truncated and the blocks will
4416 * be freed, so we have a strong guarantee that no future commit will
4417 * leave these blocks visible to the user.)
4418 *
Jan Kara678aaf42008-07-11 19:27:31 -04004419 * Another thing we have to assure is that if we are in ordered mode
4420 * and inode is still attached to the committing transaction, we must
4421 * we start writeout of all the dirty pages which are being truncated.
4422 * This way we are sure that all the data written in the previous
4423 * transaction are already on disk (truncate waits for pages under
4424 * writeback).
4425 *
4426 * Called with inode->i_mutex down.
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004427 */
Mingming Cao617ba132006-10-11 01:20:53 -07004428int ext4_setattr(struct dentry *dentry, struct iattr *attr)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004429{
4430 struct inode *inode = dentry->d_inode;
4431 int error, rc = 0;
Dmitry Monakhov3d287de2010-10-27 22:08:46 -04004432 int orphan = 0;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004433 const unsigned int ia_valid = attr->ia_valid;
4434
4435 error = inode_change_ok(inode, attr);
4436 if (error)
4437 return error;
4438
Dmitry Monakhov12755622010-04-08 22:04:20 +04004439 if (is_quota_modification(inode, attr))
Christoph Hellwig871a2932010-03-03 09:05:07 -05004440 dquot_initialize(inode);
Eric W. Biederman08cefc72012-02-07 15:41:49 -08004441 if ((ia_valid & ATTR_UID && !uid_eq(attr->ia_uid, inode->i_uid)) ||
4442 (ia_valid & ATTR_GID && !gid_eq(attr->ia_gid, inode->i_gid))) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004443 handle_t *handle;
4444
4445 /* (user+group)*(old+new) structure, inode write (sb,
4446 * inode block, ? - but truncate inode update has it) */
Theodore Ts'o9924a922013-02-08 21:59:22 -05004447 handle = ext4_journal_start(inode, EXT4_HT_QUOTA,
4448 (EXT4_MAXQUOTAS_INIT_BLOCKS(inode->i_sb) +
4449 EXT4_MAXQUOTAS_DEL_BLOCKS(inode->i_sb)) + 3);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004450 if (IS_ERR(handle)) {
4451 error = PTR_ERR(handle);
4452 goto err_out;
4453 }
Christoph Hellwigb43fa822010-03-03 09:05:03 -05004454 error = dquot_transfer(inode, attr);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004455 if (error) {
Mingming Cao617ba132006-10-11 01:20:53 -07004456 ext4_journal_stop(handle);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004457 return error;
4458 }
4459 /* Update corresponding info in inode so that everything is in
4460 * one transaction */
4461 if (attr->ia_valid & ATTR_UID)
4462 inode->i_uid = attr->ia_uid;
4463 if (attr->ia_valid & ATTR_GID)
4464 inode->i_gid = attr->ia_gid;
Mingming Cao617ba132006-10-11 01:20:53 -07004465 error = ext4_mark_inode_dirty(handle, inode);
4466 ext4_journal_stop(handle);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004467 }
4468
Jan Kara52083862013-08-17 10:07:17 -04004469 if (attr->ia_valid & ATTR_SIZE && attr->ia_size != inode->i_size) {
4470 handle_t *handle;
Christoph Hellwig562c72a2011-06-24 14:29:45 -04004471
Dmitry Monakhov12e9b892010-05-16 22:00:00 -04004472 if (!(ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS))) {
Eric Sandeene2b46572008-01-28 23:58:27 -05004473 struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb);
4474
Theodore Ts'o0c095c72010-07-27 11:56:06 -04004475 if (attr->ia_size > sbi->s_bitmap_maxbytes)
4476 return -EFBIG;
Eric Sandeene2b46572008-01-28 23:58:27 -05004477 }
Christoph Hellwigdff6efc2013-11-19 07:17:07 -08004478
4479 if (IS_I_VERSION(inode) && attr->ia_size != inode->i_size)
4480 inode_inc_iversion(inode);
4481
Jan Kara52083862013-08-17 10:07:17 -04004482 if (S_ISREG(inode->i_mode) &&
4483 (attr->ia_size < inode->i_size)) {
4484 if (ext4_should_order_data(inode)) {
4485 error = ext4_begin_ordered_truncate(inode,
Jan Kara678aaf42008-07-11 19:27:31 -04004486 attr->ia_size);
Jan Kara52083862013-08-17 10:07:17 -04004487 if (error)
Jan Kara678aaf42008-07-11 19:27:31 -04004488 goto err_out;
Jan Kara52083862013-08-17 10:07:17 -04004489 }
4490 handle = ext4_journal_start(inode, EXT4_HT_INODE, 3);
4491 if (IS_ERR(handle)) {
4492 error = PTR_ERR(handle);
4493 goto err_out;
4494 }
4495 if (ext4_handle_valid(handle)) {
4496 error = ext4_orphan_add(handle, inode);
4497 orphan = 1;
4498 }
Jan Kara90e775b2013-08-17 10:09:31 -04004499 down_write(&EXT4_I(inode)->i_data_sem);
Jan Kara52083862013-08-17 10:07:17 -04004500 EXT4_I(inode)->i_disksize = attr->ia_size;
4501 rc = ext4_mark_inode_dirty(handle, inode);
4502 if (!error)
4503 error = rc;
Jan Kara90e775b2013-08-17 10:09:31 -04004504 /*
4505 * We have to update i_size under i_data_sem together
4506 * with i_disksize to avoid races with writeback code
4507 * running ext4_wb_update_i_disksize().
4508 */
4509 if (!error)
4510 i_size_write(inode, attr->ia_size);
4511 up_write(&EXT4_I(inode)->i_data_sem);
Jan Kara52083862013-08-17 10:07:17 -04004512 ext4_journal_stop(handle);
4513 if (error) {
4514 ext4_orphan_del(NULL, inode);
Jan Kara678aaf42008-07-11 19:27:31 -04004515 goto err_out;
4516 }
Jan Karad6320cb2014-10-01 21:49:46 -04004517 } else {
4518 loff_t oldsize = inode->i_size;
4519
Jan Kara90e775b2013-08-17 10:09:31 -04004520 i_size_write(inode, attr->ia_size);
Jan Karad6320cb2014-10-01 21:49:46 -04004521 pagecache_isize_extended(inode, oldsize, inode->i_size);
4522 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004523
Jan Kara52083862013-08-17 10:07:17 -04004524 /*
4525 * Blocks are going to be removed from the inode. Wait
4526 * for dio in flight. Temporarily disable
4527 * dioread_nolock to prevent livelock.
4528 */
4529 if (orphan) {
4530 if (!ext4_should_journal_data(inode)) {
4531 ext4_inode_block_unlocked_dio(inode);
4532 inode_dio_wait(inode);
4533 ext4_inode_resume_unlocked_dio(inode);
4534 } else
4535 ext4_wait_for_tail_page_commit(inode);
Dmitry Monakhov1c9114f2012-09-29 00:55:23 -04004536 }
Jan Kara52083862013-08-17 10:07:17 -04004537 /*
4538 * Truncate pagecache after we've waited for commit
4539 * in data=journal mode to make pages freeable.
4540 */
Kirill A. Shutemov7caef262013-09-12 15:13:56 -07004541 truncate_pagecache(inode, inode->i_size);
Theodore Ts'o072bd7e2011-05-23 15:13:02 -04004542 }
Jan Kara52083862013-08-17 10:07:17 -04004543 /*
4544 * We want to call ext4_truncate() even if attr->ia_size ==
4545 * inode->i_size for cases like truncation of fallocated space
4546 */
4547 if (attr->ia_valid & ATTR_SIZE)
4548 ext4_truncate(inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004549
Christoph Hellwig10257742010-06-04 11:30:02 +02004550 if (!rc) {
4551 setattr_copy(inode, attr);
4552 mark_inode_dirty(inode);
4553 }
4554
4555 /*
4556 * If the call to ext4_truncate failed to get a transaction handle at
4557 * all, we need to clean up the in-core orphan list manually.
4558 */
Dmitry Monakhov3d287de2010-10-27 22:08:46 -04004559 if (orphan && inode->i_nlink)
Mingming Cao617ba132006-10-11 01:20:53 -07004560 ext4_orphan_del(NULL, inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004561
4562 if (!rc && (ia_valid & ATTR_MODE))
Christoph Hellwig64e178a2013-12-20 05:16:44 -08004563 rc = posix_acl_chmod(inode, inode->i_mode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004564
4565err_out:
Mingming Cao617ba132006-10-11 01:20:53 -07004566 ext4_std_error(inode->i_sb, error);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004567 if (!error)
4568 error = rc;
4569 return error;
4570}
4571
Mingming Cao3e3398a2008-07-11 19:27:31 -04004572int ext4_getattr(struct vfsmount *mnt, struct dentry *dentry,
4573 struct kstat *stat)
4574{
4575 struct inode *inode;
Jan Kara8af8eec2013-05-31 19:39:56 -04004576 unsigned long long delalloc_blocks;
Mingming Cao3e3398a2008-07-11 19:27:31 -04004577
4578 inode = dentry->d_inode;
4579 generic_fillattr(inode, stat);
4580
4581 /*
Andreas Dilger9206c562013-11-11 22:38:12 -05004582 * If there is inline data in the inode, the inode will normally not
4583 * have data blocks allocated (it may have an external xattr block).
4584 * Report at least one sector for such files, so tools like tar, rsync,
4585 * others doen't incorrectly think the file is completely sparse.
4586 */
4587 if (unlikely(ext4_has_inline_data(inode)))
4588 stat->blocks += (stat->size + 511) >> 9;
4589
4590 /*
Mingming Cao3e3398a2008-07-11 19:27:31 -04004591 * We can't update i_blocks if the block allocation is delayed
4592 * otherwise in the case of system crash before the real block
4593 * allocation is done, we will have i_blocks inconsistent with
4594 * on-disk file blocks.
4595 * We always keep i_blocks updated together with real
4596 * allocation. But to not confuse with user, stat
4597 * will return the blocks that include the delayed allocation
4598 * blocks for this file.
4599 */
Tao Ma96607552012-05-31 22:54:16 -04004600 delalloc_blocks = EXT4_C2B(EXT4_SB(inode->i_sb),
Andreas Dilger9206c562013-11-11 22:38:12 -05004601 EXT4_I(inode)->i_reserved_data_blocks);
4602 stat->blocks += delalloc_blocks << (inode->i_sb->s_blocksize_bits - 9);
Mingming Cao3e3398a2008-07-11 19:27:31 -04004603 return 0;
4604}
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004605
Jan Karafffb2732013-06-04 13:01:11 -04004606static int ext4_index_trans_blocks(struct inode *inode, int lblocks,
4607 int pextents)
Mingming Caoa02908f2008-08-19 22:16:07 -04004608{
Dmitry Monakhov12e9b892010-05-16 22:00:00 -04004609 if (!(ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS)))
Jan Karafffb2732013-06-04 13:01:11 -04004610 return ext4_ind_trans_blocks(inode, lblocks);
4611 return ext4_ext_index_trans_blocks(inode, pextents);
Mingming Caoa02908f2008-08-19 22:16:07 -04004612}
Theodore Ts'oac51d832008-11-06 16:49:36 -05004613
Mingming Caoa02908f2008-08-19 22:16:07 -04004614/*
4615 * Account for index blocks, block groups bitmaps and block group
4616 * descriptor blocks if modify datablocks and index blocks
4617 * worse case, the indexs blocks spread over different block groups
4618 *
4619 * If datablocks are discontiguous, they are possible to spread over
Anatol Pomozov4907cb72012-09-01 10:31:09 -07004620 * different block groups too. If they are contiguous, with flexbg,
Mingming Caoa02908f2008-08-19 22:16:07 -04004621 * they could still across block group boundary.
4622 *
4623 * Also account for superblock, inode, quota and xattr blocks
4624 */
Jan Karafffb2732013-06-04 13:01:11 -04004625static int ext4_meta_trans_blocks(struct inode *inode, int lblocks,
4626 int pextents)
Mingming Caoa02908f2008-08-19 22:16:07 -04004627{
Theodore Ts'o8df96752009-05-01 08:50:38 -04004628 ext4_group_t groups, ngroups = ext4_get_groups_count(inode->i_sb);
4629 int gdpblocks;
Mingming Caoa02908f2008-08-19 22:16:07 -04004630 int idxblocks;
4631 int ret = 0;
4632
4633 /*
Jan Karafffb2732013-06-04 13:01:11 -04004634 * How many index blocks need to touch to map @lblocks logical blocks
4635 * to @pextents physical extents?
Mingming Caoa02908f2008-08-19 22:16:07 -04004636 */
Jan Karafffb2732013-06-04 13:01:11 -04004637 idxblocks = ext4_index_trans_blocks(inode, lblocks, pextents);
Mingming Caoa02908f2008-08-19 22:16:07 -04004638
4639 ret = idxblocks;
4640
4641 /*
4642 * Now let's see how many group bitmaps and group descriptors need
4643 * to account
4644 */
Jan Karafffb2732013-06-04 13:01:11 -04004645 groups = idxblocks + pextents;
Mingming Caoa02908f2008-08-19 22:16:07 -04004646 gdpblocks = groups;
Theodore Ts'o8df96752009-05-01 08:50:38 -04004647 if (groups > ngroups)
4648 groups = ngroups;
Mingming Caoa02908f2008-08-19 22:16:07 -04004649 if (groups > EXT4_SB(inode->i_sb)->s_gdb_count)
4650 gdpblocks = EXT4_SB(inode->i_sb)->s_gdb_count;
4651
4652 /* bitmaps and block group descriptor blocks */
4653 ret += groups + gdpblocks;
4654
4655 /* Blocks for super block, inode, quota and xattr blocks */
4656 ret += EXT4_META_TRANS_BLOCKS(inode->i_sb);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004657
4658 return ret;
4659}
4660
4661/*
Lucas De Marchi25985ed2011-03-30 22:57:33 -03004662 * Calculate the total number of credits to reserve to fit
Mingming Caof3bd1f32008-08-19 22:16:03 -04004663 * the modification of a single pages into a single transaction,
4664 * which may include multiple chunks of block allocations.
Mingming Caoa02908f2008-08-19 22:16:07 -04004665 *
Mingming Cao525f4ed2008-08-19 22:15:58 -04004666 * This could be called via ext4_write_begin()
Mingming Caoa02908f2008-08-19 22:16:07 -04004667 *
Mingming Cao525f4ed2008-08-19 22:15:58 -04004668 * We need to consider the worse case, when
Mingming Caoa02908f2008-08-19 22:16:07 -04004669 * one new block per extent.
Mingming Caoa02908f2008-08-19 22:16:07 -04004670 */
4671int ext4_writepage_trans_blocks(struct inode *inode)
4672{
4673 int bpp = ext4_journal_blocks_per_page(inode);
4674 int ret;
4675
Jan Karafffb2732013-06-04 13:01:11 -04004676 ret = ext4_meta_trans_blocks(inode, bpp, bpp);
Mingming Caoa02908f2008-08-19 22:16:07 -04004677
4678 /* Account for data blocks for journalled mode */
4679 if (ext4_should_journal_data(inode))
4680 ret += bpp;
4681 return ret;
4682}
Mingming Caof3bd1f32008-08-19 22:16:03 -04004683
4684/*
4685 * Calculate the journal credits for a chunk of data modification.
4686 *
4687 * This is called from DIO, fallocate or whoever calling
Eric Sandeen79e83032010-07-27 11:56:07 -04004688 * ext4_map_blocks() to map/allocate a chunk of contiguous disk blocks.
Mingming Caof3bd1f32008-08-19 22:16:03 -04004689 *
4690 * journal buffers for data blocks are not included here, as DIO
4691 * and fallocate do no need to journal data buffers.
4692 */
4693int ext4_chunk_trans_blocks(struct inode *inode, int nrblocks)
4694{
4695 return ext4_meta_trans_blocks(inode, nrblocks, 1);
4696}
4697
Mingming Caoa02908f2008-08-19 22:16:07 -04004698/*
Mingming Cao617ba132006-10-11 01:20:53 -07004699 * The caller must have previously called ext4_reserve_inode_write().
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004700 * Give this, we know that the caller already has write access to iloc->bh.
4701 */
Mingming Cao617ba132006-10-11 01:20:53 -07004702int ext4_mark_iloc_dirty(handle_t *handle,
Theodore Ts'ode9a55b2009-06-14 17:45:34 -04004703 struct inode *inode, struct ext4_iloc *iloc)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004704{
4705 int err = 0;
4706
Theodore Ts'oc64db502012-03-02 12:23:11 -05004707 if (IS_I_VERSION(inode))
Jean Noel Cordenner25ec56b2008-01-28 23:58:27 -05004708 inode_inc_iversion(inode);
4709
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004710 /* the do_update_inode consumes one bh->b_count */
4711 get_bh(iloc->bh);
4712
Mingming Caodab291a2006-10-11 01:21:01 -07004713 /* ext4_do_update_inode() does jbd2_journal_dirty_metadata */
Frank Mayhar830156c2009-09-29 10:07:47 -04004714 err = ext4_do_update_inode(handle, inode, iloc);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004715 put_bh(iloc->bh);
4716 return err;
4717}
4718
4719/*
4720 * On success, We end up with an outstanding reference count against
4721 * iloc->bh. This _must_ be cleaned up later.
4722 */
4723
4724int
Mingming Cao617ba132006-10-11 01:20:53 -07004725ext4_reserve_inode_write(handle_t *handle, struct inode *inode,
4726 struct ext4_iloc *iloc)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004727{
Frank Mayhar03901312009-01-07 00:06:22 -05004728 int err;
4729
4730 err = ext4_get_inode_loc(inode, iloc);
4731 if (!err) {
4732 BUFFER_TRACE(iloc->bh, "get_write_access");
4733 err = ext4_journal_get_write_access(handle, iloc->bh);
4734 if (err) {
4735 brelse(iloc->bh);
4736 iloc->bh = NULL;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004737 }
4738 }
Mingming Cao617ba132006-10-11 01:20:53 -07004739 ext4_std_error(inode->i_sb, err);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004740 return err;
4741}
4742
4743/*
Kalpak Shah6dd4ee72007-07-18 09:19:57 -04004744 * Expand an inode by new_extra_isize bytes.
4745 * Returns 0 on success or negative error number on failure.
4746 */
Aneesh Kumar K.V1d03ec92008-01-28 23:58:27 -05004747static int ext4_expand_extra_isize(struct inode *inode,
4748 unsigned int new_extra_isize,
4749 struct ext4_iloc iloc,
4750 handle_t *handle)
Kalpak Shah6dd4ee72007-07-18 09:19:57 -04004751{
4752 struct ext4_inode *raw_inode;
4753 struct ext4_xattr_ibody_header *header;
Kalpak Shah6dd4ee72007-07-18 09:19:57 -04004754
4755 if (EXT4_I(inode)->i_extra_isize >= new_extra_isize)
4756 return 0;
4757
4758 raw_inode = ext4_raw_inode(&iloc);
4759
4760 header = IHDR(inode, raw_inode);
Kalpak Shah6dd4ee72007-07-18 09:19:57 -04004761
4762 /* No extended attributes present */
Theodore Ts'o19f5fb72010-01-24 14:34:07 -05004763 if (!ext4_test_inode_state(inode, EXT4_STATE_XATTR) ||
4764 header->h_magic != cpu_to_le32(EXT4_XATTR_MAGIC)) {
Kalpak Shah6dd4ee72007-07-18 09:19:57 -04004765 memset((void *)raw_inode + EXT4_GOOD_OLD_INODE_SIZE, 0,
4766 new_extra_isize);
4767 EXT4_I(inode)->i_extra_isize = new_extra_isize;
4768 return 0;
4769 }
4770
4771 /* try to expand with EAs present */
4772 return ext4_expand_extra_isize_ea(inode, new_extra_isize,
4773 raw_inode, handle);
4774}
4775
4776/*
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004777 * What we do here is to mark the in-core inode as clean with respect to inode
4778 * dirtiness (it may still be data-dirty).
4779 * This means that the in-core inode may be reaped by prune_icache
4780 * without having to perform any I/O. This is a very good thing,
4781 * because *any* task may call prune_icache - even ones which
4782 * have a transaction open against a different journal.
4783 *
4784 * Is this cheating? Not really. Sure, we haven't written the
4785 * inode out, but prune_icache isn't a user-visible syncing function.
4786 * Whenever the user wants stuff synced (sys_sync, sys_msync, sys_fsync)
4787 * we start and wait on commits.
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004788 */
Mingming Cao617ba132006-10-11 01:20:53 -07004789int ext4_mark_inode_dirty(handle_t *handle, struct inode *inode)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004790{
Mingming Cao617ba132006-10-11 01:20:53 -07004791 struct ext4_iloc iloc;
Kalpak Shah6dd4ee72007-07-18 09:19:57 -04004792 struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb);
4793 static unsigned int mnt_count;
4794 int err, ret;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004795
4796 might_sleep();
Theodore Ts'o7ff9c072010-11-08 13:51:33 -05004797 trace_ext4_mark_inode_dirty(inode, _RET_IP_);
Mingming Cao617ba132006-10-11 01:20:53 -07004798 err = ext4_reserve_inode_write(handle, inode, &iloc);
Frank Mayhar03901312009-01-07 00:06:22 -05004799 if (ext4_handle_valid(handle) &&
4800 EXT4_I(inode)->i_extra_isize < sbi->s_want_extra_isize &&
Theodore Ts'o19f5fb72010-01-24 14:34:07 -05004801 !ext4_test_inode_state(inode, EXT4_STATE_NO_EXPAND)) {
Kalpak Shah6dd4ee72007-07-18 09:19:57 -04004802 /*
4803 * We need extra buffer credits since we may write into EA block
4804 * with this same handle. If journal_extend fails, then it will
4805 * only result in a minor loss of functionality for that inode.
4806 * If this is felt to be critical, then e2fsck should be run to
4807 * force a large enough s_min_extra_isize.
4808 */
4809 if ((jbd2_journal_extend(handle,
4810 EXT4_DATA_TRANS_BLOCKS(inode->i_sb))) == 0) {
4811 ret = ext4_expand_extra_isize(inode,
4812 sbi->s_want_extra_isize,
4813 iloc, handle);
4814 if (ret) {
Theodore Ts'o19f5fb72010-01-24 14:34:07 -05004815 ext4_set_inode_state(inode,
4816 EXT4_STATE_NO_EXPAND);
Aneesh Kumar K.Vc1bddad2007-10-16 18:38:25 -04004817 if (mnt_count !=
4818 le16_to_cpu(sbi->s_es->s_mnt_count)) {
Eric Sandeen12062dd2010-02-15 14:19:27 -05004819 ext4_warning(inode->i_sb,
Kalpak Shah6dd4ee72007-07-18 09:19:57 -04004820 "Unable to expand inode %lu. Delete"
4821 " some EAs or run e2fsck.",
4822 inode->i_ino);
Aneesh Kumar K.Vc1bddad2007-10-16 18:38:25 -04004823 mnt_count =
4824 le16_to_cpu(sbi->s_es->s_mnt_count);
Kalpak Shah6dd4ee72007-07-18 09:19:57 -04004825 }
4826 }
4827 }
4828 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004829 if (!err)
Mingming Cao617ba132006-10-11 01:20:53 -07004830 err = ext4_mark_iloc_dirty(handle, inode, &iloc);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004831 return err;
4832}
4833
4834/*
Mingming Cao617ba132006-10-11 01:20:53 -07004835 * ext4_dirty_inode() is called from __mark_inode_dirty()
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004836 *
4837 * We're really interested in the case where a file is being extended.
4838 * i_size has been changed by generic_commit_write() and we thus need
4839 * to include the updated inode in the current transaction.
4840 *
Christoph Hellwig5dd40562010-03-03 09:05:00 -05004841 * Also, dquot_alloc_block() will always dirty the inode when blocks
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004842 * are allocated to the file.
4843 *
4844 * If the inode is marked synchronous, we don't honour that here - doing
4845 * so would cause a commit on atime updates, which we don't bother doing.
4846 * We handle synchronous inodes at the highest possible level.
4847 */
Christoph Hellwigaa385722011-05-27 06:53:02 -04004848void ext4_dirty_inode(struct inode *inode, int flags)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004849{
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004850 handle_t *handle;
4851
Theodore Ts'o9924a922013-02-08 21:59:22 -05004852 handle = ext4_journal_start(inode, EXT4_HT_INODE, 2);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004853 if (IS_ERR(handle))
4854 goto out;
Curt Wohlgemuthf3dc2722009-09-29 16:06:01 -04004855
Curt Wohlgemuthf3dc2722009-09-29 16:06:01 -04004856 ext4_mark_inode_dirty(handle, inode);
4857
Mingming Cao617ba132006-10-11 01:20:53 -07004858 ext4_journal_stop(handle);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004859out:
4860 return;
4861}
4862
4863#if 0
4864/*
4865 * Bind an inode's backing buffer_head into this transaction, to prevent
4866 * it from being flushed to disk early. Unlike
Mingming Cao617ba132006-10-11 01:20:53 -07004867 * ext4_reserve_inode_write, this leaves behind no bh reference and
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004868 * returns no iloc structure, so the caller needs to repeat the iloc
4869 * lookup to mark the inode dirty later.
4870 */
Mingming Cao617ba132006-10-11 01:20:53 -07004871static int ext4_pin_inode(handle_t *handle, struct inode *inode)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004872{
Mingming Cao617ba132006-10-11 01:20:53 -07004873 struct ext4_iloc iloc;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004874
4875 int err = 0;
4876 if (handle) {
Mingming Cao617ba132006-10-11 01:20:53 -07004877 err = ext4_get_inode_loc(inode, &iloc);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004878 if (!err) {
4879 BUFFER_TRACE(iloc.bh, "get_write_access");
Mingming Caodab291a2006-10-11 01:21:01 -07004880 err = jbd2_journal_get_write_access(handle, iloc.bh);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004881 if (!err)
Frank Mayhar03901312009-01-07 00:06:22 -05004882 err = ext4_handle_dirty_metadata(handle,
Curt Wohlgemuth73b50c12010-02-16 15:06:29 -05004883 NULL,
Frank Mayhar03901312009-01-07 00:06:22 -05004884 iloc.bh);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004885 brelse(iloc.bh);
4886 }
4887 }
Mingming Cao617ba132006-10-11 01:20:53 -07004888 ext4_std_error(inode->i_sb, err);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004889 return err;
4890}
4891#endif
4892
Mingming Cao617ba132006-10-11 01:20:53 -07004893int ext4_change_inode_journal_flag(struct inode *inode, int val)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004894{
4895 journal_t *journal;
4896 handle_t *handle;
4897 int err;
4898
4899 /*
4900 * We have to be very careful here: changing a data block's
4901 * journaling status dynamically is dangerous. If we write a
4902 * data block to the journal, change the status and then delete
4903 * that block, we risk forgetting to revoke the old log record
4904 * from the journal and so a subsequent replay can corrupt data.
4905 * So, first we make sure that the journal is empty and that
4906 * nobody is changing anything.
4907 */
4908
Mingming Cao617ba132006-10-11 01:20:53 -07004909 journal = EXT4_JOURNAL(inode);
Frank Mayhar03901312009-01-07 00:06:22 -05004910 if (!journal)
4911 return 0;
Dave Hansend6995942007-07-18 08:33:51 -04004912 if (is_journal_aborted(journal))
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004913 return -EROFS;
Yongqiang Yang2aff57b2011-12-28 12:02:13 -05004914 /* We have to allocate physical blocks for delalloc blocks
4915 * before flushing journal. otherwise delalloc blocks can not
4916 * be allocated any more. even more truncate on delalloc blocks
4917 * could trigger BUG by flushing delalloc blocks in journal.
4918 * There is no delalloc block in non-journal data mode.
4919 */
4920 if (val && test_opt(inode->i_sb, DELALLOC)) {
4921 err = ext4_alloc_da_blocks(inode);
4922 if (err < 0)
4923 return err;
4924 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004925
Dmitry Monakhov17335dc2012-09-29 00:41:21 -04004926 /* Wait for all existing dio workers */
4927 ext4_inode_block_unlocked_dio(inode);
4928 inode_dio_wait(inode);
4929
Mingming Caodab291a2006-10-11 01:21:01 -07004930 jbd2_journal_lock_updates(journal);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004931
4932 /*
4933 * OK, there are no updates running now, and all cached data is
4934 * synced to disk. We are now in a completely consistent state
4935 * which doesn't have anything in the journal, and we know that
4936 * no filesystem updates are running, so it is safe to modify
4937 * the inode's in-core data-journaling state flag now.
4938 */
4939
4940 if (val)
Dmitry Monakhov12e9b892010-05-16 22:00:00 -04004941 ext4_set_inode_flag(inode, EXT4_INODE_JOURNAL_DATA);
Yongqiang Yang5872dda2011-12-28 13:55:51 -05004942 else {
Jan Kara4f879ca2014-10-30 10:53:17 -04004943 err = jbd2_journal_flush(journal);
4944 if (err < 0) {
4945 jbd2_journal_unlock_updates(journal);
4946 ext4_inode_resume_unlocked_dio(inode);
4947 return err;
4948 }
Dmitry Monakhov12e9b892010-05-16 22:00:00 -04004949 ext4_clear_inode_flag(inode, EXT4_INODE_JOURNAL_DATA);
Yongqiang Yang5872dda2011-12-28 13:55:51 -05004950 }
Mingming Cao617ba132006-10-11 01:20:53 -07004951 ext4_set_aops(inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004952
Mingming Caodab291a2006-10-11 01:21:01 -07004953 jbd2_journal_unlock_updates(journal);
Dmitry Monakhov17335dc2012-09-29 00:41:21 -04004954 ext4_inode_resume_unlocked_dio(inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004955
4956 /* Finally we can mark the inode as dirty. */
4957
Theodore Ts'o9924a922013-02-08 21:59:22 -05004958 handle = ext4_journal_start(inode, EXT4_HT_INODE, 1);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004959 if (IS_ERR(handle))
4960 return PTR_ERR(handle);
4961
Mingming Cao617ba132006-10-11 01:20:53 -07004962 err = ext4_mark_inode_dirty(handle, inode);
Frank Mayhar03901312009-01-07 00:06:22 -05004963 ext4_handle_sync(handle);
Mingming Cao617ba132006-10-11 01:20:53 -07004964 ext4_journal_stop(handle);
4965 ext4_std_error(inode->i_sb, err);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004966
4967 return err;
4968}
Aneesh Kumar K.V2e9ee852008-07-11 19:27:31 -04004969
4970static int ext4_bh_unmapped(handle_t *handle, struct buffer_head *bh)
4971{
4972 return !buffer_mapped(bh);
4973}
4974
Nick Pigginc2ec1752009-03-31 15:23:21 -07004975int ext4_page_mkwrite(struct vm_area_struct *vma, struct vm_fault *vmf)
Aneesh Kumar K.V2e9ee852008-07-11 19:27:31 -04004976{
Nick Pigginc2ec1752009-03-31 15:23:21 -07004977 struct page *page = vmf->page;
Aneesh Kumar K.V2e9ee852008-07-11 19:27:31 -04004978 loff_t size;
4979 unsigned long len;
Jan Kara9ea7df52011-06-24 14:29:41 -04004980 int ret;
Aneesh Kumar K.V2e9ee852008-07-11 19:27:31 -04004981 struct file *file = vma->vm_file;
Al Viro496ad9a2013-01-23 17:07:38 -05004982 struct inode *inode = file_inode(file);
Aneesh Kumar K.V2e9ee852008-07-11 19:27:31 -04004983 struct address_space *mapping = inode->i_mapping;
Jan Kara9ea7df52011-06-24 14:29:41 -04004984 handle_t *handle;
4985 get_block_t *get_block;
4986 int retries = 0;
Aneesh Kumar K.V2e9ee852008-07-11 19:27:31 -04004987
Jan Kara8e8ad8a2012-06-12 16:20:38 +02004988 sb_start_pagefault(inode->i_sb);
Theodore Ts'o041bbb6d2012-09-30 23:04:56 -04004989 file_update_time(vma->vm_file);
Jan Kara9ea7df52011-06-24 14:29:41 -04004990 /* Delalloc case is easy... */
4991 if (test_opt(inode->i_sb, DELALLOC) &&
4992 !ext4_should_journal_data(inode) &&
4993 !ext4_nonda_switch(inode->i_sb)) {
4994 do {
4995 ret = __block_page_mkwrite(vma, vmf,
4996 ext4_da_get_block_prep);
4997 } while (ret == -ENOSPC &&
4998 ext4_should_retry_alloc(inode->i_sb, &retries));
4999 goto out_ret;
Aneesh Kumar K.V2e9ee852008-07-11 19:27:31 -04005000 }
Darrick J. Wong0e499892011-05-18 13:55:20 -04005001
5002 lock_page(page);
Jan Kara9ea7df52011-06-24 14:29:41 -04005003 size = i_size_read(inode);
5004 /* Page got truncated from under us? */
5005 if (page->mapping != mapping || page_offset(page) > size) {
5006 unlock_page(page);
5007 ret = VM_FAULT_NOPAGE;
5008 goto out;
Darrick J. Wong0e499892011-05-18 13:55:20 -04005009 }
Aneesh Kumar K.V2e9ee852008-07-11 19:27:31 -04005010
5011 if (page->index == size >> PAGE_CACHE_SHIFT)
5012 len = size & ~PAGE_CACHE_MASK;
5013 else
5014 len = PAGE_CACHE_SIZE;
Aneesh Kumar K.Va827eaf2009-09-09 22:36:03 -04005015 /*
Jan Kara9ea7df52011-06-24 14:29:41 -04005016 * Return if we have all the buffers mapped. This avoids the need to do
5017 * journal_start/journal_stop which can block and take a long time
Aneesh Kumar K.Va827eaf2009-09-09 22:36:03 -04005018 */
Aneesh Kumar K.V2e9ee852008-07-11 19:27:31 -04005019 if (page_has_buffers(page)) {
Tao Maf19d5872012-12-10 14:05:51 -05005020 if (!ext4_walk_page_buffers(NULL, page_buffers(page),
5021 0, len, NULL,
5022 ext4_bh_unmapped)) {
Jan Kara9ea7df52011-06-24 14:29:41 -04005023 /* Wait so that we don't change page under IO */
Darrick J. Wong1d1d1a72013-02-21 16:42:51 -08005024 wait_for_stable_page(page);
Jan Kara9ea7df52011-06-24 14:29:41 -04005025 ret = VM_FAULT_LOCKED;
5026 goto out;
Aneesh Kumar K.Va827eaf2009-09-09 22:36:03 -04005027 }
Aneesh Kumar K.V2e9ee852008-07-11 19:27:31 -04005028 }
Aneesh Kumar K.Va827eaf2009-09-09 22:36:03 -04005029 unlock_page(page);
Jan Kara9ea7df52011-06-24 14:29:41 -04005030 /* OK, we need to fill the hole... */
5031 if (ext4_should_dioread_nolock(inode))
5032 get_block = ext4_get_block_write;
5033 else
5034 get_block = ext4_get_block;
5035retry_alloc:
Theodore Ts'o9924a922013-02-08 21:59:22 -05005036 handle = ext4_journal_start(inode, EXT4_HT_WRITE_PAGE,
5037 ext4_writepage_trans_blocks(inode));
Jan Kara9ea7df52011-06-24 14:29:41 -04005038 if (IS_ERR(handle)) {
Nick Pigginc2ec1752009-03-31 15:23:21 -07005039 ret = VM_FAULT_SIGBUS;
Jan Kara9ea7df52011-06-24 14:29:41 -04005040 goto out;
5041 }
5042 ret = __block_page_mkwrite(vma, vmf, get_block);
5043 if (!ret && ext4_should_journal_data(inode)) {
Tao Maf19d5872012-12-10 14:05:51 -05005044 if (ext4_walk_page_buffers(handle, page_buffers(page), 0,
Jan Kara9ea7df52011-06-24 14:29:41 -04005045 PAGE_CACHE_SIZE, NULL, do_journal_get_write_access)) {
5046 unlock_page(page);
5047 ret = VM_FAULT_SIGBUS;
Yongqiang Yangfcbb5512011-10-26 05:00:19 -04005048 ext4_journal_stop(handle);
Jan Kara9ea7df52011-06-24 14:29:41 -04005049 goto out;
5050 }
5051 ext4_set_inode_state(inode, EXT4_STATE_JDATA);
5052 }
5053 ext4_journal_stop(handle);
5054 if (ret == -ENOSPC && ext4_should_retry_alloc(inode->i_sb, &retries))
5055 goto retry_alloc;
5056out_ret:
5057 ret = block_page_mkwrite_return(ret);
5058out:
Jan Kara8e8ad8a2012-06-12 16:20:38 +02005059 sb_end_pagefault(inode->i_sb);
Aneesh Kumar K.V2e9ee852008-07-11 19:27:31 -04005060 return ret;
5061}